/*--------------------------------------------------------------
## Basic Color
----------------------------------------------------------------*/
:root {
  --accent: #ff4a17;
}

body,
html {
  color: rgba(254, 254, 254, 0.7);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  overflow-x: hidden;
  background-color: #181818;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: #fefefe;
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 600;
  line-height: 1.3em;
  font-family: var(--primary-font);
}

.cs-primary_font {
  font-family: var(--primary-font);
}

.cs-secondary_font {
  font-family: var(--secondary-font);
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: var(--accent);
}

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: rgba(254, 254, 254, 0.7);
}
table td,
table th {
  border-top: 1px solid #4d4d4d;
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: rgba(254, 254, 254, 0.7);
  border: 1px solid #4d4d4d;
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: rgba(254, 254, 254, 0.7);
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  body,
  html {
    font-size: 16px;
    line-height: 1.6em;
  }
  h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
input, textarea {
  color: #fefefe;
}

.cs-row_gap_20 {
  margin-left: -10px;
  margin-right: -10px;
}
.cs-row_gap_20 > div {
  padding-left: 10px;
  padding-right: 10px;
}

.cs-light {
  font-weight: 300;
}

.cs-normal {
  font-weight: 400;
}

.cs-medium {
  font-weight: 500;
}

.cs-semi_bold {
  font-weight: 600;
}

.cs-bold {
  font-weight: 700;
}

.cs-extra_bold {
  font-weight: 800;
}

.cs-black {
  font-weight: 900;
}

.cs-radius_3 {
  border-radius: 3px;
}

.cs-radius_5 {
  border-radius: 5px;
}

.cs-radius_7 {
  border-radius: 7px;
}

.cs-radius_10 {
  border-radius: 10px;
}

.cs-radius_15 {
  border-radius: 15px;
}

.cs-line_height_1 {
  line-height: 1.2em;
}

.cs-line_height_2 {
  line-height: 1.25em;
}

.cs-line_height_3 {
  line-height: 1.3em;
}

.cs-line_height_4 {
  line-height: 1.4em;
}

.cs-line_height_5 {
  line-height: 1.5em;
}

.cs-line_height_6 {
  line-height: 1.6em;
}

.cs-line_height_7 {
  line-height: 1.7em;
}

.cs-font_14 {
  font-size: 14px;
}

.cs-font_16 {
  font-size: 16px;
}

.cs-font_18 {
  font-size: 18px;
}

.cs-font_20 {
  font-size: 20px;
}

.cs-font_22 {
  font-size: 22px;
}

.cs-font_28 {
  font-size: 28px;
}

.cs-font_30 {
  font-size: 28px;
}

.cs-font_38 {
  font-size: 38px;
}

.cs-font_42 {
  font-size: 42px;
}

.cs-font_50 {
  font-size: 50px;
}

.cs-mp0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cs-m0 {
  margin: 0;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid #f2f1ff;
}

.cs-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.cs-vertical_middle {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.cs-vertical_middle_in {
  flex: none;
  width: 100%;
}

.cs-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-white_color,
.cs-white_color_hover:hover {
  color: #fff;
}

.cs-primary_color {
  color: #fefefe;
}

.cs-ternary_color {
  color: #999696;
}

.cs-accent_color,
.cs-accent_color_hover:hover {
  color: var(--accent);
}

.cs-white_bg {
  background-color: #fff;
}

.cs-gray_bg {
  background-color: #181818;
}

.cs-accent_bg,
.cs-accent_bg_hover:hover {
  background-color: var(--accent);
}

.cs-primary_bg,
.cs-primary_bg_hover:hover {
  background-color: #fefefe;
}

.cs-gradient_bg_1 {
  background: linear-gradient(267.18deg, #161616 0%, #080808 100%);
}

.cs-text_btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}
.cs-text_btn svg {
  margin-left: 15px;
  font-size: 24px;
}
.cs-text_btn span {
  display: inline-block;
  position: relative;
}
.cs-text_btn span::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
}
.cs-text_btn:hover span::before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.cs-text_btn.cs-type1 {
  flex-direction: row-reverse;
}
.cs-text_btn.cs-type1 svg {
  margin-left: 0px;
  margin-right: 15px;
  transform: rotate(180deg);
}
.cs-text_btn.cs-type1 span::before {
  left: initial;
  right: -100%;
  transform: scaleX(0) rotateY(180deg);
}
.cs-text_btn.cs-type1:hover span::before {
  transform: scaleX(1) rotateY(180deg);
}
.cs-text_btn.cs-type2 {
  flex-direction: row-reverse;
}
.cs-text_btn.cs-type2 svg {
  margin-left: 0;
  margin-right: 15px;
  color: var(--accent);
}

.cs-btn.cs-style1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  transition: all 0.3s ease;
  border: transparent;
  color: #fefefe;
  position: relative;
  line-height: 1.5em;
  font-weight: 600;
  border-radius: 15px;
  background-color: var(--accent);
  color: #fff;
  cursor: pointer;
}
.cs-btn.cs-style1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 22, 22, 0.4);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
  border-radius: inherit;
}
.cs-btn.cs-style1 svg {
  margin-left: 14px;
}
.cs-btn.cs-style1 > * {
  position: relative;
  z-index: 1;
}
.cs-btn.cs-style1:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.cs-btn.cs-style1.cs-type1 {
  border: 2px solid #fff;
  background-color: transparent;
  border-radius: 5px;
  transition: all 0.6s ease-out;
}
.cs-btn.cs-style1.cs-type1::before {
  background-color: #fff;
  border-radius: 0px;
}
.cs-btn.cs-style1.cs-type1:hover {
  color: #000;
}

.cs-page_navigation > div {
  position: relative;
}
.cs-page_navigation > div:not(:last-child) {
  margin-right: 21px;
  padding-right: 21px;
}
.cs-page_navigation > div:not(:last-child)::after {
  content: "";
  height: 22px;
  width: 2px;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  right: -1px;
  top: 3px;
}

.cs-pagination_box {
  margin: -7px;
}
.cs-pagination_box .cs-pagination_item {
  margin: 7px;
}

.cs-pagination_item {
  height: 40px;
  width: 40px;
  border-radius: 5px;
  background-color: #000;
}
.cs-pagination_item.active {
  background-color: var(--accent);
  color: #fff;
  pointer-events: none;
}

.cs-form_field {
  display: block;
  width: 100%;
  padding: 10px 20px;
  border-radius: 15px;
  outline: none;
  transition: all 0.3s ease;
  border: 2px solid #999696;
  background-color: transparent;
  color: #fff;
}
.cs-form_field:focus {
  border-color: var(--accent);
}

label {
  margin-bottom: 12px;
}

.cs-contact_success_popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cs-contact_success_overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 14, 0.72);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  cursor: pointer;
}

.cs-contact_success_card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 34px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: radial-gradient(circle at top right, rgba(var(--accent), 0.18), transparent 36%), #080d17;
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.cs-contact_success_close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}
.cs-contact_success_close:hover {
  border-color: rgba(var(--accent), 0.55);
  color: var(--accent);
}

.cs-contact_success_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(var(--accent), 0.14);
  color: var(--accent);
  font-size: 36px;
  box-shadow: 0 0 0 10px rgba(var(--accent), 0.05);
}

.cs-contact_success_card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0;
}

.cs-contact_success_card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.cs-right_full_width {
  width: calc(50vw - 12px);
  padding-right: 24px;
}

.cs-rating {
  width: 136px;
  height: 24px;
  position: relative;
}
.cs-rating > * {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.cs-rating .cs-rating_bg {
  opacity: 0.2;
}
.cs-rating .cs-rating_percentage {
  width: 50%;
}

.cs-post_meta.cs-style1 {
  display: flex;
}
.cs-post_meta.cs-style1 > * {
  position: relative;
  display: inline-block;
}
.cs-post_meta.cs-style1 > *:not(:last-child) {
  margin-right: 12px;
  padding-right: 12px;
}
.cs-post_meta.cs-style1 > *:not(:last-child)::before {
  content: "";
  height: 20px;
  width: 2px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
}

/* Start Accordion */
.cs-accordian_title {
  font-size: 22px;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .cs-accordian_title {
    font-size: 18px;
  }
}

.cs-accordian_body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}
.cs-accordian_body p {
  margin: 0;
}

.cs-accordian_body_in {
  line-height: 1.8em;
  padding-top: 15px;
}

.cs-accordian_head {
  padding: 2px 20px 2px 0;
  position: relative;
  cursor: pointer;
}
.cs-accordian_head:hover .cs-accordian_title {
  color: var(--accent);
}

.cs-accordian {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 25px;
}
.cs-accordian:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .cs-accordian {
    padding-bottom: 15px;
    border-width: 1px;
  }
  .cs-accordian:not(:last-child) {
    margin-bottom: 15px;
  }
}

.cs-accordian_toggle {
  display: flex;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 0;
  transition: all 0.3s ease;
}

.cs-accordian.active .cs-accordian_toggle {
  transform: rotate(180deg);
}
.cs-accordian.active .cs-accordian_head {
  pointer-events: none;
}
.cs-accordian.active .cs-accordian_body {
  height: auto;
  max-height: 9999px;
  transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

/* End Accordion */
#cs-result {
  line-height: 2.8em;
}

.cs-parallax > *:not([class*=cs-shape_]) {
  position: relative;
  z-index: 5;
}

.cs-fullscreen_swiper_wrap {
  position: relative;
  height: 100vh;
}

.cs-fullscreen_swiper_slider {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1399px) {
  .cs-right_space_150 {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .cs-right_space_40,
  .cs-right_space_150 {
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .cs-left_space_30 {
    padding-left: 0px;
  }
  .cs-font_14_sm {
    font-size: 14px;
  }
  .cs-font_16_sm {
    font-size: 16px;
  }
  .cs-font_18_sm {
    font-size: 18px;
  }
  .cs-font_20_sm {
    font-size: 20px;
  }
  .cs-font_22_sm {
    font-size: 22px;
  }
  .cs-font_24_sm {
    font-size: 24px;
  }
  .cs-font_26_sm {
    font-size: 26px;
  }
  .cs-font_28_sm {
    font-size: 28px;
  }
  .cs-font_42_sm {
    font-size: 42px;
  }
  .cs-font_36_sm {
    font-size: 36px;
  }
  .cs-btn_group > *:not(:last-child) {
    margin-right: 10px;
  }
  .flex-column-reverse-lg {
    flex-direction: column-reverse;
  }
  .cs-seciton_heading.cs-style1 .cs-section_title::before {
    top: 1px;
  }
}
.cs-partner_logo_wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 -20px;
}

.cs-partner_logo {
  padding: 20px;
}

.cs-video_block_1_wrap {
  position: relative;
}
.cs-video_block_1_wrap::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0%;
  top: 0%;
  background-color: #000;
}

.cs-video_block.cs-style1 {
  display: block;
  height: 725px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}
.cs-video_block.cs-style1::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  background-color: rgba(22, 22, 22, 0.4);
  transition: all 0.4s ease;
}
.cs-video_block.cs-style1:hover::before {
  opacity: 1;
}
.cs-video_block.cs-style1.cs-size1 {
  height: 580px;
}

.cs-player_btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-player_btn:before,
.cs-player_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
}

.cs-player_btn:before {
  z-index: 0;
  animation: pulse-border 1500ms ease-out infinite;
}

.cs-player_btn:after {
  z-index: 1;
  transition: all 200ms;
}

.cs-player_btn span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 24px solid currentColor;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.cs-fixed_bg {
  background-attachment: fixed;
}

.cs-parallax [class*=cs-to_],
.cs-parallax_bg [class*=cs-to_] {
  transition: all 0.6s ease;
}

.cs-section_heading.cs-style1 {
  position: relative;
  z-index: 2;
}
.cs-section_heading.cs-style1 .cs-section_subtitle {
  color: #999696;
  font-size: 18px;
  margin-bottom: 20px;
}
.cs-section_heading.cs-style1 .cs-section_title {
  font-size: 50px;
  margin-bottom: 0;
}
.cs-section_heading.cs-style1 .cs-separator {
  height: 2px;
  width: 50px;
  border-radius: 2px;
}

.cs-hover_layer,
.cs-hover_layer1,
.cs-hover_layer3 {
  position: relative;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: perspective(600px) translate3d(0, 0, 0);
}

@keyframes particalAnimation {
  0%, 100% {
    transform: translate(0px, 0px);
  }
  20% {
    transform: translate(80px, -10px);
  }
  40% {
    transform: translate(140px, 70px);
  }
  60% {
    transform: translate(90px, 130px);
  }
  80% {
    transform: translate(-40px, 80px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes animo-x {
  50% {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(44px);
  }
}
@keyframes light-mode {
  50% {
    opacity: 0.5;
  }
}
@keyframes animo-y {
  50% {
    animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    transform: translateY(30px);
  }
}
@keyframes rotate-anim {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes semi-rotate-anim {
  50% {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(25px) rotate(-53deg);
  }
}
@keyframes up-down-anim {
  40% {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(40px) rotate(-1deg);
  }
}
@keyframes swing-anim {
  65% {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-48px) rotate(-75deg);
  }
}
.cs-shape_1 {
  width: 0px;
  height: 0px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--accent);
}

.cs-shape_wrap_1 {
  position: relative;
}
.cs-shape_wrap_1 .cs-shape_1 {
  position: absolute;
}
.cs-shape_wrap_1 .cs-shape_1:nth-child(1) {
  top: 25%;
  left: 10%;
  animation: semi-rotate-anim 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs-shape_wrap_1 .cs-shape_1:nth-child(2) {
  top: 30%;
  left: 72%;
  transform: rotate(-15deg);
  animation: semi-rotate-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs-shape_wrap_1 .cs-shape_1:nth-child(3) {
  top: 68%;
  left: 35%;
  transform: rotate(-30deg);
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs-shape_wrap_1.cs-position_1 .cs-shape_1:nth-child(1) {
  top: 15%;
  left: 15%;
}
.cs-shape_wrap_1.cs-position_1 .cs-shape_1:nth-child(2) {
  top: 35%;
  left: 85%;
}
.cs-shape_wrap_1.cs-position_1 .cs-shape_1:nth-child(3) {
  top: 85%;
  left: 35%;
}

.cs-shape_2 {
  position: absolute;
  height: 320px;
  width: 320px;
}
.cs-shape_2 div {
  background-color: #000;
  transform: rotate(45deg);
  height: 100%;
  width: 100%;
}

.cs-shape_wrap_2 {
  position: relative;
}
.cs-shape_wrap_2 .cs-shape_2 {
  right: -10%;
  top: 12%;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs-shape_wrap_3 {
  position: relative;
}
.cs-shape_wrap_3 .cs-shape_3 {
  animation: animo-y 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  position: absolute;
  right: 20px;
  top: -15%;
}

.cs-shape_wrap_4 {
  position: relative;
}
.cs-shape_wrap_4 .cs-shape_4 {
  position: absolute;
  background-color: #000;
  border-radius: 50%;
}
.cs-shape_wrap_4 .cs-shape_4:nth-child(1) {
  left: 5%;
  top: 42%;
  height: 100px;
  width: 100px;
  animation: animo-y 8s infinite;
}
.cs-shape_wrap_4 .cs-shape_4:nth-child(2) {
  left: 15%;
  top: 62%;
  height: 286px;
  width: 286px;
}

.cs-shape_wrap_5 {
  position: relative;
}
.cs-shape_wrap_5 .cs-section_heading {
  position: relative;
  z-index: 2;
}
.cs-shape_wrap_5 .cs-shape_1 {
  position: absolute;
}
.cs-shape_wrap_5 .cs-shape_1:nth-child(1) {
  top: 25%;
  left: 58%;
  animation: semi-rotate-anim 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs-shape_wrap_5 .cs-shape_1:nth-child(2) {
  top: 40%;
  left: 85%;
  transform: rotate(-15deg);
  animation: semi-rotate-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs-shape_wrap_5 .cs-shape_1:nth-child(3) {
  top: 85%;
  left: 72%;
  transform: rotate(-30deg);
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs-shape_wrap_6 {
  position: relative;
  overflow: hidden;
}
.cs-shape_wrap_6 > .container {
  position: relative;
  z-index: 3;
}
.cs-shape_wrap_6 .cs-shape_2 > div {
  background-color: #181818;
}
.cs-shape_wrap_6 .cs-shape_2:nth-child(1) {
  left: -240px;
  top: 30px;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs-shape_wrap_6 .cs-shape_2:nth-child(2) {
  bottom: 30px;
  right: -200px;
  animation: animo-x 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs-contact_info.cs-style1 svg {
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  max-height: 20px;
}
.cs-contact_info.cs-style1 li {
  position: relative;
  padding-left: 35px;
}
.cs-contact_info.cs-style1 li:not(:last-child) {
  margin-bottom: 22px;
}

.cs-page_heading.cs-style1 {
  height: 650px;
  padding: 120px 0 50px;
  position: relative;
}
.cs-page_heading.cs-style1::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  height: 151px;
  width: 151px;
  background: var(--accent);
  opacity: 0.8;
  filter: blur(125px);
}
.cs-page_heading.cs-style1 > * {
  position: relative;
  z-index: 2;
}
.cs-page_heading.cs-style1 .cs-page_heading_in {
  display: inline-block;
}
.cs-page_heading.cs-style1 .breadcrumb {
  justify-content: flex-end;
  margin-bottom: 0;
  color: #999696;
}
.cs-page_heading.cs-style1 .breadcrumb-item.active {
  color: #fff;
}
.cs-page_heading.cs-style1 .cs-page_title {
  margin-bottom: 18px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  height: 17px;
  width: 1px;
  background-color: #fff;
  padding: 0;
  position: relative;
  top: 5px;
  margin-right: 14px;
}

.cs-image_layer.cs-style1 {
  padding-right: 60px;
  padding-bottom: 60px;
}
.cs-image_layer.cs-style1 img {
  position: relative;
  z-index: 2;
}
.cs-image_layer.cs-style1 .cs-image_layer_in {
  position: relative;
  border-radius: 15px;
}
.cs-image_layer.cs-style1 .cs-image_layer_in::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  right: -60px;
  bottom: -60px;
  background-color: var(--accent);
  border-radius: inherit;
}
.cs-image_layer.cs-style1.cs-size_md {
  padding-right: 20px;
  padding-bottom: 20px;
}
.cs-image_layer.cs-style1.cs-size_md .cs-image_layer_in::after {
  right: -20px;
  bottom: -20px;
}

.cs-tab {
  display: none;
}
.cs-tab.active {
  display: block;
}

.cs-tabs.cs-style1 .cs-tabs_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cs-tab_links.cs-style1 {
  display: inline-flex;
  padding: 5px;
  background-color: #000;
  border-radius: 10px;
  position: absolute;
  top: -195px;
  right: 0;
  z-index: 5;
}
.cs-tab_links.cs-style1 li {
  padding: 7px 20px;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cs-tab_links.cs-style1 li.active {
  background-color: var(--accent);
  border-radius: 10px;
  pointer-events: none;
}
@media (max-width: 1380px) {
  .cs-tab_links.cs-style1 {
    top: -185px;
  }
}
@media (max-width: 991px) {
  .cs-tab_links.cs-style1 {
    top: -128px;
  }
}
@media (max-width: 767px) {
  .cs-tab_links.cs-style1 {
    margin-bottom: 40px;
    position: static;
  }
}

.cs-google_map {
  height: 600px;
}
.cs-google_map iframe {
  height: 100%;
  display: block;
  border: none;
  width: 100%;
  filter: grayscale(100%) invert(90%) contrast(120%);
}
.cs-google_map.cs-type1 {
  height: 100%;
  min-height: 300px;
  width: 50vw;
}

.cs-list.cs-style1 li:not(:last-child) {
  margin-bottom: 20px;
}

.cs-shine_hover_1 {
  position: relative;
  overflow: hidden;
}
.cs-shine_hover_1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.15) 100%);
  transform: skewX(-25deg);
  z-index: 1;
}
.cs-shine_hover_1:hover::before {
  animation: shine 1.3s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.cs-rotate_img {
  transform: rotate(45deg);
  overflow: hidden;
  border-radius: 7px;
}

.cs-rotate_img_in {
  transform: rotate(-45deg) scale(1.4);
}

.cs-half_screen {
  width: 56vw;
}

.lg-backdrop {
  background-color: #181818;
}

.lg-toolbar .lg-icon,
#lg-counter,
.lg-actions .lg-next,
.lg-actions .lg-prev {
  color: #fff;
}

.lg-toolbar .lg-icon:hover,
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: rgba(255, 255, 255, 0.7);
}

.cs-scrollup {
  position: fixed;
  bottom: -60px;
  right: 40px;
  color: #fff;
  padding: 5px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 10;
  background-color: #000000;
  color: var(--accent);
  box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
  border-radius: 50%;
}
.cs-scrollup:hover {
  background-color: var(--accent);
  color: #fff;
}

.cs-scrollup.cs-scrollup_show {
  bottom: 50px;
}

.cs-case_study {
  position: relative;
  padding: 150px 120px;
}
.cs-case_study .cs-case_study_bg {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cs-case_study .cs-case_study_bg .cs-accent_bg {
  flex: 1;
}
.cs-case_study .cs-case_study_bg .cs-bg {
  flex: 2;
}
.cs-case_study .cs-case_study_title {
  background: rgba(24, 24, 24, 0.9);
  border-radius: 15px;
  margin: 0;
  position: relative;
  z-index: 10;
  font-weight: 700;
  font-size: 120px;
  line-height: 1.25em;
  color: #fefefe;
  display: inline-flex;
  padding: 40px 150px;
}
.cs-case_study .cs-case_study_title a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 0.07em;
  text-underline-position: under;
  text-underline-offset: -0.12em;
}
.cs-case_study .cs-case_study_title a:hover {
  text-decoration-color: var(--accent);
}
.cs-case_study.cs-style2 {
  text-align: right;
}
.cs-case_study.cs-style2 .cs-case_study_bg {
  flex-direction: row-reverse;
}

.cs-faq_nav {
  height: 100%;
  background-color: #000;
  padding: 45px 35px;
}
.cs-faq_nav .cs-faq_nav_title {
  font-size: 30px;
}

.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.swiper-slide .cs-entity_img {
  display: none;
}

.cs-parallax_slider {
  transition: opacity 0.6s ease, transform 0.3s ease;
}
.cs-parallax_slider.loading {
  opacity: 0;
  visibility: hidden;
}

.cs-half_of_full_width {
  width: calc(55vw + 30%);
}

.cs-error_page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-filter_menu.cs-style1 li {
  margin-top: 10px;
}
.cs-filter_menu.cs-style1 li:not(:last-child) {
  margin-right: 28px;
}
.cs-filter_menu.cs-style1 span {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cs-filter_menu.cs-style1 span::before {
  content: "";
  height: 9px;
  width: 9px;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  border-radius: 50%;
  background-color: var(--accent);
  bottom: -5px;
  transition: all 0.4s ease;
  transform: scale(0);
}
.cs-filter_menu.cs-style1 ul {
  border-bottom: 1px solid #999696;
  flex-wrap: wrap;
  display: inline-flex;
  justify-content: flex-start;
}
.cs-filter_menu.cs-style1 .active span {
  color: var(--accent);
}
.cs-filter_menu.cs-style1 .active span::before {
  transform: scale(1);
}

.cs-masonry_4_col {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding: 0 25px;
}
.cs-masonry_4_col > * {
  margin-bottom: 25px;
}

@media screen and (max-width: 1540px) {
  .cs-case_study .cs-case_study_title {
    font-size: 100px;
    padding: 40px 120px;
  }
}
@media screen and (max-width: 1550px) {
  .cs-shape_wrap_2 .cs-shape_2 {
    right: -15%;
    top: 8%;
  }
  .cs-video_block.cs-style1 {
    height: 650px;
  }
}
@media screen and (max-width: 1400px) {
  .cs-case_study .cs-case_study_title {
    font-size: 80px;
    padding: 40px 100px;
  }
}
@media screen and (max-width: 1380px) {
  .cs-section_heading.cs-style1 .cs-section_title {
    font-size: 42px;
  }
  .cs-font_50 {
    font-size: 42px;
  }
  .cs-shape_wrap_4 .cs-shape_4:nth-child(2) {
    height: 200px;
    width: 200px;
  }
  .cs-page_heading.cs-style1 {
    height: 550px;
  }
}
@media screen and (max-width: 1199px) {
  .cs-page_heading.cs-style1 {
    height: 450px;
  }
  .cs-half_screen {
    width: 100%;
  }
  .cs-video_block.cs-style1.cs-size1 {
    height: 450px;
  }
  .cs-case_study .cs-case_study_title {
    font-size: 60px;
  }
  .cs-masonry_4_col {
    -moz-column-count: 2;
         column-count: 2;
  }
  .cs-half_of_full_width {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .cs-section_heading.cs-style1 .cs-section_title {
    font-size: 36px;
  }
  .cs-section_heading.cs-style1 .cs-section_subtitle {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .cs-shape_wrap_4 .cs-shape_4:nth-child(1),
  .cs-shape_wrap_4 .cs-shape_4:nth-child(2),
  .cs-shape_wrap_2 .cs-shape_2,
  .cs-shape_wrap_3 .cs-shape_3,
  .cs-shape_wrap_6 .cs-shape_2 {
    display: none;
  }
  .cs-font_50 {
    font-size: 36px;
  }
  .cs-font_38 {
    font-size: 32px;
  }
  .cs-video_block.cs-style1,
  .cs-video_block.cs-style1.cs-size1 {
    height: 400px;
  }
  .cs-video_block.cs-style1 .cs-player_btn,
  .cs-video_block.cs-style1.cs-size1 .cs-player_btn {
    transform: translate(-50%, -50%) scale(0.8);
  }
  .cs-page_heading.cs-style1 {
    padding: 100px 0 50px;
    height: 400px;
  }
  .cs-page_heading.cs-style1 .cs-page_title {
    margin-bottom: 15px;
  }
  .cs-portfolio_1_heading .cs-tabs_heading {
    display: block;
  }
  .cs-portfolio_1_heading .cs-section_heading + .cs-filter_menu {
    margin-top: 30px;
  }
  .cs-list.cs-style1 li:not(:last-child) {
    margin-bottom: 10px;
  }
  .cs-google_map {
    height: 400px;
  }
  .cs-btn.cs-style1 {
    padding: 10px 20px;
  }
  .cs-faq_nav {
    padding: 30px 30px;
  }
  .cs-faq_nav .cs-faq_nav_title {
    font-size: 26px;
  }
  .cs-google_map.cs-type1 {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
  }
  .cs-scrollup {
    right: 15px;
  }
  .cs-scrollup.cs-scrollup_show {
    bottom: 50px;
  }
  .cs-column_reverse_lg {
    flex-direction: column-reverse;
  }
  .cs-case_study {
    position: relative;
    padding: 80px 70px;
  }
  .cs-case_study .cs-case_study_title {
    font-size: 56px;
    padding: 25px 45px;
  }
  #cs-result {
    line-height: 2.2em;
  }
  .cs-half_of_full_width {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .cs-tabs.cs-style1 .cs-tabs_heading {
    display: block;
  }
  .cs-tabs.cs-style1 .cs-section_heading + .cs-tab_links {
    margin-top: 50px;
  }
  .cs-case_study {
    padding: 80px 12px;
  }
  .cs-case_study .cs-case_study_title {
    font-size: 40px;
    padding: 25px 25px;
  }
}
@media screen and (max-width: 575px) {
  .cs-partner_logo {
    padding: 5px;
  }
  .cs-image_layer.cs-style1 {
    padding-right: 40px;
    padding-bottom: 40px;
  }
  .cs-image_layer.cs-style1 .cs-image_layer_in::after {
    right: -30px;
    bottom: -30px;
  }
  .cs-video_block.cs-style1,
  .cs-video_block.cs-style1.cs-size1 {
    height: 380px;
  }
  .cs-video_block.cs-style1 .cs-player_btn,
  .cs-video_block.cs-style1.cs-size1 .cs-player_btn {
    transform: translate(-50%, -50%) scale(0.7);
  }
  .cs-partner_logo_wrap {
    margin: 0 -10px;
  }
  .cs-partner_logo {
    padding: 10px;
  }
  .cs-case_study .cs-case_study_title {
    font-size: 30px;
  }
  .cs-page_heading.cs-style1 .breadcrumb {
    justify-content: center;
  }
  .cs-masonry_4_col {
    -moz-column-count: 1;
         column-count: 1;
  }
}
#cursor-dot,
#cursor-dot-outline {
  z-index: 999;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
  mix-blend-mode: difference;
}

#cursor-dot {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
}

#cursor-dot-outline {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
}

.comment-wrap {
  padding: 0px 0 10px;
  border-bottom: 1px solid rgba(131, 131, 131, 0.3);
  margin-bottom: 50px;
}

.blog-avatar-wrap {
  text-align: center;
  border: 1px solid rgba(131, 131, 131, 0.3);
  border-left: 0;
  border-right: 0;
  padding: 40px 20px 45px;
}

.blog-post-avatar-img {
  margin-bottom: 15px;
}

.blog-post-avatar-img a {
  display: inline-block;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-post-avatar-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bd-avatar-info h4 {
  margin-bottom: 0;
  font-size: 30px;
}

.bd-avatar-info p {
  margin-bottom: 0;
  margin-top: 15px;
}

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

.comment-wrap .title {
  font-size: 22px;
  color: #fff;
  margin: 0 0 30px;
}

.blog-area ul {
  margin-top: 0;
  margin-bottom: 25px;
}

.list-wrap li {
  list-style: none;
}

.latest-comments ul li .comments-box {
  display: flex;
  align-items: flex-start;
  width: 95%;
  margin-bottom: 40px;
}

.latest-comments ul li .comments-box .comments-avatar {
  width: 80px;
  flex: 0 0 80px;
  margin-right: 30px;
}

.latest-comments ul li .comments-box .comments-avatar img {
  border-radius: 50%;
}

.comment-text {
  overflow: hidden;
  flex-grow: 1;
}

.latest-comments ul li .comments-box .avatar-name {
  margin-bottom: 10px;
}

.latest-comments ul li .comments-box .comment-text > p {
  margin-bottom: 0;
}

.comment-text .avatar-name h6 {
  font-size: 18px;
  margin: 0.5em 0 0.5em;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
  margin-top: 0;
}

.comment-reply-link {
  font-size: 16px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  margin-left: 10px;
  color: #fff;
  transition: all 0.3s ease;
}
.comment-reply-link:hover {
  color: var(--accent);
}

.no-results.not-found {
  background: transparent;
  padding: 40px 80px;
  text-align: center;
  border: 1px solid rgba(131, 131, 131, 0.2);
  box-shadow: none;
  border-radius: 5px;
}

.no-results.not-found .page-header {
  background: none;
  margin-bottom: 20px;
  padding: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.page-header h1 {
  font-size: 35px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.pageontent.blog-search-content p {
  margin-bottom: 20px;
}

.no-results.not-found .sidebar-search-form {
  margin-top: 30px;
}

.sidebar-search-form input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fefefe;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  padding: 0px 40px 6px 10px;
  border-radius: 0;
  height: 35px;
  outline: none;
  transition: all 0.3s ease;
}
.sidebar-search-form input:focus {
  border-color: var(--accent);
}

.sidebar-search-form button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  border: none;
  background: transparent;
  padding: 0px;
  font-size: 16px;
  transition: all 0.3s ease 0s;
  display: flex;
}
.sidebar-search-form button:hover {
  color: var(--accent);
}

.cs-post.cs-style2 .post-text {
  padding-bottom: 20px;
}
.cs-post.cs-style2 .post-text figure.image {
  margin-bottom: 45px;
}
.cs-post.cs-style2 .post-text blockquote p {
  margin: 0;
}
.cs-post.cs-style2 .post-text table {
  border: 1px solid rgba(131, 131, 131, 0.25);
}
.cs-post.cs-style2 .post-text table td,
.cs-post.cs-style2 .post-text table th {
  border-color: rgba(131, 131, 131, 0.25);
  border-top: rgba(131, 131, 131, 0.25);
}
.cs-post.cs-style2 .post-text table td {
  color: rgba(254, 254, 254, 0.7);
}
.cs-post.cs-style2 .post-text table th {
  color: #fefefe;
}
.cs-post.cs-style2 .post-text ul,
.cs-post.cs-style2 .post-text ol {
  margin-bottom: 45px;
}
.cs-post.cs-style2 .post-text ul li:not(:last-child),
.cs-post.cs-style2 .post-text ol li:not(:last-child) {
  margin-bottom: 7px;
}
.cs-post.cs-style2 .post-text ul {
  list-style: none;
  padding-left: 0;
}
.cs-post.cs-style2 .post-text ul li {
  position: relative;
  padding-left: 25px;
}
.cs-post.cs-style2 .post-text ul li::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 9px;
  border: 2px solid var(--accent);
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
  left: 0;
  top: 3px;
}

.cs-masonry_4_col > *:nth-child(1) .cs-portfolio.cs-style1,
.cs-masonry_4_col > *:nth-child(3) .cs-portfolio.cs-style1,
.cs-masonry_4_col > *:nth-child(6) .cs-portfolio.cs-style1,
.cs-masonry_4_col > *:nth-child(8) .cs-portfolio.cs-style1 {
  height: 299px;
}

.cs-masonry_4_col > *:nth-child(2) .cs-portfolio.cs-style1,
.cs-masonry_4_col > *:nth-child(4) .cs-portfolio.cs-style1,
.cs-masonry_4_col > *:nth-child(5) .cs-portfolio.cs-style1,
.cs-masonry_4_col > *:nth-child(7) .cs-portfolio.cs-style1,
.cs-masonry_4_col > *:nth-child(9) .cs-portfolio.cs-style1,
.cs-masonry_4_col > *:nth-child(10) .cs-portfolio.cs-style1 {
  height: 622px;
}

.cs_blog_section + .cs-fooer {
  background-color: #151515;
}

.cs-post.cs-style2 .post-text .table .image {
  margin-bottom: 0;
}

.cs-case_study .cs-case_study_title {
  max-width: 1280px;
}

figure.table {
  margin-bottom: 50px;
}

.cs-post.cs-style2 .cs-post_meta {
  flex-wrap: wrap;
}

.cs_gap_40_y {
  gap: 40px 0;
}

.cs-post.cs-style3 .cs-post_right {
  flex: 1;
}

.cs-rating .cs-rating_bg {
  display: flex;
}
.cs-rating .cs-rating_bg svg {
  flex: none;
}
.cs-rating .cs-rating_percentage {
  display: flex;
  overflow: hidden;
}
.cs-rating .cs-rating_percentage svg {
  flex: none;
}

.cs-card.cs-style1 {
  filter: initial !important;
}
.cs-card.cs-style1:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  filter: drop-shadow(0px 0px 30px var(--accent));
  background: var(--accent);
  border-radius: 18px;
  opacity: 0;
  transition: all 0.4s ease;
}
.cs-card.cs-style1 img {
  position: relative;
  z-index: 1;
}
.cs-card.cs-style1 .cs-card_overlay {
  position: relative;
  z-index: 2;
}
.cs-card.cs-style1 .cs-card_info {
  z-index: 3;
}
.cs-card.cs-style1:hover {
  filter: initial !important;
}
.cs-card.cs-style1:hover::before {
  opacity: 0.5;
}

.cs-grid_gallery_5 {
  display: flex;
  flex-wrap: wrap;
}
.cs-grid_gallery_5 .cs-grid_gallery_item {
  width: 20%;
}
@media (max-width: 575px) {
  .cs-grid_gallery_5 .cs-grid_gallery_item {
    width: 100%;
  }
}
.cs-grid_gallery_5 .cs-portfolio.cs-style1 {
  height: initial;
  position: relative;
}
.cs-grid_gallery_5 .cs-portfolio.cs-style1:hover .cs-plus {
  z-index: 2;
}
.cs-grid_gallery_5 .cs-portfolio.cs-style1 .cs-portfolio_bg {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  padding-top: 117%;
}
.cs-grid_gallery_5 .cs-portfolio.cs-style1 .cs-portfolio_bg > div > img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: zoom-in;
  z-index: 5;
  opacity: 0;
}
@media (max-width: 575px) {
  .cs-grid_gallery_5 .cs-portfolio.cs-style1 .cs-portfolio_bg {
    padding-top: 100%;
  }
}

.cs-gradient_1 {
  background: linear-gradient(267deg, #161616 0%, #080808 100%);
}

.cs-list.cs-style_2 li {
  position: relative;
  padding-left: 53px;
}
@media (max-width: 1199px) {
  .cs-list.cs-style_2 li {
    padding-left: 45px;
  }
}
.cs-list.cs-style_2 li:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .cs-list.cs-style_2 li:not(:last-child) {
    margin-bottom: 30px;
  }
}
.cs-list.cs-style_2 li > svg {
  position: absolute;
  left: 0;
  top: 10px;
}
@media (max-width: 1199px) {
  .cs-list.cs-style_2 li > svg {
    top: 7px;
  }
}
.cs-list.cs-style_2 li h3 {
  font-size: 30px;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  .cs-list.cs-style_2 li h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

.cs-list_2_group {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cs-list_2_group {
    flex-direction: column;
  }
}
.cs-list_2_group > * {
  flex: none;
  width: 50%;
}
@media (max-width: 991px) {
  .cs-list_2_group > * {
    width: 100%;
  }
}
.cs-list_2_group > *:first-child {
  padding-right: 150px;
}
@media (max-width: 1400px) {
  .cs-list_2_group > *:first-child {
    padding-right: 70px;
  }
}
@media (max-width: 1199px) {
  .cs-list_2_group > *:first-child {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .cs-list_2_group > *:first-child {
    padding-right: 0px;
    padding-bottom: 30px;
  }
}
.cs-list_2_group > *:last-child {
  padding-left: 150px;
  border-left: 1px solid #4d4d4d;
}
@media (max-width: 1400px) {
  .cs-list_2_group > *:last-child {
    padding-left: 70px;
  }
}
@media (max-width: 1199px) {
  .cs-list_2_group > *:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cs-list_2_group > *:last-child {
    padding-left: 0px;
    border-top: 1px solid #4d4d4d;
    border-left: 0;
    padding-top: 30px;
  }
}

.rtl .cs-slider.cs-style3 {
  margin-left: initial;
  margin-right: -20%;
}
.rtl .cs-portfolio.cs-style1 .cs-portfolio_info {
  left: initial;
  right: -40px;
  padding: 105px 65px 80px 20px;
}
.rtl .cs-arrow_style1 .slick-prev,
.rtl .cs-arrow_style2 .slick-prev,
.rtl .cs-arrow_style3 .slick-prev {
  right: initial;
  left: 76px;
}
.rtl .cs-arrow_style1 .slick-next,
.rtl .cs-arrow_style2 .slick-next,
.rtl .cs-arrow_style3 .slick-next {
  right: initial;
  left: 0;
}
.rtl .cs-tab_links.cs-style1 {
  right: initial;
  left: 0;
}
.rtl .cs-pricing_table.cs-style1 .cs-pricing_feature .cs-feature_icon {
  left: initial;
  right: 0;
  rotate: 180deg;
}
.rtl .cs-pricing_table.cs-style1 .cs-pricing_feature li {
  padding-left: 0;
  padding-right: 35px;
}
.rtl .swiper-horizontal > .swiper-pagination,
.rtl .swiper-vertical > .swiper-pagination {
  transform: translateY(-50%);
}
.rtl .cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-next svg,
.rtl .cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-next svg {
  margin-right: 12px;
  margin-left: 0;
}
.rtl .cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-prev svg,
.rtl .cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-prev svg {
  margin-right: 0;
  margin-left: 12px;
}

.cs-checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 5px;
}
.cs-checkbox label {
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  padding-left: 25px;
}
.cs-checkbox label::before {
  content: "";
  height: 14px;
  width: 14px;
  border: 1px solid var(--accent);
  position: absolute;
  left: 0;
  top: 6px;
  border-radius: 2px;
}
.cs-checkbox label::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: var(--accent);
  left: 3px;
  top: 9px;
  border-radius: 1px;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cs-checkbox .form-check-input {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
  margin: 0;
  cursor: pointer;
}
.cs-checkbox .form-check-input:checked + label::after {
  transform: scale(1);
}

/*--------------------------------------------------------------
  5. Slider
----------------------------------------------------------------*/
.cs-slider_heading.cs-style1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs-slider {
  position: relative;
}

.cs-slider.cs-style1 {
  display: flex;
  flex-wrap: wrap;
}
.cs-slider.cs-style1 .cs-slider_left {
  width: 44%;
  padding-right: 12%;
}
.cs-slider.cs-style1 .cs-slider_right {
  width: 56%;
}

.cs-slider.cs-style3 {
  width: 140%;
  margin-left: -20%;
}
.cs-slider.cs-style3 .cs-portfolio.cs-style1 {
  padding: 50px 0;
  transition: all 0.4s ease;
}
.cs-slider.cs-style3 .cs-portfolio.cs-style1 .cs-portfolio_info_bg {
  left: -20px;
  top: 20px;
  opacity: 0;
  transition: all 0.4s ease;
}
.cs-slider.cs-style3 .cs-portfolio.cs-style1 .cs-portfolio_title {
  opacity: 0;
  left: 20px;
  transition: all 0.5s ease;
}
.cs-slider.cs-style3 .cs-portfolio.cs-style1 .cs-portfolio_subtitle {
  opacity: 0;
  left: 20px;
  transition: all 0.5s ease;
}
.cs-slider.cs-style3 .slick-center .cs-portfolio.cs-style1 {
  padding: 0;
}
.cs-slider.cs-style3 .slick-center .cs-portfolio.cs-style1 .cs-portfolio_info_bg {
  left: 0px;
  top: 0px;
  opacity: 1;
  transition-delay: 0.4s;
}
.cs-slider.cs-style3 .slick-center .cs-portfolio.cs-style1 .cs-portfolio_title {
  left: 0px;
  opacity: 1;
  transition-delay: 0.5s;
}
.cs-slider.cs-style3 .slick-center .cs-portfolio.cs-style1 .cs-portfolio_subtitle {
  left: 0px;
  opacity: 1;
  transition-delay: 0.6s;
}

.slick-slide > div {
  display: flex;
  flex-direction: column;
}

.cs-remove_overflow .slick-list {
  overflow: visible;
}
.cs-remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.cs-remove_overflow .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  margin: 70px 0 0;
  list-style: none;
  padding: 0;
}
.slick-dots li {
  margin: 0 8px;
  display: flex;
}
.slick-dots button {
  height: 16px;
  width: 16px;
  background-color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  color: transparent;
}
.slick-dots button::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent);
}
.slick-dots .slick-active button {
  background-color: transparent;
}

.cs-slider_arrows.cs-style1 {
  display: flex;
  margin: -8px;
}
.cs-slider_arrows.cs-style1 .slick-arrow {
  width: 60px;
  height: 35px;
  border: 2px solid currentColor;
  border-radius: 5px;
  margin: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cs-slider_arrows.cs-style1 .slick-arrow:hover {
  color: #fff;
  background-color: var(--accent);
  border-color: var(--accent);
}

.slick-initialized {
  cursor: ew-resize !important;
}

.cs-testimonial_slider_left .slick-list {
  padding: 65px 0 !important;
}

.cs-gap-24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}
.cs-gap-24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.cs-gap-12 .slick-slide {
  padding-left: 6px;
  padding-right: 6px;
}
.cs-gap-12 .slick-list {
  margin-left: -6px;
  margin-right: -6px;
}

.cs-slider_controll {
  position: relative;
  display: flex;
  align-items: center;
  width: 320px;
  justify-content: space-between;
}
.cs-slider_controll .cs-controll_seperator {
  height: 1px;
  flex: 1;
  background-color: rgba(254, 254, 254, 0.5);
  margin: 0 20px;
}
.cs-slider_controll.cs-type1 {
  margin-left: -205px;
}

.slider-nav.cs-style1 {
  width: 405px;
}
.slider-nav.cs-style1 .slick-list {
  padding: 50px 0 !important;
}
.slider-nav.cs-style1 .slick-dots,
.slider-nav.cs-style1 .slick-arrow {
  display: none !important;
}

.slider-nav_item {
  width: 135px;
  transition: all 0.5s ease;
  opacity: 0.5;
  padding: 20px;
}

.slick-center .slider-nav_item {
  transform: scale(1.8);
  opacity: 1;
  position: relative;
  z-index: 2;
}

.cs-arrow_style1 .slick-arrow,
.cs-arrow_style2 .slick-arrow,
.cs-arrow_style3 .slick-arrow {
  width: 60px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  background-color: transparent;
  outline: none;
  position: absolute;
  bottom: 6px;
  z-index: 2;
  color: #fefefe;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cs-arrow_style1 .slick-arrow:hover,
.cs-arrow_style2 .slick-arrow:hover,
.cs-arrow_style3 .slick-arrow:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}
.cs-arrow_style1 .slick-prev,
.cs-arrow_style2 .slick-prev,
.cs-arrow_style3 .slick-prev {
  right: 76px;
}
.cs-arrow_style1 .slick-next,
.cs-arrow_style2 .slick-next,
.cs-arrow_style3 .slick-next {
  right: 0;
}

.cs-arrow_style2 .slick-arrow {
  bottom: initial;
  top: -190px;
}

.cs-arrow_style4 .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  background-color: rgba(153, 150, 150, 0.5);
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cs-arrow_style4 .slick-arrow:hover {
  background-color: #999696;
  border-color: var(--accent);
}
.cs-arrow_style4 .slick-arrow.slick-prev {
  left: 40px;
}
.cs-arrow_style4 .slick-arrow.slick-next {
  right: 40px;
}
.cs-arrow_style4 .slick-prev {
  right: 76px;
}
.cs-arrow_style4 .slick-next {
  right: 0;
}

.cs-testimonial_slider {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.cs-testimonial_slider_left {
  width: 35%;
}

.cs-testimonial_slider_right {
  width: 65%;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 52px;
  right: initial;
  top: initial;
  z-index: 2;
}
.swiper-pagination .swiper-pagination-bullet {
  height: 16px;
  width: 16px;
  background-color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50%;
  margin: 0 8px !important;
  cursor: pointer;
  position: relative;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent);
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
}
.swiper-pagination.cs-square_shape .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  border-radius: 3px;
}
.swiper-pagination.cs-square_shape .swiper-pagination-bullet::before {
  border-radius: 1px;
}

.swiper-horizontal > .swiper-pagination,
.swiper-vertical > .swiper-pagination {
  right: initial;
  top: initial;
  transform: initial;
  left: 50%;
  transform: translateX(-50%);
  bottom: 52px;
  width: initial;
}

.swiper-vertical > .swiper-pagination {
  right: initial !important;
  top: initial !important;
}

.swiper-vertical > .swiper-pagination {
  left: 115px !important;
  bottom: initial !important;
  transform: translateY(-50%);
  top: 50% !important;
  flex-direction: column;
  align-items: center;
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet {
  display: block;
  height: initial;
  width: initial;
  border: none;
  background-color: transparent;
  margin: 15px 0 !important;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet::before {
  display: none;
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: var(--accent);
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet:nth-child(1)::after {
  content: "01";
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet:nth-child(2)::after {
  content: "02";
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet:nth-child(3)::after {
  content: "03";
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet:nth-child(4)::after {
  content: "04";
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet:nth-child(5)::after {
  content: "05";
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet:nth-child(6)::after {
  content: "06";
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet:nth-child(7)::after {
  content: "07";
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet:nth-child(8)::after {
  content: "08";
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet:nth-child(9)::after {
  content: "09";
}
.swiper-vertical > .swiper-pagination .swiper-pagination-bullet:nth-child(10)::after {
  content: "10";
}

.cs-swiper_arrow_style_1 .swiper-button,
.cs-swiper_arrow_style_1 .swiper-button {
  position: absolute;
  z-index: 11;
  font-weight: 600;
  color: #fff;
  bottom: 48px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cs-swiper_arrow_style_1 .swiper-button:hover,
.cs-swiper_arrow_style_1 .swiper-button:hover {
  color: var(--accent);
}
@media (max-width: 1199px) {
  .cs-swiper_arrow_style_1 .swiper-button,
  .cs-swiper_arrow_style_1 .swiper-button {
    bottom: 25px;
  }
}
.cs-swiper_arrow_style_1 .swiper-button svg,
.cs-swiper_arrow_style_1 .swiper-button svg {
  font-size: 22px;
}
.cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-prev,
.cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-prev {
  left: 115px;
}
.cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-prev svg,
.cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-prev svg {
  margin-right: 12px;
}
@media (max-width: 1199px) {
  .cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-prev,
  .cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-prev {
    left: 15px;
  }
}
.cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-next,
.cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-next {
  right: 115px;
}
.cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-next svg,
.cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-next svg {
  margin-left: 12px;
}
@media (max-width: 1199px) {
  .cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-next,
  .cs-swiper_arrow_style_1 .swiper-button.image-swiper-button-next {
    right: 15px;
  }
}

@media screen and (max-width: 1380px) {
  .cs-arrow_style2 .slick-arrow {
    top: -175px;
  }
  .cs-slider.cs-style3 {
    width: 160%;
    margin-left: -30%;
  }
}
@media screen and (max-width: 1199px) {
  .cs-gap-50 .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cs-gap-50 .slick-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cs-slider.cs-style1 {
    display: block;
  }
  .cs-slider.cs-style1 .cs-slider_left {
    width: 100%;
    padding-right: 0;
    padding-bottom: 90px;
  }
  .cs-slider.cs-style1 .cs-slider_right {
    width: 100%;
  }
  .cs-testimonial_slider_left {
    width: 45%;
  }
  .cs-testimonial_slider_right {
    width: 55%;
  }
  .swiper-horizontal > .swiper-pagination,
  .swiper-vertical > .swiper-pagination {
    bottom: 30px;
  }
  .swiper-vertical > .swiper-pagination.cs-slide_numbers {
    left: 15px !important;
  }
  .swiper-vertical > .swiper-pagination.cs-slide_numbers .swiper-pagination-bullet {
    font-size: 16px;
    margin: 7px 0 !important;
  }
  .swiper-vertical > .swiper-pagination {
    left: 15px !important;
  }
  .swiper-vertical > .swiper-pagination {
    top: initial;
    transform: translateX(-50%);
    left: 50%;
    bottom: 18px;
  }
  .swiper-vertical > .swiper-pagination .swiper-pagination-bullet {
    margin: 5px 6px !important;
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .cs-hidden_desktop {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .cs-hidden_mobile {
    display: none !important;
  }
  .cs-pagination.cs-style1 {
    margin-top: 35px;
  }
  .cs-slider_nav {
    position: initial;
    width: 100%;
    transform: initial;
    padding-bottom: 80px;
  }
  .cs-gap-40 .slick-slide,
  .cs-gap-50 .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cs-gap-40 .slick-list,
  .cs-gap-50 .slick-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cs-slider.cs-style1 .cs-slider_left {
    padding-bottom: 45px;
  }
  .cs-slider_heading.cs-style1 {
    flex-direction: column;
    align-items: flex-start;
  }
  .cs-slider_heading.cs-style1 .cs-section_heading + .cs-slider_arrows {
    margin-top: 15px;
  }
  .cs-testimonial_slider {
    display: block;
  }
  .cs-testimonial_slider_left,
  .cs-testimonial_slider_right {
    width: 100%;
  }
  .cs-testimonial_slider_left {
    margin-bottom: 30px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .slider-nav.cs-style1 {
    margin: auto;
  }
  .slider-nav.cs-style1 .slick-list {
    padding: 40px 0 !important;
  }
  .slick-dots {
    margin: 40px 0 0;
  }
  .cs-slider.cs-style3 {
    width: 180%;
    margin-left: -40%;
  }
}
@media screen and (max-width: 767px) {
  .cs-slider.cs-style3 {
    width: 100%;
    margin-left: 0%;
    padding: 0 12px;
  }
}
@media screen and (max-width: 575px) {
  .cs-hide_mobile {
    display: none;
  }
  .swiper-vertical > .swiper-pagination {
    display: none !important;
  }
}
@media screen and (max-width: 420px) {
  .slider-nav.cs-style1 {
    width: 300px;
  }
  .slider-nav_item {
    width: 100px;
  }
  .cs-testimonial_slider .cs-testimonial.cs-style1 {
    padding-bottom: 70px;
  }
  .cs-arrow_style1 .slick-next,
  .cs-arrow_style2 .slick-next {
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 38px;
  }
  .cs-arrow_style1 .slick-prev,
  .cs-arrow_style2 .slick-prev {
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -38px;
  }
  .cs-arrow_style2 .slick-next,
  .cs-arrow_style2 .slick-prev {
    bottom: 0;
    top: initial;
  }
  .swiper-vertical > .swiper-pagination .swiper-pagination-bullet {
    margin: 5px 4px !important;
    font-size: 16px;
  }
}
.cs-vertical_slider {
  position: relative;
  height: 100vh;
}

.swiper {
  width: 100%;
  height: 100vh;
}

/*--------------------------------------------------------------
6. Video Popup
----------------------------------------------------------------*/
.cs-pd_video .cs-video_open,
.cs-sample_img .cs-video_open {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 68px;
  transition: all 0.3s ease;
  line-height: 48px;
}

.cs-pd_video .cs-video_open:hover,
.cs-sample_img .cs-video_open:hover {
  color: rgba(255, 255, 255, 0.7);
}

.cs-video_popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  transition-delay: 0.3s;
}

.cs-video_popup.active {
  left: 0;
  transition-delay: 0s;
  left: 0;
}

.cs-video_popup_overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  transition: all 0.4s ease-out;
  opacity: 0;
}

.cs-video_popup.active .cs-video_popup_overlay {
  opacity: 0.8;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cs-video_popup_content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  text-align: center;
  transition: all 0.4s ease-out;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}

.cs-video_popup.active .cs-video_popup_content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cs-video_popup_content:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.cs-video_popup_container {
  display: inline-block;
  position: relative;
  text-align: left;
  background: #fff;
  max-width: 1380px;
  width: 100%;
  vertical-align: middle;
}

.cs-video_popup_container .embed-responsive {
  width: 100%;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.embed-responsive-16by9::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.embed-responsive iframe,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cs-video_popup_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #d90d0d;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.cs-video_popup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.cs-video_popup_close:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.cs-video_popup_close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.cs-video_popup_close:hover:before,
.cs-video_popup_close:hover:after {
  background: #000;
}

.cs-video_popup_layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.cs-video_popup_align {
  overflow: hidden;
}

/*End Video Popup*/
/*--------------------------------------------------------------
  10. Sidebar
----------------------------------------------------------------*/
.cs-sidebar_item:not(:last-child) {
  margin-bottom: 70px;
}

.cs-sidebar_widget_title {
  font-size: 30px;
  margin-bottom: 30px;
}

.tagcloud {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.tag-cloud-link {
  font-size: 14px;
  line-height: 1.6em;
  border: 2px solid #fff;
  padding: 3px 15px;
  display: inline-block;
  margin: 5px;
  border-radius: 2px;
}
.tag-cloud-link:hover {
  color: #fff;
  background-color: var(--accent);
  border-color: var(--accent);
}

.cs-side_menu_widget {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs-side_menu_widget li {
  padding-left: 26px;
  position: relative;
}
.cs-side_menu_widget li svg {
  position: absolute;
  left: -4px;
  top: 2px;
  font-size: 22px;
}
.cs-side_menu_widget li:not(:last-child) {
  margin-bottom: 20px;
}

.cs-recent_posts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs-recent_posts li:not(:last-child) {
  margin-bottom: 20px;
}

.cs-recent_post {
  display: flex;
  align-items: center;
}

.cs-recent_post_thumb {
  height: 60px;
  width: 60px;
  border-radius: 5px;
  flex: none;
  overflow: hidden;
  margin-right: 18px;
}
.cs-recent_post_thumb:hover .cs-recent_post_thumb_in {
  transform: scale(1.06);
}

.cs-recent_post_thumb_in {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  transition: all 0.4s ease;
}

.cs-recent_post_title {
  font-size: 18px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.cs-sidebar_search {
  position: relative;
}

.cs-sidebar_search input {
  display: block;
  width: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 2px solid #fff;
  padding: 0px 40px 6px 10px;
  transition: all 0.3s ease;
}
.cs-sidebar_search input:focus {
  border-color: var(--accent);
}

.cs-sidebar_search_btn {
  position: absolute;
  background-color: transparent;
  border: none;
  outline: none;
  bottom: 0px;
  right: 0;
  padding: 10px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 22px;
}
.cs-sidebar_search_btn:hover {
  color: var(--accent);
}

.cs-author_card img {
  height: 130px;
  width: 130px;
  margin-bottom: 22px;
}
.cs-author_card h3 {
  font-size: 30px;
  margin-bottom: 14px;
}
.cs-author_card p {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .cs-sidebar_widget_title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .cs-side_menu_widget li:not(:last-child) {
    margin-bottom: 12px;
  }
  .cs-sidebar_item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 992px) {
  .cs-height_0 {
    height: 0px;
  }
  .cs-height_5 {
    height: 5px;
  }
  .cs-height_10 {
    height: 10px;
  }
  .cs-height_15 {
    height: 15px;
  }
  .cs-height_20 {
    height: 20px;
  }
  .cs-height_25 {
    height: 25px;
  }
  .cs-height_30 {
    height: 30px;
  }
  .cs-height_35 {
    height: 35px;
  }
  .cs-height_40 {
    height: 40px;
  }
  .cs-height_45 {
    height: 45px;
  }
  .cs-height_50 {
    height: 50px;
  }
  .cs-height_55 {
    height: 55px;
  }
  .cs-height_60 {
    height: 60px;
  }
  .cs-height_65 {
    height: 65px;
  }
  .cs-height_70 {
    height: 70px;
  }
  .cs-height_75 {
    height: 75px;
  }
  .cs-height_80 {
    height: 80px;
  }
  .cs-height_85 {
    height: 85px;
  }
  .cs-height_90 {
    height: 90px;
  }
  .cs-height_95 {
    height: 95px;
  }
  .cs-height_100 {
    height: 100px;
  }
  .cs-height_105 {
    height: 105px;
  }
  .cs-height_110 {
    height: 110px;
  }
  .cs-height_115 {
    height: 115px;
  }
  .cs-height_120 {
    height: 120px;
  }
  .cs-height_125 {
    height: 125px;
  }
  .cs-height_130 {
    height: 130px;
  }
  .cs-height_135 {
    height: 135px;
  }
  .cs-height_140 {
    height: 140px;
  }
  .cs-height_145 {
    height: 145px;
  }
  .cs-height_150 {
    height: 150px;
  }
  .cs-height_155 {
    height: 155px;
  }
  .cs-height_160 {
    height: 160px;
  }
  .cs-height_165 {
    height: 165px;
  }
  .cs-height_170 {
    height: 170px;
  }
  .cs-height_175 {
    height: 175px;
  }
  .cs-height_180 {
    height: 180px;
  }
  .cs-height_185 {
    height: 185px;
  }
  .cs-height_190 {
    height: 190px;
  }
  .cs-height_195 {
    height: 195px;
  }
  .cs-height_200 {
    height: 200px;
  }
  .cs-height_205 {
    height: 205px;
  }
  .cs-height_210 {
    height: 210px;
  }
}
@media screen and (max-width: 991px) {
  .cs-height_lg_0 {
    height: 0px;
  }
  .cs-height_lg_5 {
    height: 5px;
  }
  .cs-height_lg_10 {
    height: 10px;
  }
  .cs-height_lg_15 {
    height: 15px;
  }
  .cs-height_lg_20 {
    height: 20px;
  }
  .cs-height_lg_25 {
    height: 25px;
  }
  .cs-height_lg_30 {
    height: 30px;
  }
  .cs-height_lg_35 {
    height: 35px;
  }
  .cs-height_lg_40 {
    height: 40px;
  }
  .cs-height_lg_45 {
    height: 45px;
  }
  .cs-height_lg_50 {
    height: 50px;
  }
  .cs-height_lg_55 {
    height: 55px;
  }
  .cs-height_lg_60 {
    height: 60px;
  }
  .cs-height_lg_65 {
    height: 65px;
  }
  .cs-height_lg_70 {
    height: 70px;
  }
  .cs-height_lg_75 {
    height: 75px;
  }
  .cs-height_lg_80 {
    height: 80px;
  }
  .cs-height_lg_85 {
    height: 85px;
  }
  .cs-height_lg_90 {
    height: 90px;
  }
  .cs-height_lg_95 {
    height: 95px;
  }
  .cs-height_lg_100 {
    height: 100px;
  }
  .cs-height_lg_105 {
    height: 105px;
  }
  .cs-height_lg_110 {
    height: 110px;
  }
  .cs-height_lg_115 {
    height: 115px;
  }
  .cs-height_lg_120 {
    height: 120px;
  }
  .cs-height_lg_125 {
    height: 125px;
  }
  .cs-height_lg_130 {
    height: 130px;
  }
  .cs-height_lg_135 {
    height: 135px;
  }
  .cs-height_lg_140 {
    height: 140px;
  }
  .cs-height_lg_145 {
    height: 145px;
  }
  .cs-height_lg_150 {
    height: 150px;
  }
  .cs-height_lg_155 {
    height: 155px;
  }
  .cs-height_lg_160 {
    height: 160px;
  }
  .cs-height_lg_165 {
    height: 165px;
  }
  .cs-height_lg_170 {
    height: 170px;
  }
  .cs-height_lg_175 {
    height: 175px;
  }
  .cs-height_lg_180 {
    height: 180px;
  }
  .cs-height_lg_185 {
    height: 185px;
  }
  .cs-height_lg_190 {
    height: 190px;
  }
  .cs-height_lg_195 {
    height: 195px;
  }
  .cs-height_lg_200 {
    height: 200px;
  }
  .cs-height_lg_205 {
    height: 205px;
  }
  .cs-height_lg_210 {
    height: 210px;
  }
}
.cs-site_header {
  position: relative;
  z-index: 101;
}
.cs-site_header .cs-btn.cs-style6 {
  font-size: 16px;
}

.cs-site-branding {
  display: inline-block;
  max-width: 180px;
}

.cs-site_header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 10px;
  transition: all 0.4s ease;
}

.cs-site_header.cs-style1 .cs-main_header_in,
.cs-site_header.cs-style1 .cs-top_header_in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 90px;
  position: relative;
}
.cs-site_header.cs-style1 .cs-main_header_right {
  display: flex;
  align-items: center;
  height: 100%;
}

.cs-site_header.cs-style1.cs-sticky-active {
  background-color: #fff;
  box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}
.cs-site_header.cs-style1 .cs-icon_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: #fff;
}
.cs-site_header.cs-style1 .cs-icon_btn .cs-icon_btn_in {
  width: 18px;
  height: 16px;
  line-height: 0;
  cursor: pointer;
  position: relative;
  text-align: left;
  overflow: hidden;
}
.cs-site_header.cs-style1 .cs-icon_btn .cs-icon_btn_in span {
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 0;
  background-color: currentColor;
  color: inherit;
  vertical-align: top;
  transition: 0s ease-in-out;
  border-radius: 3px;
}
.cs-site_header.cs-style1 .cs-icon_btn .cs-icon_btn_in span:nth-child(1) {
  transform: translate(0, -7px);
  width: calc(100% - 4px);
}
.cs-site_header.cs-style1 .cs-icon_btn .cs-icon_btn_in span:nth-child(2) {
  transform: translate(0, 0);
  width: calc(100% - 4px);
}
.cs-site_header.cs-style1 .cs-icon_btn .cs-icon_btn_in span:nth-child(3) {
  transform: translate(0, 7px);
}
.cs-site_header.cs-style1 .cs-icon_btn .cs-icon_btn_in span:nth-child(4) {
  transform: translate(0, 14px);
}
.cs-site_header.cs-style1 .cs-icon_btn:hover .cs-icon_btn_in span {
  transition: 0.3s ease-in-out;
}
.cs-site_header.cs-style1 .cs-icon_btn:hover .cs-icon_btn_in span:nth-child(1) {
  transform: translate(0, 0);
}
.cs-site_header.cs-style1 .cs-icon_btn:hover .cs-icon_btn_in span:nth-child(2) {
  transform: translate(0, 7px);
  width: 100%;
}
.cs-site_header.cs-style1 .cs-icon_btn:hover .cs-icon_btn_in span:nth-child(3) {
  transform: translate(0, 14px);
}
.cs-site_header.cs-style1 .cs-icon_btn:hover .cs-icon_btn_in span:nth-child(4) {
  transform: translate(0, 21px);
}
.cs-site_header.cs-style1 .cs-action_box {
  display: flex;
  align-items: center;
}
.cs-site_header.cs-style1 .cs-action_box .cs-action_value {
  margin-left: 15px;
}
.cs-site_header.cs-style1 .cs-action_box > *:not(:last-child) {
  margin-right: 35px;
}
.cs-site_header.cs-style1 .cs-btn {
  padding: 13px 15px;
}

.cs-site_header_full_width .container {
  max-width: 100%;
  padding: 0 115px;
}

.cs-site_header_style1 {
  border-bottom: 1px solid #1a188d;
}
.cs-site_header_style1 .cs-main_header_right {
  display: flex;
  align-items: center;
}
.cs-site_header_style1 .cs-nav + .cs-header_toolbox.cs-center {
  margin-left: 35px;
}
.cs-site_header_style1 .cs-nav .cs-nav_list > li.current-menu-item > a:before {
  bottom: -4px;
  background-color: #fff;
}

.cs-side_header {
  position: fixed;
  top: 0;
  right: 0px;
  width: 100%;
  z-index: 1000;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.cs-side_header .cs-side_header_overlay {
  background-color: rgba(22, 22, 22, 0.5);
  height: inherit;
  width: inherit;
  left: inherit;
  top: inherit;
  position: inherit;
  cursor: zoom-out;
  transition: all 0.4s ease;
  opacity: 0;
}
.cs-side_header .cs-side_header_in {
  width: 500px;
  height: 100vh;
  background-color: #181818;
  flex: none;
  margin-left: auto;
  overflow: auto;
  padding: 90px 50px 50px 50px;
  position: relative;
  z-index: 2;
  right: -500px;
  transition: all 0.4s ease;
}
.cs-side_header .cs-side_header_heading {
  font-size: 22px;
  line-height: 1.4em;
  margin: 0;
}
.cs-side_header .cs-side_header_title {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cs-side_header .cs-side_header_box {
  padding: 35px 0;
}
.cs-side_header .cs-close {
  opacity: 0;
}
.cs-side_header.active {
  opacity: 1;
  visibility: visible;
}
.cs-side_header.active .cs-side_header_overlay,
.cs-side_header.active .cs-close {
  opacity: 1;
}
.cs-side_header.active .cs-side_header_in {
  right: 0;
}
.cs-side_header .cs-side_header_shape {
  height: 257px;
  width: 257px;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
  z-index: -1;
  bottom: 0;
  right: 0;
}
.cs-side_header .cs-side_header_shape::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  right: -90px;
  bottom: -80px;
  overflow: hidden;
  background-color: #000;
  border-radius: 50%;
}

.cs-close {
  position: fixed;
  right: 30px;
  top: 30px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  z-index: 100;
}
.cs-close::before, .cs-close::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: currentColor;
  left: 50%;
  top: 50%;
  margin-left: -25%;
  margin-top: -1px;
  transform: rotate(-45deg);
}
.cs-close::before {
  transform: rotate(45deg);
}
.cs-close:hover {
  color: var(--accent);
  transform: scale(1.05);
}

@media screen and (max-width: 1199px) {
  .cs-main_header .container {
    max-width: 100%;
  }
  .cs-site_header.cs-style1 .cs-nav {
    display: flex;
  }
}
.cs-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs-sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
  transition: all 0.4s ease;
}

.cs-sticky_header_active {
  top: 0px;
  background-color: #000;
}

.cs-site_branding {
  display: inline-block;
}
.cs-site_branding img {
  max-height: 45px;
  width: auto;
  max-width: 100%;
}

.cs-site_branding_large img {
  max-height: 68px;
  max-width: min(26vw, 260px);
}

@media screen and (min-width: 1200px) {
  .cs-main_header {
    position: relative;
  }
  .cs-main_header .container-fluid {
    padding-right: 40px;
    padding-left: 40px;
  }
  .cs-site_header.cs-style1 .cs-main_header_in {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    gap: 20px;
  }
  .cs-site_header.cs-style1 .cs-main_header_center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-width: 0;
  }
  .cs-site_header.cs-style1 .cs-main_header_left {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cs-nav {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 15px;
    line-height: 1.6em;
    color: #fff;
  }
  .cs-nav .cs-nav_list {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    height: inherit;
    row-gap: 0;
  }
  .cs-nav .cs-nav_list > li {
    margin-right: clamp(16px, 2vw, 34px);
    height: inherit;
  }
  .cs-nav .cs-nav_list > li:last-child {
    margin-right: 0;
  }
  .cs-nav .cs-nav_list > li > a {
    padding: 10px 0;
    display: inline-flex;
    position: relative;
    height: inherit;
    align-items: center;
  }
  .cs-nav .cs-nav_list > li > ul {
    left: 0;
    top: calc(100% + 15px);
  }
  .cs-nav .cs-nav_list > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .cs-nav .cs-nav_list > li.menu-item-has-children > a {
    position: relative;
  }
  .cs-nav .cs-nav_list > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    height: 8px;
    width: 8px;
    border: 2px solid currentColor;
    transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
    margin-left: 6px;
    position: relative;
    top: -2px;
    border-radius: 0px 0px 2px 0px;
  }
  .cs-nav .cs-nav_list li:not(.cs-mega-menu) {
    position: relative;
  }
  .cs-nav .cs-nav_list ul {
    width: 260px;
    background-color: #181818;
    position: absolute;
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    border-top: 2px solid var(--accent);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 0px 0px 5px 5px;
    transition: all 0.1s ease;
  }
  .cs-nav .cs-nav_list ul li:hover ul {
    top: 0px;
  }
  .cs-nav .cs-nav_list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .cs-nav .cs-nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
  }
  .cs-nav .cs-nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .cs-nav .cs-nav_list .active {
    color: var(--accent);
  }
  .cs-munu_toggle,
  .cs-munu_dropdown_toggle {
    display: none;
  }
  .cs-nav .cs-nav_list .cs-mega-wrapper {
    width: 1170px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    position: absolute;
    padding: 0;
  }
  .cs-nav .cs-nav_list .cs-mega-wrapper > li {
    flex: 1;
    padding: 10px 0;
  }
  .cs-nav .cs-nav_list .cs-mega-wrapper > li:not(:last-child) {
    border-right: 1px solid #4d4d4d;
  }
  .cs-nav .cs-nav_list .cs-mega-wrapper > li > a {
    color: #fefefe;
    font-weight: 600;
  }
  .cs-nav .cs-nav_list .cs-mega-wrapper > li > a:hover {
    background-color: transparent;
  }
  .cs-nav .cs-nav_list .cs-mega-wrapper > li ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    box-shadow: none;
    background-color: transparent;
  }
  .cs-nav .cs-nav_list .cs-mega-menu:hover .cs-mega-wrapper li ul {
    opacity: 1;
    visibility: visible;
  }
  .cs-nav .cs-nav_list > li ul:not(.cs-mega-wrapper) .menu-item-has-children > a {
    position: relative;
  }
}
@media screen and (max-width: 1360px) {
  .cs-site-branding {
    max-width: 190px;
  }
  .cs-site_header_full_width .container {
    padding: 0 48px;
  }
}
@media screen and (max-width: 1320px) {
  .cs-site_header.cs-style1 .cs-main_header_in,
  .cs-site_header.cs-style1 .cs-top_header_in {
    height: 84px;
  }
  .cs-site_branding_large img {
    max-height: 58px;
    max-width: 220px;
  }
  .cs-nav {
    font-size: 14px;
  }
  .cs-nav .cs-nav_list > li {
    margin-right: 18px;
  }
}
@media screen and (max-width: 1279px) {
  .cs-munu_dropdown_toggle {
    position: absolute;
    height: 30px;
    width: 30px;
    right: 15px;
    top: 5px;
  }
  .cs-munu_dropdown_toggle:before, .cs-munu_dropdown_toggle:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: rgba(254, 254, 254, 0.7);
    transition: all 0.3s ease;
  }
  .cs-munu_dropdown_toggle:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .cs-munu_dropdown_toggle.active:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .cs-nav .cs-nav_list {
    position: absolute;
    width: min(420px, 100vw - 30px);
    left: auto;
    right: 0;
    background-color: #181818;
    padding: 14px 0;
    display: none;
    top: calc(100% + 12px);
    border-top: 1px solid rgba(77, 77, 77, 0.3215686275);
    border-bottom: 1px solid rgba(77, 77, 77, 0.3215686275);
    border-left: 1px solid rgba(77, 77, 77, 0.3215686275);
    border-right: 1px solid rgba(77, 77, 77, 0.3215686275);
    overflow: auto;
    max-height: calc(100vh - 110px);
    line-height: 1.6em;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    z-index: 30;
  }
  .cs-nav .cs-nav_list ul {
    padding: 6px 0 0 14px;
    display: none;
  }
  .cs-nav .cs-nav_list.cs-nav_list_open {
    display: block !important;
  }
  .cs-nav .cs-nav_list .cs-munu_dropdown_toggle.active + ul {
    display: block;
  }
  .cs-nav .cs-nav_list a {
    display: block;
    padding: 10px 20px;
    white-space: normal;
    word-break: break-word;
  }
  .cs-nav .menu-item-has-children {
    position: relative;
  }
  /*Mobile Menu Button*/
  .cs-munu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
  }
  .cs-munu_toggle span,
  .cs-munu_toggle span:before,
  .cs-munu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }
  .cs-munu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    transition-duration: 0s;
    transition-delay: 0.2s;
  }
  .cs-munu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .cs-munu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .cs-site_header.cs-style1 .cs-munu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }
  .cs-toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    transition-delay: 0.2s;
  }
  .cs-toggle_active span:before {
    margin-top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.2s;
  }
  .cs-toggle_active span:after {
    margin-top: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.2s;
  }
  .cs-header_toolbox {
    margin-right: 50px;
  }
  .cs-nav .cs-nav_list a {
    position: relative;
  }
  .cs-site_header.cs-style1 .cs-main_header_in {
    height: 80px;
  }
  .cs-hamburger span {
    height: 3px;
  }
  .cs-site_header .current-menu-item > a:before {
    display: none;
  }
  .cs-site_header.cs-style1.cs-type4 .cs-main_header_in {
    padding: 0;
    box-shadow: none;
    border-radius: 0px;
    margin-top: 0;
    background-color: transparent;
  }
  .cs-site_header.cs-style1 .cs-main_header_center {
    position: static;
    transform: none;
  }
  .cs-site_header.cs-style1 {
    top: 0;
  }
  .cs-toolbox {
    margin-right: 45px;
  }
  .cs-site_header.cs-style1 .cs-icon_btn {
    width: 38px;
    height: 38px;
  }
  .cs-toolbox,
  .cs-side_header {
    display: none;
  }
  .cs-site_header_full_width .container {
    max-width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .cs-site_header .container {
    max-width: 100%;
  }
  .cs-site_header.cs-style1 .cs-action_box > *:not(:last-child) {
    margin-right: 25px;
  }
  .cs-site_header.cs-style1 .cs-btn {
    padding: 8px;
  }
}
@media screen and (max-width: 575px) {
  .cs-site-branding {
    max-width: 150px;
  }
  .cs-hamburger_wrap .cs-hamburger {
    margin-right: 0;
  }
  .cs-site_branding img {
    max-height: 32px;
  }
  .cs-site_branding_large img {
    max-height: 46px;
    max-width: 180px;
  }
  .cs-nav .cs-nav_list {
    width: calc(100vw - 20px);
    right: -5px;
  }
  .cs-site_header.cs-style1 .cs-btn span {
    display: none;
  }
  .cs-site_header.cs-style1 .cs-btn svg {
    margin-right: 0;
    width: 20px;
    height: 20px;
  }
}
.cs-cursor_lg,
.cs-cursor_sm {
  position: fixed;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  z-index: 9999;
}

.cs-cursor_lg {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  left: 0;
  top: 0;
  pointer-events: none;
  transition: 0.15s;
}

.cs-cursor_sm {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  left: 15px;
  top: 15px;
  pointer-events: none;
  transition: 0.2s;
}

@media screen and (max-width: 575px) {
  .cs-cursor_lg,
  .cs-cursor_sm {
    display: none;
  }
}
.cs-hero_social_wrap {
  display: flex;
  position: absolute;
  top: 50%;
  writing-mode: vertical-lr;
  transform: rotate(180deg) translateY(85%);
  right: 45px;
  z-index: 10;
}
.cs-hero_social_wrap.cs-left_side {
  right: initial;
  left: 45px;
}

.cs-hero_social_title {
  position: relative;
  padding-bottom: 35px;
  white-space: nowrap;
}
.cs-hero_social_title::after {
  content: "";
  height: 15px;
  width: 2px;
  background-color: #999696;
  display: inline-block;
  border-radius: 3px;
  margin-top: 15px;
  margin-bottom: 15px;
  position: absolute;
  bottom: -5px;
  left: 11px;
}

.cs-hero_social_links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.cs-hero_social_links li {
  position: relative;
  padding-bottom: 32px;
  white-space: nowrap;
}
.cs-hero_social_links li:last-child {
  padding-bottom: 0;
}
.cs-hero_social_links li:not(:last-child)::after {
  content: "";
  height: 2px;
  width: 15px;
  background-color: #999696;
  display: inline-block;
  position: absolute;
  bottom: 16px;
  border-radius: 3px;
  right: 5px;
}

.cs-hero_6_wrap,
.cs-hero_7_wrap {
  height: 100vh;
  position: relative;
}
.cs-hero_6_wrap .cs-hero_social_wrap,
.cs-hero_7_wrap .cs-hero_social_wrap {
  z-index: 10;
  transform: rotate(180deg) translateY(50%);
}

.cs-hero.cs-style1 {
  position: relative;
  padding: 250px 0 170px;
  height: calc(100vh + 180px);
  min-height: 1000px;
}
.cs-hero.cs-style1 .cs-hero_title {
  font-size: 120px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.25em;
}
.cs-hero.cs-style1 .cs-hero_title span {
  color: var(--accent);
}
.cs-hero.cs-style1 .cs-hero_subtitle {
  font-size: 18px;
  line-height: 1.9em;
  color: #fefefe;
}
.cs-hero.cs-style1 .cs-hero_info {
  display: flex;
  align-items: center;
}
.cs-hero.cs-style1 .cs-hero_info > div {
  width: 50%;
  flex: none;
}
.cs-hero.cs-style1 .cs-hero_text {
  position: relative;
  z-index: 3;
}
.cs-hero.cs-style1 .cs-slider.cs-style1 {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.cs-hero.cs-style1 .cs-slider.cs-style1 * {
  height: 100%;
  width: 100%;
}
.cs-hero.cs-style1.cs-type2 {
  min-height: 650px;
  height: 860px;
  padding: 30px 115px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 110px;
}
.cs-hero.cs-style1.cs-type2 .cs-hero_bg {
  position: absolute;
  height: 100%;
  top: 0;
  left: 115px;
  right: 115px;
  border-radius: 15px;
  overflow: hidden;
}
.cs-hero.cs-style1.cs-type2 .cs-hero_slider .slick-list,
.cs-hero.cs-style1.cs-type2 .cs-hero_slider .slick-track,
.cs-hero.cs-style1.cs-type2 .cs-hero_slider .slick-slide,
.cs-hero.cs-style1.cs-type2 .cs-hero_slider .slick-slide > div {
  height: 100%;
}
.cs-hero.cs-style1.cs-type2 .cs-hero_bg_slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.cs-hero.cs-style1.cs-type2 .cs-hero_bg_media {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cs-hero.cs-style1.cs-type2 .cs-hero_bg_overlay {
  position: absolute;
  inset: 0 115px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(6, 10, 20, 0.18) 0%, rgba(6, 10, 20, 0.58) 100%);
  pointer-events: none;
}
.cs-hero.cs-style1.cs-type2 .cs-hero_title {
  margin-bottom: 40px;
}
.cs-hero.cs-style1.cs-type2 .cs-hero_title::first-letter {
  color: var(--accent);
}
.cs-hero.cs-style1.cs-type2 .cs-hero_social_wrap {
  transform: rotate(180deg) translateY(50%);
}

.cs-fixed_bg {
  background-size: cover;
  background-repeat: no-repeat;
}

.cs-down_btn {
  position: absolute;
  height: 35px;
  width: 20px;
  border-radius: 10px;
  border: 2px solid #fff;
  bottom: 25%;
  left: 50%;
  margin-left: -10px;
  color: transparent;
}
.cs-down_btn:hover {
  color: transparent;
}
.cs-down_btn::before {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  animation: UpAndDown 3s infinite;
}

.cs-hero.cs-style2 {
  height: 1150px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}
.cs-hero.cs-style2 .cs-hero_tab_item h2 {
  font-size: 120px;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  z-index: 2;
}
.cs-hero.cs-style2 .cs-hero_tab_item h2 a {
  color: inherit;
}
.cs-hero.cs-style2 .cs-hero_tab_item h2::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 0%;
  left: 0;
  top: 50%;
  background-color: var(--accent);
  transition: all 0.4s ease;
}
.cs-hero.cs-style2 .cs-hero_tab_item .cs-hero_tab_img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  pointer-events: none;
  animation: inactiveImageAnimation 1s forwards ease;
}
.cs-hero.cs-style2 .cs-hero_tab_item:not(:last-child) {
  margin-bottom: 45px;
}
.cs-hero.cs-style2 .cs-hero_tab_item.active h2::before {
  width: 100%;
}
.cs-hero.cs-style2 .cs-hero_tab_item.active .cs-hero_tab_img {
  animation: activeImageAnimation 1s forwards ease;
}
.cs-hero.cs-style2 .cs-hero_social_wrap {
  transform: rotate(180deg) translateY(50%);
}

.cs-hero.cs-style3 {
  background-color: #000;
  padding: 240px 0 150px;
  position: relative;
  overflow: hidden;
}
.cs-hero.cs-style3 .cs-hero_title {
  font-size: 100px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.6em;
}
.cs-hero.cs-style3 .cs-hero_subtitle {
  font-size: 18px;
  line-height: 1.9em;
  color: #fefefe;
  max-width: 650px;
  margin-left: auto;
  margin-bottom: 95px;
}
.cs-hero.cs-style3 .cs-hero_text {
  position: relative;
  z-index: 5;
}
.cs-hero.cs-style3.cs-shape_wrap_1 .cs-shape_1:nth-child(2) {
  top: 16%;
}
.cs-hero.cs-style3.cs-shape_wrap_1 .cs-shape_1:nth-child(3) {
  top: 82%;
  left: 47%;
}
.cs-hero.cs-style3 .cs-circle_1 {
  height: 745px;
  width: 745px;
  border-radius: 50%;
  border: 3px solid rgba(153, 150, 150, 0.2);
  position: absolute;
  top: -30%;
  left: -12%;
}
.cs-hero.cs-style3 .cs-circle_2 {
  height: 626px;
  width: 626px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 74, 23, 0.8) 0%, rgba(255, 74, 23, 0) 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  animation: 9s cubic-bezier(0.4, 0, 0.2, 1) 0s infinite normal none running light-mode;
}
.cs-hero.cs-style3 .cs-hero_highlite {
  position: absolute;
  height: 300px;
  width: 300px;
  font-size: 120px;
  font-weight: 700;
  line-height: 1.2em;
  left: 68%;
  bottom: 7%;
}
.cs-hero.cs-style3 .cs-hero_highlite .cs-round_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
}
.cs-hero.cs-style3 .cs-hero_highlite .cs-round_img img {
  animation: rotate-anim 30s infinite;
}
.cs-hero.cs-style3.cs-type1 .cs-hero_subtitle {
  margin-left: 0;
}
@media (max-width: 1199px) {
  .cs-hero.cs-style3.cs-type1 .cs-hero_highlite {
    display: none;
  }
  .cs-hero.cs-style3.cs-type1 .cs-hero_subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.cs-hero.cs-style12 {
  position: relative;
  overflow: hidden;
  padding: 160px 0 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #f8fafc;
}
.cs-hero.cs-style12 .cs-hero_12_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
}
.cs-hero.cs-style12 .cs-hero_12_copy {
  position: relative;
  z-index: 2;
}
.cs-hero.cs-style12 .cs-hero_12_kicker {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.cs-hero.cs-style12 .cs-hero_12_inline_input,
.cs-hero.cs-style12 .cs-hero_12_title_input,
.cs-hero.cs-style12 .cs-hero_12_subtitle_input,
.cs-hero.cs-style12 .cs-hero_12_button_input,
.cs-hero.cs-style12 .cs-hero_12_url_input,
.cs-hero.cs-style12 .cs-hero_12_service_input {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  outline: none;
  box-shadow: none;
  font: inherit;
}
.cs-hero.cs-style12 .cs-hero_12_inline_input::-moz-placeholder, .cs-hero.cs-style12 .cs-hero_12_title_input::-moz-placeholder, .cs-hero.cs-style12 .cs-hero_12_subtitle_input::-moz-placeholder, .cs-hero.cs-style12 .cs-hero_12_button_input::-moz-placeholder, .cs-hero.cs-style12 .cs-hero_12_url_input::-moz-placeholder, .cs-hero.cs-style12 .cs-hero_12_service_input::-moz-placeholder {
  color: inherit;
  opacity: 0.55;
}
.cs-hero.cs-style12 .cs-hero_12_inline_input::placeholder,
.cs-hero.cs-style12 .cs-hero_12_title_input::placeholder,
.cs-hero.cs-style12 .cs-hero_12_subtitle_input::placeholder,
.cs-hero.cs-style12 .cs-hero_12_button_input::placeholder,
.cs-hero.cs-style12 .cs-hero_12_url_input::placeholder,
.cs-hero.cs-style12 .cs-hero_12_service_input::placeholder {
  color: inherit;
  opacity: 0.55;
}
.cs-hero.cs-style12 .cs-hero_12_inline_input {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
}
.cs-hero.cs-style12 .cs-hero_12_title_input {
  min-height: 1.2em;
  resize: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.cs-hero.cs-style12 .cs-hero_12_subtitle_input {
  min-height: 6.6em;
  resize: vertical;
  font-size: 18px;
  line-height: 1.8em;
  color: #556070;
}
.cs-hero.cs-style12 .cs-hero_intro_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  color: #fefefe;
  margin-bottom: 18px;
}
.cs-hero.cs-style12 .cs-hero_title {
  font-size: clamp(54px, 4.4vw, 82px);
  line-height: 1.02;
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 10ch;
}
.cs-hero.cs-style12 .cs-hero_subtitle {
  max-width: 34rem;
  font-size: 18px;
  line-height: 1.8em;
  color: #556070;
}
.cs-hero.cs-style12 .cs-hero_12_switcher {
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  margin: 24px 0 18px;
  gap: 6px;
}
.cs-hero.cs-style12 .cs-hero_12_switch {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  transition: 0.25s ease;
}
.cs-hero.cs-style12 .cs-hero_12_switch.is-active {
  background: #111827;
  color: #fff;
}
.cs-hero.cs-style12 .cs-hero_12_actions {
  margin-bottom: 22px;
}
.cs-hero.cs-style12 .cs-hero_12_button_input,
.cs-hero.cs-style12 .cs-hero_12_url_input {
  display: block;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #334155;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.cs-hero.cs-style12 .cs-hero_12_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cs-hero.cs-style12 .cs-hero_12_badge {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-size: 14px;
  font-weight: 600;
}
.cs-hero.cs-style12 .cs-hero_12_device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2200px;
  min-height: 780px;
}
.cs-hero.cs-style12 .cs-hero_12_device_shadow {
  position: absolute;
  inset: auto 12% 8% 12%;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.28) 0%, rgba(15, 23, 42, 0) 74%);
  filter: blur(16px);
}
.cs-hero.cs-style12 .cs-hero_12_phone {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 0.52;
  border-radius: 56px;
  background: linear-gradient(160deg, #3b2d25 0%, #a87659 18%, #1f1511 34%, #c18a67 55%, #1f1411 100%);
  box-shadow: 0 42px 110px rgba(15, 23, 42, 0.22);
  transform-style: preserve-3d;
  animation: csDeviceFloat 14s ease-in-out infinite;
}
.cs-hero.cs-style12 .cs-hero_12_phone::before,
.cs-hero.cs-style12 .cs-hero_12_phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 56px;
  pointer-events: none;
}
.cs-hero.cs-style12 .cs-hero_12_phone::before {
  inset: 14px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.cs-hero.cs-style12 .cs-hero_12_phone::after {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 30%);
}
.cs-hero.cs-style12 .cs-hero_12_phone_frame {
  position: absolute;
  inset: 10px;
  border-radius: 46px;
  background: rgba(17, 24, 39, 0.86);
}
.cs-hero.cs-style12 .cs-hero_12_phone_notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 122px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #111827;
  z-index: 3;
}
.cs-hero.cs-style12 .cs-hero_12_phone_notch span {
  position: absolute;
  top: 10px;
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}
.cs-hero.cs-style12 .cs-hero_12_phone_notch span:first-child {
  left: 18px;
}
.cs-hero.cs-style12 .cs-hero_12_phone_notch span:last-child {
  right: 18px;
}
.cs-hero.cs-style12 .cs-hero_12_phone_screen {
  position: absolute;
  inset: 22px;
  border-radius: 38px;
  overflow: hidden;
  background: #0f172a;
}
.cs-hero.cs-style12 .cs-hero_12_phone_screen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cs-hero.cs-style12 .cs-hero_12_phone_dropzone {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.cs-hero.cs-style12 .cs-hero_12_phone_dropzone.is-dragging::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255, 255, 255, 0.8);
  border-radius: 38px;
  background: rgba(15, 23, 42, 0.18);
  z-index: 3;
}
.cs-hero.cs-style12 .cs-hero_12_file_input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
}
.cs-hero.cs-style12 .cs-hero_12_phone_copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 14px;
  border-radius: 18px;
  background: rgba(3, 7, 18, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #fff;
}
.cs-hero.cs-style12 .cs-hero_12_phone_kicker {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  opacity: 0.82;
}
.cs-hero.cs-style12 .cs-hero_12_phone_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.cs-hero.cs-style12 .cs-hero_12_phone_note {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.82;
}
.cs-hero.cs-style12 .cs-hero_12_screen_glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.cs-hero.cs-style12 .cs-hero_12_services {
  position: relative;
  z-index: 2;
}
.cs-hero.cs-style12 .cs-hero_12_services_head {
  margin-bottom: 18px;
}
.cs-hero.cs-style12 .cs-hero_12_services_title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fefefe;
  margin-bottom: 6px;
}
.cs-hero.cs-style12 .cs-hero_12_services_subtitle {
  font-size: 16px;
  color: #64748b;
}
.cs-hero.cs-style12 .cs-hero_12_service_list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
.cs-hero.cs-style12 .cs-hero_12_service_item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}
.cs-hero.cs-style12 .cs-hero_12_service_index {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 2.4rem;
}
.cs-hero.cs-style12 .cs-hero_12_service_text {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.cs-hero.cs-style12 .cs-hero_12_service_input {
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.cs-hero.cs-style12 .cs-hero_12_stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.cs-hero.cs-style12 .cs-hero_12_stat {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}
.cs-hero.cs-style12 .cs-hero_12_stat strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.cs-hero.cs-style12 .cs-hero_12_stat span {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}
.cs-hero.cs-style12 .cs-hero_12_palette_editor {
  margin-top: 22px;
}
.cs-hero.cs-style12 .cs-hero_12_palette_title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #374151;
  margin-bottom: 12px;
}
.cs-hero.cs-style12 .cs-hero_12_palette_grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.cs-hero.cs-style12 .cs-hero_12_preset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cs-hero.cs-style12 .cs-hero_12_preset.is-active {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.14), 0 14px 28px rgba(15, 23, 42, 0.12);
}

.cs-hero.cs-style4,
.cs-hero.cs-style5 {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 115px;
  position: relative;
  overflow: hidden;
}

.cs-hero.cs-style4 .cs-hero_text {
  position: relative;
  z-index: 4;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: all 0.7s ease;
}
.cs-hero.cs-style4 .cs-hero_title {
  margin: 0;
  font-weight: 700;
  font-size: 100px;
  position: relative;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 0.07em;
  text-underline-position: under;
  line-height: 1.4em;
  text-underline-offset: -0.11em;
}
.cs-hero.cs-style4 .cs-hero_link {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 5;
}

.cs-hero.cs-style5 .cs-hero_title {
  margin: 0 0 60px 0;
  font-weight: 700;
  font-size: 100px;
  position: relative;
}
.cs-hero.cs-style5 .cs-hero_text {
  position: relative;
  z-index: 2;
  padding-top: 25px;
  padding-left: 180px;
  top: 100px;
  opacity: 0;
  transition: all 0.8s ease;
}

.swiper-slide-active .cs-hero.cs-style4 .cs-hero_text {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
  transition-delay: 0.7s;
}
.swiper-slide-active .cs-hero.cs-style5 .cs-hero_text {
  top: 0;
  opacity: 1;
  transition-delay: 0.45s;
}

.cs-swiper_button_prev,
.cs-swiper_button_next {
  position: absolute;
  z-index: 11;
  font-weight: 600;
  color: #fff;
  bottom: 48px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cs-swiper_button_prev:hover,
.cs-swiper_button_next:hover {
  color: var(--accent);
}

.cs-swiper_button_prev {
  left: 115px;
}
.cs-swiper_button_prev svg {
  margin-right: 13px;
}

.cs-swiper_button_next {
  right: 115px;
}
.cs-swiper_button_next svg {
  margin-left: 13px;
}

@keyframes UpAndDown {
  0%, 100% {
    top: 30%;
  }
  50% {
    top: 70%;
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.8);
  }
}
@keyframes inactiveImageAnimation {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
}
@keyframes activeImageAnimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.swiper-horizontal .swiper-wrapper {
  display: flex;
}
.swiper-horizontal .swiper-slide {
  flex: none;
}

@media screen and (max-width: 1920px) {
  .cs-hero.cs-style2 {
    height: 1080px;
  }
}
@media screen and (max-width: 1540px) {
  .cs-hero.cs-style1 {
    padding-top: 220px;
    min-height: 960px;
  }
  .cs-hero.cs-style2 {
    height: 864px;
  }
  .cs-hero.cs-style2 .cs-hero_tab_item h2 {
    font-size: 100px;
  }
  .cs-hero.cs-style2 .cs-hero_tab_item:not(:last-child) {
    margin-bottom: 15px;
  }
  .cs-hero.cs-style3 .cs-hero_title {
    font-size: 90px;
    line-height: 1.4em;
  }
  .cs-hero.cs-style1.cs-type2 {
    height: 680px;
  }
  .cs-hero.cs-style1.cs-type2 .cs-hero_title {
    font-size: 100px;
  }
}
@media screen and (max-width: 1400px) {
  .cs-hero.cs-style2 {
    height: 900px;
  }
  .cs-hero.cs-style1 {
    padding-top: 200px;
    min-height: 880px;
  }
  .cs-hero.cs-style1 .cs-hero_title {
    font-size: 100px;
  }
  .cs-hero.cs-style3 .cs-hero_title {
    font-size: 80px;
    line-height: 1.3em;
    margin-bottom: 40px;
  }
  .cs-hero.cs-style2 {
    height: 768px;
  }
  .cs-hero.cs-style2 .cs-hero_tab_item h2 {
    font-size: 80px;
  }
  .cs-hero.cs-style2 .cs-hero_tab_item:not(:last-child) {
    margin-bottom: 15px;
  }
  .cs-hero.cs-style1.cs-type2 .cs-hero_title {
    font-size: 80px;
  }
  .cs-hero.cs-style1.cs-type2 {
    height: 600px;
    min-height: 500px;
  }
  .cs-hero.cs-style1.cs-type2 .cs-hero_title {
    font-size: 70px;
  }
  .cs-hero.cs-style4 .cs-hero_title,
  .cs-hero.cs-style5 .cs-hero_title {
    font-size: 80px;
  }
}
@media screen and (max-width: 1280px) {
  .cs-hero.cs-style2 {
    height: 800px;
  }
}
@media screen and (max-width: 1199px) {
  .cs-hero.cs-style1 {
    min-height: 850px;
  }
  .cs-hero.cs-style1 .cs-hero_title {
    font-size: 80px;
  }
  .cs-hero.cs-style1 .cs-hero_subtitle {
    font-size: 16px;
  }
  .cs-hero.cs-style3 .cs-hero_title {
    font-size: 60px;
  }
  .cs-hero.cs-style3 .cs-hero_subtitle {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .cs-hero.cs-style1 .cs-hero_social_wrap,
  .cs-hero.cs-style2 .cs-hero_social_wrap,
  .cs-hero.cs-style3 .cs-hero_social_wrap,
  .cs-hero_6_wrap .cs-hero_social_wrap,
  .cs-hero_7_wrap .cs-hero_social_wrap {
    display: none;
  }
  .cs-hero.cs-style2 {
    height: 850px;
  }
  .cs-hero.cs-style2 .cs-hero_tab_item h2 {
    font-size: 80px;
  }
  .cs-hero.cs-style2 .cs-hero_tab_item:not(:last-child) {
    margin-bottom: 15px;
  }
  .cs-hero.cs-style3 .cs-hero_title {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .cs-hero.cs-style3 .text-end,
  .cs-hero.cs-style3 .cs-hero_text {
    text-align: center !important;
  }
  .cs-hero.cs-style3 .cs-hero_subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .cs-hero.cs-style1.cs-type2 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cs-hero.cs-style1.cs-type2 .cs-hero_bg {
    left: 12px;
    right: 12px;
  }
  .cs-hero.cs-style1.cs-type2 .cs-hero_bg_overlay {
    left: 12px;
    right: 12px;
  }
  .cs-hero.cs-style4 {
    padding: 80px 15px;
  }
  .cs-hero.cs-style4 .cs-hero_title {
    font-size: 60px;
  }
  .cs-hero.cs-style4 .cs-hero_title span::before {
    height: 5px;
    bottom: 5px;
  }
  .cs-hero.cs-style5 {
    padding: 80px 15px 80px 150px;
  }
  .cs-hero.cs-style5 .cs-hero_title {
    font-size: 60px;
    margin: 0 0 45px 0;
  }
  .cs-hero.cs-style5 .cs-btn.cs-style1.cs-type1 {
    padding: 10px 26px;
  }
  .cs-swiper_button_prev,
  .cs-swiper_button_next {
    bottom: 25px;
  }
  .cs-hero.cs-style1.cs-type2 {
    margin-top: 80px;
  }
  .cs-swiper_button_prev {
    left: 15px;
  }
  .cs-swiper_button_next {
    right: 15px;
  }
  .cs-hero.cs-style5 .cs-hero_text {
    padding-top: 0px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 991px) {
  .cs-hero.cs-style1 {
    padding-top: 60px;
    padding-bottom: 260px;
    display: flex;
    align-items: center;
    min-height: 680px;
  }
  .cs-hero.cs-style1 .cs-hero_info {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .cs-hero.cs-style1 .cs-hero_title {
    font-size: 56px;
    margin-bottom: 20px;
  }
  .cs-hero.cs-style1 .cs-hero_subtitle {
    margin-bottom: 24px;
    max-width: 500px;
  }
  .cs-hero.cs-style1 .cs-hero_info > div {
    width: 100%;
  }
  .cs-hero.cs-style1 .cs-down_btn {
    bottom: 220px;
  }
  .cs-hero.cs-style1.cs-type1 .cs-hero_subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .cs-hero.cs-style2 {
    height: 700px;
  }
  .cs-hero.cs-style2 .cs-hero_tab_item h2 {
    font-size: 56px;
  }
  .cs-hero.cs-style2 .cs-hero_tab_item:not(:last-child) {
    margin-bottom: 15px;
  }
  .cs-hero.cs-style3 {
    padding: 160px 0 120px;
  }
  .cs-hero.cs-style1.cs-type2 .cs-hero_title {
    font-size: 50px;
  }
  .cs-hero.cs-style5 {
    padding: 80px 15px 80px 100px;
  }
}
@media screen and (max-width: 575px) {
  .cs-hero.cs-style1 .cs-hero_title {
    font-size: 42px;
  }
  .cs-hero.cs-style1 .cs-hero_title br {
    display: none;
  }
  .cs-hero.cs-style2 {
    height: initial;
    min-height: 100vh;
    padding: 150px 0 90px;
  }
  .cs-hero.cs-style2 .cs-hero_tab_item h2 {
    font-size: 42px;
  }
  .cs-hero.cs-style2 .cs-hero_tab_item .cs-hero_tab_img {
    width: 100%;
    opacity: 0.8;
  }
  .cs-hero.cs-style3 .cs-hero_title {
    font-size: 38px;
    margin-bottom: 25px;
  }
  .cs-hero.cs-style3 .cs-hero_subtitle {
    margin-bottom: 35px;
  }
  .cs-hero.cs-style1.cs-type2 .cs-hero_title {
    font-size: 40px;
  }
  .cs-hero.cs-style1.cs-type2 {
    height: 500px;
    padding-bottom: 40px;
  }
  .cs-hero.cs-style4 {
    padding: 80px 15px;
  }
  .cs-hero.cs-style4 .cs-hero_title {
    font-size: 38px;
  }
  .cs-hero.cs-style4 .cs-hero_title span::before {
    height: 3px;
    bottom: 4px;
  }
  .cs-hero.cs-style5 {
    padding: 80px 15px;
  }
  .cs-hero.cs-style5 .cs-hero_title {
    font-size: 40px;
    margin: 0 0 35px 0;
  }
  .cs-hero.cs-style5 .cs-btn.cs-style1.cs-type1 {
    padding: 9px 26px;
  }
  .cs-swiper_button_prev {
    left: 15px;
  }
  .cs-swiper_button_next {
    right: 15px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1490px) {
  .cs-hero.cs-style1:not(.cs-type2) .cs-hero_social_wrap.cs-left_side,
  .cs-hero.cs-style2 .cs-hero_social_wrap.cs-left_side,
  .cs-hero.cs-style3 .cs-hero_social_wrap.cs-left_side {
    left: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .cs-hero.cs-style1:not(.cs-type2) .cs-hero_social_wrap.cs-left_side,
  .cs-hero.cs-style2 .cs-hero_social_wrap.cs-left_side,
  .cs-hero.cs-style3 .cs-hero_social_wrap.cs-left_side {
    left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1150px) {
  .cs-hero.cs-style1 {
    height: initial;
    min-height: initial;
    padding-top: 200px;
    padding-bottom: 350px;
  }
  .cs-hero.cs-style1 .cs-down_btn {
    bottom: 220px;
  }
}
.cs-hero.cs-style6 {
  padding: 150px 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  max-height: 1024px;
}
@media (max-width: 991px) {
  .cs-hero.cs-style6 {
    min-height: initial;
    max-height: initial;
    padding: 140px 0 100px;
  }
}
.cs-hero.cs-style6 .cs-hero_title {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.33em;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  margin-bottom: 36px;
}
@media (max-width: 1400px) {
  .cs-hero.cs-style6 .cs-hero_title {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .cs-hero.cs-style6 .cs-hero_title {
    font-size: 62px;
  }
}
@media (max-width: 991px) {
  .cs-hero.cs-style6 .cs-hero_title {
    font-size: 56px;
    margin-bottom: 15px;
  }
}
@media (max-width: 420px) {
  .cs-hero.cs-style6 .cs-hero_title {
    font-size: 46px;
  }
}
@media (max-width: 350px) {
  .cs-hero.cs-style6 .cs-hero_title {
    font-size: 42px;
  }
}
.cs-hero.cs-style6 .cs-hero_subtitle {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.96em;
  margin-bottom: 62px;
}
@media (max-width: 1400px) {
  .cs-hero.cs-style6 .cs-hero_subtitle {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .cs-hero.cs-style6 .cs-hero_subtitle br {
    display: none;
  }
}
@media (max-width: 991px) {
  .cs-hero.cs-style6 .cs-hero_subtitle {
    margin-bottom: 28px;
  }
}
.cs-hero.cs-style6 .cs-hero_img {
  position: relative;
}
@media (max-width: 1040px) {
  .cs-hero.cs-style6 .cs-hero_img {
    padding-right: 60px;
    max-width: 595px;
  }
}
@media (max-width: 450px) {
  .cs-hero.cs-style6 .cs-hero_img {
    padding-right: 30px;
  }
}
.cs-hero.cs-style6 .cs-hero_img .cs-hero_video_btn {
  position: absolute;
  height: 173px;
  width: 173px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff4a17 0%, rgba(255, 74, 23, 0.5) 100%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  top: 35px;
  right: -70px;
  cursor: pointer;
}
@media (max-width: 1460px) {
  .cs-hero.cs-style6 .cs-hero_img .cs-hero_video_btn {
    transform: scale(0.7);
  }
}
@media (max-width: 1040px) {
  .cs-hero.cs-style6 .cs-hero_img .cs-hero_video_btn {
    right: -27px;
    top: 5%;
  }
}
@media (max-width: 450px) {
  .cs-hero.cs-style6 .cs-hero_img .cs-hero_video_btn {
    transform: scale(0.5);
    right: -43px;
    top: 0%;
  }
}
.cs-hero.cs-style6 .cs-hero_img .cs-hero_video_btn img {
  animation: rotate-anim 30s infinite;
}
.cs-hero.cs-style6 .cs-hero_img .cs-hero_video_btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.cs-hero.cs-style6 .cs-hero_img .cs-hero_video_btn:hover svg {
  transform: translate(-50%, -50%) scale(1.2);
}

.cs-hero.cs-style7 {
  padding: 200px 0 142px;
  height: 100vh;
  height: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(267deg, #161616 0%, #080808 100%);
  gap: 60px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .cs-hero.cs-style7 {
    height: 1050px;
  }
}
@media (max-width: 991px) {
  .cs-hero.cs-style7 {
    padding: 160px 0 110px;
    gap: 20px;
    height: 890px;
  }
}
@media (max-width: 575px) {
  .cs-hero.cs-style7 {
    justify-content: center;
    height: 100vh;
    min-height: 680px;
  }
}
.cs-hero.cs-style7 .container {
  position: relative;
  z-index: 2;
}
.cs-hero.cs-style7 .cs-hero_title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1.3em;
  text-align: center;
  margin: 0;
}
@media (max-width: 1400px) {
  .cs-hero.cs-style7 .cs-hero_title {
    font-size: 85px;
  }
}
@media (max-width: 1199px) {
  .cs-hero.cs-style7 .cs-hero_title {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .cs-hero.cs-style7 .cs-hero_title {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .cs-hero.cs-style7 .cs-hero_title {
    font-size: 42px;
  }
}
@media (max-width: 400px) {
  .cs-hero.cs-style7 .cs-hero_title {
    font-size: 36px;
  }
}
.cs-hero.cs-style7 .cs-hero_subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.94em;
  max-width: 430px;
  margin: 0;
}
@media (max-width: 991px) {
  .cs-hero.cs-style7 .cs-hero_subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 520px;
  }
}
.cs-hero.cs-style7 .cs-hero_text_in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .cs-hero.cs-style7 .cs-hero_text_in {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.cs-hero.cs-style7 .cs-hero_img_1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 460px;
}
@media (max-width: 1600px) {
  .cs-hero.cs-style7 .cs-hero_img_1 {
    max-width: 480px;
  }
}
@media (max-width: 1400px) {
  .cs-hero.cs-style7 .cs-hero_img_1 {
    top: 430px;
  }
}
@media (max-width: 1199px) {
  .cs-hero.cs-style7 .cs-hero_img_1 {
    max-width: 420px;
  }
}
@media (max-width: 991px) {
  .cs-hero.cs-style7 .cs-hero_img_1 {
    top: 320px;
    max-width: 350px;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .cs-hero.cs-style7 .cs-hero_img_1 {
    display: none;
  }
}
.cs-hero.cs-style7 .cs-hero_img_2 {
  position: absolute;
  top: 44%;
  left: 16%;
}
@media (max-width: 991px) {
  .cs-hero.cs-style7 .cs-hero_img_2 {
    left: 10%;
  }
}
@media (max-width: 575px) {
  .cs-hero.cs-style7 .cs-hero_img_2 {
    top: 80%;
    left: 40%;
  }
}
.cs-hero.cs-style7 .cs-hero_img_2 img {
  animation: UpAndDown 15s infinite;
}
.cs-hero.cs-style7 .cs-hero_img_3 {
  position: absolute;
  right: 15%;
  top: 32%;
}
@media (max-width: 991px) {
  .cs-hero.cs-style7 .cs-hero_img_3 {
    right: 10%;
  }
}
@media (max-width: 575px) {
  .cs-hero.cs-style7 .cs-hero_img_3 {
    right: initial;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cs-hero.cs-style7 .cs-hero_img_3 img {
  animation: semi-rotate-anim 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs-hero.cs-style8 {
  background: linear-gradient(267deg, #161616 0%, #080808 100%);
  max-height: 1000px;
  display: flex;
  align-items: center;
  padding: 170px 0 100px;
  height: 100vh;
  position: relative;
}
@media (max-width: 991px) {
  .cs-hero.cs-style8 {
    flex-direction: column-reverse;
    padding-top: 0;
    padding-bottom: 80px;
    height: initial;
    max-height: initial;
  }
}
.cs-hero.cs-style8 .cs-hero_intro_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.94em;
  margin-bottom: 4px;
}
.cs-hero.cs-style8 .cs-hero_title {
  font-size: 70px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cs-hero.cs-style8 .cs-hero_title {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .cs-hero.cs-style8 .cs-hero_title {
    font-size: 46px;
  }
}
.cs-hero.cs-style8 .cs-hero_subtitle {
  line-height: 1.75em;
  margin-bottom: 40px;
}
.cs-hero.cs-style8 .cs-hero_text {
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.cs-hero.cs-style8 .cs-social_btns.cs-style1 {
  margin-bottom: 40px;
}
.cs-hero.cs-style8 .cs-hero_img_box {
  position: absolute;
  height: 100%;
  right: 12%;
  top: 0;
  padding-top: 170px;
  padding-bottom: 100px;
  max-width: 700px;
}
.cs-hero.cs-style8 .cs-hero_img_box::before {
  content: "";
  position: absolute;
  width: 207.256px;
  height: 207.256px;
  background-color: #8cacff;
  filter: blur(175px);
  left: 25%;
  top: 25%;
}
.cs-hero.cs-style8 .cs-hero_img_box img {
  position: relative;
}
@media (max-width: 1400px) {
  .cs-hero.cs-style8 .cs-hero_img_box {
    right: 115px;
    top: 0;
    max-width: 800px;
  }
}
@media (max-width: 991px) {
  .cs-hero.cs-style8 .cs-hero_img_box {
    position: relative;
    right: 0;
    height: initial;
    padding-bottom: 0;
    padding-top: 130px;
  }
}
.cs-hero.cs-style8 .cs-hero_img_box img {
  max-height: 100%;
}
.cs-hero.cs-style8 .cs-hero_card {
  display: flex;
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(21.5px);
          backdrop-filter: blur(21.5px);
  padding: 16px 24px;
  max-width: 265px;
  gap: 13px;
  position: absolute;
  box-shadow: -1px 0px 1px 0px #fff;
}
.cs-hero.cs-style8 .cs-hero_card.cs-position_1 {
  top: 70%;
  left: -10%;
}
@media (max-width: 991px) {
  .cs-hero.cs-style8 .cs-hero_card.cs-position_1 {
    left: 0;
  }
}
@media (max-width: 575px) {
  .cs-hero.cs-style8 .cs-hero_card.cs-position_1 {
    display: none;
  }
}
.cs-hero.cs-style8 .cs-hero_card.cs-position_2 {
  top: 40%;
  right: -100px;
}
@media (max-width: 991px) {
  .cs-hero.cs-style8 .cs-hero_card.cs-position_2 {
    right: 0;
  }
}
@media (max-width: 575px) {
  .cs-hero.cs-style8 .cs-hero_card.cs-position_2 {
    display: none;
  }
}
.cs-hero.cs-style8 .cs-hero_card h3 {
  font-size: 38px;
  font-weight: 600;
}
.cs-hero.cs-style8 .cs-hero_card p {
  color: #e4e4e4;
  font-weight: 600;
}
.cs-hero.cs-style8.cs-shape_wrap_1 .cs-shape_1:nth-child(1) {
  left: 50%;
}

.cs-iconbox.cs-style1 {
  max-width: 350px;
  margin: auto;
}
.cs-iconbox.cs-style1 .cs-iconbox_icon {
  margin-bottom: 25px;
}
.cs-iconbox.cs-style1 .cs-iconbox_title {
  font-size: 30px;
  margin-bottom: 20px;
}
.cs-iconbox.cs-style1 .cs-iconbox_subtitle {
  line-height: 1.75em;
}
@media (max-width: 991px) {
  .cs-iconbox.cs-style1 {
    max-width: 100%;
  }
  .cs-iconbox.cs-style1 .cs-iconbox_title {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

.cs-iconbox.cs-style2 {
  max-width: 350px;
  margin: auto;
}
.cs-iconbox.cs-style2 .cs-iconbox_icon {
  margin-bottom: 25px;
}
.cs-iconbox.cs-style2 .cs-iconbox_title {
  font-size: 30px;
  margin-bottom: 20px;
}
.cs-iconbox.cs-style2 .cs-iconbox_subtitle {
  line-height: 1.75em;
}
@media (max-width: 991px) {
  .cs-iconbox.cs-style2 {
    max-width: 100%;
  }
  .cs-iconbox.cs-style2 .cs-iconbox_title {
    font-size: 26px;
    margin-bottom: 10px;
    margin-bottom: 20px;
  }
}

.cs-iconbox_4_wrap {
  display: grid;
  grid-gap: 65px 135px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1400px) {
  .cs-iconbox_4_wrap {
    grid-gap: 50px 100px;
  }
}
@media (max-width: 1199px) {
  .cs-iconbox_4_wrap {
    grid-gap: 40px;
  }
}
@media (max-width: 575px) {
  .cs-iconbox_4_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs-iconbox.cs-style4 .cs-iconbox_icon {
  margin-bottom: 22px;
}
.cs-iconbox.cs-style4 .cs-iconbox_title {
  font-size: 30px;
  line-height: 1.37em;
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .cs-iconbox.cs-style4 .cs-iconbox_title {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.cs-iconbox.cs-style4 .cs-iconbox_subtitle {
  line-height: 1.75em;
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .cs-iconbox.cs-style4 .cs-iconbox_subtitle {
    margin-bottom: 22px;
  }
}
.cs-iconbox.cs-style4 .cs_iconbox_btn {
  display: inline-flex;
  align-items: center;
  color: #fff;
}
.cs-iconbox.cs-style4 .cs_iconbox_btn svg {
  transition: inherit;
}
.cs-iconbox.cs-style4 .cs_iconbox_btn span {
  margin-right: 0px;
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.cs-iconbox.cs-style4 .cs_iconbox_btn:hover {
  color: var(--accent);
}
.cs-iconbox.cs-style4 .cs_iconbox_btn:hover span {
  margin-right: 10px;
  max-width: 100px;
}

.cs-card.cs-style1 {
  position: relative;
  border-radius: 15px;
  display: block;
}
.cs-card.cs-style1:hover {
  filter: drop-shadow(0px 0px 30px rgba(255, 74, 23, 0.5));
}
.cs-card.cs-style1 img {
  width: 100%;
  border-radius: inherit;
}
.cs-card.cs-style1 .cs-card_overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #000000;
  opacity: 0.5;
}
.cs-card.cs-style1 .cs-card_info {
  position: absolute;
  padding: 45px 25px 0;
  top: 0;
  left: 0;
}
.cs-card.cs-style1 .cs-card_info span {
  display: block;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.cs-card.cs-style1 .cs-card_title {
  font-size: 22px;
  margin: 0;
  line-height: 1.5em;
}

@media screen and (max-width: 1400px) {
  .cs-card.cs-style1 .cs-card_title {
    font-size: 20px;
  }
  .cs-card.cs-style1 .cs-card_info {
    padding: 40px 18px 0;
  }
}
@media screen and (max-width: 1199px) {
  .cs-card.cs-style1 .cs-card_title {
    font-size: 24px;
  }
  .cs-card.cs-style1 .cs-card_info {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
}
.cs-cta.cs-style1 {
  padding: 90px 30px;
  border-radius: 15px;
}
.cs-cta.cs-style1 .cs-cta_in {
  position: relative;
  z-index: 2;
}
.cs-cta.cs-style1 .cs-cta_title {
  font-weight: 600;
  font-size: 50px;
}
.cs-cta.cs-style1.cs-type_1 {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cs-cta.cs-style1.cs-type_1 {
    padding: 140px 30px 145px;
  }
}

.cs-cta.cs_style_2 {
  height: 700px;
  text-align: center;
  display: flex;
  align-items: center;
  color: #fff;
}
@media (max-width: 991px) {
  .cs-cta.cs_style_2 {
    height: 420px;
  }
}
.cs-cta.cs_style_2 .cs-cta_btn {
  margin: 0;
  font-size: 50px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.3em;
  display: inline-block;
}
.cs-cta.cs_style_2 .cs-cta_btn svg {
  margin-left: 18px;
}
@media (max-width: 991px) {
  .cs-cta.cs_style_2 .cs-cta_btn {
    font-size: 36px;
  }
  .cs-cta.cs_style_2 .cs-cta_btn svg {
    width: 22px;
    height: 22px;
  }
}
.cs-cta.cs_style_2 .cs-cta_btn span {
  display: inline-block;
  position: relative;
}
.cs-cta.cs_style_2 .cs-cta_btn span::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: currentColor;
}

@media screen and (max-width: 1300px) {
  .cs-cta.cs-style1 .cs-cta_title {
    font-size: 42px;
  }
}
@media screen and (max-width: 991px) {
  .cs-cta.cs-style1 {
    padding: 70px 30px;
    border-radius: 15px;
  }
  .cs-cta.cs-style1 .cs-cta_title {
    font-size: 36px;
  }
  .cs-cta.cs-style1 .cs-cta_title br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .cs-cta.cs-style1 br {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .cs-cta.cs-style1 {
    padding: 70px 20px;
  }
  .cs-cta.cs-style1 .cs-cta_title {
    font-size: 28px;
  }
}
.cs-banner.cs-style2.cs-device_showcase_section {
  --device-primary: #ff4f36;
  --device-secondary: #ef1d68;
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 26px), linear-gradient(180deg, #080b13 0%, #0b0f1e 48%, #04060d 100%);
  color: #f8fafc;
}

.cs-device_showcase_grid {
  display: grid;
  grid-template-columns: minmax(290px, 1fr) minmax(300px, 430px) minmax(230px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.cs-device_showcase_copy,
.cs-device_showcase_palette {
  position: relative;
  z-index: 2;
}

.cs-device_showcase_kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--device-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cs-device_showcase_title {
  max-width: 620px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.cs-device_showcase_subtitle {
  max-width: 560px;
  margin: 0 0 24px;
  color: #a8b3c7;
  font-size: 17px;
  line-height: 1.75;
}

.cs-device_showcase_services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
}

.cs-device_service_btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(11, 17, 32, 0.74);
  color: #f8fafc;
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.cs-device_service_btn:hover,
.cs-device_service_btn.is-active {
  transform: translateY(-2px);
  background: rgba(16, 24, 44, 0.96);
}

.cs-device_service_btn.is-active {
  box-shadow: inset 0 0 0 1px var(--service-color);
}

.cs-device_service_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--device-primary), var(--device-secondary));
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.cs-device_service_text {
  min-width: 0;
}

.cs-device_service_text strong,
.cs-device_service_text small {
  display: block;
  letter-spacing: 0;
}

.cs-device_service_text strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
}

.cs-device_service_text small {
  color: #9ca8bd;
  font-size: 12px;
  line-height: 1.35;
}

.cs-device_showcase_actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.cs-device_showcase_actions .cs-btn {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--device-primary), var(--device-secondary));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.cs-device_showcase_active_label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #a8b3c7;
  font-size: 13px;
  font-weight: 600;
}

.cs-device_showcase_phone_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 720px;
  perspective: 1800px;
}

.cs-device_showcase_phone_shadow {
  position: absolute;
  right: 9%;
  bottom: 7%;
  left: 9%;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 50%, transparent 100%);
  filter: blur(18px);
}

.cs-device_showcase_phone {
  position: relative;
  width: min(100%, 342px);
  aspect-ratio: 0.49;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 54px;
  background: linear-gradient(90deg, #3a2721 0%, #93614d 11%, #2d211f 16%, #05070c 18%, #101827 100%);
  box-shadow: 38px 44px 80px rgba(0, 0, 0, 0.46), inset 16px 0 18px rgba(255, 255, 255, 0.08), inset -14px 0 20px rgba(0, 0, 0, 0.48);
  transform-style: preserve-3d;
  animation: csDeviceRotate 13s ease-in-out infinite;
}

.cs-device_showcase_phone::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 46px;
  background: #070a11;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cs-device_showcase_phone_side {
  position: absolute;
  top: 9%;
  right: -13px;
  width: 18px;
  height: 80%;
  border-radius: 0 20px 20px 0;
  background: linear-gradient(180deg, #8f5f4e 0%, #5f4038 100%);
  transform: translateZ(-22px);
}

.cs-device_showcase_phone_button {
  position: absolute;
  right: -17px;
  width: 5px;
  border-radius: 999px;
  background: #27313b;
  z-index: 3;
}

.cs-device_showcase_phone_button_1 {
  top: 27%;
  height: 78px;
}

.cs-device_showcase_phone_button_2 {
  top: 44%;
  height: 126px;
}

.cs-device_showcase_phone_notch {
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 8;
  width: 126px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #06080d;
}

.cs-device_showcase_phone_notch span {
  position: absolute;
  top: 9px;
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.cs-device_showcase_phone_notch span:first-child {
  left: 19px;
}

.cs-device_showcase_phone_notch span:last-child {
  right: 19px;
  width: 8px;
  height: 8px;
  top: 8px;
}

.cs-device_showcase_phone_screen {
  position: absolute;
  inset: 20px;
  z-index: 2;
  overflow: hidden;
  border-radius: 38px;
  background: #0c1220;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cs-device_showcase_phone_reflection {
  position: absolute;
  top: 11%;
  right: 28px;
  z-index: 6;
  width: 22px;
  height: 74%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  filter: blur(2px);
  opacity: 0.26;
  pointer-events: none;
}

.cs-device_mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 16px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)), #101827;
  color: #ffffff;
}

.cs-device_status_bar,
.cs-device_app_header,
.cs-device_screen_action_row,
.cs-device_screen_card,
.cs-device_bottom_nav {
  position: relative;
  z-index: 2;
}

.cs-device_status_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.cs-device_status_icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cs-device_status_icons i {
  display: block;
  width: 10px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.64);
}

.cs-device_status_icons i:last-child {
  width: 15px;
}

.cs-device_app_header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-bottom: 14px;
}

.cs-device_app_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.3);
}

.cs-device_app_name {
  min-width: 0;
  flex: 1;
}

.cs-device_app_name strong,
.cs-device_app_name small {
  display: block;
  letter-spacing: 0;
}

.cs-device_app_name strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
}

.cs-device_app_name small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.3;
}

.cs-device_live_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.cs-device_screen_hero {
  position: relative;
  z-index: 1;
  min-height: 192px;
  padding: 18px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.24);
}

.cs-device_screen_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 32px), linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 32px);
  opacity: 0.18;
}

.cs-device_screen_hero > * {
  position: relative;
  z-index: 1;
}

.cs-device_screen_eyebrow {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cs-device_screen_hero h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.cs-device_screen_hero p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.45;
}

.cs-device_screen_metric {
  display: inline-grid;
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(4, 6, 13, 0.28);
}

.cs-device_screen_metric strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.cs-device_screen_metric span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.2;
}

.cs-device_screen_action_row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0;
}

.cs-device_screen_action_row button {
  flex: 1;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: #0c1220;
  font-size: 13px;
  font-weight: 800;
}

.cs-device_screen_action_row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 68px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.cs-device_screen_cards {
  display: grid;
  gap: 9px;
  min-height: 170px;
}

.cs-device_screen_card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-device_screen_card_visual {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)), linear-gradient(135deg, var(--device-primary), var(--device-secondary));
}

.cs-device_screen_card_body {
  min-width: 0;
}

.cs-device_screen_card_body strong,
.cs-device_screen_card_body small {
  display: block;
}

.cs-device_screen_card_body strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cs-device_screen_card_body small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1.25;
}

.cs-device_screen_card em {
  color: #ffffff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.cs-device_bottom_nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}

.cs-device_bottom_nav span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 700;
}

.cs-device_real_screen {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.cs-device_real_headline {
  display: grid;
  gap: 3px;
  margin-bottom: 12px;
}

.cs-device_real_headline small {
  color: var(--device-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cs-device_real_headline strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.cs-device_real_search,
.cs-device_real_browser_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 11px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 700;
}

.cs-device_real_search strong,
.cs-device_real_browser_bar strong {
  color: #ffffff;
  font-size: 10px;
}

.cs-device_real_feature_product {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 12px;
  min-height: 132px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)), rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-device_real_feature_product > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.cs-device_real_feature_product small,
.cs-device_real_product span,
.cs-device_real_episode_list span,
.cs-device_real_booking_card small,
.cs-device_real_website_hero small,
.cs-device_real_dashboard_hero small,
.cs-device_real_course_header small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.3;
}

.cs-device_real_feature_product strong,
.cs-device_real_booking_card strong,
.cs-device_real_website_hero strong,
.cs-device_real_course_header strong {
  margin: 4px 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.15;
}

.cs-device_real_feature_product span {
  color: var(--device-primary);
  font-size: 18px;
  font-weight: 900;
}

.cs-device_real_thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.86), transparent 20%), linear-gradient(135deg, var(--device-primary), var(--device-secondary));
}

.cs-device_real_thumb i {
  position: absolute;
  left: 50%;
  bottom: 14%;
  width: 44%;
  height: 58%;
  border-radius: 999px 999px 10px 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%) rotate(-8deg);
}

.cs-device_real_thumb_2 i {
  width: 58%;
  height: 32%;
  border-radius: 999px;
  transform: translateX(-50%) rotate(18deg);
}

.cs-device_real_thumb_3 i {
  width: 42%;
  height: 48%;
  border-radius: 12px;
  transform: translateX(-50%) rotate(6deg);
}

.cs-device_real_thumb_4 i {
  width: 54%;
  height: 54%;
  border-radius: 50%;
  transform: translateX(-50%) rotate(0deg);
}

.cs-device_real_product_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.cs-device_real_product {
  min-width: 0;
  padding: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-device_real_product .cs-device_real_thumb {
  height: 64px;
  margin-bottom: 7px;
}

.cs-device_real_product strong {
  display: block;
  overflow: hidden;
  color: #ffffff;
  font-size: 10px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cs-device_real_podcast_art {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 8px;
  text-align: center;
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.26), transparent 18%), linear-gradient(135deg, var(--device-primary), var(--device-secondary));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.cs-device_real_podcast_art span {
  width: 78px;
  height: 78px;
  border: 8px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: inset 0 0 0 9px rgba(0, 0, 0, 0.12);
}

.cs-device_real_podcast_art strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
}

.cs-device_real_podcast_art small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.cs-device_real_audio_wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 54px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-device_real_audio_wave i {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--device-primary), var(--device-secondary));
}

.cs-device_real_episode_list,
.cs-device_real_transaction_list,
.cs-device_real_lesson_list,
.cs-device_real_slot_list {
  display: grid;
  gap: 8px;
}

.cs-device_real_episode_list div,
.cs-device_real_slot_list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-device_real_episode_list strong,
.cs-device_real_slot_list strong {
  color: #ffffff;
  font-size: 11px;
}

.cs-device_real_profile_stack {
  position: relative;
  height: 328px;
  margin-bottom: 12px;
}

.cs-device_real_profile_card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 10, 18, 0.9) 100%), radial-gradient(circle at 52% 28%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.18) 22%, transparent 23%), linear-gradient(135deg, var(--device-primary), var(--device-secondary));
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.32);
}

.cs-device_real_profile_card_back {
  inset: 14px 12px -14px;
  opacity: 0.46;
  transform: rotate(5deg);
}

.cs-device_real_avatar {
  position: absolute;
  left: 50%;
  top: 18%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 34%, rgba(20, 24, 35, 0.82) 0 18%, transparent 19%), rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
}

.cs-device_real_profile_card strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.cs-device_real_profile_card small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.cs-device_real_profile_card div {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

.cs-device_real_profile_card em {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 10px;
  font-style: normal;
}

.cs-device_real_match_actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cs-device_real_match_actions span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.cs-device_real_wallet_card {
  min-height: 156px;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent), linear-gradient(135deg, var(--device-primary), var(--device-secondary));
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.28);
}

.cs-device_real_wallet_card small,
.cs-device_real_wallet_card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.cs-device_real_wallet_card strong {
  display: block;
  margin: 18px 0 34px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.cs-device_real_finance_chart,
.cs-device_real_dashboard_chart {
  display: flex;
  align-items: end;
  gap: 6px;
  min-height: 112px;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-device_real_finance_chart i,
.cs-device_real_dashboard_chart i {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--device-primary), rgba(255, 255, 255, 0.18));
}

.cs-device_real_transaction_list div,
.cs-device_real_lesson_list div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-device_real_transaction_list span,
.cs-device_real_lesson_list span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--device-primary), var(--device-secondary));
}

.cs-device_real_transaction_list strong,
.cs-device_real_lesson_list strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cs-device_real_transaction_list em,
.cs-device_real_lesson_list em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.cs-device_real_map {
  position: relative;
  min-height: 300px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 36px), linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 36px), #162032;
}

.cs-device_real_route {
  position: absolute;
  left: 22%;
  top: 20%;
  width: 54%;
  height: 58%;
  border: 5px solid var(--device-primary);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 48px;
  transform: rotate(18deg);
}

.cs-device_real_pin,
.cs-device_real_rider {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.cs-device_real_pin {
  width: 22px;
  height: 22px;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.cs-device_real_pin_1 {
  left: 24%;
  top: 22%;
}

.cs-device_real_pin_2 {
  right: 20%;
  bottom: 20%;
}

.cs-device_real_rider {
  left: 48%;
  top: 48%;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--device-primary), var(--device-secondary));
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.32);
}

.cs-device_real_tracking_panel,
.cs-device_real_booking_card {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.cs-device_real_tracking_panel strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 14px;
}

.cs-device_real_tracking_panel span {
  display: block;
  padding: 6px 0 6px 14px;
  border-left: 2px solid var(--device-primary);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.cs-device_real_course_header {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-device_real_course_header > span {
  height: 70px;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.84), transparent 22%), linear-gradient(135deg, var(--device-primary), var(--device-secondary));
}

.cs-device_real_progress_ring {
  display: grid;
  place-items: center;
  width: 172px;
  height: 172px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #101827 0 55%, transparent 56%), conic-gradient(var(--device-primary) 0 76%, rgba(255, 255, 255, 0.12) 76% 100%);
}

.cs-device_real_progress_ring strong {
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.cs-device_real_progress_ring span {
  margin-top: -30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.cs-device_real_calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.cs-device_real_calendar span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-device_real_calendar span.is-active {
  background: linear-gradient(135deg, var(--device-primary), var(--device-secondary));
}

.cs-device_real_calendar small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.cs-device_real_calendar strong {
  color: #ffffff;
  font-size: 14px;
}

.cs-device_real_booking_card {
  margin-bottom: 10px;
}

.cs-device_real_booking_card span {
  display: inline-flex;
  margin-top: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
}

.cs-device_real_dashboard_hero {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 10px;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-device_real_dashboard_hero > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-device_real_dashboard_hero strong {
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.cs-device_real_dashboard_chart {
  min-height: 130px;
  margin: 0;
  padding: 8px;
}

.cs-device_real_kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.cs-device_real_kanban div {
  min-height: 188px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cs-device_real_kanban strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
}

.cs-device_real_kanban span {
  display: block;
  height: 44px;
  margin-bottom: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.cs-device_real_kanban span.is-hot {
  background: linear-gradient(135deg, var(--device-primary), var(--device-secondary));
}

.cs-device_real_browser_bar {
  justify-content: start;
  gap: 8px;
}

.cs-device_real_browser_bar span {
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.cs-device_real_website_hero {
  min-height: 214px;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 12, 21, 0.28), rgba(8, 12, 21, 0.88)), radial-gradient(circle at 70% 34%, rgba(255, 255, 255, 0.72), transparent 18%), linear-gradient(135deg, var(--device-primary), var(--device-secondary));
}

.cs-device_real_website_hero strong {
  display: block;
  max-width: 190px;
  margin: 12px 0 20px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.05;
}

.cs-device_real_website_hero span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: #ffffff;
  color: #101827;
  font-size: 10px;
  font-weight: 900;
}

.cs-device_real_website_sections {
  display: grid;
  gap: 8px;
}

.cs-device_real_website_sections span {
  height: 54px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.cs-device_mockup_podcast .cs-device_screen_card_visual {
  background: linear-gradient(90deg, transparent 0 8px, rgba(255, 255, 255, 0.8) 8px 12px, transparent 12px 18px), linear-gradient(135deg, var(--device-primary), var(--device-secondary));
}

.cs-device_mockup_dating .cs-device_screen_cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cs-device_mockup_dating .cs-device_screen_card {
  display: block;
  min-height: 152px;
  padding: 8px;
}

.cs-device_mockup_dating .cs-device_screen_card_visual {
  width: 100%;
  height: 82px;
  margin-bottom: 8px;
}

.cs-device_mockup_dating .cs-device_screen_card_body strong {
  white-space: normal;
}

.cs-device_mockup_dating .cs-device_screen_card em {
  display: block;
  margin-top: 4px;
}

.cs-device_mockup_fintech .cs-device_screen_hero,
.cs-device_mockup_saas .cs-device_screen_hero,
.cs-device_mockup_website .cs-device_screen_hero {
  min-height: 210px;
}

.cs-device_showcase_palette {
  align-self: center;
}

.cs-device_showcase_palette_title {
  margin-bottom: 18px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cs-device_showcase_palette_grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 420px;
}

.cs-device_showcase_swath {
  width: 72px;
  aspect-ratio: 1;
  padding: 0;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cs-device_showcase_swath:hover,
.cs-device_showcase_swath.is-active {
  transform: translateY(-2px) scale(1.03);
}

.cs-device_showcase_swath.is-active {
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16), 0 18px 34px rgba(0, 0, 0, 0.35);
}

.cs-device_showcase_palette_note {
  margin-top: 18px;
  color: var(--device-primary);
  font-size: 14px;
  font-weight: 800;
}

@keyframes csDeviceRotate {
  0%, 100% {
    transform: rotateY(-19deg) rotateX(4deg) rotateZ(-1deg) translateY(0);
  }
  50% {
    transform: rotateY(13deg) rotateX(-2deg) rotateZ(1deg) translateY(-16px);
  }
}
@media screen and (max-width: 1399px) {
  .cs-device_showcase_grid {
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 390px) minmax(220px, 0.75fr);
    gap: 34px;
  }
  .cs-device_showcase_title {
    font-size: 42px;
  }
  .cs-device_showcase_services {
    grid-template-columns: 1fr;
  }
  .cs-device_showcase_swath {
    width: 62px;
  }
}
@media screen and (max-width: 1199px) {
  .cs-device_showcase_grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .cs-device_showcase_copy,
  .cs-device_showcase_palette {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
  }
  .cs-device_showcase_services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cs-device_showcase_palette {
    text-align: center;
  }
  .cs-device_showcase_palette_grid {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .cs-banner.cs-style2.cs-device_showcase_section {
    padding: 78px 0;
  }
  .cs-device_showcase_title {
    font-size: 34px;
  }
  .cs-device_showcase_subtitle {
    font-size: 15px;
    line-height: 1.65;
  }
  .cs-device_showcase_services {
    grid-template-columns: 1fr;
  }
  .cs-device_showcase_phone_wrap {
    min-height: 590px;
  }
  .cs-device_showcase_phone {
    width: min(100%, 286px);
    border-radius: 44px;
  }
  .cs-device_showcase_phone_screen {
    inset: 17px;
    border-radius: 32px;
  }
  .cs-device_mockup {
    padding: 26px 13px 12px;
  }
  .cs-device_status_bar {
    margin-bottom: 10px;
  }
  .cs-device_app_header {
    min-height: 42px;
    margin-bottom: 10px;
  }
  .cs-device_app_icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
  .cs-device_screen_hero {
    min-height: 154px;
    padding: 14px;
  }
  .cs-device_screen_hero h3 {
    font-size: 21px;
  }
  .cs-device_screen_hero p {
    font-size: 10px;
    line-height: 1.35;
  }
  .cs-device_screen_metric {
    margin-top: 10px;
    padding: 8px 10px;
  }
  .cs-device_screen_action_row {
    margin: 10px 0;
  }
  .cs-device_screen_action_row button,
  .cs-device_screen_action_row span {
    min-height: 36px;
  }
  .cs-device_screen_cards {
    gap: 7px;
    min-height: 150px;
  }
  .cs-device_screen_card {
    min-height: 50px;
    padding: 6px;
  }
  .cs-device_screen_card_visual {
    width: 36px;
    height: 36px;
  }
  .cs-device_bottom_nav {
    padding-top: 9px;
  }
  .cs-device_bottom_nav span {
    min-height: 30px;
  }
  .cs-device_real_headline {
    margin-bottom: 8px;
  }
  .cs-device_real_headline strong {
    font-size: 16px;
  }
  .cs-device_real_feature_product {
    grid-template-columns: 84px minmax(0, 1fr);
    min-height: 108px;
    gap: 9px;
  }
  .cs-device_real_feature_product strong {
    font-size: 13px;
  }
  .cs-device_real_product_grid {
    gap: 6px;
  }
  .cs-device_real_product .cs-device_real_thumb {
    height: 50px;
  }
  .cs-device_real_podcast_art {
    min-height: 148px;
  }
  .cs-device_real_podcast_art span {
    width: 58px;
    height: 58px;
  }
  .cs-device_real_profile_stack {
    height: 260px;
  }
  .cs-device_real_wallet_card {
    min-height: 126px;
  }
  .cs-device_real_wallet_card strong {
    margin: 14px 0 24px;
    font-size: 23px;
  }
  .cs-device_real_finance_chart,
  .cs-device_real_dashboard_chart {
    min-height: 86px;
  }
  .cs-device_real_map {
    min-height: 230px;
  }
  .cs-device_real_progress_ring {
    width: 132px;
    height: 132px;
  }
  .cs-device_real_calendar span {
    min-height: 46px;
  }
  .cs-device_real_dashboard_hero {
    grid-template-columns: 1fr;
  }
  .cs-device_real_dashboard_hero strong {
    font-size: 26px;
  }
  .cs-device_real_kanban div {
    min-height: 132px;
  }
  .cs-device_real_website_hero {
    min-height: 164px;
    padding: 14px;
  }
  .cs-device_real_website_hero strong {
    font-size: 19px;
    margin: 8px 0 14px;
  }
  .cs-device_mockup_dating .cs-device_screen_cards {
    grid-template-columns: 1fr;
  }
  .cs-device_mockup_dating .cs-device_screen_card {
    display: grid;
    min-height: 58px;
  }
  .cs-device_mockup_dating .cs-device_screen_card_visual {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
  }
  .cs-device_showcase_palette_grid {
    gap: 12px;
    max-width: 326px;
  }
  .cs-device_showcase_swath {
    width: 52px;
  }
}
.cs-funfact_wrap {
  display: flex;
  background: linear-gradient(267.18deg, #161616 0%, #080808 100%);
  border-radius: 15px;
  padding: 60px 80px;
  position: relative;
  z-index: 1;
}
.cs-funfact_wrap .cs-funfact_shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.cs-funfact_wrap .cs-funfact_left {
  flex: none;
  width: 40%;
  position: relative;
  z-index: 2;
}
.cs-funfact_wrap .cs-funfact_right {
  flex: 1;
  padding-left: 80px;
  position: relative;
  z-index: 2;
}
.cs-funfact_wrap.cs-type1 {
  margin-top: -130px;
}
.cs-funfact_wrap.cs-type2 {
  background: transparent;
  padding: 140px 0;
}
.cs-funfact_wrap.cs-type2 .cs-funfact_shape {
  display: none;
}
@media (max-width: 991px) {
  .cs-funfact_wrap.cs-type2 {
    padding: 70px 0;
  }
}
.cs-funfact_wrap.cs-type2 .cs-funfact_left {
  padding-right: 50px;
}
.cs-funfact_wrap.cs-type3 {
  background: transparent;
  padding: 135px 0;
  align-items: flex-start;
}

.cs-funfact_heading h2 {
  font-size: 50px;
  margin-bottom: 20px;
}
.cs-funfact_heading p {
  margin-bottom: 0;
  line-height: 1.75em;
}

.cs-funfacts {
  display: grid;
  grid-gap: 36px 40px;
  grid-template-columns: repeat(2, 1fr);
}

.cs-funfact.cs-style1 {
  display: flex;
  align-items: center;
}
.cs-funfact.cs-style1 .cs-funfact_number {
  margin: 0 13px 0 0;
  font-size: 50px;
  line-height: 1.3em;
}
.cs-funfact.cs-style1 .cs-funfact_text span {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-top: -4px;
  margin-bottom: -1px;
}
.cs-funfact.cs-style1 .cs-funfact_text p {
  margin: 0;
}

.cs-funfact.cs-style2 .cs-funfact_number {
  margin: 0 13px 0 0;
  font-size: 50px;
  line-height: 1.3em;
}
.cs-funfact.cs-style2 .cs-funfact_title {
  font-size: 22px;
  color: #999696;
  margin: 0;
}

.cs-funfact_wrap_2 {
  background: linear-gradient(267.18deg, #161616 0%, #080808 100%);
  box-shadow: 0px 0px 25px rgba(123, 123, 123, 0.1);
  border-radius: 15px;
  padding: 90px 90px 100px;
  position: relative;
  z-index: 1;
}
.cs-funfact_wrap_2.cs-no_shadow {
  box-shadow: initial;
}
.cs-funfact_wrap_2 .cs-funfact_shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.cs-funfact_wrap_2 .cs-funfact_shape + * {
  position: relative;
  z-index: 2;
}
.cs-funfact_wrap_2 .cs-funfacts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -12px;
}
.cs-funfact_wrap_2 .cs-funfacts > * {
  padding: 12px;
}
.cs-funfact_wrap_2.cs-type1 {
  margin-top: -145px;
}
.cs-funfact_wrap_2.cs-type2 {
  background: transparent;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 1399px) {
  .cs-funfact_wrap,
  .cs-funfact_wrap_2 {
    padding: 60px 50px;
  }
  .cs-funfact_wrap_2.cs-type1 {
    margin-top: -102px;
  }
  .cs-funfact_wrap .cs-funfact_left {
    width: 38%;
  }
  .cs-funfact_wrap .cs-funfact_right {
    padding-left: 50px;
    width: 62%;
  }
}
@media screen and (max-width: 1380px) {
  .cs-funfact_heading h2 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  .cs-funfact.cs-style1 .cs-funfact_number {
    font-size: 42px;
  }
  .cs-funfact.cs-style1 .cs-funfact_text span {
    font-size: 18px;
    margin-top: -8px;
    margin-bottom: -5px;
  }
  .cs-funfact.cs-style2 .cs-funfact_number {
    font-size: 42px;
  }
  .cs-funfact.cs-style2 .cs-funfact_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .cs-funfact_wrap {
    display: block;
  }
  .cs-funfact_wrap .cs-funfact_right {
    padding-left: 0;
    width: 100%;
  }
  .cs-funfact_wrap .cs-funfact_left {
    width: 100%;
    margin-bottom: 50px;
  }
  .cs-funfact_wrap_2 .cs-funfacts {
    display: grid;
    grid-gap: 10px 25px;
  }
}
@media screen and (max-width: 991px) {
  .cs-funfact_wrap .cs-funfact_left {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cs-funfacts {
    grid-gap: 15px 15px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .cs-funfacts {
    grid-gap: 15px 15px;
    grid-template-columns: repeat(1, 1fr);
  }
  .cs-funfact_wrap,
  .cs-funfact_wrap_2 {
    padding: 40px 30px;
  }
}
.cs-partner_tech_section {
  position: relative;
  overflow: hidden;
  padding: 106px 0 116px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 48px), linear-gradient(180deg, #06070c 0%, #101018 45%, #05060b 100%);
  color: #f8fafc;
}

.cs-partner_tech_section::before,
.cs-partner_tech_section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cs-partner_tech_section::before {
  inset: 0;
  background: radial-gradient(circle at 18% 12%, rgba(0, 245, 255, 0.16), transparent 32%), radial-gradient(circle at 82% 22%, rgba(255, 44, 196, 0.14), transparent 30%), linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
  opacity: 0.9;
}

.cs-partner_tech_section::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.7), rgba(255, 44, 196, 0.6), transparent);
}

.cs-partner_tech_section_compact {
  padding: 70px 0;
}

.cs-partner_tech_heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cs-partner_tech_kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 245, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 245, 255, 0.08);
  color: #6ffcff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(0, 245, 255, 0.16);
}

.cs-partner_tech_heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(0, 245, 255, 0.18);
}

.cs-partner_tech_heading p {
  max-width: 620px;
  margin: 16px auto 0;
  color: #aeb8ca;
  font-size: 17px;
  line-height: 1.7;
}

.cs-partner_logo_wrap {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  margin: 0;
}

.cs-partner_logo_orbit {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.cs-partner_logo_orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)), rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 34px rgba(0, 245, 255, 0.07), 0 24px 70px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.cs-partner_logo_track {
  position: relative;
  z-index: 1;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  animation: partner-logo-flow var(--logo-row-duration, 38s) linear infinite;
  will-change: transform;
}

.cs-partner_logo_track.cs-reverse {
  animation-name: partner-logo-flow-reverse;
}

.cs-partner_logo_orbit:hover .cs-partner_logo_track {
  animation-play-state: paused;
}

.cs-partner_logo_item {
  flex: 0 0 auto;
  width: 236px;
  padding: 10px;
}

.cs-partner_logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 44, 196, 0.06)), rgba(8, 11, 19, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.cs-partner_logo::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(0, 245, 255, 0.45) 35%, rgba(255, 44, 196, 0.42) 50%, transparent 70%);
  transform: translateX(-120%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.cs-partner_logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 28px rgba(0, 245, 255, 0.08), inset 0 0 42px rgba(255, 44, 196, 0.04);
  pointer-events: none;
}

.cs-partner_logo_surface {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 92px;
  padding: 18px 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 255, 0.92)), #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.cs-partner_logo img {
  display: block;
  max-width: 180px;
  max-height: 66px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  filter: none;
  transform: translateZ(0);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.cs-partner_logo:hover {
  transform: translateY(-5px) scale(1.025);
  border-color: rgba(0, 245, 255, 0.55);
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.16), rgba(255, 44, 196, 0.12)), rgba(11, 15, 26, 0.98);
  box-shadow: 0 24px 60px rgba(0, 245, 255, 0.2), 0 18px 56px rgba(255, 44, 196, 0.1), inset 0 0 32px rgba(0, 245, 255, 0.12);
}

.cs-partner_logo:hover::before {
  opacity: 1;
  animation: partner-logo-scan 0.9s ease forwards;
}

.cs-partner_logo:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

@keyframes partner-logo-flow {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-33.333%, 0, 0);
  }
}
@keyframes partner-logo-flow-reverse {
  from {
    transform: translate3d(-33.333%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes partner-logo-scan {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}
@media screen and (max-width: 1199px) {
  .cs-partner_tech_heading h2 {
    font-size: 42px;
  }
  .cs-partner_logo_item {
    width: 218px;
  }
}
@media screen and (max-width: 767px) {
  .cs-partner_tech_section {
    padding: 78px 0 86px;
  }
  .cs-partner_tech_heading h2 {
    font-size: 34px;
  }
  .cs-partner_tech_heading p {
    font-size: 15px;
  }
  .cs-partner_logo_orbit {
    gap: 12px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }
  .cs-partner_logo_item {
    width: 190px;
    padding: 7px;
  }
  .cs-partner_logo {
    min-height: 104px;
  }
  .cs-partner_logo_surface {
    height: 78px;
    padding: 14px 18px;
  }
  .cs-partner_logo img {
    max-width: 150px;
    max-height: 56px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cs-partner_logo_track,
  .cs-partner_logo:hover::before {
    animation: none;
  }
}
.cs-moving_text_wrap {
  font-family: helvetica;
  overflow: hidden;
  font-size: 120px;
  line-height: 1.2em;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}

.cs-moving_text_in {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}

.cs-moving_text {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: 5px 6px;
  animation: slide-left 20s linear infinite;
}
.cs-moving_text > * {
  margin: 0 20px;
}

.cs-moving_text_wrap.cs-type1 {
  color: var(--accent);
}
.cs-moving_text_wrap.cs-type1 .cs-moving_text {
  padding: 5px 0;
  animation: slide-left 40s linear infinite;
}
.cs-moving_text_wrap.cs-type1 .cs-moving_text a:hover {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}
.cs-moving_text_wrap.cs-type1:hover .cs-moving_text {
  animation-play-state: paused;
}

.cs-moving_text_wrap.cs-type2 {
  color: #fff;
  -webkit-text-stroke: initial;
}
.cs-moving_text_wrap.cs-type2 .cs-moving_text {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 103.33%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs-reverse_animation {
  animation-direction: reverse !important;
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 1380px) {
  .cs-moving_text_wrap {
    font-size: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .cs-moving_text_wrap {
    font-size: 80px;
  }
}
@media screen and (max-width: 575px) {
  .cs-moving_text_wrap {
    font-size: 56px;
  }
}
.cs-page_richtext {
  color: #c6d0e0;
  font-size: 17px;
  line-height: 1.9;
}
.cs-page_richtext h2,
.cs-page_richtext h3,
.cs-page_richtext h4 {
  margin: 38px 0 14px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
}
.cs-page_richtext h2 {
  font-size: clamp(26px, 3vw, 38px);
}
.cs-page_richtext h3 {
  font-size: clamp(22px, 2.5vw, 30px);
}
.cs-page_richtext p {
  margin: 0 0 16px;
}
.cs-page_richtext ul,
.cs-page_richtext ol {
  margin: 0 0 22px;
  padding-left: 22px;
}
.cs-page_richtext li {
  margin-bottom: 10px;
}
.cs-page_richtext strong {
  color: #ffffff;
  font-weight: 800;
}
.cs-page_richtext a {
  color: #00f5ff;
  text-decoration: underline;
}

.cs-page_richtext_intro {
  padding: 24px 24px 8px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: radial-gradient(circle at top right, rgba(0, 245, 255, 0.12), transparent 30%), rgba(10, 14, 24, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.cs-page_richtext_intro p {
  color: #edf3ff;
  font-size: 18px;
  line-height: 1.85;
}

@media screen and (max-width: 767px) {
  .cs-page_richtext {
    font-size: 15px;
    line-height: 1.8;
  }
  .cs-page_richtext_intro {
    padding: 18px 18px 4px;
  }
  .cs-page_richtext_intro p {
    font-size: 16px;
  }
}
.cs-portfolio_1_heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.cs-portfolio_1_heading .cs-filter_menu {
  margin-top: 5px;
  margin-bottom: 15px;
}

.cs-portfolio.cs-style1 {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 500px;
  display: block;
  position: relative;
}
.cs-portfolio.cs-style1 .cs-portfolio_hover {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  background-color: rgba(22, 22, 22, 0.4);
  transition: all 0.4s ease;
  z-index: 2;
}
.cs-portfolio.cs-style1 .cs-plus {
  position: absolute;
  height: 60px;
  width: 60px;
  left: 50%;
  z-index: 1;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition: all 0.4s ease;
}
.cs-portfolio.cs-style1 .cs-plus::before, .cs-portfolio.cs-style1 .cs-plus::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cs-portfolio.cs-style1 .cs-plus::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cs-portfolio.cs-style1:hover .cs-portfolio_hover {
  opacity: 1;
}
.cs-portfolio.cs-style1:hover .cs-plus {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cs-portfolio.cs-style1 .cs-portfolio_bg {
  height: 100%;
  width: 100%;
  border-radius: inherit;
}
.cs-portfolio.cs-style1 .cs-portfolio_info {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  padding: 105px 20px 80px 65px;
  bottom: -60px;
  left: -40px;
  position: absolute;
  z-index: 2;
}
.cs-portfolio.cs-style1 .cs-portfolio_info_bg {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  left: 0;
  top: 0;
}
.cs-portfolio.cs-style1 .cs-portfolio_title {
  font-size: 22px;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}
.cs-portfolio.cs-style1 .cs-portfolio_subtitle {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding-right: 30px;
  color: rgba(254, 254, 254, 0.7);
}
.cs-portfolio.cs-style1 .cs-portfolio_subtitle::after {
  content: "";
  height: 1px;
  width: 20px;
  background-color: currentColor;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: 2px;
}
.cs-portfolio.cs-style1.cs-type1 {
  height: 465px;
}
.cs-portfolio.cs-style1.cs-type1 .cs-portfolio_info_bg {
  left: -50px;
  top: 50px;
  opacity: 0;
  transition: all 0.4s ease;
}
.cs-portfolio.cs-style1.cs-type1:hover .cs-portfolio_info_bg {
  left: 0px;
  top: 0px;
  opacity: 1;
}
.cs-portfolio.cs-style1 .cs-lightbox_item > div > img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: zoom-in;
  z-index: 5;
  opacity: 0;
}
.cs-portfolio.cs-style1.cs-type1 img:not(.__react_modal_image__medium_img), .cs-portfolio.cs-style1.cs-type2 img:not(.__react_modal_image__medium_img) {
  width: 100%;
}
.cs-portfolio.cs-style1.cs-type1 .cs-portfolio_title,
.cs-portfolio.cs-style1.cs-type1 .cs-portfolio_subtitle, .cs-portfolio.cs-style1.cs-type2 .cs-portfolio_title,
.cs-portfolio.cs-style1.cs-type2 .cs-portfolio_subtitle {
  top: 15px;
  opacity: 0;
  transition: all 0.4s ease;
}
.cs-portfolio.cs-style1.cs-type1:hover .cs-portfolio_title, .cs-portfolio.cs-style1.cs-type2:hover .cs-portfolio_title {
  top: 0px;
  opacity: 1;
  transition-delay: 0.2s;
}
.cs-portfolio.cs-style1.cs-type1:hover .cs-portfolio_subtitle, .cs-portfolio.cs-style1.cs-type2:hover .cs-portfolio_subtitle {
  top: 0px;
  opacity: 1;
  transition-delay: 0.3s;
}
.cs-portfolio.cs-style1.cs-type2 {
  border-radius: 5px;
}
.cs-portfolio.cs-style1.cs-type2 .cs-portfolio_hover {
  background: linear-gradient(180deg, rgba(255, 74, 23, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.cs-portfolio.cs-style1.cs-type2 .cs-portfolio_info_bg {
  display: none;
}
.cs-portfolio.cs-style1.cs-type2 .cs-portfolio_info {
  height: 100%;
  width: 100%;
  border-radius: 0%;
  padding: 30px 20px 30px 25px;
  bottom: 0;
  left: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.cs-portfolio.cs-style1.cs-size1 {
  height: 299px;
}
.cs-portfolio.cs-style1.cs-size2 {
  height: 622px;
}
.cs-portfolio.cs-style1.cs-size3 {
  height: 600px;
}

.__react_modal_image__modal_container {
  cursor: zoom-out;
}
.__react_modal_image__modal_container .__react_modal_image__medium_img {
  cursor: initial;
}

.cs-portfolio.cs-style2 {
  position: relative;
  max-width: 1920px;
  margin: auto;
}
.cs-portfolio.cs-style2 .cs-gradient_shape {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 600px;
  width: 600px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(41, 0, 208, 0.2) 0%, rgba(24, 24, 24, 0.2) 100%);
  filter: blur(50px);
}
.cs-portfolio.cs-style2 .cs-portfolio_img.active .cs-shine_hover_1::before {
  animation: shine 1.3s;
}
.cs-portfolio.cs-style2 .cs-section_heading.cs-style1 {
  position: relative;
  z-index: 2;
}
.cs-portfolio.cs-style2 .cs-portfolio_img_title {
  margin: 0;
  position: absolute;
  z-index: 2;
  top: 50%;
  writing-mode: vertical-lr;
  transform: rotate(180deg) translateY(50%);
  left: calc((100vw - 1300px) / 2 / 2);
  margin: 0 0 0 -30px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 2px #ff4a17;
  font-size: 50px;
}
.cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
  left: initial;
  right: calc((100vw - 1300px) / 2 / 2);
  margin: 0 -30px 0 0;
}
.cs-portfolio.cs-style2.cs-type1 .cs-gradient_shape {
  right: initial;
  left: 0;
}

.cs-page_navigation > * {
  display: flex;
}

@media screen and (max-width: 1540px) {
  .cs-portfolio.cs-style1 {
    height: 450px;
  }
  .cs-portfolio.cs-style1.cs-size3 {
    height: 500px;
  }
}
@media screen and (max-width: 1400px) {
  .cs-portfolio.cs-style2 .cs-portfolio_img_title {
    left: calc((100vw - 1120px) / 2 / 2);
    font-size: 40px;
    margin: 0 0 0 -27px;
  }
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
    left: initial;
    right: calc((100vw - 1120px) / 2 / 2);
    margin: 0 -27px 0 0;
  }
}
@media screen and (max-width: 1380px) {
  .cs-portfolio.cs-style1 .cs-portfolio_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .cs-portfolio.cs-style2 .cs-portfolio_img_title {
    left: calc((100vw - 940px) / 2 / 2);
  }
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
    left: initial;
    right: calc((100vw - 940px) / 2 / 2);
  }
  .cs-portfolio_1_heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .cs-portfolio_1_heading .cs-filter_menu {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .cs-portfolio.cs-style2 .cs-portfolio_img {
    padding-left: 60px;
  }
  .cs-portfolio.cs-style2 .cs-portfolio_img_title {
    margin-left: 0;
  }
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img {
    padding-right: 60px;
  }
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .cs-portfolio.cs-style1 {
    height: 380px;
  }
  .cs-portfolio.cs-style2 .cs-portfolio_img,
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img {
    position: relative;
    padding-left: 70px;
    padding-right: 0;
  }
  .cs-portfolio.cs-style2 .cs-portfolio_img_title,
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
    left: 30px;
    right: initial;
    margin: 0 0 0 -27px;
  }
  .cs-portfolio.cs-style2 .cs-section_heading.cs-style1,
  .cs-portfolio.cs-style2.cs-type1 .cs-section_heading.cs-style1 {
    padding-left: 70px;
  }
}
@media screen and (max-width: 575px) {
  .cs-portfolio.cs-style1 {
    height: 380px;
  }
  .cs-portfolio.cs-style2 .cs-portfolio_img_title,
  .cs-portfolio.cs-style2.cs-type1 .cs-portfolio_img_title {
    margin: 0px 0 0 -20px;
    font-size: 32px;
  }
}
.cs_portfolio_grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
}
@media (max-width: 1199px) {
  .cs_portfolio_grid_2 {
    grid-gap: 25px;
  }
}
@media (max-width: 991px) {
  .cs_portfolio_grid_2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cs_portfolio_grid_2 .cs-portfolio.cs-style1 {
  border-radius: 0;
}

.cs-post_wrap {
  width: 54vw;
}

.cs-post.cs-style1 {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.cs-post.cs-style1 .cs-post_thumb {
  position: relative;
  display: block;
}
.cs-post.cs-style1 .cs-post_thumb img {
  width: 100%;
}
.cs-post.cs-style1 .cs-post_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(360deg, #000000 0%, rgba(77, 77, 77, 0) 100%);
}
.cs-post.cs-style1 .cs-posted_by {
  font-size: 14px;
  line-height: 1.6em;
  margin-bottom: 10px;
}
.cs-post.cs-style1 .cs-post_title {
  font-size: 22px;
  margin-bottom: 0;
  line-height: 1.45em;
}
.cs-post.cs-style1 .cs-post_info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px 25px;
}

.cs-slider .cs-post.cs-style1 {
  max-width: 420px;
}

.cs-post.cs-style2 .cs-post_thumb {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 45px;
}
.cs-post.cs-style2 .cs-post_thumb::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(22, 22, 22, 0.5);
  opacity: 0;
  transition: all 0.4s ease;
}
.cs-post.cs-style2 .cs-post_thumb img {
  transition: all 0.6s ease;
}
.cs-post.cs-style2 a.cs-post_thumb:hover::after {
  opacity: 1;
}
.cs-post.cs-style2 a.cs-post_thumb:hover img {
  transform: scale(1.07);
}
.cs-post.cs-style2 .cs-post_meta {
  font-size: 18px;
  margin-bottom: 15px;
}
.cs-post.cs-style2 .cs-post_title {
  font-size: 38px;
  margin-bottom: 30px;
}
.cs-post.cs-style2 .cs-post_sub_title {
  margin-bottom: 35px;
  line-height: 1.75em;
}
.cs-post.cs-style2 p {
  margin-bottom: 45px;
  line-height: 1.75em;
}
.cs-post.cs-style2 h3 {
  font-size: 30px;
  margin-bottom: 25px;
}
.cs-post.cs-style2 blockquote {
  font-size: 18px;
  line-height: 1.9em;
  border-left: 5px solid var(--accent);
  background-color: #000;
  padding: 40px 35px;
  font-weight: 600;
  color: #fefefe;
  margin-bottom: 45px;
}
.cs-post.cs-style2 blockquote small {
  display: block;
  position: relative;
  color: rgba(254, 254, 254, 0.7);
  font-size: 16px;
  line-height: 1.9em;
  font-style: initial;
  font-weight: 400;
  margin-top: 15px;
  padding-left: 35px;
}
.cs-post.cs-style2 blockquote small::before {
  content: "";
  height: 2px;
  width: 20px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #fefefe;
}

.cs-post_3_list li:not(:last-child) {
  border-bottom: 2px solid #e4e4e4;
  padding-bottom: 35px;
  margin-bottom: 26px;
}

.cs-post.cs-style3 {
  display: flex;
}
.cs-post.cs-style3 .cs-post_title {
  font-size: 30px;
  margin-bottom: 20px;
}
.cs-post.cs-style3 .cs-post_meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.cs-post.cs-style3 .cs-post_avatar {
  display: flex;
  align-items: center;
}
.cs-post.cs-style3 .cs-post_avatar_img {
  flex: none;
  max-width: 50px;
  border-radius: 5px;
  margin-right: 18px;
}
.cs-post.cs-style3 .cs-post_avatar_img img {
  width: 100%;
  border-radius: inherit;
}
.cs-post.cs-style3 .cs-post_avatar_info h4 {
  font-size: 16px;
  margin-bottom: 0;
}
.cs-post.cs-style3 .cs-post_avatar_info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6em;
}
.cs-post.cs-style3 .cs-text_btn {
  color: var(--accent);
}
.cs-post.cs-style3 .cs-posted_by {
  display: flex;
  align-items: center;
  flex: none;
  width: 105px;
  margin-top: 4px;
}
.cs-post.cs-style3 .cs-posted_by > span:first-child {
  color: #fefefe;
  font-size: 30px;
  font-weight: 600;
  margin-right: 12px;
}
.cs-post.cs-style3 .cs-posted_by > span:last-child {
  font-size: 14px;
  line-height: 18px;
}

@media screen and (max-width: 1550px) {
  .cs-slider .cs-post.cs-style1 {
    max-width: 360px;
  }
  .cs-shape_wrap_4 .cs-shape_4:nth-child(1) {
    left: -3%;
  }
}
@media screen and (max-width: 1550px) {
  .cs-slider .cs-post.cs-style1 {
    max-width: 360px;
  }
  .cs-shape_wrap_4 .cs-shape_4:nth-child(1) {
    left: -3%;
  }
}
@media screen and (max-width: 1550px) {
  .cs-post.cs-style1 .cs-post_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .cs-post_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .cs-post.cs-style2 .cs-post_title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .cs-post.cs-style2 .cs-post_meta {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .cs-post.cs-style2 .cs-post_sub_title {
    margin-bottom: 20px;
  }
  .cs-post.cs-style2 .cs-post_thumb {
    margin-bottom: 25px;
  }
  .cs-post.cs-style2 blockquote {
    font-size: 16px;
    border-width: 3px;
    padding: 30px 25px;
  }
  .cs-post.cs-style3 .cs-post_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .cs-slider .cs-post.cs-style1 {
    max-width: 320px;
  }
  .cs-post.cs-style3 {
    display: block;
  }
  .cs-post.cs-style3 .cs-posted_by {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .cs-post.cs-style3 .cs-post_meta {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 20px;
  }
  .cs-post.cs-style3 .cs-post_avatar {
    margin-top: 25px;
  }
}
@media screen and (max-width: 350px) {
  .cs-slider .cs-post.cs-style1 {
    max-width: 300px;
  }
}
.slick-slider .cs-post.cs-style1 {
  height: 480px;
}
.slick-slider .cs-post.cs-style1 .cs-post_thumb {
  height: 100%;
  width: 100%;
}
.slick-slider .cs-post.cs-style1 .cs-post_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cs-pricing_table.cs-style1 {
  position: relative;
  background: linear-gradient(267.18deg, #161616 0%, #080808 100%);
  border-radius: 15px;
  overflow: hidden;
  padding: 0 45px;
}
.cs-pricing_table.cs-style1::before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  height: 135px;
  width: 135px;
  background: var(--accent);
  filter: blur(125px);
  transition: all 0.4s ease;
  opacity: 0;
}
.cs-pricing_table.cs-style1 .cs-pricing_title {
  font-size: 30px;
  padding: 30px 0 30px;
  border-bottom: 1px solid #302e2e;
  margin: 0;
}
.cs-pricing_table.cs-style1 .cs-price {
  display: flex;
  align-items: flex-end;
  padding-top: 20px;
  margin-bottom: 5px;
}
.cs-pricing_table.cs-style1 .cs-price h3 {
  margin: 0;
  font-size: 38px;
}
.cs-pricing_table.cs-style1 .cs-price span {
  position: relative;
  bottom: 6px;
}
.cs-pricing_table.cs-style1 .cs-pricing_info {
  border-bottom: 1px solid #302e2e;
  padding-bottom: 23px;
}
.cs-pricing_table.cs-style1 .cs-pricing_feature {
  padding: 35px 0;
}
.cs-pricing_table.cs-style1 .cs-pricing_feature li {
  position: relative;
  padding-left: 35px;
}
.cs-pricing_table.cs-style1 .cs-pricing_feature li:not(:last-child) {
  margin-bottom: 16px;
}
.cs-pricing_table.cs-style1 .cs-pricing_feature .cs-feature_icon {
  position: absolute;
  left: 0;
  top: 4px;
  display: flex;
  font-size: 20px;
}
.cs-pricing_table.cs-style1 .cs-pricing_btn_wrap {
  padding: 28px 0;
  margin-top: -10px;
  border-top: 1px solid #302e2e;
}
.cs-pricing_table.cs-style1:hover::before {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .cs-pricing_table.cs-style1 {
    padding: 0 30px;
  }
  .cs-pricing_table.cs-style1 .cs-pricing_title {
    font-size: 26px;
  }
}
.cs-iconbox_3_list {
  position: relative;
  padding-left: 550px;
  min-height: 640px;
}
.cs-iconbox_3_list > *:not(:last-child) {
  border-bottom: 1px solid #4d4d4d;
}
.cs-iconbox_3_list .cs-image_layer {
  position: absolute;
  left: 0;
  top: 25px;
  pointer-events: none;
  max-width: 416px;
  height: 600px;
}
.cs-iconbox_3_list .cs-image_layer .cs-image_layer_in {
  height: 100%;
  width: 100%;
}
.cs-iconbox_3_list .cs-image_layer img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: inactiveImageAnimation1 0.6s forwards ease;
}
.cs-iconbox_3_list .cs-hover_tab.active .cs-image_layer img {
  animation: activeImageAnimation1 0.6s forwards ease;
}
.cs-iconbox_3_list .cs-hover_tab.active .cs-iconbox_icon {
  color: #fff;
  background-color: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 1199px) {
  .cs-iconbox_3_list {
    padding-left: 460px;
  }
}
@media (max-width: 991px) {
  .cs-iconbox_3_list {
    padding-left: 0;
    padding-top: 650px;
  }
  .cs-iconbox_3_list .cs-image_layer {
    max-width: 100%;
    width: 100%;
  }
}
.cs-iconbox_3_list.cs-style1 {
  padding-left: 0;
  min-height: initial;
}
.cs-iconbox_3_list.cs-style1 .cs-iconbox.cs-style3 .cs-iconbox_in {
  max-width: 560px;
}
@media (max-width: 1199px) {
  .cs-iconbox_3_list.cs-style1 {
    padding: 0;
  }
}
.cs-iconbox_3_list.cs-style2 {
  padding-left: 110px;
  counter-reset: number-counter;
  padding-top: 0;
}
@media (max-width: 991px) {
  .cs-iconbox_3_list.cs-style2 {
    padding-left: 40px;
  }
}
@media (max-width: 575px) {
  .cs-iconbox_3_list.cs-style2 {
    padding-left: 0px;
  }
}
.cs-iconbox_3_list.cs-style2 .cs-image_layer.cs-style1,
.cs-iconbox_3_list.cs-style2 .cs-image_layer_in::after {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cs-iconbox_3_list.cs-style2 .cs-image_layer.cs-style1 {
  padding-right: 0;
  padding-bottom: 0;
  height: initial;
  width: 170px;
  transform: rotate(0deg) translateY(-50%);
  top: 50%;
  right: 28%;
  left: initial;
}
@media (max-width: 1199px) {
  .cs-iconbox_3_list.cs-style2 .cs-image_layer.cs-style1 {
    right: 20%;
  }
}
@media (max-width: 991px) {
  .cs-iconbox_3_list.cs-style2 .cs-image_layer.cs-style1 {
    display: none;
  }
}
.cs-iconbox_3_list.cs-style2 .cs-image_layer.cs-style1 img {
  animation: none;
  -webkit-clip-path: inset(0% 0% 0 0);
          clip-path: inset(0% 0% 0 0);
}
.cs-iconbox_3_list.cs-style2 .cs-hover_tab {
  position: relative;
}
.cs-iconbox_3_list.cs-style2 .cs-hover_tab::before {
  counter-increment: number-counter;
  content: counter(number-counter, decimal-leading-zero) ". ";
  font-weight: 600;
  color: #fff;
  position: absolute;
  left: -110px;
  top: 30px;
}
@media (max-width: 991px) {
  .cs-iconbox_3_list.cs-style2 .cs-hover_tab::before {
    left: -40px;
  }
}
@media (max-width: 575px) {
  .cs-iconbox_3_list.cs-style2 .cs-hover_tab::before {
    display: none;
  }
}
.cs-iconbox_3_list.cs-style2 .cs-hover_tab.active .cs-image_layer.cs-style1 {
  opacity: 1;
  visibility: visible;
  transform: rotate(15deg) translateY(-50%);
}

.cs-iconbox.cs-style3 {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-bottom: 25px;
  padding-top: 25px;
  color: rgba(254, 254, 254, 0.7);
}
.cs-iconbox.cs-style3 .cs-iconbox_in {
  margin-right: 30px;
  max-width: 480px;
}
.cs-iconbox.cs-style3 .cs-iconbox_icon {
  color: #999696;
  border: 2px solid #999696;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  flex: none;
  transition: all 0.3s ease;
}
.cs-iconbox.cs-style3 .cs-iconbox_icon:hover {
  color: #fff;
  background-color: var(--accent);
  border-color: var(--accent);
}
.cs-iconbox.cs-style3 .cs-iconbox_title {
  font-size: 30px;
  margin-bottom: 15px;
}
.cs-iconbox.cs-style3 .cs-iconbox_subtitle {
  line-height: 1.75em;
}
.cs-iconbox.cs-style3:hover .cs-iconbox_icon {
  color: #fff;
  background-color: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 991px) {
  .cs-iconbox.cs-style3 .cs-iconbox_title {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .cs-iconbox.cs-style3 {
    flex-direction: column;
    align-items: flex-start;
  }
  .cs-iconbox.cs-style3 .cs-iconbox_icon {
    position: initial;
    transform: initial;
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
  }
  .cs-iconbox.cs-style3 .cs-iconbox_icon svg {
    max-height: 22px;
  }
}

@keyframes inactiveImageAnimation1 {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
}
@keyframes activeImageAnimation1 {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.cs-service_tech_section {
  --service-primary: #00f5ff;
  --service-secondary: #6d5dfc;
  position: relative;
  overflow: visible;
  padding: 112px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 48px), linear-gradient(180deg, #05070c 0%, #0c111d 48%, #05060b 100%);
  color: #f8fafc;
}

.cs-service_tech_section::before,
.cs-service_tech_section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cs-service_tech_section::before {
  inset: 0;
  background: radial-gradient(circle at 15% 18%, rgba(0, 245, 255, 0.17), transparent 32%), radial-gradient(circle at 86% 8%, rgba(255, 44, 196, 0.12), transparent 28%), radial-gradient(circle at 72% 88%, rgba(56, 239, 125, 0.1), transparent 30%);
}

.cs-service_tech_section::after {
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.7), rgba(255, 44, 196, 0.56), transparent);
}

.cs-service_tech_head {
  position: relative;
  z-index: 2;
  max-width: 790px;
  margin: 0 auto 56px;
  text-align: center;
}

.cs-service_tech_kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 245, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 245, 255, 0.08);
  color: #6ffcff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 0 26px rgba(0, 245, 255, 0.16);
}

.cs-service_tech_head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(0, 245, 255, 0.16);
}

.cs-service_tech_head p {
  max-width: 640px;
  margin: 16px auto 0;
  color: #aeb8ca;
  font-size: 17px;
  line-height: 1.7;
}

.cs-service_tech_all_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 26px;
  padding: 0 18px;
  border: 1px solid rgba(0, 245, 255, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.14), rgba(109, 93, 252, 0.14)), rgba(255, 255, 255, 0.045);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 245, 255, 0.14);
}

.cs-service_tech_all_link:hover {
  color: #ffffff;
  border-color: var(--service-primary);
  transform: translateY(-1px);
}

.cs-service_tech_shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.cs-service_tech_preview,
.cs-service_tech_matrix {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)), rgba(9, 13, 23, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.cs-service_tech_preview_slot {
  position: sticky;
  top: 96px;
  align-self: start;
  z-index: 4;
  min-width: 0;
  height: -moz-max-content;
  height: max-content;
}

.cs-service_tech_preview {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 124px);
  overflow: hidden;
}

.cs-service_tech_preview::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, transparent, var(--service-primary), var(--service-secondary), transparent 72%);
  opacity: 0.38;
  animation: service-border-spin 8s linear infinite;
}

.cs-service_tech_preview > * {
  position: relative;
  z-index: 1;
}

.cs-service_tech_preview_media {
  position: relative;
  flex: 0 0 auto;
  height: clamp(230px, 34vh, 360px);
  margin: 14px 14px 0;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.16), rgba(255, 44, 196, 0.08)), #101827;
}

.cs-service_tech_preview_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.02);
  animation: service-preview-float 9s ease-in-out infinite;
}

.cs-service_tech_preview_media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 7, 12, 0.08) 46%, rgba(5, 7, 12, 0.82) 100%), linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 50%, transparent 52%);
  pointer-events: none;
}

.cs-service_tech_scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: -30%;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(0, 245, 255, 0.26), transparent);
  mix-blend-mode: screen;
  animation: service-scanline 3.5s ease-in-out infinite;
}

.cs-service_tech_preview_body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 28px;
}

.cs-service_tech_preview_meta,
.cs-service_tech_preview_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cs-service_tech_preview_meta {
  margin-bottom: 18px;
}

.cs-service_tech_preview_meta span,
.cs-service_tech_signal {
  color: #8fa1ba;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cs-service_tech_preview_meta strong {
  color: var(--service-primary);
  font-size: 28px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0, 245, 255, 0.32);
}

.cs-service_tech_preview_body h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.cs-service_tech_preview_body p {
  display: -webkit-box;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #aeb8ca;
  font-size: 15px;
  line-height: 1.75;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.cs-service_tech_preview_footer {
  margin-top: 24px;
}

.cs-service_tech_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--service-primary), var(--service-secondary));
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 245, 255, 0.18);
}

.cs-service_tech_cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.cs-service_tech_matrix {
  padding: 18px;
}

.cs-service_tech_stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.cs-service_tech_stats span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #d7e4f7;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-overflow: ellipsis;
  line-height: 1.24;
}

.cs-service_tech_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cs-service_tech_card {
  position: relative;
  display: grid;
  grid-template-columns: auto 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 132px;
  width: 100%;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)), rgba(8, 12, 22, 0.92);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
}

.cs-service_tech_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.14) 45%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.cs-service_tech_card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-primary), var(--card-secondary), transparent);
  opacity: 0.45;
}

.cs-service_tech_card:hover,
.cs-service_tech_card:focus,
.cs-service_tech_card.is-active {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--card-primary), white 12%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)), rgba(12, 18, 33, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26), 0 0 34px color-mix(in srgb, var(--card-primary), transparent 70%);
  outline: none;
}

.cs-service_tech_card:hover::before,
.cs-service_tech_card:focus::before,
.cs-service_tech_card.is-active::before {
  opacity: 1;
  animation: service-card-scan 0.9s ease forwards;
}

.cs-service_tech_card_number {
  color: var(--card-primary);
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 0 16px color-mix(in srgb, var(--card-primary), transparent 35%);
}

.cs-service_tech_card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--card-primary), var(--card-secondary)), #111827;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.cs-service_tech_card_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.cs-service_tech_card_icon span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.cs-service_tech_card_body {
  min-width: 0;
}

.cs-service_tech_card_body strong,
.cs-service_tech_card_body small {
  display: block;
  letter-spacing: 0;
}

.cs-service_tech_card_body strong {
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.cs-service_tech_card_body small {
  display: -webkit-box;
  overflow: hidden;
  color: #9fadc2;
  font-size: 12px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cs-service_tech_card_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--card-primary);
  transition: transform 0.26s ease, background 0.26s ease, color 0.26s ease;
}

.cs-service_tech_card:hover .cs-service_tech_card_arrow,
.cs-service_tech_card:focus .cs-service_tech_card_arrow,
.cs-service_tech_card.is-active .cs-service_tech_card_arrow {
  transform: translate(2px, -2px);
  background: linear-gradient(135deg, var(--card-primary), var(--card-secondary));
  color: #ffffff;
}

@keyframes service-border-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes service-preview-float {
  0%, 100% {
    transform: scale(1.02) translateY(0);
  }
  50% {
    transform: scale(1.07) translateY(-10px);
  }
}
@keyframes service-scanline {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20%, 65% {
    opacity: 1;
  }
  100% {
    transform: translateY(460px);
    opacity: 0;
  }
}
@keyframes service-card-scan {
  to {
    transform: translateX(120%);
  }
}
@media screen and (max-width: 1399px) {
  .cs-service_tech_shell {
    grid-template-columns: minmax(320px, 0.64fr) minmax(0, 1fr);
  }
  .cs-service_tech_card {
    grid-template-columns: auto 48px minmax(0, 1fr);
  }
  .cs-service_tech_card_arrow {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .cs-service_tech_shell {
    grid-template-columns: 1fr;
  }
  .cs-service_tech_preview_slot {
    position: relative;
    top: auto;
  }
  .cs-service_tech_preview {
    max-height: none;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .cs-service_tech_preview_media {
    height: auto;
    min-height: 360px;
    margin: 14px 0 14px 14px;
  }
}
@media screen and (max-width: 991px) {
  .cs-service_tech_section {
    padding: 86px 0;
  }
  .cs-service_tech_head h2 {
    font-size: 40px;
  }
  .cs-service_tech_preview {
    display: block;
  }
  .cs-service_tech_preview_media {
    height: 300px;
    min-height: 0;
    margin: 14px 14px 0;
  }
  .cs-service_tech_stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cs-service_tech_grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .cs-service_tech_section {
    padding: 72px 0;
  }
  .cs-service_tech_head {
    margin-bottom: 34px;
    text-align: left;
  }
  .cs-service_tech_head h2 {
    font-size: 34px;
  }
  .cs-service_tech_head p {
    margin-left: 0;
    margin-right: 0;
  }
  .cs-service_tech_all_link {
    width: 100%;
    margin-top: 22px;
  }
  .cs-service_tech_shell {
    gap: 14px;
  }
  .cs-service_tech_preview_slot {
    position: sticky;
    top: 70px;
    z-index: 8;
  }
  .cs-service_tech_preview {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    max-height: none;
    overflow: hidden;
    border-color: color-mix(in srgb, var(--service-primary), transparent 42%);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36), 0 0 30px color-mix(in srgb, var(--service-primary), transparent 80%);
  }
  .cs-service_tech_preview::before {
    opacity: 0.2;
  }
  .cs-service_tech_preview_media {
    height: 78px;
    min-height: 0;
    margin: 10px 0 10px 10px;
  }
  .cs-service_tech_preview_media::after,
  .cs-service_tech_scanline {
    display: none;
  }
  .cs-service_tech_preview_body {
    min-width: 0;
    padding: 10px 12px;
  }
  .cs-service_tech_preview_meta {
    margin-bottom: 4px;
  }
  .cs-service_tech_preview_meta span,
  .cs-service_tech_signal,
  .cs-service_tech_preview_body p {
    display: none;
  }
  .cs-service_tech_preview_meta strong {
    font-size: 16px;
  }
  .cs-service_tech_preview_body h3 {
    display: -webkit-box;
    margin-bottom: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .cs-service_tech_preview_footer {
    margin-top: 8px;
  }
  .cs-service_tech_cta {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 7px;
    font-size: 12px;
  }
  .cs-service_tech_cta svg {
    width: 14px;
    height: 14px;
  }
  .cs-service_tech_matrix {
    padding: 10px;
  }
  .cs-service_tech_card {
    min-height: auto;
  }
}
@media screen and (max-width: 575px) {
  .cs-service_tech_head h2 {
    font-size: 32px;
  }
  .cs-service_tech_head p {
    font-size: 15px;
  }
  .cs-service_tech_preview_body {
    padding: 22px;
  }
  .cs-service_tech_preview_body h3 {
    font-size: 26px;
  }
  .cs-service_tech_preview_body p {
    min-height: 0;
  }
  .cs-service_tech_preview_footer {
    align-items: center;
    flex-direction: row;
  }
  .cs-service_tech_matrix {
    padding: 12px;
  }
  .cs-service_tech_stats {
    display: none;
  }
  .cs-service_tech_card {
    grid-template-columns: auto 44px minmax(0, 1fr);
    min-height: 116px;
    gap: 10px;
    padding: 13px;
  }
  .cs-service_tech_card_icon {
    width: 44px;
    height: 44px;
  }
  .cs-service_tech_card_body strong {
    font-size: 15px;
  }
}
@supports not (color: color-mix(in srgb, #fff, #000)) {
  .cs-service_tech_card:hover,
  .cs-service_tech_card:focus,
  .cs-service_tech_card.is-active {
    border-color: var(--card-primary);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26), 0 0 34px rgba(0, 245, 255, 0.18);
  }
  .cs-service_tech_card_number {
    text-shadow: 0 0 16px rgba(0, 245, 255, 0.35);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cs-service_tech_preview::before,
  .cs-service_tech_preview_media img,
  .cs-service_tech_scanline,
  .cs-service_tech_card:hover::before,
  .cs-service_tech_card:focus::before,
  .cs-service_tech_card.is-active::before {
    animation: none;
  }
}
.cs-shccaas_page {
  position: relative;
  overflow: hidden;
  color: #fff7ed;
  background: radial-gradient(circle at 18% 8%, rgba(220, 38, 38, 0.2), transparent 34%), radial-gradient(circle at 86% 18%, rgba(245, 158, 11, 0.14), transparent 28%), linear-gradient(180deg, #08070a 0%, #13080b 44%, #08070a 100%);
}

.cs-shccaas_hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 150px 0 105px;
  isolation: isolate;
}

.cs-shccaas_grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 78%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 78%, transparent 100%);
}

.cs-shccaas_glow {
  position: absolute;
  z-index: -2;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
}

.cs-shccaas_glow_1 {
  top: 110px;
  left: -160px;
  background: rgba(185, 28, 28, 0.62);
}

.cs-shccaas_glow_2 {
  right: -140px;
  bottom: 70px;
  background: rgba(245, 158, 11, 0.28);
}

.cs-shccaas_hero_inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 58px;
  align-items: center;
}

.cs-shccaas_copy {
  max-width: 740px;
}

.cs-shccaas_kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #ffd27a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cs-shccaas_kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444, #facc15);
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.5);
}

.cs-shccaas_copy h1 {
  margin: 0;
  max-width: 700px;
  color: #fffaf0;
  font-size: clamp(52px, 7vw, 108px);
  line-height: 0.92;
  font-weight: 900;
}

.cs-shccaas_lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 247, 237, 0.82);
  font-size: 21px;
  line-height: 1.65;
}

.cs-shccaas_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.cs-shccaas_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  overflow: hidden;
}

.cs-shccaas_btn_primary {
  color: #17090a;
  background: linear-gradient(135deg, #fff0ad, #ffb703 48%, #ef4444);
  box-shadow: 0 22px 60px rgba(239, 68, 68, 0.28);
}

.cs-shccaas_btn_secondary {
  color: #fff7ed;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.cs-shccaas_receipt {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)), rgba(10, 7, 9, 0.82);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
}

.cs-shccaas_receipt::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.6), rgba(239, 68, 68, 0.1), rgba(255, 255, 255, 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.cs-shccaas_logo_orbit {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
}

.cs-shccaas_logo_orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 223, 128, 0.48);
  animation: shccaasSpin 14s linear infinite;
}

.cs-shccaas_logo_orbit span::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 30px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #facc15;
  box-shadow: 0 0 28px #facc15;
}

.cs-shccaas_logo_orbit img {
  position: relative;
  width: 138px;
  height: 138px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 36px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.cs-shccaas_receipt_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-shccaas_receipt_head span {
  color: rgba(255, 247, 237, 0.72);
  font-weight: 800;
}

.cs-shccaas_receipt_head strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #86efac;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cs-shccaas_receipt_head strong::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.95);
}

.cs-shccaas_receipt_rows {
  display: grid;
  gap: 0;
}

.cs-shccaas_receipt_row {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-shccaas_receipt_row:last-child {
  border-bottom: 0;
}

.cs-shccaas_receipt_row span {
  color: rgba(255, 247, 237, 0.58);
}

.cs-shccaas_receipt_row strong {
  color: #fffaf0;
  text-align: right;
  overflow-wrap: anywhere;
}

.cs-shccaas_status,
.cs-shccaas_next,
.cs-shccaas_portfolio {
  position: relative;
  padding: 105px 0;
}

.cs-shccaas_status {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

.cs-shccaas_status_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cs-shccaas_status_card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.cs-shccaas_status_card::after {
  content: "";
  position: absolute;
  inset: auto -35% -55% 20%;
  height: 150px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.28), transparent);
  transform: rotate(-12deg);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.cs-shccaas_status_card:hover::after {
  transform: rotate(-12deg) translateY(-86px);
  opacity: 1;
}

.cs-shccaas_status_card span {
  color: #ffd27a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.cs-shccaas_status_card h2 {
  margin: 55px 0 14px;
  color: #fffaf0;
  font-size: 28px;
}

.cs-shccaas_status_card p {
  margin: 0;
  color: rgba(255, 247, 237, 0.72);
  line-height: 1.72;
}

.cs-shccaas_next_inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
  padding: 48px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 0 0, rgba(239, 68, 68, 0.18), transparent 34%), rgba(255, 255, 255, 0.05);
}

.cs-shccaas_next h2 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.cs-shccaas_next ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs-shccaas_next li {
  position: relative;
  padding: 18px 20px 18px 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: rgba(255, 247, 237, 0.78);
  background: rgba(0, 0, 0, 0.18);
}

.cs-shccaas_next li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.8);
}

.cs-shccaas_home_services {
  position: relative;
}

.cs-shccaas_portfolio {
  background: radial-gradient(circle at 82% 10%, rgba(250, 204, 21, 0.12), transparent 28%), linear-gradient(180deg, #08070a 0%, #11070a 100%);
}

.cs-shccaas_portfolio .cs-section_heading.cs-style1 .cs-section_subtitle {
  color: #ffd27a;
}

@keyframes shccaasSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1199px) {
  .cs-shccaas_hero_inner,
  .cs-shccaas_next_inner {
    grid-template-columns: 1fr;
  }
  .cs-shccaas_receipt {
    max-width: 560px;
  }
}
@media (max-width: 991px) {
  .cs-shccaas_hero {
    min-height: auto;
    padding: 130px 0 80px;
  }
  .cs-shccaas_status_grid {
    grid-template-columns: 1fr;
  }
  .cs-shccaas_status,
  .cs-shccaas_next,
  .cs-shccaas_portfolio {
    padding: 72px 0;
  }
}
@media (max-width: 575px) {
  .cs-shccaas_hero {
    padding: 112px 0 64px;
  }
  .cs-shccaas_copy h1 {
    font-size: 50px;
  }
  .cs-shccaas_lead {
    font-size: 17px;
  }
  .cs-shccaas_actions {
    flex-direction: column;
  }
  .cs-shccaas_btn {
    width: 100%;
  }
  .cs-shccaas_receipt,
  .cs-shccaas_next_inner,
  .cs-shccaas_status_card {
    padding: 24px;
    border-radius: 20px;
  }
  .cs-shccaas_receipt_row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .cs-shccaas_receipt_row strong {
    text-align: left;
  }
  .cs-shccaas_next li {
    padding-right: 16px;
  }
}
.cs-team_tech_section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 96px;
  background: radial-gradient(circle at 10% 15%, rgba(0, 245, 255, 0.16), transparent 32%), radial-gradient(circle at 88% 12%, rgba(255, 44, 196, 0.12), transparent 30%), linear-gradient(180deg, #05070c 0%, #0b101b 52%, #05060b 100%);
  color: #f8fafc;
}

.cs-team_tech_gridline {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.cs-team_tech_glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.cs-team_tech_glow_1 {
  left: -150px;
  bottom: 15%;
  background: rgba(0, 245, 255, 0.2);
}

.cs-team_tech_glow_2 {
  right: -120px;
  top: 12%;
  background: rgba(214, 255, 63, 0.14);
}

.cs-team_tech_section .container {
  position: relative;
  z-index: 2;
}

.cs-team_tech_head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 26px;
}

.cs-team_tech_kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 245, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 245, 255, 0.08);
  color: #6ffcff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 0 26px rgba(0, 245, 255, 0.16);
}

.cs-team_tech_head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.cs-team_tech_head p {
  margin: 0;
  color: #aeb8ca;
  font-size: 17px;
  line-height: 1.75;
}

.cs-team_tech_status {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.cs-team_tech_status span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #d7e4f7;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.cs-team_tech_status strong {
  margin-right: 10px;
  color: #d6ff3f;
  font-size: 22px;
  text-shadow: 0 0 18px rgba(214, 255, 63, 0.42);
}

.cs-team_tech_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cs-team.cs-style1 {
  overflow: hidden;
  position: relative;
  min-height: 418px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)), rgba(9, 13, 23, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  isolation: isolate;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}
.cs-team.cs-style1::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from 180deg, transparent, var(--team-accent), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cs-team.cs-style1::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--team-accent), transparent);
  opacity: 0.75;
}
.cs-team.cs-style1 .cs-team_tech_topbar {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #d7e4f7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.cs-team.cs-style1 .cs-team_tech_topbar span:first-child {
  color: var(--team-accent);
  text-shadow: 0 0 16px color-mix(in srgb, var(--team-accent), transparent 45%);
}
.cs-team.cs-style1 .cs-member_thumb {
  height: 100%;
  min-height: 418px;
  border-radius: inherit;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--team-accent), transparent 75%), transparent 35%), #111827;
}
.cs-team.cs-style1 .cs-member_thumb img {
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  margin: 11px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  position: relative;
  z-index: 1;
  border-radius: 7px;
  transition: transform 0.8s ease, filter 0.8s ease;
  filter: saturate(0.95) contrast(1.05);
}
.cs-team.cs-style1 .cs-member_initials {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  margin: 11px;
  border-radius: 7px;
  color: #ffffff;
  font-size: 62px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--team-accent), #111827);
}
.cs-team.cs-style1 .cs-member_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: inherit;
  z-index: 2;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.18) 0%, rgba(5, 7, 12, 0.08) 45%, rgba(5, 7, 12, 0.94) 100%), linear-gradient(90deg, rgba(5, 7, 12, 0.72), transparent 30%, transparent 70%, rgba(5, 7, 12, 0.42));
}
.cs-team.cs-style1 .cs-member_scan {
  position: absolute;
  left: 11px;
  right: 11px;
  top: -30%;
  z-index: 3;
  height: 120px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--team-accent), transparent 70%), transparent);
  mix-blend-mode: screen;
  opacity: 0;
}
.cs-team.cs-style1 .cs-member_social svg {
  height: 16px;
  width: 16px;
}
.cs-team.cs-style1 .cs-member_name {
  color: #ffffff;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.06;
  margin-bottom: 8px;
  max-width: 320px;
}
.cs-team.cs-style1 .cs-member_info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
  padding: 24px 20px 26px;
}
.cs-team.cs-style1 .cs-member_designation {
  display: inline-flex;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--team-accent), transparent 62%);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7e4f7;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.cs-team.cs-style1 .cs-member_summary {
  margin: 14px 0 0;
  max-width: 320px;
  color: #aeb8ca;
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-team.cs-style1 .cs-member_actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.cs-team.cs-style1 .cs-member_action_primary,
.cs-team.cs-style1 .cs-member_action_secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: all 0.28s ease;
}
.cs-team.cs-style1 .cs-member_action_primary {
  background: var(--team-accent);
  color: #05070c;
}
.cs-team.cs-style1 .cs-member_action_primary:hover {
  transform: translateY(-2px);
  color: #05070c;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--team-accent), transparent 72%);
}
.cs-team.cs-style1 .cs-member_action_secondary {
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
}
.cs-team.cs-style1 .cs-member_action_secondary:hover {
  border-color: color-mix(in srgb, var(--team-accent), transparent 55%);
  color: #ffffff;
}
.cs-team.cs-style1 .cs-member_social {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 52px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 120px;
  gap: 8px;
}
.cs-team.cs-style1 .cs-member_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 7, 12, 0.68);
  color: #ffffff;
  transform: scale(0) rotate(45deg);
  opacity: 0;
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.cs-team.cs-style1 .cs-member_social a:hover {
  background: var(--team-accent);
  color: #05070c;
}
.cs-team.cs-style1:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--team-accent), white 12%);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.42), 0 0 42px color-mix(in srgb, var(--team-accent), transparent 78%);
}
.cs-team.cs-style1:hover::before {
  opacity: 0.55;
  animation: team-border-spin 8s linear infinite;
}
.cs-team.cs-style1:hover .cs-member_scan {
  opacity: 1;
  animation: team-scanline 1.9s ease-in-out;
}
.cs-team.cs-style1:hover .cs-member_social a {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.cs-team.cs-style1:hover .cs-member_thumb img {
  transform: scale(1.06) translateY(8px);
  filter: saturate(1.12) contrast(1.08);
}

.cs-team_profile_page {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.12), transparent 24%), radial-gradient(circle at right center, rgba(255, 44, 196, 0.11), transparent 22%), linear-gradient(180deg, #05070c 0%, #0a0f19 55%, #05070c 100%);
}

.cs-team_profile_shell {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 34px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(8, 12, 21, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.cs-team_profile_media {
  position: relative;
  min-height: 580px;
  border-radius: 8px;
  overflow: hidden;
  background: #0e1523;
}
.cs-team_profile_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.cs-team_profile_badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(5, 7, 12, 0.74);
  border: 1px solid rgba(0, 245, 255, 0.28);
  color: #6ffcff;
  font-size: 12px;
  font-weight: 800;
}

.cs-team_profile_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  color: #f8fafc;
}
.cs-team_profile_content h1 {
  margin: 18px 0 14px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
}
.cs-team_profile_content p {
  margin: 0;
  max-width: 720px;
  color: #acb7ca;
  font-size: 18px;
  line-height: 1.8;
}

.cs-team_profile_back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8ea0bd;
  font-size: 14px;
  font-weight: 700;
}

.cs-team_profile_kicker {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  margin-top: 28px;
  border: 1px solid rgba(214, 255, 63, 0.26);
  border-radius: 8px;
  background: rgba(214, 255, 63, 0.08);
  color: #d6ff3f;
  font-size: 13px;
  font-weight: 800;
}

.cs-team_profile_capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.cs-team_profile_capabilities span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #edf3ff;
  font-size: 13px;
  font-weight: 700;
}

.cs-team_profile_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.cs-team_profile_actions button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.28s ease;
}
.cs-team_profile_actions button:hover {
  border-color: rgba(0, 245, 255, 0.34);
  box-shadow: 0 0 26px rgba(0, 245, 255, 0.12);
}

.cs-team_profile_socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.cs-team_profile_socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.cs-team_profile_related {
  margin-top: 30px;
}

.cs-team_profile_related_head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 20px;
}
.cs-team_profile_related_head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
}
.cs-team_profile_related_head p {
  margin: 0;
  color: #99a9c1;
  max-width: 420px;
}

.cs-team_profile_related_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cs-team_profile_related_card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(8, 12, 21, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.cs-team_profile_related_card img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 8px;
}
.cs-team_profile_related_card strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}
.cs-team_profile_related_card span {
  color: #9fb0c8;
  font-size: 14px;
}
.cs-team_profile_related_card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 255, 0.26);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

@keyframes team-border-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes team-scanline {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(680px);
  }
}
@media screen and (max-width: 991px) {
  .cs-team_tech_section {
    padding: 86px 0 70px;
  }
  .cs-team_tech_head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cs-team_tech_status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cs-team_tech_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .cs-team.cs-style1,
  .cs-team.cs-style1 .cs-member_thumb {
    min-height: 390px;
  }
  .cs-team_profile_shell {
    grid-template-columns: 1fr;
  }
  .cs-team_profile_media {
    min-height: 460px;
  }
  .cs-team_profile_related_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .cs-team_tech_grid {
    grid-template-columns: 1fr;
  }
  .cs-team.cs-style1,
  .cs-team.cs-style1 .cs-member_thumb {
    min-height: 430px;
  }
  .cs-team.cs-style1 .cs-member_summary {
    font-size: 13px;
  }
  .cs-team_profile_related_head {
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 575px) {
  .cs-team_tech_section {
    padding: 72px 0 58px;
  }
  .cs-team_tech_head h2 {
    font-size: 38px;
  }
  .cs-team_tech_head p {
    font-size: 15px;
  }
  .cs-team_tech_status {
    grid-template-columns: 1fr;
  }
  .cs-team.cs-style1,
  .cs-team.cs-style1 .cs-member_thumb {
    min-height: 400px;
  }
  .cs-team.cs-style1 .cs-member_social {
    top: 48px;
    right: 14px;
  }
  .cs-team.cs-style1 .cs-member_info {
    padding: 22px 16px 24px;
  }
  .cs-team.cs-style1 .cs-member_designation {
    font-size: 12px;
  }
  .cs-team.cs-style1 .cs-member_actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cs-team.cs-style1 .cs-member_action_primary,
  .cs-team.cs-style1 .cs-member_action_secondary {
    width: 100%;
  }
  .cs-team_profile_shell {
    padding: 18px;
  }
  .cs-team_profile_media {
    min-height: 360px;
  }
  .cs-team_profile_content p {
    font-size: 16px;
  }
  .cs-team_profile_actions {
    flex-direction: column;
  }
  .cs-team_profile_actions button {
    width: 100%;
    justify-content: center;
  }
  .cs-team_profile_related_grid {
    grid-template-columns: 1fr;
  }
}
@supports not (color: color-mix(in srgb, #fff, #000)) {
  .cs-team.cs-style1 .cs-member_thumb {
    background: #111827;
  }
  .cs-team.cs-style1 .cs-member_designation {
    border-color: var(--team-accent);
  }
  .cs-team.cs-style1:hover {
    border-color: var(--team-accent);
    box-shadow: 0 30px 86px rgba(0, 0, 0, 0.42), 0 0 42px rgba(0, 245, 255, 0.18);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cs-team.cs-style1,
  .cs-team.cs-style1 .cs-member_thumb img,
  .cs-team.cs-style1::before,
  .cs-team.cs-style1 .cs-member_scan {
    animation: none !important;
    transition: none !important;
  }
}
.cs-testimonial.cs-style1 {
  position: relative;
  padding-left: 70px;
  padding-top: 70px;
}
.cs-testimonial.cs-style1 .cs-testimonial_quote {
  position: absolute;
  top: 0;
  left: 1px;
  font-size: 42px;
  color: #fefefe;
}
.cs-testimonial.cs-style1 .cs-testimonial_text {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 600;
  color: #fefefe;
}
.cs-testimonial.cs-style1 .cs-rating {
  margin-top: 24px;
}
.cs-testimonial.cs-style1 .cs-testimonial_avatar_name {
  font-size: 22px;
  margin-bottom: 0;
  margin-top: 70px;
}
.cs-testimonial.cs-style1 .cs-testimonial_avatar_designation {
  margin-top: 10px;
}
.cs-testimonial.cs-style1 .cs-testimonial_avatar_designation::before {
  content: "";
  height: 2px;
  width: 20px;
  background-color: #d9d9d9;
  display: inline-block;
  position: relative;
  top: -4px;
  border-radius: 3px;
  margin-right: 10px;
}

.cs-testimonial_slider_2 {
  text-align: center;
}
.cs-testimonial_slider_2 .cs-testimonial_slider_left {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style1 {
  padding-left: 0;
  padding-top: 0px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style1 .cs-testimonial_quote {
  position: initial;
  margin-bottom: 20px;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style1 .cs-rating {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style1 .cs-testimonial_avatar_name {
  margin-top: 30px;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style1 .cs-testimonial_avatar_designation {
  margin-top: 10px;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style3 {
  padding: 50px;
  border-radius: 5px;
  background: linear-gradient(267deg, #161616 0%, #080808 100%);
}
@media (max-width: 991px) {
  .cs-testimonial_slider_2 .cs-testimonial.cs-style3 {
    padding: 30px;
  }
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style3 .cs-client_img {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style3 .cs-client_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style3 .cs-client_info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style3 .cs-client_review {
  margin-bottom: 40px;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style3 .cs-client_name {
  font-size: 22px;
  margin-bottom: 0;
  line-height: 1.5em;
}
.cs-testimonial_slider_2 .cs-testimonial.cs-style3 .cs-client_designation {
  font-weight: 600;
}
@media (max-width: 420px) {
  .cs-testimonial_slider_2 {
    margin-bottom: -30px;
  }
  .cs-testimonial_slider_2 .cs-testimonial.cs-style1 {
    padding-bottom: 70px;
  }
  .cs-testimonial_slider_2 .cs-arrow_style1 .slick-prev,
  .cs-testimonial_slider_2 .cs-arrow_style1 .slick-next {
    bottom: 0;
  }
}
@media (min-width: 421px) {
  .cs-testimonial_slider_2 .cs-arrow_style1 .slick-prev,
  .cs-testimonial_slider_2 .cs-arrow_style1 .slick-next {
    top: 0;
    border: none;
    width: initial;
  }
  .cs-testimonial_slider_2 .cs-arrow_style1 .slick-prev:hover,
  .cs-testimonial_slider_2 .cs-arrow_style1 .slick-next:hover {
    background-color: transparent;
    opacity: 0.8;
  }
  .cs-testimonial_slider_2 .cs-arrow_style1 .slick-prev {
    left: 0;
    right: initial;
  }
}

.cs-testimonial.cs-style3 {
  padding: 50px;
  border-radius: 5px;
  background: linear-gradient(267deg, #161616 0%, #080808 100%);
}
@media (max-width: 991px) {
  .cs-testimonial.cs-style3 {
    padding: 30px;
  }
}
.cs-testimonial.cs-style3 .cs-client_img {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.cs-testimonial.cs-style3 .cs-client_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs-testimonial.cs-style3 .cs-client_info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .cs-testimonial.cs-style3 .cs-client_info {
    margin-bottom: 30px;
  }
}
.cs-testimonial.cs-style3 .cs-client_review {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cs-testimonial.cs-style3 .cs-client_review {
    margin-bottom: 30px;
  }
}
.cs-testimonial.cs-style3 .cs-client_name {
  font-size: 22px;
  margin-bottom: 0;
  line-height: 1.5em;
}
.cs-testimonial.cs-style3 .cs-client_designation {
  font-weight: 600;
}

.cs-arrow_style2 .cs-testimonial.cs-style3 {
  margin-bottom: 70px;
}

@media screen and (max-width: 1380px) {
  .cs-testimonial.cs-style1 .cs-testimonial_text,
  .cs-testimonial.cs-style1 .cs-testimonial_avatar_name {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .cs-testimonial.cs-style1 {
    padding-left: 20px;
    padding-top: 60px;
  }
  .cs-testimonial.cs-style1 .cs-testimonial_avatar_name {
    margin-top: 30px;
  }
}
.cs-time_line.cs-style1 h3 {
  font-size: 30px;
  margin-bottom: 15px;
}
.cs-time_line.cs-style1 h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.cs-time_line.cs-style1 p {
  margin-bottom: 7px;
}
.cs-time_line.cs-style1 p:last-child {
  margin-bottom: 0;
}

.cs-time_line.cs-style1 + .cs-time_line.cs-style1 {
  margin-top: 40px;
}

@media screen and (max-width: 1380px) {
  .cs-time_line.cs-style1 h3 {
    font-size: 26px;
  }
  .cs-time_line.cs-style1 h2 {
    font-size: 20px;
  }
}
.cs-fooer_main {
  padding: 95px 0 35px;
}

.cs-footer_item {
  margin-bottom: 40px;
}
.cs-footer_item .cs-newsletter.cs-style1 {
  margin-top: 6px;
}

.cs-widget_title {
  font-size: 18px;
  margin-bottom: 35px;
}

.cs-menu_widget.cs-style1 {
  padding: 0;
  margin: 0;
  list-style: none;
}
.cs-menu_widget.cs-style1 li {
  display: flex;
}
.cs-menu_widget.cs-style1 li span {
  font-size: 24px;
  flex: none;
  width: 35px;
}
.cs-menu_widget.cs-style1 li:not(:last-child) {
  margin-bottom: 20px;
}

.cs-menu_widget.cs-style2 {
  display: flex;
  flex-wrap: wrap;
}
.cs-menu_widget.cs-style2 li:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
  position: relative;
  top: -1px;
}

.cs-text_widget p {
  margin: 0;
}
.cs-text_widget img + p {
  margin-top: 30px;
}

.cs-social_btns.cs-style1 {
  display: flex;
  flex-wrap: wrap;
  margin: -7px;
}
.cs-social_btns.cs-style1 a {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 7px;
  color: #fff;
}
.cs-social_btns.cs-style1 a:hover {
  border-color: var(--accent);
  transform: scale(1.08);
}
.cs-social_btns.cs-style1 a:hover svg {
  fill: var(--accent);
}

.cs-newsletter.cs-style1 .cs-newsletter_form {
  position: relative;
}
.cs-newsletter.cs-style1 .cs-newsletter_input {
  height: 50px;
  width: 100%;
  border-radius: 10px;
  background-color: #000;
  border: none;
  padding: 5px 90px 5px 15px;
  outline: none;
  color: #fff;
}
.cs-newsletter.cs-style1 .cs-newsletter_btn {
  padding: 7px 25px;
  border-radius: 10px;
  color: #fff;
  background-color: var(--accent);
  position: absolute;
  top: 5px;
  right: 5px;
  font-weight: 600;
  border: none;
  overflow: hidden;
}
.cs-newsletter.cs-style1 .cs-newsletter_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 22, 22, 0.4);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
  border-radius: inherit;
}
.cs-newsletter.cs-style1 .cs-newsletter_btn span {
  position: relative;
  z-index: 1;
}
.cs-newsletter.cs-style1 .cs-newsletter_btn:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.cs-newsletter.cs-style1 .cs-newsletter_text {
  margin-top: 25px;
}

.cs-bottom_footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #4d4d4d;
}
.cs-bottom_footer > * {
  padding: 4px 0;
}

.cs-text_widget + .cs-social_btns.cs-style1 {
  margin-top: 25px;
}

@media screen and (max-width: 1199px) {
  .cs-newsletter.cs-style1 .cs-newsletter_btn {
    padding: 7px 15px;
  }
  .cs-newsletter.cs-style1 .cs-newsletter_input {
    padding: 5px 80px 5px 15px;
  }
}
@media screen and (max-width: 991px) {
  .cs-widget_title {
    margin-bottom: 20px;
  }
  .cs-text_widget img + p {
    margin-top: 20px;
  }
  .cs-menu_widget.cs-style1 li:not(:last-child) {
    margin-bottom: 10px;
  }
  .cs-text_widget + .cs-social_btns.cs-style1,
  .cs-newsletter.cs-style1 .cs-newsletter_text {
    margin-top: 15px;
  }
  .cs-fooer_main {
    padding: 60px 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .cs-bottom_footer {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
.rtl {
  text-align: right;
  direction: rtl;
}
.rtl .cs-slide,
.rtl .slick-slide {
  direction: rtl;
}
.rtl .text-end {
  text-align: left !important;
}
.rtl .cs-funfact.cs-style1 .cs-funfact_number {
  margin-left: 14px;
  margin-right: 0;
}
.rtl .cs-funfact_wrap .cs-funfact_right {
  padding-left: 0;
  padding-right: 80px;
}
.rtl .cs-nav .cs-nav_list > li.menu-item-has-children > a::after {
  margin-left: 0px;
  margin-right: 6px;
}
.rtl .cs-text_btn span::before {
  left: initial;
  right: -100%;
  transform: scaleX(0) rotate(180deg);
}
.rtl .cs-text_btn svg {
  margin-left: 0;
  margin-right: 15px;
  transform: rotateY(180deg);
}
.rtl .cs-text_btn.cs-type1 svg {
  margin-left: 15px;
  margin-right: 0px;
}
.rtl .cs-text_btn.cs-type2 svg {
  margin-left: 15px;
  margin-right: 0px;
}
.rtl .cs-text_btn:hover span::before {
  transform: scaleX(1) rotate(180deg);
}
.rtl .cs-hero_social_wrap,
.rtl .cs-toolbox,
.rtl .cs-slider_container,
.rtl .cs-testimonial_slider,
.rtl .cs-moving_text_wrap,
.rtl .cs-swiper_button_next,
.rtl .cs-swiper_button_prev {
  direction: ltr;
}
.rtl .cs-hero.cs-style1 .cs-hero_social_wrap,
.rtl .cs-hero.cs-style2 .cs-hero_social_wrap,
.rtl .cs-hero.cs-style3 .cs-hero_social_wrap,
.rtl .cs-swiper_parallax_slider_wrap .cs-hero_social_wrap,
.rtl .cs-fullscreen_swiper_wrap .cs-hero_social_wrap {
  right: initial;
  left: 45px;
}
.rtl .cs-hero.cs-style1 .cs-hero_social_wrap.cs-left_side,
.rtl .cs-hero.cs-style2 .cs-hero_social_wrap.cs-left_side,
.rtl .cs-hero.cs-style3 .cs-hero_social_wrap.cs-left_side,
.rtl .cs-swiper_parallax_slider_wrap .cs-hero_social_wrap.cs-left_side,
.rtl .cs-fullscreen_swiper_wrap .cs-hero_social_wrap.cs-left_side {
  left: initial;
  right: 45px;
}
.rtl .cs-contact_info.cs-style1 li {
  padding-left: 0;
  padding-right: 35px;
}
.rtl .cs-contact_info.cs-style1 svg {
  left: initial;
  right: 0;
}
.rtl .cs-side_header .cs-side_header_in {
  right: 100%;
}
.rtl .cs-side_header.active .cs-side_header_in {
  right: calc(100% - 500px);
}
.rtl .cs-side_header .cs-side_header_shape {
  right: initial;
  left: 0;
}
.rtl .cs-side_header .cs-side_header_shape::before {
  right: initial;
  left: -90px;
}
.rtl .cs-newsletter.cs-style1 .cs-newsletter_btn {
  right: initial;
  left: 5px;
}
.rtl .cs-newsletter.cs-style1 .cs-newsletter_input {
  padding: 5px 15px 5px 100px;
}
.rtl .cs-slider.cs-style1 .cs-slider_left {
  padding-right: initial;
  padding-left: 12%;
}
.rtl .slick-arrow {
  transform: rotate(180deg);
}
.rtl .cs-testimonial.cs-style1 .cs-testimonial_quote {
  left: initial;
  right: 0;
}
.rtl .cs-testimonial.cs-style1 .cs-testimonial_avatar_designation::before {
  margin-right: 0;
  margin-left: 10px;
}
.rtl .cs-rating > * {
  left: initial;
  right: 0;
}
.rtl .cs-shape_wrap_3 .cs-shape_3 {
  right: initial;
  left: 20px;
}
@media (min-width: 1200px) {
  .rtl .cs-nav .cs-nav_list > li {
    margin-right: initial;
    margin-left: 50px;
  }
  .rtl .cs-nav .cs-nav_list > li:last-child {
    margin-left: 0px;
  }
}
.rtl .slider-for .slick-prev {
  right: initial;
  left: 76px;
}
.rtl .slider-for .slick-next {
  right: initial;
  left: 0;
}
.rtl .cs-close {
  right: initial;
  left: 30px;
}
.rtl .cs-shape_wrap_4 .cs-shape_4:nth-child(1) {
  left: initial;
  right: 5%;
}
.rtl .cs-shape_wrap_4 .cs-shape_4:nth-child(2) {
  left: initial;
  right: 25%;
}
.rtl .cs-hero.cs-style2 .cs-hero_tab_item .cs-hero_tab_img {
  right: initial;
  left: 0;
}
.rtl .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
  padding-right: 14px;
}
.rtl .breadcrumb-item + .breadcrumb-item::before {
  display: none;
}
.rtl .breadcrumb-item + .breadcrumb-item::after {
  content: "";
  height: 17px;
  width: 1px;
  background-color: #fff;
  padding: 0;
  position: relative;
  top: 5px;
  margin-left: 14px;
  float: right;
}
.rtl .cs-accordian_head {
  padding-left: 20px;
  padding-right: 0;
}
.rtl .cs-accordian_toggle {
  right: initial;
  left: 0;
}
.rtl .cs-btn.cs-style1 svg {
  transform: rotate(180deg);
  margin-left: 0px;
  margin-right: 14px;
}
.rtl .cs-isotop_filter.cs-style1 li:not(:last-child) {
  margin-right: 0;
  margin-left: 28px;
}
.rtl .cs-post.cs-style3 .cs-posted_by > span:first-child {
  margin-right: 0;
  margin-left: 12px;
}
.rtl .cs-post.cs-style3 .cs-post_avatar_img {
  margin-right: 0;
  margin-left: 18px;
}
.rtl .cs-hero.cs-style3 .cs-hero_subtitle {
  margin-right: auto;
  margin-left: initial;
}
.rtl .cs-hero.cs-style5 .cs-hero_text {
  padding-left: 0;
  padding-right: 180px;
}
.rtl .swiper-vertical > .swiper-pagination-bullets.cs-swiper_pagination.cs-slide_numbers {
  left: initial;
  right: 115px;
}
@media (max-width: 1199px) {
  .rtl .swiper-vertical > .swiper-pagination-bullets.cs-swiper_pagination.cs-slide_numbers {
    left: initial;
    right: 15px;
  }
}
.rtl .cs-site_header.cs-style1 .cs-munu_toggle {
  right: initial;
  left: 0;
}
.rtl .cs-munu_dropdown_toggle {
  right: initial;
  left: 20px;
}
.rtl .cs-sidebar_search input {
  padding-left: 40px;
  padding-right: 10px;
}
.rtl .cs-sidebar_search_btn {
  right: initial;
  left: 0;
}
.rtl .widget_archive ul li,
.rtl .widget_categories ul li {
  padding-left: 0;
  padding-right: 26px;
}
.rtl .widget_archive ul li::before,
.rtl .widget_categories ul li::before {
  left: initial;
  right: 0;
  transform: rotate(180deg);
}
.rtl .cs-recent_post_thumb {
  margin-right: 0;
  margin-left: 18px;
}
.rtl .cs-post_meta.cs-style1 > *:not(:last-child)::before {
  right: initial;
  left: 0;
}
.rtl .cs-post_meta.cs-style1 > *:not(:last-child) {
  margin-right: 0;
  padding-right: 0;
  margin-left: 12px;
  padding-left: 12px;
}
.rtl .cs-pagination_item svg {
  transform: rotate(180deg);
}
.rtl .cs-post.cs-style2 blockquote small {
  padding-left: 0;
  padding-right: 35px;
}
.rtl .cs-post.cs-style2 blockquote small::before {
  left: initial;
  right: 0;
}
.rtl .cs-post.cs-style2 blockquote {
  border-left: 0;
  border-right: 5px solid var(--accent);
}
.rtl .cs-page_navigation > div:not(:last-child) {
  margin-right: 0;
  padding-right: 0;
  margin-left: 21px;
  padding-left: 21px;
}
.rtl .cs-page_navigation > div:not(:last-child)::after {
  right: initial;
  left: -1px;
}
.rtl .offset-xl-1,
.rtl .offset-lg-1 {
  margin-left: 0;
  margin-right: 8.33333333%;
}
.rtl .offset-xl-2,
.rtl .offset-lg-2 {
  margin-left: 0;
  margin-right: 16.66666667%;
}
.rtl .offset-xl-3,
.rtl .offset-lg-3 {
  margin-left: 0;
  margin-right: 25%;
}
.rtl .offset-xl-4,
.rtl .offset-lg-4 {
  margin-left: 0;
  margin-right: 33.33333333%;
}
.rtl .offset-xl-5,
.rtl .offset-lg-5 {
  margin-left: 0;
  margin-right: 41.66666667%;
}
.rtl .offset-xl-6,
.rtl .offset-lg-6 {
  margin-left: 0;
  margin-right: 58.33333333%;
}
.rtl .offset-xl-7,
.rtl .offset-lg-7 {
  margin-left: 0;
  margin-right: 58.33333333%;
}
.rtl .offset-xl-8,
.rtl .offset-lg-8 {
  margin-left: 0;
  margin-right: 66.66666667%;
}
.rtl .offset-xl-9,
.rtl .offset-lg-9 {
  margin-left: 0;
  margin-right: 75%;
}
.rtl .offset-xl-10,
.rtl .offset-lg-10 {
  margin-left: 0;
  margin-right: 83.33333333%;
}
.rtl .offset-xl-11,
.rtl .offset-lg-11 {
  margin-left: 0;
  margin-right: 91.66666667%;
}
@media (max-width: 1199px) {
  .rtl .offset-xl-1,
  .rtl .offset-xl-2,
  .rtl .offset-xl-3,
  .rtl .offset-xl-4,
  .rtl .offset-xl-5,
  .rtl .offset-xl-6,
  .rtl .offset-xl-7,
  .rtl .offset-xl-8,
  .rtl .offset-xl-9,
  .rtl .offset-xl-10,
  .rtl .offset-xl-11 {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .rtl .offset-lg-1,
  .rtl .offset-lg-2,
  .rtl .offset-lg-3,
  .rtl .offset-lg-4,
  .rtl .offset-lg-5,
  .rtl .offset-lg-6,
  .rtl .offset-lg-7,
  .rtl .offset-lg-8,
  .rtl .offset-lg-9,
  .rtl .offset-lg-10,
  .rtl .offset-lg-11 {
    margin-right: 0;
  }
}
.rtl .cs-header_badge {
  right: initial;
  left: 5px;
}
.rtl .cs-hero.cs-style3 .cs-hero_highlite {
  left: initial;
  right: 68%;
}
.rtl .cs-hero.cs-style3.cs-type1 .cs-hero_subtitle {
  margin-right: 0;
}
@media (max-width: 1199px) {
  .rtl .cs-hero.cs-style3.cs-type1 .cs-hero_subtitle {
    margin-right: auto;
    margin-left: auto;
  }
}

.swiper-horizontal > .swiper-pagination {
  bottom: 52px !important;
  left: 50% !important;
  z-index: 10;
}
@media (max-width: 1199px) {
  .swiper-horizontal > .swiper-pagination {
    bottom: 30pxpx !important;
  }
}
