/* color chart
    #7aaec4
    #5b5555
    #616971
    #4981b3
    #7CBA42 (green kcp)v
*/

/* {
  border: 1px solid red;
  box-sizing: border-box;
}
/*must be pretty useful to see how blocks will be placed*/

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 800

.sen-<uniquifier> {
  font-family: "Sen", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
* {
  font-family: "Sen", sans-serif;
}

/*==== Navigation ====*/

.navbar-brand img {
  height: 4rem;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.navbar {
  position: fixed;
  width: 100%;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.2rem; /*create the space between the letter*/
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2); /* generate the shadow under the navbar*/
  z-index: 1;
  background-color: black;
}
.nav-item {
  padding: 0.5rem; /* create the space between the word*/
}
.nav-link {
  color: white !important; /* color text nav-bar*/
}
.nav-link.active,
.nav-link:hover {
  color: #7cba42 !important;
}
/*===== Key services section ====*/
.key-services-title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.key-premedia-services-img {
  width: 150px;
}
.key-services-text {
  font-size: 14px;
}
/*============= FOOTER =============*/
.footer-logo {
  height: 5rem;
  margin: 1.5rem auto;
}
footer {
  background-color: #7cba42;
  padding: 1rem 2rem 3rem;
}
footer p,
footer a,
.socket a {
  color: white;
  text-decoration: none;
}
ul.social {
  /* retire the dot */
  list-style-type: none;
  display: flex;
  max-width: 6rem;
  margin: 0 auto;
  padding: 0;
}
ul.social li {
  margin: 0 auto;
}
footer .svg-inline--fa {
  font-size: 2.5rem;
}
footer .svg-inline--fa:hover {
  color: black;
}

/*============= SOCKET =============*/

.socket {
  background-color: black;
  border-top: 0.1rem solid #9ce468;
}

/*============= MEDIA QUERIES =============*/

/* Devices under 1199px (xl) */
@media (max-width: 1199.98px) {
}
/* Devices under 768px (md) */
@media (max-width: 767.98px) {
}
