/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  font-family: arial;
  scroll-behavior: smooth; }

*,
*:after,
*:before {
  box-sizing: inherit; }

#brand__report-card img {
  width: 100%;
  height: auto; }

#brand__report-card .report-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px; }
  @media (max-width: 900px) {
    #brand__report-card .report-grid {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 600px) {
    #brand__report-card .report-grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) {
    #brand__report-card .report-grid {
      grid-gap: 15px; } }

#brand__report-card .item {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  box-shadow: 0 16px 48px rgba(32, 41, 50, 0.08);
  border-radius: 10px;
  transition: transform .2s;
  border: 1px solid #f1f1f1;
  min-height: 220px; }
  #brand__report-card .item .anchor__link {
    color: #afafaf;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    border: 2px solid #e8e8e8;
    padding: 5px 10px;
    border-radius: 50px;
    transition: transform .2s;
    font-weight: 400;
    transform: scale(1); }
    #brand__report-card .item .anchor__link:hover {
      border: 2px solid green;
      color: green;
      transform: scale(1.3); }
  #brand__report-card .item .brand {
    flex-grow: 1;
    margin-bottom: 10px; }
    #brand__report-card .item .brand h3 {
      font-size: 22px; }
  #brand__report-card .item .brand__Logo p {
    display: none; }
  #brand__report-card .item p.brand__owner {
    font-size: 12px;
    margin-bottom: 0px; }
  #brand__report-card .item ul.status {
    display: flex;
    justify-content: center;
    padding: 0;
    margin-left: 0;
    margin-bottom: 20px;
    border-top: 1px solid #eaeaea;
    padding-top: 15px; }
    #brand__report-card .item ul.status li {
      list-style: none;
      transition: transform .2s; }
    #brand__report-card .item ul.status img {
      width: 55px; }

#brands__report {
  padding: 20px; }
  #brands__report .status__red {
    border-left: 5px solid #be0014; }
  #brands__report .status__green {
    border-left: 5px solid #1d7737; }
  #brands__report .status__yellow {
    border-left: 5px solid #f7b721; }
  #brands__report .brand__info {
    padding: 20px;
    border-top: 1px solid #bcbcbc;
    border-bottom: 1px solid #bcbcbc;
    border-right: 1px solid #bcbcbc;
    border-radius: 0px 10px 10px 0px;
    margin-top: 30px; }
  #brands__report .brand__info_title {
    display: flex;
    align-items: flex-start; }
    #brands__report .brand__info_title h4 span {
      display: block;
      font-size: 16px; }



#wsm-header__menu > ul > li:nth-child(5) a {
	background-color: TRANSPARENT;
    color: #2E2E2E;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
    border-radius: 1.2rem;
}

#wsm-header__menu > ul > li:nth-child(6) a {
	background: #e70052;
    color: white;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
    border-radius: 1.2rem;
}

@media (max-width: 800px) {
	.wsm-header-menu a {
		font-size: 14px !important;
	}
}






.wsm-custom-container {
  border-radius: 10px;
  max-width: 88.125rem;
  margin: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.wsm-custom-container h2 {
  font-size: 36px;
}
@media (min-width: 650px) {
  .wsm-custom-container h2 {
    font-size: 40px;
  }
}
.wsm-custom-container p {
  font-size: 22px;
}
@media (min-width: 650px) {
  .wsm-custom-container p {
    font-size: 26px;
  }
}
.wsm-custom-container.ct-container {
  overflow: hidden;
  margin-bottom: 50px;
  display: grid;
  align-items: center;
  background: #05884a;
}
@media (min-width: 650px) {
  .wsm-custom-container.ct-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.wsm-custom-container.ct-container h2 {
  color: white !important;
}
.wsm-custom-container.ct-container .image {
  height: 100%;
  width: 100%;
}
.wsm-custom-container.ct-container .image img {
  object-fit: cover;
  vertical-align: middle;
  height: 100%;
  width: 100%;
}
.wsm-custom-container.ct-container .content {
  padding: 20px;
  color: white;
}
@media (min-width: 650px) {
  .wsm-custom-container.ct-container .content {
    padding: 50px;
  }
}
.wsm-custom-container.r-container {
  padding: 20px;
  border: 5px solid #05884a;
  display: grid;
  padding: 0.625rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 650px) {
  .wsm-custom-container.r-container {
    grid-template-columns: minmax(200px, 30%) minmax(320px, 1fr);
  }
}
.wsm-custom-container.r-container .image {
  transition: transform 0.2s ease;
}
.wsm-custom-container.r-container .image img {
  objectfit: cover;
}
.wsm-custom-container.r-container:hover .image {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.wsm-custom-container.r-container .content {
  padding: 30px;
}

section.custom {
  padding: 0.625rem;
  margin-top: 50px;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 1.0625rem 1.875rem 0.8125rem;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 1.6875rem;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #05884a;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}
.button-2 {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 1.0625rem 1.875rem 0.8125rem;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 1.6875rem;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #ffffff;
  color: #05884a;
  font-weight: 700;
  text-transform: uppercase;
}

