

h2 {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 500;
  margin: 0;
}

.is-flex {
  display: flex;
}

.a-i-c {
  align-items: center;
}

.a-i-bl {
  align-items: baseline;
}

.a-i-s {
  align-items: start;
}

.a-i-e {
  align-items: end;
}

.j-c-sb {
  justify-content: space-between;
}

.j-c-s {
  justify-content: start;
}

.j-c-c {
  justify-content: center;
}

.gap4 {
  gap: 4px;
}

.gap5 {
  gap: 5px;
}

.gap6 {
  gap: 6px;
}

.gap8 {
  gap: 8px;
}

.gap10 {
  gap: 10px;
}

.gap16 {
  gap: 16px;
}

.gap24 {
  gap: 24px;
}

.gap30 {
  gap: 30px;
}

.gap32 {
  gap: 32px;
}

.gap40 {
  gap: 40px;
}

.gap56 {
  gap: 56px;
}

.gap60 {
  gap: 60px;
}

.flex1 {
  flex: 1;
}

.flex3 {
  flex: 3;
}

.f-d-c {
  flex-direction: column;
}

.w100 {
  width: 100%;
  max-width: 100%;
}

.w70 {
  width: 70%;
  max-width: 70%;
}

.w60 {
  width: 60%;
  max-width: 60%;
}

.w50 {
  width: 50%;
  max-width: 50%;
}

.w30 {
  width: 30%;
  max-width: 30%;
}

.white-box {
  background: #ffffff;
}

.br6 {
  border-radius: 6px;
}

.br8 {
  border-radius: 8px;
}

.br16 {
  border-radius: 16px;
}

.border {
  border: 1px #dfdfdf solid;
}

.border-top {
  border-top: 1px rgba(142.41, 143.21, 146.03, 0.4) solid;
}

.border-bottom {
  border-bottom: 1px rgba(142.41, 143.21, 146.03, 0.4) solid;
}

.grey {
  background: #f0f5f7; color:inherit !important
}

.page {
  background: #ffffff;
  font-family: "Euclid", "Arial", "Helvetica", sans-serif;
  color: #282d33;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.main {
  flex-grow: 1;
  position: relative;
}

.container {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.breadcrumbs-wrap+* {margin:0 !important} 
.section {
  padding: 64px 0;
  margin:0
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 16px;
  background: #ffffff;
  color: #282d33;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.btn:hover {
  color: #e62c3a;
}

.text-lg {
  font-size: clamp(16px, 3vw, 20px);
}
.breadcrumbs-wrap  .wrap {padding: 0}
.banner {
  background: #2c3139;
  color: #ffffff;
  position: relative;
  padding: 0 0 70px;
  overflow: hidden;
  margin:0
}
.must {font-size:14px; color:red}
.banner-wrap {
  max-width: 908px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.seo-block {
  padding-bottom: 75px;
}

.text-block {
  max-height: 100%;
  transition: max-height 0.5s ease-in-out;
}
.text-block.truncated {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}
.text-block.truncated.truncated::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  transition: opacity 0.3s ease;
}
.text-block.truncated.expanded:after {
  opacity: 0;
}
.text-block ul {
  padding-left: 30px;
  list-style: disc;
}
.text-block a {
  text-decoration: none;
  color: #282d33;
}

.breadcrumbs {
  padding: 24px 0;
  position: relative;
  z-index: 1;
}
.breadcrumbs ul {
  flex-wrap: wrap;
}
.breadcrumbs ul li {
  color: #ffffff;
}
.breadcrumbs ul li:not(:last-child)::after {
  content: "";
  background: url(images/arrow-right-s-line.svg) center no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
}
.breadcrumbs ul li a {
  color: #ffffff;
  text-decoration: none;
}
.breadcrumbs ul li a:hover {
  opacity: 0.8;
}
.breadcrumbs .mobile-back {
  display: none;
}
.breadcrumbs .mobile-back::before {
  content: "";
  background: url(images/arrow-right-s-line.svg) center no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  transform: rotate(180deg);
}
.link-back {color:#fff; background:none !important; padding-left:0 !important}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-pt-0 {
    padding-top: 0;
  }
  
  .banner .btn {
    width: 100%;
  }
  .banner img {
    top: 7%;
    right: 10%;
    transform: scale(1.5);
  }
  .breadcrumbs .mobile-back {
    display: flex;
  }
  .breadcrumbs ul li:not(.mobile-back) {
    display: none;
  }
}
.gap14 {
  gap: 14px;
}

.j-c-e {
  justify-content: flex-end;
}

.w35 {
  width: 35%;
  max-width: 35%;
}

.w65 {
  width: 65%;
  max-width: 65%;
}

.br5 {
  border-radius: 5px;
}

.dark-bg {
  background: #2c3139;
  color: #ffffff;
}

.red-bg {
  background: #e2605f;
  color: #ffffff;
  border: none;
}

.btn.red-bg:hover {
  color: #e2605f;
  background: #ffffff;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 320px 385px;
  grid-template-rows: auto auto;
}
.banner-grid .card {
  background: #fcfcfd;
  padding: 24px;
  color: #282d33;
  position: relative;
  overflow: hidden;
}
.banner-grid .card .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}
.banner-grid .card .img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: linear-gradient(46deg, black 0%, rgba(102, 102, 102, 0) 100%);
}
.banner-grid .card .img-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20%;
  -webkit-backdrop-filter: blur(9.8px);
          backdrop-filter: blur(9.8px);
  box-shadow: 25px 25px 25px;
  -webkit-mask: linear-gradient(to right, #000 30%, transparent 100%), linear-gradient(to bottom, transparent 70%, #000 100%);
          mask: linear-gradient(to right, #000 30%, transparent 100%), linear-gradient(to bottom, transparent 70%, #000 100%);
  z-index: 3;
}
.banner-grid .card .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-grid .card .img-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}
.banner-grid .card-content {
  position: relative;
  z-index: 2;
  height: 100%;
}
.banner-grid .card h1 {
  font-size: clamp(24px, 5vw, 60px);
  line-height: 1;
  font-weight: 500;
  margin: 0;
}
.banner-grid .card h1 span {
  font-size: clamp(20px, 5vw, 34px);
}
.banner-grid .card .btn {
  width: 100%;
}
.banner-grid .card-wide {
  grid-column: 1;
  grid-row: 1/span 2;
}
.banner-grid .card-wide .img-wrap::before, .banner-grid .card-wide .img-wrap::after {
  display: none;
}
.banner-grid .card-wide_serv {
  padding: 50px 24px;
}
.banner-grid .card-narrow:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  color: #ffffff;
  background: transparent;
}
.banner-grid .card-narrow:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  margin-top: -50px;
  height: auto;
}
.banner-grid .card-medium:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
  height: 314px;
}
.banner-grid .card-medium:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
  min-height: 309px;
  color: #ffffff;
  background: transparent;
}
.banner-grid .card-tall {
  height: 100%;
}
.banner-grid .card-small {
  height: 100%;
}
.banner-grid .card-narrow h2, .banner-grid .card-medium h2 {
  font-size: 18px;
  margin: 0;
  font-weight: 500;
}
.banner-grid .card-narrow .text-lg, .banner-grid .card-medium .text-lg {
  font-size: 24px;
}
.banner-grid .card-serv {
  font-weight: 400;
}
.banner-grid .card-serv .text-lg {
  font-size: clamp(16px, 3vw, 18px);
}
.banner-grid .card-serv .card-link {
  color: #ffffff;
}
.banner-grid_offers .card {
  color: #ffffff !important;
}

.card-link {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #282d33;
}
.card-link:hover {
  opacity: 0.8;
}
.card-link svg {
  margin-top: 4px;
}

.banner-flex .card {
  padding: 24px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.banner-flex .card p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
}
.banner-flex .card .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}
.banner-flex .card .img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: linear-gradient(46deg, rgba(0, 0, 0, 0.81) 0%, rgba(102, 102, 102, 0) 100%);
}
.banner-flex .card .img-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 15%;
  -webkit-backdrop-filter: blur(9.8px);
          backdrop-filter: blur(9.8px);
  box-shadow: 25px 25px 25px;
  -webkit-mask: linear-gradient(to right, #000 30%, transparent 100%), linear-gradient(to bottom, transparent 70%, #000 100%);
          mask: linear-gradient(to right, #000 30%, transparent 100%), linear-gradient(to bottom, transparent 70%, #000 100%);
  z-index: 3;
}
.banner-flex .card .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-flex .card .img-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}
.banner-flex .card-content {
  position: relative;
  z-index: 5;
  height: 100%;
}
.banner-flex .card-link {
  color: #ffffff;
}
.banner-flex .card_lg {
  height: auto;
}
.banner-flex .card_lg .img-wrap::before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.53) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.53) 100%);
}
.banner-flex .card_lg .img-wrap::after {
  height: 55%;
  bottom: 0;
  width: 100%;
  top: auto;
  -webkit-mask: linear-gradient(to top, #000 50%, transparent 100%);
          mask: linear-gradient(to top, #000 50%, transparent 100%);
}
.banner-flex .card_lg h2 {
  font-size: 32px;
  font-weight: 500;
}
.banner-flex .card_lg p {
  font-weight: 400;
}
.banner-flex .card_tall {
  min-height: 345px;
}

.popup-open-cards {
  flex-wrap: wrap;
}
.popup-open-cards .card {
  padding: 24px;
  width: calc(33% - 8px);
  color: #282d33;
}
.popup-open-cards .card h3 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  margin: 0;
}
.popup-open-cards .card .btn {
  width: 100%;
}
.popup-open-cards .card_dark {
  background: #323943;
  color: #ffffff;
}

.wrap-with-form .form-wrap {
  padding: 40px;
  max-width:720px
}
.wrap-with-form .form-wrap .radio-wrap-overflow {
  overflow-x: scroll;
}
.wrap-with-form .form-wrap .radio-wrap {
  background: #ffffff;
  max-width: 388px;
}
.wrap-with-form .form-wrap .radio-wrap .radio-input {
  position: absolute;
  opacity: 0;
}
.wrap-with-form .form-wrap .radio-wrap .radio-input:checked + label {
  background-color: #ff0337;
  color: #ffffff;
}
.wrap-with-form .form-wrap .radio-wrap .radio-input:checked + label:hover {
  background-color: #ff0337;
}
.wrap-with-form .form-wrap .radio-wrap label {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 26px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #3f5373;
  text-align: center;
  white-space: nowrap;
  background: #ffffff;
}
.wrap-with-form .form-wrap .radio-wrap label:hover {
  background-color: #cbd5da;
}
.wrap-with-form .tab-pane {
  display: none;
}
.wrap-with-form .tab-pane h3,
.wrap-with-form .tab-pane .h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
.wrap-with-form .tab-pane_serv {
  display: flex;
}
.wrap-with-form .tab-pane_serv .form-checkboxes {
  flex-wrap: wrap;
}
.wrap-with-form .tab-pane .active {
  display: flex;
}
.wrap-with-form input[type="radio"] {
  position: relative !important;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  margin: 0;
  border-radius: 50% !important;
  cursor: pointer;
}
.wrap-with-form [type="radio"]::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  border: 1px rgba(9, 21, 46, 0.5) solid;
  position: absolute;
  top: 0;
  left: 0;
  
}
.wrap-with-form [type="radio"]:checked::before {
  border: none;
}
.wrap-with-form [type="radio"]:checked::after {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='9' cy='9' r='6.5' fill='white' stroke='%231A1C20' stroke-width='5'/%3e%3c/svg%3e ") center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.wrap-with-form .checkbox-span {
  font-size: 14px;
  line-height: 18px;
}
.wrap-with-form form .input-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #303042;
}
.wrap-with-form form .form-input,
.wrap-with-form form .form-textarea {
  padding: 7px 14px;
  color: #282d33;
  margin: 0;
  font-size: 14px;
  font-family: "Euclid", "Arial", "Helvetica", sans-serif !important;
  outline: none;
}
.wrap-with-form form .form-input::-webkit-input-placeholder,
.wrap-with-form form .form-textarea::-webkit-input-placeholder {
  color: rgba(48, 48, 66, 0.5);
  font-size: 14px;
  font-family: "Euclid", "Arial", "Helvetica", sans-serif !important;
  font-weight: 400;
}
.wrap-with-form form .form-input::-moz-placeholder,
.wrap-with-form form .form-textarea::-moz-placeholder {
  color: rgba(48, 48, 66, 0.5);
  font-size: 14px;
  font-family: "Euclid", "Arial", "Helvetica", sans-serif !important;
  font-weight: 400;
}
.wrap-with-form form .form-input::-ms-input-placeholder,
.wrap-with-form form .form-textarea::-ms-input-placeholder {
  color: rgba(48, 48, 66, 0.5);
  font-size: 14px;
  font-family: "Euclid", "Arial", "Helvetica", sans-serif !important;
  font-weight: 400;
}
.wrap-with-form form .form-input-wrap,
.wrap-with-form form .form-textarea-wrap {
  position: relative;
}
.wrap-with-form form .form-input-wrap span,
.wrap-with-form form .form-textarea-wrap span {
  color: rgba(11, 20, 38, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  position: absolute;
  top: 7px;
  right: 14px;
}
.wrap-with-form form .form-textarea {
  padding: 14px;
  min-height: 81px;
  resize: none;
}
.wrap-with-form form .btn {
  width: 100%;
}
.wrap-with-form form .form-text {
  color: #8e8f92;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.wrap-with-form form .form-text a {
  text-decoration: underline;
  color: #8e8f92;
}

.grey .text-block.truncated.truncated::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f0f5f7 100%);
}

.w40 {
  width: 40%;
  max-width: 40%;
}

.analytics-banner {
  background: #2c3139;
  color: #ffffff;
  padding: 20px 0;
  margin: 0;
}
.analytics-banner .container {
  padding: 64px 30px;
  position: relative;
  max-width: 1290px;
}
.analytics-banner img {
  position: absolute;
  top: 0;
  right: 0;
}

.drop-down-wrap .img-wrap {
  position: relative;
  overflow: hidden;
}
.drop-down-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 10%;
     object-position: 0 10%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.drop-down-wrap .img-wrap_op50 img {
  -o-object-position: 0 50%;
     object-position: 0 50%;
}
.drop-down-wrap_serv .text-wrap {
  padding: 30px;
}
.drop-down-wrap_serv .text-wrap h2 {
  font-size: clamp(24px, 5vw, 30px);
}
.drop-down-wrap_serv .text-wrap p {
  font-size: clamp(14px, 3vw, 18px);
}
.drop-down-wrap_serv .img-wrap::before {
  content: "";
  background: linear-gradient(46deg, rgba(0, 0, 0, 0.4) 0%, rgba(102, 102, 102, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.drop-down-list li {
  padding: 24px 0;
}
.drop-down-list .title {
  cursor: pointer;
}
.drop-down-list .title p {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
}
.drop-down-list .title svg {
  transition: transform 0.3s ease;
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.drop-down-list .title:hover {
  opacity: 0.8;
}
.drop-down-list .content {
  display: none;
}
.drop-down-list .content p {
  font-size: 16px;
    margin: 15px 0 20px;
    color: #666666;
}

.drop-down-wrap_serv .content {
  display: none;
}
.drop-down-wrap_serv .content p {
  font-size: clamp(14px, 3vw, 18px);
  margin-bottom: 16px;
}

@media screen and (max-width: 1290px) {
  .banner-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .banner-grid .card-narrow .text-lg, .banner-grid .card-medium .text-lg {
    font-size: 20px;
  }
  .banner-grid .card-narrow .text-lg, .banner-grid .card-medium .text-lg {font-size:16px;}
}
@media (max-width: 1200px) {
  .banner-grid {
    grid-template-columns: 1fr 1fr;
  }
  .banner-grid .card-wide {
    grid-column: 1/span 2;
    min-height: 341px;
  }
  .banner-grid .card-narrow:nth-child(2) {
    grid-column: 1;
    grid-row: 3;
  }
  .banner-grid .card-narrow:nth-child(3) {
    grid-column: 2;
    grid-row: 3;
    margin-top: 0;
  }
  .banner-grid .card-medium:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
  .banner-grid .card-medium:nth-child(5) {
    grid-column: 2;
    grid-row: 4;
  }
  .banner-grid .card-serv .text-lg {
    font-size: clamp(16px, 3vw, 18px);
  }
}
@media screen and (max-width: 990px) {
  .banner-flex {
    flex-wrap: wrap;
  }
  .banner-flex .card_lg {
    width: 100%;
    max-width: 100%;
    min-height: 408px;
  }
  .banner-flex-right {
    width: 100%;
  }
  .wrap-with-form .form-wrap {
    padding: 24px;
  }
  .wrap-with-form_serv h2 {
    font-size: clamp(24px, 5vw, 28px);
  }
  .wrap-with-form_serv .text-lg {
    font-size: clamp(16px, 3vw, 18px);
  }
  .form-inputs {
    flex-direction: column;
  }
  .analytics-banner .container {
    padding: 0 20px;
  }
  .analytics-banner .wrap {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 860px) {
  .popup-open-cards .card {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 768px) {
  .banner-grid {
    display:flex; flex-direction:column
  }
  .drop-down-wrap .img-wrap {display:none}
  .banner-grid .card + .card {display:none}
  .banner-grid .card-narrow,  .banner-grid .card-medium{ 
    min-height: 0;
    height: auto !important;
  }
  
  .banner-grid .card-wide_serv {
    padding: 24px;
  }
  .banner-grid .card .img-wrap {
    top: 0;
  }
  .banner-flex-right {
    flex-wrap: wrap;
  }
  .banner-flex-right .card {
    min-height: 224px;
  }
  .banner-flex-right .card_tall {
    min-height: 224px;
  }
  .banner-flex .w50 {
    width: 100%;
    max-width: 100%;
  }
  .popup-open-cards .card {
    width: 100%;
  }
  .wrap-with-form .form-wrap {
    padding: 16px;
  }
  .wrap-with-form form,
  .wrap-with-form .tab-pane {
    gap: 24px;
  }
  .wrap-with-form .container {
    flex-direction: column;
  }
  .wrap-with-form .container div {
    width: 100%;
    max-width: 100%;
  }
  .wrap-with-form .form-checkboxes {
    flex-direction: column;
    gap: 8px;
  }
  .wrap-with-form .form-checkboxes .wrap {
    gap: 8px;
  }
  .drop-down-wrap {
    flex-direction: column;
  }
  .drop-down-wrap .img-wrap {
    width: 100%;
    max-width: 100%;
  }
  .drop-down-wrap .img-wrap img {
    position: static;
    height: 371px;
  }
  .drop-down-wrap .text-wrap {
    width: 100%;
    max-width: 100%;
  }
  .drop-down-wrap_rev .container {
    flex-direction: column-reverse;
    padding: 0;
    gap: 40px;
  }
  .drop-down-wrap_rev .img-wrap img {
    border-radius: 0;
    height: 354px;
  }
  .drop-down-wrap_rev .text-wrap {
    padding: 0 20px;
  }
  .drop-down-wrap_serv {
    gap: 0;
  }
  .drop-down-wrap_serv .text-wrap {
    padding: 20px;
    gap: 24px;
  }
  .drop-down-wrap_serv .text-wrap .drop-down-list li {
    padding: 16px 0;
  }
}
@media screen and (max-width: 520px) {
  .drop-down-wrap .img-wrap img {
    height: 271px;
  }
}
@media screen and (max-width: 425px) {
  .analytics-banner img {
    top: auto;
    right: 0;
    width: 50%;
    bottom: 0;
  }
}
@media screen and (max-width: 375px) {
  .analytics-banner img {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */