/*--------------------------------------------------------------
## Basic Color
----------------------------------------------------------------*/
/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Typography
2. Preloader
3. Spacing
4. General
5. Slider
6. Video Popup
7. Header
8. Footer
9. Isotope
10. Sidebar
11. Hero
12. Iconbox
13. Card
14. Posts
15. Team
16. Imagebox
17. CTA
18. Timeline
19. Testimonial
20. Portfolio
21. FunFact
22. Pricing
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url('https://fonts.googleapis.com/css?family=Tajawal:200,300,400,600,700,900');

body,
html {
  color: #2e2e2e;
  font-family: "Tajawal", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6em;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: #18333b;
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 500;
  line-height: 1.3em;
  font-family: "Tajawal", sans-serif;
  letter-spacing: -0.01em;
}

.cs_primary_font {
  font-family: "Tajawal", sans-serif;
}

.cs_secondary_font {
  font-family: "Tajawal", sans-serif;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 18px;
}

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: #6a11cb;
}

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: #67797e;
}
table td,
table th {
  border-top: 1px solid #dddddd;
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: #67797e;
  border: 1px solid #dddddd;
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: #67797e;
  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: #18333b;
}

/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.cs_preloader {
  position: fixed;
  z-index: 99999;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs_preloader_bg {
  text-align: center;
  height: 100%;
  width: 100%;
}

.cs_preloader_in {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.cs_preloader_in:after {
  content: "";
  border-width: 3px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #6a11cb;
  border-radius: 50%;
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  left: 50%;
  top: 50%;
  animation: spin 1s ease-in-out infinite;
  margin-left: -60px;
  margin-top: -60px;
}

.cs_preloader_in::before {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #6a11cb;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
  3. Spacing
----------------------------------------------------------------*/
@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;
  }
}
/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/
@media (min-width: 1500px) {
  .container {
    max-width: 1480px;
  }
}
.cs_bg {
  background-size: cover;
  background-position: center;
}

.container-fluid {
  padding: 0 130px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (max-width: 1500px) {
  .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding: 0 15px;
  }
}

.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 #6a11cb;
  left: 0;
  top: 0;
  pointer-events: none;
  transition: 0.15s;
}

.cs_cursor_sm {
  width: 8px;
  height: 8px;
  background-color: #6a11cb;
  left: 0;
  top: 0;
  pointer-events: none;
  transition: 0.2s;
}

.cs_gap_y_24 {
  gap: 24px 0;
}
@media (max-width: 575px) {
  .cs_gap_y_24.cs_type_1 {
    gap: 10px 0;
  }
}
@media (max-width: 575px) {
  .cs_gap_y_24.cs_type_2 {
    margin-left: -5px;
    margin-right: -5px;
    gap: 20px 0;
  }
  .cs_gap_y_24.cs_type_2 > * {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.cs_gap_y_60 {
  gap: 60px 0;
}

.cs_gap_y_40 {
  gap: 40px 0;
}
@media (max-width: 1400px) {
  .cs_gap_y_40 {
    gap: 30px 0;
  }
}
@media (max-width: 991px) {
  .cs_gap_y_40 {
    gap: 24px 0;
  }
}

@media (min-width: 1400px) {
  .cs_gap_x_40 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .cs_gap_x_40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.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: #6a11cb;
  box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
  border-radius: 50%;
}
.cs_scrollup:hover {
  background-color: #6a11cb;
  color: #fff;
}

.cs_scrollup.cs_scrollup_show {
  bottom: 50px;
}

.cs_btn.cs_style_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  transition: all 0.3s ease;
  border: transparent;
  color: #18333b;
  position: relative;
  line-height: 1.5em;
  font-weight: 500;
  border-radius: 30px;
  background-color: #6a11cb;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  min-width: 140px;
}
@media (max-width: 767px) {
  .cs_btn.cs_style_1 {
    min-width: 120px;
  }
}
.cs_btn.cs_style_1: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_style_1 svg {
  margin-left: 14px;
}
.cs_btn.cs_style_1 > * {
  position: relative;
  z-index: 1;
}
.cs_btn.cs_style_1:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.cs_btn.cs_style_1.cs_type1 {
  border: 2px solid #fff;
  background-color: transparent;
  border-radius: 5px;
  transition: all 0.6s ease-out;
}
.cs_btn.cs_style_1.cs_type1::before {
  background-color: #fff;
  border-radius: 0px;
}
.cs_btn.cs_style_1.cs_type1:hover {
  color: #000;
}
.cs_btn.cs_style_1.cs_type2 {
  padding: 13px 50px;
}
@media (max-width: 767px) {
  .cs_btn.cs_style_1.cs_type2 {
    padding: 10px 30px;
  }
}

.cs_hero_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 35px;
  font-weight: 500;
  border: 1px solid #18333b;
  color: #18333b;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .cs_hero_btn {
    padding: 9px 22px;
  }
}
.cs_hero_btn:hover {
  color: #fff;
  background-color: #18333b;
}
.cs_hero_btn.cs_color_1 {
  border-color: #6a11cb;
  color: #6a11cb;
}
.cs_hero_btn.cs_color_1:hover {
  color: #fff;
  background-color: #6a11cb;
}

.cs_hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  background-color: #d7bef1;
  display: flex;
  align-items: center;
  padding: 70px 0 0;
}
@media (max-width: 1500px) {
  .cs_hero {
    min-height: 850px;
  }
}
@media (max-width: 1400px) {
  .cs_hero {
    min-height: 750px;
  }
}
@media (max-width: 1199px) {
  .cs_hero {
    min-height: 680px;
  }
}
@media (max-width: 991px) {
  .cs_hero {
    text-align: center;
    padding: 150px 0 80px;
  }
}
.cs_hero .cs_hero_title {
  font-size: 72px;
  line-height: 1.2em;
  max-width: 800px;
}
@media (max-width: 1500px) {
  .cs_hero .cs_hero_title {
    font-size: 64px;
  }
}
@media (max-width: 1400px) {
  .cs_hero .cs_hero_title {
    font-size: 56px;
    max-width: 750px;
  }
}
@media (max-width: 767px) {
  .cs_hero .cs_hero_title {
    font-size: 46px;
  }
}
@media (max-width: 450px) {
  .cs_hero .cs_hero_title {
    font-size: 40px;
  }
}
.cs_hero .cs_hero_up_title {
  font-size: 24px;
  font-weight: 400;
  color: #6a11cb;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  line-height: 1.5em;
}
.cs_hero .cs_hero_up_title img {
  flex: none;
}
@media (max-width: 1500px) {
  .cs_hero .cs_hero_up_title {
    font-size: 18px;
  }
}
@media (max-width: 1400px) {
  .cs_hero .cs_hero_up_title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .cs_hero .cs_hero_up_title {
    justify-content: center;
  }
}
.cs_hero .cs_hero_btns {
  display: inline-flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cs_hero .cs_hero_btns {
    gap: 10px;
  }
}
.cs_hero .container {
  position: relative;
}
.cs_hero .cs_hero_in {
  position: relative;
  z-index: 2;
}
.cs_hero .cs_hero_subtitle {
  font-size: 20px;
  line-height: 1.5em;
  max-width: 710px;
  margin-bottom: 35px;
}
@media (max-width: 1500px) {
  .cs_hero .cs_hero_subtitle {
    font-size: 18px;
    max-width: 620px;
  }
}
@media (max-width: 1400px) {
  .cs_hero .cs_hero_subtitle {
    font-size: 16px;
    max-width: 550px;
  }
}
@media (max-width: 1199px) {
  .cs_hero .cs_hero_subtitle {
    max-width: 480px;
  }
}
@media (max-width: 991px) {
  .cs_hero .cs_hero_subtitle {
    max-width: 100%;
  }
}
.cs_hero .cs_hero_img {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0px;
}

@media (max-width: 1500px) {
  .cs_hero .cs_hero_img {
    max-width: 780px;
  }
}
@media (max-width: 1400px) {
  .cs_hero .cs_hero_img {
    max-width: 700px;
    right: -60px;
  }
}
@media (max-width: 1199px) {
  .cs_hero .cs_hero_img {
    max-width: 600px;
    right: -120px;
  }
}
@media (max-width: 991px) {
  .cs_hero .cs_hero_img {
    display: none;
  }
}

.cs_iconbox.cs_style_1 {
  border-radius: 15px;
  background-color: #f7f7f7;
  padding: 24px 32px 21px;
  height: 100%;
}
.cs_iconbox.cs_style_1 .cs_iconbox_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #6a11cb;
  margin-bottom: 23px;
}
.cs_iconbox.cs_style_1 .cs_iconbox_title {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 600;
  margin-bottom: 20px;
}
.cs_iconbox.cs_style_1 .cs_iconbox_subtitle {
  line-height: 1.75em;
  margin: 0;
}

.cs_iconbox_2_wrap {
  border-radius: 20px;
  background-color: #fff;
  height: 100%;
}

.cs_iconbox.cs_style_2 {
  display: flex;
  gap: 22px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: inherit;
  padding: 40px 30px;
  height: 100%;
}
@media (max-width: 1500px) {
  .cs_iconbox.cs_style_2 {
    padding: 40px 40px;
  }
}
@media (max-width: 1400px) {
  .cs_iconbox.cs_style_2 {
    padding: 35px 20px 30px 20px;
  }
}
.cs_iconbox.cs_style_2 .cs_iconbox_icon {
  flex: none;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
}
@media (max-width: 575px) {
  .cs_iconbox.cs_style_2 .cs_iconbox_icon {
    height: 70px;
    width: 70px;
  }
}
.cs_iconbox.cs_style_2 .cs_iconbox_icon svg {
  height: 40px;
  width: 40px;
}
@media (max-width: 575px) {
  .cs_iconbox.cs_style_2 .cs_iconbox_icon svg {
    height: 36px;
    width: 36px;
  }
}
.cs_iconbox.cs_style_2 .cs_iconbox_title {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 1500px) {
  .cs_iconbox.cs_style_2 .cs_iconbox_title {
    font-size: 26px;
  }
}
@media (max-width: 1400px) {
  .cs_iconbox.cs_style_2 .cs_iconbox_title {
    font-size: 24px;
  }
}
.cs_iconbox.cs_style_2 .cs_iconbox_subtitle {
  margin-bottom: 0;
}

.cs_iconbox_3_wrap {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-bottom: 60px;
  gap: 15px;
}
@media (max-width: 991px) {
  .cs_iconbox_3_wrap {
    margin-bottom: 40px;
  }
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon {
  margin-bottom: 15px;
}
@media (max-width: 1400px) {
  .cs_iconbox.cs_style_3 .cs_iconbox_icon {
    margin-bottom: 10px;
  }
  .cs_iconbox.cs_style_3 .cs_iconbox_icon svg {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1400px) and (max-width: 575px) {
  .cs_iconbox.cs_style_3 .cs_iconbox_icon svg {
    width: 36px;
    height: 36px;
  }
}
.cs_iconbox.cs_style_3 .cs_iconbox_tilte {
  font-size: 24px;
  margin-bottom: 0;
}
@media (max-width: 1400px) {
  .cs_iconbox.cs_style_3 .cs_iconbox_tilte {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .cs_iconbox.cs_style_3 .cs_iconbox_tilte {
    font-size: 16px;
  }
}

.cs_iconbox.cs_style_4 {
  border: 1px solid #eaeaea;
  border-radius: 15px;
  background-color: #fff;
  display: flex;
  padding: 15px;
  gap: 15px;
}
.cs_iconbox.cs_style_4 .cs_iconbox_title {
  margin: 0;
  font-size: 18px;
}
.cs_iconbox.cs_style_4 .cs_iconbox_label {
  margin: 0;
  font-size: 10px;
  line-height: 1.6em;
  padding: 1px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}
.cs_iconbox.cs_style_4 .cs_iconbox_icon {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
}
.cs_iconbox.cs_style_4 .cs_iconbox_icon svg {
  height: 50px;
  width: 50px;
}
.cs_iconbox.cs_style_4 .cs_iconbox_rihgt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
  flex: 1;
  align-items: flex-start;
}

.cs_editor_thumb img {
  border-radius: 15px;
  box-shadow: 0 15px 20px 0px rgba(0, 0, 0, 0.1);
}

.cs_section_heading.cs_style_1 {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1 {
    margin-bottom: 40px;
  }
  .cs_section_heading.cs_style_1 br {
    display: none;
  }
}
.cs_section_heading.cs_style_1 .cs_section_title {
  font-size: 56px;
  margin: 0;
  margin-bottom: 10px;
}
@media (max-width: 1500px) {
  .cs_section_heading.cs_style_1 .cs_section_title {
    font-size: 52px;
  }
}
@media (max-width: 1400px) {
  .cs_section_heading.cs_style_1 .cs_section_title {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1 .cs_section_title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .cs_section_heading.cs_style_1 .cs_section_title {
    font-size: 36px;
  }
}
.cs_section_heading.cs_style_1 .cs_section_subtitle {
  font-size: 21px;
  line-height: 1.5em;
  margin-bottom: 0;
}
@media (max-width: 1400px) {
  .cs_section_heading.cs_style_1 .cs_section_subtitle {
    font-size: 16px;
  }
}
.cs_section_heading.cs_style_1.cs_type_1 {
  margin-bottom: 0;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_1 {
    margin-top: 40px;
  }
}
.cs_section_heading.cs_style_1 .cs_btn.cs_style_1 {
  margin-top: 35px;
}
.cs_section_heading.cs_style_1.cs_type_2 {
  margin-bottom: 0;
}

.cs_demo {
  display: block;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 20px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding-bottom: 15px;
  position: relative;
}
.cs_demo h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 0;
  padding-top: 15px;
  border-top: 1px solid #eaeaea;
  transition: all 0.4s ease;
}
.cs_demo:hover {
  transform: translateY(-7px);
}
.cs_demo:hover h3 {
  color: #6a11cb;
}
.cs_demo span {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: #33c759;
  color: #fff;
  font-size: 14px;
  line-height: 1.6em;
  padding: 2px 10px;
  border-radius: 6px;
  z-index: 2;
}
.cs_demo.cs_type_1 {
  padding: 0;
  position: relative;
}
.cs_demo.cs_type_1 img {
  margin: 0;
}
.cs_demo.cs_type_1 h3 {
  position: absolute;
  bottom: 0;
  margin: 0;
  width: 100%;
  padding: 60px 0 20px 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .cs_demo.cs_type_1 h3 {
    padding: 40px 0 15px 0;
  }
}
.cs_demo.cs_type_1:hover h3 {
  opacity: 1;
}

.cs_gap-24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}
.cs_gap-24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
  color: #6a11cb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transform: all 0.3s ease;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_1 .cs_right_arrow:hover {
  color: #fff;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow {
  left: 45px;
}
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
  right: 45px;
}

.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_testimonial {
  border-radius: 20px;
  padding: 40px;
  background-color: #f7f7f7;
}
@media (max-width: 1400px) {
  .cs_testimonial {
    padding: 40px 30px;
  }
}
@media (max-width: 1199px) {
  .cs_testimonial {
    padding: 30px 24px;
  }
}
.cs_testimonial .cs_meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.cs_testimonial .cs_meta h3 {
  margin: 0 0 2px 0;
  font-size: 22px;
  font-weight: 600;
}
.cs_testimonial .cs_meta p {
  margin: 0;
}
.cs_testimonial .cs_meta_icon {
  flex: none;
  display: flex;
}
.cs_testimonial .cs_testimonial_text {
  margin: 0 0 20px 0;
}

.cs_card_1_wrap {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1400px) {
  .cs_card_1_wrap {
    grid-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1199px) {
  .cs_card_1_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .cs_card_1_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cs_card_1_wrap {
    grid-gap: 10px;
  }
}
@media (max-width: 440px) {
  .cs_card_1_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_card.cs_style_1 {
  height: 200px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.8s ease;
  box-shadow: 0.959px 10.958px 36.18px 17.82px rgba(0, 0, 0, 0.03);
  border: 1px solid #eaeaea;
  padding: 10px;
}
@media (max-width: 575px) {
  .cs_card.cs_style_1 {
    height: 160px;
  }
}
.cs_card.cs_style_1 .cs_card_icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .cs_card.cs_style_1 .cs_card_icon {
    height: 50px;
    width: 50px;
  }
}
.cs_card.cs_style_1 .cs_card_icon svg {
  height: 24px;
  width: 24px;
  filter: brightness(0) invert(1);
}
@media (max-width: 575px) {
  .cs_card.cs_style_1 .cs_card_icon svg {
    height: 22px;
    width: 22px;
  }
}
.cs_card.cs_style_1 h3 {
  font-size: 18px;
  margin: 18px 0 0 0;
  line-height: 1.25em;
}
@media (max-width: 575px) {
  .cs_card.cs_style_1 h3 {
    margin: 10px 0 0 0;
    font-size: 16px;
  }
}
.cs_card.cs_style_1:hover {
  transform: scale(1.04);
}

@media (min-width: 992px) {
  .cs_full_width_right {
    width: 50vw;
  }
  .cs_full_width_right.cs_pl_50 {
    padding-left: 50px;
    padding-right: 15px;
  }
  .cs_full_width_left {
    text-align: right;
    width: 50vw;
    margin-left: calc(-50vw + 100%);
  }
  .cs_full_width_left.cs_pr_50 {
    padding-right: 50px;
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .cs_mobile_reverse {
    flex-direction: column-reverse;
  }
}
.cs_shop_thumb {
  width: calc(100% + 70px);
}
@media (max-width: 991px) {
  .cs_shop_thumb {
    width: 100%;
  }
}
.cs_shop_thumb img {
  margin: -25px;
}
@media (max-width: 991px) {
  .cs_shop_thumb img {
    margin: 10px -15px -15px -15px;
  }
}

.cs_list.cs_style_1 {
  list-style: none;
  padding: 0;
  margin: 30px 0 35px;
}
.cs_list.cs_style_1 li {
  padding-left: 30px;
  position: relative;
}
.cs_list.cs_style_1 li svg {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 0;
  color: #4ad663;
  left: -3px;
}
.cs_list.cs_style_1 li:not(:last-child) {
  margin-bottom: 15px;
}

.cs_btn_group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}
@media (max-width: 420px) {
  .cs_btn_group > * {
    width: 100%;
  }
}

.cs_whatsapp_btn {
  display: inline-flex;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
}
@media (max-width: 575px) {
  .cs_whatsapp_btn {
    bottom: 10px;
    right: 10px;
  }
}
.cs_whatsapp_btn svg {
  height: 70px;
  width: 70px;
}
@media (max-width: 575px) {
  .cs_whatsapp_btn svg {
    height: 50px;
    width: 50px;
  }
}

/*--------------------------------------------------------------
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*/
/*--------------------------------------------------------------
7. Header
----------------------------------------------------------------*/
.cs_site_header {
  position: relative;
  z-index: 101;
}
.cs_site_header .cs_btn.cs_style6 {
  font-size: 16px;
}

.cs_site_header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0px;
  transition: all 0.4s ease;
}

.cs_site_header.cs_style_1 .cs_main_header_in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 90px;
  position: relative;
  transition: all 0.3s ease;
}
.cs_site_header.cs_style_1 .cs_main_header_right {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    padding-right: 45px;
  }
}

.cs_site_header.cs_style_1.cs_sticky_active {
  background-color: #fff;
  box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}
.cs_site_header.cs_style_1.cs_sticky_active .cs_main_header_in {
  height: 80px;
}
.cs_site_header.cs_style_1 .cs_btn {
  padding: 12px 30px;
}
@media (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_btn {
    padding: 9px 22px;
    min-width: initial;
    font-size: 14px;
  }
}

@media screen and (max-width: 1199px) {
  .cs_main_header .container {
    max-width: 100%;
  }
  .cs_site_header.cs_style_1 .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;
}

.cs_site_branding {
  display: inline-block;
}

@media screen and (min-width: 1200px) {
  .cs_main_header {
    position: relative;
  }
  .cs_main_header_center,
  .cs_top_header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .cs_site_header.cs_style_1 .cs_main_header_center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: max-content;
  }
  .cs_site_header.cs_style_1 .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: 18px;
    line-height: 1.6em;
    color: #18333b;
  }
  .cs_nav .cs_nav_list {
    display: flex !important;
    flex-wrap: wrap;
    height: inherit;
  }
  .cs_nav .cs_nav_list > li {
    margin-right: 30px;
    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 #67797e;
    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: #fff;
    position: absolute;
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    border-top: 2px solid #6a11cb;
    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: 6px 20px;
  }
  .cs_nav .cs_nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .cs_menu_toggle,
  .cs_menu_dropdown_toggle {
    display: none;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1296px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    position: absolute;
    padding: 5px 15px 10px;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper a img {
    border-radius: 5px;
    border: 1px solid rgba(181, 181, 181, 0.1);
    transition: all 0.5s ease;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper a:hover img {
    border-color: rgba(254, 91, 44, 0.6);
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper > li {
    flex: 1;
    padding: 10px 0;
  }
  .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: 1400px) {
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1116px !important;
  }
}
@media screen and (max-width: 1199px) {
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 100% !important;
  }
  .cs_menu_dropdown_toggle {
    position: absolute;
    height: 30px;
    width: 30px;
    right: 20px;
    top: 5px;
  }
  .cs_menu_dropdown_toggle:before, .cs_menu_dropdown_toggle:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: #67797e;
    transition: all 0.3s ease;
  }
  .cs_menu_dropdown_toggle:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .cs_menu_dropdown_toggle.active:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .cs_site_header.cs_style_1.cs_active {
    background-color: #fff;
  }
  .cs_nav .cs_nav_list_wrap {
    position: absolute;
    width: 100vw;
    left: -12px;
    background-color: #fff;
    top: 100%;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    max-height: calc(100vh - 80px);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .cs_nav .cs_nav_list_wrap.cs_active {
    display: block;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  }
  .cs_nav .cs_nav_list {
    padding: 10px 0;
    line-height: 1.6em;
  }
  .cs_nav .cs_nav_list ul {
    padding-left: 15px;
    display: none;
  }
  .cs_nav .cs_nav_list a {
    display: block;
    padding: 8px 20px;
  }
  .cs_nav .menu-item-has-children {
    position: relative;
  }
  /*Mobile Menu Button*/
  .cs_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
  }
  .cs_menu_toggle span,
  .cs_menu_toggle span:before,
  .cs_menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: #18333b;
    display: block;
  }
  .cs_menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    transition-duration: 0s;
    transition-delay: 0.2s;
  }
  .cs_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }
  .cs_menu_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_style_1 .cs_menu_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_nav .cs_nav_list a {
    position: relative;
  }
  .cs_site_header.cs_style_1 .cs_main_header_in {
    height: 80px;
  }
  .cs_site_header .current-menu-item > a:before {
    display: none;
  }
  .cs_site_header.cs_style_1 {
    top: 0;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper ul {
    display: block;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper ul .cs_nav_list_img {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .cs_site_header .container {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
  8. Footer
----------------------------------------------------------------*/
.cs_fooer {
  padding: 150px 0;
  position: relative;
}
@media (max-width: 991px) {
  .cs_fooer {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .cs_fooer {
    padding: 60px 0;
  }
}
.cs_fooer .cs_footer_title {
  font-size: 72px;
  line-height: 1.2em;
  margin-bottom: 10px;
}
@media (max-width: 1500px) {
  .cs_fooer .cs_footer_title {
    font-size: 64px;
  }
}
@media (max-width: 1400px) {
  .cs_fooer .cs_footer_title {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .cs_fooer .cs_footer_title {
    font-size: 46px;
  }
}
@media (max-width: 450px) {
  .cs_fooer .cs_footer_title {
    font-size: 40px;
  }
}
.cs_fooer .cs_footer_subtitle {
  font-size: 20px;
  line-height: 1.6em;
  margin-bottom: 31px;
}
@media (max-width: 1500px) {
  .cs_fooer .cs_footer_subtitle {
    font-size: 18px;
  }
}
@media (max-width: 1400px) {
  .cs_fooer .cs_footer_subtitle {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .cs_fooer .cs_footer_subtitle br {
    display: none;
  }
}
.cs_fooer .cs_footer_info_text {
  display: inline-block;
  border: 1px solid rgba(229, 205, 229, 0.4);
  border-radius: 10px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 9px 30px;
  font-weight: 300;
  margin-bottom: 30px;
}
.cs_fooer .cs_footer_info_text span {
  margin: 0 5px;
}/*# sourceMappingURL=style.css.map */





/* ============================================
   PAYMENT LOGOS SECTION STYLES
   ============================================ */

/* Logo Container - Centers everything */
.cs_payment_logos_container {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  margin-top: 30px;
}

/* Logo Wrapper - Grid layout */
.cs_payment_logos_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1000px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/* Individual Logo Item */
.cs_payment_logo_item {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

/* Logo Hover Effects */
.cs_payment_logo_item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #e0e0e0;
  z-index: 2;
}

/* Logo Image Styling */
.cs_payment_logo_item img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: all 0.4s ease;
}

.cs_payment_logo_item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Optional gradient effect on hover */
.cs_payment_logo_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 20px;
}

.cs_payment_logo_item:hover::before {
  opacity: 0.05;
}

/* Specific subtle hover colors for different logos */
.cs_payment_logo_item:nth-child(1):hover { /* Stripe */
  background: rgba(99, 91, 255, 0.02);
  border-color: rgba(99, 91, 255, 0.2);
}

.cs_payment_logo_item:nth-child(2):hover { /* Mastercard */
  background: rgba(235, 0, 27, 0.02);
  border-color: rgba(235, 0, 27, 0.2);
}

.cs_payment_logo_item:nth-child(3):hover { /* PayPal */
  background: rgba(0, 48, 135, 0.02);
  border-color: rgba(0, 48, 135, 0.2);
}

.cs_payment_logo_item:nth-child(4):hover { /* Visa */
  background: rgba(26, 31, 113, 0.02);
  border-color: rgba(26, 31, 113, 0.2);
}

.cs_payment_logo_item:nth-child(5):hover { /* Flutterwave */
  background: rgba(255, 107, 53, 0.02);
  border-color: rgba(255, 107, 53, 0.2);
}

.cs_payment_logo_item:nth-child(6):hover { /* Razorpay */
  background: rgba(0, 122, 255, 0.02);
  border-color: rgba(0, 122, 255, 0.2);
}

.cs_payment_logo_item:nth-child(7):hover { /* bKash */
  background: rgba(227, 6, 19, 0.02);
  border-color: rgba(227, 6, 19, 0.2);
}

.cs_payment_logo_item:nth-child(8):hover { /* Stripe duplicate */
  background: rgba(99, 91, 255, 0.02);
  border-color: rgba(99, 91, 255, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet View (768px - 1199px) */
@media (max-width: 1199px) {
  .cs_payment_logos_wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
  }
  
  .cs_payment_logo_item {
    height: 130px;
    padding: 25px;
  }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
  .cs_payment_logos_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 500px;
  }
  
  .cs_payment_logo_item {
    height: 120px;
    padding: 20px;
  }
  
  .cs_payment_logos_container {
    padding: 30px 0;
    margin-top: 20px;
  }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
  .cs_payment_logos_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 400px;
  }
  
  .cs_payment_logo_item {
    height: 100px;
    padding: 15px;
    border-radius: 15px;
  }
  
  .cs_payment_logo_item img {
    max-height: 50px;
  }
  
  .cs_payment_logos_container {
    padding: 20px 0;
  }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .cs_payment_logos_wrapper {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  
  .cs_payment_logo_item {
    height: 90px;
  }
}

/* ============================================
   ANIMATION EFFECTS (Optional)
   ============================================ */

/* Fade-in animation for logos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cs_payment_logo_item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* Stagger animation for each logo */
.cs_payment_logo_item:nth-child(1) { animation-delay: 0.1s; }
.cs_payment_logo_item:nth-child(2) { animation-delay: 0.2s; }
.cs_payment_logo_item:nth-child(3) { animation-delay: 0.3s; }
.cs_payment_logo_item:nth-child(4) { animation-delay: 0.4s; }
.cs_payment_logo_item:nth-child(5) { animation-delay: 0.5s; }
.cs_payment_logo_item:nth-child(6) { animation-delay: 0.6s; }
.cs_payment_logo_item:nth-child(7) { animation-delay: 0.7s; }
.cs_payment_logo_item:nth-child(8) { animation-delay: 0.8s; }





/* Premium Pricing Section Styles */
.cs_pricing_toggle_wrap {
  text-align: center;
  margin-bottom: 60px;
}

.cs_pricing_toggle {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.cs_toggle_label {
  font-size: 16px;
  font-weight: 600;
  color: #777;
  transition: color 0.3s ease;
}

.cs_toggle_label.cs_active {
  color: #6a11cb;
}

.cs_toggle_switch {
  position: relative;
  width: 60px;
  height: 30px;
}

.cs_toggle_checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.cs_toggle_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  transition: .4s;
  border-radius: 34px;
}

.cs_toggle_slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.cs_toggle_checkbox:checked + .cs_toggle_slider:before {
  transform: translateX(30px);
}

.cs_discount_badge {
  background: #e91e63;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  right: 120px;
  top: -40px;
}

/* Premium Cards */
.cs_premium_card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #eee;
  overflow: hidden;
}

.cs_premium_card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(106, 17, 203, 0.15);
  border-color: #6a11cb;
}

.cs_premium_featured {
  border: 2px solid #6a11cb;
  transform: scale(1.05);
  z-index: 2;
}

.cs_premium_featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.cs_plan_badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cs_plan_badge_basic {
  background: rgba(106, 17, 203, 0.1);
  color: #6a11cb;
}

.cs_plan_badge_popular {
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: white;
}

.cs_plan_badge_enterprise {
  background: rgba(255, 148, 0, 0.1);
  color: #FF9400;
}

.cs_premium_header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.cs_premium_title {
  font-size: 32px;
  font-weight: 700;
  color: #2e2e2e;
  margin: 15px 0;
  font-family: 'Poppins', sans-serif;
}

.cs_premium_price {
  margin: 25px 0;
}

.cs_price_currency {
  font-size: 28px;
  font-weight: 600;
  color: #6a11cb;
  vertical-align: top;
  line-height: 1;
}

.cs_price_amount {
  font-size: 64px;
  font-weight: 800;
  color: #2e2e2e;
  line-height: 1;
  margin: 0 5px;
}

.cs_price_period {
  font-size: 18px;
  color: #777;
  font-weight: 500;
}

.cs_billed_annually {
  display: block;
  font-size: 14px;
  color: #4AD663;
  font-weight: 600;
  margin-top: 5px;
}

.cs_premium_desc {
  color: #777;
  font-size: 16px;
  line-height: 1.5;
}

.cs_premium_body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cs_premium_btn {
  display: block;
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cs_premium_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(106, 17, 203, 0.3);
  color: white;
}

.cs_premium_btn_featured {
  background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
}

.cs_trial_note {
  text-align: center;
  color: #777;
  font-size: 14px;
  margin-top: -15px;
}

.cs_feature_category {
  margin-bottom: 25px;
}

.cs_category_title {
  font-size: 18px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}

.cs_premium_features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs_feature_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f8f8f8;
}

.cs_feature_text {
  font-size: 17px;
  color: #000;
  flex: 1;
}

.cs_feature_badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs_feature_included .cs_feature_badge {
  background: rgba(74, 214, 99, 0.15);
  color: #2E7D32;
}

.cs_feature_limited .cs_feature_badge {
  background: rgba(255, 148, 0, 0.15);
  color: #EF6C00;
}

.cs_feature_not_included .cs_feature_badge {
  background: rgba(158, 158, 158, 0.15);
  color: #757575;
}

/* Comparison Table */
.cs_comparison_wrap {
  margin-top: 80px;
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cs_comparison_header {
  text-align: center;
  margin-bottom: 40px;
}

.cs_comparison_title {
  font-size: 28px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 10px;
}

.cs_comparison_subtitle {
  color: #777;
  font-size: 16px;
}

.cs_comparison_table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

.cs_table_header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cs_table_header > div {
  padding: 20px;
  text-align: center;
}

.cs_table_feature_col {
  text-align: left !important;
}

.cs_plan_highlighted {
  background: rgba(255, 255, 255, 0.1);
}

.cs_table_body {
  background: white;
}

.cs_table_row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.cs_table_row:hover {
  background: #f9f9ff;
}

.cs_table_row > div {
  padding: 18px 20px;
  display: flex;
  align-items: center;
}

.cs_table_row .cs_table_feature_col {
  font-weight: 600;
  color: #555;
}

.cs_table_row .cs_table_plan_col {
  justify-content: center;
  font-weight: 500;
  color: #2e2e2e;
}

.cs_table_row .cs_plan_highlighted {
  background: rgba(106, 17, 203, 0.05);
  font-weight: 700;
  color: #6a11cb;
}

/* Trust Badges */
.cs_trust_badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.cs_trust_item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

.cs_trust_item svg {
  flex-shrink: 0;
}

/* Utility Classes */
.cs_hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .cs_premium_featured {
    transform: scale(1);
  }
  
  .cs_premium_featured:hover {
    transform: translateY(-15px);
  }
}

@media (max-width: 991px) {
  .cs_premium_card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }
  
  .cs_price_amount {
    font-size: 56px;
  }
  
  .cs_comparison_table {
    overflow-x: auto;
  }
  
  .cs_table_header,
  .cs_table_row {
    min-width: 800px;
  }
}

@media (max-width: 767px) {
  .cs_pricing_toggle {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
  }
  
  .cs_trust_badges {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .cs_comparison_wrap {
    padding: 25px 15px;
  }
}

/* Animation for price toggle */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.cs_monthly_price,
.cs_yearly_price {
  animation: fadeIn 0.3s ease-out;
}





