/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #444444;
  overflow-y: scroll;
}

a {
  color: var(--color-primary); 
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-primary: #af404f;
  --color-secondary: #d34155;
  --color-hover: rgba(175, 65, 79, 0.9);
  --color-black: #000;
  --color-white: #fff;
  --color-header: rgba(19, 20, 27, 0.9);
  --color-title: #2a2c39;
  --color-sub-title: #aaaaaa;
  --color-shadow: rgba(127, 137, 161, 0.25);
  --color-shadow-2: rgba(0, 0, 0, 0.1);
  --color-team-member: #37517e;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 10px 0;
  overflow: hidden;  
  margin-top: 30px;
  margin-bottom: 50px;
}

section h2 {
  font-family: "Jost", sans-serif; 
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #af404f;
}

section h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

section h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #af404f;
  bottom: 0;
  left: calc(50% - 20px);
}

@media (max-width: 990px) {
  section {
    padding: 0 50px 0 50px;  /* bottom-right-top-left*/
  }
}

/* Scrollbar Width */
::-webkit-scrollbar {
  width: 10px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 50px;
}

/* Scrollbar Handle on Hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.crt-grid-post .crt-grid-post-image {
    position: absolute;
    margin: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}