/* --------------------------------------------------------------
## 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");

body,
html {
    color: #4f4747;
    font-family: "Inter", 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: 700;
    line-height: 1.2em;
    font-family: "Prompt", sans-serif;
}

.cs_primary_font,
.cs_btn {
    font-family: "Prompt", sans-serif;
}

.cs_secondary_font {
    font-family: "Inter", 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: #19e4fd;
}

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: #19e4fd;
}

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

.cs_gray_color {
    color: #f8f8f8;
}

.cs_gray_color_2 {
    color: #a3a3a3;
}

.cs_white_bg {
    background-color: #fff;
}

.cs_accent_bg {
    background-color: #19e4fd;
}

.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: #19e4fd;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    opacity: 0;
}

.cs_btn.cs_style_1 {
    color: #121212;
    border: 2px solid #19e4fd;
    border-radius: 15px;
    font-weight: 500;
    padding: 10px 20px;
    line-height: 1.625em;
    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: #121212;
}

.cs_btn.cs_style_1:hover {
    background-color: #19e4fd;
    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: #19e4fd;
}

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

.cs_plr_130 {
    padding-left: 130px;
    padding-right: 130px;
}

@media (max-width: 1400px) {
    .cs_plr_130 {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .cs_plr_130 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.cs_page_navigation > div {
    position: relative;
}

.cs_page_navigation > div:not(:last-child) {
    margin-right: 21px;
    padding-right: 21px;
}

.cs_page_navigation > div:not(:last-child)::after {
    content: "";
    height: 22px;
    width: 2px;
    background-color: #a3a3a3;
    display: inline-block;
    position: absolute;
    right: -1px;
    top: 3px;
}

@media (max-width: 340px) {
    .cs_page_navigation span {
        display: none;
    }
}

.cs_list.cs_style_1 li {
    position: relative;
    padding-left: 45px;
}

@media (max-width: 991px) {
    .cs_list.cs_style_1 li {
        padding-left: 30px;
    }
}

.cs_list.cs_style_1 li:not(:last-child) {
    margin-bottom: 20px;
}

.cs_list.cs_style_1 li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 30px;
}

@media (max-width: 991px) {
    .cs_list.cs_style_1 li i {
        font-size: 22px;
    }
}

.cs_list.cs_style_2 li {
    position: relative;
    padding: 4px 0 4px 54px;
}

.cs_list.cs_style_2 li:not(:last-child) {
    margin-bottom: 15px;
}

.cs_list.cs_style_2 .cs_list_number {
    position: absolute;
    border-radius: 50%;
    color: #fff;
    height: 40px;
    min-width: 40px;
    left: 0;
    top: 0;
    padding: 5px;
}

.cs_img_card.cs_style_1:after {
    content: "";
    width: calc(100% - 15px);
    height: calc(100% - 20px);
    background-color: #19e4fd;
    border-radius: 5px;
    position: absolute;
    left: -32px;
    bottom: -15px;
    -webkit-transform: rotate(-4.6deg);
    transform: rotate(-4.6deg);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

@media (max-width: 1060px) {
    .cs_img_card.cs_style_1:after {
        left: -7px;
        bottom: 10px;
        -webkit-transform: rotate(-1.5deg);
        transform: rotate(-1.5deg);
    }
}

.cs_img_card.cs_style_1 img {
    width: 100%;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.cs_img_card.cs_style_1:hover::after {
    left: 16px;
    bottom: 9px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.cs_img_card.cs_style_1:hover img {
    -webkit-transform: rotate(-4.6deg);
    transform: rotate(-4.6deg);
}

@media (max-width: 1060px) {
    .cs_img_card.cs_style_1:hover img {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }
}

.cs_img_card.cs_style_2 {
    height: 650px;
    width: 50vw;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .cs_img_card.cs_style_2 .cs_to_up_4 {
        -webkit-transform: initial !important;
        transform: initial !important;
        height: 100%;
    }

    .cs_img_card.cs_style_2 .cs_to_up_4 > img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .cs_img_card.cs_style_2 {
        width: 100%;
        height: 500px;
    }
}

@media (max-width: 575px) {
    .cs_img_card.cs_style_2 {
        height: 300px;
    }
}

@media (max-width: 400px) {
    .cs_img_card.cs_style_2 .cs_to_up_4 {
        -webkit-transform: initial !important;
        transform: initial !important;
        height: 100%;
    }

    .cs_img_card.cs_style_2 .cs_to_up_4 > img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.cs_img_card_3_wrap {
    height: 700px;
}

@media (max-width: 575px) {
    .cs_img_card_3_wrap {
        height: 500px;
    }
}

.cs_img_card_3_wrap .cs_img_card.cs_style_3 {
    height: 100%;
}

.cs_img_card_3_wrap img {
    width: 100%;
}

.cs_img_card_3_wrap img:not(:last-child) {
    margin-bottom: 10px;
}

.cs_img_card_3_wrap .row {
    margin-right: -5px;
    margin-left: -5px;
    height: 100%;
}

.cs_img_card_3_wrap .row > * {
    padding-right: 5px;
    padding-left: 5px;
    height: 100%;
}

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

.cs_accordian_body {
    padding: 0 20px 20px 63px;
    margin-top: -10px;
}

.cs_accordian_body p {
    margin: 0;
}

.cs_accordian_head {
    padding: 23px 20px 23px 64px;
    position: relative;
    cursor: pointer;
}

.cs_accordian_head:hover .cs_accordian_title {
    color: #19e4fd;
}

.cs_accordian {
    border: 1px solid #dddddd;
    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: -30%;
    margin-top: -1px;
    background-color: #121212;
    -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;
}

.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 {
    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 10s linear infinite;
    animation: slide-left 10s linear infinite;
}

.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_brands.cs_style_1 {
    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;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 30px 80px;
}

@media (max-width: 1199px) {
    .cs_brands.cs_style_1 {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .cs_brands.cs_style_1 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.cs_brands_2_wrap {
    overflow: hidden;
}

.cs_brands.cs_style_2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: calc(100% + 2px);
    margin-bottom: -1px;
}

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

.cs_brands.cs_style_2 .cs_brand {
    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;
    height: 300px;
    border-bottom: 1px solid #b7b7b7;
    border-right: 1px solid #b7b7b7;
    padding: 15px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .cs_brands.cs_style_2 .cs_brand {
        height: 250px;
    }
}

.cs_brands.cs_style_2 .cs_brand img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_brands.cs_style_2 .cs_brand:hover img {
    opacity: 0.6;
}

.cs_about.cs_style_1 .cs_about_thumb {
    overflow: hidden;
    position: relative;
    height: 600px;
    width: 50vw;
    margin-left: calc(-50vw + 100%);
    border-radius: 0 5px 5px 0;
}

@media (max-width: 991px) {
    .cs_about.cs_style_1 .cs_about_thumb {
        width: 100%;
        margin-left: 0;
        border-radius: 5px;
        height: 400px;
    }
}

.cs_about.cs_style_1 .cs_about_thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    z-index: 2;
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(rgba(255, 255, 255, 0.15)));
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.15) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 1;
}

.cs_about.cs_style_1:hover .cs_about_thumb::before {
    -webkit-animation: shine 1.4s;
    animation: shine 1.4s;
}

.cs_about.cs_style_1.cs_type_1 .cs_about_thumb {
    padding-right: 88px;
}

.cs_about.cs_style_1.cs_type_1 .cs_about_thumb::before {
    display: none;
}

@media (max-width: 991px) {
    .cs_about.cs_style_1.cs_type_1 .cs_about_thumb {
        padding-right: 0;
    }
}

.cs_about.cs_style_1.cs_type_1 .cs_about_thumb_in {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.cs_about.cs_style_2 .cs_about_thumb {
    height: 600px;
    width: 50vw;
    padding-left: 134px;
    position: relative;
    border-radius: 5px 0 0 5px;
}

@media (max-width: 991px) {
    .cs_about.cs_style_2 .cs_about_thumb {
        width: 100%;
        height: 450px;
        border-radius: 5px;
    }
}

.cs_about.cs_style_2 .cs_about_thumb_in {
    height: 100%;
    width: 100%;
    border-radius: inherit;
}

.cs_about.cs_style_2 .cs_mini_video {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 320px;
    width: 320px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    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_about.cs_style_2 .cs_mini_video video {
    height: 180%;
    width: 180%;
}

.cs_about.cs_style_2 .cs_sales_card {
    max-width: 312px;
    width: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 26px 30px 30px 30px;
    bottom: 0;
    left: 0;
    border-radius: 0 5px 0 0;
}

.cs_about.cs_style_2 .cs_sales_card h3 {
    margin-bottom: 9px;
}

.cs_about.cs_style_2 .cs_sales_card h2 {
    margin-bottom: 15px;
}

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

.cs_about.cs_style_2.cs_type_1 .cs_about_thumb {
    padding-left: 0;
}

.cs_about.cs_style_2.cs_type_2 .cs_about_thumb {
    min-height: 700px;
}

@media (max-width: 1700px) {
    .cs_about.cs_style_2.cs_type_2 .cs_about_thumb {
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .cs_about.cs_style_2.cs_type_2 .cs_about_thumb {
        padding-left: 0;
        min-height: 500px;
    }
}

@media (max-width: 575px) {
    .cs_about.cs_style_2.cs_type_2 .cs_about_thumb {
        min-height: 400px;
    }
}

.cs_about.cs_style_2 .cs_section_heading.cs_style_1 {
    position: relative;
}

.cs_about.cs_style_2 .cs_section_heading.cs_style_1 > svg {
    position: absolute;
    left: -75px;
    top: -65px;
}

@media (max-width: 991px) {
    .cs_about.cs_style_2 .cs_section_heading.cs_style_1 > svg {
        display: none;
    }
}

.cs_about.cs_style_2.cs_type_3 .cs_about_thumb {
    padding-left: 88px;
}

@media (max-width: 991px) {
    .cs_about.cs_style_2.cs_type_3 .cs_about_thumb {
        padding-left: 0;
    }
}

.cs_service_info .cs_service_info_thumb {
    overflow: hidden;
    position: relative;
    height: 620px;
    width: 50vw;
    margin-left: calc(-50vw + 94%);
    border-radius: 0 5px 5px 0;
}

@media (max-width: 991px) {
    .cs_service_info .cs_service_info_thumb {
        width: 100%;
        margin-left: 0;
        border-radius: 5px;
        height: 500px;
    }
}

@media (max-width: 575px) {
    .cs_service_info .cs_service_info_thumb {
        height: 400px;
    }
}

/* Start Progress Bar */
.cs_progressbar.cs_style_1:not(:last-child) {
    margin-bottom: 20px;
}

.cs_progressbar.cs_style_1 .cs_progressbar_heading {
    padding-bottom: 10px;
}

.cs_progressbar.cs_style_1 .cs_progress {
    height: 5px;
    border-radius: 5px;
    margin: 6px 0;
}

.cs_progressbar.cs_style_1 .cs_progress_in {
    border-radius: inherit;
    position: relative;
}

.cs_progressbar.cs_style_1 .cs_progress_in::before {
    content: "";
    position: absolute;
    right: -9px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 2px solid #19e4fd;
    top: 50%;
    margin-top: -9px;
    background-color: #fff;
}

.cs_progressbar.cs_style_1 .cs_progress_in::after {
    content: "";
    position: absolute;
    right: -4px;
    background-color: #19e4fd;
    height: 8px;
    width: 8px;
    top: 50%;
    margin-top: -4px;
    border-radius: 50%;
    z-index: 2;
}

/* End Progress Bar */
.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_goal {
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
}

.cs_goal::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: inherit;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(58.05%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58.05%, rgba(0, 0, 0, 0.9) 100%);
}

.cs_goal .cs_goal_text {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px;
}

.cs_goal .cs_goal_subtitle {
    margin-bottom: 10px;
}

.cs_mission,
.cs_vision {
    padding: 50px 40px 45px;
}

.cs_mission h2,
.cs_vision h2 {
    max-width: 490px;
    margin-bottom: 15px;
}

.cs_mission span,
.cs_vision span {
    border: 1px solid;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 25px;
}

.cs_mission {
    background-color: #5fbae7;
}

.cs_vision {
    background-color: #a5d190;
}

.cs_working_process_wrap {
    position: relative;
    overflow: hidden;
}

.cs_working_process_wrap .cs_working_process_col {
    position: relative;
}

.cs_working_process_wrap .cs_working_process_col:not(:last-child)::before {
    content: "";
    position: absolute;
    width: 60px;
    top: 50%;
    border-top: 1px dashed #19e4fd;
    right: -30px;
}

@media (max-width: 1199px) {
    .cs_working_process_wrap .cs_working_process_col:not(:last-child)::before {
        width: 20px;
        right: -10px;
    }
}

@media (max-width: 991px) {
    .cs_working_process_wrap .cs_working_process_col:not(:last-child)::before {
        top: initial;
        left: calc(50% - 10px);
        bottom: 0;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

.cs_working_process {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: -30px;
}

@media (max-width: 1199px) {
    .cs_working_process {
        margin: -10px;
    }
}

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

.cs_working_process .cs_working_process_col {
    width: 33.3333%;
    padding: 30px;
}

@media (max-width: 1199px) {
    .cs_working_process .cs_working_process_col {
        padding: 10px;
    }
}

@media (max-width: 991px) {
    .cs_working_process .cs_working_process_col {
        width: 100%;
        max-width: 380px;
    }
}

.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_case_study_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    padding: 46px 0 44px;
    border: 1px solid #a3a3a3;
    border-left: 0;
    border-right: 0;
}

@media (max-width: 767px) {
    .cs_case_study_info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
    }
}

.cs_case_study_info li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* Start Round Progress */
.cs_round_progress_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px 30px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.cs_round_progress_wrap {
    height: 140px;
    width: 140px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    bottom: 0;
    z-index: 3;
    margin: auto;
}

.cs_round_progress_in {
    height: 100%;
    width: 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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.cs_round_progress_in::after {
    content: "";
    position: absolute;
    height: calc(100% + 3px);
    width: calc(100% + 3px);
    left: -2px;
    top: -2px;
    border-radius: 50%;
    border: 13px solid #121212;
}

.cs_round_progress_number {
    padding-top: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cs_round_progress {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cs_round_progress .cs_round_progress_percentage {
    stroke-width: 8px;
}

.cs_round_progress_percentage {
    -webkit-transform: rotate(-88deg);
    transform: rotate(-88deg);
    fill: none;
    stroke: currentColor;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 0 999;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    stroke-width: 3px;
}

.cs_round_progress_list .cs_round_progress_title {
    margin-top: 20px;
}

/* End Round Progress */
.cs_hiring_list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 26px 24px;
}

@media (max-width: 1400px) {
    .cs_hiring_list > li {
        padding: 22px 24px;
    }
}

@media (max-width: 500px) {
    .cs_hiring_list > li {
        -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;
        gap: 15px;
    }
}

.cs_hiring_list > li:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 1400px) {
    .cs_hiring_list > li:not(:last-child) {
        margin-bottom: 20px;
    }
}

.cs_hiring_list h2 span {
    display: inline-block;
}

@media (min-width: 576px) {
    .cs_hiring_list h2 span {
        min-width: 50px;
    }
}

@media (max-width: 575px) {
    .cs_hiring_list h2 span {
        margin-right: 5px;
    }
}

.cs_hiring_list .cs_btn.cs_style_1 {
    border: none;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border-bottom: 1px solid #fff;
}

.cs_hiring_list .cs_btn.cs_style_1 span {
    font-size: 24px;
}

.cs_hiring_list .cs_btn.cs_style_1 span:after {
    line-height: 1.2em;
    color: #19e4fd;
}

.cs_hiring_list .cs_btn.cs_style_1:hover {
    color: #19e4fd;
}

.cs_hiring_img svg {
    position: absolute;
    left: -70px;
    top: -70px;
}

.cs_contact_info h3 {
    margin-bottom: 4px;
}

.cs_contact_info li:not(:last-child) {
    margin-bottom: 30px;
}

.cs_contact_form_wrap {
    position: relative;
    padding: 90px 0 110px 110px;
}

@media (max-width: 1400px) {
    .cs_contact_form_wrap {
        padding: 90px 0 110px 80px;
    }
}

@media (max-width: 1400px) {
    .cs_contact_form_wrap {
        padding: 60px;
    }
}

@media (max-width: 575px) {
    .cs_contact_form_wrap {
        padding: 40px 20px;
    }
}

.cs_contact_form_wrap .cs_contact_form_bg {
    position: absolute;
    height: 100%;
    width: 50vw;
    left: 0;
    top: 0;
}

@media (max-width: 991px) {
    .cs_contact_form_wrap .cs_contact_form_bg {
        width: 100%;
    }
}

.cs_contact_form_wrap .cs_contact_form {
    position: relative;
    z-index: 2;
}

.cs_contact_form_wrap label {
    margin-bottom: 15px;
}

.cs_form_field {
    display: block;
    width: 100%;
    border: none;
    background-color: #fff;
    line-height: 1.6em;
    padding: 17px 25px;
    outline: none;
}

.cs_form_field_2 {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 2px solid #121212;
    padding: 7px 0;
    outline: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: transparent;
}

.cs_form_field_2:focus {
    border-color: #19e4fd;
}

.cs_map {
    height: 650px;
}

.cs_map iframe {
    height: 100%;
    width: 100%;
    border: none;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.cs_category {
    display: inline-block;
    background: #19e4fd;
    color: #fff;
    padding: 4px 24px;
}

@media (max-width: 575px) {
    .cs_category {
        padding: 4px 15px;
    }
}

.cs_category:hover {
    background-color: rgba(253, 98, 25, 0.8);
    color: #fff;
}

.cs-post_meta.cs-style1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cs-post_meta.cs-style1 > * {
    position: relative;
    display: inline-block;
}

.cs-post_meta.cs-style1 > *:not(:last-child) {
    margin-right: 13px;
    padding-right: 13px;
}

.cs-post_meta.cs-style1 > *:not(:last-child)::before {
    content: "";
    height: 15px;
    width: 1px;
    border-radius: 2px;
    background-color: #19e4fd;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
}

@media (min-width: 992px) {
    .cs_post_details {
        padding: 0 110px;
    }
}

.cs_post_details blockquote {
    font-size: 21px;
    line-height: 1.52em;
    border-left: 5px solid #19e4fd;
    background-color: #000;
    padding: 40px 35px;
    font-weight: 600;
    color: #fff;
    margin: 35px 100px;
}

@media (max-width: 1199px) {
    .cs_post_details blockquote {
        margin-left: 0;
        margin-right: 0;
    }
}

.cs_post_details blockquote small {
    display: block;
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 1.9em;
    font-style: initial;
    font-weight: 400;
    margin-top: 15px;
    padding-left: 35px;
}

.cs_post_details blockquote small::before {
    content: "";
    height: 2px;
    width: 20px;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #ddd;
}

@media (min-width: 992px) {
    .cs_post_details .row {
        margin-left: -110px;
        margin-right: -110px;
    }
}

.cs_post_details h3 {
    font-size: 29px;
    line-height: 1.31em;
    margin-bottom: 30px;
}

.cs_post_details p {
    margin-bottom: 30px;
}

.cs_post_details img {
    margin-bottom: 30px;
    border-radius: 5px;
}

.cs_post_details ul {
    list-style-type: disc;
    margin-bottom: 30px;
}

.cs_post_details ul li:not(:last-child) {
    margin-bottom: 5px;
}

.cs_post_share_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px 18px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cs_categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cs_post_share_title {
    display: inline-block;
    font-size: 10px;
    border: 1px solid;
    line-height: 1.6em;
    border-radius: 2px;
    padding: 1px 7px;
}

.cs_post_share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

@media (min-width: 992px) {
    .cs_post_share {
        padding: 0 110px;
    }
}

@media (max-width: 575px) {
    .cs_post_share {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.cs_author_card {
    border: 1px solid #dddddd;
    border-left: 0;
    border-right: 0;
    padding: 40px;
}

.cs_author_card img {
    height: 130px;
    width: 130px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 23px;
}

.cs_author_card h3 {
    margin-bottom: 14px;
}

.cs_author_card p {
    margin-bottom: 25px;
}

.cs_author_card .cs_social_btns.cs_style_1 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cs_author_card .cs_social_btns.cs_style_1 a {
    border-color: #121212;
}

@media (max-width: 575px) {
    .cs_author_card br {
        display: none;
    }
}

.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: #000000;
    color: #19e4fd;
    -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.cs_scrollup:hover {
    background-color: #19e4fd;
    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;
    }
}

/* --------------------------------------------------------------
  5. Slider
---------------------------------------------------------------- */
.cs_slider {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.cs_swiper_navigation.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .cs_swiper_navigation.cs_style_1 {
        margin-top: 40px;
    }
}

.cs_swiper_navigation.cs_style_1 > * {
    position: relative;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_swiper_navigation.cs_style_1 > *:hover {
    color: #19e4fd;
}

.cs_swiper_navigation.cs_style_1 > *:not(:last-child) {
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid #4f4747;
}

.cs_pagination.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 14px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .cs_pagination.cs_style_1 {
        margin-top: 30px;
    }
}

.cs_pagination.cs_style_1 .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background-color: #4f4747;
    opacity: 1;
    border-radius: 1.6em;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_pagination.cs_style_1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px;
}

.swiper-pagination-bullets.cs_number_pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: initial;
    right: calc((100vw - 1420px) / 2 / 2);
    width: initial;
}

@media (max-width: 1500px) {
    .swiper-pagination-bullets.cs_number_pagination {
        right: calc((100vw - 1380px) / 2 / 2);
        gap: 20px;
    }

    .swiper-pagination-bullets.cs_number_pagination.cs_fs_29 {
        font-size: 20px;
    }
}

@media (max-width: 1400px) {
    .swiper-pagination-bullets.cs_number_pagination {
        right: calc((100vw - 1200px) / 2 / 2);
    }
}

@media (max-width: 1199px) {
    .swiper-pagination-bullets.cs_number_pagination {
        right: calc((100vw - 1020px) / 2 / 2);
    }
}

@media (max-width: 1050px) {
    .swiper-pagination-bullets.cs_number_pagination {
        position: initial;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: revert;
        flex-direction: revert;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transform: initial;
        transform: initial;
        margin-top: 30px;
        gap: 15px;
    }
}

.swiper-pagination-bullets.cs_number_pagination .swiper-pagination-bullet {
    height: 60px;
    width: 60px !important;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: initial;
    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;
    text-align: center;
    background-color: transparent;
    border: 2px solid #a3a3a3;
    color: #a3a3a3;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 1;
    margin: 0 !important;
}

@media (max-width: 1500px) {
    .swiper-pagination-bullets.cs_number_pagination .swiper-pagination-bullet {
        height: 40px;
        width: 40px !important;
    }
}

.swiper-pagination-bullets.cs_number_pagination .swiper-pagination-bullet:hover,
.swiper-pagination-bullets.cs_number_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #4f4747;
    color: #4f4747;
}

.swiper-slide .cs_portfolio.cs_style_2 .cs_portfolio_text {
    left: 160px;
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.swiper-slide.swiper-slide-active .cs_portfolio.cs_style_2 .cs_portfolio_text {
    left: 0px;
    opacity: 1;
}

.cs-pd-video .cs_video_open,
.cs-sample-img .cs_video_open {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 68px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    line-height: 48px;
}

.cs-pd-video .cs_video_open:hover,
.cs-sample-img .cs_video_open:hover {
    color: rgba(255, 255, 255, 0.7);
}

.cs_video_popup {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.cs_video_popup.active {
    left: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    left: 0;
}

.cs_video_popup-overlay {
    position: absolute;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    opacity: 0;
}

.cs_video_popup.active .cs_video_popup-overlay {
    opacity: 0.8;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.cs_video_popup-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0;
    text-align: center;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    padding: 15px;
}

.cs_video_popup.active .cs_video_popup-content {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cs_video_popup-content:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.cs_video_popup-container {
    display: inline-block;
    position: relative;
    text-align: left;
    background: #fff;
    max-width: 1380px;
    width: 100%;
    vertical-align: middle;
}

.cs_video_popup-container .embed-responsive {
    width: 100%;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

.embed-responsive-16by9::before {
    display: block;
    content: "";
    padding-top: 56.25%;
}

.embed-responsive iframe,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.cs_video_popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #d90d0d;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.cs_video_popup iframe {
    width: 100%;
    height: 100%;
    position: absolute;
}

.cs_video_popup-close:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    margin-left: -10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.cs_video_popup-close:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    margin-left: -10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.cs_video_popup-close:hover:before,
.cs_video_popup-close:hover:after {
    background: #000;
}

.cs_video_popup-layer {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}

.cs_video_popup-align {
    overflow: hidden;
}

/* End Video Popup */
/* --------------------------------------------------------------
7. Header
---------------------------------------------------------------- */
.cs_site_header {
    position: relative;
    z-index: 101;
}

.cs_site-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 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 a {
        display: block;
        padding: 12px 15px;
        line-height: 16px;
    }

    .cs_nav .cs_nav_list > li > a {
        font-size: 18px;
        line-height: 22px;
    }

    .cs_nav .menu-item-has-children {
        position: relative;
    }

    .cs_animo_links > li > a .cs_animo_text {
        text-shadow: 0 32px 0 currentColor;
    }

    .cs_animo_links > li > a:hover span {
        -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
---------------------------------------------------------------- */
.cs_fooer {
    color: #dddddd;
    background-attachment: fixed;
}

.cs_fooer_main {
    padding: 145px 0 37px;
}

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

.cs_footer_item {
    margin-bottom: 45px;
}

.cs_footer_item .cs_newsletter.cs_style_1 {
    margin-top: 6px;
}

.cs_widget_title {
    font-size: 21px;
    margin-bottom: 27px;
    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: #19e4fd;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.cs_social_btns.cs_style_1 a:hover svg {
    fill: #19e4fd;
}

.cs_newsletter.cs_style_1 .cs_newsletter_form {
    position: relative;
}

.cs_newsletter.cs_style_1 .cs_newsletter_input {
    height: 60px;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    border: none;
    padding: 5px 125px 5px 15px;
    outline: none;
    color: #121212;
}

.cs_newsletter.cs_style_1 .cs_btn.cs_style_1 {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 1;
    padding: 10px 15px;
    background-color: #fff;
}

.cs_newsletter.cs_style_1 .cs_btn.cs_style_1:hover {
    background-color: #19e4fd;
}

.cs_newsletter.cs_style_1 .cs_newsletter_text {
    margin-bottom: 36px;
}

.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_fooer_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: #19e4fd;
    border-color: #19e4fd;
}

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

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

/* --------------------------------------------------------------
  12. Iconbox
---------------------------------------------------------------- */
.cs_iconbox.cs_style_1 {
    padding: 50px 35px 45px 35px;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon {
    height: 70px;
    width: 80px;
    margin-bottom: 27px;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon img {
    position: relative;
    z-index: 2;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon_shape {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.cs_iconbox.cs_style_1 .cs_iconbox_subtitle {
    color: #ddd;
    margin-bottom: 26px;
}

.cs_iconbox.cs_style_1 .cs_iconbox_title {
    margin-bottom: 25px;
}

.cs_iconbox.cs_style_1 .cs_iconbox_btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 17px;
}

.cs_iconbox.cs_style_1 .cs_iconbox_btn:hover {
    letter-spacing: 1px;
}

.cs_iconbox.cs_style_1:hover .cs_iconbox_icon_shape {
    -webkit-transform: translate(-50%, -50%) rotate(25deg);
    transform: translate(-50%, -50%) rotate(25deg);
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon {
    margin-bottom: 35px;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon img {
    -webkit-animation: heroShapeAnim 10s linear infinite alternate;
    animation: heroShapeAnim 10s linear infinite alternate;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.cs_iconbox.cs_style_2 .cs_iconbox_title {
    margin-bottom: 16px;
}

.cs_iconbox.cs_style_2 .cs_iconbox_subtitle {
    margin-bottom: 20px;
}

.cs_iconbox.cs_style_2 .cs_iconbox_features li:not(:last-child) {
    margin-bottom: 5px;
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_icon img {
    -webkit-animation-play-state: initial;
    animation-play-state: initial;
}

.cs_iconbox.cs_style_4 {
    border: 1px solid rgba(18, 18, 18, 0.15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px;
    gap: 40px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .cs_iconbox.cs_style_4 {
        padding: 25px;
        gap: 25px;
    }
}

@media (max-width: 400px) {
    .cs_iconbox.cs_style_4 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.cs_iconbox.cs_style_4::before {
    content: "";
    position: absolute;
    left: -55px;
    top: -55px;
    height: 135px;
    width: 135px;
    background: #19e4fd;
    -webkit-filter: blur(125px);
    filter: blur(125px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
}

.cs_iconbox.cs_style_4 .cs_iconbox_icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 82px;
}

@media (max-width: 1199px) {
    .cs_iconbox.cs_style_4 .cs_iconbox_icon {
        width: 60px;
    }
}

.cs_iconbox.cs_style_4 .cs_iconbox_icon img {
    width: 100%;
}

.cs_iconbox.cs_style_4 .cs_btn.cs_style_1 {
    border: none;
    padding: 0;
}

.cs_iconbox.cs_style_4 .cs_btn.cs_style_1 span::after {
    color: #19e4fd;
}

.cs_iconbox.cs_style_4 .cs_btn.cs_style_1:hover {
    background-color: transparent;
    color: #19e4fd;
}

.cs_iconbox.cs_style_4 .cs_iconbox_title {
    margin-bottom: 15px;
}

.cs_iconbox.cs_style_4 .cs_iconbox_subtitle {
    margin-bottom: 25px;
}

.cs_iconbox.cs_style_4:hover::before {
    opacity: 1;
}

.cs_iconbox.cs_style_5 {
    padding: 40px 30px;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon {
    margin-bottom: 22px;
    height: 61px;
}

.cs_iconbox.cs_style_5 .cs_iconbox_title {
    margin-bottom: 15px;
}

.cs_iconbox.cs_style_5 .cs_iconbox_subtitle {
    margin-bottom: 30px;
}

.cs_iconbox.cs_style_5 .cs_iconbox_btn {
    color: #fff;
}

.cs_iconbox.cs_style_5 .cs_iconbox_btn:hover {
    color: #19e4fd;
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_icon {
    -webkit-animation: spinAnimaiton 1.5s linear;
    animation: spinAnimaiton 1.5s linear;
}

.cs_iconbox.cs_style_6 {
    min-height: 390px;
    width: 100%;
    border-radius: 50%;
    border: 1px solid #19e4fd;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1400px) {
    .cs_iconbox.cs_style_6 {
        min-height: 330px;
        padding: 40px;
    }
}

@media (max-width: 1199px) {
    .cs_iconbox.cs_style_6 {
        min-height: 300px;
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .cs_iconbox.cs_style_6 {
        min-height: 360px;
        padding: 40px;
    }
}

.cs_iconbox.cs_style_6 .cs_iconbox_icon {
    margin-bottom: 22px;
}

.cs_iconbox.cs_style_6 .cs_iconbox_title {
    margin-bottom: 15px;
}

.cs_iconbox.cs_style_6 .cs_iconbox_bg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-animation: heroShapeAnim 30s linear infinite alternate;
    animation: heroShapeAnim 30s linear infinite alternate;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.cs_iconbox.cs_style_6 .cs_iconbox_in {
    position: relative;
    z-index: 2;
}

.cs_iconbox.cs_style_6:hover .cs_iconbox_bg {
    -webkit-animation-play-state: initial;
    animation-play-state: initial;
}

.cs_icon_7_wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 40px;
}

@media (max-width: 1400px) {
    .cs_icon_7_wrap {
        grid-gap: 25px;
    }
}

@media (max-width: 1199px) {
    .cs_icon_7_wrap {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

@media (max-width: 400px) {
    .cs_icon_7_wrap {
        grid-gap: 15px;
    }
}

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

.cs_iconbox.cs_style_7 {
    border: 1px solid #a3a3a3;
    border-radius: 20px;
    min-height: 223px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    padding: 15px;
    gap: 15px;
}

.cs_iconbox.cs_style_7:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

@media (max-width: 575px) {
    .cs_iconbox.cs_style_7 {
        min-height: 180px;
    }
}

.cs_image_layer.cs_style_1 {
    padding-right: 60px;
    padding-bottom: 60px;
}

.cs_image_layer.cs_style_1 img {
    position: relative;
    z-index: 2;
}

.cs_image_layer.cs_style_1 .cs_image_layer_in {
    position: relative;
    border-radius: 15px;
}

.cs_image_layer.cs_style_1 .cs_image_layer_in::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    right: -60px;
    bottom: -60px;
    background-color: #19e4fd;
    border-radius: inherit;
}

.cs_image_layer.cs_style_1.cs_size_md {
    padding-right: 20px;
    padding-bottom: 20px;
}

.cs_image_layer.cs_style_1.cs_size_md .cs_image_layer_in::after {
    right: -20px;
    bottom: -20px;
}

.cs_iconbox_3_list {
    position: relative;
    padding-left: 550px;
    min-height: 640px;
}

@media (max-width: 1400px) {
    .cs_iconbox_3_list {
        padding-left: 520px;
    }
}

.cs_iconbox_3_list > *:not(:last-child) {
    border-bottom: 1px solid #4d4d4d;
}

.cs_iconbox_3_list .cs_image_layer {
    position: absolute;
    left: 0;
    top: 25px;
    pointer-events: none;
    max-width: 416px;
    height: 600px;
}

@media (max-width: 1400px) {
    .cs_iconbox_3_list .cs_image_layer {
        height: 640px;
    }
}

.cs_iconbox_3_list .cs_image_layer .cs_image_layer_in {
    height: 100%;
    width: 100%;
}

.cs_iconbox_3_list .cs_image_layer img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    -webkit-animation: inactiveImageAnimation1 0.6s forwards ease;
    animation: inactiveImageAnimation1 0.6s forwards ease;
}

.cs_iconbox_3_list .cs_hover_tab.active .cs_image_layer img {
    -webkit-animation: activeImageAnimation1 0.6s forwards ease;
    animation: activeImageAnimation1 0.6s forwards ease;
}

.cs_iconbox_3_list .cs_hover_tab.active .cs_iconbox_icon {
    color: #fff;
    background-color: #19e4fd;
    border-color: #19e4fd;
}

.cs_iconbox_3_list .cs_hover_tab.active .cs_iconbox_icon svg:last-child {
    position: absolute;
    left: 23px;
    bottom: 23px;
}

@media (max-width: 575px) {
    .cs_iconbox_3_list .cs_hover_tab.active .cs_iconbox_icon svg:last-child {
        left: 13px;
        bottom: 17px;
    }
}

.cs_iconbox_3_list .cs_hover_tab.active .cs_iconbox_icon svg:first-child {
    -webkit-transform: translate(44px, -40px);
    transform: translate(44px, -40px);
}

.cs_iconbox.cs_style_3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 25px;
    padding-top: 25px;
    color: #4f4747;
}

@media (max-width: 1400px) {
    .cs_iconbox.cs_style_3 {
        padding-bottom: 20px;
        padding-top: 20px;
    }
}

.cs_iconbox.cs_style_3 .cs_iconbox_in {
    margin-right: 30px;
    max-width: 580px;
}

@media (max-width: 1199px) {
    .cs_iconbox.cs_style_3 .cs_iconbox_in {
        margin-right: 23px;
    }
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon {
    color: #4f4747;
    border: 2px solid #4f4747;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon svg:first-child {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon svg:last-child {
    position: absolute;
    left: -20px;
    bottom: -20px;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon:hover {
    color: #fff;
    background-color: #19e4fd;
    border-color: #19e4fd;
}

.cs_iconbox.cs_style_3 .cs_iconbox_title {
    margin-bottom: 15px;
    color: #fff;
}

@media (max-width: 1400px) {
    .cs_iconbox.cs_style_3 .cs_iconbox_title {
        margin-bottom: 10px;
    }
}

.cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
    color: #dddddd;
}

.cs_iconbox.cs_style_3:hover .cs_iconbox_icon {
    color: #fff;
    background-color: #19e4fd;
    border-color: #19e4fd;
}

@-webkit-keyframes inactiveImageAnimation1 {
    0% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }

    100% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
}

@keyframes inactiveImageAnimation1 {
    0% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }

    100% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
}

@-webkit-keyframes activeImageAnimation1 {
    0% {
        -webkit-clip-path: inset(0 0 0 100%);
        clip-path: inset(0 0 0 100%);
    }

    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes activeImageAnimation1 {
    0% {
        -webkit-clip-path: inset(0 0 0 100%);
        clip-path: inset(0 0 0 100%);
    }

    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@media screen and (max-width: 1199px) {
    .cs_iconbox_3_list {
        padding-left: 460px;
    }
}

@media screen and (max-width: 991px) {
    .cs_iconbox.cs_style_3 .cs_iconbox_title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .cs_iconbox_3_list {
        padding-left: 0;
        padding-top: 690px;
    }

    .cs_iconbox_3_list .cs_image_layer {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .cs_iconbox.cs_style_3 {
        -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_iconbox.cs_style_3 .cs_iconbox_icon {
        position: relative;
        -webkit-transform: initial;
        transform: initial;
        margin-bottom: 20px;
        height: 60px;
        width: 60px;
    }

    .cs_iconbox.cs_style_3 .cs_iconbox_icon svg {
        max-height: 22px;
    }
}

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

.cs_post.cs_style_1 {
    background-color: #121212;
}

.cs_post.cs_style_1 .cs_post_info {
    bottom: 0;
    padding: 0px 24px 35px;
    z-index: 2;
}

.cs_post.cs_style_1 .cs_posted_by {
    color: #dddddd;
}

.cs_post.cs_style_1 .cs_post_overlay {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(rgba(77, 77, 77, 0)));
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.9) 0%, rgba(77, 77, 77, 0) 100%);
    pointer-events: none;
}

.cs_post.cs_style_1.cs_type_1 .cs_post_info {
    padding: 0px 50px 46px;
}

@media (max-width: 575px) {
    .cs_post.cs_style_1.cs_type_1 .cs_post_info {
        padding: 0px 30px 30px;
    }
}

.cs_post.cs_style_1.cs_type_1 .cs_post_thumb {
    height: 489px;
}

.cs_post.cs_style_1.cs_type_1 .cs_post_thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cs_image_blur_effect {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}

.cs_image_blur_effect img {
    position: relative;
    width: auto;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    background-size: cover;
}

.cs_image_blur_effect img:nth-child(1) {
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
}

.cs_image_blur_effect:hover img:nth-child(1) {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.cs_image_blur_effect:hover img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.cs_post.cs_style_2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

@media (max-width: 450px) {
    .cs_post.cs_style_2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 12px;
    }
}

.cs_post.cs_style_2 .cs_post_thumb {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 200px;
    height: 147px;
}

.cs_post.cs_style_2 .cs_post_thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 450px) {
    .cs_post.cs_style_2 .cs_post_thumb {
        width: 100%;
        height: initial;
    }
}

.cs_post.cs_style_2 .cs_posted_by {
    margin-bottom: 10px;
}

.cs_post.cs_style_2:not(:last-child) {
    margin-bottom: 24px;
}

.cs_post.cs_style_3 .cs_post_btn,
.cs_post.cs_style_4 .cs_post_btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-left: -20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cs_post.cs_style_3 .cs_post_btn span,
.cs_post.cs_style_4 .cs_post_btn span {
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.cs_post.cs_style_3 .cs_post_btn:hover,
.cs_post.cs_style_4 .cs_post_btn:hover {
    margin-left: 0;
    color: #19e4fd;
}

.cs_post.cs_style_3 .cs_post_btn:hover span,
.cs_post.cs_style_4 .cs_post_btn:hover span {
    width: 82px;
}

.cs_post.cs_style_3:not(:first-child),
.cs_post.cs_style_4:not(:first-child) {
    margin-top: 100px;
}

@media (max-width: 991px) {
    .cs_post.cs_style_3:not(:first-child),
    .cs_post.cs_style_4:not(:first-child) {
        margin-top: 50px;
    }
}

.cs_post.cs_style_3 {
    padding: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

@media (max-width: 575px) {
    .cs_post.cs_style_3 {
        padding: 25px;
    }
}

.cs_post.cs_style_3 .cs_post_left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 80px;
}

@media (max-width: 1199px) {
    .cs_post.cs_style_3 .cs_post_left {
        padding-right: 40px;
    }
}

.cs_post.cs_style_3 .cs_post_right {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 424px;
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cs_post.cs_style_3 .cs_post_right {
        width: 100%;
        margin-bottom: 25px;
    }
}

.cs_post.cs_style_3 .cs_post_thumb {
    height: 100%;
    width: 100%;
    display: block;
    min-height: 330px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_post.cs_style_3 .cs_post_thumb:hover {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

.cs_post.cs_style_3 .cs_categories {
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .cs_post.cs_style_3 .cs_categories {
        margin-bottom: 15px;
    }
}

.cs_post.cs_style_3 .cs_post_title {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .cs_post.cs_style_3 .cs_post_title {
        margin-bottom: 15px;
    }

    .cs_post.cs_style_3 .cs_post_title.cs_fs_50 {
        font-size: 30px;
    }
}

.cs_post.cs_style_3 .cs_post_subtitle {
    color: #dddddd;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .cs_post.cs_style_3 .cs_post_subtitle {
        margin-bottom: 20px;
    }
}

.cs_post.cs_style_3 .cs_post_btn {
    color: #fff;
}

.cs_post.cs_style_4 .cs_categories {
    position: absolute;
    left: 0;
    top: 40px;
}

.cs_post.cs_style_4 .cs_post_thumb {
    overflow: hidden;
    display: block;
    margin-bottom: 38px;
}

@media (max-width: 991px) {
    .cs_post.cs_style_4 .cs_post_thumb {
        margin-bottom: 20px;
    }
}

.cs_post.cs_style_4 .cs_post_thumb img {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.cs_post.cs_style_4 .cs_post_thumb:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.cs_post.cs_style_4 .cs_post_title {
    margin-bottom: 26px;
}

@media (max-width: 991px) {
    .cs_post.cs_style_4 .cs_post_title {
        margin-bottom: 15px;
    }

    .cs_post.cs_style_4 .cs_post_title.cs_fs_50 {
        font-size: 30px;
    }
}

.cs_post.cs_style_4 .cs_post_subtitle {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .cs_post.cs_style_4 .cs_post_subtitle {
        margin-bottom: 20px;
    }
}

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

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

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

/* --------------------------------------------------------------
  15. Testimonial
---------------------------------------------------------------- */
@media (max-width: 767px) {
    .cs_testimonial.cs_style_1 {
        padding: 0;
    }
}

.cs_testimonial.cs_style_1 .cs_testimonial_icon {
    margin-bottom: 70px;
    color: #19e4fd;
}

@media (max-width: 991px) {
    .cs_testimonial.cs_style_1 .cs_testimonial_icon {
        margin-bottom: 30px;
    }
}

.cs_testimonial.cs_style_1 .cs_testimonial_text {
    margin-bottom: 65px;
}

@media (max-width: 991px) {
    .cs_testimonial.cs_style_1 .cs_testimonial_text {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .cs_testimonial.cs_style_1 .cs_testimonial_text {
        font-size: 24px;
    }
}

.cs_testimonial.cs_style_1 .cs_testimonial_info h3 {
    margin-bottom: 5px;
}

@media (max-width: 1199px) {
    .cs_testimonial.cs_style_1 .cs_testimonial_info h3 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .cs_testimonial.cs_style_1 .cs_testimonial_info h3 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .cs_testimonial.cs_style_1 .cs_testimonial_info h3 {
        font-size: 24px;
    }
}

.cs_testimonial.cs_style_1 .cs_testimonial_info p {
    margin: 0;
}

.cs_testimonial_1_wrap {
    position: relative;
}

.cs_testimonial_1_wrap .cs_layered_img_1 {
    left: 6%;
    top: 24%;
}

@media (max-width: 991px) {
    .cs_testimonial_1_wrap .cs_layered_img_1 {
        display: none;
    }
}

.cs_testimonial_1_wrap .cs_layered_img_2 {
    left: 10%;
    top: 45%;
}

@media (max-width: 991px) {
    .cs_testimonial_1_wrap .cs_layered_img_2 {
        display: none;
    }
}

.cs_testimonial_1_wrap .cs_layered_img_3 {
    left: 20%;
    top: 70%;
}

@media (max-width: 991px) {
    .cs_testimonial_1_wrap .cs_layered_img_3 {
        display: none;
    }
}

.cs_testimonial_1_wrap .cs_layered_img_4 {
    left: 68%;
    top: 15%;
}

@media (max-width: 991px) {
    .cs_testimonial_1_wrap .cs_layered_img_4 {
        display: none;
    }
}

.cs_testimonial_1_wrap .cs_layered_img_5 {
    left: 80%;
    top: 50%;
}

@media (max-width: 991px) {
    .cs_testimonial_1_wrap .cs_layered_img_5 {
        display: none;
    }
}

.cs_testimonial_1_wrap .cs_layered_shape_1 {
    left: 9%;
    top: 60%;
    -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;
}

.cs_testimonial_1_wrap .cs_layered_shape_2 {
    left: 88%;
    top: 20%;
    -webkit-animation: animo-x 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation: animo-x 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs_testimonial_1_wrap .cs_layered_shape_3 {
    left: 28%;
    top: 0;
    -webkit-animation: animo-x 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation: animo-x 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@media (max-width: 991px) {
    .cs_testimonial_1_wrap .cs_layer_image {
        display: none;
    }
}

.cs_testimonial_2_wrap .cs_testimonial.cs_style_1 .cs_testimonial_icon {
    margin-bottom: 63px;
}

@media (max-width: 991px) {
    .cs_testimonial_2_wrap .cs_testimonial.cs_style_1 .cs_testimonial_icon {
        margin-bottom: 30px;
    }
}

.cs_testimonial_2_wrap .cs_testimonial.cs_style_1 .cs_testimonial_text {
    margin-bottom: 55px;
}

@media (max-width: 991px) {
    .cs_testimonial_2_wrap .cs_testimonial.cs_style_1 .cs_testimonial_text {
        margin-bottom: 25px;
    }
}

.cs_testimonial_2_wrap .cs_swiper_navigation.cs_style_1 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 55px;
}

@media (max-width: 991px) {
    .cs_testimonial_2_wrap .cs_swiper_navigation.cs_style_1 {
        margin-top: 40px;
    }
}

.cs_testimonial_2_wrap .cs_swiper_navigation.cs_style_1 > * {
    color: #aeacb8;
    border-color: #aeacb8;
}

.cs_testimonial_2_wrap .cs_swiper_navigation.cs_style_1 > *:hover {
    color: #19e4fd;
}

.cs_testimonial_2_wrap .cs_testimonial_thumb {
    margin-left: calc(-50vw + 100%);
    height: 100%;
    margin-right: 90px;
}

@media (max-width: 991px) {
    .cs_testimonial_2_wrap .cs_testimonial_thumb {
        display: none;
    }
}

/* --------------------------------------------------------------
  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: #19e4fd;
}

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

/* --------------------------------------------------------------
  17. Counter
---------------------------------------------------------------- */
.odometer-inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cs_counter_1_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px 100px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 {
    width: 25%;
}

@media (min-width: 575px) {
    .cs_counter_1_wrap .cs_counter.cs_style_1:not(:nth-child(4n+0))::before {
        content: "";
        height: 56px;
        width: 1px;
        background-color: #4f4747;
        position: absolute;
        right: -50px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.cs_counter_1_wrap .cs_counter.cs_style_1:last-child::before {
    display: none;
}

@media (max-width: 1400px) {
    .cs_counter_1_wrap {
        gap: 5px 50px;
    }

    .cs_counter_1_wrap .cs_counter.cs_style_1:not(:nth-child(4n+0))::before {
        right: -25px;
    }
}

@media (max-width: 1199px) {
    .cs_counter_1_wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px 50px;
    }

    .cs_counter_1_wrap .cs_counter.cs_style_1 {
        width: calc(50% - 25px);
    }

    .cs_counter_1_wrap .cs_counter.cs_style_1:nth-child(2)::before {
        display: none;
    }
}

@media (max-width: 991px) {
    .cs_counter_1_wrap {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 575px) {
    .cs_counter_1_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
    }

    .cs_counter_1_wrap .cs_counter.cs_style_1 {
        width: 100%;
        max-width: 220px;
        margin: auto;
    }
}

.cs_counter.cs_style_1 {
    gap: 17px;
}

@media (max-width: 575px) {
    .cs_counter.cs_style_1 .cs_counter_nmber {
        min-width: 70px;
    }
}

/* --------------------------------------------------------------
  18. Award
---------------------------------------------------------------- */
.cs_awaard.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.cs_awaard.cs_style_1 .cs_awaard_subtitle {
    color: #ddd;
}

.cs_awaard.cs_style_1 .cs_awaard_brand {
    width: 20%;
}

@media (max-width: 991px) {
    .cs_awaard.cs_style_1 .cs_awaard_brand {
        width: 100%;
    }
}

.cs_awaard.cs_style_1 .cs_awaard_info {
    width: 40%;
}

@media (max-width: 991px) {
    .cs_awaard.cs_style_1 .cs_awaard_info {
        width: 100%;
    }
}

.cs_awaard.cs_style_1 .cs_awaard_time {
    width: 30%;
    text-align: right;
}

@media (max-width: 991px) {
    .cs_awaard.cs_style_1 .cs_awaard_time {
        width: 100%;
        font-size: 18px;
    }
}

.cs_awaard.cs_style_1 .cs_award_img {
    position: absolute;
    opacity: 0;
    top: -100px;
    left: -50px;
    height: 200px;
    width: 100px;
    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;
    -webkit-transition: all 0.25s, -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.3, 1);
    transition: all 0.25s, -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.3, 1);
    transition: all 0.25s, transform 0.7s cubic-bezier(0.22, 1, 0.3, 1);
    transition: all 0.25s, transform 0.7s cubic-bezier(0.22, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.3, 1);
    pointer-events: none;
}

.cs_awaard.cs_style_1:hover .cs_award_img {
    opacity: 1;
}

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

.cs_awaard_1_list {
    border-top: 1px solid #4f4747;
}

.cs_awaard_1_list .cs_awaard.cs_style_1 {
    border-bottom: 1px solid #4f4747;
    padding: 41px 0;
}

.cs_awaard_1_list .cs_awaard.cs_style_1 .cs_awaard_time {
    text-align: right;
}

/* --------------------------------------------------------------
  19. Casestudie
---------------------------------------------------------------- */
.cs_case_study_1_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

.cs_case_study_1_list > .cs_case_study.cs_style_1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cs_case_study_1_list .cs_case_study.cs_style_1 {
    min-height: 400px;
}

.cs_case_study_1_list .cs_case_study.cs_style_1 .cs_case_study_in {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    left: 80px;
    opacity: 0;
}

@media (max-width: 767px) {
    .cs_case_study_1_list .cs_case_study.cs_style_1 .cs_case_study_in {
        left: 0;
        opacity: 1;
    }
}

.cs_case_study_1_list .cs_case_study.cs_style_1.active {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
}

.cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_in {
    opacity: 1;
    left: 0;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.cs_case_study_1_list .cs_case_study.cs_style_1.active .cs_case_study_icon {
    -webkit-transform: scale(0) rotate(360deg);
    transform: scale(0) rotate(360deg);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.cs_case_study.cs_style_1 {
    height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media (max-width: 1400px) {
    .cs_case_study.cs_style_1 {
        height: 600px;
    }
}

.cs_case_study.cs_style_1 .cs_case_study_title a {
    text-decoration: none;
    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: 100% 3px;
}

.cs_case_study.cs_style_1 .cs_case_study_number {
    left: 70px;
    top: 70px;
    z-index: 1;
}

@media (max-width: 767px) {
    .cs_case_study.cs_style_1 .cs_case_study_number {
        left: 30px;
        top: 40px;
    }
}

.cs_case_study.cs_style_1 .cs_case_study_category {
    margin-bottom: 15px;
}

.cs_case_study.cs_style_1 .cs_case_study_thumb {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.cs_case_study.cs_style_1 .cs_case_study_in {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 88px 72px;
}

@media (max-width: 1400px) {
    .cs_case_study.cs_style_1 .cs_case_study_in {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .cs_case_study.cs_style_1 .cs_case_study_in {
        padding: 30px;
    }
}

.cs_case_study.cs_style_1 .cs_case_study_icon {
    left: 70px;
    bottom: 86px;
    z-index: 1;
    background-color: #4f4747;
    color: #fff;
    height: 55px;
    width: 55px;
    font-size: 20px;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

@media (max-width: 1400px) {
    .cs_case_study.cs_style_1 .cs_case_study_icon {
        left: 40px;
        bottom: 50px;
    }
}

@media (max-width: 767px) {
    .cs_case_study.cs_style_1 .cs_case_study_icon {
        display: none;
    }
}

/* --------------------------------------------------------------
  20. Team
---------------------------------------------------------------- */
@media (max-width: 575px) {
    .cs_team.cs_style_1 {
        text-align: center;
    }
}

.cs_team.cs_style_1 .cs_team_info {
    padding: 28px 30px 0;
}

@media (max-width: 991px) {
    .cs_team.cs_style_1 .cs_team_info {
        padding: 15px 0px 0;
    }
}

.cs_team.cs_style_1 .cs_team_info h2 {
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .cs_team.cs_style_1 .cs_team_info h2 {
        margin-bottom: 2px;
    }
}

/* --------------------------------------------------------------
  21. Imagebox
---------------------------------------------------------------- */
.cs_image_box_1_list li:not(:last-child) {
    border-bottom: 1px solid rgba(18, 18, 18, 0.2);
    padding-bottom: 35px;
    margin-bottom: 35px;
}

.cs_image_box_1_list.cs_color_1 .cs_primary_color,
.cs_image_box_1_list.cs_color_1 .cs_image_box_title {
    color: #fff;
}

.cs_image_box_1_list.cs_color_1 .cs_image_box_subtitle,
.cs_image_box_1_list.cs_color_1 .cs_image_box_btn {
    color: #a3a3a3;
}

.cs_image_box_1_list.cs_color_1 li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cs_image_box.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px 135px;
}

@media (max-width: 1199px) {
    .cs_image_box.cs_style_1 {
        gap: 20px 50px;
    }
}

@media (max-width: 767px) {
    .cs_image_box.cs_style_1 {
        -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_image_box.cs_style_1 .cs_image_box_title {
    margin-bottom: 17px;
}

.cs_image_box.cs_style_1 .cs_image_box_number {
    width: 60px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.cs_image_box.cs_style_1 .cs_image_box_info {
    padding-right: 188px;
}

@media (max-width: 1199px) {
    .cs_image_box.cs_style_1 .cs_image_box_info {
        padding-right: 100px;
    }
}

@media (max-width: 575px) {
    .cs_image_box.cs_style_1 .cs_image_box_info {
        padding-right: 0px;
    }
}

.cs_image_box.cs_style_1 .cs_image_box_img {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.cs_image_box.cs_style_1 .cs_image_box_img img {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.cs_image_box.cs_style_1 .cs_image_box_btn {
    height: 80px;
    width: 80px;
    border: 2px solid;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: hidden;
}

.cs_image_box.cs_style_1 .cs_image_box_btn svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.cs_image_box.cs_style_1 .cs_image_box_btn svg:first-child {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.cs_image_box.cs_style_1 .cs_image_box_btn svg:last-child {
    position: absolute;
    left: -20px;
    bottom: -20px;
}

.cs_image_box.cs_style_1 .cs_image_box_btn:hover svg:last-child {
    position: absolute;
    left: 23px;
    bottom: 23px;
}

.cs_image_box.cs_style_1 .cs_image_box_btn:hover svg:first-child {
    -webkit-transform: translate(44px, -40px);
    transform: translate(44px, -40px);
}

@media (max-width: 575px) {
    .cs_image_box.cs_style_1 .cs_image_box_btn {
        position: relative !important;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        margin-top: 10px;
        margin-left: -12px;
    }
}

.cs_image_box.cs_style_1:hover .cs_image_box_btn {
    border-color: #19e4fd;
    color: #fff;
    background-color: #19e4fd;
}

.cs_image_box.cs_style_1:hover .cs_image_box_img img {
    -webkit-transform: scale(1.07) translateX(-6px);
    transform: scale(1.07) translateX(-6px);
}

/* --------------------------------------------------------------
  22. Pricing
---------------------------------------------------------------- */
.cs_pricing_control {
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
    color: #121212;
}

@media (max-width: 991px) {
    .cs_pricing_control {
        margin-bottom: 30px;
    }
}

.cs_pricing_control li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.cs_pricing_control li:last-child a::before {
    left: initial;
    right: 100%;
}

.cs_pricing_control .cs_switch {
    display: inline-block;
    position: relative;
    height: 28px;
    width: 60px;
    background: #121212;
    border-radius: 1.6em;
    margin: 0 15px;
}

.cs_pricing_control .cs_switch::before {
    content: "";
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #fff;
    top: 4px;
    left: 36px;
    position: absolute;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_pricing_control .cs_offer_shape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: -70px;
    bottom: 39px;
}

.cs_pricing_control .active .cs_switch::before {
    left: 4px;
}

.cs_pricing_control a {
    position: relative;
}

.cs_pricing_control a::before {
    content: "";
    height: 24px;
    width: 50px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 100%;
    z-index: 1;
}

.cs_pricing_control .cs_offer_label {
    font-size: 12px;
    line-height: 1.6em;
    background-color: #666;
    color: #fff;
    border-radius: 5px;
    padding: 3px 10px;
    position: absolute;
    white-space: nowrap;
    bottom: 36px;
}

.cs_pricing_table.cs_style1 {
    position: relative;
    background: linear-gradient(267.18deg, #161616 0%, #080808 100%);
    overflow: hidden;
    padding: 32px 40px 40px;
}

@media (max-width: 1199px) {
    .cs_pricing_table.cs_style1 {
        padding: 32px 25px 40px;
    }

    .cs_pricing_table.cs_style1 .cs_fs_21 {
        font-size: 18px;
    }
}

.cs_pricing_table.cs_style1::before {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    height: 135px;
    width: 135px;
    background: #19e4fd;
    -webkit-filter: blur(125px);
    filter: blur(125px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
}

.cs_pricing_table.cs_style1 .cs_pricing_title {
    color: #fff;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
}

.cs_pricing_table.cs_style1 .cs_pricing_title span {
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 400;
    padding: 1px 13px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1.6em;
    color: #ddd;
}

.cs_pricing_table.cs_style1 .cs_pricing_feature {
    color: #fff;
}

.cs_pricing_table.cs_style1 .cs_price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 18px;
}

.cs_pricing_table.cs_style1 .cs_price h3 {
    margin: 0;
}

.cs_pricing_table.cs_style1 .cs_price span {
    position: relative;
    bottom: 9px;
    margin-left: 18px;
}

.cs_pricing_table.cs_style1 .cs_pricing_info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 37px;
}

.cs_pricing_table.cs_style1 .cs_pricing_feature {
    padding: 40px 0;
}

.cs_pricing_table.cs_style1 .cs_pricing_feature li {
    position: relative;
    padding-left: 45px;
}

.cs_pricing_table.cs_style1 .cs_pricing_feature li:not(:last-child) {
    margin-bottom: 23px;
}

.cs_pricing_table.cs_style1 .cs_pricing_feature .cs_feature_icon {
    position: absolute;
    left: 0;
    top: -2px;
}

.cs_pricing_table.cs_style1:hover::before {
    opacity: 1;
}

.cs_pricing_table.cs_style1 .cs_btn.cs_style_1 {
    width: 100%;
    color: #fff;
}

/* --------------------------------------------------------------
  22. Numberbox
---------------------------------------------------------------- */
.cs_number_box.cs_style_1 .cs_number_box_number {
    height: 57px;
    width: 57px;
    border-radius: 50%;
    color: #fff;
    margin-bottom: 20px;
}

.cs_number_box.cs_style_1 .cs_number_box_title {
    margin-bottom: 20px;
}

/* --------------------------------------------------------------
  23. Ecommerce
---------------------------------------------------------------- */
.cs_shop_sidebar {
    background-color: rgba(163, 163, 163, 0.11);
    padding: 40px 25px;
    border-radius: 5px;
}

.cs_shop_sidebar_widget:not(:last-child) {
    margin-bottom: 40px;
}

.cs_shop_filter_wrap {
    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;
    margin-bottom: 30px;
    gap: 10px;
}

.cs_shop_filter_wrap select {
    background-color: transparent;
    border: transparent;
    color: inherit;
    outline: none;
    cursor: pointer;
}

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

.cs_shop_sidebar_widget_title {
    font-size: 21px;
    margin-bottom: 18px;
    font-weight: 600;
}

.cs_shop_sidebar_tag_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0px -5px -5px -5px;
    list-style: none;
    padding: 0;
}

.cs_shop_sidebar_tag_list a {
    font-size: 14px;
    line-height: 1.6em;
    border: 1px solid #b7b7b7;
    padding: 3px 12px;
    display: inline-block;
    margin: 5px;
    border-radius: 2px;
}

.cs_shop_sidebar_tag_list a:hover {
    color: #ffffff;
    background-color: #19e4fd;
    border-color: #19e4fd;
}

.cs_shop_search {
    position: relative;
}

.cs_shop_search .cs_shop_search_input {
    border: 1px solid #b7b7b7;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #121212;
    background-color: transparent;
    border-radius: 2px;
    display: block;
    width: 100%;
    padding: 5px 10px 5px 40px;
    height: 46px;
    outline: none;
}

.cs_shop_search .cs_shop_search_input:focus {
    border-color: #121212;
}

.cs_shop_search .cs_shop_search_input::-webkit-input-placeholder {
    color: #4f4747;
}

.cs_shop_search .cs_shop_search_input::-moz-placeholder {
    color: #4f4747;
}

.cs_shop_search .cs_shop_search_input:-ms-input-placeholder {
    color: #4f4747;
}

.cs_shop_search .cs_shop_search_input::-ms-input-placeholder {
    color: #4f4747;
}

.cs_shop_search .cs_shop_search_input::placeholder {
    color: #4f4747;
}

.cs_shop_search .cs_shop_search_input:-ms-input-placeholder {
    color: #4f4747;
}

.cs_shop_search .cs_shop_search_input::-ms-input-placeholder {
    color: #4f4747;
}

.cs_shop_search .cs_shop_search_btn {
    position: absolute;
    top: 0;
    border: none;
    background: transparent;
    height: 46px;
    width: 40px;
    padding: 0;
    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_shop_sidebar_category_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs_shop_sidebar_category_list li:not(:last-child) {
    margin-bottom: 12px;
}

.cs_product_card.cs_style_1 .cs_product_thumb {
    display: block;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.cs_product_card.cs_style_1 .cs_product_thumb img {
    width: 100%;
    border-radius: inherit;
}

.cs_product_card.cs_style_1 .cs_card_btns {
    height: 100%;
    width: 100%;
    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;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_product_card.cs_style_1 .cs_card_btns a {
    height: 50px;
    width: 50px;
    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;
    margin: 6px;
    background-color: #19e4fd;
    color: #fff;
    border-radius: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.cs_product_card.cs_style_1 .cs_card_btns a:hover {
    background-color: #fff;
    color: #19e4fd;
}

.cs_product_card.cs_style_1 .cs_product_title {
    font-size: 21px;
    margin-bottom: 7px;
    font-weight: 600;
}

.cs_product_card.cs_style_1:hover .cs_card_btns {
    background-color: rgba(0, 0, 0, 0.4);
}

.cs_product_card.cs_style_1:hover .cs_card_btns a {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.cs_product_card.cs_style_1 .cs_product_price {
    margin-bottom: 0;
}

.cs_single_product_nav .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.cs_single_product_nav .slick-slide {
    padding: 0 10px;
}

.cs_single_product_thumb_mini img {
    width: 100%;
    border-radius: 5px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_single_product_nav {
    margin-top: 20px;
}

.cs_single_product_nav .slick-current img {
    border-color: #19e4fd;
}

.cs_single_product_nav .slick-slide:not(.slick-current) {
    cursor: pointer;
}

.cs_single_product_thumb_item {
    border-radius: 10px;
    overflow: hidden;
}

.cs_single_product_thumb_item img {
    width: 100%;
}

.cs_quantity {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    position: relative;
    width: 112px;
    height: 50px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_quantity_input {
    height: 100%;
    width: 100%;
    border: 1px solid #999696;
    background-color: transparent;
    border-radius: 5px;
    padding: 5px 30px 5px 20px;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cs_quantity_input:focus {
    border-color: #fff;
}

.cs_quantity_button {
    padding: 0;
    border: none;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2px 9px;
    cursor: pointer;
    font-size: 14px;
    position: absolute;
    right: 1px;
}

.cs_quantity_button.cs_increment {
    top: 7px;
}

.cs_quantity_button.cs_decrement {
    bottom: 7px;
}

.cs_quantity_button:hover {
    color: #19e4fd;
}

.cs_quantity_buttons {
    position: absolute;
    top: 1px;
    right: 1px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: calc(100% - 2px);
    width: 34px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.cs_quantity_and_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.cs_product_btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 45px;
    background-color: #19e4fd;
    color: #fff;
    border-radius: 5px;
    outline: none;
    border: none;
    white-space: nowrap;
}

.cs_product_btn:hover {
    opacity: 0.8;
    color: #fff;
}

.cs_product_btn.cs_color1 {
    background-color: #000;
}

.cs_product_btn.cs_color1:hover {
    background-color: #19e4fd;
}

@media (max-width: 380px) {
    .cs_product_btn {
        padding-left: 20px;
        padding-right: 20px;
    }
}

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

.cs_single_product_info b {
    font-weight: 600;
    color: #121212;
}

.cs_single-product-details {
    line-height: 1.8em;
    padding-left: 50px;
}

@media (max-width: 991px) {
    .cs_single-product-details {
        padding-left: 0;
        padding-top: 40px;
    }
}

.cs_single-product-details h2 {
    font-size: 30px;
    margin-bottom: 8px;
}

.cs_single-product-details .cs_single_product_price {
    font-size: 21px;
    line-height: 1.5em;
}

.cs_single-product-details .cs_single-product-details-text p {
    margin-bottom: 18px;
}

.cs_single-product-details .cs_single-product-details-text p:last-child {
    margin-bottom: 0;
}

.cs_single-product-details .cs_single_product-price_review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cs_product_tab {
    padding: 0;
    margin: 0;
    list-style: none;
    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;
    color: #121212;
    gap: 10px 52px;
}

@media (max-width: 575px) {
    .cs_product_tab {
        gap: 10px 30px;
    }
}

.cs_product_tab li a {
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.cs_product_tab li a::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: currentColor;
    bottom: 0;
}

.cs_product_tab li.active a::before {
    width: 100%;
}

.cs_product_meta_info {
    border-top: 1px solid #a3a3a3;
    padding-top: 40px;
}

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

.cs_input_rating_wrap p {
    margin: 0 14px 0 0;
}

.cs_client_review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.cs_client_review .cs_review_media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cs_client_review .cs_review_media_right {
    padding-top: 6px;
}

.cs_client_review .cs_review_media_thumb {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cs_client_review .cs_review_media_thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cs_client_review .cs_review_text {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    line-height: 1.8em;
    margin-top: 30px;
}

.cs_client_review .cs_review_posted_by {
    margin-left: 65px;
    padding-top: 22px;
}

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

.cs_client_review_list li:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dddddd;
}

.cs_cart_table_media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .cs_cart_table_media {
        gap: 10px;
    }
}

.cs_cart_table_media img {
    width: 85px;
    border-radius: 5px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media (max-width: 991px) {
    .cs_cart_table_media img {
        width: 50px;
    }
}

.cs_cart_table_media h3 {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

.cs_cart-table-close {
    background-color: transparent;
    border: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cs_cart-table-close:hover {
    color: red;
}

@media (max-width: 991px) {
    .cs_cart_table {
        min-width: 500px;
    }
}

.cs_cart_table.cs_size1 {
    min-width: 900px;
}

.cs_cart_table th {
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6em;
    padding: 20px;
}

@media (max-width: 991px) {
    .cs_cart_table th {
        padding: 10px;
    }
}

.cs_cart_table td {
    border-top: none;
    border-bottom: 1px solid #dddddd;
    padding: 20px;
}

@media (max-width: 991px) {
    .cs_cart_table td {
        padding: 10px;
    }
}

@media (max-width: 991px) {
    .cs_cart_table .cs_quantity {
        width: 90px;
    }

    .cs_cart_table .cs_quantity_input {
        padding: 5px 35px 5px 10px;
    }
}

.cs_cart-offer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.cs_cart-offer .cs_shop-input {
    min-width: 160px;
    border-color: #19e4fd;
}

.cs_cart-offer .cs_cart-offer-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 450px) {
    .cs_cart-offer > *,
    .cs_cart-offer .cs_coupon-doce-form {
        width: 100%;
    }

    .cs_cart-offer .cs_product_btn {
        width: 100%;
    }
}

.cs_coupon-doce-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.cs_coupon-doce-form input {
    background-color: transparent;
    padding: 9px 15px;
    border: 1px solid #19e4fd;
    border-radius: 5px;
    height: 50px;
    width: 186px;
    outline: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_coupon-doce-form input::-webkit-input-placeholder {
    color: #4f4747;
}

.cs_coupon-doce-form input::-moz-placeholder {
    color: #4f4747;
}

.cs_coupon-doce-form input:-ms-input-placeholder {
    color: #4f4747;
}

.cs_coupon-doce-form input::-ms-input-placeholder {
    color: #4f4747;
}

.cs_coupon-doce-form input::placeholder {
    color: #4f4747;
}

.cs_coupon-doce-form input:-ms-input-placeholder {
    color: #4f4747;
}

.cs_coupon-doce-form input::-ms-input-placeholder {
    color: #fff;
}

.cs_coupon-doce-form input:focus {
    border-color: #4f4747;
}

@media (max-width: 450px) {
    .cs_coupon-doce-form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cs_coupon-doce-form input,
    .cs_coupon-doce-form button {
        width: 100%;
    }
}

.cs_shop-card {
    border: 5px solid #dddddd;
    border-radius: 2px;
    padding: 23px 30px 30px;
}

.cs_shop-card table {
    border-bottom: 1px solid #dddddd;
    margin: 0;
}

.cs_shop-card h2 {
    font-size: 30px;
    margin-bottom: 21px;
}

.cs_shop-card td {
    padding: 20px 10px;
}

.cs_shop-card td:first-child {
    padding-left: 0;
}

.cs_shop-card td:last-child {
    padding-right: 0;
}

.cs_shop-card .form-check {
    margin-bottom: 6px;
}

.cs_checkout-alert a {
    color: #19e4fd;
}

.cs_checkout-alert a:hover {
    text-decoration: underline;
}

.cs_shop-side-spacing {
    padding-left: 25px;
}

@media (max-width: 1199px) {
    .cs_shop-side-spacing {
        padding-left: 0;
    }
}

.cs_checkout-title {
    font-size: 30px;
    margin-bottom: 0px;
}

.cs_shop-input {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid #dddddd;
    padding: 11px 15px;
    border-radius: 5px;
    outline: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-bottom: 20px;
    min-height: 50px;
}

.cs_shop-input:focus {
    border-color: #121212;
}

.cs_shop-label {
    display: block;
    font-weight: 500;
    margin-bottom: 14px;
}

.cs_payment_text {
    font-size: 14px;
    line-height: 1.6em;
}

.cs_payment_text a {
    color: #19e4fd;
}

.cs_order-summery {
    background-color: #121212;
    list-style: none;
    padding: 25px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}

.cs_order-summery p {
    font-size: 14px;
    line-height: 1.6em;
    margin-bottom: 5px;
    color: #a3a3a3;
}

.cs_order-summery h3 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.cs_order-summery li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 55px;
    margin-right: 55px;
}

@media (max-width: 991px) {
    .cs_order-summery li:not(:last-child) {
        border-right: 0;
        padding-right: 0;
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .cs_order-summery li {
        width: 100%;
    }

    .cs_order-summery li:not(:last-child) {
        border-bottom: 1px solid #dddddd;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

.cs_header_cart {
    display: inline-block;
    position: relative;
}

.cs_header_cart:hover {
    color: #19e4fd;
}

.cs_header_cart_label {
    position: absolute;
    background-color: #19e4fd;
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    padding: 0 2px;
    min-width: 17px;
    text-align: center;
    border-radius: 1.6em;
    left: 11px;
    bottom: -9px;
    color: #fff;
}

.st-amount-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.st-amount-wrap #amount {
    border: none;
    padding: 0;
    color: #4f4747;
    width: 100%;
    background-color: transparent;
    outline: none;
}

.st-amount-wrap .st-filter-btn {
    border: 1px solid #dddddd;
    background: transparent;
    color: #121212;
    font-weight: 500;
    padding: 2px 22px;
    outline: none;
    border-radius: 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1.5em;
}

.st-amount-wrap .st-filter-btn:hover {
    background-color: #19e4fd;
    border-color: #19e4fd;
    color: #fff;
}

.ui-widget.ui-widget-content {
    border: 0;
    margin-bottom: 15px;
    background-color: #dddddd;
    margin-top: 5px;
}

.ui-widget-header {
    background: #19e4fd;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #19e4fd;
    background: #19e4fd;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #19e4fd;
    background: #19e4fd;
    outline: none;
}

.ui-slider-horizontal {
    height: 6px;
    border-radius: 3px;
}

.ui-slider .ui-slider-handle {
    top: -5px;
    height: 16px;
    border-radius: 3px;
    width: 10px;
}

.ui-slider .ui-slider-handle:focus {
    outline: none;
}

.ui-slider-horizontal .ui-slider-range {
    border-radius: 0;
}

.cs_pagination_box {
    margin: -7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cs_pagination_box .cs_pagination_item {
    margin: 7px;
}

.cs_pagination_item {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    background-color: #000;
}

.cs_pagination_item.active {
    background-color: #19e4fd;
    color: #fff;
    pointer-events: none;
}

.slick-slide > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cs_rating {
    width: 136px;
    height: 24px;
    position: relative;
}

.cs_rating > * {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.cs_rating .cs_rating_bg {
    opacity: 0.2;
}

.cs_rating .cs_rating_percentage {
    width: 50%;
}

.cs_rating.cs_size_sm {
    width: 83px;
    height: 15px;
    position: relative;
    font-size: 12px;
}

.cs_rating.cs_size_sm i:not(:last-child) {
    margin-right: 4px;
}

.cs_rating.cs_size_sm .cs_rating_bg,
.cs_rating.cs_size_sm .cs_rating_percentage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.cs_rating.cs_size_sm .cs_rating_bg {
    opacity: 1;
}

.cs_shop_form_field {
    width: 100%;
    display: block;
    border: 1px solid #dddddd;
    padding: 11px 20px;
    outline: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: transparent;
}

.cs_shop_form_field:focus {
    border-color: #121212;
}

.form-check-input {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #dddddd;
    background-color: transparent;
}

.form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #dddddd;
}

.form-check-input:checked {
    border: #19e4fd;
    background-color: #19e4fd;
    -webkit-box-shadow: none;
    box-shadow: none;
}



/* --------------------------------------------------------------
  24. Dark Mode
---------------------------------------------------------------- */
.cs_dark {
    color: #a3a3a3;
    background-color: #171717;

    /* Start Shop */
    /* End Shop */
}

.cs_dark h1,
.cs_dark h2,
.cs_dark h3,
.cs_dark h4,
.cs_dark h5,
.cs_dark h6,
.cs_dark .cs_primary_color,
.cs_dark .cs_btn.cs_style_1,
.cs_dark .cs_btn.cs_style_1 i,
.cs_dark .cs_pricing_control,
.cs_dark .cs_nav .cs_nav_list,
.cs_dark input,
.cs_dark textarea,
.cs_dark .cs-sidebar_search_btn:hover,
.cs_dark .cs_iconbox_3_list .cs_hover_tab.active .cs_iconbox_icon {
    color: #fff;
}

.cs_dark .cs_hero.cs_style_1 .cs_video_block_wrap::before,
.cs_dark .cs_progressbar.cs_style_1 .cs_progress_in::before,
.cs_dark .cs_round_progress_wrap {
    background-color: #171717;
}

.cs_dark .cs_pagination.cs_style_1 .swiper-pagination-bullet {
    background-color: #a3a3a3;
}

.cs_dark .cs_swiper_navigation.cs_style_1 > :not(:last-child) {
    border-color: #a3a3a3;
}

.cs_dark .cs_accordian_toggle::before,
.cs_dark .cs_accordian_toggle::after,
.cs_dark .cs_pricing_control .cs_switch {
    background-color: #fff;
}

.cs_dark .cs_accordian_toggle {
    border-color: #fff;
}

.cs_dark .cs_gray_bg,
.cs_dark .cs_pricing_control .cs_switch::before {
    background-color: #121212;
}

.cs_dark .cs_moving_text_wrap.cs_style_1,
.cs_dark .cs_cta.cs_style_2 .cs_cta_title {
    -webkit-text-stroke-color: #fff;
}

.cs_dark .cs_iconbox.cs_style_4,
.cs_dark .cs_accordians.cs_style_1.cs_type_1 .cs_accordian:not(:last-child),
.cs_dark .cs_brands.cs_style_2 .cs_brand,
.cs_dark .cs_case_study_info,
.cs_dark .cs_accordian,
.cs_dark .cs_round_progress_in::after,
.cs_dark .cs_iconbox.cs_style_3 .cs_iconbox_icon,
.cs_dark .cs_iconbox_3_list > *:not(:last-child),
.cs_dark .cs_image_box_1_list.cs_color_1 li:not(:last-child),
.cs_dark .cs_pricing_table.cs_style1 .cs_pricing_info,
.cs_dark .cs_image_box_1_list li:not(:last-child),
.cs_dark .cs-sidebar_search input,
.cs_dark .cs_author_card,
.cs_dark .cs_form_field_2 {
    border-color: #4f4747;
}

.cs_dark .cs_counter_1_wrap .cs_counter.cs_style_1:not(:nth-child(4n+0))::before {
    background-color: #474747;
}

.cs_dark .cs_form_field_2:focus,
.cs_dark .cs_iconbox_3_list .cs_hover_tab.active .cs_iconbox_icon {
    border-color: #19e4fd;
}

.cs_dark .cs_iconbox.cs_style_3 .cs_iconbox_icon {
    color: #474747;
}

.cs_dark .cs_gray_bg_2,
.cs_dark .cs_gray_bg_3 {
    background-color: rgba(79, 71, 71, 0.1);
}

.cs_dark .cs_accent_color {
    color: #19e4fd;
}

.cs_dark .cs_newsletter.cs_style_1 .cs_btn.cs_style_1 {
    border-color: #121212;
    color: #121212;
}

.cs_dark .cs_newsletter.cs_style_1 .cs_btn.cs_style_1:hover {
    background-color: #121212;
    color: #fff;
}

.cs_dark .cs_newsletter.cs_style_1 .cs_btn.cs_style_1 i {
    color: #121212;
}

.cs_dark .cs_portfolio.cs_style_2 .cs_portfolio_thumb::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(25, 25, 25, 0.99)), color-stop(49.95%, rgba(25, 25, 25, 0)));
    background: linear-gradient(90deg, rgba(25, 25, 25, 0.99) 0%, rgba(25, 25, 25, 0) 49.95%);
}

.cs_dark .cs_mission h2,
.cs_dark .cs_mission p,
.cs_dark .cs_mission .cs_primary_color,
.cs_dark .cs_vision h2,
.cs_dark .cs_vision p,
.cs_dark .cs_vision .cs_primary_color {
    color: #121212;
}

.cs_dark .cs_about.cs_style_2 .cs_sales_card h3 {
    color: #121212;
}

.cs_dark .cs_progress {
    background-color: #dddddd;
}

.cs_dark .cs_hero.cs_style_4 .cs_hero_shape svg path {
    stroke: #4f4747;
    opacity: 0.5;
}

.cs_dark .cs_nav .cs_nav_list ul,
.cs_dark .cs_primary_bg,
.cs_dark .cs_primary_bg_hover:hover,
.cs_dark .cs_gescout_sticky,
.cs_dark .cs_site_header.cs_style_1.cs_color_1.cs_gescout_show,
.cs_dark .cs_nav .cs_nav_list > li > ul::before {
    background-color: #000;
}

@media (max-width: 1199px) {
    .cs_dark .cs_nav .cs_nav_list ul {
        background-color: transparent;
    }

    .cs_dark .cs_nav .cs_nav_list {
        background-color: #000;
    }
}

.cs_dark .cs_author_card .cs_social_btns.cs_style_1 a {
    border-color: #fff;
    color: #fff;
}

.cs_dark .cs_author_card .cs_social_btns.cs_style_1 a:hover {
    color: #19e4fd;
    border-color: #19e4fd;
}

.cs_dark .cs_form_field {
    color: #121212;
    background-color: #fff;
}

.cs_dark .cs_section_heading.cs_style_1.cs_type_3 .cs_shape_1,
.cs_dark .cs_section_heading.cs_style_1.cs_type_3 .cs_shape_2,
.cs_dark .cs_section_heading.cs_style_1.cs_type_3 .cs_shape_3 {
    border-color: rgba(163, 163, 163, 0.1);
}

.cs_dark .swiper-pagination-bullets.cs_number_pagination .swiper-pagination-bullet:hover,
.cs_dark .swiper-pagination-bullets.cs_number_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #fff;
    color: #fff;
}

.cs_dark .cs_single_product_info b,
.cs_dark .cs_shop_search .cs_shop_search_input,
.cs_dark .cs_product_tab,
.cs_dark .cs_quantity,
.cs_dark .cs_shop-input {
    color: #fff;
}

.cs_dark .cs_product_meta_info,
.cs_dark .cs_shop_search .cs_shop_search_input,
.cs_dark .cs_shop_sidebar_tag_list a,
.cs_dark .cs_shop_form_field,
.cs_dark table td,
.cs_dark table th,
.cs_dark .cs_shop-card,
.cs_dark .cs_quantity_input,
.cs_dark .cs_shop-card table,
.cs_dark .cs_shop-input,
.cs_dark .cs_order-summery li:not(:last-child),
.cs_dark .cs_portfolio_details_info,
.cs_dark .cs_hero.cs_style_3 .cs_moving_text_wrap {
    border-color: #4f4747;
}

.cs_dark .cs_shop-input:focus,
.cs_dark .cs_shop_search .cs_shop_search_input:focus,
.cs_dark .cs_coupon-doce-form input:focus {
    border-color: #fff;
}

.cs_dark .cs_page_navigation > div:not(:last-child)::after {
    background-color: #4f4747;
}

.cs_dark .cs_shop_sidebar,
.cs_dark .cs_order-summery {
    background-color: #000;
}

.cs_dark .cs_coupon-doce-form input::-webkit-input-placeholder,
.cs_dark .cs_shop_search .cs_shop_search_input::-webkit-input-placeholder,
.cs_dark .cs_shop_form_field::-webkit-input-placeholder {
    color: #e4e4e4;
    opacity: 1;
}

.cs_dark .cs_coupon-doce-form input::-moz-placeholder,
.cs_dark .cs_shop_search .cs_shop_search_input::-moz-placeholder,
.cs_dark .cs_shop_form_field::-moz-placeholder {
    color: #e4e4e4;
    opacity: 1;
}

.cs_dark .cs_coupon-doce-form input:-ms-input-placeholder,
.cs_dark .cs_shop_search .cs_shop_search_input:-ms-input-placeholder,
.cs_dark .cs_shop_form_field:-ms-input-placeholder {
    color: #e4e4e4;
    opacity: 1;
}

.cs_dark .cs_coupon-doce-form input::-ms-input-placeholder,
.cs_dark .cs_shop_search .cs_shop_search_input::-ms-input-placeholder,
.cs_dark .cs_shop_form_field::-ms-input-placeholder {
    color: #e4e4e4;
    opacity: 1;
}

.cs_dark .cs_coupon-doce-form input::placeholder,
.cs_dark .cs_shop_search .cs_shop_search_input::placeholder,
.cs_dark .cs_shop_form_field::placeholder {
    color: #e4e4e4;
    opacity: 1;
}

.cs_dark .cs_coupon-doce-form input::-ms-input-placeholder,
.cs_dark .cs_shop_search .cs_shop_search_input::-ms-input-placeholder,
.cs_dark .cs_shop_form_field::-ms-input-placeholder {
    color: #e4e4e4;
}

.cs_dark .cs_shop_search .cs_shop_search_btn svg path {
    fill: #fff;
}

.cs_dark .st-amount-wrap #amount {
    color: #a3a3a3;
}

.cs_dark .cs_shop_sidebar_tag_list a:hover {
    border-color: #19e4fd;
}

.cs_dark .cs_shape_animation_3 .cs_shape_1 {
    color: #4f4747;
}

.cs_dark .cs_shape_animation_3 .cs_shape_1 .anio_3_c_1 {
    fill: #171717;
}



/* --------- VIDEOS --------- */
        .cs_video_block_wrap video,
        .cs_img_card video {
            width: 100% !important;
            height: auto !important;
            border-radius: 12px;
            max-width: 100%;
            display: block;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .cs_video_block_wrap video,
            .cs_img_card video {
                min-height: 200px;
                max-height: 60vw;
                object-fit: cover;
            }
        }

.cs_counter {
    border-bottom: none !important; /* Por defecto, nunca hay borde */
}

@media (max-width: 991px) {
    .cs_counter {
        border-bottom: none !important; /* También asegúrate en tablet */
    }
}

@media (max-width: 600px) {
    .cs_counter {
        border-bottom: 1px solid #eee !important;  /* Solo en móvil */
    }
    .cs_counter:last-child {
        border-bottom: none !important;
    }
}

        /* --------- IMÁGENES Y VIDEOS GRANDES --------- */
        .cs_img_card img,
        .cs_img_card video {
            width: 100% !important;
            height: auto !important;
            max-width: 100%;
            object-fit: cover;
        }

        /* --------- TIPOGRAFÍA --------- */
        .cs_fs_68 { font-size: 3.5rem; }
        .cs_fs_50 { font-size: 2.2rem; }
        @media (max-width: 768px) {
            .cs_fs_68 { font-size: 2.1rem; }
            .cs_fs_50 { font-size: 1.5rem; }
            .cs_iconbox_title, .cs_portfolio_title { font-size: 1.1rem; }
        }

        /* --------- ESPACIADOS --------- */
        .cs_height_125, .cs_height_143, .cs_height_150, .cs_height_135, .cs_height_185, .cs_height_93 {
            height: 60px !important;
        }
        @media (max-width: 768px) {
            .cs_height_125, .cs_height_143, .cs_height_150, .cs_height_135, .cs_height_185, .cs_height_93 {
                height: 30px !important;
            }
        }

        /* --------- SWIPER --------- */
        .cs_post img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* --------- MOVING TEXT --------- */
        .cs_moving_text_wrap {
            font-size: 2.2rem;
        }
        @media (max-width: 768px) {
            .cs_moving_text_wrap {
                font-size: 1.3rem;
            }
        }
        
        @keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(32px);}
  100% { opacity: 1; transform: translateY(0);}
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1.1s cubic-bezier(.19,1,.22,1) forwards;
  animation-delay: .06s;
}
.empresa-link { text-decoration: none !important; }
.empresa-box-blue {
  min-height: 330px;
  max-height: 390px;
  height: 100%;
  background: #111;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(20,20,40,0.15);
  cursor: pointer;
  position: relative;
  transition: box-shadow .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1), border-color 0.44s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.19,1,.22,1);
  will-change: transform, box-shadow;
  display: flex; flex-direction: column; justify-content: center;
  /* Borde LED azul claro */
  border: 3px solid #19e4fd;
  box-shadow: 0 0 18px 0 #19e4fd99, 0 8px 32px 0 rgba(20,20,40,0.12);
  animation: ledBlueBorder 3s infinite alternate;
}
@keyframes ledBlueBorder {
  0%   { box-shadow: 0 0 10px #19e4fd, 0 0 20px #19e4fd66, 0 8px 32px 0 rgba(20,20,40,0.12);}
  80%  { box-shadow: 0 0 26px #19e4fd, 0 0 44px #19e4fdcc, 0 8px 32px 0 rgba(20,20,40,0.16);}
  100% { box-shadow: 0 0 12px #19e4fd, 0 0 30px #19e4fdcc, 0 8px 32px 0 rgba(20,20,40,0.17);}
}
.empresa-img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 330px; max-height: 390px;
  transition: transform 1.3s cubic-bezier(.24,1.08,.45,.98), filter .5s cubic-bezier(.24,1.08,.45,.98);
  will-change: transform, filter;
}
.empresa-overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10,11,16,0.62);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: background 0.7s cubic-bezier(.24,1.08,.45,.98);
  text-align: center;
}
.empresa-logo {
  width: 230px; max-width: 75%; height: auto;
  display: block; margin-left: auto; margin-right: auto;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.25));
  transition: transform .85s cubic-bezier(.4,0,.2,1), filter .5s;
  z-index: 3;
}
.empresa-hover-content {
  opacity: 0; transform: translateY(40px) scale(0.95);
  transition: opacity 0.5s cubic-bezier(.24,1.08,.45,.98), transform 0.6s cubic-bezier(.24,1.08,.45,.98);
  will-change: opacity, transform;
}
.empresa-hover-text {
  color: #fff;
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: .01em;
  z-index: 5;
  text-shadow: 0 4px 18px rgba(0,0,0,0.22);
}
/* Botón azul claro */
.empresa-btn-blue {
  background: #19e4fd;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 32px;
  font-weight: 600;
  font-size: 1.12rem;
  box-shadow: 0 6px 22px 0 #19e4fd44;
  transition: background .18s, color .18s, transform .4s cubic-bezier(.4,0,.2,1);
  cursor: pointer; outline: none;
}
.empresa-btn-blue:hover, .empresa-btn-blue:focus {
  background: #fff;
  color: #19e4fd;
  transform: scale(1.09);
}
.empresa-box-blue:hover, .empresa-box-blue:focus-within {
  box-shadow: 0 0 54px 15px #19e4fdcc, 0 20px 60px 0 rgba(22,24,28,0.19);
  transform: translateY(-6px) scale(1.022);
  border-color: #19e4fd;
}
.empresa-box-blue:hover .empresa-img, .empresa-box-blue:focus-within .empresa-img {
  transform: scale(1.10) rotate(-1.5deg);
  filter: brightness(0.77) blur(1px) grayscale(5%);
}
.empresa-box-blue:hover .empresa-overlay, .empresa-box-blue:focus-within .empresa-overlay {
  background: rgba(10,11,16,0.91);
}
.empresa-box-blue:hover .empresa-logo, .empresa-box-blue:focus-within .empresa-logo {
  transform: translateY(-22px) scale(1.17) rotate(-2deg);
  filter: drop-shadow(0 10px 34px rgba(0,0,0,0.32));
}
.empresa-box-blue:hover .empresa-hover-content,
.empresa-box-blue:focus-within .empresa-hover-content {
  opacity: 1;
  transform: translateY(0) scale(1.02);
}
@media (max-width: 991.98px) {
  .empresa-box-blue { min-height: 200px; max-height: 250px; }
  .empresa-img { min-height: 200px; max-height: 250px; }
  .empresa-logo { width: 110px; }
}
@media (max-width: 767.98px) {
  .empresa-box-blue { min-height: 130px; max-height: 180px; }
  .empresa-img { min-height: 130px; max-height: 180px; }
  .empresa-logo { width: 62px; }
  .empresa-btn-blue { font-size: 1rem; padding: 8px 19px;}
  .empresa-hover-text { font-size: 1rem;}
}

