@import url("https://fonts.googleapis.com/css?family=Solway&display=swap");
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Serif&display=swap");
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Serif", serif;
  font-size: 14px;
  min-height: 100%;
  background-color: #141414;
  color: white;
}

a {
  color: white;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #ff0c64;
}

p{
	text-align: justify;
}

.text-center{
	text-align: center !important;
}

.text-justify{
	text-align: justify !important;
}

.c-min-padding-vert{
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

.c-min-padding-top{
	padding-top: 50px !important;
}

.c-min-padding-bottom{
	padding-bottom: 50px !important;
}

.c-no-padding-top{
	padding-top: 0px !important;
}

.c-no-padding-bottom{
	padding-bottom: 0px !important;
}


.navbar {
  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;
  width: 90%;
  margin: 0px 0%;
  padding: 15px 5%;
  background-color: #141414;
  -webkit-box-shadow: 0px 0px 10px 0px #141414;
          box-shadow: 0px 0px 10px 0px #141414;
  position: fixed;
  top: 0;
  z-index: 999;
}

.navbar .logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .logo-container .logo {
  padding: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .logo-container .logo img {
  width: 100%;
  max-width: 100%;
  width: 150px;
  height: auto;
}

@media (max-width: 768px) {
  .navbar .logo-container .logo img {
    width: 138px;
  }
}

.navbar .logo-container .text {
  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-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar .logo-container .text h2 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 5px;
}

@media (max-width: 992px) {
  .navbar .logo-container .text h2 {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.navbar .logo-container .text p {
  font-weight: 300;
  letter-spacing: 2px;
}

.navbar .navbar-list .mobile-menu {
  display: none;
  position: relative;
  top: 0px;
  right: 0px;
  z-index: 2;
}

@media (max-width: 768px) {
  .navbar .navbar-list .mobile-menu {
    display: block;
  }
}

.navbar .navbar-list .mobile-menu #menu-list {
  position: absolute;
  right: -120%;
  top: 150px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 0px;
  background-color: #141414;
  list-style-type: none;
  min-width: 200px;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

@media (max-width: 768px) {
  .navbar .navbar-list .mobile-menu #menu-list {
    display: block !important;
  }
}

.navbar .navbar-list .mobile-menu #menu-list li {
  padding: 10px 0;
  font-size: 16px;
  text-align: end;
}

.navbar .navbar-list .mobile-menu input:checked ~ #menu-list {
  -webkit-transform: none;
          transform: none;
}

.navbar .navbar-list .mobile-menu input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  right: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 3;
}

.navbar .navbar-list .mobile-menu input:checked ~ span {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(50%, 100%);
          transform: rotate(45deg) translate(50%, 100%);
  background: white;
}

.navbar .navbar-list .mobile-menu input:checked ~ span:nth-last-child(2) {
  -webkit-transform: rotate(-45deg) translate(20%, 50%);
          transform: rotate(-45deg) translate(20%, 50%);
}

.navbar .navbar-list .mobile-menu input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}

.navbar .navbar-list .mobile-menu span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background-color: white;
  z-index: 2;
  border-radius: 3px;
  -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.navbar .navbar-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

@media (max-width: 768px) {
  .navbar .navbar-list ul {
    display: none;
  }
}

.navbar .navbar-list ul li {
  margin-left: 20px;
}

@media (max-width: 992px) {
  .navbar .navbar-list ul li {
    margin-left: 10px;
  }
}

.navbar .navbar-list ul .active {
  color: #ff0c64;
}

.navbar .navbar-list ul .active:after {
  width: 100%;
}

.navbar .navbar-list ul a {
  line-height: 16px;
  letter-spacing: 1.8px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}

.navbar .navbar-list ul a:after {
  content: ' ';
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #ff0c64;
  margin: 0px auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar .navbar-list ul a:hover:after {
  width: 100%;
}

.navbar-alternative {
  border-bottom: 1px solid #ff0c64;
  -webkit-box-shadow: 0px 0px 5px -1px #ff0c64 !important;
          box-shadow: 0px 0px 5px -1px #ff0c64 !important;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  padding: 150px 5%;
}

@media (max-width: 576px) {
  .container {
    padding: 75px 5%;
  }
}

@media (max-width: 576px) {
  .c-no-padding-top-esm {
    padding-top: 0px !important;
  }
}

@media (max-width: 576px) {
  .c-min-padding-top-esm {
    padding-top: 25px !important;
  }
}

@media (max-width: 576px) {
  .c-no-padding-bottom-esm {
    padding-bottom: 0px !important;
  }
}

@media (max-width: 576px) {
  .c-min-padding-bottom-esm {
    padding-bottom: 25px !important;
  }
}

.container-full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.c-short {
  padding: 0px 0px;
}

.c-mid {
  padding: 50px 0px 0px;
}

.container-h {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.container-v {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.light-bg {
  background-color: #f4eee5;
  color: #3b4554;
}

.dark-bg {
  background-color: #212325;
  color: white;
}

.white-bg {
  background-color: white;
  color: #3b4554;
}

.white-text {
  color: white !important;
}

.center-text {
  text-align: center !important;
}

.align-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.c-full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.c-half-extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 75%;
}

@media (max-width: 992px) {
  .c-half-extra {
    width: 100% !important;
  }
}

.c-half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}

@media (max-width: 992px) {
  .c-half {
    width: 100% !important;
  }
}

.c-half-minus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 25%;
}

@media (max-width: 992px) {
  .c-half-minus {
    width: 100% !important;
  }
}

.c-one-third {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33.3333%;
}

@media (max-width: 992px) {
  .c-one-third {
    width: 100% !important;
  }
}

.c-two-third {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 66%;
}

@media (max-width: 992px) {
  .c-two-third {
    width: 100% !important;
  }
}

.c-one-fifth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 20%;
}

@media (max-width: 992px) {
  .c-one-fifth {
    width: 100% !important;
  }
}

.c-two-fifth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40%;
}

@media (max-width: 992px) {
  .c-two-fifth {
    width: 100% !important;
  }
}

.c-three-fifth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60%;
}

@media (max-width: 992px) {
  .c-three-fifth {
    width: 100% !important;
  }
}

.c-four-fifth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80%;
}

@media (max-width: 992px) {
  .c-four-fifth {
    width: 100% !important;
  }
}

.c-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 992px) {
  .c-flex-center {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.button {
  color: #3b4554;
  background-color: #ff0c64;
  border: 1px solid #ff0c64;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 18px;
  min-width: 180px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 10px;
  text-align: center;
  margin: 10px 0px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 16px;
  color: #141414;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.button:hover {
  color: white;
  background-color: #3b4554;
  border-color: #3b4554;
}

@media (max-width: 1200px) {
  .button {
    min-width: 150px;
  }
}

.button-xs {
  margin: 25px 0px;
}

.button-center {
  margin-left: auto;
  margin-right: auto;
}

.main-banner {
  background-image: url("./img/main-banner-1.jpg");
  background-position: center right !important;
}

@media (max-width: 1200px) {
  .main-banner {
    background-image: url("./img/main-banner-0.jpg") !important;
    background-size: 130% !important;
    background-position: center !important;
  }
}

@media (max-width: 992px) {
  .main-banner {
    background-position: center center !important;
    background-size: cover !important;
  }
}

@media (max-width: 1200px) {
  .main-banner .c-half {
    width: 75%;
  }
}

@media (max-width: 992px) {
  .main-banner .c-half {
    width: 100%;
  }
}

.main-banner h2 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 0px 0px;
}

.main-banner h1 {
  font-family: "IBM Plex Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: 1px;
  padding-bottom: 30px;
}

@media (max-width: 992px) {
  .main-banner h1 {
    line-height: 1;
    padding-bottom: 20px;
    font-size: 40px;
  }
}

.main-banner p {
  font-family: "IBM Plex Serif", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  font-size: 18px;
}

.main-banner2 {
  background-image: url("./img/wowman_Adversiment-Billboard-mockup.jpg");
  background-position: center right !important;
}

@media (max-width: 1200px) {
  .main-banner2 {
    background-image: url("./img/wowman_Adversiment-Billboard-mockup.jpg") !important;
    background-size: 130% !important;
    background-position: center !important;
  }
}

@media (max-width: 992px) {
  .main-banner2 {
    background-position: center center !important;
    background-size: cover !important;
  }
}

@media (max-width: 1200px) {
  .main-banner2 .c-half {
    width: 75%;
  }
}

@media (max-width: 992px) {
  .main-banner2 .c-half {
    width: 100%;
  }
}

.main-banner2 h2 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 0px 0px;
}

.main-banner2 h1 {
  font-family: "IBM Plex Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: 1px;
  padding-bottom: 30px;
}

@media (max-width: 992px) {
  .main-banner2 h1 {
    line-height: 1;
    padding-bottom: 20px;
    font-size: 45px;
  }
}

.main-banner2 p {
  font-family: "IBM Plex Serif", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  font-size: 18px;
}

.parallax-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: local;
  }
}

.full-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 992px) {
  .full-image {
    display: none;
  }
}

.title {
  font-family: "IBM Plex Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  line-height: 1.3;
  letter-spacing: 0px;
}

@media (max-width: 768px) {
  .title {
    font-size: 40px;
  }
}

.sub-title {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 2px;
  font-weight: 400;
  border-bottom: 1px solid;
  border-color: #ff0c64;
  padding-bottom: 5px;
}

@media (max-width: 768px) {
  .sub-title {
    font-size: 13px;
  }
}

.main-data {
  height: 100%;
  padding: 150px 15%;
  color: #3b4554;
}

@media (max-width: 768px) {
  .main-data {
    padding: 25px 5%;
  }
}

.main-data .title {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .main-data .title {
    font-size: 25px;
  }
}

.main-data .main-text {
  font-style: normal;
  font-family: "IBM Plex Serif", serif;
  color: #3b4554;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0px;
}

.main-data .secondary-text {
  font-weight: 400;
  font-style: normal;
  font-family: "IBM Plex Serif", serif;
  color: #3b4554;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0px;
}

.spacer {
  padding: 20px 0px;
}

.spacer-short {
  padding: 10px 0px;
}

.spacer-line {
  margin: 5px 0px;
  width: 100%;
  height: 5px;
  background-color: #ff0c64;
}

@media (max-width: 992px) {
  .spacer-line {
    height: 2px;
  }
}

.spacer-line-lite {
  margin: 5px auto;
  width: 50%;
  height: 1px;
  background-color: #ff0c64;
}

.spacer-line-v {
  margin: auto 15px;
  width: 2px;
  height: 50%;
  background-color: #ff0c64;
}

@media (max-width: 992px) {
  .spacer-top {
    padding-top: 75px;
    background-color: #212325;
  }
}

.card {
  margin: 0px 10px;
  text-align: center;
  background-color: white;
  font-family: "IBM Plex Serif", serif;
  -webkit-box-shadow: 0px 0px 10px -5px #141414;
          box-shadow: 0px 0px 10px -5px #141414;
  border-radius: 5px;
}

@media (max-width: 992px) {
  .card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 10px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.card img {
  width: 100%;
}

@media (max-width: 992px) {
  .card img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .card img {
    width: 75%;
    margin: 0 auto;
  }
}

.card .card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  height: 100%;
}

@media (max-width: 992px) {
  .card .card-info {
    height: auto;
    margin: auto;
  }
}

.card .card-info p {
  font-size: 16px;
}

.card .card-info h1 {
  color: black;
  margin: 10px 0px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0px;
}

.card .card-info .card-normal {
  font-size: 18px;
  text-align: start;
  padding: 15px;
}

.card .person {
  padding: 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 992px) {
  .card .person {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 25%;
  }
}

@media (max-width: 768px) {
  .card .person {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
  }
}

.card .person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 25px;
}

.card .person .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: start;
}

@media (max-width: 992px) {
  .card .person .name {
    text-align: center;
  }
}

.card .person .name h1 {
  font-weight: 500;
}

@media (max-width: 992px) {
  .card-extra .card-info {
    width: 75% !important;
  }
}

@media (max-width: 768px) {
  .card-extra .card-info {
    width: auto !important;
    padding: 20px 0px;
  }
}

.extra-link {
  color: #3b4554;
  text-transform: uppercase;
  font-size: 16px;
  border-bottom: 1px solid;
  border-color: #ff0c64;
  padding: 30px 0px 2px;
}

.mid-banner {
  background-image: url("./img/bg-1.jpg");
}

@media (max-width: 576px) {
  .mid-banner {
    background: #f4eee5;
  }
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery img {
  width: 30%;
  height: auto;
  max-width: 340px;
  max-height: 340px;
  margin: 10px;
}

.gallery .photo {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 30%;
  height: 340px;
  margin: 10px;
}

@media (max-width: 992px) {
  .gallery .photo {
    width: 45%;
  }
}

@media (max-width: 576px) {
  .gallery .photo {
    width: 90%;
  }
}

.f-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

footer {
  background-color: #212325;
  padding: 30px 5%;
  width: 90%;
}

@media (max-width: 768px) {
  footer .c-full {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 992px) {
  footer .c-half {
    width: 100%;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
}

@media (max-width: 576px) {
  footer .c-half {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  footer .spacer-line-v {
    width: 0px;
  }
}

footer .data {
  margin: 20px auto;
}

@media (max-width: 768px) {
  footer .data {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .brand-text {
  text-align: center;
}

@media (max-width: 768px) {
  footer .brand-text {
    width: 50%;
  }
}

@media (max-width: 576px) {
  footer .brand-text {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

footer .spacer-line {
  height: 1px;
  width: 30%;
}

@media (max-width: 768px) {
  footer .spacer-line {
    display: block;
  }
}

footer .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  footer .brand {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (max-width: 576px) {
  footer .brand {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .brand img {
  width: 50%;
  height: auto;
  margin: 0px auto;
}

footer .brand p {
  color: white;
}

footer p {
  font-size: 16px;
  font-family: "IBM Plex Serif", serif;
  color: #a197a1;
  padding: 0px 10px;
}

footer i {
  color: #ff0c64;
  font-size: 25px;
  margin-right: 15px;
}

footer .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  footer .info {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 576px) {
  footer .info {
    width: 100%;
  }
}

footer .info .text {
  text-align: center;
}

footer .info .text p {
  font-size: 16px;
  margin-bottom: 5px;
  padding: 0px;
}

footer .info .text p span {
  color: #ff0c64;
}

footer .info .text a {
  font-size: 16px;
}

@media (max-width: 768px) {
  footer .info-second {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  footer .info-second {
    width: 100%;
  }
}

footer .newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  footer .newsletter {
    margin-top: 20px;
  }
}

footer .newsletter .spacer-line {
  margin-left: auto;
  margin-right: auto;
}

footer .newsletter .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .newsletter .top a {
  text-align: center;
}

footer .newsletter .top a:hover {
  color: white;
}

footer .newsletter input {
  width: 90%;
  margin: 10px auto auto;
  height: 40px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #ff0c64;
  color: white;
  padding: 0px;
  font-size: 20px;
  background: transparent;
  line-height: 1.2;
}

@media (max-width: 768px) {
  footer .newsletter input {
    width: 50%;
    margin: 10px auto 0px;
  }
}

@media (max-width: 576px) {
  footer .newsletter input {
    width: 90%;
  }
}

footer .newsletter .button {
  width: 45%;
  padding: 7px 0px;
  margin: 10px auto;
  color: white;
}

@media (max-width: 768px) {
  footer .newsletter .button {
    width: 50%;
  }
}

.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 10%;
  font-size: 14px;
}

@media (max-width: 768px) {
  .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.movements h1 {
  margin-bottom: 10px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .movements h1 {
    margin: 25px 0px;
  }
}

.movements img {
  width: auto;
  height: 100px;
}

@media (max-width: 992px) {
  .movements img {
    margin: 25px auto;
  }
}

@media (max-width: 768px) {
  .movements img {
    width: 100%;
    height: auto;
    max-height: 150px;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .movements .square {
    max-height: 150px;
    max-width: 150px;
  }
}

@media (max-width: 992px) {
  .movements .c-half {
    width: 100% !important;
  }
}

.movements .spacer-line {
  display: none;
}

@media (max-width: 992px) {
  .movements .spacer-line {
    display: block;
    height: 1px;
  }
}

.full-logo img {
  margin-top: 20px;
  height: 100px;
  width: auto;
}

@media (max-width: 576px) {
  .full-logo img {
    height: 90px;
  }
}

.directory {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.directory .directory-data {
  width: 40%;
  height: 100%;
  padding: 0px 20px;
  text-align: justify;
}

@media (max-width: 992px) {
  .directory .directory-data {
    width: 100%;
  }
  .directory .directory-data:nth-child(n+2) {
    margin-top: 30px;
  }
}

.directory .directory-data:nth-child(n+3) {
  margin-top: 30px;
}

.directory .directory-data h3 {
  font-size: 24px;
}

.directory .directory-data h3:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  margin: 15px -15px;
  background-color: #ff0c64;
}

.directory .directory-data a {
  display: block;
  color: #ff0c64;
  text-decoration: underline;
}

.directory .directory-data .directory-sub {
  margin-top: 5px;
}

.directory-second {
  padding: 150px 15%;
}

@media (max-width: 768px) {
  .directory-second {
    padding: 150px 5%;
  }
}

.directory-second .directory-data {
  height: auto;
  width: 100%;
}

@media (max-width: 992px) {
  .directory-second .directory-data {
    width: 100%;
  }
}

.directory-second .directory-data:nth-child(n+2) {
  margin-top: 30px;
}

.directory-second .directory-data h3 {
  font-size: 20px;
}

.directory-second .directory-data h3:before {
  width: 10px;
  height: 10px;
  margin: 10px -15px;
  background-color: #ff0c64;
}

.directory-third .directory-data {
  height: auto;
  width: 100%;
}

@media (max-width: 992px) {
  .directory-third .directory-data {
    width: 100%;
  }
}

.directory-third .directory-data:nth-child(n+1) {
  margin-top: 10px;
}

.directory-third .directory-data h3 {
  font-size: 20px;
}

.directory-third .directory-data h3:before {
  width: 10px;
  height: 10px;
  margin: 10px -15px;
  background-color: #ff0c64;
}

@media (max-width: 768px) {
  .alerta-alba {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .alerta-alba:nth-child(n+2) {
    margin-top: 30px;
  }
  .alerta-alba .circled {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .alerta-alba h1 {
    text-align: center;
    margin-top: 10px;
  }
}

.alerta-alba:nth-child(n+3) {
  margin-top: 30px;
}

.alerta-alba .circled {
  background-color: #ff0c64;
  border-radius: 10000px;
  padding: 20px;
  margin-right: 10px;
  margin-left: 10px;
  height: 40px;
  width: 40px;
}

.alerta-alba img {
  width: 40px;
  height: 40px;
  -webkit-filter: invert(100);
          filter: invert(100);
}

.alerta-alba h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.circle-violence {
  border-radius: 10px;
  text-align: center;
  height: 100%;
  min-height: 180px;
  padding: 25px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  height: 100%;
}

.circle-violence h1 {
  font-size: 24px;
  color: #ff0c64;
}

.circle-violence p {
  font-size: 20px;
  padding: 0px 10px;
}

.circle-grouper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.slider__arrow {
  position: absolute;
  cursor: pointer;
  top: -25px;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0px solid #ff0c64;
  background-color: #ff0c64;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.5);
}

.slider__arrow:hover {
  width: 60px;
  height: 60px;
  top: -30px;
}

.slider__arrow--next {
  right: 1.5rem;
}

.slider__arrow--prev {
  left: 1.5rem;
}

.slider__grouper {
  position: absolute;
  width: 100%;
  top: 50%;
}

.slider__grouper span {
  font-size: 30px;
  font-weight: 900;
}

.violence-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.violence-data .circled-icon {
  width: 100%;
  padding-right: 10px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.violence-data .circled-icon img {
  height: 48px;
  width: 48px;
}

@media (max-width: 768px) {
  .custom-title {
    margin-top: 50px;
    padding-bottom: 0px !important;
    font-size: 40px !important;
  }
}

@media (max-width: 768px) {
  .custom-subtitle {
    font-size: 20px !important;
  }
}
/*# sourceMappingURL=style.css.map */