/* Colors */
/* Google fonts Roboto  */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap');

/* CSS utilities */
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  line-height: 1.6;
  font-family: 'Montserrat';
}
.container {
  margin: auto;
  max-width: 1320px;
  padding: 0 20px;
}
ul { 
  list-style: none;
  font-size: 400;
}
a {
  color: #2a4359;
  text-decoration: none;
}
h1, h2 {
  font-weight: 400;
  line-height: 1.2;
}
p {
  margin: 10px 0;
  font-size: 14px;
}
img {
  width: 100%;
}
/* Navbar  */
.section_carbon_app_navbar {
  background-color:rgb(70, 88, 96);
}
.carbon_app_navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.carbon_app_navbar a {
  color: #fff;
  padding: 10px 20px;
  margin: 0 5px;
  font-size: 20px;
  text-decoration: none;
}
.carbon_app_navbar a:hover{
  color: #0b9719;
}
.carbon_app_navbar ul {
  display: flex;
}
.carbon_app_navbar .logo {
  font-weight: 400;
  font-size: 32px;
  color: #fff;
}
/* Footer  */
.section_footer{
  background-color:rgb(70, 88, 96);
}
.footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 70px;
  align-items: center;
  background-color: rgb(70, 88, 96);
  padding: 0 0px;
}

.footer a {
  color: #fff;
}

.footer a:hover{
  color: #0b9719;
}


/* Media query */
@media(max-width:768px){
  .carbon_app_navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .carbon_app_navbar a {
    font-size: 15px;
    padding: 5px 20px;
  }
  .carbon_app_navbar ul {
    flex-direction: column;
    padding: 0;
  }
}