/*=============================================
=         SPEAKUP&BEHEARD PAGE CSS            =
=============================================*/

@import url(https://fonts.googleapis.com/css?family=Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

:root {
  --main_font: 'Montserrat', sans-serif;

  --white: #ffffff;
  --black: #000000;
  --pink: #B90067;
  --blue: #5388A4;
  --gray: #ECECEC;

  --cap_blue: #5388A4;
  --cap_green: #88AC89;
  --cap_violet: #45568F;
}

body {
  font-family: var(--main_font) !important;
  font-size: 16px;
  overflow-x: hidden;
  width: 100vw;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: var(--main_font) !important;
}

.fix_margin_top {
  margin-top: 260px;
}

a,
a:hover {
  text-decoration: none;
}

a:visited {
  color: var(--blue);
}

p {
  margin: 0;
  text-align: justify !important;
}

u {
  color: var(--black);
}

.briciole,
.rightpage {
  display: none;
}

.text_pink {
  color: var(--pink) !important;
}

.text_blue {
  color: var(--blue);
}

.text_black {
  color: var(--black);
}

.title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  word-break: break-word;
  margin-left: 0;
}

.subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: none;
}

.box_bg_gray {
  padding: 1.5rem;
  background-color: var(--gray);
  width: 100%;
  height: auto;
  min-height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.box_bg_gray>h4 {
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: none;
  padding: 0;
  background: transparent;
  margin-bottom: 0;
  text-align: inherit;
}

.box_bg_gray img {
  width: 40px;
  align-self: flex-start;
}

.box_wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.caption {
  margin-top: 0.6rem;
  height: 120px;
  width: 100%;
  color: var(--white);
  padding: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.caption img {
  align-self: end;
  width: 30px;
}

.caption p {
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0;
}

.cap1 {
  background-color: var(--cap_blue);
}

.cap2 {
  background-color: var(--cap_green);
}

.cap3 {
  background-color: var(--cap_violet);
}

#show_green_number {
  text-align: center !important;
}


/*----------  Select2 Custom  ----------*/

.select2-container .select2-selection--single {
  height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--pink);
  color: var(--white);
}

/*=============================================
=            MEDIA QUERY            =
=============================================*/

@media screen and (max-width: 1300px) {

  .title {
    font-size: 2.2rem;
  }

}

@media screen and (max-width: 1092px) {

  .box_wrapper {
    margin-bottom: 2rem;
  }

}

@media screen and (max-width: 992px) {

  .fix_margin_top {
    margin-top: 280px;
  }

  .subtitle {
    font-size: 1.6rem;
  }

}

@media screen and (max-width: 576px) {

  .title {
    font-size: 1.9rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

}

@media screen and (max-width: 414px) {

  .fix_margin_top {
    margin-top: 210px;
  }

  .title {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

}

@media screen and (max-width: 375px) {

  .title {
    font-size: 1.3rem;
  }

}