/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
01. Google Fonts Integration
02. All Variable
03. Typography
04. Preloader
05. Spacing
06. General
07. Slider
08. Header
09. Footer
10. Sidebar
11. Hero
12. CTA
13. Testimonial
14. Team
15. Post
16. Pricing
17. Workflow
18. Contact
19. FAQ
20. Features
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  01. Google Fonts Integration
----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*--------------------------------------------------------------
02. All Variable
----------------------------------------------------------------*/
:root {
  --white-color: #fff;
  --heading-color: #110e34;
  --heading-color-2: #1e1f23;
  --body-color: #677489;
  --gray-color: #f8fafc;
  --gray-color-2: #f5f3fe;
  --border-color: #cdd5e0;
  --accent-color: #46208f;
  --heading-font: "Inter", sans-serif;
  --body-font: "Inter", sans-serif;
}

/*--------------------------------------------------------------
03. Typography
----------------------------------------------------------------*/
body,
html {
  color: var(--body-color);
  background-color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.44em;
  font-weight: 300;
  overflow-x: clip;
}

body {
  overscroll-behavior: none;
}

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

.cs_heading_font {
  font-family: var(--heading-font);
}

.cs_secondary_font {
  font-family: var(--body-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;
  cursor: pointer;
}

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

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: var(--body-color);
}
table td,
table th {
  border-top: 1px solid var(--border-color);
  padding: 11px 10px;
}

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

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--body-color);
  border: 1px solid var(--border-color);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--body-color);
  border-radius: 5px;
}

input,
textarea {
  color: var(--heading-color);
  transition: all 0.4s ease;
}

label {
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
  04. Preloader
----------------------------------------------------------------*/
.cs_preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-color);
  z-index: 99999;
}
.cs_preloader::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--heading-color);
  opacity: 0.08;
}
.cs_preloader .cs_preloader_shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .cs_preloader .cs_preloader_shape {
    display: none;
  }
}
.cs_preloader .cs_preloader_shape_2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .cs_preloader .cs_preloader_shape_2 {
    display: none;
  }
}

.cs_preloader_in {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 65px;
  height: 65px;
  font-size: 0;
  display: inline-block;
  margin: -32px 0 0 -32px;
  text-indent: -9999em;
  transform: translateZ(0);
}

.cs_preloader_in span {
  background-color: var(--heading-color);
  display: inline-block;
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 65px;
  opacity: 0.5;
  border-radius: 50%;
  animation: ballPulseDouble 2s ease-in-out infinite;
}

.cs_preloader_in span:last-child {
  animation-delay: -1s;
}

@keyframes ballPulseDouble {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
.cs_preloader_text {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
  05. Spacing
----------------------------------------------------------------*/
.cs_mb_1 {
  margin-bottom: 1px;
}

.cs_mb_2 {
  margin-bottom: 2px;
}

.cs_mb_3 {
  margin-bottom: 3px;
}

.cs_mb_4 {
  margin-bottom: 4px;
}

.cs_mb_5 {
  margin-bottom: 5px;
}

.cs_mb_6 {
  margin-bottom: 6px;
}

.cs_mb_7 {
  margin-bottom: 7px;
}

.cs_mb_8 {
  margin-bottom: 8px;
}

.cs_mb_9 {
  margin-bottom: 9px;
}

.cs_mb_10 {
  margin-bottom: 10px;
}

.cs_mb_11 {
  margin-bottom: 11px;
}

.cs_mb_12 {
  margin-bottom: 12px;
}

.cs_mb_13 {
  margin-bottom: 13px;
}

.cs_mb_14 {
  margin-bottom: 14px;
}

.cs_mb_15 {
  margin-bottom: 15px;
}

.cs_mb_16 {
  margin-bottom: 16px;
}

.cs_mb_17 {
  margin-bottom: 17px;
}

.cs_mb_18 {
  margin-bottom: 18px;
}

.cs_mb_19 {
  margin-bottom: 19px;
}

.cs_mb_20 {
  margin-bottom: 20px;
}

.cs_mb_21 {
  margin-bottom: 21px;
}

.cs_mb_22 {
  margin-bottom: 22px;
}

.cs_mb_23 {
  margin-bottom: 23px;
}

.cs_mb_24 {
  margin-bottom: 24px;
}

.cs_mb_25 {
  margin-bottom: 25px;
}

.cs_mb_26 {
  margin-bottom: 26px;
}

.cs_mb_27 {
  margin-bottom: 27px;
}

.cs_mb_28 {
  margin-bottom: 28px;
}

.cs_mb_29 {
  margin-bottom: 29px;
}

.cs_mb_30 {
  margin-bottom: 30px;
}

.cs_mb_31 {
  margin-bottom: 31px;
}

.cs_mb_32 {
  margin-bottom: 32px;
}

.cs_mb_33 {
  margin-bottom: 33px;
}

.cs_mb_34 {
  margin-bottom: 34px;
}

.cs_mb_35 {
  margin-bottom: 35px;
}

.cs_mb_36 {
  margin-bottom: 36px;
}

.cs_mb_37 {
  margin-bottom: 37px;
}

.cs_mb_38 {
  margin-bottom: 38px;
}

.cs_mb_39 {
  margin-bottom: 39px;
}

.cs_mb_40 {
  margin-bottom: 40px;
}

.cs_mb_41 {
  margin-bottom: 41px;
}

.cs_mb_42 {
  margin-bottom: 42px;
}

.cs_mb_43 {
  margin-bottom: 43px;
}

.cs_mb_44 {
  margin-bottom: 44px;
}

.cs_mb_45 {
  margin-bottom: 45px;
}

.cs_mb_46 {
  margin-bottom: 46px;
}

.cs_mb_47 {
  margin-bottom: 47px;
}

.cs_mb_48 {
  margin-bottom: 48px;
}

.cs_mb_49 {
  margin-bottom: 49px;
}

.cs_mb_50 {
  margin-bottom: 50px;
}

.cs_mb_51 {
  margin-bottom: 51px;
}

.cs_mb_52 {
  margin-bottom: 52px;
}

.cs_mb_53 {
  margin-bottom: 53px;
}

.cs_mb_54 {
  margin-bottom: 54px;
}

.cs_mb_55 {
  margin-bottom: 55px;
}

.cs_mb_56 {
  margin-bottom: 56px;
}

.cs_mb_57 {
  margin-bottom: 57px;
}

.cs_mb_58 {
  margin-bottom: 58px;
}

.cs_mb_59 {
  margin-bottom: 59px;
}

.cs_mb_60 {
  margin-bottom: 60px;
}

@media screen and (min-width: 992px) {
  .cs_height_1 {
    height: 1px;
  }
  .cs_height_2 {
    height: 2px;
  }
  .cs_height_3 {
    height: 3px;
  }
  .cs_height_4 {
    height: 4px;
  }
  .cs_height_5 {
    height: 5px;
  }
  .cs_height_6 {
    height: 6px;
  }
  .cs_height_7 {
    height: 7px;
  }
  .cs_height_8 {
    height: 8px;
  }
  .cs_height_9 {
    height: 9px;
  }
  .cs_height_10 {
    height: 10px;
  }
  .cs_height_11 {
    height: 11px;
  }
  .cs_height_12 {
    height: 12px;
  }
  .cs_height_13 {
    height: 13px;
  }
  .cs_height_14 {
    height: 14px;
  }
  .cs_height_15 {
    height: 15px;
  }
  .cs_height_16 {
    height: 16px;
  }
  .cs_height_17 {
    height: 17px;
  }
  .cs_height_18 {
    height: 18px;
  }
  .cs_height_19 {
    height: 19px;
  }
  .cs_height_20 {
    height: 20px;
  }
  .cs_height_21 {
    height: 21px;
  }
  .cs_height_22 {
    height: 22px;
  }
  .cs_height_23 {
    height: 23px;
  }
  .cs_height_24 {
    height: 24px;
  }
  .cs_height_25 {
    height: 25px;
  }
  .cs_height_26 {
    height: 26px;
  }
  .cs_height_27 {
    height: 27px;
  }
  .cs_height_28 {
    height: 28px;
  }
  .cs_height_29 {
    height: 29px;
  }
  .cs_height_30 {
    height: 30px;
  }
  .cs_height_31 {
    height: 31px;
  }
  .cs_height_32 {
    height: 32px;
  }
  .cs_height_33 {
    height: 33px;
  }
  .cs_height_34 {
    height: 34px;
  }
  .cs_height_35 {
    height: 35px;
  }
  .cs_height_36 {
    height: 36px;
  }
  .cs_height_37 {
    height: 37px;
  }
  .cs_height_38 {
    height: 38px;
  }
  .cs_height_39 {
    height: 39px;
  }
  .cs_height_40 {
    height: 40px;
  }
  .cs_height_41 {
    height: 41px;
  }
  .cs_height_42 {
    height: 42px;
  }
  .cs_height_43 {
    height: 43px;
  }
  .cs_height_44 {
    height: 44px;
  }
  .cs_height_45 {
    height: 45px;
  }
  .cs_height_46 {
    height: 46px;
  }
  .cs_height_47 {
    height: 47px;
  }
  .cs_height_48 {
    height: 48px;
  }
  .cs_height_49 {
    height: 49px;
  }
  .cs_height_50 {
    height: 50px;
  }
  .cs_height_51 {
    height: 51px;
  }
  .cs_height_52 {
    height: 52px;
  }
  .cs_height_53 {
    height: 53px;
  }
  .cs_height_54 {
    height: 54px;
  }
  .cs_height_55 {
    height: 55px;
  }
  .cs_height_56 {
    height: 56px;
  }
  .cs_height_57 {
    height: 57px;
  }
  .cs_height_58 {
    height: 58px;
  }
  .cs_height_59 {
    height: 59px;
  }
  .cs_height_60 {
    height: 60px;
  }
  .cs_height_61 {
    height: 61px;
  }
  .cs_height_62 {
    height: 62px;
  }
  .cs_height_63 {
    height: 63px;
  }
  .cs_height_64 {
    height: 64px;
  }
  .cs_height_65 {
    height: 65px;
  }
  .cs_height_66 {
    height: 66px;
  }
  .cs_height_67 {
    height: 67px;
  }
  .cs_height_68 {
    height: 68px;
  }
  .cs_height_69 {
    height: 69px;
  }
  .cs_height_70 {
    height: 70px;
  }
  .cs_height_71 {
    height: 71px;
  }
  .cs_height_72 {
    height: 72px;
  }
  .cs_height_73 {
    height: 73px;
  }
  .cs_height_74 {
    height: 74px;
  }
  .cs_height_75 {
    height: 75px;
  }
  .cs_height_76 {
    height: 76px;
  }
  .cs_height_77 {
    height: 77px;
  }
  .cs_height_78 {
    height: 78px;
  }
  .cs_height_79 {
    height: 79px;
  }
  .cs_height_80 {
    height: 80px;
  }
  .cs_height_81 {
    height: 81px;
  }
  .cs_height_82 {
    height: 82px;
  }
  .cs_height_83 {
    height: 83px;
  }
  .cs_height_84 {
    height: 84px;
  }
  .cs_height_85 {
    height: 85px;
  }
  .cs_height_86 {
    height: 86px;
  }
  .cs_height_87 {
    height: 87px;
  }
  .cs_height_88 {
    height: 88px;
  }
  .cs_height_89 {
    height: 89px;
  }
  .cs_height_90 {
    height: 90px;
  }
  .cs_height_91 {
    height: 91px;
  }
  .cs_height_92 {
    height: 92px;
  }
  .cs_height_93 {
    height: 93px;
  }
  .cs_height_94 {
    height: 94px;
  }
  .cs_height_95 {
    height: 95px;
  }
  .cs_height_96 {
    height: 96px;
  }
  .cs_height_97 {
    height: 97px;
  }
  .cs_height_98 {
    height: 98px;
  }
  .cs_height_99 {
    height: 99px;
  }
  .cs_height_100 {
    height: 100px;
  }
  .cs_height_101 {
    height: 101px;
  }
  .cs_height_102 {
    height: 102px;
  }
  .cs_height_103 {
    height: 103px;
  }
  .cs_height_104 {
    height: 104px;
  }
  .cs_height_105 {
    height: 105px;
  }
  .cs_height_106 {
    height: 106px;
  }
  .cs_height_107 {
    height: 107px;
  }
  .cs_height_108 {
    height: 108px;
  }
  .cs_height_109 {
    height: 109px;
  }
  .cs_height_110 {
    height: 110px;
  }
  .cs_height_111 {
    height: 111px;
  }
  .cs_height_112 {
    height: 112px;
  }
  .cs_height_113 {
    height: 113px;
  }
  .cs_height_114 {
    height: 114px;
  }
  .cs_height_115 {
    height: 115px;
  }
  .cs_height_116 {
    height: 116px;
  }
  .cs_height_117 {
    height: 117px;
  }
  .cs_height_118 {
    height: 118px;
  }
  .cs_height_119 {
    height: 119px;
  }
  .cs_height_120 {
    height: 120px;
  }
  .cs_height_121 {
    height: 121px;
  }
  .cs_height_122 {
    height: 122px;
  }
  .cs_height_123 {
    height: 123px;
  }
  .cs_height_124 {
    height: 124px;
  }
  .cs_height_125 {
    height: 125px;
  }
  .cs_height_126 {
    height: 126px;
  }
  .cs_height_127 {
    height: 127px;
  }
  .cs_height_128 {
    height: 128px;
  }
  .cs_height_129 {
    height: 129px;
  }
  .cs_height_130 {
    height: 130px;
  }
  .cs_height_131 {
    height: 131px;
  }
  .cs_height_132 {
    height: 132px;
  }
  .cs_height_133 {
    height: 133px;
  }
  .cs_height_134 {
    height: 134px;
  }
  .cs_height_135 {
    height: 135px;
  }
  .cs_height_136 {
    height: 136px;
  }
  .cs_height_137 {
    height: 137px;
  }
  .cs_height_138 {
    height: 138px;
  }
  .cs_height_139 {
    height: 139px;
  }
  .cs_height_140 {
    height: 140px;
  }
  .cs_height_141 {
    height: 141px;
  }
  .cs_height_142 {
    height: 142px;
  }
  .cs_height_143 {
    height: 143px;
  }
  .cs_height_144 {
    height: 144px;
  }
  .cs_height_145 {
    height: 145px;
  }
  .cs_height_146 {
    height: 146px;
  }
  .cs_height_147 {
    height: 147px;
  }
  .cs_height_148 {
    height: 148px;
  }
  .cs_height_149 {
    height: 149px;
  }
  .cs_height_150 {
    height: 150px;
  }
}
@media screen and (max-width: 991px) {
  .cs_mb_lg_1 {
    margin-bottom: 1px;
  }
  .cs_mb_lg_2 {
    margin-bottom: 2px;
  }
  .cs_mb_lg_3 {
    margin-bottom: 3px;
  }
  .cs_mb_lg_4 {
    margin-bottom: 4px;
  }
  .cs_mb_lg_5 {
    margin-bottom: 5px;
  }
  .cs_mb_lg_6 {
    margin-bottom: 6px;
  }
  .cs_mb_lg_7 {
    margin-bottom: 7px;
  }
  .cs_mb_lg_8 {
    margin-bottom: 8px;
  }
  .cs_mb_lg_9 {
    margin-bottom: 9px;
  }
  .cs_mb_lg_10 {
    margin-bottom: 10px;
  }
  .cs_mb_lg_11 {
    margin-bottom: 11px;
  }
  .cs_mb_lg_12 {
    margin-bottom: 12px;
  }
  .cs_mb_lg_13 {
    margin-bottom: 13px;
  }
  .cs_mb_lg_14 {
    margin-bottom: 14px;
  }
  .cs_mb_lg_15 {
    margin-bottom: 15px;
  }
  .cs_mb_lg_16 {
    margin-bottom: 16px;
  }
  .cs_mb_lg_17 {
    margin-bottom: 17px;
  }
  .cs_mb_lg_18 {
    margin-bottom: 18px;
  }
  .cs_mb_lg_19 {
    margin-bottom: 19px;
  }
  .cs_mb_lg_20 {
    margin-bottom: 20px;
  }
  .cs_mb_lg_21 {
    margin-bottom: 21px;
  }
  .cs_mb_lg_22 {
    margin-bottom: 22px;
  }
  .cs_mb_lg_23 {
    margin-bottom: 23px;
  }
  .cs_mb_lg_24 {
    margin-bottom: 24px;
  }
  .cs_mb_lg_25 {
    margin-bottom: 25px;
  }
  .cs_mb_lg_26 {
    margin-bottom: 26px;
  }
  .cs_mb_lg_27 {
    margin-bottom: 27px;
  }
  .cs_mb_lg_28 {
    margin-bottom: 28px;
  }
  .cs_mb_lg_29 {
    margin-bottom: 29px;
  }
  .cs_mb_lg_30 {
    margin-bottom: 30px;
  }
  .cs_mb_lg_31 {
    margin-bottom: 31px;
  }
  .cs_mb_lg_32 {
    margin-bottom: 32px;
  }
  .cs_mb_lg_33 {
    margin-bottom: 33px;
  }
  .cs_mb_lg_34 {
    margin-bottom: 34px;
  }
  .cs_mb_lg_35 {
    margin-bottom: 35px;
  }
  .cs_mb_lg_36 {
    margin-bottom: 36px;
  }
  .cs_mb_lg_37 {
    margin-bottom: 37px;
  }
  .cs_mb_lg_38 {
    margin-bottom: 38px;
  }
  .cs_mb_lg_39 {
    margin-bottom: 39px;
  }
  .cs_mb_lg_40 {
    margin-bottom: 40px;
  }
  .cs_mb_lg_41 {
    margin-bottom: 41px;
  }
  .cs_mb_lg_42 {
    margin-bottom: 42px;
  }
  .cs_mb_lg_43 {
    margin-bottom: 43px;
  }
  .cs_mb_lg_44 {
    margin-bottom: 44px;
  }
  .cs_mb_lg_45 {
    margin-bottom: 45px;
  }
  .cs_mb_lg_46 {
    margin-bottom: 46px;
  }
  .cs_mb_lg_47 {
    margin-bottom: 47px;
  }
  .cs_mb_lg_48 {
    margin-bottom: 48px;
  }
  .cs_mb_lg_49 {
    margin-bottom: 49px;
  }
  .cs_mb_lg_50 {
    margin-bottom: 50px;
  }
  .cs_mb_lg_51 {
    margin-bottom: 51px;
  }
  .cs_mb_lg_52 {
    margin-bottom: 52px;
  }
  .cs_mb_lg_53 {
    margin-bottom: 53px;
  }
  .cs_mb_lg_54 {
    margin-bottom: 54px;
  }
  .cs_mb_lg_55 {
    margin-bottom: 55px;
  }
  .cs_mb_lg_56 {
    margin-bottom: 56px;
  }
  .cs_mb_lg_57 {
    margin-bottom: 57px;
  }
  .cs_mb_lg_58 {
    margin-bottom: 58px;
  }
  .cs_mb_lg_59 {
    margin-bottom: 59px;
  }
  .cs_mb_lg_60 {
    margin-bottom: 60px;
  }
  .cs_height_lg_1 {
    height: 1px;
  }
  .cs_height_lg_2 {
    height: 2px;
  }
  .cs_height_lg_3 {
    height: 3px;
  }
  .cs_height_lg_4 {
    height: 4px;
  }
  .cs_height_lg_5 {
    height: 5px;
  }
  .cs_height_lg_6 {
    height: 6px;
  }
  .cs_height_lg_7 {
    height: 7px;
  }
  .cs_height_lg_8 {
    height: 8px;
  }
  .cs_height_lg_9 {
    height: 9px;
  }
  .cs_height_lg_10 {
    height: 10px;
  }
  .cs_height_lg_11 {
    height: 11px;
  }
  .cs_height_lg_12 {
    height: 12px;
  }
  .cs_height_lg_13 {
    height: 13px;
  }
  .cs_height_lg_14 {
    height: 14px;
  }
  .cs_height_lg_15 {
    height: 15px;
  }
  .cs_height_lg_16 {
    height: 16px;
  }
  .cs_height_lg_17 {
    height: 17px;
  }
  .cs_height_lg_18 {
    height: 18px;
  }
  .cs_height_lg_19 {
    height: 19px;
  }
  .cs_height_lg_20 {
    height: 20px;
  }
  .cs_height_lg_21 {
    height: 21px;
  }
  .cs_height_lg_22 {
    height: 22px;
  }
  .cs_height_lg_23 {
    height: 23px;
  }
  .cs_height_lg_24 {
    height: 24px;
  }
  .cs_height_lg_25 {
    height: 25px;
  }
  .cs_height_lg_26 {
    height: 26px;
  }
  .cs_height_lg_27 {
    height: 27px;
  }
  .cs_height_lg_28 {
    height: 28px;
  }
  .cs_height_lg_29 {
    height: 29px;
  }
  .cs_height_lg_30 {
    height: 30px;
  }
  .cs_height_lg_31 {
    height: 31px;
  }
  .cs_height_lg_32 {
    height: 32px;
  }
  .cs_height_lg_33 {
    height: 33px;
  }
  .cs_height_lg_34 {
    height: 34px;
  }
  .cs_height_lg_35 {
    height: 35px;
  }
  .cs_height_lg_36 {
    height: 36px;
  }
  .cs_height_lg_37 {
    height: 37px;
  }
  .cs_height_lg_38 {
    height: 38px;
  }
  .cs_height_lg_39 {
    height: 39px;
  }
  .cs_height_lg_40 {
    height: 40px;
  }
  .cs_height_lg_41 {
    height: 41px;
  }
  .cs_height_lg_42 {
    height: 42px;
  }
  .cs_height_lg_43 {
    height: 43px;
  }
  .cs_height_lg_44 {
    height: 44px;
  }
  .cs_height_lg_45 {
    height: 45px;
  }
  .cs_height_lg_46 {
    height: 46px;
  }
  .cs_height_lg_47 {
    height: 47px;
  }
  .cs_height_lg_48 {
    height: 48px;
  }
  .cs_height_lg_49 {
    height: 49px;
  }
  .cs_height_lg_50 {
    height: 50px;
  }
  .cs_height_lg_51 {
    height: 51px;
  }
  .cs_height_lg_52 {
    height: 52px;
  }
  .cs_height_lg_53 {
    height: 53px;
  }
  .cs_height_lg_54 {
    height: 54px;
  }
  .cs_height_lg_55 {
    height: 55px;
  }
  .cs_height_lg_56 {
    height: 56px;
  }
  .cs_height_lg_57 {
    height: 57px;
  }
  .cs_height_lg_58 {
    height: 58px;
  }
  .cs_height_lg_59 {
    height: 59px;
  }
  .cs_height_lg_60 {
    height: 60px;
  }
  .cs_height_lg_61 {
    height: 61px;
  }
  .cs_height_lg_62 {
    height: 62px;
  }
  .cs_height_lg_63 {
    height: 63px;
  }
  .cs_height_lg_64 {
    height: 64px;
  }
  .cs_height_lg_65 {
    height: 65px;
  }
  .cs_height_lg_66 {
    height: 66px;
  }
  .cs_height_lg_67 {
    height: 67px;
  }
  .cs_height_lg_68 {
    height: 68px;
  }
  .cs_height_lg_69 {
    height: 69px;
  }
  .cs_height_lg_70 {
    height: 70px;
  }
  .cs_height_lg_71 {
    height: 71px;
  }
  .cs_height_lg_72 {
    height: 72px;
  }
  .cs_height_lg_73 {
    height: 73px;
  }
  .cs_height_lg_74 {
    height: 74px;
  }
  .cs_height_lg_75 {
    height: 75px;
  }
  .cs_height_lg_76 {
    height: 76px;
  }
  .cs_height_lg_77 {
    height: 77px;
  }
  .cs_height_lg_78 {
    height: 78px;
  }
  .cs_height_lg_79 {
    height: 79px;
  }
  .cs_height_lg_80 {
    height: 80px;
  }
  .cs_height_lg_81 {
    height: 81px;
  }
  .cs_height_lg_82 {
    height: 82px;
  }
  .cs_height_lg_83 {
    height: 83px;
  }
  .cs_height_lg_84 {
    height: 84px;
  }
  .cs_height_lg_85 {
    height: 85px;
  }
  .cs_height_lg_86 {
    height: 86px;
  }
  .cs_height_lg_87 {
    height: 87px;
  }
  .cs_height_lg_88 {
    height: 88px;
  }
  .cs_height_lg_89 {
    height: 89px;
  }
  .cs_height_lg_90 {
    height: 90px;
  }
  .cs_height_lg_91 {
    height: 91px;
  }
  .cs_height_lg_92 {
    height: 92px;
  }
  .cs_height_lg_93 {
    height: 93px;
  }
  .cs_height_lg_94 {
    height: 94px;
  }
  .cs_height_lg_95 {
    height: 95px;
  }
  .cs_height_lg_96 {
    height: 96px;
  }
  .cs_height_lg_97 {
    height: 97px;
  }
  .cs_height_lg_98 {
    height: 98px;
  }
  .cs_height_lg_99 {
    height: 99px;
  }
  .cs_height_lg_100 {
    height: 100px;
  }
  .cs_height_lg_101 {
    height: 101px;
  }
  .cs_height_lg_102 {
    height: 102px;
  }
  .cs_height_lg_103 {
    height: 103px;
  }
  .cs_height_lg_104 {
    height: 104px;
  }
  .cs_height_lg_105 {
    height: 105px;
  }
  .cs_height_lg_106 {
    height: 106px;
  }
  .cs_height_lg_107 {
    height: 107px;
  }
  .cs_height_lg_108 {
    height: 108px;
  }
  .cs_height_lg_109 {
    height: 109px;
  }
  .cs_height_lg_110 {
    height: 110px;
  }
  .cs_height_lg_111 {
    height: 111px;
  }
  .cs_height_lg_112 {
    height: 112px;
  }
  .cs_height_lg_113 {
    height: 113px;
  }
  .cs_height_lg_114 {
    height: 114px;
  }
  .cs_height_lg_115 {
    height: 115px;
  }
  .cs_height_lg_116 {
    height: 116px;
  }
  .cs_height_lg_117 {
    height: 117px;
  }
  .cs_height_lg_118 {
    height: 118px;
  }
  .cs_height_lg_119 {
    height: 119px;
  }
  .cs_height_lg_120 {
    height: 120px;
  }
  .cs_height_lg_121 {
    height: 121px;
  }
  .cs_height_lg_122 {
    height: 122px;
  }
  .cs_height_lg_123 {
    height: 123px;
  }
  .cs_height_lg_124 {
    height: 124px;
  }
  .cs_height_lg_125 {
    height: 125px;
  }
  .cs_height_lg_126 {
    height: 126px;
  }
  .cs_height_lg_127 {
    height: 127px;
  }
  .cs_height_lg_128 {
    height: 128px;
  }
  .cs_height_lg_129 {
    height: 129px;
  }
  .cs_height_lg_130 {
    height: 130px;
  }
  .cs_height_lg_131 {
    height: 131px;
  }
  .cs_height_lg_132 {
    height: 132px;
  }
  .cs_height_lg_133 {
    height: 133px;
  }
  .cs_height_lg_134 {
    height: 134px;
  }
  .cs_height_lg_135 {
    height: 135px;
  }
  .cs_height_lg_136 {
    height: 136px;
  }
  .cs_height_lg_137 {
    height: 137px;
  }
  .cs_height_lg_138 {
    height: 138px;
  }
  .cs_height_lg_139 {
    height: 139px;
  }
  .cs_height_lg_140 {
    height: 140px;
  }
  .cs_height_lg_141 {
    height: 141px;
  }
  .cs_height_lg_142 {
    height: 142px;
  }
  .cs_height_lg_143 {
    height: 143px;
  }
  .cs_height_lg_144 {
    height: 144px;
  }
  .cs_height_lg_145 {
    height: 145px;
  }
  .cs_height_lg_146 {
    height: 146px;
  }
  .cs_height_lg_147 {
    height: 147px;
  }
  .cs_height_lg_148 {
    height: 148px;
  }
  .cs_height_lg_149 {
    height: 149px;
  }
  .cs_height_lg_150 {
    height: 150px;
  }
}
/*--------------------------------------------------------------
  06. General
----------------------------------------------------------------*/
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1336px;
  }
}
.cs_fs_14 {
  font-size: 14px;
  line-height: 1.86em;
}

.cs_fs_16 {
  font-size: 16px;
  line-height: 1.625em;
}

.cs_fs_18 {
  font-size: 18px;
  line-height: 1.44em;
}

.cs_fs_20 {
  font-size: 20px;
  line-height: 1.5em;
}

.cs_fs_24 {
  font-size: 24px;
  line-height: 1.33em;
}
@media (max-width: 1199px) {
  .cs_fs_24 {
    font-size: 22px;
  }
}

.cs_fs_32 {
  font-size: 32px;
  line-height: 1.25em;
}
@media (max-width: 1199px) {
  .cs_fs_32 {
    font-size: 28px;
  }
}

.cs_fs_48 {
  font-size: 48px;
  line-height: 1.21em;
  letter-spacing: -1px;
}
@media (max-width: 1199px) {
  .cs_fs_48 {
    font-size: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 767px) {
  .cs_fs_48 {
    font-size: 32px;
    line-height: 1.25em;
  }
}

.cs_fs_62 {
  font-size: 62px;
  line-height: 1.113em;
  letter-spacing: -2px;
}
.cs_fs_62 > * {
  letter-spacing: 0;
}
@media (max-width: 1199px) {
  .cs_fs_62 {
    font-size: 50px;
    letter-spacing: -1px;
  }
}
@media (max-width: 575px) {
  .cs_fs_62 {
    font-size: 42px;
    letter-spacing: -1px;
  }
}

.cs_fs_72 {
  font-size: 72px;
  line-height: 1.14em;
  letter-spacing: -2px;
}
@media (max-width: 1400px) {
  .cs_fs_72 {
    font-size: 62px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1199px) {
  .cs_fs_72 {
    font-size: 56px;
    letter-spacing: -1px;
  }
}
@media (max-width: 991px) {
  .cs_fs_72 {
    font-size: 46px;
    line-height: 1.18em;
  }
}
@media (max-width: 575px) {
  .cs_fs_72 {
    font-size: 42px;
    line-height: 1.25em;
    letter-spacing: 0px;
  }
}

.cs_light {
  font-weight: 300;
}

.cs_normal {
  font-weight: 400;
}

.cs_medium {
  font-weight: 500;
}

.cs_semibold {
  font-weight: 600;
}

.cs_bold {
  font-weight: 700;
}

.cs_radius_3 {
  border-radius: 3px;
}

.cs_radius_5 {
  border-radius: 5px;
}

.cs_radius_7 {
  border-radius: 7px;
}

.cs_radius_8 {
  border-radius: 8px;
}

.cs_radius_10 {
  border-radius: 10px;
}

.cs_radius_15 {
  border-radius: 15px;
}

.cs_radius_20 {
  border-radius: 20px;
}

.cs_radius_24 {
  border-radius: 24px;
}

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

.cs_pl_40 {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cs_pl_40 {
    padding-left: 0;
    margin-top: 40px;
  }
}

.cs_opacity_1 {
  opacity: 0.1;
}

.cs_opacity_2 {
  opacity: 0.2;
}

.cs_opacity_3 {
  opacity: 0.3;
}

.cs_opacity_4 {
  opacity: 0.4;
}

.cs_opacity_5 {
  opacity: 0.5;
}

.cs_opacity_6 {
  opacity: 0.6;
}

.cs_opacity_7 {
  opacity: 0.7;
}

.cs_opacity_7_5 {
  opacity: 0.75;
}

.cs_opacity_8 {
  opacity: 0.8;
}

.cs_opacity_9 {
  opacity: 0.9;
}

.cs_gap_y_20 {
  gap: 20px 0;
}

.cs_gap_y_24 {
  gap: 24px 0;
}

.cs_gap_y_30 {
  gap: 30px 0;
}

.cs_gap_y_32 {
  gap: 32px 0;
}

.cs_gap_y_35 {
  gap: 35px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_35 {
    gap: 30px 0;
  }
}

.cs_gap_y_40 {
  gap: 40px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_40 {
    gap: 30px 0;
  }
}

.cs_gap_y_45 {
  gap: 45px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_45 {
    gap: 30px 0;
  }
}

.cs_gap_y_50 {
  gap: 50px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_50 {
    gap: 30px 0;
  }
}

.cs_gap_y_60 {
  gap: 60px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_60 {
    gap: 30px 0;
  }
}

.cs_gap_y_64 {
  gap: 64px 0;
}
@media (max-width: 1199px) {
  .cs_gap_y_64 {
    gap: 50px 0;
  }
}
@media (max-width: 991px) {
  .cs_gap_y_64 {
    gap: 40px 0;
  }
}

.cs_gap_y_65 {
  gap: 65px 0;
}

.cs_gap_y_80 {
  gap: 80px 0;
}

.cs_gap_y_100 {
  gap: 100px 0;
}

@media (min-width: 1200px) {
  .cs_gap_x_32 {
    margin-left: -16px;
    margin-right: -16px;
  }
  .cs_gap_x_32 > * {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cs_gap_x_40 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .cs_gap_x_40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cs_gap_x_50 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .cs_gap_x_50 > * {
    padding-left: 25px;
    padding-right: 25px;
  }
  .cs_gap_x_64 {
    margin-left: -32px;
    margin-right: -32px;
  }
  .cs_gap_x_64 > * {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.cs_gap_x_20 {
  margin-left: -10px;
  margin-right: -10px;
}
.cs_gap_x_20 > * {
  padding-left: 10px;
  padding-right: 10px;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--heading-color);
  opacity: 1;
}

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

.cs_bg_fixed {
  background-attachment: fixed;
}
@media (max-width: 1370px) {
  .cs_bg_fixed {
    background-attachment: initial;
  }
}

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

.cs_center_column {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.cs_white_color {
  color: var(--white-color);
}

.cs_accent_color {
  color: var(--accent-color);
}

.cs_heading_color {
  color: var(--heading-color);
}

.cs_heading_color_2 {
  color: var(--heading-color-2);
}

.cs_body_color {
  color: var(--body-color);
}

.cs_white_bg {
  background-color: var(--white-color);
}

.cs_heading_bg {
  background-color: var(--heading-color);
}

.cs_secondary_bg {
  background-color: var(--body-color);
}

.cs_gray_bg {
  background-color: var(--gray-color);
}

.cs_gray_bg_2 {
  background-color: var(--gray-color-2);
}

/* Start Accordion */
.cs_accordians.cs_style_1 {
  margin-left: 60px;
}
@media (max-width: 1400px) {
  .cs_accordians.cs_style_1 {
    margin-left: 20px;
  }
}
@media (max-width: 1199px) {
  .cs_accordians.cs_style_1 {
    margin-left: 0px;
  }
}
.cs_accordians.cs_style_1 .cs_accordian_title {
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.cs_accordians.cs_style_1 .cs_accordian_body {
  padding: 0 0px 16px 0px;
  margin-top: -8px;
}
.cs_accordians.cs_style_1 .cs_accordian_body p {
  margin: 0;
}
.cs_accordians.cs_style_1 .cs_accordian_head {
  padding: 24px 30px 24px 0px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .cs_accordians.cs_style_1 .cs_accordian_head {
    padding: 15px 25px 15px 0px;
  }
  .cs_accordians.cs_style_1 .cs_accordian_head svg {
    width: 15px;
  }
}
.cs_accordians.cs_style_1 .cs_accordian_head:hover .cs_accordian_title {
  color: var(--heading-color);
}
.cs_accordians.cs_style_1 .cs_accordian {
  border-bottom: 1px solid var(--heading-color);
}
.cs_accordians.cs_style_1 .cs_accordian.active .cs_accordian_head {
  pointer-events: none;
}
.cs_accordians.cs_style_1 .cs_accordian.active .cs_accordian_toggle {
  transform: rotate(180deg);
}
.cs_accordians.cs_style_1 .cs_accordian:first-child .cs_accordian_head {
  padding-top: 0;
}
.cs_accordians.cs_style_1 .cs_accordian:first-child .cs_accordian_toggle {
  top: 8px;
}
.cs_accordians.cs_style_1 .cs_accordian_toggle {
  display: flex;
  transition: all 0.3s ease;
  position: absolute;
  top: 33px;
  right: 0;
}

.cs_accordian_border {
  border: 1px solid var(--border-color);
}

/* End Accordion */
.cs_btn.cs_style_1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 11px 25px;
  outline: none;
  border: none;
  line-height: 1.5em;
  border-radius: 1.6em;
  color: var(--heading-color);
  background-color: var(--white-color);
  text-shadow: 0 50px 0 currentColor;
  overflow: hidden;
  transition: all 0.8s ease;
}
.cs_btn.cs_style_1 span {
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cs_btn.cs_style_1:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.8);
}
.cs_btn.cs_style_1:hover span {
  transform: translateY(-50px);
}
.cs_btn.cs_style_1.cs_type_1 {
  color: var(--white-color);
  background: linear-gradient(1deg, #1c0e3f -8.1%, #4925a5 57.04%);
}

.cs_badge {
  display: inline-block;
  border-radius: 20px;
  padding: 6px 20px;
}

.cs_value_card {
  padding: 24px;
  border: 1px solid #e3e8ef;
  border-radius: 24px;
  transition: all 0.3s ease;
}
.cs_value_card .cs_icon {
  height: 56px;
  width: 56px;
  border-radius: 50%;
}
.cs_value_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 50px 30px -40px rgba(0, 0, 0, 0.1);
}

.cs_form_field {
  display: block;
  width: 100%;
  border: 1px solid var(--border-color);
  background-color: transparent;
  outline: none;
  padding: 10px 12px;
  resize: none;
  margin-bottom: 0;
  color: var(--body-color);
}
.cs_form_field:focus {
  border-color: var(--accent-color);
}

.breadcrumb-item.active {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .cs_mb_32 {
    margin-bottom: 24px;
  }
}
/*--------------------------------------------------------------
  07. Slider
----------------------------------------------------------------*/
.cs_slider {
  position: relative;
}

.slick-arrow {
  cursor: pointer;
}

.draggable {
  cursor: url(../img/drag.webp) 16 9, ew-resize !important;
}

.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;
}

.cs_slider_gap_24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}
.cs_slider_gap_24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_left,
.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
  height: 60px;
  width: 60px;
  flex: none;
  background-color: var(--heading-color);
  transition: all 0.4s ease;
  color: var(--white-color);
}
@media (max-width: 991px) {
  .cs_slider_arrows.cs_style_1 .cs_left_arrow,
  .cs_slider_arrows.cs_style_1 .cs_right_arrow {
    width: 50px;
    height: 50px;
  }
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_1 .cs_right_arrow:hover {
  background-color: var(--heading-color);
}
.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_left {
  left: 0;
}
.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_right {
  right: 0;
}

.cs_slider_arrows.cs_style_2 {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cs_slider_arrows.cs_style_2 .slick-arrow {
  margin-top: -40px;
  position: relative;
  z-index: 3;
}
.cs_slider_arrows.cs_style_2 .slick-arrow:hover {
  opacity: 0.75;
}
.cs_slider_arrows.cs_style_2.cs_type_1 {
  max-width: 45px;
  margin-left: auto;
  margin-right: 0;
}

.cs_slider_arrows.cs_style_3 .cs_right_arrow {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.75);
  height: 480px;
  width: calc(100% - 1087px);
  transition: all 0.3s ease;
}
@media (max-width: 1400px) {
  .cs_slider_arrows.cs_style_3 .cs_right_arrow {
    width: calc(100% - 900px);
    padding-right: 48px;
  }
}
@media (max-width: 1199px) {
  .cs_slider_arrows.cs_style_3 .cs_right_arrow {
    width: calc(100% - 874px);
    height: 400px;
    padding-right: 0;
  }
}
.cs_slider_arrows.cs_style_3 .cs_right_arrow span {
  color: var(--heading-color);
  width: 126px;
  height: 126px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
}
@media (max-width: 1199px) {
  .cs_slider_arrows.cs_style_3 .cs_right_arrow span {
    width: 90px;
    height: 90px;
  }
}
.cs_slider_arrows.cs_style_3 .cs_right_arrow:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

.cs_slider_arrows.cs_style_4 {
  display: flex;
  align-items: center;
  width: 200px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cs_slider_arrows.cs_style_4 {
    width: 120px;
  }
}
.cs_slider_arrows.cs_style_4 .slick-arrow {
  transition: all 0.3s ease;
}
.cs_slider_arrows.cs_style_4 .slick-arrow svg {
  width: 9px;
  height: 17px;
}
.cs_slider_arrows.cs_style_4 .slick-arrow:hover {
  opacity: 0.75;
}

.cs_slider_arrows.cs_style_5 {
  display: flex;
  gap: 24px;
}
@media (max-width: 575px) {
  .cs_slider_arrows.cs_style_5 {
    gap: 10px;
  }
}
.cs_slider_arrows.cs_style_5 .cs_left_arrow,
.cs_slider_arrows.cs_style_5 .cs_right_arrow {
  height: 40px;
  width: 40px;
  border: 1px solid #e3e8ef;
  flex: none;
  transition: all 0.4s ease;
}
.cs_slider_arrows.cs_style_5 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_5 .cs_right_arrow:hover {
  background-color: var(--primary);
}
.cs_slider_arrows.cs_style_5 {
  position: absolute;
  right: 0;
  bottom: 10px;
}

.cs_slider_arrows_4_transparent_wrap {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 13px 0;
  backdrop-filter: blur(5px);
  border-radius: 0 0 20px 20px;
}
.cs_slider_arrows_4_transparent_wrap .cs_slider_number.cs_style_2 {
  color: #fff;
}

.cs_pagination_1_wrap {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: 100%;
}

.cs_pagination_1_in {
  max-width: 350px;
  width: 100%;
}

.cs_pagination.cs_style_1 {
  display: flex;
  justify-content: center;
}
.cs_pagination.cs_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  width: 100%;
}
.cs_pagination.cs_style_1 li {
  display: flex;
  flex: 1;
  height: 4px;
}
.cs_pagination.cs_style_1 li button {
  height: 100%;
  width: 100%;
  font-size: 0;
  color: transparent;
  padding: 0;
  background-color: rgba(249, 251, 243, 0.5);
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cs_pagination.cs_style_1 li button:hover {
  background-color: rgba(249, 251, 243, 0.75);
}
.cs_pagination.cs_style_1 li.slick-active button {
  background-color: var(--white-color);
}

.cs_pagination.cs_style_2 {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.cs_pagination.cs_style_2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
}
.cs_pagination.cs_style_2 li {
  display: flex;
  flex: 1;
  height: 6px;
  width: 30px;
  margin: 3px;
  border-radius: 10px;
  overflow: hidden;
}
.cs_pagination.cs_style_2 li button {
  height: 100%;
  width: 100%;
  font-size: 0;
  color: transparent;
  padding: 0;
  background-color: var(--heading-color);
  border: none;
  outline: none;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.cs_pagination.cs_style_2 li button:hover {
  opacity: 1;
}
.cs_pagination.cs_style_2 li.slick-active button {
  opacity: 1;
}

.cs_slider_number.cs_style_1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cs_slider_number.cs_style_1 {
    margin-bottom: 10px;
  }
}
.cs_slider_number.cs_style_1 > span[data-number]:before {
  content: "0" attr(data-number);
}
.cs_slider_number.cs_style_1 > span:before {
  content: attr(data-number);
  display: none;
}
.cs_slider_number.cs_style_1 > span > span {
  display: block;
}
.cs_slider_number.cs_style_1 [data-number="1"]::before,
.cs_slider_number.cs_style_1 [data-number="2"]::before,
.cs_slider_number.cs_style_1 [data-number="3"]::before,
.cs_slider_number.cs_style_1 [data-number="4"]::before,
.cs_slider_number.cs_style_1 [data-number="5"]::before,
.cs_slider_number.cs_style_1 [data-number="6"]::before,
.cs_slider_number.cs_style_1 [data-number="7"]::before,
.cs_slider_number.cs_style_1 [data-number="8"]::before,
.cs_slider_number.cs_style_1 [data-number="9"]::before {
  display: block;
}
.cs_slider_number.cs_style_1 [data-number="1"] > span,
.cs_slider_number.cs_style_1 [data-number="2"] > span,
.cs_slider_number.cs_style_1 [data-number="3"] > span,
.cs_slider_number.cs_style_1 [data-number="4"] > span,
.cs_slider_number.cs_style_1 [data-number="5"] > span,
.cs_slider_number.cs_style_1 [data-number="6"] > span,
.cs_slider_number.cs_style_1 [data-number="7"] > span,
.cs_slider_number.cs_style_1 [data-number="8"] > span,
.cs_slider_number.cs_style_1 [data-number="9"] > span {
  display: none;
}

.cs_slider_number.cs_style_2 {
  display: inline-flex;
  gap: 5px;
  color: var(--heading-color);
}
.cs_slider_number.cs_style_2 .cs_slider_number_seperator::before {
  content: "/";
}

.cs_full_width_slider_section {
  width: calc(100% + (100vw - 1296px) / 2);
}
@media (max-width: 1400px) {
  .cs_full_width_slider_section {
    width: calc(100% + (100vw - 1116px) / 2);
  }
}
@media (max-width: 1199px) {
  .cs_full_width_slider_section {
    width: calc(100% + (100vw - 936px) / 2);
  }
}
@media (max-width: 991px) {
  .cs_full_width_slider_section {
    width: 100%;
    padding-right: 12px;
  }
}

.slick-slide .cs_card.cs_style_4 .cs_card_info {
  opacity: 0;
  transition: all 0.4s ease;
}
.slick-slide.slick-active .cs_card.cs_style_4 .cs_card_info {
  opacity: 1;
  transition-delay: 0.4s;
}

@media (max-width: 991px) {
  .cs_hide_lg {
    display: none;
  }
}
.cs_show_lg {
  display: none !important;
}

@media (max-width: 991px) {
  .cs_hide_lg {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cs_show_lg {
    display: flex !important;
  }
}
/*--------------------------------------------------------------
08. Header
----------------------------------------------------------------*/
.cs_site_header {
  position: absolute;
  z-index: 101;
  width: 100%;
  left: 0;
  top: 0px;
  transition: all 0.4s ease;
}

.cs_header_icon_btn {
  display: inline-flex;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--white-color);
}
.cs_header_icon_btn:hover {
  color: var(--white-color);
  opacity: 0.75;
}

.cs_header_icon_btns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cs_header_form_wrap {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding-left: 15px;
  padding-right: 15px;
}
.cs_header_form_wrap.active {
  opacity: 1;
  visibility: visible;
}

.cs_header_form_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--heading-color);
  opacity: 0.85;
  cursor: zoom-out;
}

.cs_header_form {
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 100%;
}
.cs_header_form .cs_header_form_input {
  display: block;
  width: 100%;
  height: 56px;
  background-color: var(--gray-color);
  border: none;
  border-radius: 10px;
  padding: 5px 20px 5px 50px;
  outline: none;
}
.cs_header_form .cs_header_form_btn {
  position: absolute;
  left: 0;
  top: 0;
  height: 56px;
  background-color: transparent;
  border: none;
  outline: none;
  width: 50px;
  color: var(--heading-color);
}
.cs_header_form .cs_header_form_btn:hover {
  opacity: 0.75;
}

.cs_site_header.cs_style_1 .cs_main_header_in,
.cs_site_header.cs_style_1 .cs_top_header_in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.cs_site_header.cs_style_1 .cs_main_header_in {
  height: 100px;
  transition: all 0.3s ease;
}
.cs_site_header.cs_style_1 .cs_main_header_in.cs_type_1 {
  border-bottom: 1px solid #e3e8ef;
}
.cs_site_header.cs_style_1 .cs_top_header_in {
  height: 50px;
}
.cs_site_header.cs_style_1 .cs_main_header_right {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 50px;
}
@media (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .cs_site_header.cs_style_1 .cs_main_header_right .cs_btn.cs_style_1 {
    display: none;
  }
}

.cs_site_header.cs_style_1.cs_sticky_active {
  background-color: var(--accent-color);
  box-shadow: 0 10px 10px -10px rgba(255, 255, 255, 0.06);
}
.cs_site_header.cs_style_1.cs_sticky_active .cs_main_header_in {
  height: 80px;
}
.cs_site_header.cs_style_1.cs_color_1.cs_sticky_active {
  background-color: var(--white-color);
  box-shadow: 0 10px 10px -10px rgba(55, 72, 54, 0.06);
}
.cs_site_header.cs_style_1.cs_color_2 .cs_menu_toggle {
  color: var(--heading-color);
}
.cs_site_header.cs_style_1.cs_color_2 .cs_active + .cs_menu_toggle {
  color: #fff;
}
.cs_site_header.cs_style_1.cs_color_2.cs_sticky_active {
  background-color: var(--white-color);
  box-shadow: 0 10px 10px -10px rgba(55, 72, 54, 0.06);
}

@media screen and (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_top_header_in {
    justify-content: center;
  }
  .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_sticky_header .cs_top_header_in {
  overflow: hidden;
  transition: all 0.3s ease;
}

.cs_site_branding {
  display: inline-flex;
}
.cs_site_branding + .cs_nav {
  margin-left: 80px;
}
@media (max-width: 1600px) {
  .cs_site_branding + .cs_nav {
    margin-left: 40px;
  }
}
@media (max-width: 1540px) {
  .cs_site_branding + .cs_nav {
    margin-left: 30px;
  }
}

.cs_main_header {
  position: relative;
}
.cs_main_header .container-fluid {
  padding-right: 120px;
  padding-left: 120px;
}

@media screen and (min-width: 1200px) {
  .cs_main_header_center,
  .cs_top_header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .cs_nav {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1.6em;
  }
  .cs_nav .cs_nav_list {
    display: flex !important;
    flex-wrap: wrap;
    height: inherit;
  }
  .cs_nav .cs_nav_list > li {
    height: inherit;
    margin-right: 2px;
  }
  .cs_nav .cs_nav_list > li:last-child {
    margin-right: 0;
  }
  .cs_nav .cs_nav_list > li > a {
    padding: 8px 24px;
    display: inline-flex;
    position: relative;
    height: inherit;
    align-items: center;
  }
  .cs_nav .cs_nav_list > li.current-menu-item a,
  .cs_nav .cs_nav_list > li > a:hover {
    padding: 8px 24px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: inherit;
  }
  .cs_nav .cs_nav_list > li > ul {
    left: 0;
    top: calc(100% + 15px);
    pointer-events: none;
  }
  .cs_nav .cs_nav_list > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .cs_nav .cs_nav_list > li.menu-item-has-children > a {
    position: relative;
  }
  .cs_nav .cs_nav_list li:not(.cs_mega_menu) {
    position: relative;
  }
  .cs_nav .cs_nav_list ul {
    width: 260px;
    background-color: var(--white-color);
    position: absolute;
    border-top: 2px solid var(--heading-color);
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 0 0 5px 5px;
    transition: all 0.4s 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 a:hover {
    background-color: #f2f2f2;
  }
  .cs_nav .cs_nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .cs_menu_toggle,
  .cs_munu_dropdown_toggle {
    display: none;
  }
  .cs_nav .cs_nav_list .cs_mega_menu {
    position: relative;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1296px !important;
    display: flex !important;
    position: fixed;
    top: 100px !important;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px 10px;
    border-top: 2px solid var(--heading-color);
    border-radius: 0 0 5px 5px;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper a {
    padding: 7px 10px;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper > li {
    flex: 1;
    padding: 10px 0;
  }
  .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_wrapper > li ul a {
    transition: all 0.4s ease;
  }
  .cs_nav .cs_nav_list .cs_mega_menu:hover .cs_mega_wrapper li ul {
    opacity: 1;
    visibility: visible;
  }
  .cs_site_header.cs_style_1.cs_size_md .cs_nav .cs_nav_list .cs_mega_wrapper {
    top: 85px !important;
  }
  .cs_nav .cs_nav_list > li ul:not(.cs_mega_wrapper) .menu-item-has-children > a {
    position: relative;
  }
  .cs_site_header.cs_style_1.cs_color_1 .cs_nav .cs_nav_list > li > a,
  .cs_site_header.cs_style_1.cs_color_1 .cs_header_icon_btn {
    color: var(--heading-color);
  }
}
@media screen and (max-width: 1600px) {
  .cs_main_header .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 1400px) {
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1116px !important;
  }
}
@media screen and (max-width: 1199px) {
  .cs_main_header .container-fluid {
    padding-right: 8px;
    padding-left: 8px;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 100% !important;
  }
  .cs_munu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }
  .cs_munu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }
  .cs_munu_dropdown_toggle span:before, .cs_munu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    transition: all 0.3s ease;
  }
  .cs_munu_dropdown_toggle span:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .cs_munu_dropdown_toggle.active span:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .menu-item-has-children .menu-item-has-children .cs_munu_dropdown_toggle {
    padding: 20px 18px;
  }
  .cs_site_branding {
    position: relative;
    z-index: 101;
  }
  .cs_nav .cs_nav_list_wrap {
    position: fixed;
    width: 100vw;
    left: -100vw;
    background-color: var(--heading-color);
    color: var(--white-color);
    top: 0;
    height: 100vh;
    line-height: 1.6em;
    padding-top: 80px;
    transition: all 0.4s ease;
  }
  .cs_nav .cs_nav_list_wrap.cs_active {
    left: 0vw;
  }
  .cs_nav .cs_nav_list {
    padding: 10px 0;
    height: 100%;
    overflow: auto;
  }
  .cs_nav .cs_nav_list ul {
    padding-left: 15px;
    display: none;
  }
  .cs_nav .cs_nav_list a {
    display: block;
    padding: 12px 15px;
    line-height: 16px;
  }
  .cs_nav .cs_nav_list a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .cs_nav .cs_nav_list a > li > a {
    font-size: 18px;
    line-height: 22px;
  }
  .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;
    color: var(--white-color);
  }
  .cs_menu_toggle span,
  .cs_menu_toggle span:before,
  .cs_menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    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 .cs_main_header_center .cs_site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
  .cs_site_header.cs_style_1 {
    top: 0;
  }
  .cs_nav .cs_nav_list img {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .cs_site_header .container {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
  09. Footer
----------------------------------------------------------------*/
.cs_footer_widget_menu a,
.cs_footer_links a,
.cs_post_style_1 .cs_post_title a,
.cs_contact_info li > a,
.cs_post_style_2 .cs_card_title a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}
.cs_footer_widget_menu a:hover,
.cs_footer_links a:hover,
.cs_post_style_1 .cs_post_title a:hover,
.cs_contact_info li > a:hover,
.cs_post_style_2 .cs_card_title a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.cs_copyright {
  color: var(--heading-color);
  opacity: 0.75;
}

.cs_bottom_footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid #e3e8ef;
  gap: 10px 20px;
}
@media (max-width: 991px) {
  .cs_bottom_footer {
    padding: 15px 0;
    justify-content: center;
  }
}

.cs_social_btns.cs_style_1 {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 14px;
}
.cs_social_btns.cs_style_1 a {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: none;
  outline: none;
  background-color: #f1f4f8;
  display: flex;
  color: #97a3b6;
}
.cs_social_btns.cs_style_1 a:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
  transform: scale(1.08);
}
.cs_social_btns.cs_style_1.cs_type_1 {
  font-size: 17px;
  gap: 20px;
}
.cs_social_btns.cs_style_1.cs_type_1 a {
  border: none;
  height: initial;
  width: initial;
}

.cs_footer_links {
  display: flex;
  flex-wrap: wrap;
}
.cs_footer_links li:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
  position: relative;
  top: -1px;
}
.cs_footer_links a {
  color: var(--heading-color);
  opacity: 0.75;
}
.cs_footer_links a:hover {
  opacity: 1;
}

.cs_footer_widget + .cs_footer_widget {
  margin-top: 24px;
}

.cs_newsletter.cs_style_1 {
  position: relative;
}
.cs_newsletter.cs_style_1 .cs_newsletter_input {
  height: 100%;
  padding: 16px 85px 16px 52px;
  outline: none;
  display: block;
  width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 50px;
}
.cs_newsletter.cs_style_1 .cs_newsletter_input::placeholder {
  color: var(--body-color);
  opacity: 0.75;
}
.cs_newsletter.cs_style_1 .cs_newsletter_input::-ms-input-placeholder {
  color: var(--heading-color);
  opacity: 0.75;
}
.cs_newsletter.cs_style_1 .cs_newsletter_btn {
  padding: 8px 16px;
  border: none;
  outline: none;
  border-radius: 42px;
  position: absolute;
  right: 8px;
  line-height: 1.25em;
  font-weight: 600;
  background: linear-gradient(60deg, #1c0e3f 19%, rgba(90, 64, 154, 0.7) 86.31%);
  top: 8px;
}
.cs_newsletter.cs_style_1 .cs_newsletter_btn:hover {
  transform: scale(1.04);
}
.cs_newsletter.cs_style_1 .cs_form_icon {
  display: flex;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.cs_footer_widget_menu {
  color: var(--body-color);
}
.cs_footer_widget_menu li:not(:last-child) {
  margin-bottom: 17px;
}

.cs_footer_widget_title {
  font-size: 16px;
  margin-bottom: 14px;
  font-weight: 600;
}

.cs_footer_row {
  display: flex;
  gap: 30px 100px;
  padding: 76px 0 32px 0;
}
@media (max-width: 1199px) {
  .cs_footer_row {
    gap: 30px 45px;
  }
}
@media (max-width: 991px) {
  .cs_footer_row {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 35px 24px;
    padding: 70px 0 50px;
  }
}
@media (max-width: 380px) {
  .cs_footer_row {
    flex-direction: column;
  }
}
.cs_footer_row .cs_footer_col {
  flex: none;
  max-width: 162px;
}
.cs_footer_row .cs_footer_col:last-child {
  max-width: 300px;
}
@media (max-width: 575px) {
  .cs_footer_row .cs_footer_col:last-child {
    max-width: 100%;
  }
}
.cs_footer_row .cs_footer_col:first-child {
  flex: 1;
  max-width: initial;
  padding-right: 12px;
}
@media (max-width: 991px) {
  .cs_footer_row .cs_footer_col:first-child {
    width: 100%;
    flex: none;
  }
}

.cs_footer.cs_style_1.cs_color_1 {
  background-color: var(--heading-color);
  color: var(--white-color);
}
.cs_footer.cs_style_1.cs_color_1 .cs_footer_widget_menu,
.cs_footer.cs_style_1.cs_color_1 .cs_footer_widget_title,
.cs_footer.cs_style_1.cs_color_1 .cs_copyright,
.cs_footer.cs_style_1.cs_color_1 .cs_footer_links a,
.cs_footer.cs_style_1.cs_color_1 .cs_footer_widget_menu a {
  color: var(--white-color);
}
.cs_footer.cs_style_1.cs_color_1 .cs_bottom_footer {
  border-color: var(--white-color);
}
.cs_footer.cs_style_1.cs_color_1 .cs_text_widget p {
  border-color: var(--white-color);
}
.cs_footer.cs_style_1.cs_color_1 .cs_newsletter_input {
  background-color: var(--white-color);
}
.cs_footer.cs_style_1.cs_color_1 .cs_newsletter_btn {
  background-color: #e1ece3;
}
.cs_footer.cs_style_1.cs_color_1 .cs_newsletter_btn:hover {
  background-color: var(--heading-color);
}

.cs_footer.cs_style_1.cs_color_2 {
  background-color: #e1ece3;
}
.cs_footer.cs_style_1.cs_color_2 .cs_newsletter_input {
  background-color: var(--white-color);
}
.cs_footer.cs_style_1.cs_color_2 .cs_newsletter_btn {
  background-color: var(--heading-color);
  color: var(--white-color);
}

/*--------------------------------------------------------------
  10. Sidebar
----------------------------------------------------------------*/
.cs_sidebar_item:not(:last-child) {
  margin-bottom: 32px;
}
.cs_sidebar_item .cs_social_btns.cs_style_2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.cs_sidebar_item .cs_social_btns.cs_style_2 a img {
  transition: transform 0.3s ease;
}
.cs_sidebar_item .cs_social_btns.cs_style_2 a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.cs_sidebar_item .cs_social_btns.cs_style_2 a:hover img {
  transform: scale(1.15);
}

.cs_sidebar_widget_title {
  font-size: 20px;
  line-height: 1.5em;
  margin-bottom: 24px;
}

.cs_category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cs_cat_item {
  font-size: 16px;
  line-height: 1.625em;
  border: 1px solid #cdd5e0;
  padding: 2px 12px;
  display: inline-block;
  border-radius: 30px;
  color: var(--body-color);
}
.cs_cat_item:hover {
  color: #fff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cs_widget_tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs_widget_tags ul li {
  position: relative;
}
.cs_widget_tags ul li:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e8ef;
}

.cs_recent_posts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs_recent_posts li:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cs_recent_posts li:not(:last-child) {
    margin-bottom: 12px;
  }
}

.cs_recent_post {
  display: flex;
  align-items: center;
}

.cs_recent_post_thumb {
  height: 72px;
  width: 72px;
  border-radius: 8px;
  flex: none;
  overflow: hidden;
  margin-right: 15px;
}
.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_date {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.86em;
  color: #97a3b6;
}

.cs_recent_post_title {
  font-size: 16px;
  margin-bottom: 8px;
}

.cs_sidebar_search {
  position: relative;
}

.cs_sidebar_search input {
  display: block;
  width: 100%;
  background-color: transparent;
  outline: none;
  border: 1px solid var(--heading-color);
  padding: 9px 40px 9px 15px;
  transition: all 0.3sease;
  border-radius: 10px;
}
.cs_sidebar_search input:focus {
  border-color: var(--heading-color);
}

.cs_sidebar_search_btn {
  position: absolute;
  border: none;
  outline: none;
  bottom: 0px;
  right: 0;
  padding: 10px 14px;
  cursor: pointer;
  background-color: var(--heading-color);
  border-radius: 0 10px 10px 0;
  transition: all 0.3s ease;
  color: #fff;
}
.cs_sidebar_search_btn:hover {
  color: #fff;
  opacity: 0.9;
}

.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;
}

.cs_right_sidebar {
  padding-left: 64px;
}
@media (max-width: 1199px) {
  .cs_right_sidebar {
    padding-left: 32px;
  }
}
@media (max-width: 991px) {
  .cs_right_sidebar {
    padding-left: 0;
    margin-top: 48px;
  }
}

/*--------------------------------------------------------------
  11. Hero
----------------------------------------------------------------*/
.cs_hero.cs_style_1 .cs_hero_in {
  padding: 164px 0 64px;
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_1 .cs_hero_in {
    padding: 140px 0 64px;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_in {
    text-align: center;
    padding: 140px 0 0px;
  }
}
.cs_hero.cs_style_1 .cs_hero_text {
  max-width: 660px;
}
.cs_hero.cs_style_1 .cs_badge {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.cs_hero.cs_style_1 .cs_hero_title {
  max-width: 620px;
}
@media (max-width: 1400px) {
  .cs_hero.cs_style_1 .cs_hero_title {
    max-width: 550px;
  }
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_1 .cs_hero_title {
    max-width: 495px;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_title {
    max-width: 100%;
  }
}
.cs_hero.cs_style_1 .cs_hero_brands {
  display: flex;
  margin-top: 120px;
  gap: 15px 26px;
}
@media (max-width: 1400px) {
  .cs_hero.cs_style_1 .cs_hero_brands {
    margin-top: 70px;
  }
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_1 .cs_hero_brands {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_brands {
    justify-content: center;
    margin-top: 32px;
  }
}
.cs_hero.cs_style_1 .cs_hero_thumb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 33.7%;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_thumb {
    width: 48%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 32px;
  }
}
.cs_hero.cs_style_1 .cs_hero_thumb_sm_1 {
  position: absolute;
  top: 83px;
  left: -32%;
  width: 58%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_1 .cs_hero_thumb_sm_1 {
    left: -20%;
    width: 50%;
    top: 40px;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_thumb_sm_1 {
    left: 0;
    top: 20px;
    width: 45%;
  }
}
@media (max-width: 575px) {
  .cs_hero.cs_style_1 .cs_hero_thumb_sm_1 {
    width: 50%;
    top: 10px;
    left: -10px;
  }
}
.cs_hero.cs_style_1 .cs_hero_thumb_sm_2 {
  position: absolute;
  right: -30%;
  bottom: 25px;
  width: 55%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_1 .cs_hero_thumb_sm_2 {
    right: -18%;
    width: 50%;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_thumb_sm_2 {
    right: 0;
    width: 45%;
    bottom: 10px;
  }
}
@media (max-width: 575px) {
  .cs_hero.cs_style_1 .cs_hero_thumb_sm_2 {
    width: 50%;
    right: -10px;
  }
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_1 .cs_hero_subtitle {
    max-width: 450px;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_subtitle {
    max-width: 100%;
  }
}
.cs_hero.cs_style_1.cs_type_1 .cs_hero_in {
  padding-top: 170px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1.cs_type_1 .cs_hero_in {
    padding-top: 130px;
    padding-bottom: 70px;
  }
}

.cs_vision_card_img {
  border-radius: 24px;
}

/*--------------------------------------------------------------
  12. CTA
----------------------------------------------------------------*/
.cs_cta.cs_style_1 {
  border-radius: 32px;
  transform-origin: center center;
  will-change: transform, border-radius;
  padding: 0 25px;
}
.cs_cta.cs_style_1 .cs_badge {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 7px 20px;
}
.cs_cta.cs_style_1 .cs_cta_title {
  letter-spacing: -2px;
}

.cs_cta_style_2 {
  width: 100%;
  border-radius: 32px;
  padding: 0 60px;
  display: flex;
  gap: 60px;
}
@media (max-width: 1400px) {
  .cs_cta_style_2 {
    padding: 0 40px;
    gap: 25px;
  }
}
@media (max-width: 1199px) {
  .cs_cta_style_2 {
    padding: 0 40px;
    gap: 32px 25px;
  }
}
@media (max-width: 991px) {
  .cs_cta_style_2 {
    flex-direction: column;
    padding: 50px 32px;
    gap: 40px 32px;
  }
}
@media (max-width: 575px) {
  .cs_cta_style_2 {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
.cs_cta_style_2 .cs_contact_img {
  max-width: 340px;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  display: flex;
  align-items: flex-end;
  flex: none;
}
@media (max-width: 1199px) {
  .cs_cta_style_2 .cs_contact_img {
    max-width: 280px;
  }
}
@media (max-width: 991px) {
  .cs_cta_style_2 .cs_contact_img {
    max-width: 100%;
    padding-top: 0;
    justify-content: center;
  }
}
.cs_cta_style_2 .cs_contact_img .cs_img_outline {
  padding: 10px 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 0;
  border-radius: 70px 70px 0 0;
}
.cs_cta_style_2 .cs_contact_img .cs_img_outline img {
  border-radius: 60px 60px 0 0;
}
.cs_cta_style_2 .cs_cta_left {
  flex: none;
  max-width: 390px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 64px 0;
}
@media (max-width: 1199px) {
  .cs_cta_style_2 .cs_cta_left {
    max-width: 280px;
  }
}
@media (max-width: 991px) {
  .cs_cta_style_2 .cs_cta_left {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
}
.cs_cta_style_2 .cs_cta_right {
  flex: 1;
  padding-left: 20px;
  display: flex;
  align-items: center;
  padding: 64px 0;
}
@media (max-width: 991px) {
  .cs_cta_style_2 .cs_cta_right {
    padding: 0;
  }
}
.cs_cta_style_2 .cs_cta_contact_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cs_cta_style_2 .cs_cta_contact_list li {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.cs_cta_style_2 .cs_address {
  display: flex;
  gap: 12px;
}
.cs_cta_style_2 .cs_info {
  display: flex;
  gap: 12px;
}

/*--------------------------------------------------------------
  13. Testimonial
----------------------------------------------------------------*/
.cs_white_bg hr {
  border-color: #e3e8ef;
}

.cs_testimonial.cs_style_1 hr {
  margin-bottom: 32px;
  border-color: #e3e8ef;
}
.cs_testimonial.cs_style_1 .cs_testimonial_meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cs_testimonial.cs_style_1 .cs_testimonial_meta img {
  height: 62px;
  width: 62px;
  border-radius: 50%;
  object-fit: cover;
}
.cs_testimonial.cs_style_1 .cs_testimonial_blockquote {
  line-height: 1.67em;
}

/*-------------------------------------------------
 Funfact Section
---------------------------------------------------*/
.cs_funfact_wrapper {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-around;
  gap: 30px 20px;
}
@media (max-width: 991px) {
  .cs_funfact_wrapper {
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 575px) {
  .cs_funfact_wrapper {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
  }
}

.cs_funfact.cs_style_1 {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.cs_funfact.cs_style_1 .odometer {
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
  14. Team
----------------------------------------------------------------*/
.cs_team_member.cs_style_1 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.cs_team_member.cs_style_1::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(transparent, var(--heading-color));
}
.cs_team_member.cs_style_1 .cs_team_member_desc {
  margin-top: 0px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.cs_team_member.cs_style_1 .cs_team_member_img {
  width: 100%;
  border-radius: 20px;
}
.cs_team_member.cs_style_1 .cs_team_member_info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 16px;
  width: 100%;
}
.cs_team_member.cs_style_1:hover .cs_team_member_desc {
  margin-top: 16px;
  max-height: 72px;
  overflow: hidden;
  transition: all 0.4s ease;
}

/*--------------------------------------------------------------
  15. Post
----------------------------------------------------------------*/
.cs_section_heading_style_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 767px) {
  .cs_section_heading_style_1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.cs_section_heading_style_1 .cs_section_heading_left {
  width: min(50%, 600px);
}
@media (max-width: 767px) {
  .cs_section_heading_style_1 .cs_section_heading_left {
    width: 100%;
  }
}
.cs_section_heading_style_1 .cs_section_heading_right {
  width: min(50%, 460px);
}
@media (max-width: 767px) {
  .cs_section_heading_style_1 .cs_section_heading_right {
    width: 100%;
  }
}
.cs_section_heading_style_1 .cs_section_heading_right .cs_btn.cs_style_1 {
  border: 1px solid #cdd5e0;
  line-height: 1.3em;
  padding: 12px 24px;
}
.cs_section_heading_style_1 .cs_section_heading_right .cs_btn.cs_style_1:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-color: var(--accent-color);
}

.cs_post_avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.cs_post_avatar .cs_post_avatar_text span {
  padding-left: 20px;
  position: relative;
  margin-left: 10px;
}
.cs_post_avatar .cs_post_avatar_text span::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--white-color);
  left: 0;
  top: 7px;
}
.cs_post_avatar .cs_post_avatar_text span:first-child {
  margin-left: 0;
  padding-left: 0;
}
.cs_post_avatar .cs_post_avatar_text span:first-child::after {
  display: none;
}
.cs_post_avatar .cs_post_avatar_icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
}
@media (max-width: 360px) {
  .cs_post_avatar .cs_post_avatar_icon {
    display: none;
  }
}

.cs_post_style_1 {
  transition: all 0.4s ease;
  background-color: #fff;
}
.cs_post_style_1 .cs_post_info {
  transition: all 0.4s ease;
}
.cs_post_style_1 .cs_post_title {
  margin-top: 8px;
}
.cs_post_style_1 .cs_post_title a:hover {
  color: var(--accent-color);
}
.cs_post_style_1 .cs_post_meta li {
  font-size: 16px;
  line-height: 1.625;
}
.cs_post_style_1 .cs_date {
  color: #97a3b6;
}
.cs_post_style_1 .cs_post_thumb {
  overflow: hidden;
  display: block;
  border-radius: 24px;
}
.cs_post_style_1 .cs_post_thumb img {
  width: 100%;
  transition: all 0.7s ease;
}
.cs_post_style_1 .cs_post_thumb:hover img {
  transform: scale(1.03);
}
.cs_post_style_1:hover {
  transform: translateY(-5px);
}

.cs_post_style_2 {
  position: relative;
  min-height: 400px;
  width: 100%;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  align-items: end;
}
@media (max-width: 575px) {
  .cs_post_style_2 {
    padding: 25px;
  }
}
.cs_post_style_2 .cs_overlay {
  border-radius: 24px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18.5%, #000 110.13%);
}
.cs_post_style_2 .cs_post_card_in {
  position: relative;
  z-index: 1;
}
.cs_post_style_2 .cs_post_card_in .cs_post_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.cs_post_style_2 .cs_card_title a {
  color: #fff;
}
.cs_post_style_2 .cs_btn.cs_style_1 {
  padding: 5px 20px;
}

.cs_blog_details_heading {
  padding: 50px 0;
}
.cs_blog_details_heading .cs_post_avatar_text span::after {
  background-color: var(--body-color);
}

.cs_blog_details ul {
  list-style: none;
  padding-left: 32px;
  margin: 32px 0;
}
@media (max-width: 575px) {
  .cs_blog_details ul {
    padding-left: 20px;
  }
}
.cs_blog_details ul li:not(:last-child) {
  margin-bottom: 32px;
}
.cs_blog_details blockquote {
  padding: 16px;
  background: #f8fafc;
  border-left: 3px solid #652cd1;
  margin-bottom: 32px;
  color: var(--accent-color);
  font-weight: 600;
}
.cs_blog_details p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.44em;
  margin-bottom: 32px;
}
.cs_blog_details h2 {
  font-size: 20px;
  line-height: 1.5em;
  margin-bottom: 8px;
}

.cs_single_blog_tags {
  gap: 16px;
}
@media (max-width: 991px) {
  .cs_single_blog_tags {
    gap: 8px;
  }
}
.cs_single_blog_tags a {
  padding: 8px 12px;
  background-color: #f1f4f8;
  border: 1px solid #cdd5e0;
  border-radius: 24px;
}

.cs_article_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .cs_article_heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
  16. Pricing
----------------------------------------------------------------*/
.cs_tab_links.cs_style_1 {
  padding: 8px;
  border-radius: 50px;
  gap: 6px;
  color: #97a3b6;
}
.cs_tab_links.cs_style_1 li a {
  display: block;
  padding: 7px 35px;
  border-radius: 50px;
}
.cs_tab_links.cs_style_1 li a:hover {
  color: var(--accent-color);
  background: rgba(var(--accent-color), 0.1);
}
.cs_tab_links.cs_style_1 li.active a {
  color: var(--white-color);
  background: linear-gradient(60deg, #1c0e3f 19%, rgba(90, 64, 154, 0.7) 86.31%);
}

.cs_tab {
  display: none;
}
.cs_tab.active {
  display: block;
}

.cs_pricing_table_style_1 {
  width: 100%;
  height: 100%;
  padding: 32px;
  border: 1px solid #e3e8ef;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.cs_pricing_table_style_1 .cs_offer_badge {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 8px;
  border-radius: 8px;
  letter-spacing: 0.1px;
  background-color: #def5ed;
  color: #049f6c;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.4;
  max-width: 130px;
  justify-content: center;
}
.cs_pricing_table_style_1 .cs_offer_badge .cs_offer {
  white-space: nowrap;
}
.cs_pricing_table_style_1 hr {
  margin-top: 0;
  margin-bottom: 20px;
  border-color: #e3e8ef;
}
.cs_pricing_table_style_1 .cs_pricing_feature_list li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 24px;
}
.cs_pricing_table_style_1 .cs_pricing_feature_list li .cs_feature_icon {
  height: 32px;
  width: 32px;
  margin-top: -6px;
  border-radius: 50%;
  color: var(--accent-color);
  background-color: var(--gray-color-2);
}
.cs_pricing_table_style_1 .cs_pricing_feature_list li:last-child {
  margin-bottom: 0;
}
.cs_pricing_table_style_1 .cs_pricing_feature_list .cs_feature_icon {
  position: absolute;
  top: 3px;
  left: 0;
}
.cs_pricing_table_style_1 .cs_pricing_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  margin-top: auto;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 40px;
  text-shadow: 0 50px 0 currentColor;
  overflow: hidden;
  background-color: #fff;
}
.cs_pricing_table_style_1 .cs_pricing_btn span {
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cs_pricing_table_style_1 .cs_pricing_btn:hover span {
  transform: translateY(-50px);
}
.cs_pricing_table_style_1 .cs_price_value {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 6px 10px;
}
@media (max-width: 1199px) {
  .cs_pricing_table_style_1 .cs_price_value .cs_offer_badge {
    flex-basis: 100%;
    margin-left: 0;
    align-self: flex-start;
  }
}
.cs_pricing_table_style_1:hover .cs_pricing_btn {
  background-color: var(--gray-color-2);
  color: var(--heading-color);
}
.cs_pricing_table_style_1.cs_popular {
  color: #fff;
  background-color: var(--accent-color);
  background-image: url("../img/active_pricing_bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.cs_pricing_table_style_1.cs_popular .cs_heading_color,
.cs_pricing_table_style_1.cs_popular .cs_body_color {
  color: #fff;
}
.cs_pricing_table_style_1.cs_popular .cs_pricing_btn {
  color: var(--heading-color);
}
.cs_pricing_table_style_1.cs_popular hr {
  border-color: rgba(255, 255, 255, 0.2);
}

/*--------------------------------------------------------------
  17. Workflow
----------------------------------------------------------------*/
.cs_workflow_wrap {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cs_workflow_wrap {
    padding-left: 0;
  }
}
.cs_workflow_wrap .cs_iconbox {
  position: relative;
  padding-bottom: 52px;
  padding-left: 64px;
}
.cs_workflow_wrap .cs_iconbox:last-child {
  padding-bottom: 0;
}
.cs_workflow_wrap .cs_iconbox:last-child::before, .cs_workflow_wrap .cs_iconbox:last-child::after {
  display: none;
}
.cs_workflow_wrap .cs_iconbox::before, .cs_workflow_wrap .cs_iconbox::after {
  content: "";
  width: 8px;
  position: absolute;
  left: 17px;
  top: 0;
}
.cs_workflow_wrap .cs_iconbox::before {
  height: 0%;
  background-color: #c1b6f8;
  z-index: 1;
}
.cs_workflow_wrap .cs_iconbox::after {
  height: 100%;
  background-color: #fff;
}
.cs_workflow_wrap .cs_iconbox.active .cs_iconbox_icon {
  background-color: #a38cf3;
  animation: jump 0.3s cubic-bezier(0.5, 2.2, 0.7, 0.7) alternate;
}
.cs_workflow_wrap .cs_iconbox.active .cs_iconbox_icon svg,
.cs_workflow_wrap .cs_iconbox.active .cs_iconbox_icon img {
  filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
}
.cs_workflow_wrap .cs_iconbox.active::before {
  transition: all 2s ease;
  height: 100%;
}
.cs_workflow_wrap .cs_iconbox_icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--white-color);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

@keyframes jump {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.25);
  }
}
/*--------------------------------------------------------------
  18. Contact
----------------------------------------------------------------*/
.cs_contact_form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 23px 24px;
  border: 1px solid #e3e8ef;
  border-radius: 24px;
}
.cs_contact_form .cs_form_input_wrapper label {
  margin-bottom: 8px;
}
.cs_contact_form .cs_form_input_wrapper textarea {
  max-height: 120px;
}
.cs_contact_form .cs_form_input_wrapper {
  font-size: 16px;
  line-height: 1.625em;
}
.cs_contact_form .cs_form_input_wrapper .cs_btn.cs_style_1 {
  width: 100%;
  background: linear-gradient(60deg, #1c0e3f 19%, rgba(90, 64, 154, 0.7) 86.31%);
}

.cs_contact_info {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0;
}
@media (max-width: 575px) {
  .cs_contact_info {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.cs_contact_info a:hover {
  color: var(--accent-color);
}
.cs_contact_info .cs_social_btns.cs_style_1 a {
  color: var(--accent-color);
  background-color: var(--gray-color-2);
}
.cs_contact_info .cs_social_btns.cs_style_1 a:hover {
  color: #fff;
  background-color: var(--accent-color);
}

.cs_map {
  max-height: 326px;
  filter: brightness(75%) grayscale(0.8);
}
.cs_map iframe {
  width: 100%;
  min-height: 326px;
  border-radius: 20px;
}

/*--------------------------------------------------------------
  19. FAQ
----------------------------------------------------------------*/
.cs_faq_table {
  padding: 0 65px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
@media (max-width: 1199px) {
  .cs_faq_table {
    padding: 0 32px;
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .cs_faq_table {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/*--------------------------------------------------------------
  20. Features
----------------------------------------------------------------*/
.cs_feature_cards_wrapper {
  display: grid;
  gap: 24px;
}
@media (min-width: 992px) {
  .cs_feature_cards_wrapper {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 992px) {
  .cs_feature_cards_wrapper .cs_feature_card {
    grid-column: auto/span 4;
  }
  .cs_feature_cards_wrapper .cs_feature_card:nth-child(4n+4), .cs_feature_cards_wrapper .cs_feature_card:nth-child(4n+5) {
    grid-column: auto/span 6;
  }
}
.cs_feature_cards_wrapper .cs_feature_card:not(:first-child):nth-child(odd) {
  padding-bottom: 0;
}
.cs_feature_cards_wrapper .cs_feature_card:not(:first-child):nth-child(odd) .cs_feature_card_thumb .cs_lg_img {
  border-radius: 12px 12px 0 0;
}
.cs_feature_cards_wrapper .cs_feature_card:nth-child(2n+2) {
  flex-direction: column-reverse;
}
@media (max-width: 575px) {
  .cs_feature_cards_wrapper .cs_feature_card:nth-child(2n+2) {
    flex-direction: column;
  }
}
.cs_feature_cards_wrapper .cs_feature_card:nth-child(4) .cs_feature_card_thumb {
  max-width: 528px;
  display: flex;
  flex-direction: column-reverse;
}
.cs_feature_cards_wrapper .cs_feature_card:nth-child(4) .cs_feature_card_thumb_item {
  position: relative;
}
.cs_feature_cards_wrapper .cs_feature_card:nth-child(4) .cs_feature_card_thumb_item:nth-child(3) {
  padding: 0 9%;
  margin-bottom: -22px;
}
.cs_feature_cards_wrapper .cs_feature_card:nth-child(4) .cs_feature_card_thumb_item:nth-child(2) {
  padding: 0 4.2%;
  z-index: 2;
  margin-bottom: -22px;
}
.cs_feature_cards_wrapper .cs_feature_card:nth-child(4) .cs_feature_card_thumb_item:nth-child(1) {
  z-index: 3;
}
.cs_feature_cards_wrapper.cs_type_1 .cs_feature_card:nth-child(1) {
  padding-bottom: 0;
}
.cs_feature_cards_wrapper.cs_type_1 .cs_feature_card:nth-child(1) .cs_feature_card_thumb .cs_lg_img {
  border-radius: 12px 12px 0 0;
}
.cs_feature_cards_wrapper.cs_type_1 .cs_feature_card:nth-child(3) {
  justify-content: flex-end;
}
.cs_feature_cards_wrapper.cs_type_1 .cs_feature_card:nth-child(3) .cs_feature_card_thumb {
  position: relative;
}
.cs_feature_cards_wrapper.cs_type_1 .cs_feature_card:nth-child(3) .cs_feature_card_thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ece9fc;
  left: 0;
  top: -12px;
  transform: rotate(-4.47deg);
  border-radius: 12px 12px 0 0;
}
.cs_feature_cards_wrapper.cs_type_1 .cs_feature_card:nth-child(3) .cs_feature_card_thumb img {
  position: relative;
  z-index: 2;
}

.cs_feature_card {
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (max-width: 767px) {
  .cs_feature_card {
    padding: 24px;
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .cs_feature_card {
    padding: 20px;
  }
}
.cs_feature_card .cs_feature_card_text {
  max-width: 470px;
}
.cs_feature_card .cs_feature_card_thumb {
  max-width: 470px;
  width: 100%;
}
.cs_feature_card .cs_feature_card_thumb .cs_lg_img {
  width: 100%;
  box-shadow: 21px 28px 66px 0 rgba(52, 20, 139, 0.11);
  border-radius: 12px;
}
.cs_feature_card .cs_feature_card_thumb .cs_mini_img {
  position: absolute;
  right: -17px;
  top: -32px;
  z-index: 1;
}
@media (max-width: 575px) {
  .cs_feature_card .cs_feature_card_thumb .cs_mini_img {
    right: 0;
    top: -20px;
    max-width: 100px;
  }
}/*# sourceMappingURL=style.css.map */