@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap);
@import url(https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
/* --- breakpoints --- */
/* ----- */
:root {
  --c-purple-light: #cdc9ec;
  --c-yellow: #ffa700;
  --c-line: #645c9c;
  --c-blue: #18284a;
  --c-mediumgrey: #797979;
  --c-grey: #131313;
  --c-fgrey: #323232;
  --c-lightgrey: #f1f1f1;
  --c-darkred: #a70009;
  --c-red: #e30713;
  --c-black: black;
}

.identifier .cont {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.identifier .cont .col a {
  color: white;
  text-transform: uppercase;
  font-weight: 800;
  padding: 15px 40px;
  font-size: 18px;
  line-height: 16px;
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  transition: padding 0.3s ease-in-out;
  z-index: 1;
}
.identifier .cont .col a:before {
  content: "";
  background-color: var(--c-red);
  height: 100%;
  width: 100%;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.identifier .cont .col a:after {
  content: "";
  height: 100%;
  width: 0;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--c-grey) url(../../../images/arrow-white.svg) no-repeat 97% center;
  background-size: 28px;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}
.identifier .cont .col a:hover:after {
  width: 100%;
}

.wp-block[data-type="acf/slider"] {
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 0px !important;
}

.identifier {
  padding: 50px 0 80px;
  box-sizing: border-box;
  background-color: white;
}
.identifier h2 {
  text-align: center;
  font-size: 40px;
  color: var(--c-red);
}
.identifier .cont {
  flex-wrap: wrap;
  display: flex;
}
.identifier .cont .col {
  width: 60%;
  padding: 50px 50px 50px 0;
  box-sizing: border-box;
  text-align: left;
  position: relative;
}
.identifier .cont .col .mark {
  position: absolute;
  font-size: 17px;
  color: white;
  padding: 12px;
  line-height: 10px;
  border-radius: 30px;
  font-weight: 700;
  z-index: 1;
}
.identifier .cont .col .mark .point {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f00;
}
.identifier .cont .col .mark:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--c-red);
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 50px;
  z-index: -1;
}
.identifier .cont .col .mark.active:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--c-red);
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 50px;
  z-index: -2;
  transform: scale(1);
  animation: pulse 2s infinite;
}
.identifier .cont .col p {
  padding: 15px 0;
}
.identifier .cont .col a {
  margin-top: 20px;
}
.identifier .cont .col a:before {
  background-color: var(--c-grey);
}
.identifier .cont .col a:after {
  background-color: var(--c-red);
}
.identifier .cont .col iframe {
  width: 100%;
  height: 100%;
  position: relative;
}
.identifier .cont .col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.identifier .cont .col ul li {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  line-height: 25px;
}
.identifier .cont .col ul li span {
  background: var(--c-grey);
  line-height: 8px;
  font-size: 11px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  padding: 8px 8px;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  text-align: center;
}
.identifier .cont .col ul li.active {
  color: var(--c-red);
}
.identifier .cont .col ul li.active span {
  background: var(--c-red);
}
.identifier .cont .col ul li:hover {
  color: var(--c-red);
  cursor: pointer;
}
.identifier .cont .col ul li:hover span {
  background: var(--c-red);
}
.identifier .cont .col:nth-child(2) {
  padding: 70px 0 0;
  box-sizing: border-box;
  width: 40%;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(227, 7, 19, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(227, 7, 19, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(227, 7, 19, 0);
  }
}
@media screen and (max-width: 812px) {
  .identifier {
    padding: 50px 0;
  }
  .identifier h2 {
    padding: 0 20px;
    font-size: 21px !important;
  }
  .identifier .cont .col {
    width: 100% !important;
    padding: 10px 0 !important;
  }
  .identifier .cont .col:nth-child(2) {
    padding: 10px 0 !important;
  }
}
/*# sourceMappingURL=identifier.css.map */
