:root {
  --background-color: #f7fafc;
  --dark-color: #212529;
  --scroll-color: #686f76;
  --half-blue: #e6ebee;
  --main-white: #ffffff;
  --main-border: #e5e9f1;
  --header: "Rubik", sans-serif;
  --text: "Raleway", sans-serif;
  --Lunasima: "Lunasima", sans-serif;
  --Montserrat: "Montserrat", sans-serif;
}

body {
  background-color: var(--main-white);
}

.myname {
  font-family: var(--header);
  font-size: 30px;
  font-weight: bold;
}

.section-title {
  padding: 30px 0;
  position: relative;
}

.card {
  border-radius: 3px !important;
}

.card-img {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  border-bottom: 1px solid var(--main-border);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.about-text {
  font-size: 16px;
  font-family: var(--Lunasima);
}

a.nav-link {
  cursor: pointer;
}

a.nav-link.menu.active span {
  border-bottom: 1px solid var(--dark-color) !important;
  padding-bottom: 3px;
}

.nav-link.filter {
  width: 100%;
  text-align: center;
  font-size: 18px;
}

a.nav-link.filter.active {
  border-bottom: 1px solid var(--dark-color) !important;
  padding-bottom: 3px;
}

.link-homepage {
  cursor: pointer;
}

.link-homepage:hover {
  background-color: #d3d3d3 !important;
}

.div-contact {
  max-width: 300px;
  margin: auto;
  font-size: 16px;
  font-family: var(--Lunasima);
  text-decoration: underline;
}

.div-contact i {
  margin-right: 5px !important;
}

.number {
  font-family: system-ui;
}

/* width */
div.scrollmenu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
div.scrollmenu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
div.scrollmenu::-webkit-scrollbar-thumb {
  background: var(--scroll-color); 
  border-radius: 10px;
}

div.scrollmenu {
  overflow: auto;
  white-space: nowrap;
}

div.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none !important;
}

div.scrollmenu a:hover {
  background-color: #777;
}

span.tools {
  margin-right: 3px;
  background-image: 
    linear-gradient(45deg, #1a1a1a, #4d4d4d),
    linear-gradient(142deg, transparent, #f0f0f0),
    linear-gradient(108deg, #000000, transparent);
}

#footer {
  width: 100%;
  bottom: 0px;
  font-family: var(--header);
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

/* media query */

@media only screen and (min-width: 992px) {
  .navbar {
    height: 150px;
  }

  .container-md {
    padding-left: 200px;
    padding-right: 200px;
  }
}

@media only screen and (max-width: 992px) {
  .myname {
    display: none;
  }

  .nav-item {
    text-align: center;
  }

  .navbar-brand img {
    max-width: 36px !important;
  }

  .img-svg {
    display: none;
  }
}
