@charset "utf-8";
/* CSS Document */

.container-fluid {
	padding: 0%;
	margin: 0%;
	
}


html {
	scroll-behavior: smooth;
}

/*---media---*/



/* Logo */

@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,700;0,800;0,900;1,400;1,800&display=swap);
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Montserrat', sans-serif;
    font-size: 62.5%;
    font-size: 8px;
	font-weight: 800;
}
/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
	z-index: 1;
}


.nav div.main_list {
    height: 65px;
    float: right;
	margin-left: auto;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    
    
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
   
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 65px;
    font-size: 2.5rem;
	padding-right: 7rem;
}

.nav div.main_list ul li a:hover {
    color: #00E676;
}

.navlinks {
	margin: 0;
}

/* Home section */

.home {
    background-image:url("Ai Items/pages design-22.png");
    background-position:center top fixed;
	background-size:cover;
	display:flex;
	background-repeat:no-repeat;
    background-attachment:scroll;
	margin: 0px;
	padding: 0px;
	padding-bottom: 301px;
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#logo {
	padding-left: 115px;
	margin-top: 10px;
	float: left;
	height: 45px;
}



/* Media qurey section */

@media screen and (min-width: 1080px) and (max-width: 1920px) {
    .container {
   
		margin-right: 40px;
    }
	
}

@media screen and (min-width: 1080px) and (max-width: 1080px) {
    .container {
        margin: 0;
    }
	
}

@media screen and (max-width:1550px) {
    .navTrigger {
        display: block;
    }
   
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color:transparent;
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 2.4rem;
        padding: 20px;
		color:#000000;
    }
    .nav div.media_button {
        display: block;
    }
	
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: #111;
}



/* Title */

#title {
	
	text-align: left;
}

.heading {
	
	text-align:left;
	padding-left:15%;
	color:#000000;
}

.heading {
	margin-top: 35%;
	text-align: left;
}

.text1 {
	font-family:'Montserrat', sans-serif,;
    font-size: 100px;
	font-weight: 900;
}

.text2 {

	font-family:'Montserrat', sans-serif,;
    font-size: 3em;
	font-weight: 800;

}

/*----Image----*/

.image {
	padding-left:10px;
	padding-right:10px;
	text-align: justify;
	align-content:center;
}

.image2 {
	justify-content:right;
	float: right;
}

/*---- Section 2 ----*/

.sec_title {
	font-size: 53px;
	font-weight: 900;
	text-align: center;
	padding-top: 70px;
	color: #000000;
	padding-bottom: 30px;
	
}

.sec1 {
	padding: 20px;
}

.project {
	padding: 0%;
	margin: 10%;
	padding-top:50px;
	display: flex;
}

.card {
 
  border-radius: 10px;
  background:#FFFFFF;
  transition: 0.4s ease-out;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  margin-top: 0%;
  max-width:100%;
	
	
}

.card1 {
	width: 550px;
	height: 280px;
}



.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit:cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}

.sec2_head {
	font-size: 24px;
	text-align: center;
	
}


/*----Button----*/
.button {
  border-radius: 50px;
  background-color:transparent;
  border:solid;
  text-align: center;
  font-size: 3em;
  width: 300px;
  height: 50px; 
  transition: all 0.5s;
  cursor: pointer;
  font-family:'Montserrat', sans-serif,;
  font-weight: 500;	
}

.button_sec {
	
	margin-top: 20px;
	color:#000000;
	margin-left: auto;
}


.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
color: #000000;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}


/*---project 1----*/
.project2_title {
	padding-left: 30px;
	padding-right: 30px;
}

.project1 {
	font-size: 16px;
	font-weight: 500;
}
.project2 {
	text-align: right;
}

.project1_head {
	font-size: 35px;
	font-weight: 900;
}

.section2 {
	background-color: #E6E6E6;
	padding: 50px;
	padding-bottom: 250px;
}

.sec_subtitle {
	font-size: 16px;
	font-weight: 500;
	text-align: justify;
}

.sec_subtitle1 {
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	margin-left: 15%;
	margin-right: 15%;
}

/*----footer---*/

.footer {
	background-color: black;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	padding: 0%;
	margin:0%;
}

.footer_row1 {
	text-align: center;
	
}

.footer_row2 {
	padding: 0.5%;
}
.footer_row3 {
	font-weight: 300;
	font-size: 14px;
	padding: 40px;
	
	
}

.footer_row1 {
	padding: 50px;
}

#logo_footer {
	
	margin-right: -40px;
}

.footer a:hover {
    color: #00E676;
}

.footer a {
    color:#FFFFFF;
	text-decoration: none;
}

/*----media----*/


@media (max-width: 1281px){
	.project1 {
		padding:0px;
		margin:0px;
		
	}	
	
	.project1_head {
		padding-top: 50px;
		padding-left: 0px;
	}
	
	.project_title {
		text-align: left;
		width: 100%;
	}
	

}


@media (max-width: 1080px){
	.card {
		text-align: center;
		justify-content: center;
	}	
	
	.project1 {
		padding: 0%;
		margin: 0%;
		justify-content: center;
	}
	
	.project_title {
		text-align: center;
		margin: 0%;
		padding: 0%;
		padding: 50px;
	}
	
	.sec_subtitle {
		font-size: 16px;
	}
	
	.project1_head {
		font-size: 30px;
	}
		
	.text1 {
		font-size:  65px;
	}
	
	.image {
		display: flex;
		justify-content: center;
	}
}

@media (max-width: 635px) {
		.heading {
		text-align: center;
		padding: 0%;
	}
	
	.text1 {
		font-size:  70px;
		text-align: center;
	}
	

	.card1 {
		height: 200px;
	}
	
	.button {
		margin-left: 0px;
		width: 250px;
	}
	
	.sec_title {
		font-size: 38px;
	}
	
}

@media (max-width: 547px) {
	
	.card1 {
		width: 350px;
	}
	
	.text1 {
		font-size:  50px;
	}
	
	.project_title {
		padding: 0px;
		padding-top: 40px;
	}

	.button {
		width:200px;
		font-size:16px;
	}
	
}

@media (max-width: 414px) {
	.text2 {
		color:#00E676;
	}
	
	.sec_subtitle {
		font-size: 14px;
		margin: 0px;
	}
	
	.sec_subtitle1 {
		font-size: 14px;
		padding: 0px;
		padding-top: 10px;
		margin: 0px;
	}
	
	.project1_head {
		padding-top: 20px;
		text-align: center;
	}
}


