/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
01. Google Fonts
02. Color Variable
03. Typography
04. Preloader
05. Spacing
06. General
07. Slider
08. Video Modal
09. Header
10. Footer
11. Sidebar
12. Hero
13. Cards
14. Iconbox
15. Pricing
16. Testimonial
17. Layouts and Sections
18. Posts Post Details page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
 01.  Google Fonts Integration
----------------------------------------------------------------*/
/* Start Outfit */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit/static/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* End Outfit */
/* Start Urbanist */
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("../fonts/urbanist/static/Urbanist-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* End Urbanist */
/* Start Inter */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/static/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* End Inter */
/*--------------------------------------------------------------
02. Color Variable
----------------------------------------------------------------*/
:root {
  --white-color: #fff;
  --black-color: #000;
  --heading-color: #0A0A10;
  --body-color: #6C6C6C;
  --purple-color: #936DFF;
  --vis-color: #f7a61f;
  --accent-color: #00CC61;
  --border-color: #CACACA;
  --gray-color: #F6F3FE;
  --gray2-color: #A3A2A3;
  --yellow-color: #ffc107;
  --heading-font: "Outfit", sans-serif;
  --body-font: "Urbanist", sans-serif;
}

.cs_live_chat {
  --heading-font: "Urbanist", sans-serif;
}
.cs_live_chat h1,
.cs_live_chat h2,
.cs_live_chat h3,
.cs_live_chat h4,
.cs_live_chat h5,
.cs_live_chat h6 {
  font-weight: 700;
}

.cs_task_management {
  --heading-font: "Inter", sans-serif;
  background-color: #05111A;
  color: var(--border-color);
  font-size: 16px;
}
.cs_task_management .cs_heading_bg {
  background-color: #05111A;
}

/*--------------------------------------------------------------
03. Typography
----------------------------------------------------------------*/
body,
html {
  color: var(--body-color);
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.75em;
  font-weight: 400;
  overflow-x: clip;
}

/*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;
}

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;
  line-height: 1.6em;
}

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(--vis-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;
}

/*--------------------------------------------------------------
  04. Preloader
----------------------------------------------------------------*/
.cs_preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  top: 0;
  width: 100%;
  height: 100vh;
}

.cs_preloader_in {
  width: 110px;
  height: 110px;
  position: relative;
  border-radius: 50%;
}
.cs_preloader_in:before, .cs_preloader_in:after {
  content: "";
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cs_preloader_in:after {
  border-color: transparent;
  border-top-color: var(--vis-color);
  border-bottom-color: var(--vis-color);
  opacity: 0.8;
  animation: spin 1s ease-in-out infinite;
  z-index: 2;
}
.cs_preloader_in:before {
  border-color: var(--white-color);
  opacity: 0.2;
}
.cs_preloader_in span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--vis-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: bubble-animation 2s linear infinite;
}
.cs_preloader_in span:nth-child(2) {
  animation-delay: 1s;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes bubble-animation {
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
  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_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;
  }
}
/*--------------------------------------------------------------
  06. General
----------------------------------------------------------------*/
.cs_fs_12 {
  font-size: 12px;
}

.cs_fs_14 {
  font-size: 14px;
}

.cs_fs_15 {
  font-size: 15px;
}

.cs_fs_16 {
  font-size: 16px;
}

.cs_fs_18 {
  font-size: 18px;
  line-height: 1.56em;
}
@media (max-width: 575px) {
  .cs_fs_18 {
    font-size: 16px;
  }
}

.cs_fs_20 {
  font-size: 20px;
}

.cs_fs_21 {
  font-size: 21px;
  line-height: 1.67em;
}
@media (max-width: 575px) {
  .cs_fs_21 {
    font-size: 18px;
  }
}

.cs_fs_22 {
  font-size: 22px;
  line-height: 1.4em;
}
@media (max-width: 575px) {
  .cs_fs_22 {
    font-size: 20px;
  }
}

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

.cs_fs_29 {
  font-size: 29px;
  line-height: 1.21em;
}
@media (max-width: 575px) {
  .cs_fs_29 {
    font-size: 24px;
  }
}

.cs_fs_30 {
  font-size: 30px;
  line-height: 1.533em;
}

.cs_fs_32 {
  font-size: 32px;
  line-height: 1.5em;
}

.cs_fs_38 {
  font-size: 38px;
  line-height: 1.32em;
}

.cs_fs_40 {
  font-size: 40px;
  line-height: 1.45em;
}

.cs_fs_48 {
  font-size: 48px;
  line-height: 1.21em;
}
@media (max-width: 767px) {
  .cs_fs_48 {
    font-size: 36px;
  }
}

.cs_fs_50 {
  font-size: 50px;
  line-height: 1.3em;
}
@media (max-width: 991px) {
  .cs_fs_50 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .cs_fs_50 {
    font-size: 36px;
  }
}

.cs_fs_68 {
  font-size: 60px;
  line-height: 1.2em;
}
@media (max-width: 1199px) {
  .cs_fs_68 {
    font-size: 62px;
  }
}
@media (max-width: 991px) {
  .cs_fs_68 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .cs_fs_68 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .cs_fs_68 {
    font-size: 42px;
  }
}

.cs_fs_70 {
  font-size: 70px;
  line-height: 1.14em;
}
@media (max-width: 1199px) {
  .cs_fs_70 {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .cs_fs_70 {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .cs_fs_70 {
    font-size: 48px;
  }
}

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

.cs_body_font {
  font-family: var(--body-font);
}

.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_extra_bold {
  font-weight: 800;
}

.cs_black {
  font-weight: 900;
}

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

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

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

.cs_border_color {
  color: var(--border-color);
}

.cs_gray2_color {
  color: var(--gray2-color);
}

.cs_purple_color {
  color: var(--purple-color);
}

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

.cs_yellow_color {
  color: var(--yellow-color);
}

.cs_vis_color {
  color: var(--vis-color);
}

.cs_vis_bg {
  background-color: var(--vis-color);
}

.cs_yellow_bg {
  background-color: var(--yellow-color);
}

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

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

.cs_purple_bg {
  background-color: var(--purple-color);
}

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

.cs_accent_bg {
  background-color: var(--accent-color);
}

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

.cs_gray_bg_1 {
  background-color: #F2FCF7;
}

.cs_gray_bg_26 {
  background-color: #f7a81f13;
}

.cs_gray_bg_2 {
  background-color: rgba(147, 109, 255, 0.07);
}

.cs_gray_bg_3::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background: linear-gradient(270deg, #936DFF 0%, #00CC61 100%);
  position: absolute;
  left: 0;
  top: 0;
}

.cs_gray_bg_4 {
  background-color: #F7F7FA;
}

.cs_gray_bg_5 {
  background-color: #00F043;
}

.cs_gray_bg_6 {
  background-color: #FAF8FF;
}

.cs_gray_bg_7 {
  background-color: rgba(147, 109, 255, 0.05);
}

.cs_gray_bg_8 {
  background-color: rgba(0, 204, 97, 0.05);
}

.cs_gray_bg_9 {
  background-color: rgba(147, 109, 255, 0.08);
}

.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_bg_shape_1 {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  opacity: 0.05;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cs_radius_3 {
  border-radius: 3px;
}

.cs_radius_4 {
  border-radius: 4px;
}

.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_30 {
  border-radius: 30px;
}

.cs_radius_40 {
  border-radius: 40px;
}

.cs_radius_50 {
  border-radius: 50px;
}

.cs_radius_100 {
  border-radius: 50%;
}

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

.cs_has_before_after::before, .cs_has_before_after::after {
  content: "";
  width: 65px;
  height: 1px;
  position: absolute;
  top: 15px;
}
.cs_has_before_after::before {
  background: linear-gradient(270deg, #6C6C6C 0%, #FFF 100%);
  right: calc(100% + 15px);
}
.cs_has_before_after::after {
  background: linear-gradient(90deg, #6C6C6C 0%, #FFF 100%);
  left: calc(100% + 15px);
}

/*----------------------------------
  Form Elements Classes
 ----------------------------------*/
.cs_form_field {
  display: block;
  width: 100%;
  resize: none;
  outline: none;
  padding: 8px 20px;
  border: 1px solid var(--border-color);
}
.cs_form_field:focus {
  border-color: var(--vis-color);
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cs_result {
  font-size: 14px;
  color: var(--accent-color);
}

/*----------------------------------
  Bootstrap Classes
 ----------------------------------*/
.cs_row_gap_30 {
  margin-left: -15px;
  margin-right: -15px;
}
.cs_row_gap_30 > * {
  padding-left: 15px;
  padding-right: 15px;
}

.cs_row_gap_70 {
  margin-left: -35px;
  margin-right: -35px;
}
.cs_row_gap_70 > * {
  padding-left: 35px;
  padding-right: 35px;
}

.cs_gap_y_16 {
  gap: 16px 0;
}

.cs_gap_y_20 {
  gap: 20px 0;
}

.cs_gap_y_24 {
  gap: 24px 0;
}

.cs_gap_y_30 {
  gap: 30px 0;
}

.cs_gap_y_35 {
  gap: 35px 0;
}

.cs_gap_y_40 {
  gap: 40px 0;
}

.cs_gap_y_45 {
  gap: 45px 0;
}

.cs_gap_y_50 {
  gap: 50px 0;
}

.cs_gap_y_60 {
  gap: 60px 0;
}

.cs_gap_y_65 {
  gap: 65px 0;
}

.cs_gap_y_80 {
  gap: 80px 0;
}

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

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

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

.cs_hide_before_after::before, .cs_hide_before_after::after {
  display: none;
}

/*-----------------------------------
  Buttons & Social Buttons
 ------------------------------------*/
.cs_btn.cs_style_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border: 0;
  outline: 0;
  padding: 17px 35px;
  line-height: 1em;
  border-radius: 50px;
  gap: 8px;
  position: relative;
  overflow: hidden;
  max-width: 50%;
}

/* VIS */   

.cs_btn.cs_style_3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border: 0;
  outline: 0;
  padding: 17px 35px;
  line-height: 1em;
  border-radius: 50px;
  gap: 8px;
  position: relative;
  overflow: hidden;
  max-width: 40%;
  left:180px;
}
                          
.cs_btn.cs_style_1 > * {
  position: relative;
  z-index: 1;
}
/* VIS */
.cs_btn.cs_style_3 > * {
  position: relative;
  z-index: 1;
}
    
.cs_btn.cs_style_1 .cs_btn_icon {
  transform: rotate(-45deg);
}
.cs_btn.cs_style_1 i {
  text-shadow: -20px 0px 0px currentColor;
  transition: all 0.3s ease;
}

/* VIS */
.cs_btn.cs_style_3 i {
  text-shadow: -20px 0px 0px currentColor;
    transition: all 0.3s ease;
    }

.cs_btn.cs_style_1.cs_purple_hover::before {
  background-color: var(--purple-color);
}
.cs_btn.cs_style_1.cs_accent_hover::before {
  background-color: var(--accent-color);
}

/* VIS */
.cs_btn.cs_style_1.cs_white_hover::before {
  background-color: var(--white-color);
  }
  

/* VIS */
.cs_btn.cs_style_3.cs_accent_hover::before {
  background-color: var(--accent-color);
}
/* VIS */
.cs_btn.cs_style_3.cs_white_hover::before {
  background-color: var(--white-color);
  }

.cs_btn.cs_style_3.cs_white_hover::before {
  background-color: var(--white-color);
    }
  
/* VIS */
.cs_btn.cs_style_3.cs_heading_hover::before {
  background-color: var(--heading-color);
}

.cs_btn.cs_style_1.cs_outline {
  border: 1px solid var(--heading-color);
  display:none;
}

/* VIS */
.cs_btn.cs_style_3.cs_outline {
  border: 1px solid var(--heading-color);
  display:none;
    }
    
.cs_btn.cs_style_1::before {
  content: "";
  width: 300px;
  height: 300px;
  background-color: var(--heading-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  transform: translate(-50%, 75px) scale(0.1);
  transition: 0.6s cubic-bezier(0.52, 1.64, 0.37, 0.6);
}

/* VIS */
.cs_btn.cs_style_3::before {
  content: "";
  width: 300px;
  height: 300px;
  background-color: var(--heading-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  transform: translate(-50%, 75px) scale(0.1);
  transition: 0.6s cubic-bezier(0.52, 1.64, 0.37, 0.6);
}

.cs_btn.cs_style_1:hover {
  color: var(--white-color);
}
/* VIS */
.cs_btn.cs_style_3:hover {
  color: var(--heading-color);
}
  
.cs_btn.cs_style_1:hover::before {
  bottom: 0;
  transform: translate(-50%, 0) scaleX(1.5) scaleY(1.5);
}
.cs_btn.cs_style_1:hover i {
  transform: translateX(20px);
}


/* VIS */
.cs_btn.cs_style_3:hover::before {
  bottom: 0;
    transform: translate(-50%, 0) scaleX(1.5) scaleY(1.5);
}
.cs_btn.cs_style_3:hover i {
      transform: translateX(20px);
}
      
    

.cs_btn.cs_style_2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px 6px;
  border: 1px solid var(--white-color);
}

.cs_btn.cs_style_3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
/*  padding: 5px 10px 6px; */
  border: 1px solid var(--vis-color);
  border-radius:2em;
  flex-direction:column;
              }
             
.cs_btn.cs_style_2 p {
  line-height: 1em;
}
.cs_btn.cs_style_2 h3 {
  line-height: 1em;
  transition: all 0.3s ease;
}
.cs_btn.cs_style_2:hover {
  background-color: transparent;
  color: var(--white-color);
}
.cs_btn.cs_style_2:hover.cs_type_1 {
  background-color: var(--white-color);
  color: var(--heading-color);
}
.cs_btn.cs_style_2:hover.cs_type_1 h3 {
  color: var(--heading-color);
}
.cs_btn.cs_style_2:hover h3 {
  color: var(--white-color);
}
/* VIS camba el color del texto dentro del botón */
.cs_btn.cs_style_3:hover {
  background-color: transparent;
  color: var(--heading-color);
}
    

.cs_player_btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.cs_player_btn .cs_play_btn_icon {
  width: 35px;
  height: 35px;
  padding-left: 2px;
  border: 1px solid currentColor;
  position: relative;
  z-index: 1;
}
.cs_player_btn .cs_play_btn_icon span {
  display: inline-block;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  border-top: 7px solid transparent;
  border-radius: 2px;
}
.cs_player_btn .cs_player_text {
  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 1.5px;
  color: currentColor;
}
.cs_player_btn:hover .cs_player_text {
  opacity: 1;
  background-size: 100% 1.5px;
  background-position: 0 calc(100% - 0px);
}

.cs_player_btn.cs_style_2 {
  width: 84px;
  height: 84px;
  position: relative;
}
.cs_player_btn.cs_style_2::before, .cs_player_btn.cs_style_2::after {
  content: "";
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  border: 3px solid var(--white-color);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: scale-up 4s linear infinite;
}
.cs_player_btn.cs_style_2::after {
  animation-delay: 2s;
}

.cs_social_links.cs_style_1 {
  display: flex;
  justify-content: center;
  gap: 10px 27px;
  flex-wrap: wrap;
}
.cs_social_links.cs_style_1 a .cs_social_icon {
  margin-right: 5px;
}
.cs_social_links.cs_style_1 a:hover {
  color: var(--vis-color);
}

/*-------------------------------
 Scroll up button
---------------------------------*/
.cs_scrollup {
  width: 50px;
  height: 50px;
  border: 0;
  outline: 0;
  position: fixed;
  bottom: 50px;
  right: 30px;
  opacity: 0;
  z-index: 99;
  transform: translateY(100px);
  overflow: hidden;
  transition: all 0.3s ease;
}
.cs_scrollup::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.2s ease;
}
.cs_scrollup.cs_scrollup_show {
  transform: translateY(0);
  opacity: 1;
}
.cs_scrollup svg {
  animation: up-arrow 2s linear infinite;
}
.cs_scrollup:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/*-------------------------------
 Section Heading
---------------------------------*/
.cs_section_heading.cs_style_1 .cs_section_subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cs_section_heading.cs_style_1 .cs_section_subtitle.cs_border {
  padding: 5px 20px;
  border: 1px solid currentColor;
}
.cs_section_heading.cs_style_1 .cs_section_subtitle .cs_pill {
  display: inline-block;
  width: 37px;
  height: 1px;
  margin-left: 9px;
  background-color: var(--body-color);
}
.cs_section_heading.cs_style_1 .cs_gradient_color {
  background: linear-gradient(90deg, #00CC61 19.68%, #E1FFEF 95.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cs_section_heading.cs_style_1.cs_type_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cs_section_heading.cs_style_1 .cs_section_heading_right {
  max-width: 40%;
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_1 {
    flex-direction: column;
  }
  .cs_section_heading.cs_style_1 .cs_section_heading_right {
    max-width: 100%;
  }
}

/*------------------------------------
 Shapes
--------------------------------------*/
.cs_counter_shape_1 {
  width: 80px;
  height: 155px;
  border-radius: 0 0 0 100px;
  top: 0;
  right: 0;
}

.cs_counter_shape_2 {
  width: 80px;
  height: 155px;
  border-radius: 0 100px 0 0;
  bottom: 0;
  left: 0;
}

.cs_counter_shape_4 {
  top: 83px;
  right: 10%;
  animation: spinAnimation 20s linear infinite;
}

.cs_vector_shape_1 {
  top: 76px;
  right: 20%;
  animation: rotation-movement 20s linear infinite;
  animation-delay: 10s;
}

.cs_vector_shape_2 {
  top: 120px;
  left: 20%;
  animation: rotation-movement 20s linear infinite;
}

/*-----------------------------------
  Start Review 
 ------------------------------------*/
.cs_rating_percentage,
.cs_rating {
  overflow: hidden;
}
.cs_rating_percentage::before,
.cs_rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
}

.cs_rating {
  max-width: 120px;
  flex: none;
  height: 24px;
  position: relative;
  color: var(--accent-color);
  font-size: 16px;
  letter-spacing: 7px;
}
.cs_rating::before {
  font-weight: 400;
}

.cs_rating_percentage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.cs_rating_percentage::before {
  font-weight: 900;
}

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

.cs_list.cs_style_1 li {
  position: relative;
  padding-left: 44px;
}
.cs_list.cs_style_1 li:not(:last-child) {
  margin-bottom: 17px;
}
.cs_list.cs_style_1 .cs_list_icon {
  position: absolute;
  top: 2px;
  left: 0;
}

.cs_list.cs_style_2 {
  display: flex;
  gap: 15px 24px;
  flex-wrap: wrap;
}
.cs_list.cs_style_2 li {
  position: relative;
  padding-left: 25px;
  text-wrap: nowrap;
}
.cs_list.cs_style_2 i {
  position: absolute;
  top: 7px;
  left: 0;
}

/*-----------------------------------------
 FAQ & Accordian
-------------------------------------------*/
.cs_accordian::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--border-color);
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
}
.cs_accordian:not(:last-child) {
  margin-bottom: 24px;
}
.cs_accordian > * {
  position: relative;
  z-index: 1;
}
.cs_accordian .cs_accordian_head {
  padding: 25px 70px 20px 25px;
  cursor: pointer;
}
.cs_accordian .cs_accordian_toggle {
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: currentColor;
  top: 40px;
  right: 33px;
  transition: all 0.3s ease;
}
.cs_accordian .cs_accordian_toggle::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.cs_accordian .cs_accordian_body {
  padding: 0 20px 25px 25px;
  margin-top: -6px;
}
.cs_accordian.cs_type_1 {
  border: 1px solid #252D32;
}
.cs_accordian.cs_type_1 .cs_accordian_head {
  padding: 28px 70px 24px 25px;
  cursor: pointer;
}
.cs_accordian.cs_type_1::before {
  display: none;
}
.cs_accordian.cs_type_2 {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.07);
}
.cs_accordian.cs_type_2:not(:last-child) {
  margin-bottom: 30px;
}
.cs_accordian.cs_type_2::before {
  display: none;
}
.cs_accordian.active .cs_accordian_head {
  pointer-events: none;
}
.cs_accordian.active .cs_accordian_toggle {
  transform: rotate(45deg);
}

.cs_faq_shape_1,
.cs_faq_shape_2 {
  width: 137px;
  height: 137px;
  filter: blur(150px);
}

.cs_faq_shape_1 {
  top: 44%;
  left: -65px;
}

.cs_faq_shape_2 {
  bottom: 20px;
  right: -65px;
}

/*-----------------------------------
  Start Responsive
 ------------------------------------*/
@media (max-width: 1399px) {
  .cs_vector_shape_1,
  .cs_vector_shape_2,
  .cs_vector_1 {
    display: none;
  }
}
@media (max-width: 991px) {
  br,
  .cs_vector_shape_4,
  .cs_counter_shape_3,
  .cs_counter_shape_4 {
    display: none;
  }
}
/*-----------------------------------
  Start Animations 
 ------------------------------------*/
@keyframes rotation-movement {
  50% {
    transform: translate(-80px, 80px) rotate(120deg);
  }
}
@keyframes scale-up {
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}
@keyframes up-arrow {
  50% {
    transform: translateY(-2px);
  }
}
/*--------------------------------------------------------------
  07. Slider
----------------------------------------------------------------*/
.cs_slider {
  position: relative;
  z-index: 1;
}

.slick-arrow {
  cursor: pointer;
}

.draggable {
  cursor: url(../img/drag.png) 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 {
  height: 100%;
  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_gap_30 .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}
.cs_slider_gap_30 .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}

/*---------------------------------------
 Infinite scrolling slider
-----------------------------------------*/
.cs_horizontal_slider_wrapper {
  margin: 0 auto;
  overflow: hidden;
}
.cs_horizontal_slider_wrapper.cs_type_1 {
  max-width: 810px;
}
.cs_horizontal_slider_wrapper.cs_type_2 {
  margin-top: 24px;
}
.cs_horizontal_slider_wrapper.cs_type_2 .cs_tools_wrapper {
  animation-direction: reverse;
  animation-duration: 60s;
}
.cs_horizontal_slider_wrapper .cs_slider_in {
  min-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.cs_horizontal_slider_wrapper .cs_brands_list {
  min-width: 100%;
  flex: none;
  display: flex;
  align-items: center;
  gap: 74px;
  margin: 0 37px;
  animation: slider-left 30s linear infinite;
}
.cs_horizontal_slider_wrapper:hover .cs_brands_list,
.cs_horizontal_slider_wrapper:hover .cs_tools_wrapper {
  animation-play-state: paused;
}
.cs_horizontal_slider_wrapper .cs_tools_wrapper {
  flex: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 12px;
  animation: slider-left 50s linear infinite;
}

.cs_pagination.cs_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.cs_pagination.cs_style_1 li {
  height: 12px;
  width: 12px;
  border-radius: 2px;
  background: var(--vis-color);
  opacity: 0.2;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.cs_pagination.cs_style_1 li.slick-active {
  opacity: 1;
}
.cs_pagination.cs_style_1 button {
  display: none;
}

@media (max-width: 991px) {
  .cs_mobile_hide {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .cs_mobile_show {
    display: none !important;
  }
}
@keyframes slider-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*--------------------------------------------------------------
  08. Video Modal
----------------------------------------------------------------*/
.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*/
/*--------------------------------------------------------------
 09. Header
----------------------------------------------------------------*/
.cs_site_header {
  position: relative;
  z-index: 101;
}

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

.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,
.cs_site_header.cs_style_1 .cs_top_header_in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100px;
  position: relative;
}
.cs_site_header.cs_style_1 .cs_main_header_right {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
  position: relative;
}
@media (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    margin-right: 50px;
  }
}
@media (max-width: 480px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    display: none;
  }
}

.cs_site_header.cs_style_1.cs_fixed_active {
  background-color: #0d0c17;
  box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

.cs_site_header_full_width .container {
  max-width: 100%;
  padding: 0 100px;
}

@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_fixed_header,
.cs_sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
}

.cs_gescout_sticky {
  position: fixed !important;
  top: -110px;
  opacity: 0;
  transition: all 0.4s ease;
  background-color: var(--white-color);
}

.cs_gescout_show {
  top: 0 !important;
  opacity: 1;
  background-color: var(--white-color);
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}
.cs_gescout_show.cs_type_1 {
  background-color: var(--heading-color);
  box-shadow: 0px 1px 2px 0px rgba(147, 147, 147, 0.1);
}
.cs_gescout_show.cs_type_2 {
  background-color: var(--purple-color);
}
.cs_gescout_show hr {
  display: none;
}

@media screen and (min-width: 1200px) {
  .cs_main_header {
    position: relative;
  }
  .cs_main_header .container-fluid {
    padding-right: 40px;
    padding-left: 40px;
  }
  .cs_site_branding {
    display: inline-block;
  }
  .cs_site_branding + .cs_main_header_center {
    margin-left: 40px;
  }
  .cs_site_header.cs_style_1 .cs_main_header_center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .cs_site_header.cs_style_1 .cs_main_header_center .cs_nav + .cs_main_header_right {
    margin-left: 30px;
    padding-left: 20px;
    position: relative;
  }
  .cs_site_header.cs_style_1 .cs_main_header_center .cs_nav + .cs_main_header_right::before {
    content: "";
    width: 1px;
    height: 30px;
    background-color: var(--body-color);
    position: absolute;
    left: 0;
  }
  .cs_site_header.cs_style_1 .cs_main_header_left {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cs_site_header.cs_style_1.cs_type_1 .cs_nav_list a:hover {
    color: var(--vis-color);
  }
  .cs_site_header.cs_style_1.cs_type_1 .cs_nav_list a::before {
    background-color: var(--purple-color);
  }
  .cs_site_header.cs_style_1.cs_type_2 .cs_nav_list a:hover {
    color: var(--white-color);
  }
  .cs_site_header.cs_style_1.cs_type_2 .menu-item-has-children ul a:hover {
    color: var(--purple-color);
  }
  .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 {
    margin-right: 40px;
    height: inherit;
    position: relative;
  }
  .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;
  }

  /* cambiar el color a la rayita de abajo al pasar por el menú */
  .cs_nav .cs_nav_list > li > a::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    background-color: var(--vis-color);
    left: 0;
    top: 61%;
    transition: all 0.3s ease;
  }
  .cs_nav .cs_nav_list > li > a:hover {
    color: var(--heading-color);
  }
  .cs_nav .cs_nav_list > li > a:hover::before {
    width: 100%;
  }
  .cs_nav .cs_nav_list > li > ul {
    left: 0;
    top: calc(100% + 15px);
  }
  .cs_nav .cs_nav_list > li > ul::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: #fff;
    transform: rotate(45deg);
    left: 20px;
    top: -5px;
    border-radius: 2px 0 0 0;
  }
  .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: 6px;
    width: 6px;
    border: 2px solid currentColor;
    transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
    margin-left: 6px;
    position: relative;
    top: -1px;
    border-radius: 0px 0px 2px 0px;
  }
  .cs_nav .cs_nav_list ul {
    width: 260px;
    background-color: var(--white-color);
    position: absolute;
    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: 5px;
    transition: all 0.1s ease;
  }
  .cs_nav .cs_nav_list ul li:hover ul {
    top: 0px;
  }
  .cs_nav .cs_nav_list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }
  .cs_nav .cs_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
    color: var(--heading-color);
  }
  
  /* cambiar color al pasar el mouse en el menu despegable */
  .cs_nav .cs_nav_list ul a:hover {
    color: var(--vis-color);
  }
  .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_menu {
    position: relative;
  }
}
@media screen and (max-width: 1199px) {
  .cs_site_header_full_width .container {
    padding: 0 15px;
  }
  .cs_site_header.cs_type_1 .cs_nav_list {
    background-color: var(--heading-color);
    color: var(--white-color);
  }
  .cs_menu_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_menu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }
  .cs_menu_dropdown_toggle span:before, .cs_menu_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_menu_dropdown_toggle span:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .cs_menu_dropdown_toggle.active span:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .menu-item-has-children .menu-item-has-children .cs_menu_dropdown_toggle {
    padding: 20px 18px;
  }
  .cs_site_branding {
    position: relative;
    z-index: 101;
  }
  .cs_nav .cs_nav_list {
    position: fixed;
    width: 100vw;
    height: 100%;
    left: -100vw;
    background-color: var(--white-color);
    color: var(--heading-color);
    padding: 10px 0;
    top: 80px;
    overflow: auto;
    min-height: 100vh;
    line-height: 1.6em;
    padding: 10px 0 100px;
    transition: all 0.4s ease;
  }
  .cs_nav .cs_nav_list.cs_active {
    left: 0vw;
  }
  .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 > li > a {
    font-size: 18px;
    line-height: 22px;
  }
  .cs_nav .menu-item-has-children {
    position: relative;
  }
  .cs_animo_links > li > a .cs_animo_text {
    text-shadow: 0 32px 0 currentColor;
  }
  .cs_animo_links > li > a:hover span {
    transform: translateY(-32px);
  }
  .cs_site_header.cs_style_1.cs_type_2 .cs_nav_list {
    background-color: var(--purple-color);
    color: var(--white-color);
  }
  /*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: 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;
  }
}
/*--------------------------------------------------------------
  10. Footer
----------------------------------------------------------------*/
.cs_footer.cs_style_1 .cs_footer_medu li:not(:last-child) {
  margin-bottom: 5px;
}
.cs_footer.cs_style_1 .cs_footer_medu a:hover {
  color: var(--vis-color);
}
.cs_footer.cs_style_1 .cs_text_widget {
  max-width: 452px;
}
.cs_footer.cs_style_1 .cs_help_widget {
  padding-left: 30px;
}
.cs_footer.cs_style_1 .cs_contact_widget {
  padding-left: 60px;
}
.cs_footer.cs_style_1 .cs_btns_group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.cs_footer.cs_style_1 .cs_btns_group .cs_btn.cs_style_2 {
  border-color: var(--border-color);
}
.cs_footer.cs_style_1 .cs_btns_group .cs_btn.cs_style_2:hover {
  color: var(--white-color);
  background-color: var(--vis-color);
}
.cs_footer.cs_style_1 .cs_btns_group .cs_btn.cs_style_2:hover h3 {
  color: var(--white-color);
}
.cs_footer.cs_style_1 .cs_footer_bottom {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.cs_footer.cs_style_1 .cs_support_link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.cs_footer.cs_style_1 .cs_support_link .cs_support_icon {
  width: 40px;
  height: 40px;
  background-color: #6DF2D0;
}
.cs_footer.cs_style_1 .cs_support_link.cs_phone .cs_support_icon {
  background-color: #6DE8F2;
}
.cs_footer.cs_style_1.cs_type_1 .cs_footer_bottom {
  padding: 45px 0;
  border-top: 1px dashed var(--border-color);
}
.cs_footer.cs_style_1.cs_type_2 hr {
  border-color: #323232;
}
.cs_footer.cs_style_1.cs_type_2 .cs_footer_bottom {
  padding: 30px 0;
}
.cs_footer.cs_style_1.cs_type_2 a:hover {
  color: var(--accent-color);
}
.cs_footer.cs_style_1.cs_type_2 .cs_ellipse_1 {
  width: 425px;
  height: 246px;
  border-radius: 425px;
  background: #3305A2;
  filter: blur(150px);
  top: -123px;
  left: -125px;
}
.cs_footer.cs_style_1.cs_type_2 .cs_ellipse_2 {
  width: 571px;
  height: 269px;
  border-radius: 571px;
  background: #3305A2;
  filter: blur(150px);
  top: -160px;
  right: -35px;
}
.cs_footer.cs_style_1.cs_type_2 .cs_ellipse_3 {
  width: 475px;
  height: 304px;
  border-radius: 475px;
  background: #3305A2;
  filter: blur(150px);
  left: 30%;
  bottom: -215px;
}
.cs_footer.cs_style_1.cs_type_2 .cs_ellipse_4 {
  width: 563px;
  height: 248px;
  border-radius: 563px;
  background: #3305A2;
  filter: blur(300px);
  right: -163px;
  bottom: 20px;
}
.cs_footer.cs_style_1.cs_type_2 .cs_vector_1 {
  top: 10%;
  right: 6%;
  animation: spinAnimation 20s linear infinite;
}
.cs_footer.cs_style_1.cs_type_3 .cs_footer_bottom {
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
}
@media (max-width: 1399px) {
  .cs_footer.cs_style_1 .cs_help_widget {
    padding-left: 10px;
  }
  .cs_footer.cs_style_1 .cs_links_widget {
    padding-left: 20px;
  }
  .cs_footer.cs_style_1 .cs_contact_widget {
    padding-left: 40px;
  }
}
@media (max-width: 1199px) {
  .cs_footer.cs_style_1 .cs_contact_widget {
    padding-left: 20px;
  }
  .cs_footer.cs_style_1 .cs_links_widget {
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .cs_footer.cs_style_1 .cs_contact_widget,
  .cs_footer.cs_style_1 .cs_help_widget,
  .cs_footer.cs_style_1 .cs_links_widget {
    padding-left: 0;
  }
  .cs_footer.cs_style_1 .cs_footer_bottom {
    justify-content: center;
    text-align: center;
  }
  .cs_footer.cs_style_1.cs_type_1 .cs_footer_bottom {
    padding: 30px 0;
    gap: 15px;
  }
  .cs_footer.cs_style_1 .cs_social_links.cs_style_1 {
    gap: 10px 20px;
  }
}
/*--------------------------------------------------------------
  11. Sidebar
----------------------------------------------------------------*/
.cs_sidebar.cs_style_1 {
  position: sticky;
  top: 20px;
}
.cs_sidebar.cs_style_1 .cs_sidebar_widget {
  padding-bottom: 37px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 32px;
}
.cs_sidebar.cs_style_1 .cs_sidebar_widget:first-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.cs_sidebar.cs_style_1 .cs_sidebar_widget:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.cs_sidebar.cs_style_1 .cs_sidebar_widget .cs_form_field {
  padding: 8px 20px 8px 39px;
}
.cs_sidebar.cs_style_1 .cs_sidebar_widget .cs_form_field:focus {
  border-color: var(--purple-color);
}
.cs_sidebar.cs_style_1 .cs_sidebar_widget .cs_search_icon {
  position: absolute;
  top: 10px;
  left: 15px;
  pointer-events: none;
}
.cs_sidebar.cs_style_1 .cs_category_list li {
  margin-bottom: 6px;
}
.cs_sidebar.cs_style_1 .cs_category_list li:last-child {
  margin-bottom: 0;
}
.cs_sidebar.cs_style_1 .cs_category_list li a:hover {
  color: var(--purple-color);
}
.cs_sidebar.cs_style_1 .cs_latestpost_list li {
  margin-bottom: 18px;
}
.cs_sidebar.cs_style_1 .cs_latestpost_list li:last-child {
  margin-bottom: 0;
}
.cs_sidebar.cs_style_1 .cs_latestpost_list li a:hover {
  color: var(--purple-color);
}

.cs_tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cs_tags .cs_tag_link {
  display: inline-block;
  padding: 8px 23px;
  border: 1px solid var(--body-color);
}
.cs_tags .cs_tag_link:hover {
  background-color: var(--purple-color);
  border-color: var(--purple-color);
  color: var(--white-color);
}

/*--------------------------------------------------------------
  12. Hero
----------------------------------------------------------------*/
.cs_hero.cs_style_1 {
  height: 100%;
  padding: 190px 0px 130px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cs_hero.cs_style_1 .cs_hero_bg {
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  opacity: 0.05;
  left: 0;
  top: 0;
}
.cs_hero.cs_style_1 .cs_hero_text {
  max-width: 630px;
  position: relative;
  z-index: 1;
}
.cs_hero.cs_style_1 .cs_hero_title {
  margin-bottom: 47px;
  color:var(--body-color);
  font-size:53px;
}

.cs_hero.cs_style_1 .cs_hero_title strong {
    color: var(--heading-color); /* o font-weight: 700; */
    font-size:55px;
}

.cs_hero.cs_style_1 .cs_hero_title mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0.6em;
  max-width: 145px;
  background-color: rgba(229, 72, 0, 0.1);
}
.cs_hero.cs_style_1 .cs_hero_subtitle {
  margin-bottom: 45px;
}
.cs_hero.cs_style_1 .cs_btn_group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.cs_hero.cs_style_1 .cs_hero_thumbnail {
  width: 50vw;
  min-width: 836px;
  position: relative;
  z-index: 1;
  border-radius: 20px 0 0 20px;
  filter: drop-shadow(0px 0px 20px rgba(83, 83, 83, 0.25));
  margin-left: calc(6vw - 0px);
}
.cs_hero.cs_style_1 .cs_hero_thumbnail .cs_hero_shape_vector {
  top: -70px;
  left: -80px;
}
.cs_hero.cs_style_1 .cs_hero_thumbnail img {
  border-radius: inherit;
}
.cs_hero.cs_style_1 .cs_hero_shape_1 {
  left: -100px;
  top: 0px;
  animation: indication-arrow 3s linear infinite;
}
.cs_hero.cs_style_1 .cs_text_check_wrap {
  bottom: 20%;
  right: 85%;
}
.cs_hero.cs_style_1 .cs_aiassistant_wrap {
  top: 18%;
  left: 92%;
}
.cs_hero.cs_style_1.cs_type_1 {
  padding-bottom: 0;
  overflow: initial;
}
.cs_hero.cs_style_1.cs_type_1 .cs_hero_content {
  max-width: 982px;
  margin: 0 auto;
}
.cs_hero.cs_style_1.cs_type_1 .cs_hero_thumbnail {
  width: 100%;
  margin-left: 0;
}
.cs_hero.cs_style_1.cs_type_1 .cs_hero_thumbnail > img {
  width: 100%;
}
.cs_hero.cs_style_1.cs_type_2 {
  padding-bottom: 0;
}
.cs_hero.cs_style_1.cs_type_2 .cs_hero_thumbnail {
  width: 100%;
  margin-left: 0;
  padding: 15px;
  padding-bottom: 0;
  border-radius: 20px 20px 0px 0px;
}
.cs_hero.cs_style_1.cs_type_2 .cs_hero_thumbnail::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #936dff 0%, #7949ff 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.cs_hero.cs_style_1.cs_type_2 .cs_hero_thumbnail > img {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 10px 10px 0 0;
}
.cs_hero.cs_style_1.cs_type_2 .cs_blob_1,
.cs_hero.cs_style_1.cs_type_2 .cs_blob_2,
.cs_hero.cs_style_1.cs_type_2 .cs_blob_3,
.cs_hero.cs_style_1.cs_type_2 .cs_blob_4 {
  background-color: #3305a2;
  filter: blur(300px);
}
.cs_hero.cs_style_1.cs_type_2 .cs_blob_1 {
  width: 621px;
  height: 606px;
  left: -186px;
  top: -230px;
}
.cs_hero.cs_style_1.cs_type_2 .cs_blob_2 {
  width: 551px;
  height: 572px;
  right: -145px;
  top: -250px;
}
.cs_hero.cs_style_1.cs_type_2 .cs_blob_3 {
  width: 909px;
  height: 888px;
  bottom: -444px;
  left: 113px;
}
.cs_hero.cs_style_1.cs_type_2 .cs_blob_4 {
  width: 565px;
  height: 546px;
  bottom: -243px;
  right: -230px;
}
.cs_hero.cs_style_1.cs_type_2 .cs_hero_shape_1 {
  top: 25%;
  left: 12%;
  animation: circular-rotation 15s linear infinite;
}
.cs_hero.cs_style_1.cs_type_2 .cs_hero_shape_2 {
  top: 20%;
  right: 12%;
  animation: spinAnimation 15s linear infinite;
}
.cs_hero.cs_style_1.cs_type_3 {
  padding: 220px 0px 210px;
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_text {
  max-width: 640px;
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_text > * {
  position: relative;
  z-index: 1;
}
.cs_hero.cs_style_1.cs_type_3 .cs_line_1 {
  bottom: -14px;
  right: 0;
}
.cs_hero.cs_style_1.cs_type_3 .cs_line_2 {
  bottom: -11px;
  right: 0;
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_thumbnail {
  width: 100%;
  min-width: 100%;
  margin-left: 0;
  filter: none;
  border-radius: 15px;
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_thumbnail > img {
  position: relative;
  z-index: 1;
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_shape_vector {
  top: -70px;
  right: -80px;
  left: initial;
}
.cs_hero.cs_style_1.cs_type_3 .cs_volume_report {
  top: -80px;
  left: -80px;
  z-index: 2;
/*  border: 1px solid #edf2f6; */
/*  box-shadow: 0px 3px 13px 0px rgba(238, 238, 238, 0.5); */
  animation: slide-right 15s linear infinite;
  animation-delay: 7.5s;
}
.cs_hero.cs_style_1.cs_type_3 .cs_sells_report {
  bottom: -80px;
  right: -80px;
  z-index: 2;
/*  border: 1px solid #f8f9fa; */
/*  box-shadow: 0px 3px 13px 0px rgba(238, 238, 238, 0.5); */
  animation: slide-right 15s linear infinite;
}
.cs_hero.cs_style_1.cs_type_3 .cs_blob_5 {
  width: 203px;
  height: 203px;
  transform: rotate(-21deg);
  background-color: var(--vis-color);
  opacity: 0.5;
  filter: blur(75px);
  left: -80px;
  top: 0;
  z-index: 0;
}
@media (max-width: 1550px) {
  .cs_hero.cs_style_1 .cs_hero_shape_1 {
    left: -45px;
    top: -30px;
  }
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_1 .cs_hero_thumbnail {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 {
    padding: 145px 0 80px;
  }
  .cs_hero.cs_style_1 .cs_hero_thumbnail {
    min-width: 100%;
    border-radius: 20px;
  }
  .cs_hero.cs_style_1 .cs_hero_text {
    max-width: 100%;
  }
  .cs_hero.cs_style_1 ,
  .cs_hero_shape_vector,
  .cs_hero.cs_style_1 .cs_hero_shape_1 {
    display: none;
  }
}

.cs_hero.cs_style_2 {
  padding: 200px 0 0;
}
.cs_hero.cs_style_2 .cs_hero_thumbnail {
  width: 50vw;
  max-width: 867px;
}
.cs_hero.cs_style_2 .cs_hero_thumbnail img {
  width: 100%;
}
.cs_hero.cs_style_2 .cs_hero_text {
  padding-bottom: 160px;
}
.cs_hero.cs_style_2 .cs_hero_subtitle {
  display: inline-flex;
  padding: 2px 15px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
}
.cs_hero.cs_style_2 .cs_btns_group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cs_hero.cs_style_2 .cs_hero_shape_1 {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  top: 153px;
  left: 140px;
  animation: horizontal-move 100s linear infinite;
}
.cs_hero.cs_style_2 .cs_hero_shape_2 {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.05);
  top: 53%;
  left: 10%;
  animation: horizontal-move 100s linear infinite;
  animation-delay: 10s;
}
.cs_hero.cs_style_2 .cs_hero_shape_3 {
  width: 101px;
  height: 101px;
  background: rgba(255, 255, 255, 0.05);
  left: 40%;
  bottom: 0;
  animation: vertical-move 80s linear infinite;
  animation-delay: 20s;
}
.cs_hero.cs_style_2 .cs_hero_shape_4 {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  bottom: 0;
  left: 50%;
  animation: vertical-move 80s linear infinite;
}
.cs_hero.cs_style_2 .cs_hero_shape_5 {
  width: 169px;
  height: 169px;
  background: rgba(255, 255, 255, 0.05);
  top: 47%;
  right: -50px;
}
@media (max-width: 1550px) {
  .cs_hero.cs_style_2 {
    padding: 170px 0 0;
  }
  .cs_hero.cs_style_2 .cs_hero_text {
    padding-bottom: 120px;
  }
}
@media (max-width: 1399px) {
  .cs_hero.cs_style_2 .cs_fs_68 {
    font-size: 60px;
  }
  .cs_hero.cs_style_2 .cs_fs_21 {
    font-size: 18px;
  }
  .cs_hero.cs_style_2 .cs_hero_text {
    padding-bottom: 80px;
  }
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_2 {
    padding: 160px 0 0;
  }
  .cs_hero.cs_style_2 .cs_hero_text {
    padding-bottom: 0;
  }
  .cs_hero.cs_style_2 .cs_hero_thumbnail {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_2 .cs_fs_68 {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .cs_hero.cs_style_2 .cs_fs_68 {
    font-size: 40px;
  }
}

.cs_hero.cs_style_3 {
  padding: 235px 0 150px;
}
.cs_hero.cs_style_3 .cs_hero_thumbnail {
  width: 48vw;
  max-width: 907px;
  transform: translateX(-120px);
}
.cs_hero.cs_style_3 .cs_hero_thumbnail img {
  width: 100%;
}
.cs_hero.cs_style_3 .cs_hero_text {
  max-width: 660px;
}
.cs_hero.cs_style_3 .cs_hero_text .cs_line_1 {
  bottom: -6px;
  right: 0;
}
.cs_hero.cs_style_3 .cs_hero_text .cs_line_2 {
  bottom: -3px;
  right: 0;
}
.cs_hero.cs_style_3 .cs_hero_subtitle {
  display: inline-flex;
  padding: 2px 15px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
}
.cs_hero.cs_style_3 .cs_btns_group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cs_hero.cs_style_3 .cs_hero_shape_1 {
  width: 203px;
  height: 203px;
  background-color: var(--accent-color);
  opacity: 0.5;
  transform: rotate(-22deg);
  filter: blur(125px);
  top: 25%;
  left: 12%;
}
@media (max-width: 1399px) {
  .cs_hero.cs_style_3 {
    padding: 210px 0 130px;
  }
  .cs_hero.cs_style_3 .cs_hero_thumbnail {
    transform: translateX(-100px);
  }
  .cs_hero.cs_style_3 .cs_fs_68 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_3 {
    padding: 160px 0 80px;
  }
  .cs_hero.cs_style_3 .cs_hero_text {
    max-width: 100%;
  }
  .cs_hero.cs_style_3 .cs_hero_thumbnail {
    width: 100%;
    max-width: 100%;
    transform: translateX(0);
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_3 .cs_fs_68 {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .cs_hero.cs_style_3 .cs_fs_68 {
    font-size: 40px;
  }
}

.cs_hero.cs_style_4 {
  padding: 161px 0 100px;
  background: linear-gradient(180deg, rgba(0, 204, 97, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}
.cs_hero.cs_style_4 .cs_hero_thumbnail {
  border-color: #3305a2;
}
.cs_hero.cs_style_4 .cs_hero_thumbnail img {
  border-radius: inherit;
}
.cs_hero.cs_style_4 .cs_newsletter_input {
  background-color: transparent;
}
@media (max-width: 1399px) {
  .cs_hero.cs_style_4 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_4 {
    padding: 160px 0 80px;
  }
}

/*-----------------------------------
 Mini common components
-------------------------------------*/
.cs_text_check_wrap {
  padding: 0 0 40px 80px;
  animation: slide-right 25s linear infinite;
}
.cs_text_check_wrap .cs_arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}

.cs_aiassistant_wrap {
  padding: 0 80px 40px 0;
  animation: slide-left 30s linear infinite;
}
.cs_aiassistant_wrap .cs_arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotateY(180deg);
}

@keyframes indication-arrow {
  50% {
    transform: rotate(10deg);
  }
}
@keyframes spinAnimation {
  0% {
    transform: rotateX(-20deg) rotateY(0deg);
  }
  75% {
    transform: rotateX(-20deg) rotateY(360deg);
  }
  100% {
    transform: rotateX(-20deg) rotateY(360deg);
  }
}
@keyframes horizontal-move {
  50% {
    left: 100%;
  }
}
@keyframes vertical-move {
  50% {
    bottom: 90%;
  }
}
/*--------------------------------------------------------------
  13. Cards
----------------------------------------------------------------*/
.cs_card.cs_style_1 .cs_card_thumbnail > img {
  width: 100%;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}
.cs_card.cs_style_1 .cs_active_users_badge {
  top: 67px;
  right: 0;
  z-index: 1;
  animation: slide-right 20s linear infinite;
}
.cs_card.cs_style_1 .cs_search_badge {
  bottom: 67px;
  left: 0;
  z-index: 1;
  animation: slide-left 20s linear infinite;
}
.cs_card.cs_style_1 .cs_illustration {
  height: 100%;
  width: 100%;
  padding: 87px 0 82px 39%;
  top: 0;
  right: -120px;
  animation: slide-left 20s linear infinite;
  z-index: 1;
}
.cs_card.cs_style_1 .cs_illustration img {
  width: 100%;
  height: 100%;
}
.cs_card.cs_style_1 .cs_thumbnail_before {
  width: 100%;
  height: 100%;
  max-width: 642px;
  max-height: 642px;
  background-color: #CCF5DF;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
}
.cs_card.cs_style_1 .cs_illustration_1 {
  width: 100%;
  height: 100%;
  padding: 18% 61% 68% 0;
  top: 0;
  left: 0;
  z-index: 2;
  animation: slide-left 20s linear infinite;
}
.cs_card.cs_style_1 .cs_illustration_2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 68% 0 20% 42%;
  bottom: 0;
  right: 0;
  z-index: 2;
  animation: slide-right 20s linear infinite;
}
.cs_card.cs_style_1 .cs_feature_shape {
  top: -90px;
  right: -50px;
  transform: rotate(95deg);
}
.cs_card.cs_style_1 .cs_card_content {
  max-width: 550px;
}
.cs_card.cs_style_1 .cs_card_content .cs_btn.cs_style_1 {
  margin-top: 40px;
}
.cs_card.cs_style_1 .cs_feature_shape {
  top: -85px;
  right: -50px;
  transform: rotate(90deg);
}
.cs_card.cs_style_1 .cs_feature_shape_2 {
  bottom: -80px;
  left: -50px;
  transform: rotate(-90deg);
}
.cs_card.cs_style_1 .cs_feature_shape_3 {
  top: -80px;
  right: 140px;
  transform: rotate(90deg);
}
.cs_card.cs_style_1 .cs_vector_shape_3 {
  width: max-content;
  top: -20px;
  left: -110px;
  transform: rotate(120deg);
  animation: circular-rotation 15s linear infinite;
  animation-direction: reverse;
}
.cs_card.cs_style_1 .cs_vector_shape_4 {
  width: max-content;
  left: 40%;
  bottom: 140px;
  transform: translateX(-40%);
  animation: circular-rotation 20s linear infinite;
}
.cs_card.cs_style_1 .cs_shadow {
  width: 81px;
  height: 81px;
  background-color: var(--purple-color);
  filter: blur(100px);
  top: 140px;
  right: 40px;
}
.cs_card.cs_style_1.cs_type_1 .cs_card_thumbnail {
  padding-left: 120px;
}
.cs_card.cs_style_1.cs_type_1 .cs_chat {
  width: 100%;
  padding-right: 60%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.cs_card.cs_style_1.cs_type_1 .cs_chat img {
  border-radius: inherit;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}
.cs_card.cs_style_1.cs_type_2 .cs_card_thumbnail {
  padding-right: 120px;
}
.cs_card.cs_style_1.cs_type_2 .cs_message_bubble_wrapper {
  width: 100%;
  height: 100%;
  padding: 20% 0 20% 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.cs_card.cs_style_1.cs_type_2 .cs_message_bubble_2 {
  transform: translateX(-48px);
}
.cs_card.cs_style_1.cs_type_3 .cs_card_thumbnail {
  padding-left: 120px;
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
}
.cs_card.cs_style_1.cs_type_3 .cs_card_thumbnail img {
  width: auto;
  margin: 0 auto;
}
.cs_card.cs_style_1.cs_type_3 .cs_text_check_wrap {
  top: 50%;
  left: 0;
  z-index: 1;
}
.cs_card.cs_style_1.cs_type_3 .cs_aiassistant_wrap {
  bottom: 10%;
  left: 72%;
  z-index: 1;
}
.cs_card.cs_style_1.cs_type_3 .cs_blob_1 {
  width: 107px;
  height: 107px;
  background-color: var(--purple-color);
  filter: blur(90px);
  top: 22%;
  right: 4%;
}
.cs_card.cs_style_1.cs_type_4 .cs_card_content {
  max-width: 100%;
}
.cs_card.cs_style_1.cs_type_5 .cs_card_content {
  max-width: 100%;
}
.cs_card.cs_style_1.cs_type_5 .cs_fast_managing_badge {
  top: 35%;
  left: 0;
  z-index: 1;
  animation: slide-left 20s linear infinite;
}
.cs_card.cs_style_1.cs_type_5 .cs_task_info_badge {
  top: 13%;
  right: 0;
  z-index: 1;
  animation: slide-right 20s linear infinite;
  animation-delay: 10s;
}
.cs_card.cs_style_1.cs_type_5 .cs_rating_badge {
  bottom: 15%;
  right: 0;
  z-index: 1;
  animation: slide-right 20s linear infinite;
}
.cs_card.cs_style_1.cs_type_5 .cs_btn.cs_style_1 {
  margin-top: 0;
}
.cs_card.cs_style_1.cs_type_5 .cs_funfact_wrapper {
  display: flex;
  gap: 30px 90px;
  flex-wrap: wrap;
}
.cs_card.cs_style_1.cs_type_5 .cs_funfact_number {
  display: flex;
}
.cs_card.cs_style_1.cs_type_6 .cs_card_thumbnail {
  padding: 0 93px 0 50px;
}
.cs_card.cs_style_1.cs_type_6 .cs_card_thumbnail > img {
  width: auto;
  height: auto;
}
.cs_card.cs_style_1.cs_type_6 .cs_accent_bg {
  background-color: var(--accent-color);
  opacity: 0.1;
}
.cs_card.cs_style_1.cs_type_7 .cs_card_content {
  max-width: 100%;
  padding-left: 85px;
}
@media (max-width: 1399px) {
  .cs_card.cs_style_1.cs_type_7 .cs_card_content {
    padding-left: 0;
  }
  .cs_card.cs_style_1.cs_type_7 .cs_row_gap_70 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cs_card.cs_style_1.cs_type_7 .cs_row_gap_70 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1199px) {
  .cs_card.cs_style_1 br {
    display: none;
  }
  .cs_card.cs_style_1.cs_type_3 .cs_card_thumbnail {
    padding-left: 0;
  }
  .cs_card.cs_style_1.cs_type_2 .cs_card_thumbnail {
    padding-right: 0;
  }
  .cs_card.cs_style_1 .cs_feature_shape,
  .cs_card.cs_style_1 .cs_feature_shape_2,
  .cs_card.cs_style_1 .cs_feature_shape_3 {
    display: none;
  }
}
@media (max-width: 991px) {
  .cs_card.cs_style_1 .cs_card_content {
    max-width: 100%;
  }
  .cs_card.cs_style_1.cs_type_3 .cs_card_thumbnail {
    position: initial;
  }
  .cs_card.cs_style_1.cs_type_2 .cs_message_bubble_wrapper {
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .cs_card.cs_style_1.cs_type_1 .cs_card_thumbnail {
    padding-left: 60px;
  }
  .cs_card.cs_style_1.cs_type_2 .cs_message_bubble_wrapper {
    padding-left: 20%;
  }
  .cs_card.cs_style_1.cs_type_3 .cs_text_check_wrap {
    top: 35%;
  }
  .cs_card.cs_style_1.cs_type_6 .cs_card_thumbnail {
    padding: 0;
  }
  .cs_card.cs_style_1 .cs_illustration_1 {
    padding: 18% 50% 60% 0;
  }
  .cs_card.cs_style_1 .cs_illustration_2 {
    padding: 50% 0 20% 10%;
  }
}
@media (max-width: 450px) {
  .cs_card.cs_style_1.cs_type_5 .cs_fast_managing_badge,
  .cs_card.cs_style_1.cs_type_5 .cs_rating_badge {
    display: none;
  }
}

.cs_card.cs_style_2 {
  height: 100%;
  padding: 41px 41px 36px;
  border: 1px solid #252D32;
  background-color: #121B21;
  display: flex;
  flex-direction: column;
}
.cs_card.cs_style_2 .cs_card_thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.cs_card.cs_style_2 .cs_card_info {
  margin-top: auto;
}
@media (max-width: 1399px) {
  .cs_card.cs_style_2 {
    padding: 40px 30px 36px;
  }
}

.cs_card.cs_style_3 .cs_card_thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.cs_card.cs_style_3 .cs_social_links.cs_style_1 {
  padding: 23px 15px;
  border-radius: 0px 3px 3px 0px;
  background: rgba(10, 10, 16, 0.5);
  backdrop-filter: blur(10px);
  flex-direction: column;
  gap: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotateY(90deg);
  transform-origin: left;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.cs_card.cs_style_3 a {
  line-height: 1em;
}
.cs_card.cs_style_3:hover .cs_social_links.cs_style_1 {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%) rotateY(0deg);
}

.cs_card.cs_style_4 {
  box-shadow: 0px 0px 30px 0px rgba(10, 10, 16, 0.04);
}
.cs_card.cs_style_4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@keyframes slide-right {
  50% {
    transform: translateX(70px);
  }
}
@keyframes slide-left {
  50% {
    transform: translateX(-120px);
  }
}
/*--------------------------------------------------------------
  14. Iconbox
----------------------------------------------------------------*/
.cs_iconbox.cs_style_1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cs_iconbox.cs_style_1 .cs_iconbox_icon {
  width: 87px;
  height: 87px;
  padding: 10px;
}
.cs_iconbox.cs_style_1 img {
  transition: all 0.6s ease-in-out;
}
.cs_iconbox.cs_style_1 .cs_iconbox_info {
  margin-top: auto;
}
.cs_iconbox.cs_style_1 .cs_iconbox_btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cs_iconbox.cs_style_1 .cs_iconbox_btn .cs_btn_icon {
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  overflow: hidden;
  margin-top: 4px;
}
.cs_iconbox.cs_style_1 .cs_iconbox_btn .cs_btn_icon i {
  text-shadow: -30px 0px 0px currentColor;
  transition: all 0.3s ease;
}
.cs_iconbox.cs_style_1 .cs_iconbox_btn:hover {
  color: var(--purple-color);
}
.cs_iconbox.cs_style_1 .cs_iconbox_btn:hover .cs_btn_icon i {
  transform: translatex(30px);
}
.cs_iconbox.cs_style_1.cs_type_1 {
  padding: 60px 15px 54px;
}
.cs_iconbox.cs_style_1.cs_type_1 .cs_iconbox_icon {
  width: 70px;
  height: 70px;
}
.cs_iconbox.cs_style_1.cs_type_1 br {
  display: block;
}
.cs_iconbox.cs_style_1.cs_type_1 .cs_iconbox_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
.cs_iconbox.cs_style_1.cs_type_1 .cs_bg_1 {
  background-color: #6DE8F2;
}
.cs_iconbox.cs_style_1.cs_type_1 .cs_bg_2 {
  background-color: #6DF2A2;
}
.cs_iconbox.cs_style_1:hover img {
  transform: rotatey(360deg);
}

.cs_iconbox.cs_style_2 {
  height: 100%;
  padding: 40px 35px 35px 40px;
  box-shadow: 0px 0px 30px 0px rgba(10, 10, 16, 0.04);
}
.cs_iconbox.cs_style_2 .cs_iconbox_icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.15, 1);
}
.cs_iconbox.cs_style_2 .cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--accent-color);
  opacity: 0.1;
  position: absolute;
  left: 0;
  top: 0;
}
.cs_iconbox.cs_style_2 .cs_iconbox_icon > * {
  position: relative;
  z-index: 1;
}
.cs_iconbox.cs_style_2 .cs_iconbox_icon svg {
  transform: translate(-8px, 12px);
}
.cs_iconbox.cs_style_2 .cs_iconbox_icon.cs_purple_color::before {
  background-color: var(--purple-color);
}
.cs_iconbox.cs_style_2.cs_type_1 {
  border: 1px solid #252D32;
}
.cs_iconbox.cs_style_2.cs_type_1 .cs_iconbox_icon {
  width: 70px;
  height: 70px;
  background-color: #C3AEFF;
}
.cs_iconbox.cs_style_2.cs_type_1 .cs_iconbox_icon::before {
  display: none;
}
.cs_iconbox.cs_style_2.cs_type_1 .cs_iconbox_icon.cs_bg_2 {
  background-color: #6DF2A2;
}
.cs_iconbox.cs_style_2.cs_type_1 .cs_iconbox_icon.cs_bg_3 {
  background-color: #6DF2D0;
}
.cs_iconbox.cs_style_2.cs_type_1 .cs_iconbox_icon.cs_bg_4 {
  background-color: #6DE8F2;
}
.cs_iconbox.cs_style_2.cs_type_1 .cs_iconbox_icon.cs_bg_5 {
  background-color: #9BF26D;
}
.cs_iconbox.cs_style_2.cs_type_2 {
  padding: 0;
  box-shadow: none;
}
.cs_iconbox.cs_style_2.cs_type_3 {
  padding: 45px 38px 43px;
}
.cs_iconbox.cs_style_2.cs_type_3 .cs_iconbox_icon {
  width: max-content;
  height: max-content;
  padding: 0;
}
.cs_iconbox.cs_style_2.cs_type_3 .cs_iconbox_icon::before {
  display: none;
}
.cs_iconbox.cs_style_2:hover .cs_iconbox_icon {
  transform: scale(1.1);
}
@media (max-width: 1199px) {
  .cs_iconbox.cs_style_2 {
    padding: 30px 15px;
  }
}

.cs_iconbox.cs_style_3 {
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-wrap: nowrap;
}

.cs_iconbox.cs_style_4 {
  display: flex;
  gap: 25px;
}
.cs_iconbox.cs_style_4 .cs_iconbox_icon {
  width: 65px;
  height: 65px;
  padding: 5px;
  flex: none;
  background-color: #6DF2D0;
  color: #008F6B;
}
.cs_iconbox.cs_style_4:nth-child(2) .cs_iconbox_icon {
  background-color: #6DE8F2;
  color: var(--purple-color);
}
.cs_iconbox.cs_style_4:nth-child(3) .cs_iconbox_icon {
  background-color: #6DF2A2;
  color: #00A843;
}
@media (max-width: 400px) {
  .cs_iconbox.cs_style_4 {
    flex-direction: column;
    gap: 15px;
  }
}
.cs_iconbox.cs_style_4.cs_type_1 .cs_iconbox_icon {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.cs_iconbox.cs_style_5 {
  width: 312px;
  height: 141px;
  padding: 20px;
  background-color: #121B21;
  border: 1px solid #252D32;
}

.cs_iconbox.cs_style_6 {
  display: flex;
  gap: 30px;
}
.cs_iconbox.cs_style_6 .cs_iconbox_icon {
  width: 70px;
  height: 70px;
  flex: none;
}
.cs_iconbox.cs_style_6 .cs_iconbox_info {
  padding-top: 15px;
}
@media (max-width: 400px) {
  .cs_iconbox.cs_style_6 {
    flex-direction: column;
    gap: 25px;
  }
  .cs_iconbox.cs_style_6 .cs_iconbox_info {
    padding-top: 0;
  }
}

.cs_iconbox.cs_style_7 {
  height: 100%;
  padding: 45px 44px 42px;
}
.cs_iconbox.cs_style_7 .cs_iconbox_icon {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.15, 1);
}
.cs_iconbox.cs_style_7:hover .cs_iconbox_icon {
  transform: scale(1.1);
}
@media (max-width: 1199px) {
  .cs_iconbox.cs_style_7 {
    padding: 40px 24px 35px 30px;
  }
}
@media (max-width: 575px) {
  .cs_iconbox.cs_style_7 {
    padding: 40px 20px 35px;
  }
}

.cs_iconbox.cs_style_8 {
  display: flex;
  max-width: 439px;
  gap: 30px;
}
.cs_iconbox.cs_style_8 .cs_iconbox_icon {
  position: relative;
  padding: 25px 0 0 24px;
}
.cs_iconbox.cs_style_8 .cs_iconbox_icon > * {
  position: relative;
  z-index: 1;
}
.cs_iconbox.cs_style_8 .cs_iconbox_icon::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--purple-color);
  transition: all 0.3s ease;
  opacity: 0.1;
  position: absolute;
  left: 0;
  top: 0;
}
.cs_iconbox.cs_style_8:hover .cs_iconbox_icon::before {
  opacity: 0.3;
}
@media (max-width: 400px) {
  .cs_iconbox.cs_style_8 {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
  15. Pricing
----------------------------------------------------------------*/
.cs_pricing_table.cs_style_1 {
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.cs_pricing_table.cs_style_1 small {
  margin-left: -6px;
}
.cs_pricing_table.cs_style_1 li,
.cs_pricing_table.cs_style_1 h2,
.cs_pricing_table.cs_style_1 h3,
.cs_pricing_table.cs_style_1 p {
  transition: all 0.3s ease;
}
.cs_pricing_table.cs_style_1 .yearlyPrice,
.cs_pricing_table.cs_style_1 .yearlyText {
  display: none;
}
.cs_pricing_table.cs_style_1 .cs_pricing_feature_list li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.cs_pricing_table.cs_style_1 .cs_pricing_feature_list li:last-child {
  margin-bottom: 0;
}
.cs_pricing_table.cs_style_1 .cs_pricing_feature_list li i {
  font-size: 20px;
  position: absolute;
  top: 7px;
  left: 0;
}
.cs_pricing_table.cs_style_1 .cs_pricing_btn {
  width: 100%;
  padding: 12px 25px;
  text-align: center;
  line-height: 1.56em;
  border: 1px solid var(--heading-color);
  border-radius: 50px;
  margin-top: auto;
  transition: all 0.3s ease;
}
.cs_pricing_table.cs_style_1 .cs_pricing_badge {
  padding: 2px 74px;
  background-color: #e54800;
  color: var(--white-color);
  top: 30px;
  right: -70px;
  transform: rotate(45deg);
}
.cs_pricing_table.cs_style_1.cs_type_1 {
  border: 1px solid var(--border-color);
}
.cs_pricing_table.cs_style_1.cs_type_2 {
  box-shadow: none;
  background-color: #121b21;
  border: 1px solid #252d32;
}
.cs_pricing_table.cs_style_1.cs_type_2 .cs_pricing_btn {
  border-color: var(--white-color);
}
.cs_pricing_table.cs_style_1.cs_type_3 {
  padding: 20px 30px 40px;
  box-shadow: 0px 0px 10px 5px rgba(239, 236, 244, 0.5);
}
.cs_pricing_table.cs_style_1.cs_type_3 li {
  padding-left: 34px;
  margin-bottom: 12px;
}
.cs_pricing_table.cs_style_1.cs_type_3 .cs_feature_icon {
  width: 22px;
  height: 22px;
  padding: 3px;
  position: absolute;
  left: 0;
  top: 4px;
}
.cs_pricing_table.cs_style_1.cs_type_3 .cs_feature_icon i {
  font-size: 12px;
  position: initial;
}
.cs_pricing_table.cs_style_1.cs_type_3 .cs_pricing_btn {
  background-color: var(--white-color);
  color: var(--heading-color);
}
.cs_pricing_table.cs_style_1:hover, .cs_pricing_table.cs_style_1.active {
  box-shadow: 0px 0px 20px 5px rgba(216, 216, 216, 0.4);
}
.cs_pricing_table.cs_style_1:hover .cs_pricing_btn, .cs_pricing_table.cs_style_1.active .cs_pricing_btn {
  background-color: var(--vis-color);
  color: var(--white-color);
  border-color: var(--vis-color);
}
.cs_pricing_table.cs_style_1:hover .cs_pricing_btn:hover, .cs_pricing_table.cs_style_1.active .cs_pricing_btn:hover {
  background-color: var(--white-color);
  color: var(--purple-color);
}
.cs_pricing_table.cs_style_1:hover.cs_type_1, .cs_pricing_table.cs_style_1.active.cs_type_1 {
  box-shadow: none;
  border-color: var(--heading-color);
}
.cs_pricing_table.cs_style_1:hover.cs_type_2, .cs_pricing_table.cs_style_1.active.cs_type_2 {
  box-shadow: none;
  transform: scaleY(1.05);
}
.cs_pricing_table.cs_style_1:hover.cs_type_3, .cs_pricing_table.cs_style_1.active.cs_type_3 {
  background-color: var(--vis-color);
}
.cs_pricing_table.cs_style_1:hover.cs_type_3 .cs_pricing_btn, .cs_pricing_table.cs_style_1.active.cs_type_3 .cs_pricing_btn {
  color: var(--heading-color);
  background-color: var(--white-color);
}
.cs_pricing_table.cs_style_1:hover.cs_type_3 .cs_pricing_btn:hover, .cs_pricing_table.cs_style_1.active.cs_type_3 .cs_pricing_btn:hover {
  color: var(--vis-color);
}
.cs_pricing_table.cs_style_1:hover.cs_type_3 li,
.cs_pricing_table.cs_style_1:hover.cs_type_3 h2,
.cs_pricing_table.cs_style_1:hover.cs_type_3 h3,
.cs_pricing_table.cs_style_1:hover.cs_type_3 p, .cs_pricing_table.cs_style_1.active.cs_type_3 li,
.cs_pricing_table.cs_style_1.active.cs_type_3 h2,
.cs_pricing_table.cs_style_1.active.cs_type_3 h3,
.cs_pricing_table.cs_style_1.active.cs_type_3 p {
  color: var(--white-color);
}
@media (max-width: 1399px) {
  .cs_pricing_table.cs_style_1 {
    padding: 30px 20px;
  }
}
@media (max-width: 1199px) {
  .cs_pricing_table.cs_style_1 {
    padding: 40px 20px;
  }
}
@media (max-width: 991px) {
  .cs_pricing_table.cs_style_1 {
    box-shadow: 0px 0px 20px 5px rgba(216, 216, 216, 0.4);
  }
  .cs_pricing_table.cs_style_1.cs_type_1, .cs_pricing_table.cs_style_1.cs_type_2 {
    box-shadow: none;
  }
}

.cs_pricing_table_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (min-width: 1400px) {
  .cs_pricing_table_wrapper {
    gap: 30px 75px;
  }
}
@media (max-width: 991px) {
  .cs_pricing_table_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_pricing_table_wrapper_2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 57px;
}
@media (max-width: 1399px) {
  .cs_pricing_table_wrapper_2 {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .cs_pricing_table_wrapper_2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*---------------------------------------------------------------
Pricing controller 
----------------------------------------------------------------*/
.cs_pricing_control {
  list-style: none;
  font-size: 16px;
  line-height: 1.6em;
  margin-bottom: 60px;
}
.cs_pricing_control li {
  display: flex;
  align-items: center;
  position: relative;
}
.cs_pricing_control li a:hover {
  color: var(--heading-color);
}
.cs_pricing_control li a[href=yearly]::before {
  left: initial;
  right: 100%;
}
.cs_pricing_control li.active a {
  pointer-events: none;
}
.cs_pricing_control li.active .cs_switch::before {
  left: 5px;
}
.cs_pricing_control li.active > a {
  color: var(--heading-color);
}
.cs_pricing_control .cs_switch {
  display: inline-block;
  position: relative;
  height: 35px;
  width: 60px;
  background: var(--border-color);
  border-radius: 25px;
  margin: 0 15px;
}
.cs_pricing_control .cs_switch::before {
  content: "";
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: var(--vis-color);
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.cs_pricing_control a {
  position: relative;
}
.cs_pricing_control a::before {
  content: "";
  height: 24px;
  width: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  z-index: 1;
}
.cs_pricing_control .cs_offer_info {
  display: flex;
  align-items: center;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  animation: indication 3s linear infinite;
}
.cs_pricing_control .cs_offer_info span {
  display: inline-block;
  margin-bottom: -30px;
  text-wrap: nowrap;
}
.cs_pricing_control.cs_type_1 .cs_offer_info {
  top: 7%;
}
.cs_pricing_control.cs_type_1 .cs_offer_info svg {
  transform: rotate(-20deg);
}
.cs_pricing_control.cs_type_1 .cs_offer_info span {
  margin-bottom: 0;
}
.cs_pricing_control.cs_type_2 li a {
  color: var(--border-color);
}
.cs_pricing_control.cs_type_2 li a:hover {
  color: var(--white-color);
}
.cs_pricing_control.cs_type_2 li.active a {
  color: var(--white-color);
}
.cs_pricing_control .cs_offer_info.cs_type_1 {
  top: initial;
  bottom: 50%;
  left: 110%;
  animation: none;
}
.cs_pricing_control .cs_offer_info.cs_type_1 svg {
  transform: rotate(0deg);
}
@media (max-width: 575px) {
  .cs_pricing_control .cs_offer_info {
    display: none;
  }
}

@keyframes indication {
  50% {
    transform: translate(5px, -50%) rotate(-2deg);
  }
}
/*--------------------------------------------------------------
  16. Testimonial
----------------------------------------------------------------*/
.cs_testimonial.cs_style_1 {
  width: 536px;
  height: 100%;
  padding: 50px;
  background-color: #EDF4F3;
}
.cs_testimonial.cs_style_1 blockquote {
  font-size: 18px;
  color: var(--heading-color);
  font-style: normal;
  margin-bottom: 32px;
}
.cs_testimonial.cs_style_1 > * {
  position: relative;
  z-index: 1;
}
.cs_testimonial.cs_style_1 .cs_quote_icon {
  width: 266px;
  height: 266px;
  background-image: url(../img/quote-right-2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 24px;
  right: 63px;
  z-index: 0;
}
@media (max-width: 991px) {
  .cs_testimonial.cs_style_1 {
    padding: 30px 15px;
    width: 290px;
  }
  .cs_testimonial.cs_style_1 .cs_quote_icon {
    transform: scale(0.7);
    right: 0;
  }
}

.slick-slide:nth-child(even) .cs_testimonial.cs_style_1 {
  background-color: #ECEBFD;
}
.slick-slide:nth-child(even) .cs_testimonial.cs_style_1 .cs_quote_icon {
  background-image: url(../img/quote-right.svg);
}

.cs_testimonial.cs_style_2 {
  padding: 50px 30px 53px 32px;
}
.cs_testimonial.cs_style_2 blockquote {
  font-size: 18px;
  color: var(--heading-color);
  font-style: normal;
  margin-bottom: 30px;
}
.cs_testimonial.cs_style_2 .cs_quote_icon {
  bottom: -1px;
  right: -1px;
}

/*-----------------------------------------
 Avatar
-------------------------------------------*/
.cs_avatar.cs_style_1 {
  display: flex;
  gap: 20px;
}
.cs_avatar.cs_style_1 .cs_avatar_icon {
  width: 60px;
  height: 60px;
  flex: none;
}
.cs_avatar.cs_style_1 .cs_avatar_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.cs_avatar.cs_style_1 h3 {
  margin-bottom: -2px;
}

/*---------------------------------------------------------
 17. Layouts and Sections
-----------------------------------------------------------*/
.cs_cta.cs_style_1 {
  padding: 96px 96px 110px 96px;
}
.cs_cta.cs_style_1 .cs_cta_thumbnail {
  position: absolute;
  bottom: 0;
  right: 120px;
  z-index: 1;
}
.cs_cta.cs_style_1 .cs_cta_thumbnail .cs_quote_text_img {
  top: -20px;
  left: 45%;
  transform: translateX(-45%);
}
.cs_cta.cs_style_1 .cs_cta_text {
  max-width: 530px;
}
.cs_cta.cs_style_1 .cs_ellipse_1 {
  width: 407px;
  height: 399px;
  border: 7px solid var(--purple-color);
  opacity: 0.8;
  right: -200px;
  bottom: -135px;
}
.cs_cta.cs_style_1 .cs_ellipse_2 {
  width: 407px;
  height: 407px;
  border: 7px solid var(--border-color);
  right: -30px;
  bottom: -215px;
}
.cs_cta.cs_style_1 .cs_vector_1 {
  top: 16%;
  left: 55%;
  transform: translateX(-55%);
  animation: rotation-movement 20s linear infinite;
}
.cs_cta.cs_style_1 .cs_btns_group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1399px) {
  .cs_cta.cs_style_1 br {
    display: none;
  }
  .cs_cta.cs_style_1 .cs_cta_thumbnail {
    right: 90px;
  }
}
@media (max-width: 1199px) {
  .cs_cta.cs_style_1 {
    padding: 80px 40px;
  }
  .cs_cta.cs_style_1 .cs_cta_thumbnail {
    right: 30px;
  }
}
@media (max-width: 991px) {
  .cs_cta.cs_style_1 .cs_quote_text_img {
    display: none;
  }
}
@media (max-width: 575px) {
  .cs_cta.cs_style_1 {
    padding: 80px 20px;
  }
}

.cs_cta.cs_style_2 {
  padding: 126px 30px 140px;
  background-color: #05111A;
}
.cs_cta.cs_style_2 .cs_cta_text {
  max-width: 690px;
  margin: 0 auto;
}
.cs_cta.cs_style_2 .cs_ellipse_1 {
  width: 379px;
  height: 254px;
  border-radius: 379px;
  background: #3305A2;
  filter: blur(150px);
  top: -100px;
  left: -100px;
}
.cs_cta.cs_style_2 .cs_ellipse_2 {
  width: 463px;
  height: 296px;
  border-radius: 463px;
  background: #3305A2;
  filter: blur(150px);
  top: -120px;
  right: -100px;
}
.cs_cta.cs_style_2 .cs_ellipse_3 {
  width: 395px;
  height: 289px;
  border-radius: 395px;
  background: #3305A2;
  filter: blur(150px);
  bottom: -120px;
  left: 23%;
}
.cs_cta.cs_style_2 .cs_ellipse_4 {
  width: 333px;
  height: 197px;
  border-radius: 333px;
  background: #3305A2;
  filter: blur(150px);
  right: -100px;
  bottom: -120px;
}
.cs_cta.cs_style_2 .cs_vector_1 {
  top: 20%;
  right: 6%;
  animation: spinAnimation 20s linear infinite;
}
.cs_cta.cs_style_2 .cs_vector_2 {
  bottom: 20%;
  left: 10%;
  animation: spinAnimation 20s linear infinite;
  animation-delay: 10s;
}
.cs_cta.cs_style_2.cs_type_1 {
  padding: 125px 30px 135px;
}
@media (max-width: 991px) {
  .cs_cta.cs_style_2 {
    padding: 66px 30px 80px;
  }
  .cs_cta.cs_style_2.cs_type_1 {
    padding: 70px 15px 75px;
  }
}
@media (max-width: 575px) {
  .cs_cta.cs_style_2 {
    padding: 66px 15px 80px;
  }
}

.cs_cta.cs_style_3 .cs_cta_shape_1,
.cs_cta.cs_style_3 .cs_cta_shape_2 {
  width: 232px;
  height: 232px;
}
.cs_cta.cs_style_3 .cs_cta_shape_1 {
  top: -85px;
  left: -94px;
}
.cs_cta.cs_style_3 .cs_cta_shape_2 {
  bottom: -92px;
  right: -104px;
}

.cs_cta.cs_style_4 {
  padding: 124px 20px 130px;
}
.cs_cta.cs_style_4 .cs_newsletter_form .cs_newsletter_input {
  background-color: transparent;
  border-color: var(--heading-color);
  color: var(--heading-color);
}
.cs_cta.cs_style_4 .cs_newsletter_form .cs_newsletter_input::placeholder {
  color: var(--heading-color);
}
@media (max-width: 991px) {
  .cs_cta.cs_style_4 {
    padding: 70px 20px 80px;
  }
}

.cs_newsletter_form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cs_newsletter_form .cs_btn.cs_style_1 {
  position: absolute; 
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.cs_newsletter_form .cs_mail_icon {
  top: 16px;
  left: 23px;
}
.cs_newsletter_form .cs_newsletter_input {
  width: 100%;
  padding: 18px 23px;
  outline: 0;
  color: var(--white-color);
  border: 1px solid var(--white-color);
}
.cs_newsletter_form .cs_newsletter_input::placeholder {
  color: var(--white-color);
}
.cs_newsletter_form input + div {
  display: none;
}
.cs_newsletter_form.cs_type_1 {
  width: 100%;
  max-width: 552px;
}
.cs_newsletter_form.cs_type_1 .cs_newsletter_input {
  color: var(--heading-color);
  border-color: var(--heading-color);
}
.cs_newsletter_form.cs_type_1 .cs_newsletter_input::placeholder {
  color: var(--heading-color);
}
.cs_newsletter_form.cs_type_2 {
  width: 100%;
  max-width: 537px;
}
.cs_newsletter_form.cs_type_2 .cs_newsletter_input {
  padding: 15px 23px 15px 56px;
  color: var(--white-color);
  border-color: var(--body-color);
  background-color: #121B21;
}
.cs_newsletter_form.cs_type_2 .cs_newsletter_input::placeholder {
  color: var(--white-color);
}
.cs_newsletter_form.cs_type_2 .cs_btn.cs_style_1 {
  right: 5px;
}
.cs_newsletter_form.cs_type_3 {
  width: 100%;
  max-width: 552px;
}
@media (max-width: 575px) {
  .cs_newsletter_form .cs_newsletter_input {
    padding: 8px 23px;
  }
  .cs_newsletter_form .cs_btn.cs_style_1 {
    width: 100%;
    position: relative;
    transform: initial;
    right: initial !important;
  }
}

.cs_features_wrapper.cs_style_1 {
  padding: 70px 0 63px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 63px 0;
}
.cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1 {
  padding: 0 70px;
  border-right: 1px solid rgba(108, 108, 108, 0.3);
}
.cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1 .cs_iconbox_icon {
  width: 70px;
  height: 70px;
}
.cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(1) .cs_iconbox_icon {
  background-color: var(--accent-color);
}
.cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(2) .cs_iconbox_icon {
  background-color: #C3AEFF;
}
.cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(3) .cs_iconbox_icon {
  background-color: #6DF2A2;
}
.cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(4) .cs_iconbox_icon {
  background-color: #6DF2D0;
}
.cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(5) .cs_iconbox_icon {
  background-color: #6DE8F2;
}
.cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(6) .cs_iconbox_icon {
  background-color: #9BF26D;
}
@media (min-width: 1200px) {
  .cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(3), .cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(6) {
    border-right: 0;
  }
}
@media (max-width: 1399px) {
  .cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1 {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .cs_features_wrapper.cs_style_1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(2), .cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(4), .cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1:nth-child(6) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .cs_features_wrapper.cs_style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_features_wrapper.cs_style_1 .cs_iconbox.cs_style_1 {
    border-right: 0;
  }
}

.cs_payments_info_wrapper {
  padding: 332px 0;
}
.cs_payments_info_wrapper .cs_circular_shape {
  width: 100%;
  max-width: 874px;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: circular-rotation 60s linear infinite;
}
.cs_payments_info_wrapper::after {
  content: "";
  width: 149px;
  height: 149px;
  border-radius: 50%;
  background-color: var(--accent-color);
  filter: blur(150px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cs_payments_info_wrapper .cs_payments_logo_wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cs_payments_info_wrapper .cs_payment_logo {
  width: 312px;
  height: 141px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1;
}
.cs_payments_info_wrapper .cs_payment_logo:nth-child(1) {
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}
.cs_payments_info_wrapper .cs_payment_logo:nth-child(2) {
  left: 0;
  top: 34%;
  transform: translateY(-34%);
}
.cs_payments_info_wrapper .cs_payment_logo:nth-child(3) {
  right: 0;
  top: 34%;
  transform: translateY(-34%);
}
.cs_payments_info_wrapper .cs_payment_logo:nth-child(4) {
  top: 72%;
  left: 0;
  transform: translateY(-72%);
}
.cs_payments_info_wrapper .cs_payment_logo:nth-child(5) {
  top: 72%;
  right: 0;
  transform: translateY(-72%);
}
.cs_payments_info_wrapper .cs_payment_logo:nth-child(6) {
  bottom: 97px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .cs_payments_info_wrapper br {
    display: none;
  }
  .cs_payments_info_wrapper .cs_payment_logo {
    width: 220px;
  }
}
@media (max-width: 991px) {
  .cs_payments_info_wrapper {
    padding: 0;
  }
  .cs_payments_info_wrapper .cs_circular_shape {
    max-width: 100%;
    height: auto;
  }
  .cs_payments_info_wrapper .cs_payments_logo_wrapper {
    margin-top: 60px;
  }
  .cs_payments_info_wrapper .cs_payment_logo {
    position: initial;
    transform: translateY(0) !important;
    height: auto;
  }
}

.cs_support_content_wrapper {
  padding: 36px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cs_support_content_wrapper .cs_support_text {
  padding-left: 132px;
  position: relative;
}
.cs_support_content_wrapper .cs_support_text img {
  position: absolute;
  left: 0;
  top: 0;
}
.cs_support_content_wrapper .cs_btn.cs_style_1 {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 575px) {
  .cs_support_content_wrapper .cs_support_text {
    padding-left: 0;
    text-align: center;
  }
  .cs_support_content_wrapper .cs_support_text img {
    position: initial;
    margin-bottom: 20px;
  }
}

/*-----------------------------
 Register & Login
------------------------------*/
.cs_register_form_wrapper {
  width: 100%;
  max-width: 472px;
  padding: 43px 58px;
  box-shadow: 0px 0px 20px 5px rgba(181, 181, 181, 0.25);
}
@media (max-width: 575px) {
  .cs_register_form_wrapper {
    padding: 40px 20px;
  }
}

.cs_register_form .cs_form_field {
  padding: 8px 20px 8px 40px;
  border-color: var(--body-color);
}
.cs_register_form .cs_form_field:focus {
  border-color: var(--purple-color);
}
.cs_register_form i {
  position: absolute;
  left: 17px;
  top: 16px;
  pointer-events: none;
}
.cs_register_form i:nth-child(2) {
  left: initial;
  right: 17px;
  cursor: pointer;
  pointer-events: painted;
}
.cs_register_form .form-check {
  padding-left: 0;
  box-shadow: none;
}
.cs_register_form label {
  display: inline-block;
  margin-bottom: 0;
  color: var(--body-color);
}
.cs_register_form .form-check-input {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border-color: var(--heading-color);
  box-shadow: none;
  margin: 7px 10px 0 0;
}
.cs_register_form .form-check-input:checked {
  border: var(--purple-color);
  background-color: var(--purple-color);
}
.cs_register_form .form-check-input:focus {
  border-color: var(--heading-color);
}
.cs_register_form .cs_login_meta {
  display: flex;
  gap: 10px 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cs_register_form .cs_login_meta a:hover {
  color: var(--purple-color);
}

.cs_social_login .cs_social_links {
  gap: 10px;
}
.cs_social_login .cs_social_links a {
  width: 30px;
  height: 30px;
  padding: 10px;
  font-size: 10px;
  color: var(--heading-color);
  border: 1px solid var(--heading-color);
}
.cs_social_login .cs_social_links a:hover {
  background-color: #0A66C2;
  border-color: #0A66C2;
  color: var(--white-color);
}
.cs_social_login p a:hover {
  color: var(--purple-color);
}

.cs_register_shape_1,
.cs_register_shape_2 {
  width: 137px;
  height: 137px;
  filter: blur(150px);
}

.cs_register_shape_1 {
  left: -65px;
  top: 30%;
}

.cs_register_shape_2 {
  right: -65px;
  bottom: 200px;
}

/*--------------------------
 Terms & Condition
---------------------------*/
.cs_terms_condition_wrapper article {
  margin-bottom: 25px;
}
.cs_terms_condition_wrapper article:last-child {
  margin-bottom: 0;
}
.cs_terms_condition_wrapper article ul {
  padding-left: 30px;
}
.cs_terms_condition_wrapper article li {
  list-style: disc;
}

/*--------------------------
 Video Block Sections
---------------------------*/
.cs_video_block.cs_style_1 {
  width: 100%;
  min-height: 600px;
}
.cs_video_block.cs_style_1 .cs_feature_shape_3 {
  top: -60px;
  left: -70px;
}
@media (max-width: 991px) {
  .cs_video_block.cs_style_1 {
    min-height: 450px;
  }
}
@media (max-width: 575px) {
  .cs_video_block.cs_style_1 {
    min-height: 400px;
  }
}

@keyframes circular-rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*--------------------------------------------------------------
  18. Posts Post Details page
----------------------------------------------------------------*/
.cs_post.cs_style_1 {
  display: flex;
  align-items: center;
  gap: 50px;
}
.cs_post.cs_style_1 .cs_post_thumbnail {
  width: 390px;
  overflow: hidden;
}
.cs_post.cs_style_1 .cs_post_thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: all 0.6s ease;
}
.cs_post.cs_style_1 .cs_post_thumbnail:hover img {
  transform: scale(1.06);
}
.cs_post.cs_style_1 .cs_post_content {
  flex: 1;
}
.cs_post.cs_style_1 .cs_post_title:hover a {
  color: var(--vis-color);
}

/* vis
.cs_post.cs_style_1 .cs_post_title:hover a {
  color: var(--vis-color);
}
*/

.cs_post.cs_style_1 .cs_post_meta_wrapper {
  display: flex;
  gap: 10px 25px;
  flex-wrap: wrap;
}
@media (max-width: 390px) {
  .cs_post.cs_style_1 .cs_post_meta_wrapper .cs_post_meta {
    padding-left: 0;
  }
  .cs_post.cs_style_1 .cs_post_meta_wrapper .cs_post_meta::before {
    display: none;
  }
}
.cs_post.cs_style_1 .cs_post_meta {
  padding-left: 20px;
  position: relative;
}
.cs_post.cs_style_1 .cs_post_meta::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 12px;
}
.cs_post.cs_style_1 .cs_post_meta:first-child {
  padding-left: 0;
}
.cs_post.cs_style_1 .cs_post_meta:first-child::before {
  display: none;
}
@media (max-width: 1199px) {
  .cs_post.cs_style_1 {
    flex-direction: column;
    gap: 30px;
  }
  .cs_post.cs_style_1 .cs_post_thumbnail {
    width: 100%;
  }
}

.cs_post.cs_style_2 .cs_post_thumbnail {
  display: flex;
  overflow: hidden;
}
.cs_post.cs_style_2 .cs_post_thumbnail img {
  width: 100%;
  border-radius: inherit;
  transition: all 0.6s ease-in-out;
}
.cs_post.cs_style_2 .cs_post_thumbnail:hover img {
  transform: scale(1.04);
}
.cs_post.cs_style_2 .cs_post_content {
  padding: 36px 30px 20px;
  border: 1px solid var(--border-color);
  border-radius: 0 0 15px 15px;
  border-top: 0;
  margin-top: -16px;
}
.cs_post.cs_style_2 .cs_post_content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cs_post.cs_style_2 .cs_post_content a:hover {
  color: var(--purple-color);
}
@media (max-width: 767px) {
  .cs_post.cs_style_2 .cs_post_content {
    padding: 36px 15px 20px;
  }
}

.cs_post_slider_wrapper {
  max-width: 1768px;
  margin: 0 auto;
}

/*-------------------------------------
 Blog Details Page
---------------------------------------*/
.cs_post_details .cs_post_meta_wrapper {
  display: flex;
  gap: 10px 25px;
  flex-wrap: wrap;
}
.cs_post_details img {
  display: block;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 33px;
}
.cs_post_details h1 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 37px;
}
.cs_post_details h2 {
  font-size: 29px;
  font-weight: 400;
  line-height: 1.21em;
  margin-bottom: 15px;
}
.cs_post_details p {
  margin-bottom: 30px;
}
.cs_post_details p:nth-child(4) {
  padding-left: 50px;
}
.cs_post_details p:nth-child(4):first-letter {
  font-size: 50px;
  font-weight: 600;
  color: var(--heading-color);
  float: left;
  clear: both;
  margin-left: -50px;
  margin-top: 10px;
}
.cs_post_details article {
  margin-bottom: 30px;
}
.cs_post_details article p {
  margin-bottom: 13px;
}
.cs_post_details article p:last-child {
  margin-bottom: 0;
}
.cs_post_details blockquote {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.67em;
  color: var(--heading-color);
  padding: 60px 0 0 29px;
  position: relative;
  margin-bottom: 33px;
  position: relative;
}
.cs_post_details blockquote::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: var(--vis-color);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.cs_post_details blockquote svg {
  color: var(--accent-color);
  position: absolute;
  left: 31px;
  top: 0;
}
.cs_post_details blockquote small {
  display: block;
  font-size: 18px;
  line-height: 1.67em;
  color: var(--body-color);
  margin-top: 17px;
}
.cs_post_details button {
  border: 0;
  outline: 0;
  background-color: transparent;
  color: var(--heading-color);
  line-height: 1.67em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs_post_details button:hover {
  color: var(--purple-color);
}
.cs_post_details ul li {
  list-style: disc;
}
.cs_post_details .cs_post_shares {
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 30px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.cs_post_details .cs_post_shares h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.67em;
  margin-bottom: 0;
}
.cs_post_details .cs_post_shares .cs_tags_wrapper {
  display: flex;
  gap: 15px 10px;
}
.cs_post_details .cs_post_shares .cs_socials_wrapper {
  display: flex;
  gap: 15px 28px;
}
.cs_post_details .cs_post_shares a:hover {
  color: var(--vis-color);
}
.cs_post_details .cs_post_shares .cs_post_tags a {
  margin-right: 10px;
}
.cs_post_details .cs_post_shares .cs_post_tags a:last-child {
  margin-right: 0;
}
.cs_post_details .cs_post_shares .cs_social_links a {
  font-size: 15px;
  display: inline-block;
  margin-right: 18px;
}
.cs_post_details .cs_post_shares .cs_social_links a:last-child {
  margin-right: 0;
}
.cs_post_details .cs_post_btns_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cs_post_details h1 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .cs_post_details h1 {
    font-size: 36px;
  }
  .cs_post_details h2 {
    font-size: 24px;
  }
  .cs_post_details p:nth-child(4) {
    padding-left: 0px;
  }
  .cs_post_details p:nth-child(4):first-letter {
    font-size: 36px;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 5px;
  }
  .cs_post_details blockquote {
    padding: 60px 0 0 20px;
  }
}

/*--------------------------------------
 Comments
----------------------------------------*/
.cs_comment_form .cs_form_field {
  border-color: var(--body-color);
}
.cs_comment_form .cs_form_field:focus {
  border-color: var(--purple-color);
}
.cs_comment_form label {
  color: var(--body-color);
}/*# sourceMappingURL=style.css.map */
