.cs-popup {
  position:absolute;
  top:-150%;
  left:50%;
  opacity:0;
  transform:translate(-50%,-50%)scale(1.25);
  width:380px;
  padding:30px 30px;
  background:#53B3CC;
  box-shadow:2px 2px 5px 5px rgba(0,0,0,0.15);
  border-radius:10px;
  /* transition:top 0ms ease-in-out 200ms,
             opacity 200ms ease-in-out 0ms,
             transform 200ms ease-in-out 0ms; */
}
.cs-popup.active {
  top:50%;
  opacity:.9;
  transform:translate(-50%,-50%) scale(1);
  transition:top 0ms ease-in-out 0ms,
             opacity 200ms ease-in-out 0ms,
             transform 200ms ease-in-out 0ms;
}

.cs-popup .cs-close-btn {
  position:absolute;
  top:10px;
  right:10px;
  width:15px;
  height:15px;
  background:#333333;
  color:#eee;
  text-align:center;
  line-height:15px;
  border-radius:15px;
  cursor:pointer;
}

.cs-popup .cs-form h2 {
  font-family: "Roboto Slab", arial, sans-serif;
  font-weight: bold;
  text-align:center;
  color:#333333;
  margin:10px 0px 20px;
  font-size:30px;
}

.cs-popup .cs-form .error {
  color: #f15a23;
  font-family: arial, sans-serif;
  display: block;
  font-size: 14px;
  text-align: left;
  padding-top: 5px;
  padding-left: 5px;
  font-weight: 300;
}

.cs-popup .cs-form .cs-form-element label {
  font-size:13px;
  color:#333333;
}
.cs-popup .cs-form .cs-form-element {
  margin:15px 0px;
}
.cs-popup .cs-form .cs-form-element input[type="text"] {
  margin-top:5px;
  display:block;
  width:100%;
  padding:10px;
  outline:none;
  border:1px solid #aaa;
  border-radius:5px;
}
.cs-popup .cs-form .cs-form-element button {
  width:60%;
  height:40px;
  border:none;
  outline:none;
  font-size:16px;
  font-weight: bold;
  background:#F15A23;
  color:#f5f5f5;
  border-radius:10px;
  cursor:pointer;
}
.blur {
  /* filter:brightness(30%); */
  filter: blur(3px);
}

/* ///////////// case study dropdown /////////// */

*,
*:after,
*:before {
  box-sizing: border-box;
}

.cs_container {
  margin: 5px 20px 20px 20px;
  max-width: 600px;
}

.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}

.custom-select {
  display: flex;
  flex-direction: column;
  border-width: 0 2px 0 2px;
  border-style: solid;
  border-color: #F15A23;
}

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  font-size: 16px;
  /* font-weight: 300; */
  color: #3b3b3b;
  height: 50px;
  /* line-height: 60px; */
  background: #ffffff;
  cursor: pointer;
  border-width: 2px 0 2px 0;
  border-style: solid;
  border-color: #F15A23;
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 2px solid #F15A23;
  border-top: 0;
  background: #fff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-option {
  position: relative;
  display: block;
  padding: 10px 22px 10px 22px;
  font-size: 16px;
  /* font-weight: 300; */
  color: #3b3b3b;
  /* line-height: 60px; */
  cursor: pointer;
  transition: all 0.5s;
}

.custom-option:hover {
  cursor: pointer;
  background-color: #b2b2b2;
}

.custom-option.selected {
  color: #ffffff;
  background-color: #F15A23;
}

.arrow {
  position: relative;
  height: 15px;
  width: 15px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.15rem;
  height: 100%;
  transition: all 0.5s;
}

.arrow::before {
  left: -5px;
  transform: rotate(45deg);
  background-color: #F15A23;
}

.arrow::after {
  left: 5px;
  transform: rotate(-45deg);
  background-color: #F15A23;
}

.open .arrow::before {
  left: -5px;
  transform: rotate(-45deg);
}

.open .arrow::after {
  left: 5px;
  transform: rotate(45deg);
}
