/*
:root {
    --main-white: #f0f0f0;
    --main-red: #be3144;
    --main-blue: #45567d;
    --main-gray: #303841;
  }
  @media (max-width: 28.75em) {
    footer {
      flex-direction: column;
      text-align: center;
    }
  }
*/

html , body {
  text-align: center;
  background-color: #f6f4e6; /* #0A192F*/
}
* {
  margin: 0;
  padding: 0;
}



.nav {
  display: flex;
  justify-content: flex-end;
  position: fixed;
  background-color: #f6f4e6; /*#0A192F*/
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

nav ul li {
  display: inline-block;
  margin: 55px;
  margin-bottom: 15px;
  margin-top: 25px;
}

nav ul li a {
  color: #41444b;
  text-decoration: none;
  border-style: solid;
  border-radius: 5px;
  border-color : #41444b;
  padding: 5px ;
}

nav ul li a:hover {
  color: #fddb3a;
  border-color:#fddb3a;
}

.nav-list {
  display: flex;
  margin-right: 2rem;
}

.intro-sec {
  top: 0;
  min-height: 55vh;
  padding-top: 30vh;
  text-align: justify;
  padding-left: 80px; 
  padding-right: 80px;
  width: 700px;
}
.intro-sec h2 {
  color: #41444b /*#E6F1FF*/;
  font-weight: 600;
  font-size: 70px;
}
.intro-sec h4 {
  color: #41444b; 
  font-weight: 600;
  font-size: 50px;
}

.intro-sec p {
  color: #52575d /*#8892B0*/;
  font-size:20px;
  margin-top: 5px;
}

.project-sec {
  padding-top: 60px;
  margin-top: -60px;
}

.project-sec .project-header {
  margin-top: 50px;
  font-weight: 600;
  font-size: 32px;
  color: #41444b;
}

.project {
  text-decoration: none;
  color: #f6f6f6;
  display: inline-block;
  overflow: hidden;
  background-color: #52575d;
  border: 1px solid; 
  border-color: #52575d;
  border-radius: 10px;
  height: 220px;
  width: 280px;
  margin: 40px 100px;
  box-shadow: 0px 10px 3px -15px;
}

.project:hover {
  color: #fddb3a;
}

.project-image {
  width: 100%;
  height: 180px;
}

.project-title {
  font-weight: bold;
  margin-top: 5px;
}

.show-all {
  text-decoration: none;
  display: block;
  width: 200px;
  height: 30px;
  margin: 20px auto 90px;
  color: #41444b; /*#64FFDA*/
  font-weight: bold;
  font-size: 1em;
  border: 2px solid #41444b ;
  border-radius: 4px;
  cursor: pointer;
  padding-top:10px;
}


.show-all:hover {
  border: 2px solid #fddb3a;
  color:#fddb3a;
}

.open {
  border-radius: 3px;
  box-shadow: 0px 10px 30px -15px;
  width: 500px;
  text-align: justify;
  background-color: #52575d; /*#172A45*/
  padding: 20px;
  margin-top: 30px;
  margin-left: 29%;
}


.other-pro h2 {
  margin-top: 50px;
  font-weight: 600;
  font-size: 32px;
  color: #41444b;
}

.open h3 {
  color: #f6f4e6;
  margin-top: 20px;
  margin-bottom: 20px;
}

.open p {
  color: #f6f4e6 ;
  font-size: 20px;
}

.contact-section {
  padding-bottom: 160px;
}

.contact-section-header {
  color: #41444b;
  padding: 160px 0 110px;
}

.contact-section-header h1 {
  font-weight: 600;
  font-size: 32px;
}

.contact-details {
  display: inline-block;
  font-weight: bold;
  margin: 0 0px 45px 0px;
  list-style-type: none;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  color: #41444b;
  text-decoration: none;
}

.contact-details i {
  font-size: 2em;
}

.contact-details:hover i {
  font-size: medium;
}

.contact-details>div {
  display: none;
  margin: 5px;
}
.contact-details:hover {
  background: #41444b;
  color: #f6f4e6;
}

.contact-details:hover>div{
  display: inline;
}

footer {
  font-family: 'Open Sans', sans-serif;
  padding: 20px;
  background: #f6f4e6;
  color: #41444b;
  line-height: 40px;
  text-decoration: bold
}



