@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --web-wash: #0a0909;
    --heading-color: #fff;
    --body-color: rgba(255, 255, 255, 0.7);
    --ternary: #88a5ad;
    --accent-color: #117552;
    --gray: #f7f7f7;
    --border: #dddddd;
    --heading-font: "Josefin Sans", sans-serif;
    --body-font: "Montserrat", sans-serif;
}

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

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

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

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

h1 {
    font-size: 56px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 15px;
}

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

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

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

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

address {
    margin: 0 0 15px;
}

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

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

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

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

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

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

b,
strong {
    font-weight: bold;
}

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

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

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

/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.cs_preloader {
    position: fixed;
    z-index: 99999;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--web-wash);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.cs_preloader::before,
.cs_preloader::after {
    content: "";
    width: 514px;
    height: 514px;
    border-radius: 50%;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(24, 255, 155, 0.5)),
        to(rgba(14, 153, 116, 0.5))
    );
    background: linear-gradient(
        180deg,
        rgba(24, 255, 193, 0.5) 0%,
        rgba(14, 153, 100, 0.5) 100%
    );
    -webkit-filter: blur(250px);
    filter: blur(250px);
    position: absolute;
    pointer-events: none;
}
.cs_preloader::before {
    top: -95px;
    left: -121px;
}
.cs_preloader::after {
    right: -80px;
    top: 190px;
}

.cs_preloader_in {
    background: linear-gradient(116.85deg, #18ffd8 0%, #1ea05b 100%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    -webkit-animation: spin 0.5s ease-in-out infinite;
    animation: spin 0.5s ease-in-out infinite;
}

.cs_preloader span {
    font-weight: 600;
    left: 50%;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 12px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
  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;
    }
}
@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;
    }
}
/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/
.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_radius_20 {
    border-radius: 20px;
}

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

.cs_row_gap_60 {
    margin-left: -30px;
    margin-right: -30px;
}
.cs_row_gap_60 > * {
    padding-left: 30px;
    padding-right: 30px;
}

.cs_gap_y_24 {
    gap: 24px 0;
}

.cs_gap_y_30 {
    gap: 30px 0;
}

.cs_gap_y_35 {
    gap: 35px 0;
}

.cs_gap_y_40 {
    gap: 40px 0;
}

.cs_gap_y_45 {
    gap: 45px 0;
}

.cs_gap_y_50 {
    gap: 50px 0;
}

.cs_gap_y_60 {
    gap: 60px 0;
}

.cs_gap_y_65 {
    gap: 65px 0;
}

.cs_gap_y_80 {
    gap: 80px 0;
}

.cs_gap_y_100 {
    gap: 100px 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_bg_fixed {
    background-attachment: fixed;
}
@media (max-width: 1370px) {
    .cs_bg_fixed {
        background-attachment: initial;
    }
}

.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_primary_color {
    color: var(--heading-color);
}

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

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

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

.cs_gradient_color {
    background: linear-gradient(108.18deg, #823fff 40%, #e018ff 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

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

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

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

label {
    display: inline-block;
    margin-bottom: 7px;
}
@media (max-width: 991px) {
    label {
        margin-bottom: 2px;
    }
}

.cs_btn.cs_style_1 {
    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;
    font-size: 18px;
    line-height: 1.5em;
    padding: 1px;
    border-radius: 8px;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e018ff),
        to(#823fff)
    );
    background: linear-gradient(90deg, #e018ff 0%, #823fff 100%);
}
@media (max-width: 767px) {
    .cs_btn.cs_style_1 {
        font-size: 16px;
    }
}
.cs_btn.cs_style_1 span {
    color: var(--heading-color);
    padding: 10px 32px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.cs_btn.cs_style_1:hover span {
    color: var(--heading-color);
    background-color: var(--web-wash);
}
.cs_btn.cs_style_1.cs_type_1 span {
    background-color: var(--web-wash);
}
.cs_btn.cs_style_1.cs_type_1:hover span {
    background-color: transparent;
}

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

.container-fluid {
    width: 100%;
    max-width: 1920px;
    padding: 0 12px;
    margin: 0 auto;
}

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

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

@media (min-width: 1600px) {
    .cs_about_thumbnail {
        margin-right: -60px;
    }
}

.cs_hostory_thumbnail {
    padding-right: 50px;
    position: relative;
    z-index: 1;
}
.cs_hostory_thumbnail.cs_type_1 {
    padding-right: 0;
}
@media (max-width: 991px) {
    .cs_hostory_thumbnail {
        padding-right: 0;
    }
}

.cs_history_content {
    max-width: 560px;
}
@media (max-width: 991px) {
    .cs_history_content {
        max-width: 100%;
    }
}
.cs_history_content .cs_section_heading.cs_style_1 {
    margin-bottom: 23px;
}
.cs_history_content .cs_list.cs_style_1 {
    margin-bottom: 38px;
}
.cs_history_content .cs_history_subtitle {
    margin-bottom: 30px;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    text-align: justify;
}

.cs_list.cs_style_1 .cs_list_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 10px;
}
.cs_list.cs_style_1 .cs_list_item:not(:last-child) {
    margin-bottom: 15px;
}
.cs_list.cs_style_1 .cs_list_icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 1.1rem;
    margin-top: .1rem;
}
.cs_list.cs_style_1 .cs_list_text {
    font-size: 15px;
    margin-top: 0.2rem;
    font-weight: 500;
    line-height: 1.5em;
    /* color: var(--heading-color); */
    color: #444;
}

.cs_shape_wrap {
    position: relative;
}
.cs_shape_wrap .cs_shape {
    width: 514px;
    height: 514px;
    border-radius: 50%;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(224, 24, 255, 0.5)),
        to(rgba(134, 14, 153, 0.5))
    );
    background: linear-gradient(
        180deg,
        rgba(224, 24, 255, 0.5) 0%,
        rgba(134, 14, 153, 0.5) 100%
    );
    -webkit-filter: blur(250px);
    filter: blur(250px);
    position: absolute;
    pointer-events: none;
}

/* > *:not(.cs_shape) {
    position: relative;
    z-index: 5;
} */

.cs_hero_shapes_1 .cs_shape_position_1 {
    top: -95px;
    left: -121px;
}
.cs_hero_shapes_1 .cs_shape_position_2 {
    right: -80px;
    top: 190px;
}

.cs_about_shapes_1 .cs_shape_position_1 {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cs_history_shapes_1 .cs_shape_position_1 {
    bottom: 50px;
    right: 20%;
    opacity: 0.7;
}
.cs_history_shapes_1 .cs_shape_position_2 {
    left: 4%;
    bottom: 50px;
    opacity: 0.7;
}
.cs_history_shapes_1 .cs_shape_position_3 {
    bottom: 50px;
    right: -30px;
    opacity: 0.7;
}

.cs_collection_shapes_1 .cs_shape_position_1 {
    width: 682px;
    height: 682px;
    left: 50%;
    top: 32px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0.5;
}

.cs_timeline_shapes_1 .cs_shape_position_1 {
    top: 220px;
    left: -300px;
}
.cs_timeline_shapes_1 .cs_shape_position_2 {
    bottom: 0;
    right: -300px;
}
.cs_timeline_shapes_1 .cs_shape_position_3 {
    width: 610px;
    height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.cs_timeline_shapes_1 .cs_shape_position_3 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cs_team_shapes_1 .cs_shape_position_1 {
    top: 230px;
    left: -75px;
    z-index: 3;
}
.cs_team_shapes_1 .cs_shape_position_2 {
    top: 230px;
    right: -76px;
    z-index: 3;
}
.cs_team_shapes_1 .cs_shape_position_3 {
    top: -76px;
    right: -76px;
}

.cs_faq_shapes_1 .cs_shape_position_1 {
    left: 50%;
    bottom: 24px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0.9;
}
.cs_faq_shapes_1 .cs_shape_position_2 {
    top: 0;
    left: -76px;
}
.cs_faq_shapes_1 .cs_shape_position_3 {
    top: 0;
    right: -76px;
}

.cs_blog_shapes_1 .cs_shape_position_1 {
    bottom: 0;
    right: -100px;
}
.cs_blog_shapes_1 .cs_shape_position_2 {
    top: 0;
    left: -76px;
}
.cs_blog_shapes_1 .cs_shape_position_3 {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cs_footer_shapes_1 .cs_shape_position_1 {
    top: -290px;
    left: -76px;
}

.cs_section_heading.cs_style_1 .cs_section_subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 1.143em;
    text-transform: uppercase;
    opacity: 0.7;
    background: var(--linear, linear-gradient(90deg, #e018ff 0%, #823fff 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
}
.cs_section_heading.cs_style_1 .cs_section_subtitle_type_2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: var(--linear, linear-gradient(90deg, #e018ff 0%, #823fff 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -text-stroke: 1px transparent;
    -webkit-text-stroke: 1px transparent;
    font-size: 32px;
    line-height: 1.31em;
    color: var(--web-wash);
    letter-spacing: 9px;
    text-transform: capitalize;
    margin-bottom: 32px;
}
.cs_section_heading.cs_style_1 .cs_section_title {
    font-size: 48px;
    font-weight: 800;
}
@media (max-width: 767px) {
    .cs_section_heading.cs_style_1 .cs_section_title {
        font-size: 40px;
    }
    .cs_section_heading.cs_style_1 .cs_section_title br {
        display: none;
    }
}

.cs_zoom {
    overflow: hidden;
}
.cs_zoom .cs_zoom_in {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.cs_zoom:hover .cs_zoom_in {
    -webkit-transform: translateX(-10px) scale(1.06);
    transform: translateX(-10px) scale(1.06);
}

/*--------------------------------------------------------------
  Accordian styling
----------------------------------------------------------------*/
.cs_accordian.cs_style_1 {
    background-color: rgba(217, 217, 217, 0.06);
    position: relative;
    z-index: 1;
}
.cs_accordian.cs_style_1:not(:last-child) {
    margin-bottom: 24px;
}
.cs_accordian.cs_style_1 .cs_accordian_body {
    padding: 0px 20px 30px 54px;
}
@media (max-width: 575px) {
    .cs_accordian.cs_style_1 .cs_accordian_body {
        padding: 0px 20px 30px 20px;
    }
}
.cs_accordian.cs_style_1 .cs_accordian_head {
    padding: 30px 54px;
    position: relative;
    font-size: 16px;
    line-height: 1.5em;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
}
@media (max-width: 575px) {
    .cs_accordian.cs_style_1 .cs_accordian_head {
        padding: 30px 50px 30px 20px;
    }
    .cs_accordian.cs_style_1 .cs_accordian_head::after,
    .cs_accordian.cs_style_1 .cs_accordian_head::before {
        display: none;
    }
}
.cs_accordian.cs_style_1 .cs_accordian_head::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 3.5px solid transparent;
    border-left: 14px solid var(--heading-color);
    border-bottom: 3.5px solid transparent;
    position: absolute;
    top: 40px;
    left: 20px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cs_accordian.cs_style_1 .cs_accordian_head::before {
    content: "";
    width: 14px;
    height: 2px;
    background-color: var(--heading-color);
    position: absolute;
    top: 40px;
    left: 20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cs_accordian.cs_style_1 .cs_accordian_toggle {
    font-size: 14px;
    position: absolute;
    top: 30px;
    right: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_accordian.cs_style_1.active {
    grid-row: span 2;
}
.cs_accordian.cs_style_1.active .cs_accordian_head {
    pointer-events: none;
}
.cs_accordian.cs_style_1.active .cs_accordian_head::after {
    visibility: hidden;
    opacity: 0;
}
.cs_accordian.cs_style_1.active .cs_accordian_head::before {
    visibility: visible;
    opacity: 1;
}
.cs_accordian.cs_style_1.active .cs_accordian_toggle {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/*--------------------------------------------------------------
  Timeline styling
----------------------------------------------------------------*/
.cs_timeline_wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.cs_timeline_wrapper_2 {
    width: 100%;
    max-width: 1440px;
    height: 600px;
    margin: 0 auto;
}
@media (max-width: 1347px) {
    .cs_timeline_wrapper_2 {
        height: 650px;
    }
}
@media (max-width: 1199px) {
    .cs_timeline_wrapper_2 {
        max-width: 780px;
        height: auto;
        margin: 0 auto;
    }
}

.cs_timeline_list.cs_style_2 {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .cs_timeline_list.cs_style_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: start;
    }
}
.cs_timeline_list.cs_style_2 .cs_timeline_item {
    position: relative;
}
@media (max-width: 1199px) {
    .cs_timeline_list.cs_style_2 .cs_timeline_item {
        width: 50%;
        max-width: 310px;
    }
}
.cs_timeline_list.cs_style_2 .cs_timeline_item:nth-child(even) {
    margin-bottom: auto;
    margin-left: -130px;
    margin-right: -130px;
}
.cs_timeline_list.cs_style_2 .cs_timeline_item:nth-child(even)::after {
    bottom: -95px;
    top: initial;
    left: 50%;
}
@media (max-width: 1199px) {
    .cs_timeline_list.cs_style_2 .cs_timeline_item:nth-child(even)::after {
        bottom: initial;
        top: 50%;
        left: -100px;
    }
}
@media (max-width: 800px) {
    .cs_timeline_list.cs_style_2 .cs_timeline_item:nth-child(even)::after {
        left: -82px;
    }
}
@media (max-width: 1199px) {
    .cs_timeline_list.cs_style_2 .cs_timeline_item:nth-child(even) {
        margin-left: auto;
        margin-right: 0;
    }
}
.cs_timeline_list.cs_style_2
    .cs_timeline_item:nth-child(even)
    .cs_iconbox_progress {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.cs_timeline_list.cs_style_2 .cs_timeline_item::after {
    content: "\f00c";
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--heading-color);
    border-radius: 50%;
    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;
    left: 50%;
    top: -100px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    font-size: 20px;
    font-family: "Font Awesome 6 Free";
}
@media (max-width: 1199px) {
    .cs_timeline_list.cs_style_2 .cs_timeline_item::after {
        top: 50%;
        right: -100px;
        left: initial;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@media (max-width: 800px) {
    .cs_timeline_list.cs_style_2 .cs_timeline_item::after {
        right: -82px;
    }
}
.cs_timeline_list.cs_style_2::after {
    content: "";
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(33%, currentColor),
        color-stop(0%, rgba(255, 255, 255, 0))
    );
    background-image: linear-gradient(
        to right,
        currentColor 33%,
        rgba(255, 255, 255, 0) 0%
    );
    background-position: bottom;
    background-size: 31px 1px;
    background-repeat: repeat-x;
    height: 1px;
    width: calc(100% - 270px);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
    .cs_timeline_list.cs_style_2::after {
        background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(40%, currentColor),
            color-stop(0%, rgba(255, 255, 255, 0))
        );
        background-image: linear-gradient(
            to bottom,
            currentColor 40%,
            rgba(255, 255, 255, 0) 0%
        );
        background-position: left;
        background-size: 1px 23px;
        background-repeat: repeat-y;
        width: 1px;
        height: calc(100% - 230px);
        position: absolute;
        left: 50%;
        top: 53%;
        -webkit-transform: translate(-50%, -53%);
        transform: translate(-50%, -53%);
    }
}

.cs_timeline_list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}
@media (max-width: 767px) {
    .cs_timeline_list {
        gap: 30px;
    }
    .cs_timeline_list::after {
        display: none;
    }
}
.cs_timeline_list .cs_timeline_heading {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: var(--linear, linear-gradient(90deg, #e018ff 10%, #823fff 90%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-size: 24px;
}
.cs_timeline_list .cs_timeline_item {
    width: 50%;
    max-width: 370px;
    position: relative;
}
@media (max-width: 991px) {
    .cs_timeline_list .cs_timeline_item {
        max-width: 310px;
    }
}
@media (max-width: 767px) {
    .cs_timeline_list .cs_timeline_item {
        min-width: 100%;
        padding-left: 20px;
    }
}
.cs_timeline_list .cs_timeline_item:nth-child(even) {
    margin-left: auto;
}
.cs_timeline_list .cs_timeline_item:nth-child(even) .cs_iconbox_progress {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.cs_timeline_list .cs_timeline_item:nth-child(even)::after {
    right: initial;
    left: -100px;
}
@media (max-width: 991px) {
    .cs_timeline_list .cs_timeline_item:nth-child(even)::after {
        left: -58px;
    }
}
.cs_timeline_list .cs_timeline_item::after {
    content: "\f00c";
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--heading-color);
    border-radius: 50%;
    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: 50%;
    right: -100px;
    z-index: 1;
    font-size: 20px;
    font-family: "Font Awesome 6 Free";
}
@media (max-width: 991px) {
    .cs_timeline_list .cs_timeline_item::after {
        right: -58px;
    }
}
@media (max-width: 767px) {
    .cs_timeline_list .cs_timeline_item::after {
        left: 0px !important;
    }
}
.cs_timeline_list::after {
    content: "";
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(40%, currentColor),
        color-stop(0%, rgba(255, 255, 255, 0))
    );
    background-image: linear-gradient(
        to bottom,
        currentColor 40%,
        rgba(255, 255, 255, 0) 0%
    );
    background-position: left;
    background-size: 1px 23px;
    background-repeat: repeat-y;
    width: 1px;
    height: calc(100% - 230px);
    position: absolute;
    left: 50%;
    top: 53%;
    -webkit-transform: translate(-50%, -53%);
    transform: translate(-50%, -53%);
}

.cs_cursor_lg,
.cs_cursor_sm {
    position: fixed;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    mix-blend-mode: exclusion;
    z-index: 9999;
}

.cs_cursor_lg {
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-color);
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.cs_cursor_sm {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

/*--------------------------------------------------------------
  5. Slider
----------------------------------------------------------------*/
.cs_slider {
    position: relative;
}

.slick-arrow {
    cursor: pointer;
}

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

.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_remove_overflow .slick-list {
    overflow: visible;
}
.cs_remove_overflow .slick-slide {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.cs_remove_overflow .slick-slide.slick-active {
    opacity: 1;
    visibility: visible;
}

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

.cs_slider_gap_90 .slick-slide {
    padding-left: 45px;
    padding-right: 45px;
}
.cs_slider_gap_90 .slick-list {
    margin-left: -45px;
    margin-right: -45px;
}

.cs_slider_arrows.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: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow::after {
    right: 100%;
}
.cs_slider_arrows.cs_style_1 .cs_right_arrow::after {
    left: 100%;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
    height: 40px;
    width: 40px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background-color: rgba(217, 217, 217, 0.1);
    border-radius: 50%;
    color: var(--heading-color);
    position: relative;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow.cs_after_hide::after,
.cs_slider_arrows.cs_style_1 .cs_right_arrow.cs_after_hide::after {
    display: none;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow::after,
.cs_slider_arrows.cs_style_1 .cs_right_arrow::after {
    content: "";
    width: 469px;
    height: 2px;
    background-color: var(--border);
    opacity: 0.15;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 1399px) {
    .cs_slider_arrows.cs_style_1 .cs_left_arrow::after,
    .cs_slider_arrows.cs_style_1 .cs_right_arrow::after {
        width: 350px;
    }
}
@media (max-width: 991px) {
    .cs_slider_arrows.cs_style_1 .cs_left_arrow::after,
    .cs_slider_arrows.cs_style_1 .cs_right_arrow::after {
        width: 235px;
    }
}
@media (max-width: 767px) {
    .cs_slider_arrows.cs_style_1 .cs_left_arrow::after,
    .cs_slider_arrows.cs_style_1 .cs_right_arrow::after {
        display: none;
    }
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_1 .cs_right_arrow:hover {
    background: var(--linear, linear-gradient(90deg, #11a571 0%, #1c765d 100%));
}

.cs_pagination.cs_style_1 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.cs_pagination.cs_style_1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 15px;
}
.cs_pagination.cs_style_1 li {
    height: 10px;
    width: 10px;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_pagination.cs_style_1 li::before {
    content: "";
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--heading-color);
    opacity: 0.6;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_pagination.cs_style_1 li.slick-active {
    background: var(--linear, linear-gradient(90deg, #18ffaa 0%, #3fffcc 100%));
}
.cs_pagination.cs_style_1 li.slick-active::before {
    background-color: var(--web-wash);
    opacity: 1;
}
.cs_pagination.cs_style_1 button {
    display: none;
}

@media (max-width: 991px) {
    .cs_mobile_hide {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .cs_mobile_show {
        display: none !important;
    }
}
/*--------------------------------------------------------------
7. Header
----------------------------------------------------------------*/
.cs_site_header {
    position: relative;
    z-index: 101;
    /* me css  */
    background-color: #ffff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.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 {
    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;
    position: relative;
    height: 80px;
}
.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%;
}
@media (max-width: 1199px) {
    .cs_site_header.cs_style_1 .cs_main_header_right {
        /* padding-right: 50px; */
    }
}
.cs_site_header.cs_style_1.cs_type_1 {
    background-color: #130a13;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.cs_site_header.cs_style_1.cs_sticky_active {
    /* background-color: #130a13; */
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}

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

.cs_site_header_spacing_100 {
    height: 100px;
}

@media screen and (max-width: 1199px) {
    .cs_site_header_spacing_100 {
        height: 80px;
    }
    .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: #130a13;
}
.cs_gescout_sticky.cs_fixed_sticky {
    top: 0;
    opacity: 1;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
}

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

.logoImg {
    width: 6rem;
}

.logoText {
    color: #333;
    margin-top: 1.2rem;
    font-size: 1.3rem;
    line-height: 0.9;
}

/* .break{
    display: none;
} */

@media (max-width: 765px) {
    .break {
        display: block;
    }
    .logoImg {
        width: 3rem;
    }

    .logoText {
        font-size: 1rem;
    }
}

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

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

@media screen and (min-width: 1200px) {
    .cs_main_header_center {
        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;
        position: relative;
    }
    .cs_nav .cs_nav_list > li:last-child {
        margin-right: 0;
    }
    .cs_nav .cs_nav_list > li > a {
        color: #0a0909;
        font-size: 0.9rem;
        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);
        pointer-events: none;
    }
    .cs_nav .cs_nav_list > li:hover > ul {
        top: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .cs_nav .cs_nav_list > li.menu-item-has-children > a {
        position: relative;
    }
    .cs_nav .cs_nav_list > li.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 ul {
        width: 260px;
        background-color: #130a13;
        position: absolute;
        border-top: 2px solid var(--accent-color);
        -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: 0 0 5px 5px;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list ul li:hover ul {
        top: 0px;
    }
    .cs_nav .cs_nav_list ul li:hover > ul {
        opacity: 1;
        visibility: visible;
        -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_nav + .cs_toolbox {
        margin-left: 40px;
    }
    .cs_menu_toggle,
    .cs_munu_dropdown_toggle {
        display: none;
    }
}
@media screen and (max-width: 1600px) {
    .cs_main_header .container-fluid {
        padding-right: 25px;
        padding-left: 25px;
    }
}
@media screen and (max-width: 1400px) {
    .cs_site_header_full_width .container {
        max-width: 100%;
    }
}
@media screen and (max-width: 1199px) {
    .cs_main_header .container-fluid {
        padding-right: 8px;
        padding-left: 8px;
    }
    .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: var(--web-wash);
        color: var(--heading-color);
        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;
        color: #0a0909;
        line-height: 22px;
    }
    .cs_nav .menu-item-has-children {
        position: relative;
    }
    /*Mobile Menu Button*/
    .cs_menu_toggle {
        display: inline-block;
        width: 30px;
        height: 27px;
        cursor: pointer;
        position: absolute;
        top: 27px;
        right: 30px;
        /* me  */
        display: none;
    }
    .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_menu_toggle {
        top: 50%;
        right: 0px;
        margin-top: -13px;
    }
    .cs_nav .cs_nav_list a {
        position: relative;
    }
    .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;
    }
    .cs_nav .cs_nav_list img {
        display: none;
    }
}
@media screen and (max-width: 991px) {
    .cs_site_header .container {
        max-width: 100%;
    }
}
@media screen and (max-width: 450px) {
    .cs_site_header .cs_btn.cs_style_1 svg {
        display: none;
    }
    .cs_site_header .cs_btn.cs_style_1 span {
        padding: 7px 15px;
    }
}
/* End Hamburger Menu */
/*--------------------------------------------------------------
  8. Footer
----------------------------------------------------------------*/
.cs_footer {
    padding-top: 1px;
    margin-top: 252px;
    background-position: top center;
}
.cs_footer .cs_cta.cs_style_1 {
    margin-top: -195px;
}

.cs_footer_widget_title {
    font-family: var(--body-font);
    font-size: 20px;
    margin-bottom: 30px;
}

.cs_text_widget img {
    margin-bottom: 20px;
}
.cs_text_widget p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.55em;
}

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

.cs_social_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}
.cs_social_btns a {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--heading-color);
    font-size: 14px;
}
.cs_social_btns a:hover {
    background-color: var(--heading-color);
    border-color: var(--heading-color);
    color: var(--web-wash);
}

.cs_newsletter {
    position: relative;
}
.cs_newsletter .cs_newsletter_input {
    display: block;
    width: 100%;
    border: 1px solid #e018ff;
    height: 40px;
    background-color: transparent;
    border-radius: 8px;
    padding: 5px 15px;
    outline: none;
}
.cs_newsletter .cs_newsletter_btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    width: 40px;
    border: none;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e018ff),
        to(#823fff)
    );
    background: linear-gradient(90deg, #e018ff 0%, #823fff 100%);
    border-radius: 0 8px 8px 0;
    color: #fff;
}
.cs_newsletter .cs_newsletter_btn i {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_newsletter .cs_newsletter_btn:hover i {
    -webkit-transform: rotate(8deg) scale(1.05);
    transform: rotate(8deg) scale(1.05);
}

.cs_footer_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px 70px;
    padding: 80px 0 60px;
}
@media (max-width: 1199px) {
    .cs_footer_row {
        gap: 50px 30px;
    }
}
@media (max-width: 991px) {
    .cs_footer_row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.cs_footer_row .cs_footer_col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.cs_footer_row .cs_footer_col:first-child,
.cs_footer_row .cs_footer_col:last-child {
    -webkit-box-flex: 1.7;
    -ms-flex: 1.7;
    flex: 1.7;
}
@media (max-width: 991px) {
    .cs_footer_row .cs_footer_col {
        width: calc(50% - 15px);
        -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
        flex: none !important;
    }
}
@media (max-width: 575px) {
    .cs_footer_row .cs_footer_col {
        width: 100%;
        max-width: 400px;
    }
}

.cs_footer_bottom {
    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;
    padding: 23px 0;
}
.cs_footer_bottom .cs_footer_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cs_footer_bottom .cs_footer_menu li {
    margin: 0;
}
.cs_footer_bottom .cs_footer_menu li:not(:last-child)::after {
    content: "/";
    margin: 7px;
}

/*--------------------------------------------------------------
  9. Hero
----------------------------------------------------------------*/

@media (max-width: 991px) {
    .cs_hero.cs_style_1 {
        padding: 150px 0 100px;
        min-height: initial;
    }
}
.cs_hero.cs_style_1 .cs_hero_title {
    font-size: 60px;
    line-height: 1.26em;
    max-width: 700px;
    margin-bottom: 40px;
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1 .cs_hero_title {
        font-size: 54px;
    }
}
@media (max-width: 767px) {
    .cs_hero.cs_style_1 .cs_hero_title {
        font-size: 44px;
        margin-bottom: 22px;
    }
}

@media (max-width: 1199px) {
    .cs_hero.cs_style_1 .cs_hero_subtitle {
        /* max-width: 430px; */
    }
}
.cs_hero.cs_style_1 .cs_hero_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.cs_hero.cs_style_1 .container,
.cs_hero.cs_style_1 .cs_hero_in {
    position: relative;
    z-index: 6;
}
.cs_hero.cs_style_1 .cs_hero_thumb {
    position: absolute;
    right: 80px;
    top: 52%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1 .cs_hero_thumb {
        right: -9%;
    }
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1 .cs_hero_thumb {
        right: -14%;
    }
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1 .cs_hero_thumb {
        display: none;
    }
}
.cs_hero.cs_style_1 .cs_hero_shape {
    position: absolute;
    top: 120px;
    left: 24%;
}
.cs_hero.cs_style_1 .cs_hero_circle {
    height: 160px;
    width: 160px;
    border-radius: 50%;
    position: absolute;
    bottom: -70px;
    left: 43%;
    -webkit-box-shadow: 7px 7px 0px #150a16;
    box-shadow: 7px 7px 0px #150a16;
    border: 1px solid rgba(255, 255, 255, 0.26);
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1 .cs_hero_circle {
        left: 50%;
    }
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1 .cs_hero_circle {
        display: none;
    }
}
.cs_hero.cs_style_1 .cs_hero_circle > img {
    -webkit-animation: rotate360 30s linear infinite;
    animation: rotate360 30s linear infinite;
}
.cs_hero.cs_style_1 .cs_hero_circle_in {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e018ff),
        to(#823fff)
    );
    background: linear-gradient(90deg, #e018ff 0%, #823fff 100%);
    height: 80px;
    width: 80px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.cs_hero.cs_style_1 .cs_hero_circle_in::before {
    content: "";
    position: absolute;
    height: calc(100% - 16px);
    width: calc(100% - 16px);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
}

@-webkit-keyframes rotate360 {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate360 {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.cs_hero.cs_style_2 {
    height: 680px;
    position: relative;
}
@media (max-width: 767px) {
    .cs_hero.cs_style_2 {
        height: initial;
        padding: 170px 0 160px;
    }
}
.cs_hero.cs_style_2 .cs_hero_title_up {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.cs_hero.cs_style_2 .cs_hero_title {
    font-size: 40px;
    line-height: 1.5em;
    margin-bottom: 30px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .cs_hero.cs_style_2 .cs_hero_title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .cs_hero.cs_style_2 .cs_hero_title br {
        display: none;
    }
}
.cs_hero.cs_style_2 .cs_hero_subtitle {
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-transform: capitalize;
}
.cs_hero.cs_style_2 .cs_hero_in {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
.cs_hero.cs_style_2 .cs_hero_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cs_hero.cs_style_2 .container {
    position: relative;
}
.cs_hero.cs_style_2 .cs_hero_img_1 {
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_2 .cs_hero_img_1 {
        left: -5%;
    }
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_2 .cs_hero_img_1 {
        left: -18%;
    }
}
@media (max-width: 991px) {
    .cs_hero.cs_style_2 .cs_hero_img_1 {
        left: -40%;
    }
}
@media (max-width: 767px) {
    .cs_hero.cs_style_2 .cs_hero_img_1 {
        display: none;
    }
}
.cs_hero.cs_style_2 .cs_hero_img_2 {
    position: absolute;
    right: 0;
    top: 0;
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_2 .cs_hero_img_2 {
        right: -5%;
    }
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_2 .cs_hero_img_2 {
        right: -18%;
    }
}
@media (max-width: 991px) {
    .cs_hero.cs_style_2 .cs_hero_img_2 {
        right: -40%;
    }
}
@media (max-width: 767px) {
    .cs_hero.cs_style_2 .cs_hero_img_2 {
        display: none;
    }
}
.cs_hero.cs_style_2 .cs_hero_shape_1 {
    position: absolute;
    bottom: 60px;
    left: 42%;
}
.cs_hero.cs_style_2 .cs_hero_shape_2 {
    position: absolute;
    bottom: 95px;
    left: 57%;
}
.cs_hero.cs_style_2 .cs_shape {
    height: 780px;
    width: 780px;
    opacity: 0.5;
}

/*--------------------------------------------------------------
  10. Iconbox
----------------------------------------------------------------*/
.cs_iconbox.cs_style_1 {
    height: 100%;
    padding: 1px;
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        from(rgba(217, 26, 255, 0.2)),
        to(rgba(135, 61, 255, 0.2))
    );
    background: linear-gradient(
        270deg,
        rgba(217, 26, 255, 0.2) 0%,
        rgba(135, 61, 255, 0.2) 100%
    );
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_iconbox.cs_style_1 .cs_iconbox_inner {
    width: 100%;
    height: 100%;
    padding: 29px;
    border-radius: 20px;
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        from(rgba(217, 26, 255, 0.01)),
        to(rgba(135, 61, 255, 0.01))
    );
    background: linear-gradient(
        270deg,
        rgba(217, 26, 255, 0.01) 0%,
        rgba(135, 61, 255, 0.01) 100%
    );
    background-color: var(--web-wash);
}
@media (max-width: 575px) {
    .cs_iconbox.cs_style_1 .cs_iconbox_inner {
        padding: 29px 15px;
        border-radius: 20px;
    }
}
.cs_iconbox.cs_style_1.cs_type_1 {
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        from(rgba(217, 26, 255, 0.4)),
        to(rgba(135, 61, 255, 0.4))
    );
    background: linear-gradient(
        270deg,
        rgba(217, 26, 255, 0.4) 0%,
        rgba(135, 61, 255, 0.4) 100%
    );
    border-radius: 40px;
}
@media (max-width: 575px) {
    .cs_iconbox.cs_style_1.cs_type_1 {
        border-radius: 20px;
    }
}
.cs_iconbox.cs_style_1.cs_type_1 .cs_iconbox_inner {
    border-radius: 40px;
}
@media (max-width: 575px) {
    .cs_iconbox.cs_style_1.cs_type_1 .cs_iconbox_inner {
        border-radius: 20px;
    }
}
.cs_iconbox.cs_style_1.cs_type_1 .cs_iconbox_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 23px;
}
.cs_iconbox.cs_style_1.cs_type_1 .cs_iconbox_title {
    font-size: 20px;
    line-height: 1.7em;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .cs_iconbox.cs_style_1 br {
        display: none;
    }
}
.cs_iconbox.cs_style_1 .cs_iconbox_header {
    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;
    margin-bottom: 25px;
}
.cs_iconbox.cs_style_1 .cs_iconbox_icon {
    width: 100px;
    height: 100px;
}
.cs_iconbox.cs_style_1 .cs_iconbox_index {
    font-size: 48px;
    font-weight: 600;
    line-height: 64px;
    font-family: "Conthrax";
    color: rgba(255, 255, 255, 0.22);
}
.cs_iconbox.cs_style_1 .cs_iconbox_title {
    font-size: 30px;
    margin-bottom: 18px;
}
.cs_iconbox.cs_style_1:hover {
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        from(rgb(217, 26, 255)),
        to(rgb(135, 61, 255))
    );
    background: linear-gradient(
        270deg,
        rgb(217, 26, 255) 0%,
        rgb(135, 61, 255) 100%
    );
}

.cs_iconbox_wrapper.cs_style_1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 991px) {
    .cs_iconbox_wrapper.cs_style_1 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cs_iconbox.cs_style_2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px;
    border-radius: 8px;
    background: #151515;
    -webkit-box-shadow: 0px 0px 50px 0px #0f0f0f;
    box-shadow: 0px 0px 50px 0px #0f0f0f;
    padding: 20px 20px 20px 40px;
    position: relative;
    z-index: 1;
}
@media (max-width: 575px) {
    .cs_iconbox.cs_style_2 {
        min-width: 100%;
    }
}
.cs_iconbox.cs_style_2 .cs_iconbox_index {
    width: 30px;
    height: 28px;
    border-radius: 8px 0px 16px 0px;
    background: var(--linear, linear-gradient(90deg, #e018ff 0%, #823fff 100%));
    font-size: 12px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--heading-color);
    position: absolute;
    left: 0;
    top: 0;
}
.cs_iconbox.cs_style_2 .cs_iconbox_header {
    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;
}
.cs_iconbox.cs_style_2 .cs_iconbox_title {
    font-size: 20px;
    font-family: var(--heading-font);
    line-height: 1.3em;
}
.cs_iconbox.cs_style_2 .cs_iconbox_progress {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    text-align: center;
    word-wrap: break-word;
    width: 40px;
    height: 40px;
    background: var(--linear, linear-gradient(90deg, #e018ff 0%, #823fff 100%));
    font-size: 14px;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1em;
    color: var(--heading-color);
    border-radius: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*--------------------------------------------------------------
  11. Posts
----------------------------------------------------------------*/
.cs_post.cs_style_1 {
    background: var(
        --linear,
        linear-gradient(
            90deg,
            rgba(24, 255, 97, 0.2) 0%,
            rgba(63, 255, 146, 0.2) 100%
        )
    );
    padding: 1px;
    border-radius: 8px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_post.cs_style_1 .cs_post_inner {
    /* background-color: var(--web-wash); */
    background-color: #1a1a1a;
    /* padding: 15px 15px 30px; */
    padding: 15px 15px 15px;
    border-radius: 8px;
}
.cs_post.cs_style_1 .cs_post_thumbnail {
    display: inline-block;
    width: 100%;
    border-radius: 8px;
}
.cs_post.cs_style_1 .cs_post_thumbnail img {
    border-radius: inherit;
}
.cs_post.cs_style_1 .cs_post_content {
    padding: 20px 0px 0px 16px;
}

.cs_post_content p {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-weight: 400;
}
@media (max-width: 575px) {
    .cs_post.cs_style_1 .cs_post_content {
        padding: 20px 0px 0px 0;
    }
}
.cs_post.cs_style_1 .cs_post_meta_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5em;
    color: var(--heading-color);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.cs_post.cs_style_1 .cs_post_meta_separator {
    width: 24px;
    height: 1px;
    background: var(--linear, linear-gradient(90deg, #e018ff 0%, #823fff 100%));
}
.cs_post.cs_style_1 .cs_post_title {
    font-size: 16px;
    line-height: 1.41em;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.cs_post.cs_style_1 .cs_post_subtitle {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 15px;
}
.cs_post.cs_style_1 .cs_post_btn {
    margin-top: 15px;
    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: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    font-family: var(--heading-font);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_post.cs_style_1 .cs_post_btn:hover {
    color: var(--accent-color);
}
.cs_post.cs_style_1:hover {
    background: var(
        --linear,
        linear-gradient(90deg, rgb(24, 255, 170) 0%, rgb(63, 255, 133) 100%)
    );
    transform: scale(1.02);
}
.cs_post.cs_style_1:hover .cs_post_btn {
    gap: 15px;
}

/* ------------------------------------
 Post Details
----------------------------------------*/
.cs_blog_details h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.cs_blog_details h2 {
    font-size: 36px;
    margin-bottom: 15px;
}
.cs_blog_details p {
    font-weight: 400;
    margin-bottom: 20px;
}
.cs_blog_details .cs_posted_by {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}
.cs_blog_details blockquote {
    font-size: 22px;
    line-height: 1.5em;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--heading-color);
}
.cs_blog_details img {
    margin-bottom: 30px;
}
.cs_blog_details ol {
    margin-bottom: 20px;
    font-weight: 400;
}
.cs_blog_details ol li:not(:last-child) {
    margin-bottom: 10px;
}

/* ------------------------------------
 Breadcumb
----------------------------------------*/
.breadcrumb .breadcrumb-item {
    font-weight: 400;
    color: var(--heading-color);
}
.breadcrumb .breadcrumb-item.active,
.breadcrumb .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ------------------------------------
 Pagination
----------------------------------------*/
.pagination {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
}

.page-item {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e018ff),
        to(#823fff)
    );
    background: linear-gradient(90deg, #e018ff 0%, #823fff 100%);
    padding: 1px;
    border-radius: 1px;
}
.page-item:not(:first-child) .page-link {
    margin-left: 0;
}

.page-link {
    display: inline-block;
    padding: 14px 24px;
    background-color: var(--web-wash);
    border: 0;
    border-radius: 0 !important;
    color: var(--heading-color);
}
.page-link:hover {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e018ff),
        to(#823fff)
    );
    background: linear-gradient(90deg, #e018ff 0%, #823fff 100%);
    color: var(--heading-color);
}

.page-item.active .page-link {
    pointer-events: none;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e018ff),
        to(#823fff)
    );
    background: linear-gradient(90deg, #e018ff 0%, #823fff 100%);
}

/*--------------------------------------------------------------
  12. CTA
----------------------------------------------------------------*/
.cs_cta.cs_style_1 {
    border-radius: 8px;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(224, 24, 255, 0.1)),
        to(rgba(130, 63, 255, 0.1))
    );
    background: linear-gradient(
        90deg,
        rgba(224, 24, 255, 0.1) 0%,
        rgba(130, 63, 255, 0.1) 100%
    );
    padding: 60px;
    position: relative;
}
.cs_cta.cs_style_1 .cs_cta_title {
    font-size: 36px;
    line-height: 1.44em;
    margin-bottom: 20px;
    max-width: 600px;
}
.cs_cta.cs_style_1 .cs_cta_subtitle {
    font-size: 20px;
    line-height: 1.33em;
    max-width: 490px;
    margin-bottom: 30px;
}
.cs_cta.cs_style_1 .cs_cta_in {
    position: relative;
    z-index: 2;
}
.cs_cta.cs_style_1 .cs_cta_img {
    position: absolute;
    bottom: 0;
    right: 0;
}
.cs_cta.cs_style_1.cs_type_1 {
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.cs_cta.cs_style_1.cs_type_1 .cs_cta_title {
    margin-left: auto;
    margin-right: auto;
}
.cs_cta.cs_style_1.cs_type_1 .cs_cta_subtitle {
    font-weight: 500;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
  13. Counter
----------------------------------------------------------------*/
.cs_counter.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.cs_counter.cs_style_1 .cs_counter_number {
    font-size: 48px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 1.2em;
    margin-bottom: 4px;
}
.cs_counter.cs_style_1 .cs_counter_title {
    font-size: 24px;
    line-height: 1.41em;
}

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

/*--------------------------------------------------------------
  14. Team
----------------------------------------------------------------*/
.cs_team.cs_style_1 {
    background: var(--linear, linear-gradient(90deg, #18ffba 0%, #177a56 100%));
    border-radius: 8px;
    padding: 1px;
}
.cs_team.cs_style_1.cs_type_1 {
    width: 100%;
    border-radius: 160px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .cs_team.cs_style_1.cs_type_1 {
        max-width: 306px;
    }
}
.cs_team.cs_style_1.cs_type_1 .cs_team_inner {
    background-color: var(--web-wash);
    border-radius: inherit;
}
.cs_team.cs_style_1.cs_type_1 .cs_team_thumbnail_wrapper {
    background: var(--linear, linear-gradient(90deg, #e018ff 0%, #823fff 100%));
    border-radius: 50%;
    padding-bottom: 1px;
}
.cs_team.cs_style_1.cs_type_1 .cs_team_thumbnail {
    width: 100%;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 0px;
}
@media (max-width: 1399px) {
    .cs_team.cs_style_1.cs_type_1 .cs_team_thumbnail {
        height: 263px;
    }
}
@media (max-width: 1199px) {
    .cs_team.cs_style_1.cs_type_1 .cs_team_thumbnail {
        height: 300px;
    }
}
@media (max-width: 991px) {
    .cs_team.cs_style_1.cs_type_1 .cs_team_thumbnail {
        height: 330px;
    }
}
@media (max-width: 767px) {
    .cs_team.cs_style_1.cs_type_1 .cs_team_thumbnail {
        height: 302px;
    }
}
.cs_team.cs_style_1.cs_type_1 .cs_team_bio {
    text-align: center;
    border-radius: 0 0 140px 140px;
    padding: 20px 0 37px;
    background-color: transparent;
}
.cs_team.cs_style_1.cs_type_1 .cs_team_title {
    font-size: 20px;
    line-height: 1.3em;
    margin-bottom: 7px;
}
.cs_team.cs_style_1.cs_type_1 .cs_social_btns.cs_style_1 {
    top: 140px;
}
.cs_team.cs_style_1 .cs_team_thumbnail {
    width: 100%;
    height: 283px;
    background: var(
        --linear,
        linear-gradient(
            90deg,
            rgba(224, 24, 255, 0.11) 0%,
            rgba(130, 63, 255, 0.11) 100%
        )
    );
    background-color: var(--web-wash);
    border-radius: 8px 8px 0 0;
    position: relative;
    margin-bottom: 1px;
}
.cs_team.cs_style_1 .cs_team_thumbnail img {
    border-radius: inherit;
}
.cs_team.cs_style_1 .cs_team_bio {
    background-color: rgb(30, 30, 30);
    padding: 30px;
    /* border-radius: 0 0 8px 8px; */
    border-radius: 8px;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .cs_team.cs_style_1 .cs_team_bio {
        padding: 24px 20px;
    }
}
.cs_team.cs_style_1 .cs_team_title {
    font-size: 24px;
    margin-bottom: 2px;
    line-height: 1.25em;
}
.cs_team.cs_style_1 .cs_team_subtitle {
    line-height: 1.31em;
    font-weight: 600;
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    top: 20px;
    right: 30px;
    z-index: 5;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--heading-color);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a:first-child {
    background-color: var(--heading-color);
    color: var(--web-wash);
    visibility: visible;
    opacity: 1;
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a:not(:first-child):hover {
    background: var(--linear, linear-gradient(90deg, #e018ff 0%, #823fff 100%));
}
.cs_team.cs_style_1:hover .cs_social_btns.cs_style_1 {
    gap: 15px;
}
.cs_team.cs_style_1:hover .cs_social_btns.cs_style_1 a {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
  15. Card
----------------------------------------------------------------*/
.cs_card.cs_style_1 {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    z-index: 1;
}
.cs_card.cs_style_1 .cs_card_thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cs_card.cs_style_1 .cs_card_thumbnail.cs_type_1 {
    border-radius: 50%;
}
.cs_card.cs_style_1 .cs_card_thumbnail img {
    border-radius: inherit;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
.cs_card.cs_style_1 .cs_card_thumbnail:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}
.cs_card.cs_style_1 .cs_card_text {
    padding: 0 1px 1px 1px;
    background: var(
        --linear,
        linear-gradient(
            90deg,
            rgba(224, 24, 255, 0.8) 0%,
            rgba(130, 63, 255, 0.8) 100%
        )
    );
    border-radius: 0px 0px 8px 8px;
    position: relative;
    z-index: 1;
}
.cs_card.cs_style_1 .cs_card_text.cs_type_1 {
    border-radius: 40px;
    text-align: center;
}
.cs_card.cs_style_1 .cs_card_text_inner {
    background: #191618;
    border-radius: 0px 0px 8px 8px;
    padding: 12px;
    border-radius: inherit;
}
.cs_card.cs_style_1 .cs_card_title {
    font-size: 20px;
    line-height: 1.5em;
} /*# sourceMappingURL=style.css.map */

.heroImg {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 1rem;
    /* padding: 0rem 1rem; */
}

.heroSubH {
    color: rgb(161, 255, 199);
    text-shadow: 1px 1px 1px #000;
    font-size: 2rem;
    font-weight: 500;
}

.heroHeading {
    color: #ffffff;
    margin-top: 1.5rem;
    text-shadow: 2px 2px 5px #000;
    line-height: 1;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
}

.heading-one {
    font-size: 3rem;
    text-shadow: 1px 1px 3px #ffffff;
    color: #000000;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.cs_hero.cs_style_1 .cs_hero_subtitle {
    color: #333;
    /* max-width: 580px; */
    text-transform: capitalize;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
    font-size: 1.2rem;
}

.btnOne {
    background-color: rgb(20, 138, 79);
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    border: 1px solid #fff;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #fff !important;
}
.btnOne:hover {
    background-color: rgb(7, 30, 18);
}

.btnTwo {
    background-color: rgb(7, 30, 18);
    color: #fff !important;
    padding: 0.8rem 4rem;
    border-radius: 0.5rem;
    border: 1px solid rgb(255, 255, 255);
    font-size: 1.5rem;
    letter-spacing: 1px;
}
.btnTwo:hover {
    background-color: rgb(20, 138, 79);
}

.btnNav {
    background-color: #132419;
    color: #49df8c !important;
    border: 2px solid rgb(56, 210, 143);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.btnNav:hover {
    background-color: #ffffff;
    color: #33af6b !important;
    border: 2px solid rgb(33, 143, 95);
}

.btnRM {
    background-color: #208c51;
    color: #ffffff !important;
    border: 2px solid #208c51;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.btnRM:hover {
    background-color: #ffffff;
    color: #208c51 !important;
}

.textPrimary {
    color: rgb(4, 4, 4);
}

.heading3 {
    font-size: 1.6rem;
}

.sectionSub {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 1rem;
    line-height: 1.5;
}

.about_img img {
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 0.5rem;
}

.cs_hero.cs_style_1 {
    /* padding: 176px 0 146px; */
    padding: 106px 0 146px;
    min-height: 800px;
    /* background-color: rgb(13, 88, 62); */
    /* background-color: #fff; */
    background: url("../img/3439356_61753.jpg") no-repeat center center;
    background-size: cover;
}
.cs_post_inner img {
    border: 1px solid rgba(90, 255, 181, 0.082);
    border-radius: 0.5rem;
}

.secondarySection {
    padding: 5rem 0;
    background-color: rgb(244, 255, 251);
}
.primarySection {
    padding: 5rem 0;
    background-color: rgb(29, 29, 29);
}

.serviceCard {
    padding: 1rem 1rem;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    margin-bottom: 2rem;
    border: 1px solid rgb(205, 205, 205);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.serviceCard:hover {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transform: translateY(-5px);
}

.serviceCard h3 {
    color: #000;
    font-size: 1.3rem;
    text-align: center;
    margin-top: 0.5rem;
    border-bottom: 1px solid rgb(230, 230, 230);
    line-height: 1.8;
}
.serviceCard p {
    color: #444;
    font-weight: 400;
    font-size: 0.85rem;
    margin-top: -10px;
}

.serviceCardContent {
    height: 8rem;
}

.centerImg img {
    filter: drop-shadow(5px 5px 50px #000);
}

.spointH4 {
    font-size: 0.9rem;
    text-align: center;
    color: #000;
    font-weight: 600;
    text-align: center;
}
.sPointOne {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #fff;
    border-radius: 10rem;
    border-bottom-right-radius: 0;
}
.sPointOne img {
    width: 100%;
    padding: 1rem;
}
.sPointTwo {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #fff;
    border-radius: 10rem;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.sPointTwo img {
    width: 100%;
    padding: 1rem;
}
.sPointThree {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #fff;
    border-radius: 10rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.sPointThree img {
    width: 100%;
    padding: 1rem;
}
.sPointFour {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #fff;
    border-radius: 10rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 7rem;
}
.sPointFour img {
    width: 100%;
    padding: 1rem;
}
.sPointFive {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #fff;
    border-radius: 10rem;
    border-bottom-left-radius: 0;
}
.sPointFive img {
    width: 100%;
    padding: 1rem;
}
.sPointSix {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #fff;
    border-radius: 10rem;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.sPointSix img {
    width: 100%;
    padding: 1rem;
}

.sPointSeven {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #fff;
    border-radius: 10rem;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.sPointSeven img {
    width: 100%;
    padding: 1rem;
}

.sPointEight {
    text-align: center;
    padding: 1rem 1rem;
    background-color: #fff;
    border-radius: 10rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 7rem;
}
.sPointEight img {
    width: 100%;
    padding: 1rem;
}

.imgH img{
    height: 9rem;
    object-fit: contain;
}

.cs_team_bio p{
    line-height: 1.5;
    font-size: .85rem;
    font-weight: 400;
}

@media (max-width: 992px) {
    .imgH img{
        height: auto;
    }
    .sPointOne {
        border-bottom-right-radius: 0;
    }
    .sPointTwo {
        border-radius: 10rem;
        border-bottom-left-radius: 0;
        border-top-right-radius: 10rem;
    }
    .sPointThree {
        border-radius: 10rem;
        border-top-right-radius: 0;
        border-bottom-right-radius: 10rem;
    }
    .sPointFour {
        border-radius: 10rem;
        border-top-left-radius: 0;
        border-top-right-radius: 10rem;
        border-bottom-right-radius: 10rem;
    }
    .sPointFour img {
        width: 100%;
        padding: 1rem;
    }
    .sPointFive {
        text-align: center;
        padding: 1rem 1rem;
        background-color: #fff;
        border-radius: 10rem;
        border-bottom-left-radius: 10rem;
        border-bottom-right-radius: 0;
    }
    .sPointFive img {
        width: 100%;
        padding: 1rem;
    }
    .sPointSix {
        text-align: center;
        padding: 1rem 1rem;
        background-color: #fff;
        border-radius: 10rem;
        border-bottom-left-radius: 0;
        border-top-left-radius: 10rem;
    }
    .sPointSix img {
        width: 100%;
        padding: 1rem;
    }

    .sPointSeven {
        text-align: center;
        padding: 1rem 1rem;
        background-color: #fff;
        border-radius: 10rem;
        border-top-right-radius: 0;
        padding-bottom: 1.5rem;
    }
    .sPointSeven img {
        width: 100%;
        padding: 1rem;
    }

    .sPointEight {
        text-align: center;
        padding: 1rem 1rem;
        padding-top: .5rem;
        background-color: #fff;
        border-radius: 10rem;
        border-top-left-radius: 0;
        border-bottom-left-radius: 10rem;
    }
    .sPointEight img {
        width: 100%;
        padding: 1rem;
    }
}

.cs_team_bio i{
    color: gold;
    margin-bottom: 1rem;
}
.footerBg{
    /* background-color: rgb(32, 32, 32); */
}
.bgGray{
    background: url("../img/8573.jpg") no-repeat center center;
    background-size: cover;
}

.footerName{
    font-weight: 800;
    color: #24b683;
    font-size: 1.1rem;
}
.footerName2{
    font-weight: 800;
    color: #f34b4b;
    font-size: 1.1rem;
}
.cs_copyright{
    font-weight: 400;
}

.phone{
    color: #1fffb1;
}

@media (max-width: 765px) {

    .cs_list.cs_style_1 .cs_list_icon {
        margin-top: .18rem;
    }
    .cs_copyright{
        text-align: center;
        padding-bottom: .5rem;
    }
    .bgGray{
        background: #232323;
        /* background: url("../img/8573.jpg") no-repeat center center; */
        background-size: cover;
    }

    .cs_cta.cs_style_1 .cs_cta_img {
        display: none;
    }
    .serviceCardContent {
        height: auto;
    }
    .sPointThree {
        padding: 1rem 1rem;
        padding-bottom: 1.7rem;
    }
    .spointH4 {
        font-size: 0.8rem;
        text-align: center;
        color: #000;
        font-weight: 600;
        text-align: center;
    }


    .cs_hero.cs_style_1 {
        padding: 106px 0 146px;
        min-height: 700px;
        /* background: url('../img/3439356_61753.jpg') no-repeat center center; */
    }
    .sectionSub {
        font-size: 1.15rem;
        text-align: justify;
    }
    .btnNav {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }
    .btnOne {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    .btnTwo {
        padding: 0.7rem 1.8rem;
        font-size: 0.8rem;
    }
    .heroImg {
        margin-top: 3rem;
    }
    .heading-one {
        font-size: 1.5rem;
    }
    .heroHeading {
        margin-top: 1rem;
        line-height: 1.1;
        font-size: 2.5rem;
    }
    .heroSubH {
        font-size: 1.5rem;
    }
    .cs_hero.cs_style_1 .cs_hero_subtitle {
        font-size: 1rem;
        font-weight: 600;
    }
}
