/*--------------------------------------------------------------
## Basic Color
----------------------------------------------------------------*/
/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Typography
2. Preloader
3. Spacing
4. General
5. Slider
6. Video Popup
7. Header
8. Footer
9. Sidebar
10. Isotope
11. Hero
12. Iconbox
13. Posts
14. CTA
15. Testimonial
16. Portfolio
17. Counter
18. Award
19. Casestudie
20. Team
21. Imagebox
22. Pricing
22. Numberbox
23. Ecommerce
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Prompt:wght@400;500;600&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
/* font-family: 'Noto Sans KR', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* font-family: 'Raleway', sans-serif; */

body,
html {
  color: #4f4747;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625em;
  overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: #121212;
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 800;
  line-height: 1.2em;
  font-family: 'Noto Sans KR', sans-serif;
}

.cs_primary_font,
.cs_btn {
  font-family: 'Noto Sans KR', sans-serif;
}

.cs_secondary_font {
  font-family: 'Noto Sans KR', sans-serif;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

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

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

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

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

address {
  margin: 0 0 15px;
}

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

a {
  color: inherit;
  text-decoration: none;
  -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;
}

a:hover {
  text-decoration: none;
  color: #00834A
  ;
}

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: #4f4747;
}
table td,
table th {
  border-top: 1px solid #dddddd;
  padding: 11px 10px;
}

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

b,
strong {
  font-weight: bold;
}

pre {
  color: #4f4747;
  border: 1px solid #dddddd;
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: #4f4747;
  border-radius: 5px;
}

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

/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.cs_perloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  background: #121212;
  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: #00834A
;
}
.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;
}

/*--------------------------------------------------------------
  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
----------------------------------------------------------------*/
.cs_fs_16 {
  font-size: 16px;
}

.cs_fs_18 {
  font-size: 18px;
  line-height: 1.625em;
}
@media (max-width: 991px) {
  .cs_fs_18 {
    font-size: 17px;
  }
}

.cs_fs_21 {
  font-size: 21px;
  line-height: 1.524em;
}
@media (max-width: 1400px) {
  .cs_fs_21 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cs_fs_21 {
    font-size: 18px;
  }
}

.cs_fs_29 {
  font-size: 29px;
  line-height: 1.31em;
}
@media (max-width: 1400px) {
  .cs_fs_29 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .cs_fs_29 {
    font-size: 22px;
  }
}

.cs_fs_38 {
  font-size: 38px;
  line-height: 1.447em;
}
@media (max-width: 1400px) {
  .cs_fs_38 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .cs_fs_38 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .cs_fs_38 {
    font-size: 26px;
  }
}

.cs_fs_50 {
  font-size: 50px;
  line-height: 1.3em;
}
@media (max-width: 1400px) {
  .cs_fs_50 {
    font-size: 46px;
  }
}
@media (max-width: 1199px) {
  .cs_fs_50 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .cs_fs_50 {
    font-size: 36px;
  }
}

.cs_fs_68 {
  font-size: 68px;
  line-height: 1.471em;
}
@media (max-width: 1400px) {
  .cs_fs_68 {
    font-size: 58px;
    line-height: 1.3em;
  }
}
@media (max-width: 1400px) {
  .cs_fs_68 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .cs_fs_68 {
    font-size: 42px;
  }
}
@media (max-width: 380px) {
  .cs_fs_68 {
    font-size: 36px;
  }
}

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

.cs_radius_5 {
  border-radius: 5px;
}

.cs_radius_7 {
  border-radius: 7px;
}

.cs_radius_10 {
  border-radius: 10px;
}

.cs_radius_15 {
  border-radius: 15px;
}

.cs_mp0 {
  list-style: none;
  margin: 0;
  padding: 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;
}
@media (max-width: 991px) {
  .cs_gap_y_65 {
    gap: 30px 0;
  }
}

@media (min-width: 1401px) {
  .cs_row_gap_40 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .cs_row_gap_40 > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cs_m0 {
  margin: 0;
}

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

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

.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: #ffffff;
}

.cs_primary_color {
  color: #121212;
}

.cs_secondary_color {
  color: #4f4747;
}

.cs_ternary_color {
  color: #b7b7b7;
}

.cs_accent_color {
  color: #00834A
;
}

.cs_gray_color {
  color: #f8f8f8;
}

.cs_gray_color_2 {
  color: #a3a3a3;
}

.cs_white_bg {
  background-color: #fff;
}

.cs_accent_bg {
  background-color: #00834A
;
}

.cs_gray_bg {
  background-color: #f8f8f8;
}

.cs_gray_bg_2 {
  background-color: rgba(221, 221, 221, 0.2);
}

.cs_gray_bg_3 {
  background-color: #dddddd;
}

.cs_primary_bg,
.cs_primary_bg_hover:hover {
  background-color: #121212;
}

.cs_primary_bg_2 {
  background-color: #0c0c0c;
}

.cs_outline_text {
  color: transparent;
  -webkit-text-stroke: 2px #121212;
}

.cs_cursor_lg,
.cs_cursor_sm {
  position: fixed;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  z-index: 9999;
}
@media (max-width: 991px) {
  .cs_cursor_lg,
  .cs_cursor_sm {
    display: none !important;
  }
}

.cs_cursor_lg {
  width: 10px;
  height: 10px;
  background-color: #fff;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.cs_cursor_lg.cs_large {
  width: 60px;
  height: 60px;
  opacity: 0.15;
}

.cs_cursor_sm {
  width: 8px;
  height: 8px;
  background-color: #00834A
;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}

.cs_btn.cs_style_1 {
  color: #00834A
;
  border: 2px solid #00834A
;
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 20px !important;
  margin-top:21px;
  line-height: 1.625em;
  height:45px !important;
  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;
  gap: 10px;
  background-color: transparent;
  outline: none;
}
.cs_btn.cs_style_1 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}
.cs_btn.cs_style_1 span:after {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  left: -19px;
  bottom: -25px;
  -webkit-transform: translate(0, 0) rotate(-45deg);
          transform: translate(0, 0) rotate(-45deg);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
}
.cs_btn.cs_style_1 i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #00834A
;
}
.cs_btn.cs_style_1:hover {
  /* background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%); */
  background-color: #00834A
;
  color: #fff;
}
.cs_btn.cs_style_1:hover i {
  -webkit-transform: translate(20px, -20px) rotate(-45deg);
          transform: translate(20px, -20px) rotate(-45deg);
}
.cs_btn.cs_style_1:hover span::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(20px, -20px) rotate(-45deg);
          transform: translate(20px, -20px) rotate(-45deg);
}
.cs_btn.cs_style_1.cs_btn_white {
  color: #fff;
}
.cs_btn.cs_style_1.cs_btn_white i {
  color: inherit;
}
.cs_btn.cs_style_1.cs_btn_accent {
  color: #fff;
  background-color: #00834A
;
}
.cs_btn.cs_style_1.cs_btn_accent i {
  color: inherit;
}

.cs_play_btn.cs_style_1 {
  color: #fff;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.cs_play_btn.cs_style_1 img {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cs_play_btn.cs_style_1:hover img {
  -webkit-transform: rotate(80deg) scale(1.1);
          transform: rotate(80deg) scale(1.1);
}

.cs_text_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cs_text_btn svg {
  margin-left: 15px;
}
.cs_text_btn span {
  display: inline-block;
  position: relative;
}
.cs_text_btn span::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.cs_text_btn:hover span::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
          transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.cs_text_btn.cs_type1 svg {
  margin-left: 0px;
  margin-right: 15px;
}
.cs_text_btn.cs_type1 span::before {
  left: initial;
  right: -100%;
  -webkit-transform: scaleX(0) rotateY(180deg);
          transform: scaleX(0) rotateY(180deg);
}
.cs_text_btn.cs_type1:hover span::before {
  -webkit-transform: scaleX(1) rotateY(180deg);
          transform: scaleX(1) rotateY(180deg);
}






/* Start Accordion */
.cs_accordian_title {
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_accordian_body {
  margin-top: -10px;
}
.cs_accordian_body p {
  margin: 0;
}

.cs_accordian_head {
  padding: 23px 20px 23px 64px;
  position: relative;
  cursor: pointer;
}
.cs_accordian:hover .cs_accordian_title{
  /* background-color: #f4f4f4; */
  color:#999;
}


.cs_accordian {
  /* border: 1px solid #dddddd; */
  background-color: #fff;
  box-shadow: 3px 3px 12px rgba(0,0,0,0.1);
  border-radius: 8px !important;
  margin-bottom:8px !important;
  padding: 0 20px !important;
  border-radius: 5px;
}
.cs_accordian:not(:last-child) {
  margin-bottom: 20px;
}

.cs_accordian_toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 21px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 30px;
  width: 30px;
  /* border-radius: 50%;
  border: 2px solid #121212; */
}
.cs_accordian_toggle::before, .cs_accordian_toggle::after {
  content: "";
  height: 2px;
  width: 60%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -70%;
  margin-top: -1px;
  background-color: #333;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cs_accordian_toggle::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.cs_accordian.active .cs_accordian_head {
  pointer-events: none;
  /* background-color: whitesmoke; */
}
.cs_accordian.active .cs_accordian_toggle::after {
  display: none;
}

.cs_accordians.cs_style_1.cs_type_1 .cs_accordian {
  border: none;
  border-radius: 0;
}
.cs_accordians.cs_style_1.cs_type_1 .cs_accordian:not(:last-child) {
  margin-bottom: 0;
  /* border-bottom: 1px solid #dddddd; */
}
.cs_accordians.cs_style_1.cs_type_1 .cs_accordian_toggle {
  left: initial;
  right: 0;
}
@media (max-width: 991px) {
  .cs_accordians.cs_style_1.cs_type_1 .cs_accordian_toggle {
    -webkit-transform: translateY(-50%) scale(0.8);
            transform: translateY(-50%) scale(0.8);
  }
}
.cs_accordians.cs_style_1.cs_type_1 .cs_accordian_head {
  padding: 29px 60px 29px 0px;
}
@media (max-width: 1400px) {
  .cs_accordians.cs_style_1.cs_type_1 .cs_accordian_head {
    padding: 25px 50px 25px 0px;
  }
}
@media (max-width: 991px) {
  .cs_accordians.cs_style_1.cs_type_1 .cs_accordian_head {
    padding: 15px 50px 15px 0px;
    right: -3px;
  }
}
.cs_accordians.cs_style_1.cs_type_1 .cs_accordian_body {
  padding: 0 60px 29px 0px;
  margin-top: -6px;
}

/* End Accordion */
@-webkit-keyframes particalAnimation {
  0%, 100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  20% {
    -webkit-transform: translate(80px, -10px);
            transform: translate(80px, -10px);
  }
  40% {
    -webkit-transform: translate(140px, 70px);
            transform: translate(140px, 70px);
  }
  60% {
    -webkit-transform: translate(90px, 130px);
            transform: translate(90px, 130px);
  }
  80% {
    -webkit-transform: translate(-40px, 80px);
            transform: translate(-40px, 80px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes particalAnimation {
  0%, 100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  20% {
    -webkit-transform: translate(80px, -10px);
            transform: translate(80px, -10px);
  }
  40% {
    -webkit-transform: translate(140px, 70px);
            transform: translate(140px, 70px);
  }
  60% {
    -webkit-transform: translate(90px, 130px);
            transform: translate(90px, 130px);
  }
  80% {
    -webkit-transform: translate(-40px, 80px);
            transform: translate(-40px, 80px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@-webkit-keyframes animo-x {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(44px);
            transform: translateX(44px);
  }
}
@keyframes animo-x {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(44px);
            transform: translateX(44px);
  }
}
@-webkit-keyframes light-mode {
  50% {
    opacity: 0.5;
  }
}
@keyframes light-mode {
  50% {
    opacity: 0.5;
  }
}
@-webkit-keyframes animo-y {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@keyframes animo-y {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@-webkit-keyframes rotate-anim {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-anim {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes semi-rotate-anim {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(25px) rotate(-53deg);
            transform: translateY(25px) rotate(-53deg);
  }
}
@keyframes semi-rotate-anim {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(25px) rotate(-53deg);
            transform: translateY(25px) rotate(-53deg);
  }
}
@-webkit-keyframes up-down-anim {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(40px) rotate(-1deg);
            transform: translateY(40px) rotate(-1deg);
  }
}
@keyframes up-down-anim {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(40px) rotate(-1deg);
            transform: translateY(40px) rotate(-1deg);
  }
}
@-webkit-keyframes swing-anim {
  65% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(-48px) rotate(-75deg);
            transform: translateY(-48px) rotate(-75deg);
  }
}
@keyframes swing-anim {
  65% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(-48px) rotate(-75deg);
            transform: translateY(-48px) rotate(-75deg);
  }
}
.cs_shape_animation_1 {
  position: relative;
}
.cs_shape_animation_1 .cs_shape_1 {
  right: 10%;
  top: 62%;
  -webkit-animation: semi-rotate-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: semi-rotate-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .cs_shape_animation_1 .cs_shape_1 {
    display: none;
  }
}

.cs_shape_animation_2 {
  position: relative;
}
.cs_shape_animation_2 .cs_shape_1 {
  right: 10%;
  top: 8%;
  -webkit-animation: semi-rotate-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: semi-rotate-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .cs_shape_animation_2 .cs_shape_1 {
    display: none;
  }
}
.cs_shape_animation_2 .cs_shape_2 {
  left: 12%;
  top: 21%;
  -webkit-animation: rotate-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: rotate-anim 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .cs_shape_animation_2 .cs_shape_2 {
    display: none;
  }
}

.cs_shape_animation_3 {
  position: relative;
}
.cs_shape_animation_3 .cs_shape_1 {
  right: -250px;
  top: 140px;
  -webkit-animation: heroShapeAnim 20s linear infinite alternate;
          animation: heroShapeAnim 20s linear infinite alternate;
  color: #dddddd;
}
@media (max-width: 1199px) {
  .cs_shape_animation_3 .cs_shape_1 {
    display: none;
  }
}
.cs_shape_animation_3 > *:not(.cs_shape_1) {
  position: relative;
  z-index: 2;
}

.cs_shape_animation_4 {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cs_shape_animation_4 {
    display: none;
  }
}
.cs_shape_animation_4 .cs_shape_1 {
  right: -150px;
  top: -150px;
  height: 350px;
  width: 350px;
  border-radius: 50%;
  border: 7px solid #dddddd;
  position: absolute;
}
@media (max-width: 991px) {
  .cs_shape_animation_4 .cs_shape_1 {
    display: none;
  }
}
.cs_shape_animation_4 .container {
  position: relative;
  z-index: 3;
}

.cs_moving_text_wrap {
  /* background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%); */
  padding:20px;
  box-sizing: border-box;
  font-family: helvetica;
  overflow-x: hidden;
}
/* .cs_moving_text_wrap:hover .cs_moving_text {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
} */

.cs_moving_text_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}

.cs_moving_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 6px;
  -webkit-animation: slide-left 30s linear infinite;
          animation: slide-left 30s linear infinite !important;
}
.cs_moving_text > * {
  margin: 0 20px;
}

.cs_moving_text_wrap.cs_style_1 {
  line-height: 1.2em;
  color: transparent;
  -webkit-text-stroke: 2px #121212;
}
.cs_moving_text_wrap.cs_style_1 .cs_moving_text {
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}
.cs_moving_text_wrap.cs_style_1:hover .cs_moving_text {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.cs_moving_text_wrap.cs_style_2 {
  padding-top: 25px;
  padding-bottom: 25px;
}
.cs_moving_text_wrap.cs_style_2 svg {
  -webkit-animation: heroShapeAnim 15s linear infinite alternate;
          animation: heroShapeAnim 15s linear infinite alternate;
}
.cs_moving_text_wrap.cs_style_2 .cs_moving_text {
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}
.cs_moving_text_wrap.cs_style_2:hover .cs_moving_text {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.cs_video_block.cs_style_1 {
  display: block;
  height: 550px;
  z-index: 1;
}
@media (max-width: 991px) {
  .cs_video_block.cs_style_1 {
    height: 350px;
  }
}



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

.cs_section_heading.cs_style_1.cs_type_1 .cs_section_subtitle, .cs_section_heading.cs_style_1.cs_type_2 .cs_section_subtitle {
  display: inline-block;
}
.cs_section_heading.cs_style_1.cs_type_1 .cs_section_subtitle::before, .cs_section_heading.cs_style_1.cs_type_2 .cs_section_subtitle::before {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-right: 12px;
}
.cs_section_heading.cs_style_1.cs_type_1 .cs_section_subtitle::after, .cs_section_heading.cs_style_1.cs_type_2 .cs_section_subtitle::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-left: 12px;
}
.cs_section_heading.cs_style_1.cs_type_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.cs_section_heading.cs_style_1.cs_type_2 .cs_section_heading_right {
  padding-bottom: 16px;
}
.cs_section_heading.cs_style_1.cs_type_3 {
  position: relative;
}
.cs_section_heading.cs_style_1.cs_type_3 .container {
  position: relative;
  z-index: 2;
}
.cs_section_heading.cs_style_1.cs_type_3 .cs_section_subtitle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.cs_section_heading.cs_style_1.cs_type_3 .cs_section_subtitle::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 50px;
  background-color: currentColor;
}
.cs_section_heading.cs_style_1.cs_type_3 .cs_shape_1 {
  position: absolute;
  height: 380px;
  width: 380px;
  border: 15px solid rgba(18, 18, 18, 0.1);
  border-radius: 50%;
  right: -190px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_3 .cs_shape_1 {
    display: none;
  }
}
.cs_section_heading.cs_style_1.cs_type_3 .cs_shape_2 {
  position: absolute;
  height: 260px;
  width: 260px;
  border: 15px solid rgba(18, 18, 18, 0.1);
  right: -130px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_3 .cs_shape_2 {
    display: none;
  }
}
.cs_section_heading.cs_style_1.cs_type_3 .cs_shape_3 {
  position: absolute;
  height: 690px;
  width: 690px;
  border: 15px solid rgba(18, 18, 18, 0.1);
  border-radius: 50%;
  left: 71%;
  top: -550px;
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_3 .cs_shape_3 {
    display: none;
  }
}
.cs_section_heading.cs_style_1.cs_type_3 .cs_shape_4 {
  position: absolute;
  right: 12%;
  top: -25%;
  -webkit-animation: spinAnimaiton 8s linear infinite;
          animation: spinAnimaiton 8s linear infinite;
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_3 .cs_shape_4 {
    display: none;
  }
}
.cs_section_heading.cs_style_1.cs_type_3 .cs_shape_5 {
  position: absolute;
  left: 20%;
  top: -3%;
}
@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_3 .cs_shape_5 {
    display: none;
  }
}
.cs_section_heading.cs_style_1 .cs-post_meta.cs-style1 {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cs_section_heading.cs_style_1 br {
    display: none;
  }
}

.cs_section_heading.cs_style_4 .cs_section_title svg {
  position: absolute;
  right: -90px;
  top: -45px;
}



.cs_portfolio_details_gallery {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-bottom: -24px;
}
.cs_portfolio_details_gallery > * {
  padding-bottom: 24px;
}
.cs_portfolio_details_gallery img {
  border-radius: 5px;
}
@media (max-width: 767px) {
  .cs_portfolio_details_gallery {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

.cs_portfolio_details_info li:not(:last-child) {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .cs_portfolio_details_info li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.cs_portfolio_details_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .cs_portfolio_details_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cs_portfolio_details_info {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 270px;
  padding-right: 30px;
  border-right: 1px solid #a3a3a3;
}
@media (max-width: 991px) {
  .cs_portfolio_details_info {
    width: 220px;
  }
}
@media (max-width: 767px) {
  .cs_portfolio_details_info {
    width: 100%;
    padding-right: 0;
    border: none;
  }
  .cs_portfolio_details_info + .cs_portfolio_details_right {
    margin-top: 40px;
  }
}

.cs_portfolio_details .cs_portfolio_details_right {
  padding-left: 70px;
}
@media (max-width: 991px) {
  .cs_portfolio_details .cs_portfolio_details_right {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .cs_portfolio_details .cs_portfolio_details_right {
    padding-left: 0px;
  }
}
.cs_portfolio_details h2 {
  font-size: 29px;
  margin-bottom: 26px;
}
.cs_portfolio_details p {
  margin-bottom: 15px;
}
.cs_portfolio_details p:last-child {
  margin-bottom: 0;
}





.cs_scrollup {
  position: fixed;
  bottom: -60px;
  right: 40px;
  color: #fff;
  padding: 5px;
  height: 50px;
  width: 50px;
  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;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 10;
  background-color: #fff;
  border: 1px solid #00834A
;
  color: #00834A
;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(11, 53, 179, 0.2);
          box-shadow: 0px 1px 5px 1px rgba(11, 53, 179, 0.2);
  border-radius: 50%;
}
.cs_scrollup:hover {
  background-color: #00834A
;
  color: #ffffff;
}

.cs_scrollup.cs_scrollup_show {
  bottom: 50px;
}

.cs_demo_card {
  display: block;
  text-align: center;
  color: #fff;
}
.cs_demo_card:hover {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
.cs_demo_card img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cs_demo_card span {
  display: block;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cs_demo_card span {
    margin-top: 12px;
  }
}

.cs_casestudy_details_thumb {
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .cs_reverse_column_tab {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/*--------------------------------------------------------------
7. 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;
  -webkit-transition: all 0.4s ease;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 90px;
  position: relative;
}
.cs_site_header.cs_style_1 .cs_main_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 30px;
}
@media (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    padding-right: 50px;
  }
}
@media (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_btn.cs_style_1 {
    display: none;
  }
}

.cs_site_header.cs_style_1.cs_sticky_active {
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
          box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}
.cs_site_header.cs_style_1 .cs_action_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cs_site_header.cs_style_1 .cs_action_box .cs_action_value {
  margin-left: 15px;
}
.cs_site_header.cs_style_1 .cs_action_box > *:not(:last-child) {
  margin-right: 35px;
}
.cs_site_header.cs_style_1.cs_color_1 .cs_nav_list > li > a {
  color: #fff;
}
.cs_site_header.cs_style_1.cs_color_1.cs_gescout_show {
  background-color: #121212;
}

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

.cs_site_header_style1 {
  border-bottom: 1px solid #1a188d;
}
.cs_site_header_style1 .cs_main_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cs_site_header_style1 .cs_nav + .cs_header_toolbox.cs_center {
  margin-left: 35px;
}
.cs_site_header_style1 .cs_nav .cs_nav_list > li.current-menu-item > a:before {
  bottom: -4px;
  background-color: #ffffff;
}

@media screen and (max-width: 1199px) {
  .cs_main_header .container {
    max-width: 100%;
  }
  .cs_site_header.cs_style_1 .cs_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.cs_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs_sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
}

.cs_gescout_sticky {
  position: fixed !important;
  top: -110px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #ffffff;
}

.cs_gescout_show {
  top: 0 !important;
  opacity: 1;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
          box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}

.cs_site_branding {
  display: inline-block;
}
.cs_site_branding img {
  max-height: 45px;
}

@media screen and (min-width: 1200px) {
  .cs_main_header {
    position: relative;
  }
  .cs_main_header .container-fluid {
    padding-right: 40px;
    padding-left: 40px;
  }
  .cs_main_header_center,
  .cs_top_header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .cs_site_header.cs_style_1 .cs_main_header_center {
    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;
    height: 100%;
    width: 100%;
    max-width: calc(100% - 300px);
  }
  .cs_site_header.cs_style_1 .cs_main_header_left {
    height: 100%;
    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;
  }
  .cs_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    line-height: 1.6em;
  }
  .cs_nav .cs_nav_list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: inherit;
  }
  .cs_nav .cs_nav_list > li {
    margin-right: 40px;
    height: inherit;
  }
  .cs_nav .cs_nav_list > li:last-child {
    margin-right: 0;
  }
  .cs_nav .cs_nav_list > li > a {
    padding: 10px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    height: inherit;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .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;
    -webkit-transform: rotate(45deg);
            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;
    -webkit-transition: all 0.4s ease;
    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;
    -webkit-transform: rotate(45deg);
            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 li:not(.cs_mega_menu) {
    position: relative;
  }
  .cs_nav .cs_nav_list ul {
    width: 260px;
    background-color: #ffffff;
    position: absolute;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
            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;
    -webkit-transition: all 0.1s ease;
    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;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .cs_nav .cs_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
  }
  /* .cs_nav .cs_nav_list ul li:hover{
background-color: whitesmoke;
  } */

  .cs_nav .cs_nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .cs_menu_toggle,
  .cs_munu_dropdown_toggle {
    display: none;
  }
  .cs_nav .cs_nav_list .cs_mega_menu {
    position: relative;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 475px !important;
    left: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: absolute;
    padding: 5px 15px 10px;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper a {
    padding: 7px 10px;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 10px 0;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper > li > a {
    font-size: 18px;
    font-weight: 600;
    pointer-events: none;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper > li > a:hover {
    background-color: transparent;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper > li ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper > li ul a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper > li ul a:hover {
    letter-spacing: 1px;
  }
  .cs_nav .cs_nav_list .cs_mega_menu:hover .cs_mega_wrapper li ul {
    opacity: 1;
    visibility: visible;
  }
  .cs_nav .cs_nav_list > li ul:not(.cs_mega_wrapper) .menu-item-has-children > a {
    position: relative;
  }
}
.cs_header_cart {
  position: relative;
}

@media screen and (max-width: 1400px) {
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1116px !important;
  }
  .cs_site-branding {
    max-width: 190px;
  }
  .cs_site_header_full_width .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 100% !important;
  }
  .cs_site_header_full_width .container {
    padding: 0 15px;
  }
  .cs_munu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }
  .cs_munu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }
  .cs_munu_dropdown_toggle span:before, .cs_munu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .cs_munu_dropdown_toggle span:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .cs_munu_dropdown_toggle.active span:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  .menu-item-has-children .menu-item-has-children .cs_munu_dropdown_toggle {
    padding: 20px 18px;
  }
  .cs_site_branding {
    position: relative;
    z-index: 101;
  }
  .cs_nav .cs_nav_list {
    position: fixed;
    width: 100vw;
    left: -100vw;
    background-color: #fff;
    color: #121212;
    padding: 10px 0;
    top: 0;
    overflow: auto;
    min-height: 100vh;
    line-height: 1.6em;
    padding-top: 80px;
    -webkit-transition: all 0.4s ease;
    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 ul li{
    padding-left: 15px;
  }
  .cs_nav .cs_nav_list ul li:hover{
  background-color: whitesmoke;
  }
  .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;
  }
  .mobilemenu_border>a{
    border-bottom:1px solid #eee;
  }
  .cs_animo_links > li > a .cs_animo_text {
    text-shadow: 0 32px 0 currentColor;
  }
  .cs_animo_links > li > a:hover span {
    -webkit-transform: translateY(-32px);
            transform: translateY(-32px);
  }
  /*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;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .cs_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
            transition-delay: 0.2s, 0s;
  }
  .cs_menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
            transition-delay: 0.2s, 0s;
  }
  .cs_site_header.cs_style_1.cs_color_1 .cs_nav_list {
    background-color: #121212;
    color: #fff;
  }
  .cs_site_header.cs_style_1.cs_color_1 .cs_menu_toggle {
    color: #fff;
  }
  .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);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .cs_toggle_active span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s;
            transition-delay: 0s, 0.2s;
  }
  .cs_toggle_active span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s;
            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%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cs_site_header.cs_style_1 {
    top: 0;
  }
  .cs_has_main_nav {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .cs_site_header .container {
    max-width: 100%;
  }
  .cs_site_header.cs_style_1 .cs_action_box > *:not(:last-child) {
    margin-right: 25px;
  }
}
@media screen and (max-width: 575px) {
  .cs_site-branding {
    max-width: 150px;
  }
}
/*--------------------------------------------------------------
  8. Footer
----------------------------------------------------------------*/
.icon_phone::after {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.cs_footer a:hover{
  color:#999;
}
.cs_footer {
  color: #dddddd;
  background-attachment: fixed;
}

.cs_footer_main {
  padding: 145px 0 37px;
}
@media (max-width: 991px) {
  .cs_footer_main {
    padding: 80px 0 10px;
  }
}

.cs_footer_item {
  margin-bottom: 45px;
}
.cs_footer_item .cs_phone.cs_style_1 {
  margin-top: 6px;
}

.cs_widget_title {
  font-size: 21px;
  margin-bottom: 33px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 991px) {
  .cs_widget_title {
    margin-bottom: 24px;
  }
}

.cs_menu_widget {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.625em;
}
.cs_menu_widget li:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .cs_menu_widget li:not(:last-child) {
    margin-bottom: 8px;
  }
}

.cs_text_widget p {
  margin: 0;
}
.cs_text_widget img + p {
  margin-top: 30px;
}
.cs_text_widget + .cs_menu_widget {
  margin-top: 32px;
}

.cs_social_btns.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  gap: 10px;
}
.cs_social_btns.cs_style_1 a {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 1px solid #ffffff;
}
.cs_social_btns.cs_style_1 a:hover {
  border-color: #00834A
;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.cs_social_btns.cs_style_1 a:hover svg {
  fill: #00834A
;
}

.cs_phone.cs_style_1 .cs_phone_form {
  position: relative;
}
.cs_phone.cs_style_1 .cs_phone_input {
  height: 60px;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  border: none;
  padding: 5px 125px 5px 15px;
  outline: none;
  color: #121212;
}
.cs_phone.cs_style_1 .cs_btn.cs_style_1 {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 1;
  padding: 10px 15px;
  background-color: #fff;
}
.cs_phone.cs_style_1 .cs_btn.cs_style_1:hover {
  background-color: #00834A
;
}
.cs_phone.cs_style_1 .cs_phone_text {
  margin-bottom: 20px;
}

.cs_footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cs_footer_links li:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
  position: relative;
  top: -1px;
}

.cs_bottom_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          /* justify-content: space-between; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0;
  border-top: 1px solid #2f2c2c;
  color: #fff;
  gap: 15px;
}
@media (max-width: 767px) {
  .cs_bottom_footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cs_footer_2 .cs_bottom_footer {
  border: none;
}

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

.cs-sidebar_widget_title {
  font-size: 29px;
  margin-bottom: 35px;
  font-weight: 600;
}

.tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
}

.tag-cloud-link {
  font-size: 14px;
  line-height: 1.6em;
  border: 1px solid #4f4747;
  padding: 3px 15px;
  display: inline-block;
  margin: 5px;
  border-radius: 3px;
}
.tag-cloud-link:hover {
  color: #ffffff;
  background-color: #00834A
;
  border-color: #00834A
;
}

.widget_archive ul,
.widget_categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget_archive ul li,
.widget_categories ul li {
  padding-left: 20px;
  position: relative;
}
.widget_archive ul li::before,
.widget_categories ul li::before {
  content: "\f101";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  background-position: center;
  position: absolute;
  left: 0;
  top: 0px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
}
.widget_archive ul li:not(:last-child),
.widget_categories ul li:not(:last-child) {
  margin-bottom: 20px;
}

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

.cs-recent_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.cs-recent_post_thumb_in {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background-position: center center;
  background-size: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs-recent_post_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cs-sidebar_search {
  position: relative;
}

.cs-sidebar_search input {
  display: block;
  width: 100%;
  background-color: transparent;
  outline: none;
  border: 1px solid rgba(163, 163, 163, 0.5);
  padding: 6px 40px 6px 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.cs-sidebar_search input:focus {
  border-color: rgb(163, 163, 163);
}

.cs-sidebar_search_btn {
  position: absolute;
  background-color: transparent;
  border: none;
  outline: none;
  bottom: 1px;
  right: 0;
  padding: 6px 12px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.cs-sidebar_search_btn:hover {
  color: #121212;
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .cs-sidebar_widget_title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .widget_archive ul li:not(:last-child),
  .widget_categories ul li:not(:last-child) {
    margin-bottom: 12px;
  }
  .cs-sidebar_item:not(:last-child) {
    margin-bottom: 40px;
  }
}
/*--------------------------------------------------------------
10. Isotope
----------------------------------------------------------------*/
.cs_isotop {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_isotop.cs_has_gutter_24 {
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -24px;
}
.cs_isotop.cs_has_gutter_24 .cs_isotop_item {
  padding: 0 12px;
  margin-bottom: 24px;
}

.cs_isotop.cs_has_gutter_24_67 {
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -67px;
}
@media (max-width: 991px) {
  .cs_isotop.cs_has_gutter_24_67 {
    margin-bottom: -30px;
  }
}
.cs_isotop.cs_has_gutter_24_67 .cs_isotop_item {
  padding: 0 12px;
  margin-bottom: 67px;
}
@media (max-width: 991px) {
  .cs_isotop.cs_has_gutter_24_67 .cs_isotop_item {
    margin-bottom: 30px;
  }
}

.cs_isotop.cs_has_gutter_80 {
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: -80px;
}
.cs_isotop.cs_has_gutter_80 .cs_isotop_item {
  padding: 0 40px;
  margin-bottom: 80px;
}

.cs_isotop.cs_has_gutter_40 {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -30px;
}
.cs_isotop.cs_has_gutter_40 .cs_isotop_item {
  padding: 0 20px;
  margin-bottom: 30px;
}

.cs_isotop.cs_has_gutter_100 {
  margin-left: -50px;
  margin-right: -50px;
  margin-bottom: -40px;
}
.cs_isotop.cs_has_gutter_100 .cs_isotop_item {
  padding: 0 50px;
  margin-bottom: 40px;
}

.cs_isotop_col_6 .cs_grid_sizer,
.cs_isotop_col_6 .cs_isotop_item {
  width: 16.666667%;
}

.cs_isotop_col_5 .cs_grid_sizer,
.cs_isotop_col_5 .cs_isotop_item {
  width: 20%;
}

.cs_isotop_col_4 .cs_grid_sizer,
.cs_isotop_col_4 .cs_isotop_item {
  width: 25%;
}

.cs_isotop_col_3 .cs_grid_sizer,
.cs_isotop_col_3 .cs_isotop_item {
  width: 33.333333%;
}

.cs_isotop_col_2 .cs_grid_sizer,
.cs_isotop_col_2 .cs_isotop_item {
  width: 50%;
}

.cs_isotop_col_1 .cs_grid_sizer,
.cs_isotop_col_1 .cs_isotop_item {
  width: 100%;
}

.cs_grid_sizer {
  width: 33.333333%;
}

.cs_isotop_col_5 .cs_w20,
.cs_isotop_col_4 .cs_w20,
.cs_isotop_col_3 .cs_w20,
.cs_isotop_col_2 .cs_w20,
.cs_isotop_col_1 .cs_w20 {
  width: 20%;
}

.cs_isotop_col_5 .cs_w25,
.cs_isotop_col_4 .cs_w25,
.cs_isotop_col_3 .cs_w25,
.cs_isotop_col_2 .cs_w25,
.cs_isotop_col_1 .cs_w25 {
  width: 25%;
}

.cs_isotop_col_5 .cs_w33,
.cs_isotop_col_4 .cs_w33,
.cs_isotop_col_3 .cs_w33,
.cs_isotop_col_2 .cs_w33,
.cs_isotop_col_1 .cs_w33 {
  width: 33.333333%;
}

.cs_isotop_col_5 .cs_w50,
.cs_isotop_col_4 .cs_w50,
.cs_isotop_col_3 .cs_w50,
.cs_isotop_col_2 .cs_w50,
.cs_isotop_col_1 .cs_w50 {
  width: 50%;
}

.cs_isotop_col_5 .cs_w66,
.cs_isotop_col_4 .cs_w66,
.cs_isotop_col_3 .cs_w66,
.cs_isotop_col_2 .cs_w66,
.cs_isotop_col_1 .cs_w66 {
  width: 66.666666%;
}

.cs_isotop_col_5 .cs_w100,
.cs_isotop_col_4 .cs_w100,
.cs_isotop_col_3 .cs_w100,
.cs_isotop_col_2 .cs_w100,
.cs_isotop_col_1 .cs_w100 {
  width: 100%;
}

.cs_isotop_filter.cs_style_1 li {
  margin-top: 10px;
}
.cs_isotop_filter.cs_style_1 li:not(:last-child) {
  margin-right: 28px;
}
.cs_isotop_filter.cs_style_1 a {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.cs_isotop_filter.cs_style_1 a::before {
  content: "";
  height: 9px;
  width: 9px;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  border-radius: 50%;
  background-color: #00834A
;
  bottom: -5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.cs_isotop_filter.cs_style_1 ul {
  border-bottom: 1px solid #b7b7b7;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.cs_isotop_filter.cs_style_1 .active a {
  color: #00834A
;
}
.cs_isotop_filter.cs_style_1 .active a::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 1199px) {
  .cs_isotop.cs_has_gutter_100 .cs_isotop_item {
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .cs_isotop.cs_has_gutter_100 {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px;
  }
  .cs_isotop.cs_has_gutter_80 {
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -25px;
  }
  .cs_isotop.cs_has_gutter_80 .cs_isotop_item {
    padding: 0 12px;
    margin-bottom: 25px;
  }
  .cs_isotop_col_4 .cs_grid_sizer,
  .cs_isotop_col_4 .cs_isotop_item {
    width: 33.333333%;
  }
}
@media screen and (max-width: 991px) {
  .cs_isotop_col_4 .cs_grid_sizer,
  .cs_isotop_col_4 .cs_isotop_item {
    width: 50%;
  }
  .cs_isotop_col_4 .cs_w50 {
    width: 100%;
  }
  .cs_isotop_col_3 .cs_grid_sizer,
  .cs_isotop_col_3 .cs_isotop_item {
    width: 50%;
  }
  .cs_isotop_col_2 .cs_grid_sizer,
  .cs_isotop_col_2 .cs_isotop_item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .cs_isotop_col_5 .cs_w50,
  .cs_isotop_col_4 .cs_w50,
  .cs_isotop_col_3 .cs_w50,
  .cs_isotop_col_2 .cs_w50,
  .cs_isotop_col_1 .cs_w50,
  .cs_isotop_col_5 .cs_w66,
  .cs_isotop_col_4 .cs_w66,
  .cs_isotop_col_3 .cs_w66,
  .cs_isotop_col_2 .cs_w66,
  .cs_isotop_col_1 .cs_w66 {
    width: 100%;
  }
  .cs_isotop_col_5 .cs_grid_sizer,
  .cs_isotop_col_5 .cs_isotop_item {
    width: 100%;
  }
  .cs_isotop_col_4 .cs_grid_sizer,
  .cs_isotop_col_4 .cs_isotop_item {
    width: 100%;
  }
  .cs_isotop_col_3 .cs_grid_sizer,
  .cs_isotop_col_3 .cs_isotop_item {
    width: 100%;
  }
  .cs_isotop_col_2 .cs_grid_sizer,
  .cs_isotop_col_2 .cs_isotop_item {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .cs_isotop_filter.cs_style_1 ul {
    border: none;
  }
  .cs_isotop_filter.cs_style_1 li {
    margin-bottom: 8px;
  }
  .cs_isotop_filter.cs_style_1 li:not(:last-child) {
    margin-right: 20px;
  }
  .cs_isotop_filter.cs_style_1 a {
    padding-bottom: 3px;
  }
}
/*--------------------------------------------------------------
  11. Hero
----------------------------------------------------------------*/
.cs_hero_video_icon svg {
  -webkit-animation: heroVideoIconAnimo 3s linear infinite;
          animation: heroVideoIconAnimo 3s linear infinite;
}
.cs_hero_video_icon:hover {
  -webkit-transform: scale(1.7);
          transform: scale(1.7);
}
.cs_hero_video_icon:hover svg {
  -webkit-animation: initial;
          animation: initial;
}

.cs_down_btn {
  height: 70px;
  width: 40px;
  border: 1px solid currentColor;
  border-radius: 20px;
  margin-top: 44px;
}

.cs_hero.cs_style_1 {
  padding-top: 241px;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 {
    padding-top: 170px;
  }
}
.cs_hero.cs_style_1 .cs_hero_subtitle {
  margin-bottom: 24px;
}
.cs_hero.cs_style_1 .cs_hero_title {
  margin-bottom: 82px;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_title {
    margin-bottom: 50px;
  }
}
.cs_hero.cs_style_1 .cs_video_block_wrap::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #fff;
}
.cs_hero.cs_style_1 .container {
  position: relative;
}
.cs_hero.cs_style_1 .cs_hero_shape {
  left: -100px;
  top: -9px;
  -webkit-animation: heroShapeAnim 20s linear infinite alternate;
          animation: heroShapeAnim 20s linear infinite alternate;
}
.cs_hero.cs_style_1 .cs_hero_text {
  z-index: 2;
}

@-webkit-keyframes heroShapeAnim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes heroShapeAnim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes heroVideoIconAnimo {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes heroVideoIconAnimo {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.cs_hero.cs_style_2 {
  padding: 186px 0 100px;
  position: relative;
}
/* .cs_hero.cs_style_2::before {
  content: "";
  position: absolute;
  height: 440px;
  width: 440px;
  border-radius: 50%;
  border: 1px solid rgba(163, 163, 163, 0.18);
  top: 36%;
  right: -200px;
} */
.cs_hero.cs_style_2 > .container {
  position: relative;
  z-index: 2;
}
.cs_hero.cs_style_2 .cs_hero_img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 410px;
  max-width: 740px;
  overflow: hidden;
  border-radius: 500px;
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_2 .cs_hero_img {
    height: 300px;
  }
}
@media (max-width: 575px) {
  .cs_hero.cs_style_2 .cs_hero_img {
    height: 300px;
  }
}
.cs_hero.cs_style_2 .cs_hero_text {
  margin-bottom: 66px;
}
.cs_hero.cs_style_2 .cs_hero_top_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
.cs_hero.cs_style_2 .cs_hero_img_in {
  margin-top: 60px;
}
@media (max-width: 575px) {
  .cs_hero.cs_style_2 .cs_hero_img_in {
    height: 100%;
    -webkit-transform: initial !important;
            transform: initial !important;
    margin-top: 0;
  }
  .cs_hero.cs_style_2 .cs_hero_img_in img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.cs_hero.cs_style_2 .cs_hero_subtitle {
  padding-left: 90px;
}
@media (max-width: 1400px) {
  .cs_hero.cs_style_2 .cs_hero_subtitle {
    padding-left: 60px;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_2 .cs_hero_subtitle {
    padding-left: 0px;
  }
}
.cs_hero.cs_style_2 .cs_hero_arrow {
  position: relative;
  height: 10px;
  width: 148px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.cs_hero.cs_style_2 .cs_hero_arrow::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: currentColor;
  width: 100%;
  top: 46%;
  left: 0;
}
.cs_hero.cs_style_2 .cs_hero_arrow i {
  margin-right: -2px;
  font-size: 10px;
}
.cs_hero.cs_style_2 .cs_hero_mike {
  -webkit-animation: wave-animation 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: wave-animation 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs_hero.cs_style_2 .cs_down_btn {
  -webkit-animation: jumping 2s linear infinite;
          animation: jumping 2s linear infinite;
}
.cs_hero.cs_style_2 .cs_down_btn:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes wave-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  20% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  30% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  40% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes wave-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  20% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  30% {
    -webkit-transform: rotate(14deg);
            transform: rotate(14deg);
  }
  40% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes jumping {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  90% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes jumping {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  90% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.cs_hero.cs_style_3 {
  padding: 160px 0 100px;
  height: 100vh;
  max-height: 1200px;
  min-height: 650px;
  background-attachment: fixed;
}
.cs_hero.cs_style_3 .cs_hero_title {
  margin-bottom: 70px;
}
.cs_hero.cs_style_3 .cs_moving_text_wrap {
  padding: 31px 0;
  width: 425px;
  border: 1px solid #a3a3a3;
  border-left: 0;
  border-right: 0;
}
@media (max-width: 500px) {
  .cs_hero.cs_style_3 .cs_moving_text_wrap {
    width: 100%;
  }
}

.cs_hero.cs_style_33 {
  padding: 160px 0 100px;
  /* height: 100vh; */
  max-height: 1200px;
  min-height: 650px;
  background-attachment: fixed;
}
.cs_hero.cs_style_33 .cs_hero_title {
  margin-bottom: 70px;
}
.cs_hero.cs_style_33 .cs_moving_text_wrap {
  padding: 31px 0;
  width: 425px;
  border: 1px solid #a3a3a3;
  border-left: 0;
  border-right: 0;
}
@media (max-width: 500px) {
  .cs_hero.cs_style_33 .cs_moving_text_wrap {
    width: 100%;
  }
}

.cs_hero.cs_style_4 {
  padding: 240px 0 160px;
  background-attachment: fixed;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_4 {
    padding: 170px 0 100px;
  }
}
.cs_hero.cs_style_4 .cs_video_block.cs_style_1 {
  height: 376px;
}
.cs_hero.cs_style_4 .cs_hero_title {
  margin-bottom: 67px;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_4 .cs_hero_title {
    margin-bottom: 35px;
  }
}
@media (min-width: 1400px) {
  .cs_hero.cs_style_4 .cs_hero_subtitle {
    padding-right: 90px;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_4 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .cs_hero.cs_style_4 .cs_video_block.cs_style_1 {
    margin-bottom: 25px;
  }
}
.cs_hero.cs_style_4 .container {
  position: relative;
  z-index: 2;
}
.cs_hero.cs_style_4 .cs_hero_shape {
  position: absolute;
  left: 4%;
  top: 13%;
  rotate: -9deg;
}
.cs_hero.cs_style_4 .cs_hero_shape svg {
  -webkit-animation: semiRotate 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: semiRotate 9.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs_hero.cs_style_4 .cs_down_btn {
  -webkit-animation: jumping 2s linear infinite;
          animation: jumping 2s linear infinite;
}

@-webkit-keyframes semiRotate {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(15px) rotate(-20deg);
            transform: translateY(15px) rotate(-20deg);
  }
}

@keyframes semiRotate {
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(15px) rotate(-20deg);
            transform: translateY(15px) rotate(-20deg);
  }
}
.cs_hero.cs_style_5 {
  height: 100vh;
  max-height: 1000px;
  padding: 170px 0 100px;
  overflow: hidden;
  background-color: #121212;
}
.cs_hero.cs_style_5 .cs_hero_subtitle {
  color: #a3a3a3;
  margin-bottom: 40px;
}
.cs_hero.cs_style_5 .cs_hero_title {
  margin-bottom: 25px;
}
.cs_hero.cs_style_5 .cs_hero_top_title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #a5d190;
  font-weight: 500;
  gap: 5px;
  border: 1px solid #fff;
  padding: 5px 18px;
  border-radius: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 330px) {
  .cs_hero.cs_style_5 .cs_hero_top_title {
    padding: 5px 12px;
  }
}
.cs_hero.cs_style_5 .cs_hero_top_title img {
  -webkit-animation: spinAnimaiton 6s linear infinite;
          animation: spinAnimaiton 6s linear infinite;
}
.cs_hero.cs_style_5 .cs_hero_btns {
  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;
  gap: 15px 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cs_hero.cs_style_5 .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_5 br {
    display: none;
  }
}

@-webkit-keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  75% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  75% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
#background-wrap {
  bottom: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
}

.bubble {
  border-radius: 50%;
  height: 200px;
  position: absolute;
  width: 200px;
}

/* ANIMATIONS */
.cs_hero_shape_1 {
  -webkit-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
          animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: -5%;
  top: 5%;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

.cs_hero_shape_2 {
  -webkit-animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
          animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 5%;
  top: 80%;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}

.cs_hero_shape_3 {
  -webkit-animation: animateBubble 28s linear infinite, sideWays 2s ease-in-out infinite alternate;
          animation: animateBubble 28s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 10%;
  top: 40%;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.cs_hero_shape_4 {
  -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
          animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  left: 20%;
  top: 0;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
}

.cs_hero_shape_5 {
  -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
          animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 30%;
  top: 50%;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.cs_hero_shape_6 {
  -webkit-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
          animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 50%;
  top: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.cs_hero_shape_7 {
  -webkit-animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
          animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 65%;
  top: 70%;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}

.cs_hero_shape_8 {
  -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
          animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  left: 80%;
  top: 10%;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
}

.cs_hero_shape_9 {
  -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
          animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 90%;
  top: 50%;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

.cs_hero_shape_10 {
  -webkit-animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
          animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 80%;
  top: 80%;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
}

/* OBJECTS */
@-webkit-keyframes animateBubble {
  0% {
    margin-top: 1000px;
  }
  100% {
    margin-top: -100%;
  }
}
@keyframes animateBubble {
  0% {
    margin-top: 1000px;
  }
  100% {
    margin-top: -100%;
  }
}
@-webkit-keyframes sideWays {
  0% {
    margin-left: 0px;
  }
  100% {
    margin-left: 50px;
  }
}
@keyframes sideWays {
  0% {
    margin-left: 0px;
  }
  100% {
    margin-left: 50px;
  }
}
.cs_hero.cs_style_6 {
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  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;
  padding: 180px 0 100px;
}
.cs_hero.cs_style_6 .cs_hero_title {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.cs_hero.cs_style_6 .cs_hero_title span {
  color: transparent;
  display: inline-block;
  -webkit-text-stroke: 2px #fff;
}
.cs_hero.cs_style_6 .cs_hero_title svg {
  position: absolute;
  top: -60px;
  right: 10px;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_6 .cs_hero_title svg {
    display: none;
  }
}
.cs_hero.cs_style_6 .cs_down_btn {
  position: relative;
  height: 35px;
  width: 20px;
  border-radius: 10px;
  border: 2px solid #fff;
  margin-left: -10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
}
.cs_hero.cs_style_6 .cs_down_btn:before {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-animation: UpAndDown 3s infinite;
          animation: UpAndDown 3s infinite;
}
.cs_hero.cs_style_6 .cd-headline.slide b {
  padding-left: 22px;
  padding-right: 22px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cs_hero.cs_style_6 .cd-headline.slide b::before, .cs_hero.cs_style_6 .cd-headline.slide b::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: currentColor;
  top: 50%;
  margin-top: -4px;
}
.cs_hero.cs_style_6 .cd-headline.slide b::before {
  left: 0;
}
.cs_hero.cs_style_6 .cd-headline.slide b::after {
  right: 0;
}
.cs_hero.cs_style_6 .cd-headline.slide .cd-words-wrapper {
  width: initial !important;
}

@-webkit-keyframes UpAndDown {
  0%, 100% {
    top: 30%;
  }
  50% {
    top: 70%;
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
}

@keyframes UpAndDown {
  0%, 100% {
    top: 30%;
  }
  50% {
    top: 70%;
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
}

/*--------------------------------------------------------------
  13. Posts
----------------------------------------------------------------*/
.cs_p76_full_width {
  /* max-width: 1920px; */
  /* padding-left: 76px;
  padding-right: 76px; */
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1400px) {
  .cs_p76_full_width {
    /* padding-left: 30px;
    padding-right: 30px; */
  }
}
@media (max-width: 991px) {
  .cs_p76_full_width {
    /* padding-left: 15px;
    padding-right: 15px; */
  }
}



/*--------------------------------------------------------------
  14. CTA
----------------------------------------------------------------*/
.cs_cta.cs_style_1 {
  padding: 86px 180px 100px;
}
.cs_cta.cs_style_1 .cs_cta_shape_1 {
  position: absolute;
  left: 3%;
  bottom: 12%;
  -webkit-animation: animo-x 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: animo-x 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs_cta.cs_style_1 .cs_cta_shape_2 {
  position: absolute;
  right: 4%;
  top: 8%;
  -webkit-animation: animo-y 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: animo-y 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs_cta.cs_style_1 .cs_cta_shape_3 {
  position: absolute;
  right: 20%;
  bottom: -180%;
}
.cs_cta.cs_style_1 .cs_cta_shape_4 {
  position: absolute;
  left: 20%;
  top: 55%;
}
.cs_cta.cs_style_1 .cs_cta_in {
  z-index: 1;
}
@media (max-width: 1400px) {
  .cs_cta.cs_style_1 {
    padding: 86px 100px 100px;
  }
}
@media (max-width: 991px) {
  .cs_cta.cs_style_1 {
    padding: 70px 30px 80px;
  }
  
}
@media (max-width: 991px) {
  .cs_cta.cs_style_1 .cs_cta_shape_3 {
    right: 0%;
  }
  
}
@media (max-width: 991px) {
  .cs_cta.cs_style_1 .cs_cta_shape_4 {
    left: 0%;
  }
  
}


.cs_cta.cs_style_2 .cs_cta_title {
  color: transparent;
  -webkit-text-stroke: 2px #121212;
  max-width: 1050px;
  margin-bottom: 78px;
}
.cs_cta.cs_style_2 .cs_cta_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cs_cta.cs_style_2 .cs_cta_left {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 35%;
  text-align: center;
  padding-top: 15px;
}
@media (max-width: 575px) {
  .cs_cta.cs_style_2 .cs_cta_left {
    width: 30%;
  }
  .cs_cta.cs_style_2 .cs_cta_left svg {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 340px) {
  .cs_cta.cs_style_2 .cs_cta_left {
    display: none;
  }
}
.cs_cta.cs_style_2 .cs_cta_right {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  max-width: 650px;
  width: 65%;
}
@media (max-width: 575px) {
  .cs_cta.cs_style_2 .cs_cta_right {
    width: 70%;
  }
}
@media (max-width: 340px) {
  .cs_cta.cs_style_2 .cs_cta_right {
    width: 100%;
  }
}
.cs_cta.cs_style_2 .cs_cta_subtitle {
  margin-bottom: 42px;
}
.cs_cta.cs_style_2 .cs_cta_icon svg {
  -webkit-animation: heroShapeAnim 20s linear infinite alternate;
          animation: heroShapeAnim 20s linear infinite alternate;
}

.cs_cta.cs_style_3 .cs_cta_title span {
  display: inline-block;
  position: relative;
}
.cs_cta.cs_style_3 .cs_cta_title svg {
  position: absolute;
  right: -95px;
  top: -55px;
}
@media (max-width: 767px) {
  .cs_cta.cs_style_3 .cs_cta_title br {
    display: none;
  }
}

.cs_cta.cs_style_4 {
  background-color: #0c0c0c;
  padding: 127px 0 130px;
}
@media (max-width: 991px) {
  .cs_cta.cs_style_4 {
    padding: 80px 0 80px;
  }
}
.cs_cta.cs_style_4 .container {
  position: relative;
  z-index: 2;
}
.cs_cta.cs_style_4 .cs_btn.cs_style_1 {
  background-color: #00834A
;
}
.cs_cta.cs_style_4 .cs_cta_shape_1 {
  top: 21%;
  left: 14%;
  -webkit-animation: semi-rotate-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: semi-rotate-anim 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .cs_cta.cs_style_4 .cs_cta_shape_1 {
    display: none;
  }
}
.cs_cta.cs_style_4 .cs_cta_shape_2 {
  top: 66%;
  right: 14%;
  -webkit-animation: semi-rotate-anim 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: semi-rotate-anim 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@media (max-width: 991px) {
  .cs_cta.cs_style_4 .cs_cta_shape_2 {
    display: none;
  }
}
.cs_cta.cs_style_4 .cs_cta_title {
  color: #fff;
  margin-bottom: 22px;
}
.cs_cta.cs_style_4 .cs_cta_title span {
  color: transparent;
  display: inline-block;
  -webkit-text-stroke: 2px #fff;
}
.cs_cta.cs_style_4 .cs_cta_subtitle {
  margin-bottom: 36px;
  color: #a3a3a3;
}



/*--------------------------------------------------------------
  16. Portfolio
----------------------------------------------------------------*/
.cursor {
  position: fixed;
  left: 0;
  pointer-events: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #4f4747;
  background-color: #fff;
  text-transform: capitalize;
  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;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 999;
  opacity: 0;
  mix-blend-mode: hard-light;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.cs_portfolio.cs_style_1 .cs_portfolio_thumb {
  display: block;
  margin-bottom: 27px;
}
@media (max-width: 991px) {
  .cs_portfolio.cs_style_1 .cs_portfolio_thumb {
    margin-bottom: 10px;
  }
}
.cs_portfolio.cs_style_1 .cs_portfolio_thumb img {
  width: 100%;
  border-radius: inherit;
}
.cs_portfolio.cs_style_1 .cs_portfolio_title {
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .cs_portfolio.cs_style_1 .cs_portfolio_title {
    margin-bottom: 5px;
  }
}
.cs_portfolio.cs_style_1 .cs_portfolio_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 25px;
  position: relative;
}
.cs_portfolio.cs_style_1 .cs_portfolio_btn::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 15px;
  background-color: currentColor;
  left: 0;
  top: 50%;
  margin-top: 0px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cs_portfolio.cs_style_1 .cs_portfolio_btn:hover::before {
  width: 4px;
  height: 4px;
  left: 12px;
  margin-top: -2px;
  border-radius: 50%;
}

.cs_portfolio.cs_style_2 {
  min-height: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  .cs_portfolio.cs_style_2 {
    min-height: 500px;
    padding: 80px 0;
  }
}
.cs_portfolio.cs_style_2 .cs_portfolio_thumb {
  position: absolute;
  height: 100%;
  width: 80%;
  right: 0;
  top: 0;
}
.cs_portfolio.cs_style_2 .cs_portfolio_thumb::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.9)), color-stop(49.95%, rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 49.95%);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cs_portfolio.cs_style_2 .cs_portfolio_minititle {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .cs_portfolio.cs_style_2 .cs_portfolio_minititle {
    margin-bottom: 10px;
  }
}
.cs_portfolio.cs_style_2 .cs_portfolio_title {
  margin-bottom: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cs_portfolio.cs_style_2 .cs_portfolio_title:hover {
  color: #00834A
;
}
.cs_portfolio.cs_style_2 .cs_portfolio_title a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 3px;
  -webkit-transition: background-size 1200ms ease;
  transition: background-size 1200ms ease;
  color: inherit;
}
.cs_portfolio.cs_style_2 .cs_portfolio_title a:hover {
  background-size: 100% 3px;
}
.cs_portfolio.cs_style_2 .cs_portfolio_subtitle {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .cs_portfolio.cs_style_2 .cs_portfolio_subtitle {
    margin-bottom: 20px;
  }
}
.cs_portfolio.cs_style_2 .cs_portfolio_text {
  position: relative;
  z-index: 2;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .cs_portfolio.cs_style_2 .cs_portfolio_text br {
    display: none;
  }
}




	.sec-col {
	  display: flex;
	  justify-content: center;
	  margin: 15px auto 15px;
	}
  	.sec-col {
	  opacity: 1;
	  transform: translateY(0);
	}
  	.sec-col figure:hover {
	  transform:translateY(-10px);
	  border-radius:15%;
	}
  	.sec-col figure {
	  display:inline-block;
	  width: 180px;
	  height: 180px;
	  margin: 5px 10px;
	  text-align: center;
	  border-radius: 10%;
	  background-color: #fff;
	  padding: 20px;
	  box-shadow: 0px 10px 25px rgb(0 0 0 / 10%);
	  transition: 0.35s;
	  position: relative;
    
	} 
  	.sec-col figure img {
	  position: absolute;
	  top: 35%;
	  left: 50%;
	  transform: translate(-50%,-50%);
	  width: 50px;
	  height: 50px;
	  object-fit: contain;
	}
  	.sec-col figure figcaption {
	  position: absolute;
	  bottom: 12%;
	  left: 50%;
	  transform: translateX(-50%);
	  color: #333;
	  font-weight: 500;
	  font-size:16px;
	  margin-top: 10px;
    width:95%;
    /* width:115px; */
	  transition: 0.35s;
	}

  .sec-col-2{
    display: flex;
    flex-direction: column;
	  justify-content: center;
	  margin: auto;
  }
  	.sec-col-2 figure {
	  display:flex;
    justify-content: start;
	  width: 100%;
	  height: 80px;
	  margin: 8px 0px;
	  border-radius: 10px;
	  background-color: #fff;
	  padding: 20px 0px 0px 15px;
	  box-shadow: 0px 10px 25px rgb(0 0 0 / 10%);
	  transition: 0.35s;
	  position: relative;
    
	} 
  	.sec-col-2 figure img {
	  width: 45px;
	  height: 45px;
    margin-right:10px;
    padding-bottom:3px;
	  object-fit: contain;
	}
  	.sec-col-2 figure figcaption {
	  color: #333;
	  font-weight: 500;
	  font-size:16px;
	  margin-top: 10px;
    width:95%;
	  transition: 0.35s;
	}

  	.sec-col-3 figure {
    display:inline-block;
	  width: 43%;
	  height: 180px;
	  margin: 5px 10px;
	  text-align: center;
	  border-radius: 10%;
	  background-color: #fff;
	  padding: 10px;
	  box-shadow: 0px 10px 25px rgb(0 0 0 / 10%);
	  transition: 0.35s;
	  position: relative;
    
	} 
  	.sec-col-3 figure img {
	  position: absolute;
	  top: 35%;
	  left: 50%;
	  transform: translate(-50%,-50%);
	  width: 50px;
	  height: 50px;
	  object-fit: contain;
	}
  	.sec-col-3 figure figcaption {
	  position: absolute;
	  bottom: 12%;
	  left: 50%;
	  transform: translateX(-50%);
	  color: #333;
	  font-weight: 500;
	  font-size:16px;
	  margin-top: 10px;
    width:95%;
	}

  .word_break{
    word-break: break-word;
  }
  ul li{
    list-style: none;
  }

/*# sourceMappingURL=style.css.map */