/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Typography
2. Preloader
3. Spacing
4. General
5. Slider
6. Video Popup
7. Header
8. Footer
9. Sidebar
10. Hero
11. Banner
12. Iconbox
13. Posts
14. Comments
15. CTA
16. Testimonial
17. Tour
18. Tab
19. Team
20. Card
21. About
22. Steps
23. Video block
24. Contact
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## All Color Variable
----------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Satisfy&display=swap");
:root {
    --white: #fff;
    --primary: #2e266d;
    --secondary: #688662;
    --accent: #a41a6b;
    --gray: #f5f5f5;
    --border: #d9d9d9;
    --primary-font: "Playfair Display", serif;
    --secondary-font: "Jost", sans-serif;
    --ternary-font: "Satisfy", cursive;
}


/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/

body,
html {
    color: var(--secondary);
    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

.cs_ternary_font {
    font-family: var(--ternary-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;
    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);
}

table {
    width: 100%;
    margin-bottom: 25px;
}

table th {
    font-weight: 600;
    color: var(--secondary);
}

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(--secondary);
    border: 1px solid var(--border);
    font-size: 18px;
    padding: 25px;
    border-radius: 5px;
}

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

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


/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/

.cs_preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ecffff;
    z-index: 99999;
}

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

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

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

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

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


/*--------------------------------------------------------------
  3. Spacing
----------------------------------------------------------------*/

@media screen and (min-width: 992px) {
    .cs_height_1 {
        height: 1px;
    }
    .cs_height_2 {
        height: 2px;
    }
    .cs_height_3 {
        height: 3px;
    }
    .cs_height_4 {
        height: 4px;
    }
    .cs_height_5 {
        height: 5px;
    }
    .cs_height_6 {
        height: 6px;
    }
    .cs_height_7 {
        height: 7px;
    }
    .cs_height_8 {
        height: 8px;
    }
    .cs_height_9 {
        height: 9px;
    }
    .cs_height_10 {
        height: 10px;
    }
    .cs_height_11 {
        height: 11px;
    }
    .cs_height_12 {
        height: 12px;
    }
    .cs_height_13 {
        height: 13px;
    }
    .cs_height_14 {
        height: 14px;
    }
    .cs_height_15 {
        height: 15px;
    }
    .cs_height_16 {
        height: 16px;
    }
    .cs_height_17 {
        height: 17px;
    }
    .cs_height_18 {
        height: 18px;
    }
    .cs_height_19 {
        height: 19px;
    }
    .cs_height_20 {
        height: 20px;
    }
    .cs_height_21 {
        height: 21px;
    }
    .cs_height_22 {
        height: 22px;
    }
    .cs_height_23 {
        height: 23px;
    }
    .cs_height_24 {
        height: 24px;
    }
    .cs_height_25 {
        height: 25px;
    }
    .cs_height_26 {
        height: 26px;
    }
    .cs_height_27 {
        height: 27px;
    }
    .cs_height_28 {
        height: 28px;
    }
    .cs_height_29 {
        height: 29px;
    }
    .cs_height_30 {
        height: 30px;
    }
    .cs_height_31 {
        height: 31px;
    }
    .cs_height_32 {
        height: 32px;
    }
    .cs_height_33 {
        height: 33px;
    }
    .cs_height_34 {
        height: 34px;
    }
    .cs_height_35 {
        height: 35px;
    }
    .cs_height_36 {
        height: 36px;
    }
    .cs_height_37 {
        height: 37px;
    }
    .cs_height_38 {
        height: 38px;
    }
    .cs_height_39 {
        height: 39px;
    }
    .cs_height_40 {
        height: 40px;
    }
    .cs_height_41 {
        height: 41px;
    }
    .cs_height_42 {
        height: 42px;
    }
    .cs_height_43 {
        height: 43px;
    }
    .cs_height_44 {
        height: 44px;
    }
    .cs_height_45 {
        height: 45px;
    }
    .cs_height_46 {
        height: 46px;
    }
    .cs_height_47 {
        height: 47px;
    }
    .cs_height_48 {
        height: 48px;
    }
    .cs_height_49 {
        height: 49px;
    }
    .cs_height_50 {
        height: 50px;
    }
    .cs_height_51 {
        height: 51px;
    }
    .cs_height_52 {
        height: 52px;
    }
    .cs_height_53 {
        height: 53px;
    }
    .cs_height_54 {
        height: 54px;
    }
    .cs_height_55 {
        height: 55px;
    }
    .cs_height_56 {
        height: 56px;
    }
    .cs_height_57 {
        height: 57px;
    }
    .cs_height_58 {
        height: 58px;
    }
    .cs_height_59 {
        height: 59px;
    }
    .cs_height_60 {
        height: 60px;
    }
    .cs_height_61 {
        height: 61px;
    }
    .cs_height_62 {
        height: 62px;
    }
    .cs_height_63 {
        height: 63px;
    }
    .cs_height_64 {
        height: 64px;
    }
    .cs_height_65 {
        height: 65px;
    }
    .cs_height_66 {
        height: 66px;
    }
    .cs_height_67 {
        height: 67px;
    }
    .cs_height_68 {
        height: 68px;
    }
    .cs_height_69 {
        height: 69px;
    }
    .cs_height_70 {
        height: 70px;
    }
    .cs_height_71 {
        height: 71px;
    }
    .cs_height_72 {
        height: 72px;
    }
    .cs_height_73 {
        height: 73px;
    }
    .cs_height_74 {
        height: 74px;
    }
    .cs_height_75 {
        height: 75px;
    }
    .cs_height_76 {
        height: 76px;
    }
    .cs_height_77 {
        height: 77px;
    }
    .cs_height_78 {
        height: 78px;
    }
    .cs_height_79 {
        height: 79px;
    }
    .cs_height_80 {
        height: 80px;
    }
    .cs_height_81 {
        height: 81px;
    }
    .cs_height_82 {
        height: 82px;
    }
    .cs_height_83 {
        height: 83px;
    }
    .cs_height_84 {
        height: 84px;
    }
    .cs_height_85 {
        height: 85px;
    }
    .cs_height_86 {
        height: 86px;
    }
    .cs_height_87 {
        height: 87px;
    }
    .cs_height_88 {
        height: 88px;
    }
    .cs_height_89 {
        height: 89px;
    }
    .cs_height_90 {
        height: 90px;
    }
    .cs_height_91 {
        height: 91px;
    }
    .cs_height_92 {
        height: 92px;
    }
    .cs_height_93 {
        height: 93px;
    }
    .cs_height_94 {
        height: 94px;
    }
    .cs_height_95 {
        height: 95px;
    }
    .cs_height_96 {
        height: 96px;
    }
    .cs_height_97 {
        height: 97px;
    }
    .cs_height_98 {
        height: 98px;
    }
    .cs_height_99 {
        height: 99px;
    }
    .cs_height_100 {
        height: 100px;
    }
    .cs_height_101 {
        height: 101px;
    }
    .cs_height_102 {
        height: 102px;
    }
    .cs_height_103 {
        height: 103px;
    }
    .cs_height_104 {
        height: 104px;
    }
    .cs_height_105 {
        height: 105px;
    }
    .cs_height_106 {
        height: 106px;
    }
    .cs_height_107 {
        height: 107px;
    }
    .cs_height_108 {
        height: 108px;
    }
    .cs_height_109 {
        height: 109px;
    }
    .cs_height_110 {
        height: 110px;
    }
    .cs_height_111 {
        height: 111px;
    }
    .cs_height_112 {
        height: 112px;
    }
    .cs_height_113 {
        height: 113px;
    }
    .cs_height_114 {
        height: 114px;
    }
    .cs_height_115 {
        height: 115px;
    }
    .cs_height_116 {
        height: 116px;
    }
    .cs_height_117 {
        height: 117px;
    }
    .cs_height_118 {
        height: 118px;
    }
    .cs_height_119 {
        height: 119px;
    }
    .cs_height_120 {
        height: 120px;
    }
    .cs_height_121 {
        height: 121px;
    }
    .cs_height_122 {
        height: 122px;
    }
    .cs_height_123 {
        height: 123px;
    }
    .cs_height_124 {
        height: 124px;
    }
    .cs_height_125 {
        height: 125px;
    }
    .cs_height_126 {
        height: 126px;
    }
    .cs_height_127 {
        height: 127px;
    }
    .cs_height_128 {
        height: 128px;
    }
    .cs_height_129 {
        height: 129px;
    }
    .cs_height_130 {
        height: 130px;
    }
    .cs_height_131 {
        height: 131px;
    }
    .cs_height_132 {
        height: 132px;
    }
    .cs_height_133 {
        height: 133px;
    }
    .cs_height_134 {
        height: 134px;
    }
    .cs_height_135 {
        height: 135px;
    }
    .cs_height_136 {
        height: 136px;
    }
    .cs_height_137 {
        height: 137px;
    }
    .cs_height_138 {
        height: 138px;
    }
    .cs_height_139 {
        height: 139px;
    }
    .cs_height_140 {
        height: 140px;
    }
    .cs_height_141 {
        height: 141px;
    }
    .cs_height_142 {
        height: 142px;
    }
    .cs_height_143 {
        height: 143px;
    }
    .cs_height_144 {
        height: 144px;
    }
    .cs_height_145 {
        height: 145px;
    }
    .cs_height_146 {
        height: 146px;
    }
    .cs_height_147 {
        height: 147px;
    }
    .cs_height_148 {
        height: 148px;
    }
    .cs_height_149 {
        height: 149px;
    }
    .cs_height_150 {
        height: 150px;
    }
    .cs_height_151 {
        height: 151px;
    }
    .cs_height_152 {
        height: 152px;
    }
    .cs_height_153 {
        height: 153px;
    }
    .cs_height_154 {
        height: 154px;
    }
    .cs_height_155 {
        height: 155px;
    }
    .cs_height_156 {
        height: 156px;
    }
    .cs_height_157 {
        height: 157px;
    }
    .cs_height_158 {
        height: 158px;
    }
    .cs_height_159 {
        height: 159px;
    }
    .cs_height_160 {
        height: 160px;
    }
    .cs_height_161 {
        height: 161px;
    }
    .cs_height_162 {
        height: 162px;
    }
    .cs_height_163 {
        height: 163px;
    }
    .cs_height_164 {
        height: 164px;
    }
    .cs_height_165 {
        height: 165px;
    }
    .cs_height_166 {
        height: 166px;
    }
    .cs_height_167 {
        height: 167px;
    }
    .cs_height_168 {
        height: 168px;
    }
    .cs_height_169 {
        height: 169px;
    }
    .cs_height_170 {
        height: 170px;
    }
    .cs_height_171 {
        height: 171px;
    }
    .cs_height_172 {
        height: 172px;
    }
    .cs_height_173 {
        height: 173px;
    }
    .cs_height_174 {
        height: 174px;
    }
    .cs_height_175 {
        height: 175px;
    }
    .cs_height_176 {
        height: 176px;
    }
    .cs_height_177 {
        height: 177px;
    }
    .cs_height_178 {
        height: 178px;
    }
    .cs_height_179 {
        height: 179px;
    }
    .cs_height_180 {
        height: 180px;
    }
    .cs_height_181 {
        height: 181px;
    }
    .cs_height_182 {
        height: 182px;
    }
    .cs_height_183 {
        height: 183px;
    }
    .cs_height_184 {
        height: 184px;
    }
    .cs_height_185 {
        height: 185px;
    }
    .cs_height_186 {
        height: 186px;
    }
    .cs_height_187 {
        height: 187px;
    }
    .cs_height_188 {
        height: 188px;
    }
    .cs_height_189 {
        height: 189px;
    }
    .cs_height_190 {
        height: 190px;
    }
    .cs_height_191 {
        height: 191px;
    }
    .cs_height_192 {
        height: 192px;
    }
    .cs_height_193 {
        height: 193px;
    }
    .cs_height_194 {
        height: 194px;
    }
    .cs_height_195 {
        height: 195px;
    }
    .cs_height_196 {
        height: 196px;
    }
    .cs_height_197 {
        height: 197px;
    }
    .cs_height_198 {
        height: 198px;
    }
    .cs_height_199 {
        height: 199px;
    }
    .cs_height_200 {
        height: 200px;
    }
}

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


/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/

.container-fluid {
    max-width: 1630px;
    padding-left: 12px;
    padding-right: 12px;
    margin-left: auto;
    margin-right: auto;
}

.cs_fs_12 {
    font-size: 12px;
    line-height: 1em;
}

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

.cs_fs_16 {
    font-size: 16px;
    line-height: 1.667em;
}

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

.cs_fs_20 {
    font-size: 20px;
    line-height: 1.4em;
}

.cs_fs_24 {
    font-size: 24px;
    line-height: 1.333em;
}

@media (max-width: 1400px) {
    .cs_fs_24 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .cs_fs_24 {
        font-size: 20px;
    }
}

.cs_fs_25 {
    font-size: 25px;
    line-height: 1.44em;
}

@media (max-width: 1400px) {
    .cs_fs_25 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .cs_fs_25 {
        font-size: 22px;
    }
}

.cs_fs_28 {
    font-size: 28px;
    line-height: 1.358em;
}

@media (max-width: 1400px) {
    .cs_fs_28 {
        font-size: 24px;
    }
}

.cs_fs_35 {
    font-size: 35px;
    line-height: 1.34em;
}

@media (max-width: 1400px) {
    .cs_fs_35 {
        font-size: 30px;
    }
}

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

@media (max-width: 1400px) {
    .cs_fs_40 {
        font-size: 32px;
    }
}

.cs_fs_45 {
    font-size: 45px;
    line-height: 1.334em;
}

@media (max-width: 1400px) {
    .cs_fs_45 {
        font-size: 36px;
    }
}

.cs_fs_48 {
    font-size: 48px;
    line-height: 1.125em;
}

@media (max-width: 1400px) {
    .cs_fs_48 {
        font-size: 40px;
    }
}

.cs_fs_50 {
    font-size: 50px;
    line-height: 1.125em;
}

@media (max-width: 1400px) {
    .cs_fs_50 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .cs_fs_50 {
        font-size: 36px;
    }
}

.cs_fs_56 {
    font-size: 56px;
    line-height: 1.327em;
}

@media (max-width: 1400px) {
    .cs_fs_56 {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .cs_fs_56 {
        font-size: 38px;
    }
}

.cs_fs_60 {
    font-size: 60px;
    line-height: 1.334em;
}

@media (max-width: 1400px) {
    .cs_fs_60 {
        font-size: 50px;
    }
}

@media (max-width: 1400px) {
    .cs_fs_60 {
        font-size: 42px;
    }
}

.cs_fs_70 {
    font-size: 70px;
    line-height: 1.286em;
}

@media (max-width: 1400px) {
    .cs_fs_70 {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .cs_fs_70 {
        font-size: 40px;
    }
}

.cs_fs_85 {
    font-size: 85px;
    line-height: 1.11em;
}

@media (max-width: 1600px) {
    .cs_fs_85 {
        font-size: 75px;
    }
}

@media (max-width: 1400px) {
    .cs_fs_85 {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .cs_fs_85 {
        font-size: 56px;
    }
}

@media (max-width: 575px) {
    .cs_fs_85 {
        font-size: 42px;
    }
}

.cs_fs_100 {
    font-size: 100px;
    line-height: 1.33em;
}

@media (max-width: 1400px) {
    .cs_fs_100 {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .cs_fs_100 {
        font-size: 56px;
    }
}

@media (max-width: 575px) {
    .cs_fs_100 {
        font-size: 46px;
    }
}

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

.cs_radius_10 {
    border-radius: 10px;
}

.cs_radius_15 {
    border-radius: 15px;
}

.cs_pl_50 {
    padding-left: 50px;
}

.cs_pl_88 {
    padding-left: 88px;
}

.cs_pr_88 {
    padding-right: 88px;
}

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

.cs_form_field {
    width: 100%;
    border: 1px solid var(--border);
    padding: 16px 20px;
    background-color: transparent;
    border-radius: 5px;
}

.cs_form_field:focus {
    outline: none;
}

.cs_gap_y_20 {
    gap: 20px 0;
}

.cs_gap_y_24 {
    gap: 24px 0;
}

.cs_gap_y_30 {
    gap: 30px 0;
}

.cs_gap_y_35 {
    gap: 35px 0;
}

.cs_gap_y_40 {
    gap: 40px 0;
}

.cs_gap_y_45 {
    gap: 45px 0;
}

.cs_gap_y_50 {
    gap: 50px 0;
}

.cs_gap_y_60 {
    gap: 60px 0;
}

.cs_gap_y_65 {
    gap: 65px 0;
}

.cs_gap_y_70 {
    gap: 65px 0;
}

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

.cs_zoom {
    position: relative;
    overflow: hidden;
    display: block;
}

.cs_zoom .cs_zoom_in {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

.cs_zoom:hover .cs_zoom_in {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

.cs_adventure_logo {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display: inline-block;
}

.cs_adventure_logo_wrap {
    text-align: center;
}

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

.cs_bg_fixed {
    background-attachment: fixed;
}

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

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

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

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

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

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

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

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

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

.cs_primary_bg_1 {
    background-color: #758bae;
}

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

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

.cs_gray_bg_1 {
    background-color: #f8f8f8;
}

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

.cs_accent_bg_1 {
    background-color: #ecffff;
}

.cs_btn.cs_style_1 {
    border: none;
    padding: 15px 35px;
    line-height: 1.6em;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    outline: none;
    color: #fff;
    border-radius: 5px;
    background-color: var(--accent);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media (max-width: 991px) {
    .cs_btn.cs_style_1 {
        padding: 11px 25px;
    }
}

.cs_btn.cs_style_1.cs_radius_0 {
    border-radius: 0;
}

.cs_btn.cs_style_1:hover {
    background-color: var(--primary);
    color: #fff;
}


/* Social Share Btns styling */

.cs_social_btns {
    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;
    gap: 20px;
    padding: 45px 0 40px;
}


/* Start Accordion */

.cs_accordian_body {
    padding: 0px 60px 24px 24px;
    margin-top: -5px;
}

@media (max-width: 991px) {
    .cs_accordian_body {
        padding-bottom: 20px;
    }
}

.cs_accordian_body p {
    margin: 0;
}

.cs_accordian_head {
    padding: 18px 40px 18px 26px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
}

@media (max-width: 991px) {
    .cs_accordian_head {
        padding: 20px 40px 20px 24px;
    }
}

.cs_accordian_head:hover {
    color: var(--accent);
}

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

.cs_accordian_toggle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 19px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    color: var(--primary);
}

.cs_accordian_toggle i {
    position: absolute;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_accordian_toggle i:last-child {
    opacity: 0;
}

.cs_accordian.active .cs_accordian_head {
    pointer-events: none;
}

.cs_accordian.active .cs_accordian_toggle {
    color: var(--accent);
}

.cs_accordian.active .cs_accordian_toggle i:first-child {
    opacity: 0;
}

.cs_accordian.active .cs_accordian_toggle i:last-child {
    opacity: 1;
}


/* End Accordion */


/*--------------------------------
  Pagination
-----------------------------------*/

.cs_pagination_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 90px;
}

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

.cs_pagination_item {
    height: 50px;
    width: 50px;
    background-color: var(--gray);
    color: var(--secondary);
    border-radius: 50%;
}

.cs_pagination_item.active,
.cs_pagination_item:hover {
    background-color: var(--accent);
    color: var(--white);
}

.cs_pagination_item.active {
    pointer-events: none;
}


/*-----------------------------------
 Start Review 
 ------------------------------------*/

.cs_rating_container {
    max-width: 140px;
}

.cs_rating_percentage,
.cs_rating {
    overflow: hidden;
}

.cs_rating_percentage.scale_half,
.cs_rating.scale_half {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    letter-spacing: 10px;
    width: 180px;
    margin-left: -15px;
}

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

.cs_rating {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 157px;
    height: 26px;
    position: relative;
    color: #ffc107;
    font-size: 24px;
    letter-spacing: 5px;
}

.cs_rating::before {
    font-weight: 400;
}

.cs_rating_percentage {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.cs_rating_percentage::before {
    font-weight: 900;
}

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

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

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

.cs_section_heading.cs_style_1 .cs_section_title_up {
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

@media (max-width: 991px) {
    .cs_section_heading.cs_style_1 .cs_section_title_up {
        letter-spacing: 3px;
    }
}

.cs_section_heading.cs_style_1 .cs_section_subtitle {
    margin: 15px 0 0;
}

.cs_image_box.cs_style_1 {
    position: relative;
    padding-bottom: 6px;
    padding-left: 45px;
}

@media (max-width: 991px) {
    .cs_image_box.cs_style_1 {
        padding-left: 0;
    }
}

.cs_image_box.cs_style_1 .cs_image_box_shape {
    position: absolute;
    right: -75px;
    top: 24px;
    width: 60vw;
    height: 100%;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .cs_image_box.cs_style_1 .cs_image_box_shape {
        right: 50px;
    }
}

.cs_image_box.cs_style_1::before {
    content: "";
    position: absolute;
    height: 93.5%;
    width: 60vw;
    right: -20px;
    bottom: 0;
    background-color: var(--accent);
    opacity: 0.5;
    border-radius: 0 320px 320px 0;
}

@media (max-width: 991px) {
    .cs_image_box.cs_style_1::before {
        width: 100vw;
        right: 0;
    }
}

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

.cs_funfact_1_icon {
    position: absolute;
    height: 110px;
    width: 110px;
    right: -50px;
    top: -65px;
}

@media (max-width: 1199px) {
    .cs_funfact_1_icon {
        position: absolute;
        height: 90px;
        width: 90px;
        right: -20px;
        top: -50px;
    }
}

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

.cs_funfact.cs_style_1 {
    border-radius: 6px;
    border: 1px solid var(--accent);
    padding: 24px 0 38px;
}

@media (max-width: 1199px) {
    .cs_funfact.cs_style_1 {
        padding: 14px 0 28px;
    }
}

.cs_funfact.cs_style_1 .cs_funfact_title {
    margin-bottom: 10px;
}

.cs_funfact.cs_style_1 .cs_funfact_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cs_grid_1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

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

@media (min-width: 992px) {
    .cs_grid_1 .cs_grid_item:nth-child(2),
    .cs_grid_1 .cs_grid_item:nth-child(6) {
        grid-column: auto/span 2;
    }
}

.cs_grid_2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

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

@media (min-width: 992px) {
    .cs_grid_2 .cs_grid_item:nth-child(4) {
        grid-column: auto/span 2;
    }
}

.cs_grid_3 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
}

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

.cs_grid_3 .cs_gallery_item {
    position: relative;
    height: 400px;
}

@media (max-width: 1400px) {
    .cs_grid_3 .cs_gallery_item {
        height: 330px;
    }
}

@media (max-width: 1199px) {
    .cs_grid_3 .cs_gallery_item {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .cs_grid_3 .cs_gallery_item {
        height: initial;
    }
}

.cs_grid_3 .cs_gallery_item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cs_grid_3 .cs_gallery_item .cs_gallery_overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_grid_3 .cs_gallery_item .cs_gallery_icon {
    width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 50%;
    background-color: var(--accent);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media (min-width: 992px) {
    .cs_grid_3 .cs_gallery_item {
        grid-column: auto/span 2;
    }
    .cs_grid_3 .cs_gallery_item:nth-child(1) {
        grid-column: auto/span 3;
    }
    .cs_grid_3 .cs_gallery_item:nth-child(6) {
        grid-column: auto/span 3;
    }
}

.cs_grid_3 .cs_gallery_item:hover .cs_gallery_overlay {
    background: rgba(0, 0, 0, 0.2);
}

.cs_grid_3 .cs_gallery_item:hover .cs_gallery_icon {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 575px) {
    .cs_grid_3 .cs_gallery_item:hover .cs_gallery_icon {
        -webkit-transform: translate(-50%, -50%) scale(0.7);
        transform: translate(-50%, -50%) scale(0.7);
    }
}

.cs_grid_4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

@media (min-width: 992px) {
    .cs_grid_4 .cs_grid_item:nth-child(1),
    .cs_grid_4 .cs_grid_item:nth-child(3),
    .cs_grid_4 .cs_grid_item:nth-child(4),
    .cs_grid_4 .cs_grid_item:nth-child(6),
    .cs_grid_4 .cs_grid_item:nth-child(7),
    .cs_grid_4 .cs_grid_item:nth-child(9),
    .cs_grid_4 .cs_grid_item:nth-child(10),
    .cs_grid_4 .cs_grid_item:nth-child(12) {
        grid-column: auto/span 2;
    }
    .cs_grid_4 .cs_grid_item:nth-child(1) .cs_post.cs_style_3 .cs_post_subtitle,
    .cs_grid_4 .cs_grid_item:nth-child(3) .cs_post.cs_style_3 .cs_post_subtitle,
    .cs_grid_4 .cs_grid_item:nth-child(4) .cs_post.cs_style_3 .cs_post_subtitle,
    .cs_grid_4 .cs_grid_item:nth-child(6) .cs_post.cs_style_3 .cs_post_subtitle,
    .cs_grid_4 .cs_grid_item:nth-child(7) .cs_post.cs_style_3 .cs_post_subtitle,
    .cs_grid_4 .cs_grid_item:nth-child(9) .cs_post.cs_style_3 .cs_post_subtitle,
    .cs_grid_4 .cs_grid_item:nth-child(10) .cs_post.cs_style_3 .cs_post_subtitle,
    .cs_grid_4 .cs_grid_item:nth-child(12) .cs_post.cs_style_3 .cs_post_subtitle {
        display: none;
    }
    .cs_grid_4 .cs_grid_item:nth-child(3) .cs_post.cs_style_3,
    .cs_grid_4 .cs_grid_item:nth-child(6) .cs_post.cs_style_3,
    .cs_grid_4 .cs_grid_item:nth-child(9) .cs_post.cs_style_3,
    .cs_grid_4 .cs_grid_item:nth-child(12) .cs_post.cs_style_3 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .cs_grid_4 .cs_grid_item:nth-child(2),
    .cs_grid_4 .cs_grid_item:nth-child(5),
    .cs_grid_4 .cs_grid_item:nth-child(8),
    .cs_grid_4 .cs_grid_item:nth-child(11) {
        grid-row: auto/span 2;
    }
    .cs_grid_4 .cs_grid_item:nth-child(2) .cs_post.cs_style_3,
    .cs_grid_4 .cs_grid_item:nth-child(5) .cs_post.cs_style_3,
    .cs_grid_4 .cs_grid_item:nth-child(8) .cs_post.cs_style_3,
    .cs_grid_4 .cs_grid_item:nth-child(11) .cs_post.cs_style_3 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
    }
    .cs_grid_4 .cs_grid_item:nth-child(2) .cs_post.cs_style_3>*,
    .cs_grid_4 .cs_grid_item:nth-child(5) .cs_post.cs_style_3>*,
    .cs_grid_4 .cs_grid_item:nth-child(8) .cs_post.cs_style_3>*,
    .cs_grid_4 .cs_grid_item:nth-child(11) .cs_post.cs_style_3>* {
        width: 100%;
    }
    .cs_grid_4 .cs_grid_item:nth-child(2) .cs_post.cs_style_3 .cs_post_info,
    .cs_grid_4 .cs_grid_item:nth-child(5) .cs_post.cs_style_3 .cs_post_info,
    .cs_grid_4 .cs_grid_item:nth-child(8) .cs_post.cs_style_3 .cs_post_info,
    .cs_grid_4 .cs_grid_item:nth-child(11) .cs_post.cs_style_3 .cs_post_info {
        padding: 35px 30px;
    }
    .cs_grid_4 .cs_grid_item:nth-child(2) .cs_post.cs_style_3 .cs_post_subtitle,
    .cs_grid_4 .cs_grid_item:nth-child(5) .cs_post.cs_style_3 .cs_post_subtitle,
    .cs_grid_4 .cs_grid_item:nth-child(8) .cs_post.cs_style_3 .cs_post_subtitle,
    .cs_grid_4 .cs_grid_item:nth-child(11) .cs_post.cs_style_3 .cs_post_subtitle {
        margin-bottom: 20px;
    }
}


/* Brand List styling */

.cs_brand_list.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px 24px;
}

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

.cs_page_header {
    padding: 225px 0 155px 0;
}

@media (max-width: 991px) {
    .cs_page_header {
        padding: 205px 0 135px 0;
    }
}

.cs_page_header .cs_page_title {
    margin-bottom: 15px;
}

.cs_page_header .cs_page_subtitle {
    color: rgba(255, 255, 255, 0.75);
}

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

.cs_parallax [class*=cs-to_],
.cs_bg_parallax {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#map {
    height: 400px;
    width: 100%;
}


/*--------------------------------------------------------------
  5. Slider
----------------------------------------------------------------*/

.cs_slider {
    position: relative;
}

.slick-slide img {
    display: initial;
}

.slick-arrow {
    cursor: pointer;
}

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

.cs_slider.cs_style_2 .slick-list {
    padding: 30px 0;
    margin-bottom: -30px;
    margin-top: -30px;
}

.cs_slider.cs_style_2 .cs_slider_wrapper {
    margin-left: -15px;
    margin-right: -15px;
}

.cs_slider.cs_style_2 .slick_slide_in {
    padding-left: 15px;
    padding-right: 15px;
}

.cs_slider.cs_style_1 .slick-list {
    overflow: visible;
}

.cs_slider.cs_style_1 .slick-slide {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_slider.cs_style_1 .slick-active {
    visibility: visible;
    opacity: 1;
}

.cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-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;
}

.cs_slider_arrows.cs_style_1 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_1 .cs_right_arrow:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.cs_slider_arrows.cs_style_1 .cs_left_arrow {
    left: -80px;
}

@media (max-width: 1300px) {
    .cs_slider_arrows.cs_style_1 .cs_left_arrow {
        left: -25px;
    }
}

.cs_slider_arrows.cs_style_1 .cs_right_arrow {
    right: -80px;
}

@media (max-width: 1300px) {
    .cs_slider_arrows.cs_style_1 .cs_right_arrow {
        right: -25px;
    }
}

.cs_pagination.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

.cs_pagination.cs_style_1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 35px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 5px;
}

.cs_pagination.cs_style_1 li {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cs_pagination.cs_style_1 li.slick-active button {
    background-color: var(--accent);
    -webkit-transform: scale(1.333);
    transform: scale(1.333);
}

.cs_pagination.cs_style_1 button {
    height: 12px;
    width: 12px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    background-color: transparent;
    padding: 0;
    text-indent: 100px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media (min-width: 992px) {
    .cs_mobile_show {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .cs_mobile_hide {
        display: none !important;
    }
}


/*--------------------------------------------------------------
6. Video Popup
----------------------------------------------------------------*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cs_video_popup-align {
    overflow: hidden;
}


/*End Video Popup*/


/*--------------------------------------------------------------
7. Header
----------------------------------------------------------------*/

.cs_site_header {
    position: relative;
    z-index: 101;
}

.cs_search_btn {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

.cs_search_btn:hover {
    color: var(--accent);
}

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

.cs_site_header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_site_header.cs_style_1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.cs_site_header.cs_style_1 .cs_main_header_in,
.cs_site_header.cs_style_1 .cs_top_header_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.cs_site_header.cs_style_1 .cs_main_header_in {
    height: 100px;
}

.cs_site_header.cs_style_1 .cs_top_header_in {
    height: 45px;
}

.cs_site_header.cs_style_1 .cs_main_header_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    gap: 50px;
    color: var(--white);
}

@media (max-width: 1199px) {
    .cs_site_header.cs_style_1 .cs_main_header_right {
        padding-right: 50px;
    }
}

.cs_site_header.cs_style_1.cs_color_1 {
    background-color: var(--white);
    color: var(--primary);
    border-color: rgba(221, 221, 221, 0.8);
}

.cs_site_header.cs_style_1.cs_color_1 .cs_main_header_right,
.cs_site_header.cs_style_1.cs_color_1 .cs_nav .cs_nav_list>li>a {
    color: var(--primary);
}

.cs_site_header.cs_style_1.cs_color_1 .cs_header_toolbox>*,
.cs_site_header.cs_style_1.cs_color_1 .cs_main_header_left {
    border-color: rgba(221, 221, 221, 0.8);
}

.cs_site_header.cs_style_1.cs_color_1 .cs_nav .cs_nav_list>li.menu-item-has-children>a::before {
    background-color: currentColor;
}

.cs_site_header.cs_style_1.cs_sticky_active {
    background-color: var(--white);
    -webkit-box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
    box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

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

.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: var(--primary);
}

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

.cs_site_branding {
    display: inline-block;
}

.cs_site_branding+.cs_nav {
    margin-left: 80px;
}

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

.cs_header_toolbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

@media (max-width: 1199px) {
    .cs_header_toolbox {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }
}

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

.cs_header_toolbox>* {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 30px;
}

@media (max-width: 1300px) {
    .cs_header_toolbox>* {
        padding: 0 15px;
    }
}

.cs_top_header {
    padding: 0 30px;
    font-size: 16px;
    line-height: 1.4em;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .cs_top_header {
        padding: 0 15px;
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (max-width: 991px) {
    .cs_top_header .cs_top_header_left {
        display: none;
    }
    .cs_top_header .cs_top_header_in {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.cs_top_header_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--white);
}

.cs_top_header_list li:not(:last-child)::after {
    content: "/";
    padding: 0 8px;
}

.cs_top_header_list a:hover {
    color: var(--white);
    opacity: 0.75;
}

.cs_close {
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_close:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.cs_header_search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_header_search.active {
    opacity: 1;
    visibility: visible;
}

.cs_header_search_in {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 50px 0;
}

.cs_header_search_in .cs_search_form {
    max-width: 100%;
    width: 100%;
    position: relative;
}

.cs_header_search_in .cs_search_form input {
    border-radius: 40px;
    padding: 10px 90px 10px 35px;
    font-size: 20px;
    height: 80px;
    width: 100%;
    border: 1px solid var(--border);
    outline: none;
}

.cs_header_search_in .cs_search_form input:focus {
    border-color: var(--accent);
}

@media (max-width: 575px) {
    .cs_header_search_in .cs_search_form input {
        padding: 10px 65px 10px 20px;
        font-size: 18px;
        height: 66px;
    }
}

.cs_header_search_in .cs_search_form .cs_search_btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: none;
    background-color: transparent;
    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;
    cursor: pointer;
    color: var(--primary);
    width: 80px;
}

.cs_header_search_in .cs_search_form .cs_search_btn:hover {
    color: var(--accent);
}

@media (max-width: 575px) {
    .cs_header_search_in .cs_search_form .cs_search_btn {
        width: 60px;
    }
}

.cs_header_search_in .cs_search_form .cs_search_btn svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 575px) {
    .cs_header_search_in .cs_search_form .cs_search_btn svg {
        width: 24px;
        height: 24px;
    }
}

.cs_sidenav_overlay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary);
    height: 100%;
    width: 100%;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
    opacity: 0.5;
}

.cs_header_search_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 30px;
}

@media (max-width: 991px) {
    .cs_header_search_box {
        gap: 0 15px;
    }
}

@media screen and (min-width: 1200px) {
    .cs_main_header {
        position: relative;
    }
    .cs_main_header .container-fluid {
        padding-right: 120px;
        padding-left: 120px;
    }
    .cs_main_header_center,
    .cs_top_header_center {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .cs_site_header.cs_style_1 .cs_main_header_center {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        width: 100%;
        max-width: calc(100% - 510px);
    }
    .cs_site_header.cs_style_1 .cs_main_header_center .cs_main_header_center {
        position: static;
        -webkit-transform: none;
        transform: none;
        width: auto;
        max-width: none;
    }
    .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;
        padding: 0 30px;
        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }
}

@media screen and (min-width: 1200px) and (max-width: 1300px) {
    .cs_site_header.cs_style_1 .cs_main_header_left {
        padding: 0 15px;
        max-width: 250px;
    }
}

@media screen and (min-width: 1200px) {
    .cs_nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        line-height: 1.6em;
    }
    .cs_nav .cs_nav_list {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: inherit;
    }
    .cs_nav .cs_nav_list>li {
        margin-right: 40px;
        height: inherit;
    }
    .cs_nav .cs_nav_list>li:last-child {
        margin-right: 0;
    }
    .cs_nav .cs_nav_list>li>a {
        padding: 10px 0;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        position: relative;
        height: inherit;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #fff;
    }
    .cs_nav .cs_nav_list>li>a:hover {
        color: rgba(255, 255, 255, 0.8);
    }
    .cs_nav .cs_nav_list>li>ul {
        left: 0;
        top: calc(100% + 15px);
    }
    .cs_nav .cs_nav_list>li>ul::before {
        content: "";
        position: absolute;
        height: 10px;
        width: 10px;
        background-color: #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        left: 20px;
        top: -5px;
        border-radius: 2px 0 0 0;
    }
    .cs_nav .cs_nav_list>li:hover>ul {
        top: 100%;
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list>li.menu-item-has-children>a {
        position: relative;
    }
    .cs_nav .cs_nav_list>li.menu-item-has-children>a::after {
        content: "";
        display: inline-block;
        height: 8px;
        width: 8px;
        border: 2px solid currentColor;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-left: 0;
        border-top: 0;
        margin-left: 6px;
        position: relative;
        top: 3px;
        border-radius: 0px 0px 2px 0px;
    }
    .cs_nav .cs_nav_list>li.menu-item-has-children>a::before {
        content: "";
        height: 11px;
        width: 2px;
        background-color: #fff;
        position: absolute;
        right: 3px;
        bottom: 44px;
    }
    .cs_nav .cs_nav_list li:not(.cs_mega_menu) {
        position: relative;
    }
    .cs_nav .cs_nav_list ul {
        width: 260px;
        background-color: var(--white);
        position: absolute;
        -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
        box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
        padding: 10px 0;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        display: block !important;
        border-radius: 5px;
        -webkit-transition: all 0.1s ease;
        transition: all 0.1s ease;
    }
    .cs_nav .cs_nav_list ul li:hover ul {
        top: 0px;
    }
    .cs_nav .cs_nav_list ul li:hover>ul {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list ul a {
        display: block;
        line-height: inherit;
        padding: 10px 20px;
    }
    .cs_nav .cs_nav_list ul ul {
        top: 15px;
        left: 100%;
    }
    .cs_menu_toggle,
    .cs_munu_dropdown_toggle {
        display: none;
    }
    .cs_nav .cs_nav_list .cs_mega_menu {
        position: relative;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper {
        width: 1320px !important;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        position: fixed;
        top: 100px !important;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        padding: 5px 15px 10px;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper a {
        padding: 7px 10px;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper>li {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding: 10px 0;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper>li>a {
        font-size: 18px;
        font-weight: 600;
        pointer-events: none;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper>li>a:hover {
        background-color: transparent;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper>li ul {
        position: initial;
        border: none;
        padding: 0;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: transparent;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper>li ul a {
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper>li ul a:hover {
        letter-spacing: 1px;
    }
    .cs_nav .cs_nav_list .cs_mega_menu:hover .cs_mega_wrapper li ul {
        opacity: 1;
        visibility: visible;
    }
    .cs_nav .cs_nav_list>li ul:not(.cs_mega_wrapper) .menu-item-has-children>a {
        position: relative;
    }
}

@media screen and (min-width: 1301px) {
    .cs_site_header.cs_style_1 .cs_main_header_center {
        max-width: calc(100% - 650px);
    }
}

@media screen and (max-width: 1400px) {
    .cs_nav .cs_nav_list .cs_mega_wrapper {
        width: 1116px !important;
    }
    .cs_site-branding {
        max-width: 190px;
    }
    .cs_site_header_full_width .container {
        max-width: 100%;
    }
}

@media screen and (max-width: 1199px) {
    .cs_site_branding {
        max-width: 220px;
    }
    .cs_main_header .container {
        max-width: 100%;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper {
        width: 100% !important;
    }
    .cs_site_header_full_width .container {
        padding: 0 15px;
    }
    .cs_munu_dropdown_toggle {
        position: absolute;
        height: 40px;
        width: 100%;
        top: 0;
        left: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 23px 18px;
        cursor: pointer;
        z-index: 3;
    }
    .cs_munu_dropdown_toggle span {
        display: block;
        position: relative;
        height: 10px;
        width: 10px;
    }
    .cs_munu_dropdown_toggle span:before,
    .cs_munu_dropdown_toggle span:after {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        height: 2px;
        width: 10px;
        background-color: currentColor;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .cs_munu_dropdown_toggle span:before {
        -webkit-transform: translate(-50%, -50%) rotate(90deg);
        transform: translate(-50%, -50%) rotate(90deg);
    }
    .cs_munu_dropdown_toggle.active span:before {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    .menu-item-has-children .menu-item-has-children .cs_munu_dropdown_toggle {
        padding: 20px 18px;
    }
    .cs_site_branding {
        position: relative;
        z-index: 101;
    }
    .cs_nav .cs_nav_list {
        position: fixed;
        width: 100vw;
        left: -100vw;
        background-color: var(--primary);
        color: var(--white);
        padding: 10px 0;
        top: 0;
        overflow: auto;
        min-height: 100vh;
        line-height: 1.6em;
        padding-top: 80px;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list.cs_active {
        left: 0vw;
    }
    .cs_nav .cs_nav_list ul {
        padding-left: 15px;
        display: none;
    }
    .cs_nav .cs_nav_list a {
        display: block;
        padding: 12px 15px;
        line-height: 16px;
    }
    .cs_nav .cs_nav_list>li>a {
        font-size: 18px;
        line-height: 22px;
    }
    .cs_nav .menu-item-has-children {
        position: relative;
    }
    .cs_animo_links>li>a .cs_animo_text {
        text-shadow: 0 32px 0 currentColor;
    }
    .cs_animo_links>li>a:hover span {
        -webkit-transform: translateY(-32px);
        transform: translateY(-32px);
    }
    /*Mobile Menu Button*/
    .cs_menu_toggle {
        display: inline-block;
        width: 30px;
        height: 27px;
        cursor: pointer;
        position: absolute;
        top: 27px;
        right: 30px;
        color: var(--white);
    }
    .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.cs_style_1 .cs_main_header_in {
        height: 80px;
    }
    .cs_site_header .current-menu-item>a:before {
        display: none;
    }
    .cs_site_header.cs_style_1 .cs_main_header_center .cs_site_branding {
        position: absolute;
        left: 0px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .cs_site_header.cs_style_1 {
        top: 0;
        padding: 0 15px;
    }
    .cs_site_header.cs_style_1.cs_color_1 .cs_menu_toggle,
    .cs_site_header.cs_style_1.cs_color_1 .cs_munu_dropdown_toggle,
    .cs_site_header.cs_style_1.cs_color_1 .cs_nav .cs_nav_list a {
        color: var(--primary);
    }
    .cs_site_header.cs_style_1.cs_color_1 .cs_nav .cs_nav_list {
        background-color: var(--white);
    }
    .cs_site_header.cs_style_1.cs_color_1 .cs_header_toolbox {
        border-color: var(--border);
    }
    .cs_top_header+.cs_main_header .cs_nav .cs_nav_list {
        padding-top: 130px;
    }
}

@media screen and (max-width: 991px) {
    .cs_site_header .container {
        max-width: 100%;
    }
    .cs_site_header.cs_style_1 .cs_action_box>*:not(:last-child) {
        margin-right: 25px;
    }
}

@media screen and (max-width: 575px) {
    .cs_site-branding {
        max-width: 150px;
    }
}


/*--------------------------------------------------------------
  8. Footer
----------------------------------------------------------------*/

.cs_footer_widget_title {
    margin-bottom: 35px;
}

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

.cs_menu_widget {
    list-style: none;
    padding: 0;
    margin: 0 -7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px 0;
}

.cs_menu_widget li {
    width: 50%;
    padding: 0 7px;
}

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

.cs_contact_widget li p {
    margin-bottom: 2px;
}

.cs_contact_widget li p:last-child {
    margin-bottom: 0;
}

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

.cs_menu_widget_2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px 25px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cs_footer_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px 30px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 767px) {
    .cs_footer_bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.cs_copyright a {
    color: var(--accent);
}

.cs_copyright a:hover {
    text-decoration: underline;
}

.cs_text_widget+.cs_contact_widget {
    margin-top: 30px;
}

.cs_footer_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px 0px;
    padding: 100px 0 60px;
    margin-left: -25px;
    margin-right: -25px;
}

@media (max-width: 991px) {
    .cs_footer_main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 30px 0 0;
    }
}

.cs_footer_main .cs_social_btn.cs_style_1 {
    padding-top: 6px;
}

.cs_footer_main .cs_footer_main_col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 15px 25px;
}

@media (min-width: 992px) {
    .cs_footer_main .cs_footer_main_col:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 991px) {
    .cs_footer_main .cs_footer_main_col {
        padding: 35px 0px;
    }
    .cs_footer_main .cs_footer_main_col:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.cs_newsletter_1_wrap {
    position: relative;
}

.cs_newsletter_1_wrap::before {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    background-color: var(--white);
    top: 0;
    left: 0;
}

.cs_newsletter_1_wrap.cs_before_none::before {
    background-color: transparent;
}

.cs_newsletter_1_wrap>* {
    position: relative;
    z-index: 2;
}

.cs_social_btn.cs_style_1 {
    gap: 10px;
    font-size: 14px;
}

.cs_social_btn.cs_style_1 a {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: var(--accent);
    color: #fff;
}

.cs_newsletter.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 48px 30px;
    gap: 15px;
    border-radius: 5px;
}

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

.cs_newsletter.cs_style_1 .cs_newsletter_icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100px;
}

.cs_newsletter.cs_style_1 .cs_newsletter_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 650px;
    width: 100%;
    gap: 20px;
}

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

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

.cs_newsletter.cs_style_1 .cs_newsletter_form_field {
    background-color: #fff;
    border: none;
    height: 59px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    outline: none;
    padding: 5px 20px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .cs_newsletter.cs_style_1 .cs_newsletter_form_field {
        height: 51px;
    }
}

@media (max-width: 575px) {
    .cs_newsletter.cs_style_1 .cs_newsletter_form_field {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%;
    }
}

.cs_newsletter.cs_style_1 .cs_btn.cs_style_1 {
    background-color: var(--primary);
}

@media (max-width: 575px) {
    .cs_newsletter.cs_style_1 .cs_btn.cs_style_1 {
        width: 100%;
    }
}

.cs_newsletter.cs_style_1 .cs_btn.cs_style_1:hover {
    color: var(--primary);
    background-color: var(--white);
}


/*--------------------------------------------------------------
  9. Sidebar
----------------------------------------------------------------*/

@media (min-width: 1200px) {
    .cs_right_sidebar {
        padding-left: 25px;
    }
}

.cs_sidebar_item {
    padding: 40px;
}

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

@media (max-width: 1199px) {
    .cs_sidebar_item {
        padding: 30px;
    }
}

.cs_sidebar_item .cs_sidebar_search {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.cs_sidebar_item .cs_sidebar_search input {
    width: 100%;
    padding: 18px 70px 18px 18px;
    border: none;
    outline: none;
    height: 58px;
}

.cs_sidebar_item .cs_sidebar_search button {
    width: 58px;
    height: 100%;
    padding: 10px;
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_sidebar_item .cs_sidebar_search button:hover {
    background-color: var(--primary);
}

.cs_sidebar_item .cs_sidebar_widget_title {
    margin-bottom: 15px;
    position: relative;
}

.cs_sidebar_item .cs_sidebar_widget_title::after {
    content: "";
    width: 2px;
    height: 24px;
    background-color: var(--accent);
    position: absolute;
    left: -40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cs_sidebar_item hr {
    border: 1px solid rgba(16, 32, 57, 0.1);
    margin-bottom: 30px;
}

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

.cs_sidebar_item .cs_cat_item:not(:last-child) {
    margin-bottom: 22px;
}

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

.cs_sidebar_item .cs_recent_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.cs_sidebar_item .cs_recent_post_info {
    padding-top: 3px;
}

.cs_sidebar_item .cs_recent_post_thumb {
    display: block;
    width: 100px;
    height: 90px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border-radius: 5px;
    overflow: hidden;
}

.cs_sidebar_item .cs_recent_post_title {
    margin-bottom: 5px;
}

.cs_sidebar_item .cs_recent_post_title a {
    display: block;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.cs_sidebar_item .cs_btn.cs_style_1 {
    padding: 13px 30px;
}

.cs_sidebar_item .cs_tag_link {
    display: inline-block;
    padding: 8px 18px;
}

.cs_sidebar_item .cs_tag_link:hover {
    background-color: var(--accent);
    color: var(--white);
}

.cs_sidebar_item .cs_subscribe_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.cs_sidebar_item .cs_subscribe_form .cs_input_field {
    position: relative;
}

.cs_sidebar_item .cs_subscribe_form .cs_input_field span {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}

.cs_sidebar_item .cs_subscribe_form input {
    width: 100%;
    padding: 16px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    position: relative;
    background-color: var(--white);
}

.cs_sidebar.cs_style_1 .cs_sidebar_search {
    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;
    border: 1px solid var(--accent);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
}

.cs_sidebar.cs_style_1 .cs_sidebar_search input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
}

.cs_sidebar.cs_style_1 .cs_sidebar_search button {
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    margin-right: 15px;
}

.cs_sidebar.cs_style_1 .cs_info_widget {
    -webkit-filter: drop-shadow(0px 3px 45px rgba(64, 40, 229, 0.06));
    filter: drop-shadow(0px 3px 45px rgba(64, 40, 229, 0.06));
    padding: 35px 30px 40px;
    margin-bottom: 50px;
}

.cs_sidebar.cs_style_1 .cs_info_widget .cs_widget_title {
    margin-bottom: 10px;
}

.cs_sidebar.cs_style_1 .cs_info_widget .cs_widget_subtitle {
    margin-bottom: 25px;
}

.cs_sidebar.cs_style_1 .cs_info_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 13px;
}

.cs_sidebar.cs_style_1 .cs_info_item .cs_info_title {
    width: 50%;
}

.cs_sidebar.cs_style_1 .cs_info_item .cs_info_subtitle {
    width: 50%;
    text-align: left;
}

.cs_sidebar.cs_style_1 .cs_info_item .cs_rating {
    letter-spacing: 10px;
    margin-left: -35px;
}

.cs_sidebar.cs_style_1 .cs_info_item .cs_rating::before {
    font-weight: 900;
    color: var(--border);
}

.cs_sidebar.cs_style_1 .cs_booking_widget {
    padding: 25px 25px 35px;
    margin-top: 46px;
}

.cs_sidebar.cs_style_1 .cs_booking_widget .cs_widget_title {
    margin-bottom: 30px;
    font-weight: 600;
}

.cs_sidebar.cs_style_1 .cs_booking_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

.cs_sidebar.cs_style_1 .cs_input_field {
    background-color: var(--white);
}

.cs_sidebar.cs_style_1 .cs_input_field span {
    position: absolute;
    left: 15px;
    top: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cs_sidebar.cs_style_1 .cs_input_field .cs_form_field {
    padding: 13px 20px 13px 40px;
    border: none;
    -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.05);
}

.cs_sidebar.cs_style_1 .cs_input_field textarea {
    width: 100%;
    resize: none;
    padding: 10px 20px 10px 40px;
    border: none;
    outline: none;
}

.cs_sidebar.cs_style_1 .cs_btn.cs_style_1 {
    padding: 11px 30px;
}

.cs_sidebar.cs_style_1 .cs_widget_title {
    margin-bottom: 30px;
}

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

.cs_sidebar.cs_style_1 .cs_post_widget .cs_recent_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.cs_sidebar.cs_style_1 .cs_post_widget .cs_recent_post_thumb {
    display: block;
    width: 100px;
    height: 80px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border-radius: 3px;
    overflow: hidden;
}

.cs_sidebar.cs_style_1 .cs_post_widget .cs_recent_post_title {
    margin-bottom: 5px;
}

.cs_sidebar.cs_style_1 .cs_post_widget .cs_recent_post_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.cs_sidebar.cs_style_1 .cs_follow_widget .cs_widget_title {
    margin-bottom: 17px;
}

.cs_sidebar.cs_style_1 .cs_follow_widget .cs_social_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.cs_sidebar.cs_style_1 .cs_follow_widget .cs_social_btns::after,
.cs_sidebar.cs_style_1 .cs_follow_widget .cs_social_btns::before {
    content: "";
    width: 140px;
    height: 1px;
    background-color: var(--border);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cs_sidebar.cs_style_1 .cs_follow_widget .cs_social_btns::before {
    left: 0;
}

.cs_sidebar.cs_style_1 .cs_follow_widget .cs_social_btns::after {
    right: 0px;
}


/*--------------------------------------------------------------
  10. Hero
----------------------------------------------------------------*/

.cs_hero.cs_style_1 {
    position: relative;
    overflow: hidden;
    padding: 290px 0 200px;
    background-attachment: fixed;
}

@media (max-width: 1550px) {
    .cs_hero.cs_style_1 {
        padding: 236px 0 140px;
    }
}

@media (max-width: 991px) {
    .cs_hero.cs_style_1 {
        padding: 196px 0 100px;
    }
}

.cs_hero.cs_style_1 .container {
    position: relative;
    z-index: 2;
}

.cs_hero.cs_style_1 .cs_hero_title {
    margin-bottom: 75px;
}

@media (max-width: 991px) {
    .cs_hero.cs_style_1 .cs_hero_title {
        margin-bottom: 40px;
    }
    .cs_hero.cs_style_1 .cs_hero_title br {
        display: none;
    }
}

.cs_hero.cs_style_1 .cs_hero_subtitle {
    letter-spacing: 7.5px;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .cs_hero.cs_style_1 .cs_hero_subtitle {
        letter-spacing: 4px;
    }
}

.cs_hero.cs_style_1 .cs_find_form_wrap {
    padding: 25px 28px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(17.7606182098px);
    backdrop-filter: blur(17.7606182098px);
    max-width: 1093px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .cs_hero.cs_style_1 .cs_find_form_wrap {
        padding: 15px;
    }
}

.cs_hero.cs_style_1 .cs_find_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    border-radius: 5px;
}

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

.cs_hero.cs_style_1 .cs_find_form>div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .cs_hero.cs_style_1 .cs_find_form>div {
        height: 50px;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }
    .cs_hero.cs_style_1 .cs_find_form>div .select2-container {
        width: 100% !important;
    }
}

.cs_hero.cs_style_1 .cs_find_form>div:not(:last-child) {
    border-right: 1px solid var(--border);
    padding: 0px 20px;
}

@media (max-width: 767px) {
    .cs_hero.cs_style_1 .cs_find_form>div:not(:last-child) {
        border-right: none;
    }
}

@media (max-width: 575px) {
    .cs_hero.cs_style_1 .cs_find_form>div:not(:first-child) {
        border-top: 1px solid var(--border);
    }
}

.cs_hero.cs_style_1 .cs_find_btn {
    border: none;
    width: 100%;
    background-color: var(--accent);
    color: var(--primary);
    height: 75px;
    gap: 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 0 5px 5px 0;
}

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

@media (max-width: 676px) {
    .cs_hero.cs_style_1 .cs_find_btn {
        height: 50px;
        border-radius: 0 0 5px 5px;
    }
}

.cs_hero.cs_style_1 .cs_find_btn:hover {
    background-color: var(--primary);
    color: #fff;
}

.cs_hero.cs_style_1 .cs_find_btn i {
    font-size: 20px;
}

.cs_hero.cs_style_1 .select2-container--default .select2-selection--single {
    border: none;
}

.cs_hero.cs_style_1 .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    color: var(--primary);
    line-height: 1.6em;
}

.cs_hero.cs_style_1 .select2-container .select2-selection--single {
    height: initial;
}

.cs_hero.cs_style_1 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: 1px solid var(--accent);
    height: 8px;
    width: 8px;
    margin-top: -7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
}

.cs_hero.cs_style_1 .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 1.6em;
}

.cs_hero.cs_style_1 .cs_hero_shape_1,
.cs_hero.cs_style_1 .cs_hero_shape_2,
.cs_hero.cs_style_1 .cs_hero_shape_3 {
    background-color: var(--accent);
    position: absolute;
}

.cs_hero.cs_style_1 .cs_hero_shape_1 {
    width: 501px;
    height: 620px;
    opacity: 0.55;
    top: 0;
    left: 343px;
}

@media (max-width: 1550px) {
    .cs_hero.cs_style_1 .cs_hero_shape_1 {
        height: 580px;
    }
}

@media (max-width: 1400px) {
    .cs_hero.cs_style_1 .cs_hero_shape_1 {
        height: 530px;
        width: 380px;
    }
}

@media (max-width: 991px) {
    .cs_hero.cs_style_1 .cs_hero_shape_1 {
        display: none;
    }
}

.cs_hero.cs_style_1 .cs_hero_shape_2,
.cs_hero.cs_style_1 .cs_hero_shape_3 {
    width: 498px;
    height: 510px;
    border-radius: 50%;
}

.cs_hero.cs_style_1 .cs_hero_shape_2 {
    opacity: 0.45;
    bottom: -210px;
    right: -140px;
}

.cs_hero.cs_style_1 .cs_hero_shape_3 {
    opacity: 0.7;
    right: -10px;
    z-index: 1;
    bottom: -370px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--accent);
}

.select2-results__option {
    padding: 5px 10px;
}

.select2-dropdown {
    border: 1px solid var(--border) !important;
    border-radius: 6px;
    overflow: hidden;
}

.cs_hero.cs_style_2 {
    padding: 145px 0 30px;
    height: 1045px;
    background-color: #c0ffff;
}

@media (max-width: 1600px) {
    .cs_hero.cs_style_2 {
        height: 880px;
    }
}

@media (max-width: 1400px) {
    .cs_hero.cs_style_2 {
        height: 780px;
    }
}

@media (max-width: 991px) {
    .cs_hero.cs_style_2 {
        height: initial;
        padding: 205px 0 30px;
    }
}

.cs_hero.cs_style_2 .cs_hero_text {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

@media (max-width: 1400px) {
    .cs_hero.cs_style_2 .cs_hero_text {
        max-width: 580px;
    }
}

.cs_hero.cs_style_2 .cs_hero_in {
    max-width: 1920px;
    width: 100%;
    padding-left: 11.3%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    z-index: 2;
}

@media (max-width: 1600px) {
    .cs_hero.cs_style_2 .cs_hero_in {
        padding-left: 8%;
    }
}

@media (max-width: 991px) {
    .cs_hero.cs_style_2 .cs_hero_in {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        max-width: 720px;
        padding-left: 12px;
        padding-right: 12px;
        gap: 40px;
    }
}

.cs_hero.cs_style_2 .cs_hero_img {
    position: absolute;
    right: 3%;
    top: 57%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 1600px) {
    .cs_hero.cs_style_2 .cs_hero_img {
        max-width: 48%;
    }
}

@media (max-width: 991px) {
    .cs_hero.cs_style_2 .cs_hero_img {
        max-width: 100%;
        position: initial;
        -webkit-transform: initial;
        transform: initial;
    }
}

.cs_hero.cs_style_2 .cs_hero_mini_title {
    margin-bottom: 15px;
}

.cs_hero.cs_style_2 .cs_hero_title {
    margin-bottom: 30px;
}

.cs_hero.cs_style_2 .cs_hero_desc {
    margin-bottom: 40px;
    max-width: 600px;
}

.cs_hero.cs_style_2 .cs_button_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px 35px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cs_hero.cs_style_2 .cs_hero_ratings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 991px) {
    .cs_hero.cs_style_2 .animated-icon-wrap {
        display: none;
    }
}

.animated-icon {
    position: absolute;
    -webkit-animation: 12s ease-in 0s normal forwards infinite running animated-icon;
    animation: 12s ease-in 0s normal forwards infinite running animated-icon;
    -webkit-transform: scale(0) translate(-50%, -50%);
    transform: scale(0) translate(-50%, -50%);
    -webkit-transform-origin: left top 0;
    transform-origin: left top 0;
    color: rgba(255, 255, 255, 0.8);
}

.animated-icon:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    left: 30%;
    top: 39%;
}

.animated-icon:nth-child(2) {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    left: 50%;
    top: 30%;
}

.animated-icon:nth-child(3) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    left: 10%;
    top: 24%;
}

.animated-icon:nth-child(4) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    left: 82%;
    top: 25%;
}

.animated-icon:nth-child(5) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    left: 16%;
    top: 80%;
}

.animated-icon:nth-child(6) {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    left: 57%;
    top: 80%;
}

.animated-icon:nth-child(7) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    left: 92%;
    top: 72%;
}

@-webkit-keyframes animated-icon {
    to {
        opacity: 0;
        -webkit-transform: scale(10) translate(-50%, -50%);
        transform: scale(10) translate(-50%, -50%);
    }
    from {
        opacity: 1;
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
}

@keyframes animated-icon {
    to {
        opacity: 0;
        -webkit-transform: scale(10) translate(-50%, -50%);
        transform: scale(10) translate(-50%, -50%);
    }
    from {
        opacity: 1;
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
}

.cs_hero.cs_style_3 {
    padding: 30px 0;
    margin-top: 145px;
    height: 900px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1600px) {
    .cs_hero.cs_style_3 {
        height: 720px;
    }
}

@media (max-width: 1400px) {
    .cs_hero.cs_style_3 {
        height: 630px;
    }
}

@media (max-width: 1199px) {
    .cs_hero.cs_style_3 {
        margin-top: 125px;
    }
}

@media (max-width: 991px) {
    .cs_hero.cs_style_3 {
        height: initial;
        padding: 80px 0;
    }
}

.cs_hero.cs_style_3 .cs_hero_in {
    max-width: 1920px;
    width: 100%;
    padding-left: 11%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

@media (max-width: 1600px) {
    .cs_hero.cs_style_3 .cs_hero_in {
        padding-left: 8%;
    }
}

@media (max-width: 991px) {
    .cs_hero.cs_style_3 .cs_hero_in {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 720px;
        padding-left: 12px;
        padding-right: 12px;
        gap: 40px;
    }
}

.cs_hero.cs_style_3 .cs_hero_text {
    max-width: 750px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1600px) {
    .cs_hero.cs_style_3 .cs_hero_text {
        max-width: 670px;
    }
}

@media (max-width: 1199px) {
    .cs_hero.cs_style_3 .cs_hero_text {
        max-width: 520px;
    }
}

@media (max-width: 991px) {
    .cs_hero.cs_style_3 .cs_hero_text {
        max-width: 100%;
    }
}

.cs_hero.cs_style_3 .cs_hero_img {
    position: absolute;
    left: 57%;
    top: 38%;
    -webkit-transform: translateY(-38%);
    transform: translateY(-38%);
}

@media (max-width: 1600px) {
    .cs_hero.cs_style_3 .cs_hero_img {
        max-width: 38%;
    }
}

@media (max-width: 1400px) {
    .cs_hero.cs_style_3 .cs_hero_img {
        left: 54%;
    }
}

@media (max-width: 1199px) {
    .cs_hero.cs_style_3 .cs_hero_img {
        left: 55%;
    }
}

@media (max-width: 1100px) {
    .cs_hero.cs_style_3 .cs_hero_img {
        left: 58%;
    }
}

@media (max-width: 991px) {
    .cs_hero.cs_style_3 .cs_hero_img {
        position: initial;
        max-width: 520px;
        -webkit-transform: initial;
        transform: initial;
    }
}

.cs_hero.cs_style_3 .cs_hero_title {
    margin-bottom: 30px;
}

.cs_hero.cs_style_3 .cs_hero_desc {
    margin-bottom: 40px;
    max-width: 600px;
}

@media (max-width: 1400px) {
    .cs_hero.cs_style_3 .cs_hero_desc {
        max-width: 500px;
    }
}

.cs_hero.cs_style_3 .cs_hero_mini_title {
    letter-spacing: 7.5px;
    margin-bottom: 12px;
}

.cs_wave_animation {
    width: 1500px;
    height: 1500px;
    position: absolute;
    bottom: 0;
    left: -1500px;
}

.cs_wave_animation:before,
.cs_wave_animation:after {
    position: absolute;
    display: inline-block;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(63, 208, 212, 0.3);
    top: 50%;
    left: 50%;
    border: 1px solid rgba(63, 208, 212, 0.6);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: wave-animation 6s linear infinite;
    animation: wave-animation 6s linear infinite;
}

.cs_wave_animation:after {
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
}

@-webkit-keyframes wave-animation {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0.5;
        filter: alpha(opacity=50);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@keyframes wave-animation {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0.5;
        filter: alpha(opacity=50);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
        filter: alpha(opacity=0);
    }
}


/*--------------------------------------------------------------
  11. Banner
----------------------------------------------------------------*/

.cs_banner.cs_style_1 .cs_banner_review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.cs_banner.cs_style_1 .cs_banner_text {
    max-width: 480px;
    margin-left: auto;
}

.cs_banner.cs_style_1 .cs_banner_title {
    margin-bottom: 35px;
}

.cs_banner.cs_style_1 .cs_banner_subtitle {
    margin-bottom: 42px;
    max-width: 420px;
}

.cs_banner.cs_style_2 .cs_banner_text {
    padding-left: 30px;
}

.cs_banner.cs_style_2 .cs_banner_title {
    margin-bottom: 15px;
}

.cs_banner.cs_style_2 .cs_banner_title_mini {
    margin-bottom: 25px;
}

.cs_banner.cs_style_2 .cs_banner_subtitle {
    margin-bottom: 43px;
}


/*--------------------------------------------------------------
  12. Iconbox
----------------------------------------------------------------*/

.cs_iconbox.cs_style_1 {
    text-align: center;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon {
    width: 106px;
    height: 106px;
    background-color: var(--white);
    margin: 0 auto 32px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 10px;
}

@media (max-width: 991px) {
    .cs_iconbox.cs_style_1 .cs_iconbox_icon {
        width: 85px;
        height: 85px;
        margin: 0 auto 20px;
        padding: 20px;
    }
}

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

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

.cs_iconbox.cs_style_1:hover .cs_iconbox_icon {
    background-color: var(--accent);
}

.cs_iconbox.cs_style_1:hover .cs_iconbox_icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

@media (max-width: 1199px) {
    .cs_iconbox.cs_style_1 br {
        display: none;
    }
}

.cs_iconbox.cs_style_2 {
    border: 1px solid var(--accent);
    padding: 50px 19px 45px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 5px;
}

@media (max-width: 1199px) {
    .cs_iconbox.cs_style_2 {
        padding: 30px 14px 25px;
    }
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon {
    margin: 0 auto 12px;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon img {
    height: 75px;
}

.cs_iconbox.cs_style_2 .cs_iconbox_title,
.cs_iconbox.cs_style_2 .cs_iconbox_subtitle,
.cs_iconbox.cs_style_2 img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_iconbox.cs_style_2:hover {
    background-color: var(--accent);
}

.cs_iconbox.cs_style_2:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_title,
.cs_iconbox.cs_style_2:hover .cs_iconbox_subtitle {
    color: var(--white);
}

.cs_iconbox.cs_style_3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon {
    width: 65px;
    height: 65px;
    background-color: #ddf5f2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.cs_iconbox.cs_style_3 .cs_iconbox_title {
    margin-bottom: 8px;
}

.cs_iconbox.cs_style_4 .cs_iconbox_icon {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

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

.cs_iconbox.cs_style_4:hover .cs_iconbox_icon {
    background-color: var(--accent);
    border-color: var(--accent);
}

.cs_iconbox.cs_style_4:hover .cs_iconbox_icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.cs_iconbox_4_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

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

.cs_iconbox_4_wrap>* {
    width: 22%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media (max-width: 991px) {
    .cs_iconbox_4_wrap>* {
        width: 100%;
    }
}

.cs_iconbox_4_wrap>*:nth-child(2) {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cs_iconbox.cs_style_5 {
    padding: 1px 10px 35px;
    margin-top: 35px;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon {
    width: 100px;
    height: 100px;
    margin: -35px auto 33px;
    font-size: 70px;
}

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


/*--------------------------------------------------------------
  13. Posts
----------------------------------------------------------------*/

.cs_post.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    background: var(--white);
    -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.1);
    padding-right: 60px;
    min-height: 400px;
}

@media (max-width: 1600px) {
    .cs_post.cs_style_1 {
        padding-right: 30px;
    }
}

@media (max-width: 1199px) {
    .cs_post.cs_style_1 {
        padding-right: 20px;
        gap: 20px;
        min-height: 350px;
    }
}

@media (max-width: 500px) {
    .cs_post.cs_style_1 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-right: 0;
    }
}

.cs_post.cs_style_1 .cs_post_thumb {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 48%;
}

@media (max-width: 1199px) {
    .cs_post.cs_style_1 .cs_post_thumb {
        width: 42%;
    }
}

@media (max-width: 500px) {
    .cs_post.cs_style_1 .cs_post_thumb {
        width: 100%;
        max-height: 350px;
    }
}

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

.cs_post.cs_style_1 .cs_post_info {
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 500px) {
    .cs_post.cs_style_1 .cs_post_info {
        padding: 10px 20px 30px 20px;
    }
}

.cs_post.cs_style_1 .cs_posted_by {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
    right: 0;
    bottom: 0;
}

.cs_post.cs_style_1 .cs_posted_by span {
    padding: 9px 16px;
}

.cs_post.cs_style_1 .cs_post_avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 17px;
}

.cs_post.cs_style_1 .cs_post_title {
    margin-bottom: 20px;
}

.cs_post.cs_style_1 .cs_post_title a {
    display: block;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cs_post.cs_style_1 .cs_post_subtitle {
    margin-bottom: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.cs_post.cs_style_1 .cs_avatar_thumb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.cs_post.cs_style_1 .cs_avatar_thumb img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cs_post.cs_style_1 .cs_post_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 20px;
}

.cs_post.cs_style_1 .cs_post_btns:hover .cs_comments svg {
    color: var(--accent);
}

.cs_post.cs_style_1 .cs_comments svg {
    color: var(--primary);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_post.cs_style_1 .cs_post_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 14px 25px 14px 53px;
    -webkit-clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 18% 50%, 0% 0%);
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 18% 50%, 0% 0%);
    color: var(--white);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media (max-width: 1300px) {
    .cs_post.cs_style_1 .cs_post_btn {
        padding: 14px 20px 14px 40px;
    }
}

.cs_post.cs_style_1 .cs_post_btn:hover {
    background-color: var(--accent);
}

.cs_post.cs_style_2 {
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
}

.cs_post.cs_style_2 .cs_post_info {
    padding: 20px 30px;
}

@media (max-width: 1199px) {
    .cs_post.cs_style_2 .cs_post_info {
        padding: 20px 24px;
    }
}

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

.cs_post.cs_style_2 .cs_post_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cs_post.cs_style_2 .cs_post_overlay {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid var(--white);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_post.cs_style_2 .cs_posted_by {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    padding: 10px 14px;
    top: 30px;
    right: 30px;
    z-index: 1;
    line-height: 1.2em;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_post.cs_style_2 .cs_post_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

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

.cs_post.cs_style_2 .cs_post_meta i,
.cs_post.cs_style_2 .cs_post_meta svg {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_post.cs_style_2 hr {
    margin-bottom: 16px;
}

.cs_post.cs_style_2 .cs_post_title {
    margin-bottom: 18px;
}

.cs_post.cs_style_2 .cs_post_title a {
    display: block;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cs_post.cs_style_2:hover .cs_post_overlay {
    opacity: 1;
}

.cs_post.cs_style_2:hover .cs_posted_by {
    background-color: var(--accent);
}

.cs_post.cs_style_3 {
    -webkit-box-shadow: 0px 5px 50px 0px rgba(234, 234, 234, 0.7);
    box-shadow: 0px 5px 50px 0px rgba(234, 234, 234, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

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

.cs_post.cs_style_3 .cs_post_thumb {
    display: block;
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 265px;
}

@media (max-width: 767px) {
    .cs_post.cs_style_3 .cs_post_thumb {
        width: 100%;
    }
}

.cs_post.cs_style_3 .cs_post_thumb:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--primary);
    opacity: 0;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

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

.cs_post.cs_style_3 .cs_post_info {
    width: 50%;
    padding: 20px 30px;
}

@media (max-width: 767px) {
    .cs_post.cs_style_3 .cs_post_info {
        width: 100%;
    }
}

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

.cs_post.cs_style_3 .cs_post_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

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

.cs_post.cs_style_3 .cs_link_hover {
    position: absolute;
    z-index: 2;
    top: -100px;
    right: 20px;
    width: 50px;
    height: 120px;
    background: var(--accent);
    border-radius: 0 0 40px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
}

.cs_post.cs_style_3 .cs_link_hover i {
    color: var(--accent);
    background-color: var(--white);
    height: 40px;
    width: 40px;
    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;
    border-radius: 50%;
    margin-bottom: 5px;
    opacity: 0;
    -webkit-transform: scale(0.5) rotate(180deg);
    transform: scale(0.5) rotate(180deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_post.cs_style_3:hover .cs_post_thumb::after {
    opacity: 0.4;
}

.cs_post.cs_style_3:hover .cs_post_thumb .cs_link_hover {
    opacity: 1;
    top: 0px;
}

.cs_post.cs_style_3:hover .cs_post_thumb .cs_link_hover i {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.cs_post.cs_style_4 {
    -webkit-box-shadow: 0px 5px 50px 0px rgba(234, 234, 234, 0.7);
    box-shadow: 0px 5px 50px 0px rgba(234, 234, 234, 0.7);
}

.cs_post.cs_style_4 .cs_post_info {
    padding: 32px 30px;
}

.cs_post.cs_style_4 .cs_post_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

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

.cs_post.cs_style_5:not(:first-child) {
    margin-top: 70px;
}

@media (max-width: 991px) {
    .cs_post.cs_style_5:not(:first-child) {
        margin-top: 40px;
    }
}

.cs_post.cs_style_5 .cs_post_thumb {
    display: block;
    width: 100%;
    margin-bottom: 24px;
}

.cs_post.cs_style_5 .cs_post_thumb:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--primary);
    opacity: 0;
    left: 0;
    top: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.cs_post.cs_style_5 .cs_post_title {
    margin-bottom: 16px;
}

.cs_post.cs_style_5 .cs_post_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.cs_post.cs_style_5 .cs_post_meta a:hover {
    text-decoration: underline;
}

.cs_post.cs_style_5 .cs_post_meta li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: var(--primary);
    opacity: 0.4;
    display: inline-block;
    position: relative;
    top: 2px;
    margin-left: 12px;
}

.cs_post.cs_style_5 .cs_post_subtitle {
    margin-bottom: 25px;
}

.cs_post.cs_style_5 .cs_post_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.cs_post.cs_style_5 .cs_post_btn span {
    display: inline-block;
    position: relative;
}

.cs_post.cs_style_5 .cs_post_btn span::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.cs_post.cs_style_5 .cs_post_btn:hover span::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.cs_post.cs_style_5 .cs_link_hover {
    position: absolute;
    z-index: 2;
    top: -100px;
    right: 30px;
    width: 50px;
    height: 120px;
    background: var(--accent);
    border-radius: 0 0 40px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
}

.cs_post.cs_style_5 .cs_link_hover i {
    color: var(--accent);
    background-color: var(--white);
    height: 40px;
    width: 40px;
    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;
    border-radius: 50%;
    margin-bottom: 5px;
    opacity: 0;
    -webkit-transform: scale(0.5) rotate(180deg);
    transform: scale(0.5) rotate(180deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_post.cs_style_5:hover .cs_post_thumb::after {
    opacity: 0.4;
}

.cs_post.cs_style_5:hover .cs_post_thumb .cs_link_hover {
    opacity: 1;
    top: 0px;
}

.cs_post.cs_style_5:hover .cs_post_thumb .cs_link_hover i {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}


/* Post Details styling */

.cs_post_details {
    font-size: 18px;
    line-height: 1.7em;
}

.cs_post_details> :last-child {
    margin-bottom: 0;
}

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

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

.cs_post_details .cs_post_label {
    background-color: var(--accent);
    color: var(--white);
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 8px 28px;
    border-radius: 3px;
}

.cs_post_details .cs_post_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}

.cs_post_details .cs_post_meta i {
    margin-right: 8px;
}

.cs_post_details h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 32px;
}

.cs_post_details h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 32px;
}

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

.cs_post_details blockquote {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--primary-font);
    margin-bottom: 30px;
    margin-top: 30px;
    font-style: initial;
    line-height: 1.45;
}

.cs_post_author {
    padding-bottom: 40px;
}

.cs_post_author .cs_author_top {
    margin-bottom: 11px;
    gap: 10px;
}

.cs_post_author .cs_author_thumb {
    width: 60px;
    height: 60px;
    padding: 5px;
    border: 1px dashed var(--accent);
    border-radius: 50%;
}

.cs_post_author .cs_author_thumb img {
    border-radius: inherit;
}

.cs_post_author .cs_author_title {
    margin-bottom: 2px;
}

.cs_post_author .cs_author_bottom {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.cs_post_author .cs_author_bottom p {
    line-height: 1.75em;
}

.cs_post_author .cs_social_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    padding: 0 34px 0 20px;
}


/*--------------------------------------------------------------
  14. Comments
----------------------------------------------------------------*/

.cs_comments {
    margin-top: 26px;
}

.cs_comments h3 {
    margin-bottom: 27px;
}

.cs_comments .cs_comment:not(:last-child) {
    margin-bottom: 50px;
}

.cs_comments .cs_comment_body {
    position: relative;
    padding-left: 80px;
    max-width: 770px;
}

.cs_comments img {
    width: 60px;
    height: 60px;
    padding: 5px;
    border: 1px dashed var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.cs_comments .cs_reply_btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
}

.cs_comments .cs_reply_btn a {
    background-color: var(--accent);
    color: var(--white);
    padding: 5px 15px;
}

.cs_comments .cs_reply_btn a:hover {
    background-color: var(--primary);
}

.cs_comments .cs_comment_form {
    padding: 40px 30px 45px 30px;
    -webkit-filter: drop-shadow(0px 3px 13.5px rgba(27, 27, 206, 0.07));
    filter: drop-shadow(0px 3px 13.5px rgba(27, 27, 206, 0.07));
    margin-top: 100px;
}

@media (max-width: 991px) {
    .cs_comments .cs_comment_form {
        margin-top: 50px;
    }
}

.cs_comments .cs_comment_form h3 {
    margin-bottom: 34px;
}

.cs_comments .cs_comment_form .cs_form_field {
    border: none;
    resize: none;
}


/*--------------------------------------------------------------
  15. CTA
----------------------------------------------------------------*/

.cs_cta.cs_style_1 .cs_cta_title_mini {
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.cs_cta.cs_style_1 .cs_cta_subtitle {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
}

.cs_cta.cs_style_1 .cs_cta_title {
    margin-bottom: 20px;
}

.cs_cta.cs_style_1 .cs_btn.cs_style_1:hover {
    background-color: var(--white);
    color: var(--accent);
}

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

.cs_partners .cs_partner {
    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;
    min-height: 180px;
    border-bottom: 1px solid #8f999e;
    border-right: 1px solid #8f999e;
    padding: 15px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .cs_partners .cs_partner {
        min-height: 120px;
    }
}

@media (max-width: 350px) {
    .cs_partners .cs_partner {
        min-height: 100px;
    }
}

.cs_partners .cs_partner img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/*--------------------------------------------------------------
  16. Testimonial
----------------------------------------------------------------*/

.cs_testimonial.cs_style_1 .cs_feedback.cs_style_1 {
    background-color: var(--white);
    -webkit-filter: drop-shadow(10px 5px 50px rgba(220, 220, 220, 0.3));
    filter: drop-shadow(10px 5px 50px rgba(220, 220, 220, 0.3));
    padding: 0px 65px 30px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 1400px) {
    .cs_testimonial.cs_style_1 .cs_feedback.cs_style_1 {
        padding-right: 30px;
    }
}

@media (max-width: 575px) {
    .cs_testimonial.cs_style_1 .cs_feedback.cs_style_1 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 20px;
    }
}

.cs_testimonial.cs_style_1 .cs_feedback_avatar {
    margin-top: -30px;
}

.cs_testimonial.cs_style_1 .cs_avatar_thumb {
    width: 150px;
    height: 150px;
    margin-bottom: 19px;
}

.cs_testimonial.cs_style_1 .cs_avatar_thumb img {
    border-radius: inherit;
}

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

.cs_testimonial.cs_style_1 blockquote {
    margin-bottom: 12px;
}

.cs_testimonial.cs_style_1 .cs_testimonial_thumb {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    padding-right: 12px;
    margin-left: 40px;
}

@media (max-width: 991px) {
    .cs_testimonial.cs_style_1 .cs_testimonial_thumb {
        margin-left: 0;
    }
}

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

.cs_testimonial.cs_style_1 .cs_testimonial_thumb img {
    border-radius: inherit;
}

.cs_testimonial.cs_style_1 .cs_testimonial_thumb .cs_shape_1 {
    width: 25px;
    height: 316px;
    background-color: var(--accent);
    -webkit-clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);
    clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 575px) {
    .cs_testimonial.cs_style_1 .cs_testimonial_thumb .cs_shape_1 {
        display: none;
    }
}

.cs_testimonial.cs_style_1 .cs_testimonial_thumb .cs_shape_2 {
    height: 289px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: var(--accent);
    left: -20px;
    bottom: -110px;
    padding: 15px;
    border-radius: 181px;
}

.cs_testimonial.cs_style_2 {
    padding: 40px 120px 50px 40px;
    -webkit-box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575px) {
    .cs_testimonial.cs_style_2 {
        padding: 30px 30px 37px 30px;
    }
}

.cs_testimonial.cs_style_2 blockquote {
    font-style: normal;
    margin-bottom: 30px;
}

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

@media (max-width: 575px) {
    .cs_testimonial.cs_style_2 .cs_testimonial_avatar {
        gap: 12px;
    }
}

.cs_testimonial.cs_style_2 .cs_avatar_thumb {
    width: 64px;
    height: 64px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.cs_testimonial.cs_style_2 .cs_avatar_thumb img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cs_testimonial.cs_style_2 .cs_avatar_title {
    margin-bottom: 6px;
}

.cs_testimonial.cs_style_2 .cs_quote_shape {
    bottom: 60px;
    right: 40px;
}

@media (max-width: 575px) {
    .cs_testimonial.cs_style_2 .cs_quote_shape {
        bottom: 22px;
        right: 22px;
    }
}

.cs_testimonial.cs_style_2 .cs_avatar_title {
    margin-top: -2px;
}


/*--------------------------------------------------------------
  17. Tour
----------------------------------------------------------------*/

.cs_tour_details_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 38px;
}

.cs_tour_details_title small {
    display: inline-block;
    margin-top: 7px;
    font-size: 20px;
    color: var(--secondary);
    font-weight: 400;
    font-family: var(--secondary-font);
}

.cs_tour_details_title span {
    font-size: 16px;
}


/* Rating styling */

.cs_review_content {
    padding: 30px 40px 40px;
    border: 1px solid var(--border);
    border-radius: 5px;
}

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

.cs_review_content .cs_review_title {
    margin-bottom: 30px;
}

.cs_review_content .cs_progress_bars {
    padding-left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 991px) {
    .cs_review_content .cs_progress_bars {
        padding-left: 0;
        padding-top: 30px;
    }
}

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

.cs_review_content .cs_review_count_box {
    background-color: var(--white);
    -webkit-box-shadow: 0 6px 21px rgba(21, 3, 89, 0.08);
    box-shadow: 0 6px 21px rgba(21, 3, 89, 0.08);
    padding: 32px 15px;
}

.cs_review_content .cs_review_count_box .cs_rating_container {
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cs_review_content .cs_review_count_box .cs_rating_container .cs_rating {
    margin-left: 6px;
}

.cs_review_content .cs_progress_line {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 7px;
    background-color: var(--gray);
    border-radius: 10px;
    margin-right: 15px;
}

.cs_review_content .cs_rating_value {
    margin-bottom: 10px;
}

.cs_review_content .cs_rating {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    margin-left: -20px;
}

.cs_review_content .cs_rating::before {
    font-weight: 900;
    color: var(--border);
}

.cs_tour_gallery {
    margin-top: 47px;
}

.cs_tour_gallery .cs_gallery_title {
    margin-bottom: 37px;
}

.cs_tour_gallery .cs_grid_4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.cs_tour_gallery .cs_gallery_img:nth-child(2) {
    grid-row: auto/span 2;
}

.cs_tour_gallery .cs_gallery_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}


/* Tour List styling */

.cs_list_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 17px;
    margin-bottom: 30px;
}

.cs_list_item:last-child {
    margin-bottom: 0;
}

.cs_list_item .cs_list_index {
    width: 53px;
    height: 53px;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 500;
    margin-top: 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_list_item .cs_list_content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 75px;
}

.cs_list_item .cs_list_item_title {
    margin-bottom: 9px;
}

.cs_list_item:hover .cs_list_index {
    background-color: var(--accent);
}


/* Requirements List styling */

.cs_list_wrapper {
    padding: 40px 30px 43px;
}

.cs_list_wrapper h3 {
    margin-bottom: 25px;
}

.cs_list_wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cs_list_wrapper img {
    margin: 0;
}

.cs_list_wrapper li {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .cs_list_wrapper li {
        width: 100%;
    }
}

.cs_list_wrapper li:hover i {
    background-color: var(--accent);
}

.cs_list_wrapper li span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
}

.cs_list_wrapper i {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/*--------------------------------------------------------------
  18. Tab
----------------------------------------------------------------*/

.cs_tab_links.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin: 50px 0 40px;
}

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

.cs_tab_links.cs_style_1 li a {
    display: inline-block;
    padding: 8px 40px;
}

@media (max-width: 991px) {
    .cs_tab_links.cs_style_1 li a {
        padding: 8px 25px;
    }
}

.cs_tab_links.cs_style_1 li a:hover {
    background-color: var(--accent);
    color: var(--white);
}

.cs_tab_links.cs_style_1 li.active a {
    background-color: var(--accent);
}


/*--------------------------------
 Tab styling
 -------------------------------*/

.cs_tab {
    display: none;
}

.cs_tab .cs_title {
    line-height: 1.333em;
    margin-bottom: 10px;
}

.cs_tab.active {
    display: block;
}

.cs_tab .cs_grid_3 {
    gap: 10px;
}

.cs_tab .cs_grid_3 .cs_gallery_item {
    height: initial;
}


/*--------------------------------------------------------------
  19. Team
----------------------------------------------------------------*/

.cs_team.cs_style_1 {
    margin-bottom: 13px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.cs_team.cs_style_1::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 13px;
}

.cs_team.cs_style_1:hover .cs_zoom_in {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

.cs_team.cs_style_1 .cs_team_thumb {
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.cs_team.cs_style_1 .cs_team_thumb::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(16, 32, 57, 0.6);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.cs_team.cs_style_1 .cs_team_thumb img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}

.cs_team.cs_style_1 .cs_team_info {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.cs_team.cs_style_1 .cs_team_title {
    margin-bottom: 8px;
}

.cs_team.cs_style_1 .cs_team_subtitle {
    margin-bottom: 20px;
}

.cs_team.cs_style_1 .cs_social_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.cs_team.cs_style_1 .cs_social_btns a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--white);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_team.cs_style_1 .cs_social_btns a:hover {
    background-color: var(--white);
    color: var(--accent);
}

.cs_team.cs_style_1:hover .cs_team_info {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.cs_team.cs_style_1:hover .cs_team_thumb::after {
    opacity: 1;
}


/*--------------------------------------------------------------
  20. Card
----------------------------------------------------------------*/

.cs_card.cs_style_1 {
    width: 100%;
    height: 100%;
    padding-top: 155%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cs_card.cs_style_1 {
        padding-top: 120%;
    }
}

.cs_card.cs_style_1 .cs_card_overlay {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(13.54%, rgba(16, 32, 57, 0.8)), to(rgba(63, 208, 212, 0)));
    background: linear-gradient(0deg, rgba(16, 32, 57, 0.8) 13.54%, rgba(63, 208, 212, 0) 100%);
    left: 0;
    top: 0;
    opacity: 1;
    transition: none !important;
}

.cs_card.cs_style_1 .cs_card_content {
    width: 100%;
    padding: 50px 30px;
    left: 0;
    bottom: 0px;
    opacity: 1;
    transition: none ;
}

@media (max-width: 1199px) {
    .cs_card.cs_style_1 .cs_card_content {
        padding: 30px 25px;
    }
}

.cs_card.cs_style_1 .cs_card_content.cs_accent_bg {
    padding: 30px 30px 40px;
}

@media (max-width: 1199px) {
    .cs_card.cs_style_1 .cs_card_content.cs_accent_bg {
        padding: 30px 25px;
    }
}

.cs_card.cs_style_1 .cs_card_content.cs_accent_bg .cs_card_title a:hover {
    color: var(--primary);
}

.cs_card.cs_style_1 .cs_card_content.cs_accent_bg .cs_btn.cs_style_1 {
    background-color: var(--white);
    color: var(--accent);
}

.cs_card.cs_style_1 .cs_card_content.cs_accent_bg .cs_btn.cs_style_1:hover {
    background-color: var(--primary);
}

.cs_card.cs_style_1 .cs_card_meta {
    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;
    gap: 5px 22px;
    margin-bottom: 16px;
}

.cs_card.cs_style_1 .cs_card_meta div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.cs_card.cs_style_1 .cs_card_title {
    margin-bottom: 25px;
}

.cs_card.cs_style_1 .cs_card_action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.cs_card.cs_style_1 .cs_btn.cs_style_1 {
    padding: 12px 25px;
}

@media (max-width: 1199px) {
    .cs_card.cs_style_1 .cs_btn.cs_style_1 {
        padding: 9px 18px;
    }
}

.cs_card.cs_style_1 .cs_btn.cs_style_1:hover {
    background-color: var(--white);
    color: var(--primary);
}

.cs_card.cs_style_1:hover .cs_card_content,
.cs_card.cs_style_1:hover .cs_card_overlay {
    opacity: 1;
}

.cs_card.cs_style_2 {
    height: 410px;
    display: block;
}

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

.cs_card.cs_style_2 .cs_card_content {
    width: 100%;
    padding: 50px;
    left: 0;
    bottom: 0;
    pointer-events: none;
}

@media (max-width: 1199px) {
    .cs_card.cs_style_2 .cs_card_content {
        padding: 35px;
    }
}

@media (max-width: 575px) {
    .cs_card.cs_style_2 .cs_card_content {
        padding: 25px;
    }
}

.cs_card.cs_style_2 .cs_card_title {
    margin-bottom: 7px;
}

.cs_card.cs_style_2 img {
    -o-object-fit: cover;
    object-fit: cover;
}

.cs_card.cs_style_3 {
    -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.1);
    max-width: 515px;
    margin-left: auto;
    margin-right: auto;
}

.cs_card.cs_style_3:hover .cs_package_badge {
    background-color: var(--accent);
    color: var(--white);
}

.cs_card.cs_style_3 .cs_package_badge {
    left: 20px;
    top: 20px;
    background-color: var(--white);
    padding: 17px 58px 17px 31px;
    -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_card.cs_style_3 .cs_card_content {
    width: 100%;
    padding: 22px 25px 30px 25px;
}

.cs_card.cs_style_3 .cs_card_title {
    margin-bottom: 10px;
}

.cs_card.cs_style_3 .cs_card_subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.cs_card.cs_style_3 hr {
    margin: 22px 0 20px;
}

.cs_card.cs_style_3 .cs_card_action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cs_card.cs_style_3 .cs_btn.cs_style_1 {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    font-size: 16px;
}

.cs_card.cs_style_3 .cs_btn.cs_style_1:hover {
    background-color: var(--accent);
}

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

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

.cs_card_4_list>.cs_card.cs_style_4 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 767px) {
    .cs_card_4_list>.cs_card.cs_style_4 {
        -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
        flex: none !important;
    }
}

.cs_card_4_list .cs_card.cs_style_4 {
    height: 450px;
}

@media (max-width: 767px) {
    .cs_card_4_list .cs_card.cs_style_4 {
        height: 300px;
    }
}

.cs_card_4_list .cs_card.cs_style_4:nth-child(1) {
    -webkit-box-flex: 1.5;
    -ms-flex: 1.5;
    flex: 1.5;
}

.cs_card_4_list .cs_card.cs_style_4:nth-child(2) {
    -webkit-box-flex: 1.3;
    -ms-flex: 1.3;
    flex: 1.3;
}

.cs_card_4_list .cs_card.cs_style_4 .cs_card_in {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    left: 80px;
    opacity: 0;
}

@media (max-width: 767px) {
    .cs_card_4_list .cs_card.cs_style_4 .cs_card_in {
        left: 0;
        opacity: 1;
    }
}

.cs_card_4_list .cs_card.cs_style_4.active {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
}

.cs_card_4_list .cs_card.cs_style_4.active .cs_card_in {
    opacity: 1;
    left: 0;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.cs_card_4_list .cs_card.cs_style_4.active .cs_card_icon {
    -webkit-transform: translate(0px, 0px) scale(1) rotate(360deg);
    transform: translate(0px, 0px) scale(1) rotate(360deg);
}

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

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

.cs_card.cs_style_4 .cs_card_title a {
    color: var(--white);
}

.cs_card.cs_style_4 .cs_card_title a:hover {
    text-decoration: underline;
}

.cs_card.cs_style_4 .cs_card_thumb {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.cs_card.cs_style_4 .cs_card_in {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 44px 34px;
}

@media (max-width: 1400px) {
    .cs_card.cs_style_4 .cs_card_in {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .cs_card.cs_style_4 .cs_card_in {
        padding: 30px;
    }
}

.cs_card.cs_style_4 .cs_card_icon {
    height: 55px;
    width: 55px;
    background-color: var(--white);
    color: var(--primary);
    right: 18px;
    top: 24px;
    -webkit-transform: translate(0px, 0px) scale(0) rotate(360deg);
    transform: translate(0px, 0px) scale(0) rotate(360deg);
    z-index: 1;
    border-radius: 50%;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

@media (max-width: 1400px) {
    .cs_card.cs_style_4 .cs_card_icon {
        left: 40px;
        bottom: 50px;
    }
}

@media (max-width: 767px) {
    .cs_card.cs_style_4 .cs_card_icon {
        display: none;
    }
}


/*--------------------------------------------------------------
  21. About
----------------------------------------------------------------*/

.cs_about.cs_style_1 .cs_about_text {
    padding-left: 80px;
    position: relative;
    margin-top: 25px;
}

.cs_about.cs_style_1 .cs_about_text::before {
    content: "";
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    position: absolute;
    left: 0;
    top: 12px;
}

.cs_about.cs_style_1 .cs_about_text p {
    margin-bottom: 20px;
}

.cs_about.cs_style_1 .cs_about_text p:last-child {
    margin-bottom: 0;
}

.cs_about.cs_style_1 .cs_list.cs_style_1 {
    margin-top: 32px;
}

.cs_about.cs_style_1 .cs_btn.cs_style_1 {
    margin-top: 50px;
}

.cs_about.cs_style_2 .cs_about_img_sm {
    left: 45%;
    top: 55%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: rotate-xyz 20s linear infinite;
    animation: rotate-xyz 20s linear infinite;
}

.cs_about.cs_style_2 .cs_about_info {
    padding-left: 50px;
}

@media (max-width: 1199px) {
    .cs_about.cs_style_2 .cs_about_info {
        padding-left: 20px;
    }
}

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

.cs_about.cs_style_2 .cs_about_text {
    margin-bottom: 50px;
}

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

@-webkit-keyframes rotate-xyz {
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotate-xyz {
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/*--------------------------------------------------------------
  22. Steps
----------------------------------------------------------------*/

.cs_steps.cs_style_1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 86px;
}

@media (max-width: 1199px) {
    .cs_steps.cs_style_1 {
        grid-gap: 25px;
    }
}

@media (max-width: 991px) {
    .cs_steps.cs_style_1 {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
}

.cs_steps.cs_style_1 .cs_step_thumb {
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    border: 1px dashed var(--accent);
    padding: 33px;
    margin-bottom: 42px;
}

@media (max-width: 1199px) {
    .cs_steps.cs_style_1 .cs_step_thumb {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 1199px) {
    .cs_steps.cs_style_1 .cs_step_thumb {
        margin-bottom: 25px;
    }
}

.cs_steps.cs_style_1 h2 {
    margin-bottom: 15px;
}

.cs_steps.cs_style_1 .cs_step_number {
    height: 80px;
    width: 80px;
    right: 0;
    top: 0;
}

.cs_steps.cs_style_1 .cs_step::before {
    content: "";
    position: absolute;
    background-image: none;
    width: 112px;
    height: 110px;
    right: -102px;
    top: 100px;
    background-size: contain;
    background-position: center;
}

@media (max-width: 1400px) {
    .cs_steps.cs_style_1 .cs_step::before {
        content: "";
        position: absolute;
        width: 70px;
        right: -79px;
    }
}

@media (max-width: 1199px) {
    .cs_steps.cs_style_1 .cs_step::before {
        display: none;
    }
}

.cs_steps.cs_style_1 .cs_step:nth-child(3n+0)::before,
.cs_steps.cs_style_1 .cs_step:last-child::before {
    display: none;
}


/*--------------------------------------------------------------
  23. Video block
----------------------------------------------------------------*/

.cs_video_block.cs_style_1 {
    height: 100%;
    min-height: 720px;
    border-radius: 40px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cs_video_block.cs_style_1 {
        min-height: 600px;
    }
}

.cs_video_block.cs_style_1 .cs_player_btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media (max-width: 991px) {
    .cs_video_block.cs_style_1 .cs_player_btn {
        -webkit-transform: translate(-50%, -50%) scale(0.7);
        transform: translate(-50%, -50%) scale(0.7);
    }
}

.cs_video_block.cs_style_1 .cs_player_btn:hover {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1.04);
    transform: translate(-50%, -50%) rotate(45deg) scale(1.04);
}

.cs_video_block.cs_style_1 .cs_player_btn svg {
    z-index: 3;
}

.cs_video_block.cs_style_1 .cs_player_btn::before,
.cs_video_block.cs_style_1 .cs_player_btn::after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cs_video_block.cs_style_1 .cs_player_btn::before {
    width: 150px;
    height: 150px;
    opacity: 0.45;
    background-color: var(--white);
    z-index: 0;
}

.cs_video_block.cs_style_1 .cs_player_btn::after {
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    z-index: 1;
}

.cs_video_block.cs_style_1 .cs_location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    position: absolute;
    right: 5%;
    top: 5.5%;
    padding-left: 15px;
}

.cs_video_block.cs_style_1 .cs_video_title {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 70px 80px;
}

@media (max-width: 991px) {
    .cs_video_block.cs_style_1 .cs_video_title {
        padding: 50px;
    }
}

.cs_video_block.cs_style_1.cs_type_1 {
    min-height: auto;
    border-radius: 0;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .cs_video_block.cs_style_1.cs_type_1 {
        text-align: center;
    }
}

.cs_video_block.cs_style_1.cs_type_1 .cs_player_btn {
    top: 50%;
    left: 84%;
    -webkit-transform: translate(-84%, -50%);
    transform: translate(-84%, -50%);
}

@media (max-width: 991px) {
    .cs_video_block.cs_style_1.cs_type_1 .cs_player_btn {
        position: relative;
        -webkit-transform: translateX(-50%) scale(0.75);
        transform: translateX(-50%) scale(0.75);
        top: initial;
        left: 50%;
        margin-bottom: 20px;
        margin-top: -5px;
    }
}

.cs_video_block.cs_style_1.cs_type_1 .cs_player_btn:hover {
    -webkit-transform: translate(-84%, -50%) rotate(45deg) scale(1.04);
    transform: translate(-84%, -50%) rotate(45deg) scale(1.04);
}

@media (max-width: 991px) {
    .cs_video_block.cs_style_1.cs_type_1 .cs_player_btn:hover {
        -webkit-transform: translateX(-50%) rotate(45deg) scale(0.9);
        transform: translateX(-50%) rotate(45deg) scale(0.9);
    }
}

.cs_video_block.cs_style_1.cs_type_1 .cs_video_title {
    padding: 0;
    margin-left: 0px;
}

@media (max-width: 450px) {
    .cs_video_block.cs_style_1.cs_type_1 .cs_video_title br {
        display: none;
    }
}


/*--------------------------------------------------------------
  24. Contact
----------------------------------------------------------------*/

.cs_contact_form .cs_input_field {
    position: relative;
    border-radius: 3px;
}

.cs_contact_form .cs_input_field span {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cs_contact_form .cs_form_field {
    padding: 17px 19px 17px 25px;
    background-color: var(--white);
    display: block;
}

.cs_contact_form .cs_form_field:focus {
    border-color: var(--accent);
}

.cs_contact_form textarea {
    resize: none;
}

.cs_google_map {
    height: 620px;
    margin-bottom: -101px;
}

@media (max-width: 991px) {
    .cs_google_map {
        height: 450px;
    }
}

.cs_google_map iframe {
    height: 100%;
    display: block;
    border: none;
    width: 100%;
    -webkit-filter: grayscale(100%) invert(10%) contrast(120%);
    filter: grayscale(100%) invert(10%) contrast(120%);
}


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