/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
*, *:focus {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

* {
  box-sizing: border-box;
}

img, object, embed, video {
  max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

input, button, select, textarea {
  border: 0;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

/*select::-ms-expand {
    display: none;
}*/
.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

body {
  overflow-x: hidden;
  font-size: 14px;
  margin: 0;
  color: #fff;
  font-family: "Figtree", sans-serif;
}

.body_child {
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;

	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design

	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/
.fluid {
  clear: both;
  margin-left: 0;
  width: 100%;
  float: left;
  display: block;
}

.fluidList {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

.zeroMargin_mobile {
  margin-left: 0;
}

.hide_mobile {
  display: none;
}

.padding_20 {
  padding: 20px !important;
}

.padding_10 {
  padding: 10px !important;
}

.padding_30 {
  padding: 30px !important;
}

.no_padding {
  padding: 0 !important;
}

.f_left {
  float: left;
}

.f_right {
  float: right;
}

.full_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  float: left;
}

.half_wrap {
  width: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
}

.full_wrap_no_width {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  float: left;
}

.bg_cover {
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.btn {
  /* Auto layout */
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 12px 20px;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  border-radius: 12px;
  flex: none;
  order: 1;
  flex-grow: 0;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}
.btn.green {
  background: linear-gradient(180deg, #828100 0%, #AAA928 100%);
  backdrop-filter: blur(22px);
  color: #000;
}
.btn.white {
  background: #fff;
  color: #000;
}
.btn.white:hover {
  background: #AAA928;
}

.pistop_info_wrap {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 0;
  gap: 40px;
  background: radial-gradient(74.58% 35.9% at 50% 0%, rgba(170, 169, 40, 0.2) 0%, rgba(170, 169, 40, 0) 100%), #0D0D0D;
  border-radius: 0px;
}

.badge_wrap {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(24, 24, 24, 0.36);
  backdrop-filter: blur(6px);
  border-radius: 8px;
}

.title_wrap {
  font-size: 55px;
  font-weight: bold;
  margin-top: 30px;
  color: #AAA928;
}
.title_wrap.white,
.title_wrap .white {
  color: #fff;
}
.title_wrap .green {
  color: #AAA928;
}
.title_wrap.black, .title_wrap .black {
  color: #000;
}

.small_title_wrap {
  font-size: 23px;
  font-weight: bold;
  margin-top: 30px;
  color: #AAA928;
}
.small_title_wrap.white,
.small_title_wrap .white {
  color: #fff;
}
.small_title_wrap .green {
  color: #AAA928;
}
.small_title_wrap.black, .small_title_wrap .black {
  color: #000;
}

.vsmall_title_wrap {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  color: #AAA928;
}
.vsmall_title_wrap.white,
.vsmall_title_wrap .white {
  color: #fff;
}
.vsmall_title_wrap .green {
  color: #AAA928;
}
.vsmall_title_wrap.black, .vsmall_title_wrap .black {
  color: #000;
}

.landing_wrap {
  min-height: 100vh;
  padding: 50px 0;
}
.landing_wrap .lhead_wrap .head_inner_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.landing_wrap .lhead_wrap .head_inner_wrap .logo {
  width: 200px;
}
.landing_wrap .cont_wrap {
  text-align: center;
}
.landing_wrap .list_wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  text-align: center;
  margin-top: 30px;
}
.landing_wrap .list_wrap .item {
  border: 1px solid #1D1D1D;
  border-radius: 24px;
  background: rgba(24, 24, 24, 0.5);
  backdrop-filter: blur(7.5px);
  overflow: hidden;
}
.landing_wrap .list_wrap .item .info_wrap {
  padding: 20px 40px;
  padding-top: 0;
}
.landing_wrap .list_wrap .item p {
  opacity: 0.4;
}
.landing_wrap .list_wrap .item .vsmall_title_wrap {
  margin-top: 0;
}

.gridContainer {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: block;
}

.bodybg {
  background: #0D0D0D;
  min-height: 100vh;
}

.header_wrap {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header_wrap .mob_wrap {
  display: none;
}
.header_wrap .center_wrap {
  background: #0D0D0D;
  padding: 10px;
  border-radius: 10px;
}
.header_wrap .center_wrap .btn {
  background: transparent;
  border: 0;
}
.header_wrap .center_wrap .btn.active {
  border: 1px solid #AAA928;
}
.header_wrap .inner_wrap {
  background: rgba(13, 13, 13, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 20px;
}
.header_wrap .inner_wrap, .header_wrap .center_wrap, .header_wrap .right_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_wrap .right_wrap {
  gap: 20px;
}

.opacity_wrap {
  opacity: 0.4;
}

.slider_wrap {
  display: flex;
  align-items: center;
}
.slider_wrap .badge {
  background: #181818;
  backdrop-filter: initial;
}
.slider_wrap .content_wrap {
  padding: 50px;
}
.slider_wrap .content_wrap .btn {
  margin-top: 20px;
}
.slider_wrap .image_wrap {
  height: 100vh;
}
.slider_wrap .slidercols_wrap {
  display: flex;
  gap: 20px;
  overflow: hidden;
  padding: 0 60px;
  height: 100%;
}
.slider_wrap .slidercols_wrap:before, .slider_wrap .slidercols_wrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
}
.slider_wrap .slidercols_wrap:before {
  top: 0;
  background: linear-gradient(to bottom, #000, transparent);
}
.slider_wrap .slidercols_wrap:after {
  bottom: 0;
  background: linear-gradient(to top, #000, transparent);
}
.slider_wrap .slidercols_wrap .slider_col {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.slider_wrap .slidercols_wrap .swiper {
  height: 100%;
}
.slider_wrap .slidercols_wrap .swiper-slide {
  height: auto;
}
.slider_wrap .slidercols_wrap .swiper-slide img {
  height: 220px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.slider_wrap .slidercols_wrap .swiper-slide {
  margin-bottom: 20px;
}
.slider_wrap .slidercols_wrap .swiper-slide img {
  width: 100%;
  border-radius: 30px;
  display: block;
}

.swiper-free-mode .swiper-wrapper {
  transition-timing-function: linear !important;
}

.black_p {
  color: #000;
}

.plug_wrap {
  background: #000;
  padding: 80px 0;
}
.plug_wrap .top_wrap {
  margin-bottom: 40px;
}
.plug_wrap .top_wrap p {
  color: #aaa;
  font-size: 14px;
}
.plug_wrap .image_box {
  margin-top: 40px;
  margin-bottom: 50px;
  text-align: center;
}
.plug_wrap .image_box img, .plug_wrap .image_box video {
  border-radius: 20px;
  max-width: 100%;
}
.plug_wrap .steps_wrap {
  display: flex;
  justify-content: space-between;
  text-align: center;
  position: relative;
}
.plug_wrap .steps_wrap:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 1px;
  background: #222;
}
.plug_wrap .step_item {
  width: 33.33%;
  position: relative;
}
.plug_wrap .step_item .step_circle {
  width: 30px;
  height: 30px;
  background: #111;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
}
.plug_wrap .step_item p {
  font-size: 12px;
  color: #777;
}

.screen_slider_wrap .swiper {
  margin-bottom: 20px;
}
.screen_slider_wrap .swiper-slide {
  width: 400px;
  height: 300px;
}
.screen_slider_wrap .card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.screen_slider_wrap .card:hover .card_info .arrow {
  background: #AAA928;
  backdrop-filter: blur(6px);
}
.screen_slider_wrap .card img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.screen_slider_wrap .card .card_info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.screen_slider_wrap .card .card_info .arrow {
  padding: 8px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 40px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s ease;
}
.screen_slider_wrap .card .card_info .vsmall_title_wrap {
  margin-top: 0;
}
.screen_slider_wrap .card .card_info p {
  font-size: 12px;
  color: #ccc;
}

.steps_cards {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.steps_cards .step_card {
  width: 33.33%;
  background: #f5f5f5;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
}
.steps_cards .step_card .icon_wrap {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps_cards .step_card p {
  font-size: 14px;
  color: #777;
}

.pistop_info_wrap {
  margin-top: 30px;
}
.pistop_info_wrap .inner_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #AAA928;
  padding: 20px;
  border-radius: 10px;
}
.pistop_info_wrap .inner_wrap .image_wrap {
  width: 33.33%;
}
.pistop_info_wrap .inner_wrap .image_wrap img {
  border-radius: 10px;
}
.pistop_info_wrap .inner_wrap .small_title_wrap {
  margin-top: 0;
}
.pistop_info_wrap .inner_wrap .info_wrap {
  width: 33.33%;
}
.pistop_info_wrap .inner_wrap .info_wrap .small_title_wrap {
  margin-top: 0;
  margin-bottom: 10px;
}

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

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: #f2f2f2;
  border-radius: 20px;
  font-size: 12px;
  color: #000;
  margin-bottom: 15px;
}

.how_it_works {
  padding: 80px 0;
  text-align: center;
  background: white;
}
.how_it_works .top_wrap {
  margin-bottom: 50px;
}
.how_it_works .top_wrap .title {
  font-size: 36px;
  font-weight: 600;
}
.how_it_works .top_wrap .title .green {
  color: #AAA928;
}
.how_it_works .steps_wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  margin-bottom: 40px;
}
.how_it_works .steps_wrap:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
  z-index: 0;
}
.how_it_works .steps_wrap .step_item {
  width: 33.33%;
  position: relative;
  z-index: 1;
}
.how_it_works .steps_wrap .step_item h4 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}
.how_it_works .steps_wrap .step_item p {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}
.how_it_works .steps_wrap .step_item .step_circle {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 600;
}
.how_it_works .bottom_note {
  display: inline-block;
  padding: 10px 20px;
  background: #f5f5f5;
  border-radius: 6px;
  font-size: 14px;
  color: #666;
}

.campaign_anywhere {
  background: #000;
  position: relative;
  overflow: hidden;
}
.campaign_anywhere .inner_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.campaign_anywhere .left_wrap {
  width: 50%;
  color: #fff;
}
.campaign_anywhere .left_wrap .title_wrap {
  margin-top: 0;
}
.campaign_anywhere .left_wrap .desc {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
  max-width: 400px;
}
.campaign_anywhere .left_wrap .store_buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}
.campaign_anywhere .left_wrap .store_buttons .store_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}
.campaign_anywhere .left_wrap .store_buttons .store_btn img {
  height: 16px;
}
.campaign_anywhere .left_wrap .store_buttons .store_btn:hover {
  border-color: #9acd32;
}
.campaign_anywhere .right_wrap {
  width: 50%;
  text-align: right;
}
.campaign_anywhere .right_wrap img {
  max-width: 100%;
}
.campaign_anywhere:after {
  content: "";
  position: absolute;
  right: 20%;
  top: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(154, 205, 50, 0.3), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.features_wrap {
  padding: 80px 0;
  background: #fff;
}
.features_wrap .top_wrap {
  margin-bottom: 50px;
}
.features_wrap .top_wrap .title_wrap {
  margin-top: 20px;
}
.features_wrap .top_wrap .vsmall_title_wrap {
  display: inline-block;
  background: #f2f2f2;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.features_wrap .features_grid {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}
.features_wrap .feature_item {
  width: 33.33%;
  padding: 40px 30px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.features_wrap .feature_item p {
  color: #000;
}
.features_wrap .feature_item:hover {
  background: #fafafa;
}
.features_wrap .bottom_wrap {
  margin-top: 30px;
}
.features_wrap .bottom_wrap .btn {
  margin-top: 20px;
}
.features_wrap .bottom_wrap .small_title_wrap {
  font-size: 20px;
}

.form_input {
  width: 100%;
  padding: 12px 14px;
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
}
.form_input::-moz-placeholder {
  color: #555;
  font-family: "Figtree", sans-serif;
}
.form_input::placeholder {
  color: #555;
  font-family: "Figtree", sans-serif;
}
.form_input:focus {
  outline: none;
  border-color: #9acd32;
}

.prefooter_banner_wrap {
  padding: 60px 0;
}
.prefooter_banner_wrap img {
  border-radius: 20px;
}

.bg_video {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact_wrap {
  background: #000;
  padding: 80px 0;
}
.contact_wrap.white_c {
  background: #fff;
}
.contact_wrap.white_c .title_wrap {
  color: #000;
}
.contact_wrap.white_c .form_wrap {
  background: #F0F0F0;
}
.contact_wrap.white_c .form_wrap label {
  color: #000;
}
.contact_wrap.white_c .form_wrap .form_input {
  background: #E6E6E6;
  color: #000;
  border-color: #E6E6E6;
}
.contact_wrap .inner_wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}
.contact_wrap .title_wrap {
  margin-top: 0;
}
.contact_wrap .left_wrap {
  width: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}
.contact_wrap .left_wrap p {
  color: #aaa;
  font-size: 14px;
}
.contact_wrap .left_wrap .emailbtn {
  margin-top: auto;
  width: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact_wrap .left_wrap .email_wrap {
  font-size: 14px;
  color: #aaa;
}
.contact_wrap .left_wrap .arrow_wrap {
  width: 40px;
  height: 40px;
  background: #9acd32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
}
.contact_wrap .right_wrap {
  width: 45%;
  display: flex;
}
.contact_wrap .form_wrap {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact_wrap .form_group {
  margin-bottom: 15px;
  position: relative;
}
.contact_wrap .form_group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #ccc;
}
.contact_wrap .form_group.error .form_input {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.05);
}
.contact_wrap .form_group .field-error {
  display: block;
  color: #ff4757;
  font-size: 12px;
  margin-top: 4px;
}
.contact_wrap .form_input.error {
  border-color: #ff4757 !important;
  background: rgba(255, 71, 87, 0.05) !important;
}
.contact_wrap .success-message {
  background: #1abc9c;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 14px;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact_wrap .textarea {
  min-height: 120px;
  resize: none;
}
.contact_wrap .mt-auto {
  margin-top: auto;
}

.footer_wrap {
  align-items: flex-start;
  padding: 60px 96px 0px;
  gap: 40px;
  background: radial-gradient(74.58% 35.9% at 50% 0%, rgba(170, 169, 40, 0.2) 0%, rgba(170, 169, 40, 0) 100%), #0D0D0D;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer_wrap .inner_wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer_wrap ul {
  padding: 0;
}
.footer_wrap ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer_wrap .footer_col {
  width: 33%;
  color: #fff;
}
.footer_wrap .footer_col p {
  color: #aaa;
  font-size: 14px;
}
.footer_wrap .social_wrap {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.footer_wrap .social_wrap .social_icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}
.footer_wrap .social_wrap .social_icon svg path,
.footer_wrap .social_wrap .social_icon svg circle {
  fill: #fff;
}
.footer_wrap .social_wrap .social_icon:hover {
  background: #9acd32;
  color: #000;
}
.footer_wrap .social_wrap .social_icon:hover svg path,
.footer_wrap .social_wrap .social_icon:hover svg circle {
  fill: #000 !important;
}
.footer_wrap .social_wrap .social_icon.active {
  background: #9acd32;
}
.footer_wrap .footer_links {
  margin-top: 20px;
}
.footer_wrap .footer_links li {
  margin-bottom: 10px;
}
.footer_wrap .footer_links li a {
  color: #aaa;
  font-size: 14px;
  text-decoration: none;
}
.footer_wrap .footer_links li a:hover {
  color: #fff;
}
.footer_wrap .newsletter_wrap {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.footer_wrap .newsletter_wrap .form_input {
  flex: 1;
}
.footer_wrap .email_wrap {
  margin-top: 20px;
  color: #ccc;
  font-size: 14px;
}
.footer_wrap .bottom_wrap {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 13px;
}
.footer_wrap .bottom_wrap a {
  color: #777;
  margin-left: 15px;
  text-decoration: none;
}
.footer_wrap .bottom_wrap a:hover {
  color: #fff;
}
.footer_wrap .footer_bg {
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
  pointer-events: none;
}
.footer_wrap .footer_bg .strip {
  position: absolute;
  top: -100px;
  right: 0;
  width: 50%;
}
.footer_wrap .footer_bg .strip1 {
  right: -250px;
  top: 0;
}
.footer_wrap .footer_bg .strip2 {
  right: -50px;
  top: 0px;
}
.footer_wrap .footer_bg .strip3 {
  right: 120px;
}

@media (max-width: 1100px) {
  .features_wrap .feature_item {
    width: 50%;
  }
}
.mob_menu_wrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  border-left: 1px solid rgba(170, 169, 40, 0.2);
  overflow-y: auto;
}
.mob_menu_wrap.active {
  transform: translateX(0);
}
.mob_menu_wrap .mob_menu_inner {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  height: 100%;
}
.mob_menu_wrap .close_wrap {
  text-align: right;
  padding: 8px 10px;
  margin: 0;
}
.mob_menu_wrap .mob_menu_item {
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  display: block;
}
.mob_menu_wrap .mob_menu_item:hover {
  background: rgba(170, 169, 40, 0.1);
  padding-left: 24px;
}
.mob_menu_wrap .mob_menu_item.green {
  background: linear-gradient(180deg, #828100 0%, #AAA928 100%);
  color: #000;
  font-weight: 600;
  border: none;
}
.mob_menu_wrap .mob_menu_item.green:hover {
  opacity: 0.9;
  padding-left: 20px;
}

@media (max-width: 786px) {
  .plug_wrap .steps_wrap {
    flex-direction: column;
  }
  .plug_wrap .steps_wrap:before {
    display: none;
  }
  .plug_wrap .step_item {
    width: 100%;
    margin-bottom: 20px;
  }
  .steps_cards {
    flex-direction: column;
  }
  .steps_cards .step_card {
    width: 100%;
  }
  .header_wrap .mob_wrap {
    display: inline-block;
  }
  .header_wrap .mob_wrap p {
    color: #fff;
  }
  .header_wrap .center_wrap,
  .header_wrap .right_wrap {
    display: none;
  }
  .slider_wrap {
    flex-direction: column-reverse;
  }
  .slider_wrap .half_wrap {
    width: 100%;
  }
  .slider_wrap .image_wrap {
    height: 70vh;
  }
  .pistop_info_wrap .inner_wrap {
    flex-wrap: wrap;
  }
  .pistop_info_wrap .inner_wrap .image_wrap {
    width: calc(50% - 10px);
  }
  .pistop_info_wrap .inner_wrap .info_wrap {
    width: 100%;
  }
  .footer_wrap .inner_wrap {
    flex-direction: column;
  }
  .footer_wrap .footer_col {
    width: 100%;
  }
  .footer_wrap .newsletter_wrap {
    flex-direction: column;
  }
  .footer_wrap .newsletter_wrap .btn {
    width: 100%;
  }
  .footer_wrap .bottom_wrap {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer_wrap .bottom_wrap .right a {
    margin: 0 8px;
  }
  .contact_wrap .inner_wrap {
    flex-direction: column;
  }
  .contact_wrap .left_wrap,
  .contact_wrap .right_wrap {
    width: 100%;
  }
  .contact_wrap .left_wrap {
    text-align: center;
  }
  .contact_wrap .left_wrap .email_wrap,
  .contact_wrap .left_wrap .arrow_wrap {
    position: static;
    margin-top: 20px;
  }
  .contact_wrap .left_wrap .arrow_wrap {
    margin-left: auto;
  }
  .features_wrap .feature_item {
    text-align: center;
  }
  .features_wrap .icon_wrap {
    margin: 0 auto 15px;
  }
  .features_wrap .bottom_wrap .small_title_wrap {
    font-size: 18px;
  }
  .campaign_anywhere .inner_wrap {
    flex-direction: column;
    text-align: center;
  }
  .campaign_anywhere .left_wrap {
    width: 100%;
    padding-top: 60px;
  }
  .campaign_anywhere .left_wrap .title {
    font-size: 26px;
  }
  .campaign_anywhere .left_wrap .desc {
    margin-left: auto;
    margin-right: auto;
  }
  .campaign_anywhere .left_wrap .store_buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .campaign_anywhere .right_wrap {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
  .how_it_works .top_wrap .title {
    font-size: 26px;
  }
  .how_it_works .steps_wrap {
    flex-direction: column;
  }
  .how_it_works .steps_wrap:before {
    display: none;
  }
  .how_it_works .steps_wrap .step_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .slider_wrap .slidercols_wrap {
    padding: 0;
  }
  .slider_wrap .slidercols_wrap .swiper-slide img {
    height: 130px;
  }
  .slider_wrap .half_wrap {
    padding: 20px;
  }
  .pistop_info_wrap .inner_wrap .image_wrap {
    width: 100%;
  }
  .how_it_works,
  .features_wrap {
    padding: 40px 0;
  }
  .features_wrap .feature_item {
    width: 100%;
  }
  .btn {
    padding: 12px 20px;
  }
  .title_wrap {
    font-size: 30px;
  }
  .small_title_wrap {
    font-size: 20px;
  }
  .vsmall_title_wrap {
    font-size: 17px;
  }
  .landing_wrap .list_wrap {
    flex-direction: column;
    gap: 20px;
  }
}/*# sourceMappingURL=layout.css.map */