@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;
}


/* Home section */

.home {
    background-image:url("ai element/cover image.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: 3.5em;
	font-weight: 800;

}

/*---section1---*/

.sec_title {
	font-size: 53px;
	font-weight: 900;
	text-align: center;
	color: #000000;
	
}

.section1 {
	padding: 0px;
	padding-bottom: 150px;
	padding-top: 150px;
}

.service {
	text-align: center;
	padding-top: 40px;
}

.service_title {
	font-size: 20px;
	padding: 40px;
	padding-bottom: 20px;
}


.service_subtitle {
	font-size: 14px;
	font-weight: 500;
	padding-top: 0px;
	padding-left: 40px;
	padding-right: 40px;
}

.service_item {
padding-left: 0px;
		padding-right: 0px;
	}
/*---- Section 2 ----*/

.sec_title {
	font-size: 53px;
	font-weight: 900;
	text-align: center;
	color: #000000;
	
}

.sec1 {
	padding: 50px;
}

.sec_title1 {
	
	font-size: 20px;
	font-weight: 800;
	padding-top: 20px;
	text-align: center;
}

.sec_subtitle1 {
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	margin-left: 20%;
	margin-right: 20%;
}

/*---- Previous commision ----*/

.previous_commisions {
	
  justify-content:center;
	padding: 0%;
	margin: 0%;
	margin-bottom: 40px;
}

.card {
 
  border-radius: 10px;
  background:#FFFFFF;
  transition: 0.4s ease-out;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  margin: 40px;
}

.card1 {
	width: 370px;
  height: 520px;
}

.card2 {
	
	width: 370px;
  height: 370px;
}
.card:hover {
  transform: translateY(20px);
}
.card:hover:before {
  opacity: 1;
}
.card:hover .info {
  opacity: 1;
  transform: translateY(0px);
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
}
.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}
.card .info {
  position: relative;
  z-index: 3;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
	align-content: center;
	padding: 40% 0% 40% 0%;
}

.card .info p {
  letter-spacing: 1px;
  font-size: 16px;
 text-align: center;
 font-weight: 400;
}

.sec2_head {
	font-size: 24px;
	text-align: center;
	
}

.button_sec2 {
	text-align: center;
	margin: 60px;
}

/*section 2 title---*/
.section2 {
	background-color:#E6E6E6;
	padding: 50px;
}

.sec_titlecontainer {
	text-align: center;
	padding-top: 70px;
	color: #000000;
	padding-bottom: 70px;
	
}

.sec_subtitle {
	font-size: 16px;
	font-weight:400;
	text-align: center;
	margin-right: 15%;
	margin-left: 15%;
}


/*----Button----*/
.button {
  border-radius: 50px;
  background-color:transparent;
  border:solid;
  text-align: center;
  font-size: 3em;
  padding: 5px;
  width: 300px;
  height: 50px; 
  transition: all 0.5s;
  cursor: pointer;
  font-family:'Montserrat', sans-serif,;
  font-weight: 500;	
}

.button_head {
	margin-left: 14%;
	margin-top: 10px;
	color:#000000;
}


.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;
}

/*----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: 1080px) {
	
	.text1 {
		font-size:  75px;
	}
}

@media (max-width: 635px) {
	
	.text1 {
		font-size:  70px;
		text-align: center;
		padding-top: 50px;
	}
	
		.heading {
		text-align: center;
		padding: 0%;

	}
	
		.card1 {
		height: 200px;
	}
	
	.button {
		margin-left: 0px;
		width: 250px;
	}
	
	.sec_title {
		font-size: 38px;
	}

}

@media (max-width: 546px) {
		.card2 {
		width: 350px;
	}
	
	.text1 {
		font-size:  50px;
	}

	.button {
		width:200px;
		font-size:16px;
	}
}

@media (max-width:576px) {
	.sec_subtitle1 {
		margin:0px;
	}
	
	.sec_subtitle {
		font-size: 14px;
		padding: 0px;
	}
	
	.service_subtitle {
		font-weight: 500;
	}
	
	
 	.sec_title {
		font-size:500%;
		text-align: center;
	}
	
	}

@media (max-width: 1200px) {
	
	.card2 {
	
  width: 270px;
  height: 270px;
}
	
	.service_item {
		width:50%;
		padding: 40px;
		
	}
}

@media (max-width: 609px) {

	
	.service_subtitle {
		font-weight: 500;
	}
	
		.service_item {
		width: 100%;
	}
	
}

@media (max-width: 678px){
	    .service_item {
		padding: 40px;
		padding-left: 30px;
		padding-right: 30px;
	}
	
}

@media (max-width: 414px) {
	.text2 {
		color:#00E676;
	}
	
}
