@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Raleway&display=swap");

:root {
  --main-bg-color: #f5f5f7;
  --hover-color: rgba(5, 126, 190, 1);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  background-color: var(--main-bg-color);
}

.container {
  width: 80vw;
  margin: auto;  
}

a {
  padding-bottom: 5px;
  text-decoration: none;
  color: black;
}

a:hover {
  color: var(--hover-color);
  cursor: pointer;
}

.active {
  border-bottom: solid 2px var(--hover-color);
}

h1 {
  font-size: 25px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  padding: 10px;
}

p {
  font-size: 16px;
}

/* 
==========================
navigation
========================== */

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-right {
  display: flex;
  flex-direction: column;
  min-width: 400px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: solid 1px grey;
}

.nav-top i:hover {
  cursor: pointer;
  color: var(--hover-color);
}

.nav-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.nav-bottom li {
  list-style: none;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 20px;
  height: 35px;
}

a .logo {
  display: inline-block;
  width: 90px;
  height: 100px;
}

.logo-conatainer a{
  padding:0;
}
/* 
==========================
footer
========================== */
footer {
  background-color: #fafafa;
}

.footer-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-section p {
  padding: 10px 0;
}
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid grey;
}

/* 
==========================
search-bar
========================== */

#search {
  background-image: url("../images/search_grey.svg");
  background-position: 15px;
  background-repeat: no-repeat;
}

.searchbar {
  width: 100%;
  height: 50px;
  margin: 0 40px 20px 0;
  padding-left: 60px;
  font-family: inherit;
  font-size: 16px;
  background-color: #fff;
  border-style: none;
  border-radius: 8px;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
}

/* 
==========================
search-bar
========================== */

.btn h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  text-align: left;
  color: inherit;
}

.btn {
  padding: 5px 0 5px 0;
  margin-bottom: 10px;
  background: none;
  border: none;
  color: inherit;
}

.btn:hover {
  color: var(--hover-color);
}

.active {
  color: var(--hover-color);
  border-bottom: solid 2px var(--hover-color);
}

.link-btn {
  font-family: inherit;
  font-size: 16px;
  padding: 15px;
  min-width: 300px;
  text-align: center;
  border-radius: 8px;
  background-color: var(--hover-color);
  border-style: none;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
  color: #fff;
}

.link-btn:hover {
  background-color: #fff;
  cursor: pointer;
}

/* 
===========================
color-cards
=========================== */
.palitra-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 50px;
  justify-content: center;
}

.color-card {
  display: none;
  border-radius: 18px;
  background-color: #f5f5f7;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}

.show {
  display: block;
}

.color-back {
  width: 100%;
  height: 300px;
  border-radius: 18px 18px 0 0;
}

.current-page {
  padding-bottom: 5px;
  color: var(--hover-color);
  cursor: pointer;
  border-bottom: solid 2px var(--hover-color);
}

.content-menu{
  display: none;
}

.nav-burger{
  display: none;
}