@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;1,700&display=swap'); 

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1000px;	
}
img {
	height: 100%;
	width: 100%;
	object-fit: scale-down;
}
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title span {
	color: rgb(9, 128, 153);
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid #098099ff;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: #098099ff;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: #098099ff;
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.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: #1f1e1e;
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
	
}

#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	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: #f0f8ff05;
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.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: rgb(26, 187, 219);
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.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: 0.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 {
    top: 0;
}

/* @-webkit-keyframes hamburger_puls { vendor prefix for Safari */
    /* 0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
    }
} */
/* 
@keyframes hamburger_puls {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
    }
} */



/* End Header section */

/* Hero Section */
#hero {
	/* background-image: url(./img/ship.png); */
	background-size: cover;
	background-position: top center;
	position: relative;
	/* background-image: linear-gradient(0deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url(./img/ship\ edited.jpg) */
	background-image: linear-gradient(0deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url(./img/ship.png)
	
	/* z-index: 1; */
	
}
#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #2e5256;
	opacity: 0.7;
	z-index: -1;
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
	
}

.brand img
{
	width: 150px;
  	height: 40px;
}

#hero h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	font-weight: 700;
	position: relative;
	color: transparent;
	-webkit-animation: text_reveal 0.5s ease forwards;
	-moz-animation: text_reveal 0.5s ease forwards;
	-o-animation: text_reveal 0.5s ease forwards;
	animation: text_reveal 0.5s ease forwards;
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
  }


#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1:nth-child(1) {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
  }
#hero h1:nth-child(2) {
-webkit-animation-delay: 2s;
-moz-animation-delay: 2s;
-o-animation-delay: 2s;
animation-delay: 2s;
}

#hero h1:nth-child(3) {
-webkit-animation: text_reveal_name 0.5s ease forwards;
-moz-animation: text_reveal_name 0.5s ease forwards;
-o-animation: text_reveal_name 0.5s ease forwards;
animation: text_reveal_name 0.5s ease forwards;
-webkit-animation-delay: 3s;
-moz-animation-delay: 3s;
-o-animation-delay: 3s;
animation-delay: 3s;
}

#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #098099ff;
	animation: text_reveal_box 1s ease;
	-webkit-animation: text_reveal_box 1s ease;
	-moz-animation: text_reveal_box 1s ease;
	-o-animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
}

#hero h1:nth-child(1) span {
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	-webkit-animation-delay: 1.5s;
	-moz-animation-delay: 1.5s;
	-o-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	-webkit-animation-delay: 2.5s;
	-moz-animation-delay: 2.5s;
	-o-animation-delay: 2.5s;
	animation-delay: 2.5s;
}

/* End Hero Section */




/* Services Section */
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/


#services .services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 0;
}

#services .service-top {
    max-width: 500px;
    margin: 0 auto;
}

#services .service-bottom { /* vendor prefix for Safari */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /* vendor prefix for Safari */
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 50px;
}

#services .service-item {
    position: relative; /* vendor prefix for Safari */ 	
    display: -webkit-box; 	
    display: -ms-flexbox; 	
    display: flex; /* vendor prefix for Safari */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 350px;
    height: 350px; 
    cursor: pointer;
    justify-content: center; /* vendor prefix for Safari */
    flex-direction: column;
    padding: 30px;
    border-radius: 10px;
    background-size: cover;
    margin: 10px 5%;
    -webkit-transform-style: preserve-3d; /* vendor prefix for Safari */
    transform-style: preserve-3d;
    -webkit-transform-origin: center right; /* vendor prefix for Safari */
    -ms-transform-origin: center right;
        transform-origin: center right;
    -webkit-transition: transform 1s; /* vendor prefix for Safari */
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    font-size: 18px;
}


.service-item.flipped {
    -webkit-transform: translateX(-100%) rotateY(-180deg);
            transform: translateX(-100%) rotateY(-180deg);
}

#services .card__face {
    position: absolute;
    width: 100%;
    height: 100%; /* vendor prefix for Safari */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-backface-visibility: hidden; /* vendor prefix for Safari */
    backface-visibility: hidden;
}


.card__face--back {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    border-radius: 10px;
    background-image: -o-linear-gradient(30deg, #20262d 0%, #34414fba 100%);
    background-image: linear-gradient(60deg, #20262d 0%, #34414fba 100%);
}


#services .service-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: -o-linear-gradient(30deg, #20262d 0%, #34414fba 100%);
    background-image: linear-gradient(60deg, #20262d 0%, #34414fba 100%);
    opacity: 0.9;
    z-index: -1;
    border-radius: 10px;
}

#services .service-item h2 {
    font-size: 2rem;
    color: white;
	padding: 0 15px;
	line-height: 2.7rem;
    text-transform: uppercase;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
	font-weight: 500;
}


#services .service-item span
{
	font-weight: 300;
	margin-bottom: 5px;
	text-transform: none;
	font-size: 1.4rem;

}

#services .service-item p {
    color: white;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 20px;
	line-height: 2rem;
	/* font-size: 16px; */

}

/* #card1 .card__face--front p.learn
{
	color: #40D3DC;
	font-size: 10px;
	margin-top: 50px;
} */

#services .service-item p.learn{
	margin-top: 150px;
}

#card1 {
    background-image: url(./img/design.jpeg);
}

#card2 {
    background-image: url(./img/Ship\ man.jpg);
}

#card3 {
    background-image: url(./img/propulsion.jpeg);
}

#card4 {
    background-image: url(./img/inspection.jpeg);
}

#card5 {
    background-image: url(./img/consulting.jpeg);
}

/* End Services Section */








/* Projects section */
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

#projects .projects {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}
#projects .projects-header h1 {
	margin-bottom: 50px;
}
#projects .all-projects {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
#projects .project-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#projects .project-info {
	padding: 30px;
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	background-image: -o-linear-gradient(30deg, #29323c 0%, #485563 100%);
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: white;
}
#projects .project-info h1 {
	font-size: 4rem;
	font-weight: 500;
}
#projects .project-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 10px;
}
#projects .project-info p {
	color: white;
}
#projects .project-img {
	-ms-flex-preferred-size: 50%;
	    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-image: -o-linear-gradient(30deg, #29323c 0%, #485563 100%);
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.3;
}
#projects .project-img img {
	-webkit-transition: 0.3s ease transform;
	-o-transition: 0.3s ease transform;
	transition: 0.3s ease transform;
}
#projects .project-item:hover .project-img img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
/* End Projects section */

/* our clients */

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/


#Client .our-clients {
	width: 100%;
	height: auto;
	text-align: center;
	padding: 50px;
	background-image: -o-linear-gradient(60deg, #29323c 0%, #296070 100%);
	background-image: linear-gradient(30deg, #29323c 0%, #296070 100%);

}

#Client .cont
{
	min-height: 70vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1000px;
	padding: 50px auto;
}

.our-clients ul {
	padding: 0;
	margin: 0;
}

.our-clients ul li {
	list-style: none;
	display: inline-block;
	width:180px;
	height:100px;
	position: relative;
	overflow: hidden;
	cursor:pointer;
	margin: 30px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.our-clients ul li img {
	width: 100%;
	height: 100%;
}


#Client .section-title 
{
	color: white;
}


#dmc
{
	width: 110%;
	height: 110%;
}

.our-clients ul li img:nth-child(1) {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.our-clients ul li img:nth-child(2) {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

/*Hover-Section*/


.our-clients ul li:hover img:nth-child(1) {
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.our-clients ul li:hover img:nth-child(2) {
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

/* End .our-clients */



/* start About us */
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

#about .about { 
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: column-reverse;
	        flex-direction: column-reverse;
	text-align: center;
	max-width: 1330px;
	margin: 0 auto;
	padding: 100px 20px;
}


/* #about .col-left 
{
	padding-left: -48px;
} */


#about .col-right {
	width: 80%;
}


#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	margin-bottom: 20px;
}
#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}

#about .col-left .slider {
	height: 100%;
	width: 100%;
	position: relative;
}

#about .col-left .slider::after {
	content: '';
	position: relative;
	
}

  
.slider{
width: 100%;
height: 100%;
overflow: hidden;
}

.slides{
width: 500%;
height: 500px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}

.slides input{
display: none;
}

.slide{
width: 20%;
-webkit-transition: 2s;
-o-transition: 2s;
transition: 2s;
}

.slide img{
width: 100%;
height: 100%;
}

/*css for manual slide navigation*/

.navigation-manual{
position: absolute;
width: 100%;
margin-top: -20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
	-ms-flex-pack: center;
		justify-content: center;
}

.manual-btn{
border: 2px solid #40D3DC;
padding: 5px;
border-radius: 10px;
cursor: pointer;
-webkit-transition: 1s;
-o-transition: 1s;
transition: 1s;
}

.manual-btn:not(:last-child){
margin-right: 40px;
}

.manual-btn:hover{
background: #40D3DC;
}

#radio1:checked ~ .first{
margin-left: 0;
}

#radio2:checked ~ .first{
margin-left: -20%;
}

#radio3:checked ~ .first{
margin-left: -40%;
}

#radio4:checked ~ .first{
margin-left: -60%;
}

/*css for automatic navigation*/

.navigation-auto{
position: absolute;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
-webkit-box-pack: center;
	-ms-flex-pack: center;
		justify-content: center;
margin-top: 480px;
}

.navigation-auto div{
border: 2px solid #40D3DC;
padding: 5px;
border-radius: 10px;
-webkit-transition: 1s;
-o-transition: 1s;
transition: 1s;
}

.navigation-auto div:not(:last-child){
margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
background: #40D3DC;
}

#radio2:checked ~ .navigation-auto .auto-btn2{
background: #40D3DC;
}

#radio3:checked ~ .navigation-auto .auto-btn3{
background: #40D3DC;
}

#radio4:checked ~ .navigation-auto .auto-btn4{
background: #40D3DC;
}

/* END OF ABOUT US SECTION */
        
 



/* contact Section */
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

#contact
{
	background: rgb(41, 50, 60);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
	        box-shadow: 0 0 10px rgba(0,0,0,0.3);

}

#contact h1
{
	color: white;
}
#contact .contact {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}
.contact-container
{
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 12rem;
  border-radius: 5px;
  overflow: hidden;
  padding-bottom: 80px;
}


.contact-form
{
  display: -ms-grid;
  display: grid;
  row-gap: 2rem;
}

.contact-form input, .contact-form textarea
{
  font-family: 'Montserrat', sans-serif;
  margin: 10px 0;
  background: transparent;
  border: 0px;
  border-bottom: 2px solid #c5ecfd;
  padding: 10px;
  color: #c5ecfd;
  width: 100%;
}

.contact-form textarea
{
  resize:none;
  height: 200px;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c5ecfd;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #c5ecfd;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #c5ecfd;
}


.contact-form button
{
	font-family: 'Montserrat', sans-serif;
    background:  #098099ff; 
	border-color:  #098099ff;
	color:white;
	font-weight: 300;
	letter-spacing: 2px;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

.contact-form button:hover
{
	background:  #0a697c; 
	border-color:  #0a697c;
	-webkit-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	transition: 0.3s all linear;
}

.map iframe{
  width: 100%;
  height: 100%;
}


/*End contact Section */



/* NEW FOOTER */
footer{
	position: relative;
	width: 100%;
	background: #098099;
	min-height: 100px;
	padding: 20px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Montserrat', sans-serif;
	line-height: 2rem;
	letter-spacing: .1rem;
	color:#ffffff;

}

footer .about-info{
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

footer .about-info h1{
    font-size: 2.3rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 2.3rem;
	letter-spacing: .4rem;
}

footer .about-info span{
	font-weight: 500;
	line-height: 2.3rem;
}

footer .about-info p{
	max-width: 500px;
    margin: 10px auto;
    line-height: 2.3rem;
	font-weight: 300;
    font-size: 14px;
	color: #FFF;
	opacity: 0.75;
}


footer .info-icon
{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1rem 0;
}

footer .info-icon li{
	list-style: none;
	margin: 0 10px;
	font-size: 1.5em;


}

footer .info-icon li a{
	font-size: 1.8em;
	color: #fff;
	margin: 0 10px;
	vertical-align: middle;
	transition: 0.5s;
	opacity: 0.80;
}

footer .info-icon li #text
{
	font-size: 2.2em;

}

footer .social-icon
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
	flex-wrap: wrap;
}

footer .social-icon li{
	list-style: none;
}

footer .social-icon li a{
	font-size: 2.2em;
	color: #fff;
	margin: 0 10px;
	display: inline-block;
	opacity: 0.75;
	transition: 0.5s;
}

footer .social-icon li a:hover
{
	transform: translateY(-10px);
	opacity: 1;
}



footer .wave {

	position:absolute;  	
	top : -80px; 
	Left : 0; 
	width : 100%; 
	height : 100px; 
	background :url(img/wave.png); 
	background-size: 1000px 100px;
}

footer .wave#wave1 { 
	z-index : 1000; 
	opacity : 1; 
	bottom : 0; 
	animation : animateWave 4s linear infinite;
	-webkit-animation : animateWave 4s linear infinite;

}

footer .wave#wave2 { 
	z-index : 999; 
	opacity : 0.5; 
	bottom : 10px; 
	animation : animateWave_02 3s linear infinite;
	-webkit-animation : animateWave_02 3s linear infinite;

}

footer .wave#wave3 { 
	z-index : 1000; 
	opacity : 0.2; 
	bottom : 15px; 
	animation : animateWave 3s linear infinite;
	-webkit-animation : animateWave 3s linear infinite;

}

footer .wave#wave4 { 
	z-index : 999; 
	opacity : 0.7; 
	bottom : 20px; 
	animation : animateWave_02 4s linear infinite;
	-webkit-animation : animateWave_02 4s linear infinite;

}

@keyframes animateWave 
{
 	0% 
	{ 
		background-position-x: 1000px;
	} 
	100% 
	{ 
		background-position-x : 0px; 
	}
}

@-webkit-keyframes animateWave 
{
 	0% 
	{ 
		background-position-x: 1000px;
	} 
	100% 
	{ 
		background-position-x : 0px; 
	}
}


@keyframes animateWave_02
{
 	0% 
	{ 
		background-position-x: 0px;
	} 
	100% 
	{ 
		background-position-x : 1000px; 
	}
} 

@-webkit-keyframes animateWave_02
{
 	0% 
	{ 
		background-position-x: 0px;
	} 
	100% 
	{ 
		background-position-x : 1000px; 
	}
}

/* END OF NEW FOOTER */


/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/


/* Keyframes */
@-webkit-keyframes hamburger_puls { /* vendor prefix for Safari */
	0% {
		opacity: 1;
		-webkit-transform: scale(1); /* vendor prefix for Safari */
		transform: scale(1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.4); /* vendor prefix for Safari */
		transform: scale(1.4);
	}
}

@keyframes hamburger_puls {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.4);
		        transform: scale(1.4);
	}
}

@-webkit-keyframes text_reveal_box { /* vendor prefix for Safari */
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}

@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}

@-webkit-keyframes text_reveal { /* vendor prefix for Safari */
	100% {
		color: white;
	}
}

@keyframes text_reveal {
	100% {
		color: white;
	}
}

@-webkit-keyframes text_reveal_name { /* vendor prefix for Safari */
	100% {
		color: #098099ff;
		font-weight: 500;
	}
}

@keyframes text_reveal_name {
	100% {
		color: #098099ff;
		font-weight: 500;
	}
}


/* End Keyframes */


/* @media (max-width:964px) {
	.contact-container{
	  margin: 0 auto;
	  width: 90%;
	}
} */
  
@media (max-width:768px) {

   .section-title {
	  margin-top: 4rem;
	}
  
	.contact-container {
	  -ms-grid-columns: 1fr;
	  grid-template-columns: 1fr;
	  gap: 1rem;
	  margin-top: 5rem !important;
	  margin-bottom: 5rem !important;
  
	}
  
	.map iframe{
	  height: 400px;
	}

	.service-top p{
		margin: 10px 5%;
	}
	
}

@media only screen and (max-width: 1190px) and (min-width: 100px)  {
	#services .service-item p {
		font-size: 17px;
	  line-height: 2rem;
	}
}

@media only screen and (max-width: 931px) and (min-width: 815px)  {

	footer .info-icon li a{
		font-size: 1.5em;
	}
	
	footer .info-icon li 
	{
		font-size: 1.3em;
	}

}

@media only screen and (max-width: 814px) and (min-width: 765px)  {
	footer .info-icon
	{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1rem 0;
	}

	footer .info-icon li a{
		font-size: 1.5em;
	}
	
	footer .info-icon li 
	{
		font-size: 1.3em;
		margin: 0 5px;
	}


}

@media only screen and (max-width:764px){
	footer .info-icon
	{
    list-style: none;
    display:block;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1rem 0;
	}

	footer .info-icon li a{
		font-size: 1.5em;
		margin:0  5px;
	}
	
	footer .info-icon li 
	{
		font-size: 1.3em;
		margin:10px;
	}


}

@media only screen and (min-width: 1024px) {
	/* About */
	#about .about {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}
	#about .col-left {
		width: 940px;
		height: 530px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid #098099ff;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}

	
	
}

@media only screen and (max-width:1023.9px){
	
	#about .col-left .slider {
		height: 100%;
		width: 500px;
		position: relative;
	}
	
}

@media (min-width:1370px){
	#services .service-item p {
		font-size: 16px;
	  line-height: 2rem;
	}
}

@media only screen and (max-width:600px){
	#about .col-left .slider {
		/* height: 100%; */
		width: 400px;
		position: relative;
	}

	.navigation-manual{
	margin-top: -60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	}
	
	.navigation-auto{
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	margin-top: 440px;
	}
}


@media only screen and (max-width:460px){
	#about .col-left .slider {
		/* height: 100%; */
		width: 370px;
		position: relative;
	}

	.navigation-manual{
	margin-top: -80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	}
	
	.navigation-auto{
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	margin-top: 420px;
	}
}


@media only screen and (max-width:410px){
	#about .col-left .slider {
		/* height: 100%; */
		width: 330px;
		position: relative;
	}

	.navigation-manual{
	margin-top: -80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	}
	
	.navigation-auto{
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	margin-top: 420px;
	}
}
/* Media Query For Tablet */
/* so 768 and above */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
		
	}
	/* End Hero */

	/* Services Section */
	#services .service-bottom .service-item {
		-ms-flex-preferred-size: 45%;
		    flex-basis: 45%;
		margin: 2.5%;
	}
	/* End Services Section */

	/* Project */
	#projects .project-item {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}
	/* End Project */

	

	/* Contact  */
	#contact .contact {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 100px 0;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		min-width: 20vh;
	}
	#contact .contact-items {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: space-evenly;
		    -ms-flex-pack: space-evenly;
		        justify-content: space-evenly;
		margin: 0;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}
	#contact .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contact .contact-item .icon img {
		-o-object-fit: contain;
		   object-fit: contain;
	}
	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
	/* End contact  */
}

/* Media Query For Desktop */
@media screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		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 */

	#services .service-bottom .service-item {
		-ms-flex-preferred-size: 24%;
		    flex-basis: 24%;
		margin: 1.5%;
	}

}
