/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
:root {
  --white-color: #fff;
  --heading-color: #000;
  --primary: #303030;
  --secondary: #636363;
  --ternary: rgba(99, 99, 99, 0.5);
  --body-color: #555;
  --accent-color: #e61f7f;
  --accent-strong: #583fa8;
  --gray-color: #f2f2f2;
  --accent-light: #faeff2;
  --br-color: rgba(99, 99, 99, 0.3);
  --primary-font: "Barlow", serif;
  --secondary-font: "Prompt", sans-serif;
}

body,
html {
  color: var(--secondary);
  font-family: var(--secondary-font);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--primary);
  font-family: var(--primary-font);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 700;
  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;
}
.cs_primary_font {
  font-family: var(--primary-font);
}
.cs_heading_font {
  font-family: var(--primary-font);
}
.cs_secondary_font {
  font-family: var(--secondary-font);
}

p {
  margin-bottom: 15px;
}
p:last-child {
	margin: 0;
}
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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--accent-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(--br-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(--br-color);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--body-color);
  border-radius: 5px;
}
hr {
	opacity: 1;
	border-color: var(--br-color) !important;
}
input, textarea, select {
	color: var(--heading-color);
	min-height: 50px;
	outline: none;
	background-color: #fff;
	display: block;
	width: 100%;
	padding: 9px 25px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border: none;
}
select option{
  color: var(--heading-color) !important;
}
input:hover,input:focus, textarea:hover,textarea:focus,select:hover,select:focus{
  border-color: var(--accent-color) !important;
}
.wpcf7-not-valid-tip{
  border-color: var(--accent-color);
}
input[type="submit"] {
	border: none !important;
	color: var(--primary);
	border: 1px solid var(--primary);
	padding: 10px 25px;
	display: inline-flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	gap: 10px;
	outline: none;
	background-color: transparent;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: #fff;
	position: relative;
	width: fit-content;
}
textarea {
	max-height: 195px;
}
label {
  margin-bottom: 8px;
}

select {
	padding: 12px 20px;
	height: 50px;
	background: transparent;
	border: 1px solid var(--ternary);
	width:100%;
}

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

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

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

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

@-webkit-keyframes ballPulseDouble {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes ballPulseDouble {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.cs_perloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  background: var(--primary);
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cs_perloader_dots_wrap {
  display: block;
  margin: 0px auto;
  width: 97px;
  -webkit-transform: scale(2);
          transform: scale(2);
}
.cs_perloader_dots_wrap .cs_perloader_dots i {
  width: 19px;
  height: 19px;
  display: inline-block;
  border-radius: 50%;
  background: var(--accent-color);
}
.cs_perloader_dots_wrap .cs_perloader_dots i:first-child {
  opacity: 0;
  -webkit-animation: cs_perloader_dots-ani2 0.58s linear infinite;
          animation: cs_perloader_dots-ani2 0.58s linear infinite;
  -webkit-transform: translate(-19px);
          transform: translate(-19px);
}
.cs_perloader_dots_wrap .cs_perloader_dots i:nth-child(2), .cs_perloader_dots_wrap .cs_perloader_dots i:nth-child(3) {
  -webkit-animation: cs_perloader_dots-ani3 0.58s linear infinite;
          animation: cs_perloader_dots-ani3 0.58s linear infinite;
}
.cs_perloader_dots_wrap .cs_perloader_dots i:last-child {
  -webkit-animation: cs_perloader_dots-ani1 0.58s linear infinite;
          animation: cs_perloader_dots-ani1 0.58s linear infinite;
}

@-webkit-keyframes cs_perloader_dots-ani1 {
  100% {
    -webkit-transform: translate(39px);
            transform: translate(39px);
    opacity: 0;
  }
}

@keyframes cs_perloader_dots-ani1 {
  100% {
    -webkit-transform: translate(39px);
            transform: translate(39px);
    opacity: 0;
  }
}
@-webkit-keyframes cs_perloader_dots-ani2 {
  100% {
    -webkit-transform: translate(19px);
            transform: translate(19px);
    opacity: 1;
  }
}
@keyframes cs_perloader_dots-ani2 {
  100% {
    -webkit-transform: translate(19px);
            transform: translate(19px);
    opacity: 1;
  }
}
@-webkit-keyframes cs_perloader_dots-ani3 {
  100% {
    -webkit-transform: translate(19px);
            transform: translate(19px);
  }
}
@keyframes cs_perloader_dots-ani3 {
  100% {
    -webkit-transform: translate(19px);
            transform: translate(19px);
  }
}
.cs_perloader_text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 3px;
}
.mg-btm-20 {
	margin-bottom: 20px !important;
}
/* Scroll Up */
.cs_scrollup {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  -webkit-transform: scale(0);
          transform: scale(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 999;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
          box-shadow: 0px 1px 5px 1px rgba(22, 22, 22, 0.2);
  cursor: pointer;
}
.cs_scrollup::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  -webkit-animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
          animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
}
.cs_scrollup.cs_scrollup_show {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.cs_scrollup svg {
	position: relative;
	z-index: 2;
	color: var(--primary);
}

@-webkit-keyframes scale_full {
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes scale_full {
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

/*--------------------------------------------------------------
  3. Spacing
----------------------------------------------------------------*/
@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;
  }
  .cs_height_151 {
    height: 151px;
  }
  .cs_height_152 {
    height: 152px;
  }
  .cs_height_153 {
    height: 153px;
  }
  .cs_height_154 {
    height: 154px;
  }
  .cs_height_155 {
    height: 155px;
  }
  .cs_height_156 {
    height: 156px;
  }
  .cs_height_157 {
    height: 157px;
  }
  .cs_height_158 {
    height: 158px;
  }
  .cs_height_159 {
    height: 159px;
  }
  .cs_height_160 {
    height: 160px;
  }
  .cs_height_161 {
    height: 161px;
  }
  .cs_height_162 {
    height: 162px;
  }
  .cs_height_163 {
    height: 163px;
  }
  .cs_height_164 {
    height: 164px;
  }
  .cs_height_165 {
    height: 165px;
  }
  .cs_height_166 {
    height: 166px;
  }
  .cs_height_167 {
    height: 167px;
  }
  .cs_height_168 {
    height: 168px;
  }
  .cs_height_169 {
    height: 169px;
  }
  .cs_height_170 {
    height: 170px;
  }
  .cs_height_171 {
    height: 171px;
  }
  .cs_height_172 {
    height: 172px;
  }
  .cs_height_173 {
    height: 173px;
  }
  .cs_height_174 {
    height: 174px;
  }
  .cs_height_175 {
    height: 175px;
  }
  .cs_height_176 {
    height: 176px;
  }
  .cs_height_177 {
    height: 177px;
  }
  .cs_height_178 {
    height: 178px;
  }
  .cs_height_179 {
    height: 179px;
  }
  .cs_height_180 {
    height: 180px;
  }
  .cs_height_181 {
    height: 181px;
  }
  .cs_height_182 {
    height: 182px;
  }
  .cs_height_183 {
    height: 183px;
  }
  .cs_height_184 {
    height: 184px;
  }
  .cs_height_185 {
    height: 185px;
  }
  .cs_height_186 {
    height: 186px;
  }
  .cs_height_187 {
    height: 187px;
  }
  .cs_height_188 {
    height: 188px;
  }
  .cs_height_189 {
    height: 189px;
  }
  .cs_height_190 {
    height: 190px;
  }
  .cs_height_191 {
    height: 191px;
  }
  .cs_height_192 {
    height: 192px;
  }
  .cs_height_193 {
    height: 193px;
  }
  .cs_height_194 {
    height: 194px;
  }
  .cs_height_195 {
    height: 195px;
  }
  .cs_height_196 {
    height: 196px;
  }
  .cs_height_197 {
    height: 197px;
  }
  .cs_height_198 {
    height: 198px;
  }
  .cs_height_199 {
    height: 199px;
  }
  .cs_height_200 {
    height: 200px;
  }
}
@media screen and (max-width: 991px) {
  .cs_height_lg_1 {
    height: 1px;
  }
  .cs_height_lg_2 {
    height: 2px;
  }
  .cs_height_lg_3 {
    height: 3px;
  }
  .cs_height_lg_4 {
    height: 4px;
  }
  .cs_height_lg_5 {
    height: 5px;
  }
  .cs_height_lg_6 {
    height: 6px;
  }
  .cs_height_lg_7 {
    height: 7px;
  }
  .cs_height_lg_8 {
    height: 8px;
  }
  .cs_height_lg_9 {
    height: 9px;
  }
  .cs_height_lg_10 {
    height: 10px;
  }
  .cs_height_lg_11 {
    height: 11px;
  }
  .cs_height_lg_12 {
    height: 12px;
  }
  .cs_height_lg_13 {
    height: 13px;
  }
  .cs_height_lg_14 {
    height: 14px;
  }
  .cs_height_lg_15 {
    height: 15px;
  }
  .cs_height_lg_16 {
    height: 16px;
  }
  .cs_height_lg_17 {
    height: 17px;
  }
  .cs_height_lg_18 {
    height: 18px;
  }
  .cs_height_lg_19 {
    height: 19px;
  }
  .cs_height_lg_20 {
    height: 20px;
  }
  .cs_height_lg_21 {
    height: 21px;
  }
  .cs_height_lg_22 {
    height: 22px;
  }
  .cs_height_lg_23 {
    height: 23px;
  }
  .cs_height_lg_24 {
    height: 24px;
  }
  .cs_height_lg_25 {
    height: 25px;
  }
  .cs_height_lg_26 {
    height: 26px;
  }
  .cs_height_lg_27 {
    height: 27px;
  }
  .cs_height_lg_28 {
    height: 28px;
  }
  .cs_height_lg_29 {
    height: 29px;
  }
  .cs_height_lg_30 {
    height: 30px;
  }
  .cs_height_lg_31 {
    height: 31px;
  }
  .cs_height_lg_32 {
    height: 32px;
  }
  .cs_height_lg_33 {
    height: 33px;
  }
  .cs_height_lg_34 {
    height: 34px;
  }
  .cs_height_lg_35 {
    height: 35px;
  }
  .cs_height_lg_36 {
    height: 36px;
  }
  .cs_height_lg_37 {
    height: 37px;
  }
  .cs_height_lg_38 {
    height: 38px;
  }
  .cs_height_lg_39 {
    height: 39px;
  }
  .cs_height_lg_40 {
    height: 40px;
  }
  .cs_height_lg_41 {
    height: 41px;
  }
  .cs_height_lg_42 {
    height: 42px;
  }
  .cs_height_lg_43 {
    height: 43px;
  }
  .cs_height_lg_44 {
    height: 44px;
  }
  .cs_height_lg_45 {
    height: 45px;
  }
  .cs_height_lg_46 {
    height: 46px;
  }
  .cs_height_lg_47 {
    height: 47px;
  }
  .cs_height_lg_48 {
    height: 48px;
  }
  .cs_height_lg_49 {
    height: 49px;
  }
  .cs_height_lg_50 {
    height: 50px;
  }
  .cs_height_lg_51 {
    height: 51px;
  }
  .cs_height_lg_52 {
    height: 52px;
  }
  .cs_height_lg_53 {
    height: 53px;
  }
  .cs_height_lg_54 {
    height: 54px;
  }
  .cs_height_lg_55 {
    height: 55px;
  }
  .cs_height_lg_56 {
    height: 56px;
  }
  .cs_height_lg_57 {
    height: 57px;
  }
  .cs_height_lg_58 {
    height: 58px;
  }
  .cs_height_lg_59 {
    height: 59px;
  }
  .cs_height_lg_60 {
    height: 60px;
  }
  .cs_height_lg_61 {
    height: 61px;
  }
  .cs_height_lg_62 {
    height: 62px;
  }
  .cs_height_lg_63 {
    height: 63px;
  }
  .cs_height_lg_64 {
    height: 64px;
  }
  .cs_height_lg_65 {
    height: 65px;
  }
  .cs_height_lg_66 {
    height: 66px;
  }
  .cs_height_lg_67 {
    height: 67px;
  }
  .cs_height_lg_68 {
    height: 68px;
  }
  .cs_height_lg_69 {
    height: 69px;
  }
  .cs_height_lg_70 {
    height: 70px;
  }
  .cs_height_lg_71 {
    height: 71px;
  }
  .cs_height_lg_72 {
    height: 72px;
  }
  .cs_height_lg_73 {
    height: 73px;
  }
  .cs_height_lg_74 {
    height: 74px;
  }
  .cs_height_lg_75 {
    height: 75px;
  }
  .cs_height_lg_76 {
    height: 76px;
  }
  .cs_height_lg_77 {
    height: 77px;
  }
  .cs_height_lg_78 {
    height: 78px;
  }
  .cs_height_lg_79 {
    height: 79px;
  }
  .cs_height_lg_80 {
    height: 80px;
  }
  .cs_height_lg_81 {
    height: 81px;
  }
  .cs_height_lg_82 {
    height: 82px;
  }
  .cs_height_lg_83 {
    height: 83px;
  }
  .cs_height_lg_84 {
    height: 84px;
  }
  .cs_height_lg_85 {
    height: 85px;
  }
  .cs_height_lg_86 {
    height: 86px;
  }
  .cs_height_lg_87 {
    height: 87px;
  }
  .cs_height_lg_88 {
    height: 88px;
  }
  .cs_height_lg_89 {
    height: 89px;
  }
  .cs_height_lg_90 {
    height: 90px;
  }
  .cs_height_lg_91 {
    height: 91px;
  }
  .cs_height_lg_92 {
    height: 92px;
  }
  .cs_height_lg_93 {
    height: 93px;
  }
  .cs_height_lg_94 {
    height: 94px;
  }
  .cs_height_lg_95 {
    height: 95px;
  }
  .cs_height_lg_96 {
    height: 96px;
  }
  .cs_height_lg_97 {
    height: 97px;
  }
  .cs_height_lg_98 {
    height: 98px;
  }
  .cs_height_lg_99 {
    height: 99px;
  }
  .cs_height_lg_100 {
    height: 100px;
  }
  .cs_height_lg_101 {
    height: 101px;
  }
  .cs_height_lg_102 {
    height: 102px;
  }
  .cs_height_lg_103 {
    height: 103px;
  }
  .cs_height_lg_104 {
    height: 104px;
  }
  .cs_height_lg_105 {
    height: 105px;
  }
  .cs_height_lg_106 {
    height: 106px;
  }
  .cs_height_lg_107 {
    height: 107px;
  }
  .cs_height_lg_108 {
    height: 108px;
  }
  .cs_height_lg_109 {
    height: 109px;
  }
  .cs_height_lg_110 {
    height: 110px;
  }
  .cs_height_lg_111 {
    height: 111px;
  }
  .cs_height_lg_112 {
    height: 112px;
  }
  .cs_height_lg_113 {
    height: 113px;
  }
  .cs_height_lg_114 {
    height: 114px;
  }
  .cs_height_lg_115 {
    height: 115px;
  }
  .cs_height_lg_116 {
    height: 116px;
  }
  .cs_height_lg_117 {
    height: 117px;
  }
  .cs_height_lg_118 {
    height: 118px;
  }
  .cs_height_lg_119 {
    height: 119px;
  }
  .cs_height_lg_120 {
    height: 120px;
  }
  .cs_height_lg_121 {
    height: 121px;
  }
  .cs_height_lg_122 {
    height: 122px;
  }
  .cs_height_lg_123 {
    height: 123px;
  }
  .cs_height_lg_124 {
    height: 124px;
  }
  .cs_height_lg_125 {
    height: 125px;
  }
  .cs_height_lg_126 {
    height: 126px;
  }
  .cs_height_lg_127 {
    height: 127px;
  }
  .cs_height_lg_128 {
    height: 128px;
  }
  .cs_height_lg_129 {
    height: 129px;
  }
  .cs_height_lg_130 {
    height: 130px;
  }
  .cs_height_lg_131 {
    height: 131px;
  }
  .cs_height_lg_132 {
    height: 132px;
  }
  .cs_height_lg_133 {
    height: 133px;
  }
  .cs_height_lg_134 {
    height: 134px;
  }
  .cs_height_lg_135 {
    height: 135px;
  }
  .cs_height_lg_136 {
    height: 136px;
  }
  .cs_height_lg_137 {
    height: 137px;
  }
  .cs_height_lg_138 {
    height: 138px;
  }
  .cs_height_lg_139 {
    height: 139px;
  }
  .cs_height_lg_140 {
    height: 140px;
  }
  .cs_height_lg_141 {
    height: 141px;
  }
  .cs_height_lg_142 {
    height: 142px;
  }
  .cs_height_lg_143 {
    height: 143px;
  }
  .cs_height_lg_144 {
    height: 144px;
  }
  .cs_height_lg_145 {
    height: 145px;
  }
  .cs_height_lg_146 {
    height: 146px;
  }
  .cs_height_lg_147 {
    height: 147px;
  }
  .cs_height_lg_148 {
    height: 148px;
  }
  .cs_height_lg_149 {
    height: 149px;
  }
  .cs_height_lg_150 {
    height: 150px;
  }
  .cs_height_lg_151 {
    height: 151px;
  }
  .cs_height_lg_152 {
    height: 152px;
  }
  .cs_height_lg_153 {
    height: 153px;
  }
  .cs_height_lg_154 {
    height: 154px;
  }
  .cs_height_lg_155 {
    height: 155px;
  }
  .cs_height_lg_156 {
    height: 156px;
  }
  .cs_height_lg_157 {
    height: 157px;
  }
  .cs_height_lg_158 {
    height: 158px;
  }
  .cs_height_lg_159 {
    height: 159px;
  }
  .cs_height_lg_160 {
    height: 160px;
  }
  .cs_height_lg_161 {
    height: 161px;
  }
  .cs_height_lg_162 {
    height: 162px;
  }
  .cs_height_lg_163 {
    height: 163px;
  }
  .cs_height_lg_164 {
    height: 164px;
  }
  .cs_height_lg_165 {
    height: 165px;
  }
  .cs_height_lg_166 {
    height: 166px;
  }
  .cs_height_lg_167 {
    height: 167px;
  }
  .cs_height_lg_168 {
    height: 168px;
  }
  .cs_height_lg_169 {
    height: 169px;
  }
  .cs_height_lg_170 {
    height: 170px;
  }
  .cs_height_lg_171 {
    height: 171px;
  }
  .cs_height_lg_172 {
    height: 172px;
  }
  .cs_height_lg_173 {
    height: 173px;
  }
  .cs_height_lg_174 {
    height: 174px;
  }
  .cs_height_lg_175 {
    height: 175px;
  }
  .cs_height_lg_176 {
    height: 176px;
  }
  .cs_height_lg_177 {
    height: 177px;
  }
  .cs_height_lg_178 {
    height: 178px;
  }
  .cs_height_lg_179 {
    height: 179px;
  }
  .cs_height_lg_180 {
    height: 180px;
  }
  .cs_height_lg_181 {
    height: 181px;
  }
  .cs_height_lg_182 {
    height: 182px;
  }
  .cs_height_lg_183 {
    height: 183px;
  }
  .cs_height_lg_184 {
    height: 184px;
  }
  .cs_height_lg_185 {
    height: 185px;
  }
  .cs_height_lg_186 {
    height: 186px;
  }
  .cs_height_lg_187 {
    height: 187px;
  }
  .cs_height_lg_188 {
    height: 188px;
  }
  .cs_height_lg_189 {
    height: 189px;
  }
  .cs_height_lg_190 {
    height: 190px;
  }
  .cs_height_lg_191 {
    height: 191px;
  }
  .cs_height_lg_192 {
    height: 192px;
  }
  .cs_height_lg_193 {
    height: 193px;
  }
  .cs_height_lg_194 {
    height: 194px;
  }
  .cs_height_lg_195 {
    height: 195px;
  }
  .cs_height_lg_196 {
    height: 196px;
  }
  .cs_height_lg_197 {
    height: 197px;
  }
  .cs_height_lg_198 {
    height: 198px;
  }
  .cs_height_lg_199 {
    height: 199px;
  }
  .cs_height_lg_200 {
    height: 200px;
  }
}
/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/
@media (min-width: 1600px) {
  .container {
    max-width: 1544px;
  }
}

@media (max-width: 1199px ) {
.container, .container-md, .container-sm {
	max-width: 100%;
}
}

.container {
  padding-left: 10px;
  padding-right: 10px;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}
.row > * {
  padding-left: 10px;
  padding-right: 10px;
}

.cs_row_gap_10 {
  margin-left: -5px;
  margin-right: -5px;
}
.cs_row_gap_10 > * {
  padding-left: 5px;
  padding-right: 5px;
}

.cs_plr_25 {
  padding-left: 25px;
  padding-right: 25px;
}

.cs_fs_10 {
  font-size: 10px;
  line-height: 1.7em;
}

.cs_fs_14 {
  font-size: 14px;
  line-height: 1.7em;
}

.cs_fs_16 {
	font-size: 16px !important;
	line-height: 1.6em;
}

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

.cs_fs_24 {
  font-size: 24px;
  line-height: 1.41em;
}
@media (max-width: 1600px) {
  .cs_fs_24 {
    font-size: 23px;
  }
}
@media (max-width: 991px) {
  .cs_fs_24 {
    font-size: 22px;
  }
}

.cs_fs_36 {
  font-size: 36px;
  line-height: 1.3em;
}
@media (max-width: 1600px) {
  .cs_fs_36 {
    font-size: 32px;
  }
}
@media (max-width: 1400px) {
  .cs_fs_36 {
    font-size: 28px;
  }
}

.cs_fs_54 {
  font-size: 54px;
  line-height: 1.11em;
}
@media (max-width: 1600px) {
  .cs_fs_54 {
    font-size: 48px;
  }
}
@media (max-width: 1400px) {
  .cs_fs_54 {
    font-size: 42px;
  }
}

.cs_fs_72 {
  font-size: 72px;
  line-height: 1.14em;
}
@media (max-width: 1600px) {
  .cs_fs_72 {
    font-size: 66px;
  }
}
@media (max-width: 1400px) {
  .cs_fs_72 {
    font-size: 56px;
  }
}

.cs_fs_64 {
  font-size: 64px;
  line-height: 1.15em;
}
@media (max-width: 1600px) {
  .cs_fs_64 {
    font-size: 58px;
  }
}
@media (max-width: 1400px) {
  .cs_fs_64 {
    font-size: 50px;
  }
}

.cs_fs_70 {
  font-size: 70px;
  line-height: 1.15em;
}
@media (max-width: 1600px) {
  .cs_fs_70 {
    font-size: 58px;
  }
}
@media (max-width: 1400px) {
  .cs_fs_70 {
    font-size: 50px;
  }
}

.cs_fs_100 {
  font-size: 100px;
  line-height: 1em;
}
@media (max-width: 1600px) {
  .cs_fs_100 {
    font-size: 92px;
  }
}
@media (max-width: 1400px) {
  .cs_fs_100 {
    font-size: 82px;
  }
}
@media (max-width: 991px) {
  .cs_fs_100 {
    font-size: 76px;
  }
}
@media (max-width: 575px) {
  .cs_fs_100 {
    font-size: 60px;
  }
}

.cs_light {
  font-weight: 300 !important;
}

.cs_normal {
  font-weight: 400 !important;
}

.cs_medium {
	font-weight: 500 !important;
}

.cs_semibold {
  font-weight: 600 !important;
}

.cs_bold {
  font-weight: 700 !important;
}
.cs_bold *{
  font-weight: 700
}

.cs_extra_bold {
  font-weight: 800 !important;
}

.cs_black {
  font-weight: 900 !important;
}

.cs_radius_3 {
  border-radius: 3px;
}

.cs_radius_4 {
  border-radius: 4px;
}

.cs_radius_5 {
  border-radius: 5px;
}

.cs_radius_6 {
  border-radius: 6px;
}

.cs_radius_7 {
  border-radius: 7px;
}

.cs_radius_8 {
  border-radius: 8px;
}

.cs_radius_9 {
  border-radius: 9px;
}

.cs_radius_10 {
  border-radius: 10px;
}

.cs_radius_12 {
  border-radius: 12px;
}

.cs_radius_15 {
  border-radius: 15px;
}

.cs_radius_16 {
  border-radius: 16px;
}

.cs_radius_20 {
  border-radius: 20px;
}

.cs_radius_30 {
  border-radius: 30px;
}

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

.cs_gap_y_10 {
  gap: 10px 0;
}

.cs_gap_y_15 {
  gap: 15px 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_60 {
  gap: 60px 0;
}

.cs_gap_y_65 {
  gap: 65px 0;
}

.cs_gap_y_80 {
  gap: 80px 0;
}

.cs_gap_y_100 {
  gap: 100px 0;
}

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

.cs_grid_5_column {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1400px) {
  .cs_grid_5_column {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1199px) {
  .cs_grid_5_column {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .cs_grid_5_column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cs_grid_5_column {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_grid_5_column,
.cs_grid_4_column,
.cs_grid_3_column,
.cs_grid_2_column {
  display: grid;
  grid-gap: 20px;
}
@media (max-width: 575px) {
  .cs_grid_5_column,
  .cs_grid_4_column,
  .cs_grid_3_column,
  .cs_grid_2_column {
    grid-gap: 15px;
  }
}
.cs_grid_5_column.cs_type_1 .cs_grid_col:not(:last-child),
.cs_grid_4_column.cs_type_1 .cs_grid_col:not(:last-child),
.cs_grid_3_column.cs_type_1 .cs_grid_col:not(:last-child),
.cs_grid_2_column.cs_type_1 .cs_grid_col:not(:last-child) {
  border-right: 1px solid var(--border);
}

@media (max-width: 1199px) {
  .cs_grid_5_column.cs_type_1 {
    gap: 12px;
  }
}
@media (max-width: 991px) {
  .cs_grid_5_column.cs_type_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_grid_5_column.cs_type_1 .cs_grid_col {
    width: 100%;
  }
  .cs_grid_5_column.cs_type_1 .cs_grid_col:nth-child(5) {
    grid-column: initial;
  }
  .cs_grid_5_column.cs_type_1 .cs_grid_col:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
  }
}

.cs_grid_4_column {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1199px) {
  .cs_grid_4_column {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .cs_grid_4_column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cs_grid_4_column {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_grid_3_column {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .cs_grid_3_column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cs_grid_3_column {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_grid_2_column {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
  .cs_grid_2_column {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cs_grid_3_column:not(.active) .cs_product_card.cs_style_1,
.cs_grid_2_column:not(.active) .cs_product_card.cs_style_1 {
  text-align: center;
}
.cs_grid_3_column:not(.active) .cs_product_card.cs_style_1 .cs_product_category,
.cs_grid_3_column:not(.active) .cs_product_card.cs_style_1 .cs_product_price,
.cs_grid_3_column:not(.active) .cs_product_card.cs_style_1 .cs_product_ratings,
.cs_grid_2_column:not(.active) .cs_product_card.cs_style_1 .cs_product_category,
.cs_grid_2_column:not(.active) .cs_product_card.cs_style_1 .cs_product_price,
.cs_grid_2_column:not(.active) .cs_product_card.cs_style_1 .cs_product_ratings {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cs_grid_style_1 {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .cs_grid_style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cs_grid_style_1 .cs_grid_col:not(:first-child) .cs_post.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 1400px) {
  .cs_grid_style_1 .cs_grid_col:not(:first-child) .cs_post.cs_style_2 {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cs_grid_style_1 .cs_grid_col:not(:first-child) .cs_post.cs_style_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: initial;
    gap: 25px 0px;
  }
}
.cs_grid_style_1 .cs_grid_col:not(:first-child) .cs_post.cs_style_2 .cs_post_info {
  padding: 0;
}
.cs_grid_style_1 .cs_grid_col:not(:first-child) .cs_post.cs_style_2 .cs_post_subtitle {
  display: none;
}
.cs_grid_style_1 .cs_grid_col:not(:first-child) .cs_post.cs_style_2 .cs_post_thumb {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 237px;
  min-height: 180px;
  height: 100%;
}
@media (max-width: 1400px) {
  .cs_grid_style_1 .cs_grid_col:not(:first-child) .cs_post.cs_style_2 .cs_post_thumb {
    width: 190px;
  }
}
@media (max-width: 575px) {
  .cs_grid_style_1 .cs_grid_col:not(:first-child) .cs_post.cs_style_2 .cs_post_thumb {
    width: 100%;
    height: initial;
    min-height: initial;
  }
}
.cs_grid_style_1 .cs_grid_col:not(:first-child) .cs_post.cs_style_2 .cs_post_title {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .cs_grid_style_1 .cs_grid_col:first-child {
    grid-column: span 2;
    grid-row: span 3;
  }
  .cs_grid_style_1 .cs_grid_col:nth-child(2), .cs_grid_style_1 .cs_grid_col:nth-child(3), .cs_grid_style_1 .cs_grid_col:nth-child(4) {
    grid-column: span 2;
  }
}

.cs_grid_style_2 {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1199px) {
  .cs_grid_style_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cs_grid_style_2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

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

.cs_bg_fixed {
  background-attachment: fixed;
}

.cs_vertical_middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
}

.cs_vertical_middle_in {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}

.cs_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.cs_primary_color {
  color: var(--primary);
}

.cs_secondary_color {
  color: var(--secondary);
}

.cs_ternary_color {
  color: var(--ternary);
}

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

.cs_accent_strong_color {
  color: var(--accent-strong);
}

.cs_accent_light_color {
  color: var(--accent-light);
}

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

.cs_primary_bg {
  background-color: var(--primary);
}

.cs_primary_bg_2 {
  background-color: #13282f;
}

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

.cs_ternary_bg {
  background-color: var(--ternary);
}

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

.cs_gray_bg_2 {
  background-color: #f9f3eb;
}

.cs_gray_bg_3 {
  background-color: #f6f6f6;
}

.cs_gray_bg_4 {
  background-color: rgba(242, 242, 242, 0.6);
}

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

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

.cs_accent_bg_03p {
  background-color: rgba(230, 31, 127, 0.03);
}

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

.cs_text_btn span {
  position: relative;
}
.cs_text_btn span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.cs_text_btn:hover span::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.cs_btn.cs_style_1,
.cs_btn.cs_style_2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 5px;
  line-height: 1.5em;
  text-transform: uppercase;
  color: var(--white-color);
  letter-spacing: 0.9px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  gap: 8px;
}

.cs_btn.cs_style_1 {
	padding: 16px 25px;
	background-color: var(--accent-color);
	min-width: 190px;
}
@media (max-width: 1199px) {
  .cs_btn.cs_style_1 {
    font-size: 16px;
    padding: 13px 20px;
  }
}
@media (max-width: 991px) {
  .cs_btn.cs_style_1 {
    min-width: 150px;
  }
}
.cs_btn.cs_style_1.cs_color_1 {
  background-color: var(--accent-strong);
}
.cs_btn.cs_style_1:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: auto;
  -webkit-box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, 0.3), 4px 4px 5px 0px rgba(255, 255, 255, 0.3), 7px 7px 20px 0px rgba(255, 255, 255, 0.3), -4px -4px 5px 0px rgba(255, 255, 255, 0.3);
          box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, 0.3), 4px 4px 5px 0px rgba(255, 255, 255, 0.3), 7px 7px 20px 0px rgba(255, 255, 255, 0.3), -4px -4px 5px 0px rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.cs_btn.cs_style_1:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.cs_btn.cs_style_1:hover:after {
  width: 100%;
}
.cs_btn.cs_style_1.cs_size_md {
  padding: 10px 25px;
  min-width: 174px;
  letter-spacing: 0.8px;
}
@media (max-width: 991px) {
  .cs_btn.cs_style_1.cs_size_md {
    padding: 10px 20px;
    min-width: 150px;
  }
}
.cs_btn.cs_style_1.cs_type_1 {
  padding: 13px 25px;
}

.cs_btn.cs_style_2 {
  padding: 15px 25px;
  min-width: 190px;
  border: 1px solid var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}
@media (max-width: 1199px) {
  .cs_btn.cs_style_2 {
    font-size: 16px;
    padding: 11px 20px;
  }
}
.cs_btn.cs_style_2:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
}
.cs_btn.cs_style_2.cs_size_md {
  padding: 9px 25px;
  min-width: 174px;
  letter-spacing: 0.8px;
}
@media (max-width: 991px) {
  .cs_btn.cs_style_2.cs_size_md {
    padding: 9px 20px;
    min-width: 150px;
  }
}
.cs_btn.cs_style_2.cs_type_1 {
  padding: 12px 25px;
}
.text-logo {
	min-width: 195px;
}
.cs_bottom_footer_wrap {
	background-color: var(--primary);
}