/*
1- MAIN
2- HEADER
3- FULL SCREEN MENU
4- SOCIAL MENU
5- HOME
6- ABOUT US
7- WHAT WE DO
8- PROJECTS
9- REFERENCES
10- CONTACT
11- FOOTER
99- RESPONSIVE
*/

/* 1- MAIN */
@font-face {
    font-family: 'Haborosans';
    src: url('../fonts/haborosans-extexbolditalic-webfont.eot');
    src: url('../fonts/haborosans-extexbolditalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/haborosans-extexbolditalic-webfont.woff2') format('woff2'),
         url('../fonts/haborosans-extexbolditalic-webfont.woff') format('woff'),
         url('../fonts/haborosans-extexbolditalic-webfont.ttf') format('truetype'),
         url('../fonts/haborosans-extexbolditalic-webfont.svg#haboro_sans_extexbolditalic') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {
	--primary-color: #ba2c52;
	--primary-hover: #e13563;
	--secondary-color: #e3097e;
}
* {
	font-family: 'Lato', sans-serif;
}
body {
	background-color: #050505;
}
a {
	transition: color .5s;
	font-weight: 400;
}
.btn {
	padding: 15px 45px;
	font-weight: 700;
	background-color: var(--primary-color);
	border: 2px solid transparent;
}
.btn:hover {
	background-color: transparent;
	border: 2px solid var(--primary-color);
}
.btn-link {
	text-decoration: none;
	position: relative;
	padding: 0;
	background: none;
	border: none;
}
.btn-link:hover {
	background: none;
	border: none;
}
.btn-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 0;
	height: 3px;
	background-color: #fff;
	transition: width .5s;
}
.btn-link:hover::after {
	width: 100%;
}
.text-primary {
	color: var(--primary-color) !important;
}
.btn-cta {
	position: relative;
	color: #fff;
	border: none;
	padding-left: 80px;
	font-size: 24px;
	font-family: 'Haborosans', sans-serif;
	background-color: #efc163;
	transition: background-color .5s;
	border-radius: 10px;
}
.btn-cta:hover {
	border: none;
	background-color: #cb548e;
	color: #fff;
}
.btn-cta span {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 60px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	background-color: rgba(255, 255, 255, .5);
	color: #efc163;
	font-size: 40px;
	transition: color .5s;
}
.btn-cta:hover span {
	color: #cb548e;
}
.btn-cta span i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

section.inner {
	background-position: center center;
	background-repeat: no-repeat;
	height: calc(100vh - 90px);
	padding: 90px 32px 90px 100px;
}
section.inner.auto-height {
	height: auto;
}
section.inner h2 {
	font-size: 47px;
	font-weight: 900;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--secondary-color);
	background: radial-gradient(circle, rgba(246,83,157,1) 0%, rgba(175,8,77,1) 100%);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
	font-style: italic;
}
.section-title {
	text-align: center;
	margin-bottom: 50px;
}
.section-title h1 {
	font-size: 90px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

section .modal {
	z-index: 9999;
}
section .modal-content {
	padding: 20px 40px;
}
section .modal-header {
	border-bottom: none;
}
section .modal-header h5 {
	font-size: 35px;
	font-weight: 700;
}
/* 1- MAIN END */

/* 2- HEADER */
header {
	position: fixed;
	background-color: #000;
	width: 100%;
	padding: 20px 20px;
	z-index: 2000;
	transition: background-color .5s;
}
header .container-fluid, header .right {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header.sticky {
	box-shadow: 0 -6px 10px 5px rgba(0,0,0,0.5);
}

.logo img {
	max-height: 50px;
}
.logo-main {
	display: none;
}
.logo-white {
	display: block;
}

.header-right {
	display: flex;
	align-items: center;
	justify-content: space-between;	
}

.menu-toggle {
	display: none;
	font-display: column;
	cursor: pointer;
}

.classic-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.classic-menu ul, .header-right ul.lang {
	height: 100%;
	margin-bottom: 0;
}
.classic-menu ul li, .header-right ul.lang li {
	display: inline;
}
.classic-menu ul li:last-of-type,
.header-right ul.lang li:last-of-type {
	margin-right: 0;
}
.classic-menu ul li a, .header-right ul.lang li a {
	color: #696969;
	text-decoration: none;
	font-size: 18px;
	padding: 10px 15px;
	border-radius: 5px;
}
.header-right ul.lang li a {
	display: flex;
	align-items: center;
}
.classic-menu ul li a:hover {
	color: var(--primary-color);
	text-shadow: none;
}
.header-right ul.lang {
	margin-left: 20px;
}
.header-right ul.lang li:first-of-type a {
	margin-right: 5px;
}
.header-right ul.lang li a {
	padding: 0 5px;
}
.classic-menu ul li.active a, .header-right ul.lang li.active a {
	color: #fff;
}

.menu-toggle span {
	display: block;
	width: 30px;
	height: 3px;
	background-color: #fff;
	margin: 4px 0;
	transition: transform .3s ease-in-out, background-color .3s ease-in-out;
}
.menu-toggle.active span:nth-child(even) {
	display: none;
}
.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translateY(5px);
	background-color: var(--primary-color);
}
.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translateY(-5px);
	background-color: var(--primary-color);
}
/* 2- HEADER END */

/* 3- FULL SCREEN MENU */
.full-screen-menu {
	position: fixed;
	display: none;
	/*display: flex;
	align-items: center;
	justify-content: center;*/
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: right 0.3s ease-in-out;
	z-index: 1000;
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 47% 100%);
	background-image: url(../images/bg/menu-bg.png);
	background-position: right center;
}
.full-screen-menu.active {
	right: 0;
}
.full-screen-menu ul {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
/*	align-items: center;*/
	height: 100%;
	list-style: none;
	margin-top: -120px;
	transform: rotate(-40deg) translateX(-225px);
}
.full-screen-menu ul li {
	margin: 20px;
	text-align: left;
	transform: rotate(40deg);
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.5s ease;
}
.full-screen-menu.active ul li {
	opacity: 1;
}
.full-screen-menu ul li a {
	text-decoration: none;
	display: inline-block;
	padding: 30px 200px;
	color: #000;
	font-size: 40px;
	font-weight: 500;
	transition: background-color .5s, color .5s;
}
.full-screen-menu ul li a:hover {
	background-color: var(--primary-color);
	color: #fff;
}
header + .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	pointer-events: none;
	z-index: 999;
	transition: opacity 0.3s ease-in-out;
}
header + .overlay.active {
	opacity: 1;
}
/* 3- FULL SCREEN MENU END */

/* 4- SOCIAL MENU */
.social-menu {
	position: fixed;
	left: 0;
	top: 50%;
}
.social-menu ul {
	list-style: none;
	padding-left: 32px;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 12px;
	border-radius: 5px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}
.social-menu ul li a {
	font-size: 40px;
	color: var(--primary-color);
	transition: color .5s;
}
.social-menu ul li a:hover {
	color: green;
}
/* 4- SOCIAL MENU END */

/* 5- HOME */
#home {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

#home .html5-video {
	background-color: #000;
	left: 50%;
	min-height: 100%;
	width: auto;
	position: absolute;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	z-index: -3;
}

#home .slider-container {
	width: 100%;
	height: 100%;
	position: relative;
}
#home .slider-container .slide-item {
	width: 100%;
	height: 100%;
	position: relative;
    background-size: cover;
    background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
#home .slider-container .slide-item .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 0;
	opacity: .1;
}
#home .slider-container .slide-item .container {
	position: relative;
	z-index: 1;
}

#home .content-left {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: #fff;
	font-family: 'Josefin Sans';
}
#home .content-left small {
	font-size: 20px;
	margin-bottom: 20px;
}
#home .content-left h1 {
	font-size: 90px;
	color: #fff;
	line-height: 1;
}
#home .content-left h1 span {
	display: block;
}
#home .content-left p {
	font-size: 40px;
}
#home .home-buttons {
	margin-top: 30px;
}
#home .home-buttons .btn:first-of-type {
	margin-right: 60px;
}
#home .content-right {
	height: 100%;
	display: flex;
	justify-content: flex-end;
	position: relative;
}
#home .content-right .home-images {
	position: relative;
	width: 600px;
	height: 510px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
#home .content-right .home-image {
	width: 100%;
	opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity .5s;
}
#home .content-right .home-image.active {
	opacity: 1;
}
/* 5- HOME END */

/* 6- ABOUT US */
section#about-us {
	background: url(../images/bg/about-bg-1.png) top left no-repeat, url(../images/bg/about-bg-2.png) bottom right no-repeat;
	
}
section#about-us p {
	font-size: 23px;
	margin-bottom: 25px;
	color: #fff;
}
section#about-us .left-content {
	margin-top: 80px;
}
section#about-us .left-content h2 {
	margin-bottom: 60px;
}
/* 6- ABOUT US END */

/* 7- WHAT WE DO */
section#what-we-do .container-fluid, section#what-we-do .row {
	height: 100%;
}
section#what-we-do .row {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.features {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: space-between;
}
.feature-box {
	width: 319px;
	height: 447px;
	color: #050505;
	padding: 60px 40px;
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
    transition: background-color .5s ease-in-out, color .5s ease-in-out;
}
.feature-box:hover {
	color: var(--primary-color);
}
.feature-box h3 {
	margin-bottom: 15px;
	font-size: 39px;
	font-weight: 700;
}
.feature-box .feature-content {
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section#what-we-do .modal-content {
	clip-path: polygon(0 0, 100% 0, 100% 89%, 95% 100%, 0 100%);
}
section#what-we-do .modal-content.event {
	color: #fff;
	background-color: var(--secondary-color);
}
section#what-we-do .modal-content.design {
	color: #fff;
	background-color: #4eb38d;
}
section#what-we-do .modal-content.video {
	background-color: #ffb548;
}
section#what-we-do .modal-content p {
	margin-bottom: 5px;
}
section#what-we-do .modal-content p:last-of-type {
	margin-bottom: 25px;
}
section#what-we-do .modal-content p,
section#what-we-do .modal-content ul li {
	font-size: 20px;
}
section#what-we-do .modal-content ul {
	columns: 2;
	padding-left: 8px;
	break-inside: avoid-column;
	border-left: 1px solid rgba(255, 255, 255, .5);
	column-rule: 1px double rgba(255, 255, 255, .5);
}
section#what-we-do .modal-content.video ul {
	border-color: rgba(0, 0, 0, .4);
	column-rule-color: rgba(0, 0, 0, .4);
}
section#what-we-do .modal-content ul li {
	margin-left: 8px;
}
/* 7- WHAT WE DO END */

/* 8- PROJECTS */
.project-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: linear-gradient(90deg, rgba(239,193,99,1) 0%, rgba(114,86,228,1) 100%);
	padding: 15px;
}
.project-list .project-box {
	flex: 0 0 18.5%;
	margin: 10px;
	background-color: #050505;
	padding: 14px 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-decoration: none;
	transition: background-color .5s;
	cursor: pointer;
}
.project-list .project-box:hover {
	background-color: var(--primary-color);
}
.project-list .project-box img {
	margin-bottom: 5px;
}
.project-list .project-box .project-title {
	padding: 0 30px;
}
.project-list .project-box h4 {
	color: #fff;
	text-align: center;
	font-size: 16px;
	line-height: 22px;
	border: none;
}

.project-list .embed-responsive,
.project-list .embed-responsive iframe {
	width: 100%;
}
.project-list .embed-responsive iframe {
	height: 600px;s
}

section#projects .modal-content {
	color: #fff;
	background-color: #262626;
}
section#projects .modal-content .project-media {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
section#projects .modal-content .project-media .inner {
	width: 80%;
}
section#projects .modal-content .modal-header {
	padding: 0;
}
section#projects .modal-content .modal-header h5 { 
	font-size: 20px;
	width: 100%;
	text-align: center;
}
section#projects .modal-content iframe {
	height: 600px;
}
/* 8- PROJECTS END */

/* 9- REFERENCES */
.references {
	background: linear-gradient(90deg, rgba(239,193,99,1) 0%, rgba(203,84,142,1) 100%);
	width: 100%;
	height: 100%;
	padding: 8px;
	border-radius: 40px;
}
.references .reference-inner {
	background-color: #1a1a1a;
	height: 100%;
	border-radius: 40px;
	padding: 20px;
}
.reference-list {
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.reference-list .reference-box {
	flex: 1 0 15%;
	background-color: #fff;
	margin: 10px 15px;
	max-width: 280px;
	padding: 15px 40px;
	margin-bottom: 40px;
}
.reference-box.more {
	display: none;
}
.reference-box.more.active {
	display: block;
}
.reference-list .reference-box img {
	filter: grayscale(100%);
	transition: filter .5s;
	max-width: 150px;
}
.reference-list .reference-box:hover img {
	filter: none;
}
/* 9- REFERENCES END */

/* 10- CONTACT */
section#contact {
	background-image: url(../images/bg/contact-bg-alt.png);
	background-repeat: no-repeat;
	background-position: 100% 100%;
}
section#contact h2 {
	margin-bottom: 60px;
}
section#contact .map {
	border: 7px solid #fff;
	height: 100%;
}
section#contact .map iframe {
	width: 100%;
	height: 100%;
}
.contacts {
	display: flex;
}
.contact-info {
	padding: 40px 60px;
	flex: 1 1 0px;
}
.contact-info h3 {
	font-size: 39px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}
.contact-info ul {
	list-style: none;
	padding-left: 0;
}
.contact-info ul li {
	display: flex;
	margin-bottom: 15px;
}
.contact-info ul li img {
	align-self: flex-start;
	margin-top: 5px;
}
.contact-info ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	transition: color .5s;
	margin-left: 15px;
}
.contact-info ul li a:hover {
	color: var(--primary-color);
}
.contact-info:first-of-type {
	border-right : 1px solid rgba(255, 255, 255, .5);
}
.contact-social {
	list-style: none;
	margin-top: 30px;
}
.contact-social li {
	display: inline-block;
	margin-right: 15px;
}
.contact-social li a {
	background-color: #fff;
	display: inline-block;
	padding: 15px;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	position: relative;
	transition: background-color .5s;
}
.contact-social li a:hover {
	background-color: var(--primary-color);
}
.contact-social li a i {
	color: #050505;
	font-size: 40px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: color .5s;
}
.contact-social li a:hover i {
	color: #fff;
}
/* 10- CONTACT END */

/* 11- FOOTER */
footer {
  	padding: 0 100px;
}
/* 11- FOOTER END */

/* 99- RESPONSIVE */
@media only screen and (max-width : 1367px) {
	/* 1- MAIN */
	.btn {
		padding: 10px 36px;
	}
	.section-title h1 {
		font-size: 75px;
	}
	/* 1- MAIN END */

	/* 2- HEADER */
	.classic-menu ul li {
		margin-right: 10px;
	}
	.classic-menu ul li a {
		font-size: 16px;
		padding: 8px 10px
	}
	/* 2- HEADER END */

	/* 3- FULL SCREEN MENU */
	.full-screen-menu {
		clip-path: polygon(12% 0, 100% 0, 100% 100%, 51% 100%);
	}
	.full-screen-menu ul {
		margin-top: 68px;
		transform: rotate(-35deg) translateX(-60px);
	}
	.full-screen-menu ul li a {
		font-size: 30px;
		padding: 20px 160px;
	}
	/* 3- FULL SCREEN MENU END */

	/* 5- HOME */
	#home .content-left {
		padding-left: 30px;
	}
	#home .content-left small {
		font-size: 16px;
	}
	#home .content-left h1 {
		font-size: 70px;
	    margin-left: 40px;
	}
	#home .content-left p {
		font-size: 30px;
	}
	#home .home-buttons .btn:first-of-type {
		margin-right: 40px;
	}
	#home .content-right .home-images {
		width: 500px;
	}
	/* 5- HOME END */

	/* 6- ABOUT US */
	section#about-us {
		background: url(../images/bg/about-bg-1.png) 0 -1000% no-repeat, url(../images/bg/about-bg-2.png) bottom right no-repeat;
	}
	section#about-us .left-content {
		margin-top: 60px;
	}
	section#about-us p {
		font-size: 18px;
    	margin-bottom: 20px;
	}
	/* 6- ABOUT US END */

	/* 7- WHAT WE DO */
	section#what-we-do .img-fluid {
		max-width: 300px;
	}
	.feature-box {
		padding: 20px;
		width: 230px;
		height: 322px;
		background-size: 230px 322px;
	}
	.feature-box h3 {
		font-size: 28px;
	}
	/* 7- WHAT WE DO END */

	/* 8- PROJECTS */
	.project-list .project-box {
		flex: 0 0 23%;
	}
	section#projects .modal-content .project-media .inner {
		width: 65%;
	}
	section#projects .modal-content iframe {
		height: 500px;
	}
	/* 8- PROJECTS END */

	/* 10 -CONTACT */
	section#contact {
		padding: 20px 32px 20px 100px;
		background-size: 92%;
	}
	section#contact h2 {
		margin-bottom: 30px;
	}
	.contact-info {
		padding: 15px 40px;
	}
	.contact-info h3 {
		font-size: 30px;
	}
	/* 10 -CONTACT END */
}

@media only screen and (max-width : 1280px) {
	/* 6- ABOUT US */
	section#about-us {
		background: url(../images/bg/about-bg-1.png) 0 600% no-repeat, url(../images/bg/about-bg-2.png) bottom right no-repeat;
	}
	section#about-us .left-content {
		margin-top: 30px;
	}
	/* 6- ABOUT US END */

	/* 7- WHAT WE DO */
	section#what-we-do .img-fluid {
		max-width: 280px;
	}
	.feature-box {
		width: 220px;
		height: 308px;
		background-size: 220px 308px;
	}
	/* 7- WHAT WE DO END */

	/* 8- PROJECTS */
	section#projects .modal-content .project-media .inner {
		width: 60%;
	}
	section#projects .modal-content iframe {
		height: 460px;
	}
	/* 8- PROJECTS END */
}

/* Portrait */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
  	/* 6- ABOUT US */
  	section#about-us {
  		display: flex;
  		align-items: center;
  	}
  	section#about-us .container-fluid,
  	section#about-us .container-fluid .row {
  		height: 100%;
  	}
  	section#about-us .container-fluid .row {
  		align-items: center;
  	}
  	/* 6- ABOUT US END */

  	/* 7- WHAT WE DO */
	section#what-we-do .col-xl-4 {
		width: 100%;
		text-align: center;
	}
	section#what-we-do .img-fluid {
		max-width: 400px;
	}
	.feature-box {
		width: 260px;
		height: 364px;
		background-size: 260px 364px;
	}
	/* 7- WHAT WE DO END */

  	/* 8- PROJECTS */
  	section#projects {
  	    padding: 40px 60px 40px 100px;
  	}
	section#projects .modal-content .project-media .inner {
		width: 100%;
	}
	section#projects .modal-content iframe {
		height: 500px;
	}
	.project-list .embed-responsive iframe {
		height: 500px;
	}
	/* 8- PROJECTS END */

	/* 10- CONTACT */
  	section#contact .container-fluid {
  		display: flex;
  		flex-direction: column;
  		justify-content: center;
  	}
  	section#contact .map {
  		min-height: 500px;
  	}
  	.contacts {
  		margin-top: 40px;
  	}
  	/* 10- CONTACT END */  	
}

/* Landscape */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
  	/* 6- ABOUT US */
  	section#about-us {
  		background: url(../images/bg/about-bg-1.png) 0 0 no-repeat, url(../images/bg/about-bg-2.png) bottom right no-repeat;
  	}
  	/* 6- ABOUT US END */

  	/* 10- CONTACT */
  	section#contact .container-fluid {
  		display: flex;
  		flex-direction: column;
  		justify-content: center;
  	}
  	/* 10- CONTACT END */  	
}

@media only screen and (max-width : 1185px) {	
	/* 2- HEADER */
	header .container-fluid {
		max-width: 100%;
	}
	/* 2- HEADER END */

	/* 3- FULL SCREEN MENU */
	.full-screen-menu ul {
	    margin-top: 220px;
	    transform: rotate(-30deg) translateX(-48px);
	}
	.full-screen-menu ul li {
		transform: rotate(30deg);
	}
	/* 3- FULL SCREEN MENU END */

	/* 5- HOME */
	#home .content-left {
		padding-left: 0;
	}
	#home .content-left h1 {
		font-size: 60px;
	}
	#home .content-right .home-images {
	    width: 400px;
	}
	#home .content-right .home-image {
		top: 50%;
		transform: translateY(-50%);
	}
	/* 5- HOME END */

	/* 8- PROJECTS */
	.project-list .project-box {
		flex: 0 0 30%;
	}
	/* 8- PROJECTS END */
	section#projects .modal-content .project-media .inner {
		width: 100%;
	}
	section#projects .modal-content iframe {
		height: 400px;
	}
	.project-list .embed-responsive iframe {
		height: 500px;
	}
	/* 8- PROJECTS END */
}

@media only screen and (max-width : 830px) {
	/* 1- MAIN */
	section.inner {
		padding: 90px 32px 90px 70px;
	}
	section .modal-dialog {
		max-width: 85%;
	}
	/* 1- MAIN END */

	/* 2- HEADER */
	.classic-menu {
		display: none;
	}
	.header-right ul.lang {
		margin-right: 60px;	
	}
	.menu-toggle {
		display: block;
	}
	.full-screen-menu {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	/* 2- HEADER END */

	/* 3- FULL SCREEN MENU */
	.full-screen-menu {
	    clip-path: polygon(20% 0, 100% 0, 100% 100%, 59% 100%);
	    background-repeat: no-repeat;
	    background-position: right top;
	}
	.full-screen-menu ul {
	    margin-top: 500px;
	    transform: rotate(-15deg) translateX(75px);
	}
	.full-screen-menu ul li {
		transform: rotate(15deg);
	}	
	/* 3- FULL SCREEN MENU END */

	/* 5- HOME */
	#home .content-left {
		padding-left: 0;
		margin-bottom: 100px;
	}
	#home .content-left h1 {
		font-size: 70px;
	}
	#home .content-right {
		margin-top: 60px;
		width: 100%;
		justify-content: center;
	}
	#home .home-images {
		width: 100%;
	}
	/* 5- HOME END */

	/* 6- ABOUT US */
	section#about-us {
		background: url(../images/bg/about-bg-1.png) 0 0 no-repeat, url(../images/bg/about-bg-2.png) bottom right no-repeat;
	}
	section#about-us .left-content {
		text-align: center;
	}
	section#about-us .img-fluid {
		max-width: 60%;
		margin-top: 30px;
	}
	section#about-us .col-lg-5 {
		text-align: center;
	}
	/* 6- ABOUT US END */

	/* 7- WHAT WE DO */
	section#what-we-do .col-xl-4 {
		width: 100%;
		text-align: center;
	}
	section#what-we-do .img-fluid {
		max-width: 400px;
	}
	.feature-box {
		width: 220px;
		height: 308px;
		background-size: 220px 308px;
	}
	/* 7- WHAT WE DO END */

	/* 8- PROJECTS */
	.project-list .project-box {
		flex: 1 0 45%;
	}
	.project-list .embed-responsive iframe {
		height: 400px;
	}
	/* 8- PROJECTS END */

	/* 9- REFERENCES */
	.reference-box img {
		max-width: 127px;
	}
	/* 9- REFERENCES END */

	/* 10- CONTACT */
  	section#contact .container-fluid {
  		display: flex;
  		flex-direction: column;
  		justify-content: center;
  	}
  	section#contact .map {
  		min-height: 400px;
  	}
  	.contacts {
  		margin-top: 40px;
  	}
  	/* 10- CONTACT END */
}


@media only screen and (max-width : 440px) {
	/* 1- MAIN */
	.btn {
	    padding: 10px 30px;
	}
	.section-title {
		padding: 20px 0;
		margin-bottom: 0;
	}
	.section-title h1 {
	    font-size: 40px;
	}
	section.inner h2 {
		font-size: 40px;
	}
	section .modal-dialog {
		max-width: 100%;
	}
	section .modal-content {
		max-height: 70%;
		padding: 20px 25px;
	}
	section .modal-body {
		padding: 0;
	}
	section .modal-header h5 {
		font-size: 24px;
	}
	/* 1- MAIN END */

	/* 2- HEADER */
	.logo img {
		max-width: 100px;
	}
	.header-right ul.lang {
		margin-right: 10px;
	}
	.header-right ul.lang li a {
		font-size: 22px;	
	}
	.header-right ul.lang li:first-of-type a {
		margin-right: 10px;	
	}
	/* 2- HEADER END */

	/* 3- FULL SCREEN MENU */
	.full-screen-menu {
		clip-path: none;
		width: 70%;
	}
	.full-screen-menu ul {
		transform: none;
		width: 100%;
		margin: 20px 0;
		justify-content: center;
    	align-items: flex-start;
	}
	.full-screen-menu ul li {
		transform: none;
		margin: 0;
		margin-bottom: 15px;	
	}
	.full-screen-menu ul li a {
		padding: 15px;
		font-size: 24px;	
	}
	/* 3- FULL SCREEN MENU END */

	/* 4- SOCIAL MENU */
	.social-menu ul {
		padding-left: 10px;
	}
	.social-menu ul li {
		margin-bottom: 20px;
	}
	.social-menu ul li:last-of-type {
		margin-bottom: 0;
	}
	.social-menu ul li a {
		font-size: 30px;
	}
	/* 4- SOCIAL MENU END */

	/* 5- HOME */
	#home {
		padding: 0;
	}
	#home .home-buttons .btn:first-of-type {
	    margin-right: 20px;
	}
	#home .content-left {
		margin-top: 100px;
		margin-bottom: 30px;
	}
	#home .content-left h1 {
		font-size: 40px;
	}
	#home .content-right {
		justify-content: center;
	}
	#home .content-right .home-images {
		width: 210px;
	}
	/* 5- HOME END */

	/* 6- ABOUT US */
	section#about-us {
		background-position: 226px bottom;
		padding: 40px 10px 40px 50px;
		height: auto;
	}	
	/* 6- ABOUT US END */

	/* 7- WHAT WE DO */
	section#what-we-do {
		height: auto;
		padding: 40px 10px 40px 50px;
		background-size: cover;
	}
	section#what-we-do .img-fluid {
		max-width: 220px;
	}
	.features {
		flex-direction: column;
	}
	.feature-box {
		width: 260px;
		height: 364px;
		background-size: 260px 364px;
		margin-bottom: 30px;
	}	
	section#what-we-do .modal-content ul {
		columns: 1;
	}
	section#what-we-do .modal-content p, section#what-we-do .modal-content ul li {
		font-size: 17px;
	}
	/* 7- WHAT WE DO END */

	/* 8- PROJECTS */
  	section#projects {
  	    padding: 40px 20px 40px 50px;
  	}
	.project-list .project-box {
		flex: 1 0 95%;
	}
	section#projects .modal-content iframe {
		height: 240px;
	}
	.project-list .embed-responsive iframe {
		height: 200px;
	}
	/* 8- PROJECTS END */

	/* 9- REFERENCES */
	section#references.inner {
	    padding: 90px 12px 90px 40px;
	}
	/* 9- REFERENCES END */

	/* 10- CONTACT */
  	section#contact {
  		height: auto;
  		padding: 20px 15px 20px 55px;
  		background-size: 100%;
  	}
  	section#contact .container-fluid {
  		overflow: hidden;
  		padding: 0;
  	}
  	section#contact .map {
  		min-height: 300px;
  	}
  	.contacts {
  		display: block;
  	}
  	.contact-info:first-of-type {
  		border-right: none;
  		border-bottom: 1px solid rgba(255, 255, 255, .5);
  		margin-bottom: 30px;
  	}
  	.contact-info {
  	    padding: 15px 20px;
  	}
  	.contact-info h3 {
		font-size: 23px;
	}
	.contact-social li a {
		width: 50px;
		height: 50px;
	}
	.contact-social li a i {
		font-size: 32px;
	}
  	/* 10- CONTACT END */

  	/* 11- FOOTER */
  	footer {
  	  	padding: 0 30px;
  	}
  	/* 11- FOOTER END */
}
/* 99- RESPONSIVE END */

@media only screen and (max-width : 380px) {
	/* 1- MAIN */
	section .modal-dialog-scrollable .modal-content {
		max-height: 80%;
	}
	/* 1- MAIN END */

	/* 2- HEADER */
	.logo img {
		max-width: 80px;
	}
	.header-right ul.lang {
		margin-right: 35px;
	}
	/* 2- HEADER END */

	/* 5- HOME */
	#home .content-left {
		margin-top: 130px;
		margin-bottom: 20px;
	}
	/* 5- HOME END */

	/* 9- REFERENCES */
	.reference-box img {
	    max-width: 120px;
	}
	/* 9- REFERENCES END *
}