/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Typography
2. Preloader
3. Spacing
4. General
5. Slider
6. Video Modal
7. Header
8. Footer
9. Sidebar
10. About Section Styling
11. Hero
12. Iconbox
13. Posts
14. CTA
15. Testimonial
16. Counter
17. Casestudie
18. Team
19. Pricing
20. Card
21. Before After Slider
22. Contact
23. Ecommerce
--------------------------------------------------------------*/
/*--------------------------------------------------------------
** All Variable
----------------------------------------------------------------*/
:root {
    --white-color: #fff;
    --heading-color: #00001b;
    --body-color: rgba(0, 0, 27, 0.6);
    --accent-color: #d7b286;
    --gray-color: #ebeced;
    --gray2-color: #e6f1f7;
    --border-color: rgb(0 0 27 / 30%);
    --heading-font: 'Marcellus', serif;
    --body-font: 'Marcellus', serif;
}

.cs_theme_2 {
    --accent-color: #09bbaf;
}

.cs_theme_3 {
    --accent-color: #a81874;
}

.cs_theme_4 {
    --accent-color: #2d3928;
}

.cs_theme_5 {
    --accent-color: #966046;
    --heading-font: 'Marcellus', serif;
    --body-font: 'Marcellus', serif;
}

/*--------------------------------------------------------------
  ** Google Fonts Integration
----------------------------------------------------------------*/
/** Roboto **/
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
/** Jost **/
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost/Jost-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
}
/** Marcellus **/
@font-face {
    font-family: 'Marcellus';
    src: url('../fonts/Marcellus/Marcellus-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
body,
html {
    color: var(--body-color);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    overflow-x: clip;
}

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

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

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

h1 {
    font-size: 56px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 15px;
}

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

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

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

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

address {
    margin: 0 0 15px;
}

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

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

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

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

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

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

b,
strong {
    font-weight: bold;
}

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

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

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

.cs_theme_5 h1,
.cs_theme_5 h2,
.cs_theme_5 h3,
.cs_theme_5 h4,
.cs_theme_5 h5,
.cs_theme_5 h6,
.cs_theme_5 .cs_medium,
.cs_theme_5 .cs_semibold,
.cs_theme_5 .cs_bold,
.cs_theme_5 .cs_extra_bold {
    font-weight: 400;
}
.cs_theme_5 .cs_section_heading.cs_style_1 .cs_section_subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
}

/*--------------------------------------------------------------
2. Preloader
----------------------------------------------------------------*/
.cs_preloader {
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 99999;
    left: 0;
    top: 0;
    background-color: #fff;
    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_preloader::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--accent-color);
    opacity: 0.2;
}
.cs_preloader .cs_preloader_in {
    position: relative;
    z-index: 100;
}
.cs_preloader .cs_preloader_in svg {
    width: 110px;
    height: 110px;
}
.cs_preloader .cs_wave_first svg {
    fill: var(--accent-color);
    opacity: 0.2;
}
.cs_preloader .cs_wave_second {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    -webkit-animation: spark 1.25s linear infinite;
    animation: spark 1.25s linear infinite;
}
.cs_preloader .cs_wave_second svg {
    fill: var(--accent-color);
}

@-webkit-keyframes spark {
    0% {
        max-width: 0;
    }
    100% {
        max-width: 100%;
    }
}

@keyframes spark {
    0% {
        max-width: 0;
    }
    100% {
        max-width: 100%;
    }
}
/*--------------------------------------------------------------
  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;
    }
}
@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;
    }
}
/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/
.cs_fs_14 {
    font-size: 14px;
    line-height: 1.57em;
}

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

.cs_fs_20 {
    font-size: 20px;
    line-height: 1.5em;
}
@media (max-width: 991px) {
    .cs_fs_20 {
        font-size: 18px;
    }
}

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

.cs_fs_28 {
    font-size: 28px;
    line-height: 1.36em;
}
@media (max-width: 1400px) {
    .cs_fs_28 {
        font-size: 26px;
    }
}
@media (max-width: 991px) {
    .cs_fs_28 {
        font-size: 24px;
    }
}

.cs_fs_30 {
    font-size: 30px;
    line-height: 1.33em;
}
@media (max-width: 1400px) {
    .cs_fs_30 {
        font-size: 28px;
    }
}
@media (max-width: 991px) {
    .cs_fs_30 {
        font-size: 26px;
    }
}

.cs_fs_32 {
    font-size: 32px;
    line-height: 1.31em;
}
@media (max-width: 1400px) {
    .cs_fs_32 {
        font-size: 28px;
    }
}
@media (max-width: 991px) {
    .cs_fs_32 {
        font-size: 26px;
    }
}

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

.cs_fs_40 {
    font-size: 40px;
    line-height: 1.25em;
}
@media (max-width: 1400px) {
    .cs_fs_40 {
        font-size: 36px;
    }
}
@media (max-width: 991px) {
    .cs_fs_40 {
        font-size: 32px;
    }
}

.cs_fs_48 {
    font-size: 48px;
    line-height: 1.33em;
}
@media (max-width: 1400px) {
    .cs_fs_48 {
        font-size: 42px;
    }
}
@media (max-width: 991px) {
    .cs_fs_48 {
        font-size: 36px;
    }
}

.cs_fs_64 {
    font-size: 64px;
    line-height: 1.19em;
}
@media (max-width: 1400px) {
    .cs_fs_64 {
        font-size: 60px;
    }
}
@media (max-width: 991px) {
    .cs_fs_64 {
        font-size: 50px;
    }
}

.cs_fs_70 {
    font-size: 70px;
    line-height: 1.17em;
}
@media (max-width: 1400px) {
    .cs_fs_70 {
        font-size: 64px;
    }
}
@media (max-width: 991px) {
    .cs_fs_70 {
        font-size: 50px;
    }
}

.cs_fs_72 {
    font-size: 72px;
    line-height: 1.14em;
}
@media (max-width: 1400px) {
    .cs_fs_72 {
        font-size: 68px;
    }
}
@media (max-width: 991px) {
    .cs_fs_72 {
        font-size: 50px;
    }
}

.cs_fs_96 {
    font-size: 96px;
    line-height: 1.04em;
}
@media (max-width: 1600px) {
    .cs_fs_96 {
        font-size: 80px;
    }
}
@media (max-width: 1400px) {
    .cs_fs_96 {
        font-size: 66px;
        line-height: 1.2em;
    }
}
@media (max-width: 1199px) {
    .cs_fs_96 {
        font-size: 56px;
        line-height: 1.2em;
    }
}
@media (max-width: 575px) {
    .cs_fs_96 {
        font-size: 50px;
    }
}

.cs_fs_100 {
    font-size: 100px;
    line-height: 1.1em;
}
@media (max-width: 1750px) {
    .cs_fs_100 {
        font-size: 85px;
    }
}
@media (max-width: 1400px) {
    .cs_fs_100 {
        font-size: 70px;
    }
}
@media (max-width: 767px) {
    .cs_fs_100 {
        font-size: 56px;
    }
}
@media (max-width: 575px) {
    .cs_fs_100 {
        font-size: 50px;
    }
}

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

.cs_radius_3 {
    border-radius: 3px;
}

.cs_radius_5 {
    border-radius: 5px;
}

.cs_radius_6 {
    border-radius: 6px;
}

.cs_radius_7 {
    border-radius: 7px;
}

.cs_radius_8 {
    border-radius: 8px;
}

.cs_radius_10 {
    border-radius: 10px;
}

.cs_radius_15 {
    border-radius: 15px;
}

.cs_radius_20 {
    border-radius: 20px;
}

.cs_radius_100 {
    border-radius: 100px;
}

.cs_radius_50 {
    border-radius: 50%;
}

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

@media (min-width: 1400px) {
    .cs_row_gap_50 {
        margin-left: -25px;
        margin-right: -25px;
    }
    .cs_row_gap_50 > * {
        padding-left: 25px;
        padding-right: 25px;
    }
    .cs_row_gap_60 {
        margin-left: -30px;
        margin-right: -30px;
    }
    .cs_row_gap_60 > * {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 1199px) {
    .cs_row_gap_30 {
        margin-left: -15px;
        margin-right: -15px;
    }
    .cs_row_gap_30 > * {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.cs_row_gap_40 {
    margin-left: -20px;
    margin-right: -20px;
}
.cs_row_gap_40 > * {
    padding-left: 20px;
    padding-right: 20px;
}

.cs_gap_y_24 {
    gap: 24px 0;
}

.cs_gap_y_30 {
    gap: 30px 0;
}

.cs_gap_y_35 {
    gap: 35px 0;
}

.cs_gap_y_40 {
    gap: 40px 0;
}

.cs_gap_y_45 {
    gap: 45px 0;
}

.cs_gap_y_50 {
    gap: 50px 0;
}

.cs_gap_y_60 {
    gap: 60px 0;
}

.cs_gap_y_65 {
    gap: 65px 0;
}

.cs_gap_y_80 {
    gap: 80px 0;
}

.cs_gap_y_100 {
    gap: 100px 0;
}

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

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

.cs_bg_fixed {
    background-attachment: fixed;
}
@media (max-width: 1370px) {
    .cs_bg_fixed {
        background-attachment: initial;
    }
}

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

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

.cs_white_color_8 {
    color: rgba(255, 255, 255, 0.8);
}

.cs_heading_color {
    color: var(--heading-color);
}

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

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

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

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

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

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

.cs_gray_bg_2 {
    background-color: rgba(75, 175, 71, 0.05);
}

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

.cs_accent_bg_gradient {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(var(--accent-color)),
        to(#5d4034)
    );
    background: linear-gradient(90deg, var(--accent-color) 0%, #5d4034 100%);
}

label {
    display: inline-block;
    margin-bottom: 5px;
}

.cs_half_screen_right {
    height: 100%;
    width: 44vw;
    margin-left: -14px;
}
@media (max-width: 1600px) {
    .cs_half_screen_right {
        width: 42.5vw;
    }
}
@media (max-width: 991px) {
    .cs_half_screen_right {
        width: 100%;
        margin-left: 0;
    }
}

.cs_half_screen_left {
    height: 100%;
    width: calc(44vw + 14px);
    margin-left: calc(-44vw + 100%);
}
@media (max-width: 991px) {
    .cs_half_screen_left {
        width: 100%;
        margin-left: 0;
    }
}

.cs_full_screen_right {
    width: calc(50vw + 650px);
}

.cs_half_screen_thumb {
    height: 100%;
    width: 100%;
    min-height: 400px;
}

.cs_hover_up {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_hover_up:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.cs_btn.cs_style_1 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 15px 40px;
    font-family: var(--heading-font);
    text-align: center;
    line-height: 1.55em;
    color: var(--white-color);
    position: relative;
}
@media (max-width: 991px) {
    .cs_btn.cs_style_1 {
        padding: 13px 25px;
        font-size: 16px;
    }
}
.cs_btn.cs_style_1.cs_heading_bg::after {
    background-color: var(--accent-color);
}
.cs_btn.cs_style_1::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--heading-color);
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_btn.cs_style_1 .cs_btn_text {
    position: relative;
    z-index: 1;
}
.cs_btn.cs_style_1:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.cs_player_btn.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}
.cs_player_btn.cs_style_1 .cs_player_btn_icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gray-color);
    border-radius: 50%;
    color: var(--gray-color);
}
.cs_player_btn.cs_style_1 .cs_play_btn_text {
    line-height: 1.55em;
    background-repeat: no-repeat;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0, currentColor),
        to(currentColor)
    );
    background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
    -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
        color 0.27s ease-out;
    transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
        color 0.27s ease-out;
    background-position: 100% calc(100% - 0px);
    background-size: 0 1px;
}
.cs_player_btn.cs_style_1.cs_type_1 .cs_player_btn_icon {
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
}
.cs_player_btn.cs_style_1:hover .cs_play_btn_text {
    background-size: 100% 1px;
    background-position: 0 calc(100% - 0px);
}

.cs_player_btn.cs_style_2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--white-color);
    margin: 0 auto 25px;
    position: relative;
}
.cs_player_btn.cs_style_2 span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 15px solid currentColor;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.cs_player_btn.cs_style_2::after,
.cs_player_btn.cs_style_2::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 50%;
    -webkit-animation: pulse-border 5s ease-out infinite;
    animation: pulse-border 5s ease-out infinite;
}
.cs_player_btn.cs_style_2::before {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.cs_text_btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.cs_text_btn .cs_text_btn_icon {
    width: 20px;
    overflow: hidden;
}
.cs_text_btn .cs_text_btn_icon span {
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1),
        -webkit-transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.cs_text_btn .cs_text_btn_icon span:first-child {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}
.cs_text_btn .cs_text_btn_icon span:last-child {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
}
.cs_text_btn.cs_type_1 .cs_text_btn_icon {
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
}
.cs_text_btn.cs_type_1 .cs_text_btn_icon span:last-child {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
}
.cs_text_btn:hover .cs_text_btn_icon span:first-child {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
}
.cs_text_btn:hover .cs_text_btn_icon span:last-child {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
}
.cs_text_btn:hover.cs_type_1 .cs_text_btn_icon span:first-child {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
}

.cs_form_field_wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: transparent;
}
.cs_form_field_wrapper .cs_input_icon {
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--accent-color);
}
.cs_form_field_wrapper::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    opacity: 0.05;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
}
.cs_form_field_wrapper.cs_type_1 {
    border: 1px solid rgba(19, 37, 115, 0.2);
}
.cs_form_field_wrapper.cs_type_1::after {
    display: none;
}

.cs_form_field {
    width: 100%;
    border: none;
    outline: none;
    padding: 15px 20px;
    border-radius: 10px;
    background-color: transparent;
    position: relative;
    z-index: 1;
    resize: none;
    font-size: 14px;
    line-height: 1.5em;
    color: var(--accent-color);
}
.cs_form_field::-webkit-input-placeholder {
    font-size: 14px;
    color: var(--accent-color);
}
.cs_form_field::-moz-placeholder {
    font-size: 14px;
    color: var(--accent-color);
}
.cs_form_field:-ms-input-placeholder {
    font-size: 14px;
    color: var(--accent-color);
}
.cs_form_field::-ms-input-placeholder {
    font-size: 14px;
    color: var(--accent-color);
}
.cs_form_field::placeholder {
    font-size: 14px;
    color: var(--accent-color);
}

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

.cs_spinner_img {
    -webkit-animation: spinAnimaiton 6s linear infinite;
    animation: spinAnimaiton 6s linear infinite;
}

.cs_hide_before_after::before,
.cs_hide_before_after::after {
    display: none;
}

.cs_list.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}
.cs_list.cs_style_1 li {
    padding-left: 40px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--heading-color);
    position: relative;
}
.cs_list.cs_style_1 li img,
.cs_list.cs_style_1 li svg {
    position: absolute;
    left: 0;
    top: -1px;
}

.cs_list.cs_style_2 {
    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_list.cs_style_3 {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
}
@media (max-width: 575px) {
    .cs_list.cs_style_3 {
        grid-template-columns: repeat(1, auto);
    }
}
.cs_list.cs_style_3 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    line-height: 1.55em;
}
.cs_list.cs_style_3 span {
    opacity: 0.73;
}
.cs_list.cs_style_3 i {
    margin-top: 3px;
    color: var(--accent-color);
}

.cs_list.cs_style_4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}
.cs_list.cs_style_4 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cs_list.cs_style_4 i {
    margin: 4px 8px 0 0;
}

.cs_section_heading.cs_style_1 {
    position: relative;
    z-index: 1;
}
.cs_section_heading.cs_style_1 .cs_section_subtitle {
    line-height: 1.55em;
    text-transform: capitalize;
    margin-bottom: 10px;
    letter-spacing: 1.44px;
}
.cs_section_heading.cs_style_1 .cs_section_title {
    text-transform: capitalize;
}
.cs_section_heading.cs_style_1.cs_text_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.cs_section_heading.cs_style_1.cs_type_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px 30px;
}
@media (max-width: 991px) {
    .cs_section_heading.cs_style_1.cs_type_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: start;
    }
    .cs_section_heading.cs_style_1.cs_type_1 .text-end {
        text-align: left !important;
    }
}
.cs_section_heading.cs_style_1 .cs_section_heading_left {
    max-width: 670px;
}
.cs_section_heading.cs_style_1 .cs_section_heading_right {
    max-width: 470px;
    line-height: 1.87em;
}
.cs_section_heading.cs_style_1
    .cs_section_heading_left
    + .cs_section_heading_right {
    max-width: 420px;
}
@media (max-width: 991px) {
    .cs_section_heading.cs_style_1 br {
        display: none;
    }
}

.cs_transparent_text {
    color: var(--white-color);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--accent-color);
    font-family: var(--body-font);
    opacity: 0.5;
}

.cs_supportbox {
    padding: 24px 35px;
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 1540px) {
    .cs_supportbox {
        padding: 20px;
    }
}
@media (max-width: 1399px) {
    .cs_supportbox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}
@media (max-width: 767px) {
    .cs_supportbox {
        left: 10px;
        right: 10px;
        bottom: 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        padding: 10px 20px;
    }
}
.cs_supportbox .cs_supportbox_title {
    margin-bottom: 6px;
}
.cs_supportbox .cs_btn.cs_style_1::after {
    background-color: var(--accent-color);
}

/*---------------------------------
 Features Section Styling
-----------------------------------*/
.cs_features.cs_style_1 {
    margin-top: -100px;
}
@media (max-width: 1400px) {
    .cs_features.cs_style_1 {
        margin-top: -85px;
    }
}

.cs_features_thumbnail {
    padding: 0 5px;
    height: 100%;
}
.cs_features_thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*-------------------------------------
 Start Video Section 
 --------------------------------------*/
.cs_video_section.cs_style_1::after {
    content: '';
    width: 100%;
    height: 50%;
    background-color: var(--white-color);
    position: absolute;
    left: 0;
    top: 0;
}
.cs_video_section.cs_style_1 .cs_vider_wrapper.cs_style_1 {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 30px;
    background-color: var(--white-color);
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    border-radius: 10px;
}
@media (max-width: 991px) {
    .cs_video_section.cs_style_1 .cs_vider_wrapper.cs_style_1 br {
        display: none;
    }
}
.cs_video_section.cs_style_1 .cs_vider_wrapper.cs_style_1 .cs_video_title {
    font-size: 36px;
    line-height: 1.44em;
    margin-bottom: 25px;
}
.cs_video_section.cs_style_1 .cs_vider_wrapper.cs_style_1 .cs_video_subtitle {
    margin-bottom: 50px;
}
.cs_video_section.cs_style_1 .cs_vider_wrapper.cs_style_1 .cs_btns_group {
    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;
}
@media (max-width: 450px) {
    .cs_video_section.cs_style_1 .cs_vider_wrapper.cs_style_1 .cs_btns_group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}
.cs_video_section.cs_style_1 .cs_video_shape_1 {
    position: absolute;
    left: 90px;
    bottom: 50px;
    opacity: 0.74;
}
.cs_video_section.cs_style_1 .cs_video_shape_1 img {
    -webkit-animation: circular-rotation 50s linear infinite;
    animation: circular-rotation 50s linear infinite;
}
.cs_video_section.cs_style_1 .cs_video_shape_2 {
    position: absolute;
    right: 100px;
    bottom: 50px;
    opacity: 0.74;
}
.cs_video_section.cs_style_1 .cs_video_shape_3 {
    position: absolute;
    left: 10px;
    bottom: 50px;
}
@media (max-width: 991px) {
    .cs_video_section.cs_style_1 .cs_video_shape_3 {
        display: none;
    }
}
.cs_video_section.cs_style_1 .cs_video_shape_4 {
    position: absolute;
    right: 10px;
    bottom: 10px;
}
@media (max-width: 991px) {
    .cs_video_section.cs_style_1 .cs_video_shape_4 {
        display: none;
    }
}

.cs_video_section.cs_style_2 {
    min-height: 830px;
}
.cs_video_section.cs_style_2::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(
        77deg,
        #00001b 17.7%,
        rgba(0, 0, 27, 0.1) 47.21%
    );
    position: absolute;
    top: 0;
    left: 0;
}
.cs_video_section.cs_style_2 .cs_section_heading.cs_style_1 {
    max-width: 550px;
}
.cs_video_section.cs_style_2 .cs_open_video_content {
    max-width: 450px;
    padding-left: 80px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 20px;
}
@media (max-width: 991px) {
    .cs_video_section.cs_style_2 .cs_open_video_content {
        padding-left: 0;
        max-width: 370px;
    }
}
.cs_video_section.cs_style_2 .cs_diveo_title {
    margin-bottom: 8px;
}
.cs_video_section.cs_style_2 .cs_diveo_title span {
    font-size: 18px;
    line-height: 1.55em;
}
.cs_video_section.cs_style_2 .cs_video_subtitle {
    text-transform: capitalize;
    opacity: 0.7;
}
.cs_video_section.cs_style_2 .cs_slider.cs_style_1 {
    position: relative;
    z-index: 1;
}
.cs_video_section.cs_style_2 .cs_slider.cs_style_1 .cs_slider_arrow_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cs_video_section.cs_style_2 .cs_video_thumbnail {
    width: 100%;
    max-width: 275px;
    min-height: 170px;
    position: relative;
}
@media (max-width: 767px) {
    .cs_video_section.cs_style_2 .cs_video_thumbnail {
        margin: 0 auto;
    }
}
.cs_video_section.cs_style_2 .cs_video_thumbnail::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(237deg, rgba(0, 0, 27, 0) 64.41%, #00001e 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.cs_video_section.cs_style_2 .cs_video_thumbnail .cs_player_btn.cs_style_1 {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 20px;
}

.cs_video_section.cs_style_3 {
    min-height: 844px;
    padding: 220px 0 0;
}

.cs_video_section.cs_style_4 {
    padding: 120px 0;
    position: relative;
}
@media (max-width: 991px) {
    .cs_video_section.cs_style_4 {
        padding: 0 0 80px;
    }
}
.cs_video_section.cs_style_4 .container-fluid {
    width: 100%;
    max-width: 1920px;
    height: 100%;
}
.cs_video_section.cs_style_4 .cs_video_wrapper {
    width: 65%;
    height: 100%;
    padding-left: 8%;
    position: absolute;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 1399px) {
    .cs_video_section.cs_style_4 .cs_video_wrapper {
        padding-left: 4%;
        width: 60%;
    }
}
@media (max-width: 1199px) {
    .cs_video_section.cs_style_4 .cs_video_wrapper {
        width: 55%;
    }
}
@media (max-width: 991px) {
    .cs_video_section.cs_style_4 .cs_video_wrapper {
        position: initial;
        width: calc(100% + 30px);
        height: 450px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 80px;
        margin-left: -15px;
    }
}
.cs_video_section.cs_style_4 .cs_video_wrapper .cs_player_btn.cs_style_2 {
    margin: 0;
}
.cs_video_section.cs_style_4 .cs_form_counter_wrapper {
    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: end;
    gap: 140px;
}
@media (max-width: 1399px) {
    .cs_video_section.cs_style_4 .cs_form_counter_wrapper {
        gap: 80px;
    }
}
@media (max-width: 1199px) {
    .cs_video_section.cs_style_4 .cs_form_counter_wrapper {
        gap: 30px;
    }
}
@media (max-width: 991px) {
    .cs_video_section.cs_style_4 .cs_form_counter_wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }
}
.cs_video_section.cs_style_4 .cs_appointment_form_wrapper {
    max-width: 575px;
    margin-left: 0;
}

/*--------------------------------------
 Service Section Styling
----------------------------------------*/
.cs_service_area {
    position: relative;
    z-index: 0;
}
.cs_service_area::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.cs_service_area .container {
    position: relative;
    z-index: 1;
}
.cs_service_area .cs_card_thumbnail img {
    width: 100%;
    margin: 0 auto;
}
.cs_service_area.cs_type_1::after {
    background-color: var(--gray2-color);
    opacity: 0.5;
}
.cs_service_area.cs_type_2::after {
    background-color: var(--accent-color);
    opacity: 0.05;
}
.cs_service_area.cs_type_3::after {
    background-color: var(--accent-color);
    opacity: 0.05;
}
.cs_service_area.cs_type_4::after {
    background-color: var(--accent-color);
    opacity: 0.1;
}

.cs_service_shape_1 {
    left: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.6;
}

.cs_service_shape_2 {
    right: 60px;
    bottom: 200px;
    opacity: 0.2;
}

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

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

.cs_service_details img {
    margin-bottom: 60px;
}
.cs_service_details h2 {
    font-size: 66px;
    line-height: 1.15em;
    margin-bottom: 32px;
}
@media (max-width: 1400px) {
    .cs_service_details h2 {
        font-size: 50px;
    }
}
@media (max-width: 1400px) {
    .cs_service_details h2 {
        font-size: 44px;
    }
}
.cs_service_details h3 {
    font-size: 42px;
    line-height: 1.24em;
    margin-bottom: 24px;
}
@media (max-width: 1400px) {
    .cs_service_details h3 {
        font-size: 36px;
    }
}
.cs_service_details p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.78em;
}
.cs_service_details p:last-child {
    margin-bottom: 0;
}
.cs_service_details .cs_list.cs_style_4 {
    margin: 16px 0 60px;
    line-height: 1.55em;
}
.cs_service_details blockquote {
    padding: 40px 48px 48px;
    border: 2px solid var(--gray-color);
    border-radius: 10px;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: var(--accent-color);
    font-family: var(--heading-font);
    position: relative;
    margin: 48px 0 50px;
    gap: 0;
}
@media (max-width: 991px) {
    .cs_service_details blockquote {
        padding: 30px 30px 60px;
        font-size: 22px;
    }
}
.cs_service_details blockquote img {
    display: inline-block;
    position: absolute;
    bottom: -30px;
    right: 50px;
    margin-bottom: 0;
}
.cs_service_details blockquote small {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1em;
}

/* Start Accordion */
.cs_accordian {
    position: relative;
    z-index: 1;
}
.cs_accordian::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--white-color);
    opacity: 0.2;
    position: absolute;
    left: 0;
    bottom: 0;
}
.cs_accordian .cs_accordian_title {
    margin-bottom: 0;
    line-height: 1.5em;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_accordian .cs_accordian_body {
    padding: 0 85px 30px 0;
    margin-top: -6px;
    line-height: 1.67em;
}
.cs_accordian .cs_accordian_body p {
    margin: 0;
}
@media (max-width: 575px) {
    .cs_accordian .cs_accordian_body {
        padding: 10px 15px 20px 0;
    }
}
.cs_accordian .cs_accordian_head {
    padding: 27px 55px 27px 0;
    position: relative;
    cursor: pointer;
    min-height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 1199px) {
    .cs_accordian .cs_accordian_head {
        padding: 20px 55px 20px 0;
    }
}
.cs_accordian .cs_accordian_toggle {
    width: 45px;
    height: 45px;
    background-color: transparent;
    color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 22px;
    right: 0;
}
.cs_accordian .cs_accordian_toggle i {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
@media (max-width: 1199px) {
    .cs_accordian .cs_accordian_toggle {
        top: 15px;
        right: 0;
    }
}
.cs_accordian.cs_type_1::after {
    background-color: var(--heading-color);
}
.cs_accordian.cs_type_1 .cs_accordian_toggle {
    color: var(--heading-color);
}
.cs_accordian.active .cs_accordian_head {
    pointer-events: none;
}
.cs_accordian.active .cs_accordian_toggle {
    background-color: var(--white-color);
    color: var(--heading-color);
}
.cs_accordian.active .cs_accordian_toggle i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.cs_accordian.active.cs_type_1 .cs_accordian_toggle {
    background-color: var(--heading-color);
    color: var(--white-color);
}
.cs_accordian.active.cs_type_1 .cs_accordian_body {
    text-decoration: underline;
}

.cs_faq_shape_1 {
    left: 50%;
    top: 400px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* End Accordion */
/*-------------------------------------
 Start Working Process Section Styling
 ---------------------------------------*/
.cs_working_process_grid.cs_style_1 {
    position: relative;
    min-height: 682px;
}
.cs_working_process_grid.cs_style_1::after {
    content: '';
    width: 1px;
    height: calc(100% - 257px);
    background-color: var(--heading-color);
    opacity: 0.5;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media (max-width: 1399px) {
    .cs_working_process_grid.cs_style_1::after {
        height: calc(100% - 280px);
    }
}
@media (max-width: 1199px) {
    .cs_working_process_grid.cs_style_1::after {
        display: none;
    }
}
@media (max-width: 991px) {
    .cs_working_process_grid.cs_style_1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        justify-items: center;
    }
}
@media (max-width: 575px) {
    .cs_working_process_grid.cs_style_1 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cs_process_item {
    width: 245px;
    height: 245px;
    padding: 20px;
    border: 1px dashed var(--heading-color);
    border-radius: 50%;
    position: absolute;
}
@media (max-width: 991px) {
    .cs_process_item {
        position: initial;
    }
}
.cs_process_item:nth-child(1) {
    top: 0;
    left: 0;
}
.cs_process_item:nth-child(2) {
    top: 120px;
    left: 311px;
}
@media (max-width: 1399px) {
    .cs_process_item:nth-child(2) {
        top: 120px;
        left: 280px;
    }
}
@media (max-width: 1199px) {
    .cs_process_item:nth-child(2) {
        top: 50px;
        left: 340px;
    }
}
.cs_process_item:nth-child(3) {
    top: 425px;
    left: 523px;
}
@media (max-width: 1399px) {
    .cs_process_item:nth-child(3) {
        left: 440px;
        top: 400px;
    }
}
@media (max-width: 1199px) {
    .cs_process_item:nth-child(3) {
        left: 135px;
        top: 260px;
    }
}
.cs_process_item:nth-child(4) {
    top: 120px;
    right: 322px;
}
@media (max-width: 1399px) {
    .cs_process_item:nth-child(4) {
        right: 280px;
    }
}
@media (max-width: 1199px) {
    .cs_process_item:nth-child(4) {
        right: 135px;
        top: 260px;
    }
}
.cs_process_item:nth-child(5) {
    top: 0;
    right: 0;
}
.cs_process_item .cs_process_iten_inner {
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: inherit;
    position: relative;
}
.cs_process_item .cs_process_iten_inner::after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent-color);
    opacity: 0.1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_process_item .cs_process_title {
    line-height: 1.42em;
    text-align: center;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_process_item:hover .cs_process_title {
    color: var(--white-color);
}
.cs_process_item:hover .cs_process_iten_inner::after {
    opacity: 1;
}

.cs_process_shape_1 {
    width: 100%;
    max-width: 1296px;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -55%);
    transform: translate(-50%, -55%);
}
.cs_process_shape_1 svg {
    width: 100%;
    margin-bottom: -35px;
}
@media (max-width: 1399px) {
    .cs_process_shape_1 {
        max-width: 1100px;
        top: 50%;
    }
    .cs_process_shape_1 svg {
        margin-bottom: -55px;
    }
}
@media (max-width: 1199px) {
    .cs_process_shape_1 {
        max-width: 940px;
        top: 48%;
    }
    .cs_process_shape_1 svg {
        margin-bottom: -72px;
    }
}
@media (max-width: 991px) {
    .cs_process_shape_1 {
        display: none;
    }
}
.cs_process_shape_1::after {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px dashed var(--accent-color);
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    left: -30px;
}

/*-----------------------------------
Progress Bar 
 ------------------------------------*/
.cs_progress_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 645px;
    font-weight: 500;
    margin-bottom: 5px;
}

.cs_progress {
    height: 7px;
    border-radius: 15px;
    max-width: 645px;
    background-color: var(--gray-color);
}
.cs_progress .cs_progress_in {
    height: 100%;
    border-radius: inherit;
    background-color: var(--accent-color);
    position: relative;
}
.cs_progress .cs_progress_in span {
    position: absolute;
    top: -35px;
    right: 0;
}

/*-----------------------------------
 Start Review 
 ------------------------------------*/
.cs_rating_container {
    max-width: 180px;
}

.cs_rating_percentage,
.cs_rating {
    overflow: hidden;
}
.cs_rating_percentage.scale_half,
.cs_rating.scale_half {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    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: #ffb400;
    font-size: 22px;
    letter-spacing: 7px;
}
.cs_rating::before {
    font-weight: 400;
}

.cs_rating_percentage {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.cs_rating_percentage::before {
    font-weight: 900;
}

@-webkit-keyframes scale-up {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes scale-up {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
@-webkit-keyframes move-down {
    50% {
        -webkit-transform: translateY(100px) rotate(360deg);
        transform: translateY(100px) rotate(360deg);
    }
}
@keyframes move-down {
    50% {
        -webkit-transform: translateY(100px) rotate(360deg);
        transform: translateY(100px) rotate(360deg);
    }
}
@-webkit-keyframes rotate-shape {
    50% {
        -webkit-transform: rotateZ(-20deg) rotateY(-20deg) rotateX(20deg);
        transform: rotateZ(-20deg) rotateY(-20deg) rotateX(20deg);
    }
}
@keyframes rotate-shape {
    50% {
        -webkit-transform: rotateZ(-20deg) rotateY(-20deg) rotateX(20deg);
        transform: rotateZ(-20deg) rotateY(-20deg) rotateX(20deg);
    }
}
@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}
@keyframes pulse-border {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}
@-webkit-keyframes spinAnimaiton {
    0% {
        -webkit-transform: rotateX(-20deg) rotateY(0deg);
        transform: rotateX(-20deg) rotateY(0deg);
    }
    75% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
    100% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
}
@keyframes spinAnimaiton {
    0% {
        -webkit-transform: rotateX(-20deg) rotateY(0deg);
        transform: rotateX(-20deg) rotateY(0deg);
    }
    75% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
    100% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
}
@-webkit-keyframes circular-rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes circular-rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* Start Time Picker */
.ui-timepicker-standard {
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    padding: 10px;
    margin-top: 5px;
    color: var(--heading-color);
    font-family: inherit;
}
.ui-timepicker-standard .ui-state-hover {
    color: var(--heading-color);
    border-color: rgba(19, 37, 115, 0.6);
    background-color: rgba(19, 37, 115, 0.15);
    border-radius: 10px;
    color: var(--accent-color);
}
.ui-timepicker-standard a {
    cursor: pointer;
    font-size: 16px;
    line-height: 1.2em;
    padding: 9px 15px;
}
.ui-timepicker-standard .ui-timepicker-viewport {
    padding-right: 0 !important;
}
.ui-timepicker-standard .ui-widget.ui-widget-content {
    border: none;
}

.ui-widget-content {
    position: relative;
    z-index: 1;
}
.ui-widget-content a {
    color: var(--heading-color);
}

/* Start Date Picker */
.ui-datepicker.ui-widget.ui-widget-content {
    border-color: var(--accent-color);
    border-radius: 20px;
    margin: 5px 0;
    color: var(--heading-color);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: none;
    color: var(--heading-color);
    background: transparent;
    text-align: center;
}

.ui-widget {
    font-family: inherit;
}

.ui-datepicker table {
    font-size: 16px;
    margin: 0 0 4px;
}

.ui-widget-header {
    background: transparent;
    border: none;
}

.ui-datepicker {
    width: 100%;
    max-width: 388px;
    padding: 5px;
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
}
@media (max-width: 500px) {
    .ui-datepicker {
        max-width: 290px;
    }
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    color: var(--accent-color);
    font-weight: 500;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    color: var(--accent-color);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background-color: rgba(var(--accent-color), 0.15);
    color: var(--accent-color);
    border-radius: 7px;
    font-weight: 500;
}

.ui-widget-header {
    color: var(--heading-color);
    font-weight: 600;
}

.ui-datepicker th {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 16px;
}

/* End Date Picker */
/* Start Select Two */
.select2-container {
    position: relative;
    z-index: 5;
}
.select2-container .select2-selection--single {
    height: 100%;
}

.select2-container--default .select2-selection--single {
    position: relative;
    border: none;
    border-radius: 10px;
    background-color: transparent;
}
.select2-container--default .select2-selection--single::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0.05;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 30px;
    color: var(--accent-color);
    line-height: 1.31em;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__placeholder {
    color: var(--body-color);
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 13px;
    right: 10px;
    width: 20px;
}

.select2-container--default.select2-container--open.select2-container--below
    .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
    .select2-selection--multiple {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.select2-dropdown {
    border-radius: 10px;
    position: relative;
    z-index: 5;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.select2-search--dropdown {
    padding: 20px 20px 10px 20px;
    position: relative;
    z-index: 1;
}

.select2-results__option {
    padding: 7px 20px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 10px;
}

.select2-search--dropdown .select2-search__field {
    padding: 9px 15px;
    outline: none;
}

.select2-results__option {
    padding: 10px 20px;
    margin: 0 20px;
    border-radius: 10px;
}

.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(var(--accent-color), 0.15);
    color: var(--accent-color);
}

.select2-container--default .select2-results__option[aria-selected='true'] {
    background-color: var(--accent-color);
    color: white;
}

.select2-container--default .select2-results > .select2-results__options {
    padding-bottom: 10px;
    color: var(--heading-color);
    position: relative;
    z-index: 1;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid var(--border-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    bottom: 5px;
}

.select2-container--open .select2-dropdown--below {
    border-top: 1px solid var(--border-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    top: 5px;
}

/* End Select Two */
.cs_page_heading {
    min-height: 445px;
    position: relative;
    padding-top: 150px;
    padding-bottom: 70px;
}
@media (max-width: 991px) {
    .cs_page_heading {
        min-height: 350px;
    }
}
.cs_page_heading::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0.95;
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        color-stop(25%, transparent),
        color-stop(55.11%, var(--accent-color))
    );
    background: linear-gradient(
        -90deg,
        transparent 25%,
        var(--accent-color) 55.11%
    );
}
.cs_page_heading .cs_page_heading_in {
    position: relative;
    z-index: 2;
}
.cs_page_heading .breadcrumb a i {
    font-size: 16px;
    margin-right: 8px;
    position: relative;
    top: -1px;
}
.cs_page_heading .breadcrumb-item.active,
.cs_page_heading .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}
.cs_page_heading .cs_page_heading_title {
    margin-bottom: 10px;
}

@-webkit-keyframes rotate-x {
    50% {
        border-color: var(--accent-color);
    }
}

@keyframes rotate-x {
    50% {
        border-color: var(--accent-color);
    }
}
.cs_scrollup {
    position: fixed;
    bottom: -60px;
    right: 40px;
    color: #fff;
    padding: 5px;
    height: 50px;
    width: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 10;
    background-color: var(--heading-color);
    -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}
.cs_scrollup:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.cs_scrollup.cs_scrollup_show {
    bottom: 50px;
}

.cs_color_settings {
    position: fixed;
    left: 0;
    top: 30%;
    -webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    z-index: 99;
}
.cs_color_settings .cs_color_settings_btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    color: var(--heading-color);
    cursor: pointer;
}
.cs_color_settings .cs_color_settings_btn i {
    -webkit-animation: rotating 4s linear infinite;
    animation: rotating 4s linear infinite;
}
.cs_color_settings .cs_color_option {
    height: 30px;
    color: #fff;
    cursor: pointer;
}
.cs_color_settings .cs_color_option i {
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_color_settings .cs_color_option:hover i {
    opacity: 0.7;
}
.cs_color_settings .cs_color_option.active i {
    opacity: 1;
}
.cs_color_settings .cs_color_option.active:hover i {
    opacity: 1;
}

.cs_color_settings_in {
    display: none;
}

.cs_color_option_bg_1 {
    background-color: #132573;
}

.cs_color_option_bg_2 {
    background-color: #09bbaf;
}

.cs_color_option_bg_3 {
    background-color: #a81874;
}

.cs_color_option_bg_4 {
    background-color: #2d3928;
}

.cs_color_option_bg_5 {
    background-color: #966046;
}

.cs_color_option_bg_6 {
    background-color: #307bc4;
}

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

.slick-arrow {
    cursor: pointer;
}

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

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

.cs_remove_overflow .slick-list {
    overflow: visible;
}
.cs_remove_overflow .slick-slide {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.cs_remove_overflow .slick-slide.slick-active {
    opacity: 1;
    visibility: visible;
}

.cs_slider_gap_20 .slick-slide {
    padding-left: 10px;
    padding-right: 10px;
}
.cs_slider_gap_20 .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.cs_slider_gap_30 .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
}
@media (max-width: 991px) {
    .cs_slider_gap_30 .slick-slide {
        padding-left: 12px;
        padding-right: 12px;
    }
}
.cs_slider_gap_30 .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}
@media (max-width: 991px) {
    .cs_slider_gap_30 .slick-list {
        margin-left: -12px;
        margin-right: -12px;
    }
}

.cs_slider_gap_100 .slick-slide {
    padding-left: 50px;
    padding-right: 50px;
}
.cs_slider_gap_100 .slick-list {
    margin-left: -50px;
    margin-right: -50px;
}

.cs_ptb_12 .slick-slide {
    padding-top: 12px;
    padding-bottom: 12px;
}
.cs_ptb_12 .slick-list {
    margin-top: -12px;
    margin-bottom: -12px;
}

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

.cs_slider_arrows.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 20px;
}
@media (max-width: 991px) {
    .cs_slider_arrows.cs_style_1 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
    height: 50px;
    width: 50px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    color: var(--accent-color);
    position: relative;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow.cs_type_1,
.cs_slider_arrows.cs_style_1 .cs_right_arrow.cs_type_1 {
    border: 1px solid currentColor;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow.cs_type_1::after,
.cs_slider_arrows.cs_style_1 .cs_right_arrow.cs_type_1::after {
    opacity: 0;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow::after,
.cs_slider_arrows.cs_style_1 .cs_right_arrow::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    opacity: 0.1;
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow i,
.cs_slider_arrows.cs_style_1 .cs_right_arrow i {
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .cs_slider_arrows.cs_style_1 .cs_left_arrow,
    .cs_slider_arrows.cs_style_1 .cs_right_arrow {
        width: 50px;
        height: 50px;
    }
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_1 .cs_right_arrow:hover {
    color: var(--white-color);
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow:hover::after,
.cs_slider_arrows.cs_style_1 .cs_right_arrow:hover::after {
    opacity: 1;
}

.cs_slider_arrows.cs_style_2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.cs_slider_arrows.cs_style_2 .cs_left_arrow {
    font-size: 20px;
}

.cs_slider_arrows.cs_style_3 .cs_arrow_wrap {
    width: calc((100vw - 1300px) / 2);
}
@media (max-width: 1400px) {
    .cs_slider_arrows.cs_style_3 .cs_arrow_wrap {
        width: calc((100vw - 1080px) / 2);
    }
}
@media (max-width: 1200px) {
    .cs_slider_arrows.cs_style_3 .cs_arrow_wrap {
        width: calc((100vw - 940px) / 2);
    }
}
@media (max-width: 1199px) {
    .cs_slider_arrows.cs_style_3 .cs_arrow_wrap {
        width: calc((100vw - 840px) / 2);
    }
}
@media (max-width: 991px) {
    .cs_slider_arrows.cs_style_3 {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        position: initial;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@media (max-width: 991px) {
    .cs_slider_arrows.cs_style_3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
    }
}
@media (max-width: 991px) {
    .cs_slider_arrows.cs_style_3.cs_type_1 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }
}
.cs_slider_arrows.cs_style_3.cs_type_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_3.cs_type_1 .cs_right_arrow {
    border: 1px solid var(--white-color);
    color: var(--white-color);
}
@media (min-width: 992px) {
    .cs_slider_arrows.cs_style_3.cs_type_1 .cs_left_arrow,
    .cs_slider_arrows.cs_style_3.cs_type_1 .cs_right_arrow {
        height: 80px;
        width: 80px;
    }
}
@media (max-width: 991px) {
    .cs_slider_arrows.cs_style_3.cs_type_1 .cs_arrow_wrap {
        position: initial;
        -webkit-transform: initial;
        transform: initial;
        width: initial;
    }
}
.cs_slider_arrows.cs_style_3 .cs_arrow_wrap_left,
.cs_slider_arrows.cs_style_3 .cs_arrow_wrap_right {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cs_slider_arrows.cs_style_3 .cs_left_arrow,
.cs_slider_arrows.cs_style_3 .cs_right_arrow {
    height: 55px;
    width: 55px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 991px) {
    .cs_slider_arrows.cs_style_3 .cs_left_arrow,
    .cs_slider_arrows.cs_style_3 .cs_right_arrow {
        width: 50px;
        height: 50px;
    }
}
.cs_slider_arrows.cs_style_3 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_3 .cs_right_arrow:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}
.cs_slider_arrows.cs_style_3 .cs_arrow_wrap_left {
    left: 0;
}
.cs_slider_arrows.cs_style_3 .cs_arrow_wrap_right {
    right: 0;
}

.cs_slider_arrows.cs_style_4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: var(--accent-color);
}
@media (max-width: 575px) {
    .cs_slider_arrows.cs_style_4 {
        gap: 10px;
        right: 10px;
    }
}

.cs_pagination.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.cs_pagination.cs_style_1.cs_type_1 li button {
    height: 24px;
    width: 24px;
    background-color: transparent;
    border: none;
}
.cs_pagination.cs_style_1.cs_type_1 li button::after {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
}
.cs_pagination.cs_style_1.cs_type_1 li.slick-active button {
    background-color: var(--accent-color);
}
.cs_pagination.cs_style_1.cs_type_1 li.slick-active button::after {
    background-color: var(--white-color);
}
.cs_pagination.cs_style_1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 7px;
}
.cs_pagination.cs_style_1 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cs_pagination.cs_style_1 li button {
    height: 18px;
    width: 18px;
    font-size: 0;
    color: transparent;
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 50%;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cs_pagination.cs_style_1 li button::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--border-color);
    border-radius: inherit;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cs_pagination.cs_style_1 li.slick-active button {
    border-color: var(--accent-color);
}
.cs_pagination.cs_style_1 li.slick-active button::after {
    background-color: var(--accent-color);
}

.cs_show_lg {
    display: none !important;
}

@media (max-width: 991px) {
    .cs_hide_lg {
        display: none !important;
    }
    .cs_show_lg {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}
/*--------------------------------------------------------------
  6. Video Modal
----------------------------------------------------------------*/
.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: absolute;
    z-index: 101;
    width: 100%;
    left: 0;
    top: 0px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cs_search_toggle_btn {
    outline: none;
    border: none;
    background-color: transparent;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
}
.cs_search_toggle_btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1680px) {
    .cs_header_btn_wrap_1 {
        position: absolute;
        right: 0;
        width: calc((100vw - 1296px) / 2);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 60px;
    }
}
@media (max-width: 1681px) {
    .cs_header_btn_wrap_1 {
        margin-left: 40px;
    }
}
@media (max-width: 1199px) {
    .cs_header_btn_wrap_1 {
        display: none;
    }
}
@media (min-width: 1760px) {
    .cs_header_btn_wrap_2 {
        position: absolute;
        right: 0;
        width: calc((100vw - 1296px) / 2);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 140px;
        background-color: #fff;
        border-left: 1px solid var(--gray-color);
    }
    .cs_header_btn_wrap_2 + .cs_header_icon_boxes > *:last-child {
        border-right: none;
    }
}
@media (max-width: 1761px) {
    .cs_site_header.cs_style_1.cs_type_2
        .cs_top_header_in
        .cs_top_header_right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .cs_site_header.cs_style_1.cs_type_2 .cs_btn.cs_style_1 {
        padding: 16px 30px;
    }
}
@media (max-width: 1400px) {
    .cs_site_header.cs_style_1.cs_type_2 .cs_btn.cs_style_1 {
        padding: 18px 20px;
    }
    .cs_site_header.cs_style_1.cs_type_2 .cs_header_icon_boxes > * {
        width: 70px;
    }
}
@media (max-width: 1199px) {
    .cs_site_header.cs_style_1.cs_type_2 .cs_btn.cs_style_1 {
        display: none;
    }
}
.cs_header_btn_1 {
    display: inline-block;
    position: relative;
    padding: 1px 0;
}
.cs_header_btn_1::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    background-color: currentColor;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_header_btn_1:hover::before {
    width: 0;
}

.cs_header_number {
    background-repeat: no-repeat;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0, currentColor),
        to(currentColor)
    );
    background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
    -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
        color 0.27s ease-out;
    transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
        color 0.27s ease-out;
    background-position: 100% calc(100% - 0px);
    background-size: 0 2px;
    display: inline-block;
    line-height: 1.4em;
}
.cs_header_number:hover {
    opacity: 1;
    background-size: 100% 2px;
    background-position: 0 calc(100% - 0px);
}

.cs_header_icon_boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    height: 60px;
    border-left: 1px solid var(--gray-color);
}
.cs_header_icon_boxes > * {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--heading-color);
    height: 100%;
    width: 88px;
    border-right: 1px solid var(--gray-color);
}
.cs_header_icon_boxes > *:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.cs_hero_contact_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cs_hero_contact_list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cs_hero_contact_list li:not(:last-child) {
    border-right: 1px solid var(--heading-color);
    padding-right: 30px;
    margin-right: 30px;
}
.cs_hero_contact_list li img {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 28px;
}

.cs_header_overlay {
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: rgba(7, 7, 7, 0.35);
    top: 0;
    left: 0;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.cs_search_close {
    position: absolute;
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    z-index: 2;
}
.cs_search_close:hover {
    color: red;
}

.cs_modal_search {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 15px;
}
.cs_modal_search.active {
    opacity: 1;
    visibility: visible;
}
.cs_modal_search .cs_modal_search_form {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    padding: 140px 120px;
    background-color: rgb(7, 7, 7);
    border-radius: 15px;
}
@media (max-width: 767px) {
    .cs_modal_search .cs_modal_search_form {
        padding: 100px 40px;
    }
}
@media (max-width: 350px) {
    .cs_modal_search .cs_modal_search_form {
        padding: 100px 25px;
    }
}
.cs_modal_search .cs_modal_search_input {
    width: 100%;
    background-color: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fff;
    padding: 20px 0;
    outline: none;
}
.cs_modal_search .cs_search_close {
    right: 30px;
    top: 30px;
    opacity: 0.7;
}
@media (max-width: 350px) {
    .cs_modal_search .cs_search_close {
        right: 15px;
        top: 20px;
    }
}
.cs_modal_search .cs_search_close:hover {
    opacity: 1;
}

.cs_header_social_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cs_header_social_links a {
    height: 36px;
    width: 36px;
    background-color: #fff;
    color: var(--heading-color);
    border-radius: 50%;
    font-size: 14px;
}
.cs_header_social_links a:hover {
    background-color: var(--accent-color);
    color: #fff;
}
.cs_header_social_links.cs_color_1 a {
    background-color: transparent;
    color: #fff;
}
.cs_header_social_links.cs_color_1 a:hover {
    background-color: #fff;
    color: var(--accent-color);
}

.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;
}
.cs_site_header.cs_style_1 .cs_main_header_in {
    height: 100px;
}
.cs_site_header.cs_style_1 .cs_top_header_in {
    height: 60px;
}
.cs_site_header.cs_style_1 .cs_main_header_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    gap: 30px;
}
@media (max-width: 1199px) {
    .cs_site_header.cs_style_1 .cs_main_header_right {
        padding-right: 50px;
    }
}
.cs_site_header.cs_style_1 .cs_top_header_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.cs_site_header.cs_style_1.cs_type_1,
.cs_site_header.cs_style_1.cs_type_2 {
    background-color: #fff;
}
.cs_site_header.cs_style_1.cs_type_1 .cs_top_header,
.cs_site_header.cs_style_1.cs_type_2 .cs_top_header {
    border-bottom: 1px solid var(--gray-color);
}
.cs_site_header.cs_style_1.cs_type_1 .cs_main_header_in,
.cs_site_header.cs_style_1.cs_type_2 .cs_main_header_in {
    height: 80px;
}
@media (max-width: 1199px) {
    .cs_site_header.cs_style_1.cs_type_1,
    .cs_site_header.cs_style_1.cs_type_2 {
        border-bottom: 1px solid var(--gray-color);
    }
    .cs_site_header.cs_style_1.cs_type_1 .cs_header_icon_boxes,
    .cs_site_header.cs_style_1.cs_type_1 .cs_hero_contact_list,
    .cs_site_header.cs_style_1.cs_type_2 .cs_header_icon_boxes,
    .cs_site_header.cs_style_1.cs_type_2 .cs_hero_contact_list {
        display: none;
    }
    .cs_site_header.cs_style_1.cs_type_1 .cs_top_header_in,
    .cs_site_header.cs_style_1.cs_type_2 .cs_top_header_in {
        height: initial;
    }
}
.cs_site_header.cs_style_1.cs_type_2 .cs_hero_contact_list {
    padding-right: 20px;
}
.cs_site_header.cs_style_1.cs_type_3 {
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.cs_site_header.cs_style_1.cs_type_3 .cs_header_icon_boxes {
    height: 100px;
}
.cs_site_header.cs_style_1.cs_type_3 .cs_header_icon_boxes {
    border-color: rgba(235, 236, 237, 0.3);
}
@media (max-width: 1335px) {
    .cs_site_header.cs_style_1.cs_type_3 .cs_header_icon_boxes {
        display: none;
    }
}
.cs_site_header.cs_style_1.cs_type_3 .cs_header_icon_boxes > * {
    color: #fff;
    border-color: rgba(235, 236, 237, 0.3);
}
@media (max-width: 1650px) {
    .cs_site_header.cs_style_1.cs_type_3 .cs_header_icon_boxes > * {
        width: 58px;
    }
}
@media (min-width: 1700px) {
    .cs_site_header.cs_style_1.cs_type_3
        .cs_header_icon_boxes
        + .cs_btn.cs_style_1 {
        margin-left: 35px;
    }
}
.cs_site_header.cs_style_1 .cs_btn.cs_style_1 {
    padding: 15px 30px;
}
@media (max-width: 1400px) {
    .cs_site_header.cs_style_1 .cs_btn.cs_style_1 {
        padding: 13px 25px;
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    .cs_site_header.cs_style_1 .cs_btn.cs_style_1 {
        display: none;
    }
}

.cs_site_header.cs_style_1.cs_sticky_active {
    background-color: var(--white-color);
    -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_site_header_spacing_140 {
    height: 140px;
}
@media (max-width: 1199px) {
    .cs_site_header_spacing_140 {
        height: 80px;
    }
}

@media screen and (max-width: 1400px) {
    .cs_nav.cs_fs_18 {
        font-size: 16px;
    }
}
@media screen and (max-width: 1199px) {
    .cs_site_header.cs_style_1 .cs_top_header_in {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .cs_site_header_spacing_100 {
        height: 80px;
    }
    .cs_main_header .container {
        max-width: 100%;
    }
    .cs_site_header.cs_style_1 .cs_nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.cs_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.cs_gescout_sticky {
    position: fixed !important;
    top: -110px;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: var(--heading-color);
}
.cs_gescout_sticky.cs_white_bg {
    background-color: #fff;
}
.cs_gescout_sticky.cs_fixed_sticky {
    top: 0;
    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_gescout_sticky.cs_heading_color {
    background-color: #fff;
}
.cs_gescout_sticky .cs_header_social_links a {
    background-color: var(--heading-color);
    color: #fff;
}
.cs_gescout_sticky .cs_header_social_links a:hover {
    background-color: var(--accent-color);
}
.cs_gescout_sticky .cs_header_social_links.cs_color_1 a:hover {
    color: #fff;
    opacity: 0.8;
}
.cs_gescout_sticky.cs_site_header.cs_style_1.cs_type_3 {
    background-color: var(--heading-color);
}

.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;
    }
}
@media (max-width: 1540px) {
    .cs_site_branding + .cs_nav {
        margin-left: 30px;
    }
}

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

@media screen and (min-width: 1200px) {
    .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:not(.cs_heading_color) .cs_nav_list > li > a {
        color: #fff;
    }
    .cs_site_header.cs_style_1:not(.cs_heading_color)
        .cs_nav_list
        > li
        > a:hover {
        color: rgba(255, 255, 255, 0.6);
    }
    .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: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }
    .cs_site_header.cs_style_1 .cs_main_header_left {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .cs_nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        line-height: 1.6em;
    }
    .cs_nav .cs_nav_list_wrap {
        height: inherit;
    }
    .cs_nav .cs_nav_list {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: inherit;
    }
    .cs_nav .cs_nav_list > li {
        margin-right: 40px;
        height: inherit;
    }
    .cs_nav .cs_nav_list > li:last-child {
        margin-right: 0;
    }
    .cs_nav .cs_nav_list > li > a {
        padding: 10px 0;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        position: relative;
        height: inherit;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .cs_nav .cs_nav_list > li > ul {
        left: 0;
        top: calc(100% + 15px);
        pointer-events: none;
    }
    .cs_nav .cs_nav_list > li:hover > ul {
        top: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .cs_nav .cs_nav_list > li.menu-item-has-children > a {
        position: relative;
    }
    .cs_nav .cs_nav_list > li.menu-item-has-children > a::after {
        content: '';
        display: inline-block;
        height: 6px;
        width: 6px;
        border: 2px solid currentColor;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-left: 0;
        border-top: 0;
        margin-left: 6px;
        position: relative;
        top: -1px;
        border-radius: 0px 0px 2px 0px;
    }
    .cs_nav .cs_nav_list li:not(.cs_mega_menu) {
        position: relative;
    }
    .cs_nav .cs_nav_list ul {
        width: 260px;
        background-color: var(--white-color);
        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: 8px;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list ul li:hover ul {
        top: 0px;
    }
    .cs_nav .cs_nav_list ul li:hover > ul {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list ul a {
        display: block;
        line-height: inherit;
        padding: 8px 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: 1296px;
        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;
        border-radius: 8px;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb {
        display: grid !important;
        grid-gap: 5px 15px;
        grid-template-columns: repeat(6, 1fr);
        padding: 15px 20px 10px 20px;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb img {
        border: 1px solid var(--gray-color);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        width: 100%;
        margin-bottom: 8px;
        border-radius: 8px;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb a {
        padding: 0;
        display: block;
        text-align: center;
        font-weight: 500;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb a:hover img {
        border-color: #d5d4d4;
    }
    .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 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_menu:hover .cs_mega_wrapper li ul {
        opacity: 1;
        visibility: visible;
    }
    .cs_top_header .cs_nav .cs_nav_list .cs_mega_wrapper {
        top: 60px !important;
        border-top: 1px solid var(--gray-color);
    }
    .container-fluid .cs_nav .cs_nav_list .cs_mega_wrapper {
        width: 1770px;
    }
    .cs_site_header.cs_style_1.cs_size_md
        .cs_nav
        .cs_nav_list
        .cs_mega_wrapper {
        top: 85px !important;
    }
    .cs_nav
        .cs_nav_list
        > li
        ul:not(.cs_mega_wrapper)
        .menu-item-has-children
        > a {
        position: relative;
    }
}
@media screen and (max-width: 1600px) {
    .cs_main_header .container-fluid {
        padding-right: 25px;
        padding-left: 25px;
    }
}
@media screen and (max-width: 1400px) {
    .cs_nav .cs_nav_list .cs_mega_wrapper {
        width: 1116px !important;
    }
    .cs_site_header_full_width .container {
        max-width: 100%;
    }
}
@media screen and (max-width: 1199px) {
    .cs_main_header .container-fluid {
        padding-right: 14px;
        padding-left: 14px;
    }
    .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_wrap {
        position: fixed;
        width: 100vw;
        left: -100vw;
        color: #fff;
        background-color: var(--heading-color);
        padding: 10px 0;
        padding-top: 80px;
        top: 0;
        height: 100vh;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list_wrap.cs_active {
        left: 0vw;
    }
    .cs_nav .cs_nav_list {
        line-height: 1.6em;
        overflow: auto;
        height: 100%;
    }
    .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;
    }
    /*Mobile Menu Button*/
    .cs_menu_toggle {
        display: inline-block;
        width: 30px;
        height: 27px;
        cursor: pointer;
        position: absolute;
        top: 27px;
        right: 30px;
        color: #fff;
    }
    .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: 14px;
        margin-top: -13px;
        z-index: 11;
    }
    .cs_site_header.cs_style_1.cs_heading_color .cs_menu_toggle {
        color: var(--heading-color);
    }
    .cs_site_header.cs_style_1.cs_heading_color .cs_nav .cs_nav_list_wrap {
        background-color: #fff;
        color: var(--heading-color);
    }
    .cs_toggle_active span {
        background-color: rgba(0, 0, 0, 0);
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }
    .cs_toggle_active span:before {
        margin-top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition-delay: 0s, 0.2s;
        transition-delay: 0s, 0.2s;
    }
    .cs_toggle_active span:after {
        margin-top: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition-delay: 0s, 0.2s;
        transition-delay: 0s, 0.2s;
    }
    .cs_nav .cs_nav_list a {
        position: relative;
    }
    .cs_site_header.cs_style_1 .cs_main_header_in {
        height: 80px;
    }
    .cs_site_header .current-menu-item > a:before {
        display: none;
    }
    .cs_site_header.cs_style_1 .cs_main_header_center .cs_site_branding {
        position: absolute;
        left: 0px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .cs_site_header.cs_style_1 {
        top: 0;
    }
    .cs_nav .cs_nav_list img {
        display: none;
    }
    .cs_site_header.cs_style_1 .cs_header_social_links.cs_color_1 {
        gap: 0;
    }
    .cs_site_header.cs_style_1 .cs_header_social_links.cs_color_1 a {
        color: var(--heading-color);
    }
    .cs_site_header.cs_style_1.cs_gescout_sticky
        .cs_header_social_links.cs_color_1
        a {
        background-color: transparent;
    }
}
@media screen and (max-width: 991px) {
    .cs_site_header .container {
        max-width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .cs_site_header .cs_header_number {
        display: none;
    }
}
@media screen and (max-width: 450px) {
    .cs_site_header .cs_header_social_links {
        display: none;
    }
}
/*--------------------------------------------------------------
  8. Footer
----------------------------------------------------------------*/
.cs_footer_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    padding: 140px 0 90px 0;
}
@media (max-width: 1400px) {
    .cs_footer_row {
        gap: 50px 50px;
    }
}
@media (max-width: 1199px) {
    .cs_footer_row {
        gap: 50px 30px;
    }
}
@media (max-width: 991px) {
    .cs_footer_row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 40px 40px;
        padding: 80px 0;
    }
}
.cs_footer_row .cs_footer_col {
    -webkit-box-flex: 1.2;
    -ms-flex: 1.2;
    flex: 1.2;
}
@media (max-width: 991px) {
    .cs_footer_row .cs_footer_col {
        -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
        flex: none !important;
        width: calc(50% - 20px);
    }
}
@media (max-width: 767px) {
    .cs_footer_row .cs_footer_col {
        width: 100%;
    }
}
.cs_footer_row .cs_footer_col:first-child {
    -webkit-box-flex: 1.5;
    -ms-flex: 1.5;
    flex: 1.5;
}
.cs_footer_row .cs_footer_col:nth-child(2) {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cs_footer_widget_menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.cs_footer_widget_menu.cs_address li {
    color: rgba(255, 255, 255, 0.8);
}
.cs_footer_widget_menu.cs_address li.cs_phone_number a {
    color: #fff;
}
.cs_footer_widget_menu li:not(:last-child) {
    margin-bottom: 10px;
}

.cs_footer_text_widget {
    max-width: 307px;
}
@media (max-width: 767px) {
    .cs_footer_text_widget {
        max-width: 100%;
    }
}
.cs_footer_text_widget p {
    margin-bottom: 0;
}
.cs_footer_text_widget img + p {
    margin-top: 35px;
}

.cs_footer_bottom {
    position: relative;
}
.cs_footer_bottom::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--gray2-color);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
}

.cs_footer_bottom_in {
    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;
    padding: 30px 0;
    gap: 5px 25px;
}
@media (max-width: 767px) {
    .cs_footer_bottom_in {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }
}
.cs_footer_bottom_in .cs_footer_widget_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2px 30px;
}
.cs_footer_bottom_in .cs_footer_widget_menu li {
    margin-bottom: 0;
}

.cs_footer_widget_menu a,
.cs_copyright a,
.cs_page_heading .breadcrumb a {
    background-repeat: no-repeat;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0, currentColor),
        to(currentColor)
    );
    background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
    -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
        color 0.27s ease-out;
    transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
        color 0.27s ease-out;
    background-position: 100% calc(100% - 0px);
    background-size: 0 1px;
    color: rgba(255, 255, 255, 0.8);
}
.cs_footer_widget_menu a:hover,
.cs_copyright a:hover,
.cs_page_heading .breadcrumb a:hover {
    color: var(--white-color);
    opacity: 1;
    background-size: 100% 1px;
    background-position: 0 calc(100% - 0px);
}

.cs_footer.cs_style_1 .cs_social_btns.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    font-size: 20px;
    margin-top: 30px;
}
.cs_footer.cs_style_1 .cs_social_btns.cs_style_1 a {
    height: 45px;
    width: 45px;
    color: var(--white-color);
    border-radius: 50%;
    position: relative;
}
.cs_footer.cs_style_1 .cs_social_btns.cs_style_1 a i {
    position: relative;
    z-index: 1;
}
.cs_footer.cs_style_1 .cs_social_btns.cs_style_1 a::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    opacity: 0.1;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cs_footer.cs_style_1 .cs_social_btns.cs_style_1 a:hover {
    color: var(--accent-color);
}
.cs_footer.cs_style_1 .cs_social_btns.cs_style_1 a:hover::after {
    opacity: 1;
}

.cs_newsletter.cs_style_1 {
    border: 1px solid var(--white-color);
    padding: 60px 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
}
@media (max-width: 991px) {
    .cs_newsletter.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: start;
        padding: 40px 15px;
    }
}
.cs_newsletter.cs_style_1 .cs_newsletter_left {
    max-width: 530px;
    -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;
    gap: 30px;
}
@media (max-width: 991px) {
    .cs_newsletter.cs_style_1 .cs_newsletter_left {
        max-width: 100%;
    }
}
@media (max-width: 575px) {
    .cs_newsletter.cs_style_1 .cs_newsletter_left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }
}
.cs_newsletter.cs_style_1 .cs_newsletter_icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.cs_newsletter.cs_style_1 .cs_newsletter_form {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px;
    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;
    max-width: 550px;
}
@media (max-width: 991px) {
    .cs_newsletter.cs_style_1 .cs_newsletter_form {
        max-width: 100%;
    }
}
@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 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 15px 20px;
    border: 0;
    outline: 0;
    background-color: transparent;
    color: var(--white-color);
}
@media (max-width: 575px) {
    .cs_newsletter.cs_style_1 .cs_newsletter_form_field {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
}
.cs_newsletter.cs_style_1 .cs_btn.cs_style_1 {
    background-color: var(--white-color);
    color: var(--accent-color);
}
.cs_newsletter.cs_style_1 .cs_btn.cs_style_1::after {
    background-color: var(--accent-color);
}
.cs_newsletter.cs_style_1 .cs_btn.cs_style_1:hover {
    color: var(--white-color);
}
@media (max-width: 575px) {
    .cs_newsletter.cs_style_1 .cs_btn.cs_style_1 {
        width: 100%;
    }
}

/*--------------------------------------------------------------
  9. Sidebar
----------------------------------------------------------------*/
.cs_sidebar.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    padding-left: 35px;
}
@media (max-width: 1199px) {
    .cs_sidebar.cs_style_1 {
        padding-left: 0;
    }
}

.cs_sidebar_widget {
    padding: 28px;
}
@media (max-width: 1199px) {
    .cs_sidebar_widget {
        padding: 30px 15px;
    }
}
.cs_sidebar_widget .cs_search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background-color: var(--white-color);
    padding-left: 20px;
    border: 1px solid #e7e7e8;
    overflow: hidden;
}
.cs_sidebar_widget .cs_search input {
    border: none;
    outline: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 15px 20px 15px 0;
}
.cs_sidebar_widget .cs_search .cs_search_icon {
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_sidebar_widget .cs_categories {
    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;
}
.cs_sidebar_widget .cs_categories li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
}
.cs_sidebar_widget .cs_categories a:last-child {
    font-weight: 600;
}
.cs_sidebar_widget .cs_categories a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cs_sidebar_widget .cs_categories a:first-child:hover {
    letter-spacing: 0.4px;
}
.cs_sidebar_widget .cs_casestudy_list {
    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_widget .cs_casestudy_list li {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cs_sidebar_widget .cs_casestudy_list span:first-child {
    font-weight: 500;
    color: var(--heading-color);
}
.cs_sidebar_widget .cs_department_list li {
    line-height: 1em;
    padding: 18px 0;
    border-bottom: 1px solid var(--heading-color);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.cs_sidebar_widget .cs_department_list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.cs_sidebar_widget .cs_department_list li a:hover {
    letter-spacing: 0.2px;
}
.cs_sidebar_widget .cs_schedule_list {
    margin-bottom: 24px;
}
.cs_sidebar_widget .cs_schedule_list li {
    line-height: 1em;
    padding: 18px 0;
    border-bottom: 1px solid var(--heading-color);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cs_sidebar_widget .cs_help_title {
    font-size: 16px;
    line-height: 1em;
    margin-bottom: 16px;
}
.cs_sidebar_widget .cs_widget_text {
    margin-bottom: 40px;
}
.cs_sidebar_widget .cs_location_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}
.cs_sidebar_widget .cs_location_list li,
.cs_sidebar_widget .cs_location_list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
.cs_sidebar_widget .cs_location_list span {
    font-size: 18px;
    color: var(--accent-color);
}
.cs_sidebar_widget .cs_appoinment_form .cs_btn.cs_style_1 {
    margin-top: 24px;
}
.cs_sidebar_widget .cs_form_field {
    padding: 12px 0;
    border-bottom: 1px solid var(--heading-color);
    border-radius: 0;
    font-size: 16px;
    color: var(--heading-color);
}
.cs_sidebar_widget .cs_form_field::-webkit-input-placeholder {
    font-size: 16px;
}
.cs_sidebar_widget .cs_form_field::-moz-placeholder {
    font-size: 16px;
}
.cs_sidebar_widget .cs_form_field:-ms-input-placeholder {
    font-size: 16px;
}
.cs_sidebar_widget .cs_form_field::-ms-input-placeholder {
    font-size: 16px;
}
.cs_sidebar_widget .cs_form_field::placeholder {
    font-size: 16px;
}
.cs_sidebar_widget.cs_type_1 {
    padding: 0;
}
.cs_sidebar_widget.cs_type_1 .cs_btn_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}
.cs_sidebar_widget.cs_type_1 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 24px;
    border: 1px solid var(--accent-color);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_sidebar_widget.cs_type_1 a i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.cs_sidebar_widget.cs_type_1 a:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}
.cs_sidebar_widget.cs_type_2 {
    padding: 32px 40px 40px;
    -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1199px) {
    .cs_sidebar_widget.cs_type_2 {
        padding: 32px 30px 35px;
    }
}
.cs_sidebar_widget.cs_type_2 .cs_widget_title {
    font-size: 25px;
    line-height: 1.44em;
    margin-bottom: 6px;
    position: relative;
}
.cs_sidebar_widget.cs_type_2 .cs_widget_title::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    position: absolute;
    left: 0;
    bottom: -7px;
}
.cs_sidebar_widget.cs_type_2 hr {
    border-color: var(--gray2-color);
    margin-bottom: 25px;
}
.cs_sidebar_widget.cs_type_3 {
    padding: 30px;
}
.cs_sidebar_widget.cs_type_3 .cs_widget_title {
    margin-bottom: 16px;
    letter-spacing: -0.4px;
}
.cs_sidebar_widget.cs_type_3 hr {
    border-color: var(--heading-color);
}

.cs_sidebar.cs_style_2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
    padding-left: 45px;
}
@media (max-width: 1199px) {
    .cs_sidebar.cs_style_2 {
        padding-left: 0;
    }
}

.cs_sidebar.cs_style_3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 45px;
    padding-left: 20px;
}
@media (max-width: 1400px) {
    .cs_sidebar.cs_style_3 {
        padding-left: 0;
    }
}

.cs_sidebar.cs_style_4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    padding-left: 36px;
}
@media (max-width: 1400px) {
    .cs_sidebar.cs_style_4 {
        padding-left: 20px;
    }
}
@media (max-width: 1199px) {
    .cs_sidebar.cs_style_4 {
        padding-left: 0;
    }
    .cs_sidebar.cs_style_4 .cs_btn.cs_style_1 {
        padding: 15px 25px;
    }
}

/*----------------------------------------------------------
 10. About Section Styling
------------------------------------------------------------*/
.cs_about.cs_style_1::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--gray-color);
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
}
.cs_about.cs_style_1.cs_type_1 .cs_about_thumbnail {
    padding-bottom: 100px;
}
.cs_about.cs_style_1.cs_type_1 .cs_about_thumbnail_1 img {
    width: 100%;
    border-radius: 8px 100px 8px 100px;
}
.cs_about.cs_style_1.cs_type_1 .cs_about_thumbnail_2 img {
    border-radius: 8px 100px 8px 100px;
}
.cs_about.cs_style_1.cs_type_2 .cs_about_thumbnail {
    padding-bottom: 90px;
}
.cs_about.cs_style_1.cs_type_2 .cs_about_thumbnail_1 {
    padding-right: 76px;
}
@media (max-width: 1199px) {
    .cs_about.cs_style_1.cs_type_2 .cs_about_thumbnail_1 {
        padding-right: 0;
    }
}
.cs_about.cs_style_1.cs_type_2 .cs_about_thumbnail_1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.cs_about.cs_style_1.cs_type_3 .cs_about_thumbnail_1 {
    padding: 0 0 0 60px;
    position: relative;
}
@media (max-width: 1199px) {
    .cs_about.cs_style_1.cs_type_3 .cs_about_thumbnail_1 {
        padding-right: 0;
    }
}
.cs_about.cs_style_1.cs_type_3 .cs_about_thumbnail_1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.cs_about.cs_style_1.cs_type_3 .cs_about_thumbnail_1 .cs_rectangle_shape {
    width: calc(100% - 100px);
    height: 100%;
    border: 4px solid var(--accent-color);
    top: 60px;
    left: 0;
}
.cs_about.cs_style_1.cs_type_4 .cs_about_thumbnail_1 {
    border-radius: 256px 256px 0 0;
}
.cs_about.cs_style_1 .cs_about_thumbnail {
    margin-right: 36px;
    position: relative;
    z-index: 1;
    padding-bottom: 24%;
}
.cs_about.cs_style_1 .cs_about_thumbnail.cs_type_2 {
    padding-bottom: 140px;
}
@media (max-width: 1199px) {
    .cs_about.cs_style_1 .cs_about_thumbnail {
        margin-right: 20px;
    }
}
@media (max-width: 991px) {
    .cs_about.cs_style_1 .cs_about_thumbnail {
        margin-right: 0;
    }
}
@media (max-width: 991px) {
    .cs_about.cs_style_1 .cs_about_thumbnail.m-0 {
        margin-right: 20px !important;
    }
}
.cs_about.cs_style_1 .cs_about_thumbnail_1 {
    padding-right: 26%;
}
@media (max-width: 1199px) {
    .cs_about.cs_style_1 .cs_about_thumbnail_1 {
        padding-right: 70px;
    }
}
.cs_about.cs_style_1 .cs_about_thumbnail_1::before {
    content: '';
    height: 100px;
    width: 100px;
    position: absolute;
    border-radius: 50%;
    border: 10px solid var(--accent-color);
    left: -85px;
    top: 54px;
}
@media (max-width: 1499px) {
    .cs_about.cs_style_1 .cs_about_thumbnail_1::before {
        display: none;
    }
}
.cs_about.cs_style_1 .cs_about_thumbnail_1::after {
    content: '';
    height: 20px;
    width: 20px;
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    left: -42px;
    top: 95px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation: scale-up 3s linear infinite;
    animation: scale-up 3s linear infinite;
}
@media (max-width: 1199px) {
    .cs_about.cs_style_1 .cs_about_thumbnail_1::after {
        display: none;
    }
}
.cs_about.cs_style_1 .cs_about_thumbnail_1 > img {
    position: relative;
    z-index: 2;
    border-radius: inherit;
}
.cs_about.cs_style_1 .cs_about_thumbnail_1 .cs_about_thumbnailnail_shape_1 {
    width: 6px;
    height: 128px;
    background-color: var(--accent-color);
    position: absolute;
    top: 30%;
    right: 7%;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
}
.cs_about.cs_style_1
    .cs_about_thumbnail_1
    .cs_about_thumbnailnail_shape_1::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    position: absolute;
    top: 0;
    right: 22px;
}
@media (max-width: 1199px) {
    .cs_about.cs_style_1 .cs_about_thumbnail_1 .cs_about_thumbnailnail_shape_1 {
        display: none;
    }
}
.cs_about.cs_style_1 .cs_commentbox {
    max-width: 357px;
    padding: 24px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.cs_about.cs_style_1 .cs_commentbox blockquote {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 16px;
    font-family: var(--heading-font);
    opacity: 0.9;
}
.cs_about.cs_style_1 .cs_commentbox .cs_client_subtitle {
    opacity: 0.8;
}
.cs_about.cs_style_1 .cs_videobox {
    max-width: 304px;
    width: 100%;
    height: 264px;
    bottom: 0;
    left: -130px;
    z-index: 5;
}
@media (max-width: 1560px) {
    .cs_about.cs_style_1 .cs_videobox {
        left: -40px;
    }
}
@media (max-width: 1399px) {
    .cs_about.cs_style_1 .cs_videobox {
        left: 0px;
    }
}
.cs_about.cs_style_1 .cs_videobox .cs_player_btn.cs_style_2 {
    width: 60px;
    height: 60px;
    background-color: var(--white-color);
    color: var(--accent-color);
    margin: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.cs_about.cs_style_1 .cs_videobox .cs_player_btn.cs_style_2::after,
.cs_about.cs_style_1 .cs_videobox .cs_player_btn.cs_style_2::before {
    background-color: var(--white-color);
}
.cs_about.cs_style_1 .cs_patient_group_thumbnail {
    margin: -30px auto 0;
    position: relative;
    z-index: 5;
}
.cs_about.cs_style_1 .cs_about_thumbnail_icon {
    width: 120px;
    height: 120px;
    margin: -60px auto 0;
    position: relative;
    z-index: 5;
    border: 2px solid var(--white-color);
}
.cs_about.cs_style_1 .cs_about_shape_1 {
    position: absolute;
    top: 30px;
    left: 30px;
    -webkit-animation: move-down 15s linear infinite;
    animation: move-down 15s linear infinite;
}
.cs_about.cs_style_1 .cs_about_shape_2 {
    position: absolute;
    top: 20%;
    left: 41%;
    z-index: 2;
    -webkit-animation: move-down 15s linear infinite;
    animation: move-down 15s linear infinite;
}
.cs_about.cs_style_1 .cs_about_shape_3 {
    position: absolute;
    top: 50%;
    left: 8%;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: move-down 15s linear infinite;
    animation: move-down 15s linear infinite;
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}
.cs_about.cs_style_1 .cs_about_shape_4 {
    position: absolute;
    top: 30px;
    right: 30px;
    -webkit-animation: move-down 15s linear infinite;
    animation: move-down 15s linear infinite;
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}
.cs_about.cs_style_1 .cs_about_shape_5 {
    position: absolute;
    bottom: 0;
    right: 0;
}
.cs_about.cs_style_1 .cs_about_shape_6 {
    position: absolute;
    left: 2%;
    top: 3%;
}
.cs_about.cs_style_1 .cs_about_shape_7 {
    position: absolute;
    bottom: 8%;
    right: 2%;
}
.cs_about.cs_style_1 .cs_about_shape_8 {
    bottom: 8%;
    left: -12%;
}
.cs_about.cs_style_1 .cs_about_shape_8 img {
    -webkit-animation: circular-rotation 40s linear infinite;
    animation: circular-rotation 40s linear infinite;
}
.cs_about.cs_style_1 .cs_about_shape_9 {
    bottom: 0%;
    left: 40%;
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
}
.cs_about.cs_style_1 .cs_about_shape_9 img {
    -webkit-animation: circular-rotation 40s linear infinite;
    animation: circular-rotation 40s linear infinite;
}
.cs_about.cs_style_1 .cs_about_shape_10 {
    top: 120px;
    left: 0;
}
@media (max-width: 991px) {
    .cs_about.cs_style_1 .cs_about_shape_10 {
        display: none;
    }
}
.cs_about.cs_style_1 .cs_about_shape_11 {
    bottom: 140px;
    right: 0;
}
@media (max-width: 991px) {
    .cs_about.cs_style_1 .cs_about_shape_11 {
        display: none;
    }
}
.cs_about.cs_style_1 .cs_about_shape_12 {
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cs_about.cs_style_1 .cs_about_shape_13 {
    width: 240px;
    height: 240px;
    border: 1px solid var(--gray-color);
    position: absolute;
    top: 50%;
    right: -80px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: rotate-x 6s linear infinite;
    animation: rotate-x 6s linear infinite;
}
.cs_about.cs_style_1 .cs_about_shape_13::after {
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid var(--gray-color);
    border-radius: inherit;
    position: absolute;
    left: 30px;
    top: 30px;
    -webkit-animation: rotate-x 6s linear infinite;
    animation: rotate-x 6s linear infinite;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.cs_about.cs_style_1 .cs_about_shape_13::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid var(--gray-color);
    border-radius: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: rotate-x 6s linear infinite;
    animation: rotate-x 6s linear infinite;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}
.cs_about.cs_style_1 .cs_about_thumbnail_2 {
    padding-left: 38%;
    position: absolute;
    bottom: 0;
    right: 10px;
    z-index: 2;
}
.cs_about.cs_style_1 .cs_about_thumbnail_2 .cs_about_thumbnail_shape_2 {
    position: absolute;
    left: 7%;
    bottom: 0;
    -webkit-animation: rotate-shape 5s linear infinite;
    animation: rotate-shape 5s linear infinite;
}
.cs_about.cs_style_1 .cs_player_btn.cs_style_1 {
    position: absolute;
    top: 37%;
    right: 10%;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
}
.cs_about.cs_style_1 .cs_player_btn.cs_style_1 .cs_play_btn_text {
    background-position: 0% 0;
    background-size: 1px 0%;
}
.cs_about.cs_style_1 .cs_player_btn.cs_style_1:hover .cs_play_btn_text {
    background-size: 1px 100%;
    background-position: 0% 0;
}
@media (max-width: 1199px) {
    .cs_about.cs_style_1 .cs_player_btn.cs_style_1 {
        right: 10px;
    }
}
.cs_about.cs_style_1 .cs_player_btn.cs_style_1 .cs_player_btn_icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    border-color: var(--accent-color);
    padding: 0px 1px 3px 0px;
}
.cs_about.cs_style_1 .cs_player_btn.cs_style_1 .cs_play_btn_text {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--heading-font);
    text-wrap: nowrap;
}
.cs_about.cs_style_1 .cs_player_btn.cs_style_2 {
    position: absolute;
    top: 0%;
    right: 4%;
    z-index: 5;
}
@media (max-width: 1199px) {
    .cs_about.cs_style_1 .cs_player_btn.cs_style_2 {
        top: 40%;
        right: 30%;
        -webkit-transform: translate(-30%, -40%);
        transform: translate(-30%, -40%);
    }
}
.cs_about.cs_style_1 .cs_about_content {
    position: relative;
    z-index: 2;
}
.cs_about.cs_style_1 .cs_section_heading.cs_style_1 {
    margin-bottom: 29px;
}
.cs_about.cs_style_1 .cs_about_text {
    max-width: 580px;
    margin-bottom: 30px;
    line-height: 1.87em;
}
.cs_about.cs_style_1 .cs_btn.cs_style_1 {
    margin-top: 40px;
}
.cs_about.cs_style_1 .cs_experience_box {
    height: 160px;
    width: 160px;
    border: 4px solid var(--white-color);
    position: absolute;
    bottom: 18%;
    left: 24%;
    z-index: 5;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 10px;
}
@media (max-width: 575px) {
    .cs_about.cs_style_1 .cs_experience_box {
        height: 140px;
        width: 140px;
    }
}
.cs_about.cs_style_1 .cs_experience_box.cs_vertical {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
    height: initial;
    border: none;
    padding: 30px 18px;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
    right: -24px;
    left: initial;
    bottom: initial;
    top: 48%;
}
@media (max-width: 991px) {
    .cs_about.cs_style_1 .cs_experience_box.cs_vertical {
        padding: 20px 12px;
        right: -20px;
    }
}
.cs_about.cs_style_1 .cs_experience_box_number {
    margin-bottom: 0px;
    line-height: 1.2em;
}
.cs_about.cs_style_1 .cs_experience_box_title {
    margin: 0;
    opacity: 0.7;
}

/*--------------------------------------------------------------
  11. Hero
----------------------------------------------------------------*/
.cs_hero.cs_style_1 {
    width: 100%;
    height: 100vh;
    max-height: 1100px;
    min-height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 80px 0 0;
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1 {
        max-height: 800px;
    }
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1.cs_type_1 {
        padding-bottom: 210px;
        max-height: 950px;
    }
}
.cs_hero.cs_style_1.cs_type_1 .cs_hero_overlay {
    width: 50%;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(75%, var(--white-color)),
        to(rgba(255, 255, 255, 0))
    );
    background: linear-gradient(
        90deg,
        var(--white-color) 75%,
        rgba(255, 255, 255, 0) 100%
    );
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1.cs_type_1 {
        height: initial;
        max-height: initial;
        padding: 130px 0 80px;
    }
    .cs_hero.cs_style_1.cs_type_1 .cs_hero_content {
        max-width: 550px;
    }
}
@media (max-width: 767px) {
    .cs_hero.cs_style_1.cs_type_1 .cs_hero_patientbox {
        display: initial;
    }
}
.cs_hero.cs_style_1.cs_type_2 {
    padding: 80px 0 180px;
    height: initial;
    min-height: calc(100vh - 140px);
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1.cs_type_2 {
        padding: 80px 0 165px;
    }
}
.cs_hero.cs_style_1.cs_type_2 .cs_hero_btn_group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.cs_hero.cs_style_1.cs_type_2 .cs_hero_content {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cs_hero.cs_style_1.cs_type_2 .cs_hero_content .cs_hero_subtitle {
    margin-bottom: 40px;
}
.cs_hero.cs_style_1.cs_type_3 {
    min-height: 920px;
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1.cs_type_3 {
        min-height: 800px;
    }
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1.cs_type_3 {
        min-height: 700px;
        padding-top: 130px;
        padding-bottom: 70px;
    }
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_overlay {
    width: 100%;
    background: linear-gradient(
        249deg,
        rgba(45, 57, 40, 0.1) 39.07%,
        rgba(126, 159, 112, 0.02) 123.22%
    );
    opacity: 0.8;
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_content {
    max-width: 900px;
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1.cs_type_3 .cs_hero_content {
        max-width: 630px;
    }
}
@media (max-width: 767px) {
    .cs_hero.cs_style_1.cs_type_3 .cs_hero_content {
        max-width: 100%;
    }
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_thumbnail {
    width: 35%;
    max-width: 712px;
    height: 1120px;
    padding: 50px 50px 60px 50px;
    border-radius: 0px 0px 418px 418px;
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
    position: absolute;
    top: -270px;
    right: 0;
    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;
}
@media (max-width: 1600px) {
    .cs_hero.cs_style_1.cs_type_3 .cs_hero_thumbnail {
        height: 1050px;
    }
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1.cs_type_3 .cs_hero_thumbnail {
        height: 920px;
        padding: 30px 30px 40px 30px;
    }
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1.cs_type_3 .cs_hero_thumbnail {
        display: none;
    }
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_thumbnail img {
    width: auto;
    height: auto;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    border-radius: 50%;
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_title {
    margin-bottom: 70px;
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1.cs_type_3 .cs_hero_title {
        margin-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .cs_hero.cs_style_1.cs_type_3 .cs_hero_title {
        margin-bottom: 25px;
    }
}
.cs_hero.cs_style_1.cs_type_3 .cs_hero_btn_group.cs_type_1 {
    -ms-flex-wrap: initial;
    flex-wrap: initial;
    max-width: 780px;
}
@media (max-width: 1750px) {
    .cs_hero.cs_style_1.cs_type_3 .cs_hero_btn_group.cs_type_1 {
        max-width: 710px;
        gap: 30px;
    }
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1.cs_type_3 .cs_hero_btn_group.cs_type_1 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
.cs_hero.cs_style_1.cs_type_4 {
    min-height: 700px;
    height: calc(100vh - 140px);
    padding: 50px 0 65px 0;
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1.cs_type_4 {
        height: 750px;
    }
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1.cs_type_4 {
        height: initial;
        max-height: initial;
        min-height: initial;
        padding: 80px 0;
    }
}
.cs_hero.cs_style_1.cs_type_4 .cs_hero_overlay {
    width: 100%;
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        color-stop(-36.45%, rgba(20, 20, 20, 0)),
        color-stop(32.61%, rgba(70, 70, 70, 0.72)),
        color-stop(61.35%, rgba(0, 0, 0, 0.95))
    );
    background: linear-gradient(
        270deg,
        rgba(20, 20, 20, 0) -36.45%,
        rgba(70, 70, 70, 0.72) 32.61%,
        rgba(0, 0, 0, 0.95) 61.35%
    );
}
.cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail {
    height: calc(100% - 170px);
    max-height: 705px;
    position: absolute;
    top: 50%;
    right: 8%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 300px 300px 0 0;
    border: 10px solid var(--white-color);
    z-index: 10;
    width: 26.5%;
    max-width: 508px;
}
@media (max-width: 1799px) {
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail {
        right: 4%;
        width: 28.5%;
    }
}
@media (max-width: 1600px) {
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail {
        right: 30px;
        width: 33%;
    }
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail {
        width: 36%;
    }
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail {
        position: relative;
        left: initial;
        width: 100%;
        max-width: 100%;
        right: initial;
        -webkit-transform: initial;
        transform: initial;
        top: initial;
        height: initial;
        max-height: initial;
        border-radius: 350px 350px 0 0;
        margin-bottom: 40px;
        border-width: 5px;
    }
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail .cs_videobox {
        left: 30px;
        bottom: 30px;
        right: 30px;
        max-width: 100%;
    }
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail .cs_player_btn.cs_style_1 {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 575px) {
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail .cs_videobox {
        left: 15px;
        bottom: 15px;
        right: 15px;
    }
}
.cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail img {
    border-radius: inherit;
}
.cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail .cs_ring_shape {
    width: 150px;
    height: 150px;
    border: 2px solid var(--white-color);
    padding: 35px;
    top: -10px;
    left: 10px;
    -webkit-animation: spinningShape 10s linear infinite;
    animation: spinningShape 10s linear infinite;
}
@media (max-width: 575px) {
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_thumbnail .cs_ring_shape {
        display: none;
    }
}
.cs_hero.cs_style_1.cs_type_4 .cs_hero_content {
    max-width: 850px;
}
@media (max-width: 1600px) {
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_content {
        max-width: 770px;
    }
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_content {
        max-width: 600px;
    }
}
.cs_hero.cs_style_1.cs_type_4 .cs_hero_title {
    line-height: 1.15em;
    margin-bottom: 110px;
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_title {
        margin-bottom: 40px;
    }
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1.cs_type_4 .cs_hero_title {
        margin-bottom: 30px;
    }
}
.cs_hero.cs_style_1.cs_type_4 .cs_hero_title span {
    padding: 0px 10px;
    margin: 10px 0;
}
.cs_hero.cs_style_1.cs_type_4 .cs_hero_subtitle {
    max-width: 460px;
}
.cs_hero.cs_style_1.cs_type_4 .cs_btn.cs_style_1::after {
    background-color: var(--accent-color);
}
.cs_hero.cs_style_1.cs_type_5 {
    min-height: 820px;
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1.cs_type_5 {
        height: initial;
        min-height: initial;
        max-height: initial;
        padding-bottom: 75px;
    }
    .cs_hero.cs_style_1.cs_type_5 .cs_hero_thumbnail {
        height: 450px;
        margin-bottom: 30px;
    }
    .cs_hero.cs_style_1.cs_type_5 .cs_hero_content {
        max-width: 680px;
    }
}
.cs_hero.cs_style_1 .cs_hero_overlay {
    width: 100%;
    height: 100%;
    opacity: 0.95;
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        color-stop(25%, transparent),
        color-stop(55.11%, var(--accent-color))
    );
    background: linear-gradient(
        270deg,
        transparent 25%,
        var(--accent-color) 55.11%
    );
    left: 0;
    top: 0;
    opacity: 0.95;
}
.cs_hero.cs_style_1 .cs_hero_content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1 .cs_hero_content {
        max-width: 470px;
    }
    .cs_hero.cs_style_1 .cs_hero_content .cs_fs_20 {
        font-size: 18px;
    }
}
.cs_hero.cs_style_1 .cs_hero_text_line_1 {
    width: 37%;
    height: 4px;
    display: inline-block;
}
@media (max-width: 575px) {
    .cs_hero.cs_style_1 .cs_hero_text_line_1 {
        display: none;
    }
}
.cs_hero.cs_style_1 .cs_hero_text_line_2 {
    width: 33%;
    height: 4px;
    display: inline-block;
}
@media (max-width: 575px) {
    .cs_hero.cs_style_1 .cs_hero_text_line_2 {
        display: none;
    }
}
.cs_hero.cs_style_1 .cs_hero_text_img_wrapper {
    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;
    padding: 30px 0;
    font-weight: inherit;
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1 .cs_hero_text_img_wrapper {
        padding: 20px 0;
    }
}
@media (max-width: 575px) {
    .cs_hero.cs_style_1 .cs_hero_text_img_wrapper {
        padding: 0;
        display: inline-block;
    }
}
.cs_hero.cs_style_1 .cs_hero_text_img_wrapper > img {
    border-radius: 50%;
    -webkit-animation: circular-rotation 30s linear infinite;
    animation: circular-rotation 30s linear infinite;
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1 .cs_hero_text_img_wrapper > img {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 767px) {
    .cs_hero.cs_style_1 .cs_hero_text_img_wrapper > img {
        width: 80px;
        height: 80px;
    }
}
@media (max-width: 575px) {
    .cs_hero.cs_style_1 .cs_hero_text_img_wrapper > img {
        display: none;
    }
}
.cs_hero.cs_style_1 .cs_arrow_btn {
    width: 160px;
    height: 160px;
    -webkit-transform: translateX(-30px) rotate(-45deg);
    transform: translateX(-30px) rotate(-45deg);
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1 .cs_arrow_btn {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 767px) {
    .cs_hero.cs_style_1 .cs_arrow_btn {
        width: 80px;
        height: 80px;
    }
    .cs_hero.cs_style_1 .cs_arrow_btn img {
        width: 40px;
    }
}
@media (max-width: 575px) {
    .cs_hero.cs_style_1 .cs_arrow_btn {
        display: none;
    }
}
.cs_hero.cs_style_1 .cs_arrow_btn img {
    -webkit-animation: transform-up 3s cubic-bezier(0.77, 0, 0.18, 0.5) infinite;
    animation: transform-up 3s cubic-bezier(0.77, 0, 0.18, 0.5) infinite;
}
.cs_hero.cs_style_1 .cs_hero_title_mini {
    margin-bottom: 10px;
    letter-spacing: 1.44px;
    line-height: 1.55em;
}
.cs_hero.cs_style_1 .cs_hero_title_mini.cs_white_color {
    color: rgba(255, 255, 255, 0.8);
}
.cs_hero.cs_style_1 .cs_hero_title {
    margin-bottom: 30px;
}
.cs_hero.cs_style_1 .cs_hero_title span {
    background-color: var(--accent-color);
    display: inline-block;
    padding: 5px 35px;
}
.cs_hero.cs_style_1 .cs_hero_subtitle {
    opacity: 0.8;
    margin-bottom: 30px;
}
.cs_hero.cs_style_1 .cs_hero_doctorbox {
    width: 125px;
    height: 148px;
    top: 25%;
    left: 55%;
}
@media (max-width: 1400px) {
    .cs_hero.cs_style_1 .cs_hero_doctorbox {
        left: 57%;
    }
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1 .cs_hero_doctorbox {
        left: 62%;
    }
}
@media (max-width: 767px) {
    .cs_hero.cs_style_1 .cs_hero_doctorbox {
        display: none;
    }
}
.cs_hero.cs_style_1 .cs_hero_doctorbox .cs_hero_doctorbox_shape {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.cs_hero.cs_style_1 .cs_hero_doctorbox_content {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cs_hero.cs_style_1 .cs_hero_doctorbox_thumbnail {
    margin-bottom: 4px;
}
.cs_hero.cs_style_1 .cs_hero_doctorbox_subtitle {
    color: var(--white-color);
    opacity: 0.7;
}
.cs_hero.cs_style_1 .cs_hero_patientbox {
    bottom: 140px;
    right: 5%;
    padding: 15px 20px;
    border-radius: 50px;
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1 .cs_hero_patientbox {
        bottom: 80px;
        right: 30px;
    }
}
@media (max-width: 767px) {
    .cs_hero.cs_style_1 .cs_hero_patientbox {
        display: none;
    }
}
.cs_hero.cs_style_1 .cs_hero_patientbox_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1 .cs_hero_patientbox_content {
        gap: 15px;
    }
}
.cs_hero.cs_style_1 .cs_hero_patientbox_title {
    line-height: 1.42em;
}
.cs_hero.cs_style_1 .cs_hero_patientbox_subtitle {
    opacity: 0.7;
}
.cs_hero.cs_style_1 .cs_scroll_more_btn {
    left: 6%;
    bottom: 60px;
    -webkit-animation: scroll-down 3s infinite;
    animation: scroll-down 3s infinite;
}
.cs_hero.cs_style_1 .cs_scroll_more_btn.cs_white_color:hover {
    color: #fff;
}
@media (max-width: 1600px) {
    .cs_hero.cs_style_1 .cs_scroll_more_btn {
        left: 3%;
    }
}
@media (max-width: 1500px) {
    .cs_hero.cs_style_1 .cs_scroll_more_btn {
        left: 1.5%;
    }
}
@media (max-width: 1250px) {
    .cs_hero.cs_style_1 .cs_scroll_more_btn {
        display: none;
    }
}
.cs_hero.cs_style_1 .cs_scroll_more_btn .cs_scroll_more_btn_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.cs_hero.cs_style_1 .cs_scroll_more_btn .cs_scroll_more_btn_in i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.cs_hero.cs_style_1 .cs_hero_btn_group {
    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: 20px;
}
.cs_hero.cs_style_1 .cs_hero_btn_group.cs_type_1 {
    max-width: 730px;
    gap: 105px;
}
.cs_hero.cs_style_1 .cs_hero_btn_group .cs_hero_patientbox_content {
    gap: 10px;
}
.cs_hero.cs_style_1 .cs_player_btn.cs_style_1 {
    color: var(--heading-font);
}
.cs_hero.cs_style_1 .cs_hero_thumbnail {
    position: absolute;
    max-width: 48%;
    height: 100%;
    right: 0;
    top: 0;
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1 .cs_hero_thumbnail {
        position: initial;
        max-width: 100%;
    }
}
.cs_hero.cs_style_1 .cs_hero_thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.cs_hero.cs_style_1 .cs_hero_thumbnail .cs_videobox {
    max-width: 336px;
    left: -210px;
    bottom: 30px;
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1 .cs_hero_thumbnail .cs_videobox {
        left: -100px;
        max-width: 280px;
    }
}
.cs_hero.cs_style_1 .cs_hero_thumbnail .cs_player_btn.cs_style_1 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: -25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}
.cs_hero.cs_style_1 .cs_hero_thumbnail .cs_player_btn.cs_style_1::after {
    content: '';
    width: 48px;
    height: 48px;
    background-color: var(--white-color);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: inherit;
    z-index: 2;
}
.cs_hero.cs_style_1 .cs_hero_thumbnail .cs_player_btn.cs_style_1 span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 12px solid var(--accent-color);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.cs_hero.cs_style_1 .cs_hero_shape_1 {
    left: 2%;
    bottom: 6%;
}
.cs_hero.cs_style_1 .cs_hero_shape_2 {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.cs_hero.cs_style_1 .cs_hero_shape_3,
.cs_hero.cs_style_1 .cs_hero_shape_4 {
    width: 230px;
    height: 230px;
}
.cs_hero.cs_style_1 .cs_hero_shape_3 {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(27.85%, rgba(210, 228, 254, 0.7)),
        to(rgba(0, 122, 255, 0.7))
    );
    background: linear-gradient(
        180deg,
        rgba(210, 228, 254, 0.7) 27.85%,
        rgba(0, 122, 255, 0.7) 100%
    );
    opacity: 0.5;
    left: 11%;
    top: 18%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
}
.cs_hero.cs_style_1 .cs_hero_shape_4 {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#d2e4fe),
        to(#007aff)
    );
    background: linear-gradient(180deg, #d2e4fe 0%, #007aff 100%);
    -webkit-filter: blur(175px);
    filter: blur(175px);
    top: 50%;
    left: 54%;
    -webkit-transform: translate(-54%, -50%);
    transform: translate(-54%, -50%);
}
.cs_hero.cs_style_1 .cs_hero_shape_5 {
    width: 30px;
    height: 30px;
    background-color: var(--heading-color);
    opacity: 0.15;
    top: 10%;
    left: 60%;
    -webkit-transform: translate(-60%, -10%);
    transform: translate(-60%, -10%);
    -webkit-animation: scale-up 10s linear infinite;
    animation: scale-up 10s linear infinite;
}
.cs_hero.cs_style_1 .cs_hero_shape_6 {
    top: 15%;
    left: 5%;
    -webkit-transform: translate(-5%, -15%);
    transform: translate(-5%, -15%);
    -webkit-animation: circular-rotation 10s linear infinite;
    animation: circular-rotation 10s linear infinite;
}
.cs_hero.cs_style_1 .cs_hero_shape_7 {
    width: 303px;
    height: 522px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(69.3%, rgba(45, 57, 40, 0.03)),
        color-stop(126.77%, rgba(126, 159, 112, 0.03))
    );
    background: linear-gradient(
        180deg,
        rgba(45, 57, 40, 0.03) 69.3%,
        rgba(126, 159, 112, 0.03) 126.77%
    );
    border-radius: 50% 50% 48% 52%/82% 77% 23% 18%;
    bottom: 107px;
    right: -110px;
    padding: 50px 50px 90px 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.cs_hero.cs_style_1 .cs_hero_shape_8 {
    left: 0;
    bottom: 0;
}
.cs_hero.cs_style_1 .cs_slider.cs_style_1 {
    bottom: 30px;
    right: 30px;
    max-width: 495px;
    position: absolute;
    z-index: 1;
}
@media (max-width: 1199px) {
    .cs_hero.cs_style_1 .cs_slider.cs_style_1 {
        bottom: 20px;
        right: 20px;
        max-width: 420px;
    }
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1 .cs_slider.cs_style_1 {
        position: relative;
        bottom: initial;
        right: initial;
        max-width: 100%;
        margin-top: 30px;
    }
}

@-webkit-keyframes scroll-down {
    0%,
    100% {
        margin-bottom: 0px;
    }
    50% {
        margin-bottom: 30px;
        opacity: 0.5;
    }
}

@keyframes scroll-down {
    0%,
    100% {
        margin-bottom: 0px;
    }
    50% {
        margin-bottom: 30px;
        opacity: 0.5;
    }
}
@-webkit-keyframes transform-up {
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}
@keyframes transform-up {
    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}
@-webkit-keyframes spinningShape {
    0% {
        -webkit-transform: rotateX(-20deg) rotateY(0deg);
        transform: rotateX(-20deg) rotateY(0deg);
    }
    75% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
    100% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
}
@keyframes spinningShape {
    0% {
        -webkit-transform: rotateX(-20deg) rotateY(0deg);
        transform: rotateX(-20deg) rotateY(0deg);
    }
    75% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
    100% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
}
/*--------------------------------------------------------------
  12. Iconbox
----------------------------------------------------------------*/
.cs_iconbox.cs_style_1 {
    display: inline-block;
    padding: 60px 50px;
    border: 1px solid var(--border-color);
}
.cs_iconbox.cs_style_1 .cs_iconbox_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}
@media (max-width: 1399px) {
    .cs_iconbox.cs_style_1 .cs_iconbox_header {
        gap: 20px;
    }
}
@media (max-width: 1199px) {
    .cs_iconbox.cs_style_1 .cs_iconbox_header {
        gap: 15px;
    }
    .cs_iconbox.cs_style_1 .cs_iconbox_header .cs_fs_32 {
        font-size: 26px;
    }
}
.cs_iconbox.cs_style_1.cs_accent_border {
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    border-width: 4px;
    border-color: var(--white-color);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 991px) {
    .cs_iconbox.cs_style_1.cs_accent_border {
        width: 100%;
    }
}
.cs_iconbox.cs_style_1.cs_accent_border .cs_iconbox_icon img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
    .cs_iconbox.cs_style_1 {
        padding: 40px 20px;
    }
}
.cs_iconbox.cs_style_1 .cs_iconbox_icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
}
@media (max-width: 1199px) {
    .cs_iconbox.cs_style_1 .cs_iconbox_icon {
        width: 70px;
        height: 70px;
    }
}
.cs_iconbox.cs_style_1 .cs_iconbox_icon::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    opacity: 0.05;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
}
.cs_iconbox.cs_style_1 .cs_iconbox_icon img,
.cs_iconbox.cs_style_1 .cs_iconbox_icon svg,
.cs_iconbox.cs_style_1 .cs_iconbox_icon i {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.cs_iconbox.cs_style_1 .cs_iconbox_title {
    position: relative;
    z-index: 1;
}
.cs_iconbox.cs_style_1 .cs_iconbox_subtitle {
    position: relative;
    z-index: 1;
    opacity: 0.8;
    line-height: 1.55em;
}
.cs_iconbox.cs_style_1 .cs_iconbox_shape {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.02;
    top: 10%;
    right: 0;
}
.cs_iconbox.cs_style_1:hover .cs_iconbox_icon img {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.cs_iconbox.cs_style_1:hover.cs_accent_border {
    border-color: var(--accent-color);
}
.cs_iconbox.cs_style_1:hover.cs_accent_border .cs_iconbox_icon {
    background-color: var(--accent-color);
}
.cs_iconbox.cs_style_1:hover.cs_accent_border .cs_iconbox_icon img,
.cs_iconbox.cs_style_1:hover.cs_accent_border .cs_iconbox_icon svg {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.cs_iconbox.cs_style_1:hover.cs_accent_border .cs_iconbox_icon svg,
.cs_iconbox.cs_style_1:hover.cs_accent_border .cs_iconbox_icon i {
    color: #fff;
}

.cs_iconbox.cs_style_2 {
    border-radius: 18px;
    padding: 30px;
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    background-color: rgba(0, 0, 27, 0.08);
}
.cs_iconbox.cs_style_2::after {
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background: var(--heading-color);
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
}
.cs_iconbox.cs_style_2 .cs_iconbox_icon {
    width: 70px;
    height: 70px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border-radius: 50%;
    background-color: var(--accent-color);
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_iconbox.cs_style_2 .cs_iconbox_icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_iconbox.cs_style_2 .cs_iconbox_text {
    position: relative;
    z-index: 1;
}
.cs_iconbox.cs_style_2 .cs_iconbox_title {
    line-height: 1.42em;
    margin-bottom: 12px;
}
.cs_iconbox.cs_style_2 .cs_iconbox_title:hover a {
    color: var(--white-color);
    opacity: 0.7;
}
.cs_iconbox.cs_style_2 .cs_iconbox_subtitle {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 18px;
}
.cs_iconbox.cs_style_2 .cs_text_btn {
    color: var(--white-color);
}
.cs_iconbox.cs_style_2 .cs_text_btn:hover {
    opacity: 0.75;
}
.cs_iconbox.cs_style_2:hover .cs_iconbox_icon {
    background-color: var(--white-color);
}
.cs_iconbox.cs_style_2:hover .cs_iconbox_icon img {
    -webkit-filter: brightness(1) invert(0);
    filter: brightness(1) invert(0);
}

.cs_iconbox.cs_style_3 {
    width: 100%;
    max-width: 520px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
.cs_iconbox.cs_style_3.cs_type_1 .cs_iconbox_icon {
    border: 1px solid var(--accent-color);
}
.cs_iconbox.cs_style_3.cs_type_1 .cs_iconbox_subtitle {
    color: var(--heading-color);
    opacity: 0.7;
}
.cs_iconbox.cs_style_3 .cs_iconbox_icon {
    width: 70px;
    height: 70px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background-color: var(--white-color);
    border-radius: 50%;
}
.cs_iconbox.cs_style_3 .cs_iconbox_icon img {
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.cs_iconbox.cs_style_3 .cs_iconbox_title {
    margin-bottom: 10px;
}
.cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
    opacity: 0.75;
}
.cs_iconbox.cs_style_3:hover .cs_iconbox_icon img {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.cs_iconbox.cs_style_4 {
    height: 100%;
    padding: 30px;
}
.cs_iconbox.cs_style_4 .cs_iconbox_content {
    position: relative;
    z-index: 1;
}
.cs_iconbox.cs_style_4 .cs_iconbox_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 22px;
}
.cs_iconbox.cs_style_4 .cs_iconbox_icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-color);
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cs_iconbox.cs_style_4 .cs_iconbox_btn_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    color: var(--accent-color);
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cs_iconbox.cs_style_4 .cs_iconbox_btn_icon span {
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1),
        -webkit-transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.cs_iconbox.cs_style_4 .cs_iconbox_btn_icon span:first-child {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}
.cs_iconbox.cs_style_4 .cs_iconbox_btn_icon span:last-child {
    -webkit-transform: translateX(-32px);
    transform: translateX(-32px);
}
.cs_iconbox.cs_style_4 .cs_iconbox_btn_icon:hover span {
    color: var(--white-color);
}
.cs_iconbox.cs_style_4 .cs_iconbox_btn_icon:hover span:first-child {
    -webkit-transform: translateX(32px);
    transform: translateX(32px);
}
.cs_iconbox.cs_style_4 .cs_iconbox_btn_icon:hover span:last-child {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
}
.cs_iconbox.cs_style_4 .cs_iconbox_title {
    margin-bottom: 26px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.cs_iconbox.cs_style_4 .cs_iconbox_subtitle {
    line-height: 1.88em;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.cs_iconbox.cs_style_4::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    opacity: 0.1;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_iconbox.cs_style_4.cs_type_1::after {
    background-color: var(--gray-color);
    opacity: 0.3;
}
.cs_iconbox.cs_style_4:hover .cs_iconbox_icon {
    background-color: var(--heading-color);
    color: #fff;
    border-color: var(--heading-color);
}
.cs_iconbox.cs_style_4:hover .cs_iconbox_icon img,
.cs_iconbox.cs_style_4:hover .cs_iconbox_icon svg {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.cs_iconbox.cs_style_4:hover .cs_iconbox_btn_icon span {
    color: var(--white-color);
}
.cs_iconbox.cs_style_4:hover::after {
    opacity: 1;
}
.cs_iconbox.cs_style_4:hover.cs_type_1::after {
    background-color: var(--accent-color);
}
.cs_iconbox.cs_style_4:hover .cs_iconbox_title {
    color: var(--white-color);
}
.cs_iconbox.cs_style_4:hover .cs_iconbox_subtitle {
    color: var(--white-color);
}

.cs_iconbox.cs_style_5 {
    max-width: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}
.cs_iconbox.cs_style_5 .cs_iconbox_icon {
    width: 60px;
    height: 60px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    position: relative;
}
.cs_iconbox.cs_style_5 .cs_iconbox_icon::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    left: 0;
    top: 0;
}
.cs_iconbox.cs_style_5 .cs_iconbox_icon img {
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.cs_iconbox.cs_style_5 .cs_iconbox_title {
    line-height: 1.42em;
    margin-bottom: 5px;
}
.cs_iconbox.cs_style_5 .cs_iconbox_subtitle {
    opacity: 0.7;
}
.cs_iconbox.cs_style_5:hover .cs_iconbox_icon img {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.cs_iconbox.cs_style_6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 991px) {
    .cs_iconbox.cs_style_6 {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
.cs_iconbox.cs_style_6 .cs_iconbox_icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.cs_iconbox.cs_style_6::after {
    content: '';
    width: 1px;
    height: 100%;
    background-color: var(--gray-color);
    position: absolute;
    top: 50%;
    right: -15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 575px) {
    .cs_iconbox.cs_style_6::after {
        display: none;
    }
}
.cs_iconbox.cs_style_6:last-child::after {
    display: none;
}
.cs_iconbox.cs_style_6:nth-child(2)::after {
    display: none;
}

.cs_iconbox.cs_style_7 {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    border: 1px solid rgba(168, 24, 116, 0.15);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_iconbox.cs_style_7 .cs_iconbox_title {
    line-height: 1.41em;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_iconbox.cs_style_7 .cs_iconbox_icon {
    width: 80px;
    height: 80px;
    background-color: var(--gray-color);
    color: var(--heading-color);
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_iconbox.cs_style_7 .cs_iconbox_icon img {
    -webkit-filter: brightness(10) invert(1);
    filter: brightness(10) invert(1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_iconbox.cs_style_7 .cs_iconbox_subtitle {
    margin-bottom: 30px;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_iconbox.cs_style_7 .cs_iconbox_btn {
    padding: 12px 30px;
    border: 1px solid var(--accent-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_iconbox.cs_style_7:hover {
    background-color: var(--accent-color);
}
.cs_iconbox.cs_style_7:hover .cs_iconbox_icon img {
    -webkit-filter: brightness(1) invert(0);
    filter: brightness(1) invert(0);
}
.cs_iconbox.cs_style_7:hover .cs_iconbox_title a,
.cs_iconbox.cs_style_7:hover .cs_iconbox_subtitle,
.cs_iconbox.cs_style_7:hover .cs_iconbox_btn {
    color: var(--white-color);
}
.cs_iconbox.cs_style_7:hover .cs_iconbox_btn {
    border-color: var(--white-color);
}

.cs_iconbox.cs_style_8 {
    padding: 40px;
    height: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 575px) {
    .cs_iconbox.cs_style_8 {
        padding: 35px 24px 30px 24px;
    }
}
@media (max-width: 991px) {
    .cs_iconbox.cs_style_8 {
        -webkit-transform: translateY(0px) !important;
        transform: translateY(0px) !important;
    }
}
.cs_iconbox.cs_style_8 .cs_iconbox_subtitle,
.cs_iconbox.cs_style_8 .cs_text_btn {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_iconbox.cs_style_8:nth-child(2) {
    /* -webkit-transform: translateY(-50px); */
    /* transform: translateY(-50px); */
}
.cs_iconbox.cs_style_8:nth-child(5) {
    /* -webkit-transform: translateY(-50px); */
    /* transform: translateY(-50px); */
}
.cs_iconbox.cs_style_8:nth-child(8) {
    /* -webkit-transform: translateY(-50px); */
    /* transform: translateY(-50px); */
}
.cs_iconbox.cs_style_8:nth-child(11) {
    /* -webkit-transform: translateY(-50px); */
    /* transform: translateY(-50px); */
}
.cs_iconbox.cs_style_8.cs_type_1 {
    padding: 0 40px 50px;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
}
.cs_iconbox.cs_style_8.cs_type_1 .cs_iconbox_icon {
    width: 100px;
    height: 120px;
    padding: 20px 28px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border-radius: 0px 0px 50px 50px;
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    margin: 0 auto 30px;
}
.cs_iconbox.cs_style_8.cs_type_1 .cs_iconbox_icon::after {
    display: none;
}
.cs_iconbox.cs_style_8.cs_type_1 .cs_iconbox_subtitle {
    opacity: 0.7;
    margin-bottom: 30px;
}
.cs_iconbox.cs_style_8 .cs_iconbox_icon {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .cs_iconbox.cs_style_8 .cs_iconbox_icon {
        margin-bottom: 20px;
    }
}
.cs_iconbox.cs_style_8 .cs_iconbox_icon::after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: var(--gray-color);
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
}
.cs_iconbox.cs_style_8 .cs_iconbox_icon img {
    position: relative;
    z-index: 1;
    width: 50px;
}
.cs_iconbox.cs_style_8 .cs_iconbox_title a {
    background-repeat: no-repeat;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0, currentColor),
        to(currentColor)
    );
    background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
    -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
        color 0.27s ease-out;
    transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
        color 0.27s ease-out;
    background-position: 100% calc(100% - 0px);
    background-size: 0 1px;
}
.cs_iconbox.cs_style_8 .cs_iconbox_title a:hover {
    color: var(--white-color);
    opacity: 1;
    background-size: 100% 1px;
    background-position: 0 calc(100% - 0px);
}
@media (max-width: 991px) {
    .cs_iconbox.cs_style_8 .cs_iconbox_title {
        margin-bottom: 10px;
    }
}
.cs_iconbox.cs_style_8 .cs_iconbox_subtitle {
    margin-bottom: 45px;
}
@media (max-width: 991px) {
    .cs_iconbox.cs_style_8 .cs_iconbox_subtitle {
        margin-bottom: 20px;
    }
}
.cs_iconbox.cs_style_8:hover {
    background-color: var(--accent-color);
}
.cs_iconbox.cs_style_8:hover .cs_iconbox_title a,
.cs_iconbox.cs_style_8:hover .cs_iconbox_subtitle,
.cs_iconbox.cs_style_8:hover .cs_text_btn {
    color: #fff;
}
.cs_iconbox.cs_style_8:hover .cs_iconbox_subtitle {
    opacity: 0.7;
}
.cs_iconbox.cs_style_8:hover .cs_iconbox_icon::after {
    opacity: 1;
    background-color: #fff;
}

.cs_iconbox.cs_style_9 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
.cs_iconbox.cs_style_9:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-color);
}
.cs_iconbox.cs_style_9 .cs_iconbox_icon {
    width: 65px;
    height: 65px;
    border: 1px solid var(--gray-color);
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 2.25);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 2.25);
}
.cs_iconbox.cs_style_9 .cs_iconbox_title {
    line-height: 1.41em;
    margin-bottom: 14px;
}
.cs_iconbox.cs_style_9 .cs_iconbox_subtitle {
    opacity: 0.8;
}
.cs_iconbox.cs_style_9 hr {
    border-color: var(--gray-color);
    margin-top: 30px;
}
.cs_iconbox.cs_style_9:hover .cs_iconbox_icon {
    border-radius: 10px;
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

.cs_iconbox.cs_style_10 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.cs_iconbox.cs_style_10 .cs_iconbox_icon {
    width: 60px;
    height: 60px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.cs_iconbox.cs_style_10 .cs_iconbox_title {
    margin-bottom: 2px;
    line-height: 1.02em;
}
@media (max-width: 991px) {
    .cs_iconbox.cs_style_10 .cs_iconbox_title {
        font-size: 56px;
    }
}

.cs_iconbox.cs_style_11 {
    position: relative;
    z-index: 1;
}
.cs_iconbox.cs_style_11 .cs_iconbox_icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin-bottom: 16px;
}
.cs_iconbox.cs_style_11 .cs_iconbox_text {
    display: block;
}

.cs_iconbox_grid.cs_type_3 {
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-gap: 30px;
}
@media (max-width: 991px) {
    .cs_iconbox_grid.cs_type_3 {
        max-width: 590px;
        grid-template-columns: repeat(2, auto);
    }
}
@media (max-width: 575px) {
    .cs_iconbox_grid.cs_type_3 {
        grid-template-columns: repeat(1, auto);
        grid-gap: 25px;
    }
}

.cs_iconbox_wrapper.cs_style_2 {
    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;
}

/*--------------------------------------------------------------
  13. Posts
----------------------------------------------------------------*/
.cs_post.cs_style_1.cs_type_1 {
    padding: 30px;
    position: relative;
}
.cs_post.cs_style_1.cs_type_1::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--gray-color);
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
}
.cs_post.cs_style_1.cs_type_1 .cs_post_thumbnail,
.cs_post.cs_style_1.cs_type_1 .cs_post_info {
    position: relative;
    z-index: 1;
}
.cs_post.cs_style_1.cs_type_1 .cs_post_thumbnail {
    margin-bottom: 24px;
}
.cs_post.cs_style_1.cs_type_1 .cs_post_meta {
    margin-bottom: 10px;
}
.cs_post.cs_style_1.cs_type_1 .cs_post_title {
    line-height: 1.41em;
    margin-bottom: 24px;
}
.cs_post.cs_style_1.cs_type_2 .cs_post_info {
    padding: 20px 40px 37px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_post.cs_style_1.cs_type_2 .cs_post_meta_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
    line-height: 1.88em;
    color: var(--heading-color);
}
.cs_post.cs_style_1.cs_type_2 .cs_post_meta_icon {
    margin-right: 5px;
}
.cs_post.cs_style_1.cs_type_2 hr {
    margin-bottom: 20px;
    border-color: var(--gray-color);
}
.cs_post.cs_style_1.cs_type_2 .cs_post_title {
    line-height: 1.25em;
}
.cs_post.cs_style_1.cs_type_2:hover .cs_post_info {
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
}
.cs_post.cs_style_1 .cs_post_thumbnail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    overflow: hidden;
}
.cs_post.cs_style_1 .cs_post_thumbnail img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.cs_post.cs_style_1 .cs_post_thumbnail:hover img {
    -webkit-transform: scale(1.06) translate(5px, 10px);
    transform: scale(1.06) translate(5px, 10px);
}
.cs_post.cs_style_1 .cs_post_meta {
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .cs_post.cs_style_1 .cs_post_meta {
        margin-bottom: 10px;
    }
}
.cs_post.cs_style_1 .cs_post_title {
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .cs_post.cs_style_1 .cs_post_title {
        margin-bottom: 15px;
    }
}
.cs_post.cs_style_1 .cs_text_btn {
    line-height: 2em;
    gap: 10px;
}
.cs_post.cs_style_1 .cs_has_underline {
    text-decoration: underline;
}

.cs_post.cs_style_2 {
    padding: 30px;
    height: 100%;
}
.cs_post.cs_style_2::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--gray-color);
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
}
.cs_post.cs_style_2 .cs_post_thumbnail,
.cs_post.cs_style_2 .cs_post_info {
    position: relative;
    z-index: 1;
}
.cs_post.cs_style_2 .cs_post_meta {
    margin-bottom: 10px;
}
.cs_post.cs_style_2.cs_type_2 {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.cs_post.cs_style_3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
.cs_post.cs_style_3:not(:last-child) {
    margin-bottom: 28px;
}
.cs_post.cs_style_3 .cs_post_thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 96px;
    height: 92px;
    overflow: hidden;
}
.cs_post.cs_style_3 img {
    border-radius: inherit;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_post.cs_style_3 .cs_post_title {
    line-height: 1.55em;
    margin-bottom: 7px;
}
.cs_post.cs_style_3:hover img {
    -webkit-transform: scale(1.06) translateY(3px);
    transform: scale(1.06) translateY(3px);
}

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

/*-------------------------------------------
 Blog Details Page Styling
----------------------------------------------*/
.cs_post_details.cs_style_1 .cs_post_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 28px;
    margin-bottom: 20px;
}
.cs_post_details.cs_style_1 .cs_post_meta li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.cs_post_details.cs_style_1 img {
    width: 100%;
    border-radius: inherit;
    margin-bottom: 40px;
}
.cs_post_details.cs_style_1 p {
    line-height: 1.87em;
    margin-bottom: 40px;
}
.cs_post_details.cs_style_1 blockquote {
    padding: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    letter-spacing: -0.4px;
    margin-bottom: 40px;
    background-color: var(--accent-color);
    border-radius: 10px;
    font-size: 20px;
    color: var(--white-color);
    font-style: normal;
}
.cs_post_details.cs_style_1 blockquote img {
    -webkit-box-flex: content;
    -ms-flex: content;
    flex: content;
    margin-bottom: 0;
}

.cs_tag_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cs_tag_list.cs_type_1 {
    gap: 8px;
}
.cs_tag_list .cs_tag_link {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 8px 16px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_tag_list .cs_tag_link:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.cs_btn_group.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0 24px;
    border-bottom: 1px solid var(--gray-color);
}
.cs_btn_group.cs_style_1 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}

.cs_comment_body {
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}
@media (max-width: 575px) {
    .cs_comment_body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}
.cs_comment_body:nth-child(even) {
    padding-left: 115px;
}
@media (max-width: 991px) {
    .cs_comment_body:nth-child(even) {
        padding-left: 0;
    }
}
.cs_comment_body h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.78em;
    margin-bottom: 6px;
}
.cs_comment_body p {
    margin-bottom: 8px;
    line-height: 2.1em;
}
.cs_comment_body .cs_comment_thumbnail {
    width: 90px;
    height: 90px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    overflow: hidden;
}
.cs_comment_body .cs_comment_thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}
.cs_comment_body .cs_reply_btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
}

.cs_reply_heading {
    margin-bottom: 28px;
}

.cs_reply_form .cs_form_field {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 16px;
    color: var(--body-color);
}
.cs_reply_form .cs_form_field::-webkit-input-placeholder {
    font-size: 16px;
    color: var(--body-color);
}
.cs_reply_form .cs_form_field::-moz-placeholder {
    font-size: 16px;
    color: var(--body-color);
}
.cs_reply_form .cs_form_field:-ms-input-placeholder {
    font-size: 16px;
    color: var(--body-color);
}
.cs_reply_form .cs_form_field::-ms-input-placeholder {
    font-size: 16px;
    color: var(--body-color);
}
.cs_reply_form .cs_form_field::placeholder {
    font-size: 16px;
    color: var(--body-color);
}
.cs_reply_form .form-check-input {
    border-width: 2px;
    border-color: var(--heading-color);
    border-radius: 0;
}

/*--------------------------------------------------------------
  14. CTA
----------------------------------------------------------------*/
.cs_cta.cs_style_1 {
    padding: 60px 0 65px;
    background-color: var(--white-color);
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    position: relative;
    z-index: 10;
    margin-top: -140px;
}
@media (max-width: 1399px) {
    .cs_cta.cs_style_1 {
        margin-top: -120px;
    }
}
@media (max-width: 1199px) {
    .cs_cta.cs_style_1 {
        margin-top: -180px;
    }
}
@media (max-width: 575px) {
    .cs_cta.cs_style_1 {
        margin-top: -120px;
    }
}
@media (max-width: 767px) {
    .cs_cta.cs_style_1 {
        padding: 40px 0;
    }
}
.cs_cta.cs_style_1 .cs_cta_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 767px) {
    .cs_cta.cs_style_1 .cs_cta_in {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        gap: 24px;
    }
}
.cs_cta.cs_style_1 .cs_cta_info {
    max-width: 520px;
    padding-left: 22px;
    position: relative;
}
.cs_cta.cs_style_1 .cs_cta_info::before {
    content: '';
    width: 6px;
    height: 100%;
    border-radius: 3px;
    background-color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cs_cta.cs_style_1 .cs_cta_title {
    font-size: 24px;
    margin-bottom: 10px;
}
.cs_cta.cs_style_1 .cs_color_3:hover {
    background-color: var(--blue-color);
}

.cs_cta.cs_style_2 {
    padding: 160px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 991px) {
    .cs_cta.cs_style_2 {
        padding: 80px 0;
    }
}
.cs_cta.cs_style_2 .cs_cta_content {
    width: 100%;
    max-width: 730px;
    padding: 80px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .cs_cta.cs_style_2 .cs_cta_content {
        padding: 60px 40px;
    }
}
@media (max-width: 575px) {
    .cs_cta.cs_style_2 .cs_cta_content {
        padding: 60px 20px;
    }
}
.cs_cta.cs_style_2 .cs_cta_content .cs_list.cs_style_1 {
    gap: 12px;
    margin-bottom: 40px;
}
.cs_cta.cs_style_2 .cs_cta_content .cs_list.cs_style_1 li {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    font-weight: 500;
    line-height: 1.55em;
}
.cs_cta.cs_style_2 .cs_cta_shape_1 {
    left: 1%;
    bottom: 1%;
}
.cs_cta.cs_style_2 .cs_cta_shape_1 img,
.cs_cta.cs_style_2 .cs_cta_shape_1 svg {
    -webkit-animation: circular-rotation 10s linear infinite;
    animation: circular-rotation 10s linear infinite;
}

.cs_cta.cs_style_3 .cs_cta_content {
    max-width: 1070px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.cs_cta.cs_style_3 .cs_player_btn.cs_style_1 {
    width: 100px;
    height: 100px;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    margin-bottom: 50px;
    position: relative;
}
@media (max-width: 575px) {
    .cs_cta.cs_style_3 .cs_player_btn.cs_style_1 {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        margin-bottom: 40px;
    }
}
.cs_cta.cs_style_3 .cs_player_btn.cs_style_1::before,
.cs_cta.cs_style_3 .cs_player_btn.cs_style_1::after {
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid currentColor;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: scale-border 4s linear infinite;
    animation: scale-border 4s linear infinite;
}
.cs_cta.cs_style_3 .cs_player_btn.cs_style_1::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.cs_cta.cs_style_3 .cs_player_btn.cs_style_1 span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 22px solid currentColor;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}
.cs_cta.cs_style_3 .cs_cta_subtitle {
    letter-spacing: 4px;
    line-height: 1.55em;
    margin-bottom: 10px;
}
.cs_cta.cs_style_3 .cs_cta_title {
    line-height: 1.25em;
    margin-bottom: 60px;
}
@media (max-width: 991px) {
    .cs_cta.cs_style_3 .cs_cta_title {
        margin-bottom: 40px;
    }
}
.cs_cta.cs_style_3 .cs_cta_btns_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 27px;
}

@-webkit-keyframes scale-border {
    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes scale-border {
    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}
/*--------------------------------------------------------------
  15. Testimonial
----------------------------------------------------------------*/
.cs_testimonial_left {
    padding-right: 60px;
    position: relative;
}
@media (max-width: 1199px) {
    .cs_testimonial_left {
        padding-right: 20px;
    }
}
@media (max-width: 991px) {
    .cs_testimonial_left {
        padding-right: 0;
    }
}
.cs_testimonial_left .cs_testimonial_thumbnail {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    padding: 0 0 40px 40px;
}
@media (max-width: 991px) {
    .cs_testimonial_left .cs_testimonial_thumbnail {
        padding: 0 0 20px 20px;
    }
}
.cs_testimonial_left .cs_testimonial_thumbnail.cs_type_1 {
    border-radius: 80% 100% 100% 100%;
}
.cs_testimonial_left .cs_testimonial_thumbnail img {
    width: 100%;
    border-radius: inherit;
    position: relative;
    z-index: 1;
}
.cs_testimonial_left .cs_testimonial_thumbnail::after {
    content: '';
    width: calc(100% - 80px);
    height: calc(100% - 65px);
    background-color: var(--accent-color);
    border-radius: inherit;
    position: absolute;
    left: 0;
    bottom: 0;
}

.cs_testimonial.cs_style_1 .cs_quote_icon {
    margin-bottom: 30px;
}
.cs_testimonial.cs_style_1 .cs_testimonial_subtitle {
    font-style: italic;
    font-family: var(--heading-font);
    color: var(--heading-color);
    line-height: 1.37em;
    margin-bottom: 28px;
    letter-spacing: 1px;
}
.cs_testimonial.cs_style_1 .cs_rating_container {
    margin-bottom: 10px;
}
.cs_testimonial.cs_style_1 .cs_avatar_title {
    color: var(--accent-color);
    line-height: 1.42em;
    margin-bottom: 8px;
}
.cs_testimonial.cs_style_1 .cs_avatar_subtitle {
    color: var(--accent-color);
    opacity: 0.7;
}

.cs_testimonial.cs_style_2 {
    position: relative;
}
.cs_testimonial.cs_style_2 .container {
    position: relative;
    z-index: 2;
}
.cs_testimonial.cs_style_2 .cs_testimonial_left {
    padding-right: 0;
}
.cs_testimonial.cs_style_2 .cs_testimonial_right {
    padding-left: 60px;
}
@media (max-width: 1199px) {
    .cs_testimonial.cs_style_2 .cs_testimonial_right {
        padding-left: 20px;
    }
}
@media (max-width: 991px) {
    .cs_testimonial.cs_style_2 .cs_testimonial_right {
        padding-left: 0px;
    }
}
.cs_testimonial.cs_style_2 .cs_rating_container {
    margin-top: 38px;
}
.cs_testimonial.cs_style_2 .cs_rating_title {
    margin-top: 35px;
}
.cs_testimonial.cs_style_2 .cs_client_commentbox {
    padding: 40px 30px 24px 30px;
    position: relative;
    z-index: 100;
}
.cs_testimonial.cs_style_2 .cs_client_commentbox blockquote {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.38em;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.cs_testimonial.cs_style_2 .cs_client_commentbox .cs_client_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    position: relative;
    z-index: 1;
    padding-left: 15px;
}
.cs_testimonial.cs_style_2 .cs_client_commentbox .cs_client_title::after {
    content: '';
    width: 10px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 5px;
}
.cs_testimonial.cs_style_2 .cs_client_commentbox hr {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    border-color: var(--heading-color);
}
.cs_testimonial.cs_style_2 .cs_client_commentbox .cs_quote_icon {
    position: absolute;
    left: 11px;
    top: 26px;
}
.cs_testimonial.cs_style_2 .cs_client_commentbox.cs_type_1 {
    background: var(--accent-color);
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    color: var(--white-color);
}
.cs_testimonial.cs_style_2 .cs_client_commentbox.cs_type_1 hr {
    border-color: var(--white-color);
}
.cs_testimonial.cs_style_2
    .cs_client_commentbox.cs_type_1
    .cs_client_title::after {
    background-color: var(--white-color);
}
.cs_testimonial.cs_style_2 .cs_client_commentbox.cs_type_2,
.cs_testimonial.cs_style_2 .cs_client_commentbox.cs_type_3 {
    color: var(--heading-color);
}
.cs_testimonial.cs_style_2
    .cs_client_commentbox.cs_type_2
    .cs_client_title::after,
.cs_testimonial.cs_style_2
    .cs_client_commentbox.cs_type_3
    .cs_client_title::after {
    background-color: var(--heading-color);
}
.cs_testimonial.cs_style_2 .cs_client_commentbox.cs_type_2::after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--gray-color);
    opacity: 0.6;
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    position: absolute;
    left: 0;
    bottom: 5px;
}
.cs_testimonial.cs_style_2 .cs_client_commentbox.cs_type_3 {
    background: var(--white-color);
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
}
.cs_testimonial.cs_style_2 .cs_testimonial_shape_1 {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    left: 30%;
    bottom: 20%;
    -webkit-animation: move-xy 10s linear infinite;
    animation: move-xy 10s linear infinite;
}
@media (max-width: 991px) {
    .cs_testimonial.cs_style_2 .cs_testimonial_shape_1 {
        display: none;
    }
}

.cs_testimonial.cs_style_3 {
    padding: 40px 40px 55px;
    border: 1px solid var(--gray-color);
    position: relative;
}
@media (max-width: 575px) {
    .cs_testimonial.cs_style_3 {
        padding: 30px 20px 40px;
    }
}
.cs_testimonial.cs_style_3::after {
    content: '';
    width: 40%;
    height: 6px;
    background-color: var(--accent-color);
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.cs_testimonial.cs_style_3 .cs_quote_icon {
    top: 42px;
    right: 32px;
}
.cs_testimonial.cs_style_3 .cs_avatar.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}
.cs_testimonial.cs_style_3 .cs_avatar_icon {
    width: 75px;
    height: 75px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border: 1px solid var(--accent-color);
}
.cs_testimonial.cs_style_3 .cs_avatar_icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}
.cs_testimonial.cs_style_3 .cs_avatar_subtitle {
    opacity: 0.8;
}
.cs_testimonial.cs_style_3 .cs_avatar_title {
    margin-bottom: 6px;
}
.cs_testimonial.cs_style_3 .cs_testimonial_subtitle {
    font-style: italic;
    line-height: 1.41em;
    margin-bottom: 30px;
}

.cs_testimonial.cs_style_4 {
    max-width: 1100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}
.cs_testimonial.cs_style_4 .cs_rating_container {
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .cs_testimonial.cs_style_4 .cs_rating_container {
        margin-bottom: 25px;
    }
}
.cs_testimonial.cs_style_4 .cs_quote_icon {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.cs_testimonial.cs_style_4 .cs_testimonial_subtitle {
    margin-bottom: 46px;
}
@media (max-width: 991px) {
    .cs_testimonial.cs_style_4 .cs_testimonial_subtitle {
        margin-bottom: 30px;
    }
}
.cs_testimonial.cs_style_4 .cs_avatar.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

@-webkit-keyframes move-xy {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0);
        transform: translate(0px, 0px) rotate(0);
    }
    50% {
        -webkit-transform: translate(80px, -30px) rotate(-20deg);
        transform: translate(80px, -30px) rotate(-20deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes move-xy {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0);
        transform: translate(0px, 0px) rotate(0);
    }
    50% {
        -webkit-transform: translate(80px, -30px) rotate(-20deg);
        transform: translate(80px, -30px) rotate(-20deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}
/*--------------------------------------------------------------
  16. Counter
----------------------------------------------------------------*/
.odometer-inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

.cs_counter_2_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 50px;
}
@media (max-width: 1199px) {
    .cs_counter_2_wrapper {
        padding-right: 20px;
    }
}
@media (max-width: 991px) {
    .cs_counter_2_wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
@media (max-width: 767px) {
    .cs_counter_2_wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }
}

.cs_counter_3_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    padding-left: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (min-width: 1700px) {
    .cs_counter_3_wrapper {
        padding-left: 60px;
    }
}
@media (max-width: 1600px) {
    .cs_counter_3_wrapper {
        position: initial;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        grid-template-columns: repeat(4, 1fr);
        margin-top: 50px;
        padding: 0;
    }
}
@media (max-width: 767px) {
    .cs_counter_3_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 450px) {
    .cs_counter_3_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cs_counter.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.cs_counter.cs_style_1:first-child::after {
    content: '';
    width: 1px;
    height: 100%;
    background-color: var(--accent-color);
    position: absolute;
    top: 0;
    right: -40px;
    opacity: 0.7;
}
@media (max-width: 575px) {
    .cs_counter.cs_style_1:first-child::after {
        display: none;
    }
}
.cs_counter.cs_style_1 .cs_counter_number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cs_counter.cs_style_2 {
    position: relative;
}
.cs_counter.cs_style_2 .cs_counter_number {
    font-size: 96px;
    line-height: 1em;
    color: var(--white-color);
    opacity: 0.15;
}
.cs_counter.cs_style_2 p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
  17. Casestudie
----------------------------------------------------------------*/
.cs_casestudy.cs_style_1::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--gray-color);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
}
.cs_casestudy.cs_style_1 .cs_slider.cs_style_1 {
    position: relative;
    z-index: 1;
}

/* asestudies And Department Details */
.cs_casestudy_details img {
    margin-bottom: 50px;
    border-radius: inherit;
}
@media (max-width: 991px) {
    .cs_casestudy_details img {
        margin-bottom: 40px;
    }
}
.cs_casestudy_details h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.42em;
    color: var(--accent-color);
    margin-bottom: 16px;
}
.cs_casestudy_details p {
    color: var(--heading-color);
    line-height: 1.88em;
    margin-bottom: 30px;
}
.cs_casestudy_details p:last-child {
    margin-bottom: 0;
}
.cs_casestudy_details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.78em;
    margin-bottom: 60px;
}
@media (max-width: 991px) {
    .cs_casestudy_details ul {
        margin-bottom: 40px;
    }
}
.cs_casestudy_details ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}
.cs_casestudy_details ul i {
    margin-top: 8px;
}

.cs_department_details img {
    margin-bottom: 40px;
}
.cs_department_details p {
    margin-bottom: 30px;
}
.cs_department_details p:last-child {
    margin-bottom: 0;
}
.cs_department_details blockquote {
    font-style: normal;
    line-height: 1.5em;
}

/*--------------------------------------------------------------
  18. Team
----------------------------------------------------------------*/
.cs_team.cs_style_1 {
    max-width: 320px;
    margin: 0 auto;
    position: relative;
}
@media (max-width: 375px) {
    .cs_team.cs_style_1 {
        max-width: 300px;
    }
}
.cs_team.cs_style_1.cs_type_1 .cs_team_thumbnail {
    border-radius: 0;
}
.cs_team.cs_style_1.cs_type_1 .cs_team_bio {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -moz-text-align-last: left;
    text-align-last: left;
}
.cs_team.cs_style_1.cs_type_2 .cs_team_thumbnail {
    border-radius: 0;
}
.cs_team.cs_style_1.cs_type_2 .cs_team_bio {
    border-radius: 0;
}
.cs_team.cs_style_1.cs_type_3 {
    max-width: 410px;
}
@media (max-width: 450px) {
    .cs_team.cs_style_1.cs_type_3 {
        max-width: 350px;
    }
}
@media (max-width: 360px) {
    .cs_team.cs_style_1.cs_type_3 {
        max-width: 320px;
    }
}
@media (max-width: 350px) {
    .cs_team.cs_style_1.cs_type_3 {
        max-width: 300px;
    }
}
.cs_team.cs_style_1.cs_type_3 .cs_team_thumbnail {
    border-radius: 0;
}
.cs_team.cs_style_1.cs_type_3 .cs_team_bio {
    border-radius: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
}
.cs_team.cs_style_1.cs_type_3 .cs_team_title a {
    color: var(--white-color);
}
.cs_team.cs_style_1.cs_type_3 .cs_team_title a:hover {
    letter-spacing: 0.2px;
}
.cs_team.cs_style_1.cs_type_3 .cs_social_btns.cs_style_3 {
    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: 10px;
    margin-bottom: 10px;
    padding: 17px 0;
    margin-top: -80px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_team.cs_style_1.cs_type_3 .cs_social_btns.cs_style_3 a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_team.cs_style_1.cs_type_3 .cs_social_btns.cs_style_3 a:hover {
    background-color: var(--white-color);
    color: var(--accent-color);
}
.cs_team.cs_style_1 .cs_team_thumbnail {
    position: relative;
    border-radius: 8px 8px 0 0;
}
.cs_team.cs_style_1 .cs_team_thumbnail img {
    border-radius: inherit;
}
.cs_team.cs_style_1 .cs_team_bio {
    width: 100%;
    padding: 17px 20px;
    border-radius: 0px 0px 8px 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_team.cs_style_1 .cs_team_bio.cs_has_border {
    border: 1px solid var(--gray-color);
    border-radius: 0;
    border-top: 0;
}
.cs_team.cs_style_1 .cs_team_title {
    margin-bottom: 2px;
}
.cs_team.cs_style_1 .cs_team_subtitle {
    letter-spacing: 0.64px;
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_1 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    top: 30px;
    left: 30px;
    z-index: 5;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a {
    width: 30px;
    height: 30px;
    background-color: var(--white-color);
    font-size: 16px;
    color: var(--heading-color);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a:first-child {
    background-color: var(--accent-color);
    color: var(--white-color);
    visibility: visible;
    opacity: 1;
    pointer-events: none;
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 15px;
    padding: 8px 12px;
    background-color: var(--accent-color);
    top: 20px;
    right: 20px;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_2 a {
    font-size: 16px;
    display: inline-block;
    color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_team.cs_style_1 .cs_social_btns.cs_style_2 a:hover {
    opacity: 0.8;
}
.cs_team.cs_style_1:hover .cs_team_bio {
    -webkit-box-shadow: 0px 12px 40px 4px rgba(10, 22, 94, 0.08);
    box-shadow: 0px 12px 40px 4px rgba(10, 22, 94, 0.08);
}
.cs_team.cs_style_1:hover.cs_type_3 .cs_team_bio {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cs_team.cs_style_1:hover .cs_social_btns.cs_style_1 {
    gap: 10px;
}
.cs_team.cs_style_1:hover .cs_social_btns.cs_style_1 a {
    visibility: visible;
    opacity: 1;
}
.cs_team.cs_style_1:hover .cs_social_btns.cs_style_2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.cs_team.cs_style_1:hover .cs_social_btns.cs_style_3 {
    margin-top: 0;
}

/*--------------------------------------------------------------
 Team Details 
----------------------------------------------------------------*/
.cs_team_details .cs_social_btns.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}
.cs_team_details .cs_social_btns.cs_style_1 a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-color);
    color: var(--heading-color);
}
.cs_team_details .cs_social_btns.cs_style_1 a:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}
.cs_team_details b {
    font-size: 24px;
    color: var(--heading-color);
    font-weight: 700;
}
@media (max-width: 1400px) {
    .cs_team_details b {
        font-size: 22px;
    }
}
@media (max-width: 991px) {
    .cs_team_details b {
        font-size: 18px;
    }
}
.cs_team_details .cs_team_degree {
    margin-bottom: 36px;
}
.cs_team_details .cs_team_status {
    margin-bottom: 25px;
}
.cs_team_details .cs_team_contact_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.cs_team_details .cs_team_info {
    line-height: 1.67em;
}
.cs_team_details .cs_contact_heading {
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .cs_team_details > .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}
.cs_team_details .cs_team_thumbnail {
    padding-left: 60px;
}
@media (max-width: 1199px) {
    .cs_team_details .cs_team_thumbnail {
        padding-left: 0;
    }
}
.cs_team_details .cs_team_thumbnail img {
    width: 100%;
}

/*--------------------------------------------------------------
  19. Pricing
----------------------------------------------------------------*/
.cs_pricing_section {
    position: relative;
}
.cs_pricing_section::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--gray2-color);
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
}
.cs_pricing_section.cs_hide_after::after {
    display: none;
}

.cs_pricing_table.cs_style_1 {
    background: var(--white-color);
    -webkit-box-shadow: 0px 0px 20px 5px rgba(216, 216, 216, 0.4);
    box-shadow: 0px 0px 20px 5px rgba(216, 216, 216, 0.4);
    padding: 40px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
    .cs_pricing_table.cs_style_1 {
        padding: 40px 20px;
    }
}
.cs_pricing_table.cs_style_1::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_pricing_table.cs_style_1.cs_type_1 {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cs_pricing_table.cs_style_1.cs_type_1::after {
    background: var(--heading-color);
    opacity: 0.8;
}
.cs_pricing_table.cs_style_1.cs_type_1 .cs_pricing_feature_list li,
.cs_pricing_table.cs_style_1.cs_type_1 .cs_pricing_icon,
.cs_pricing_table.cs_style_1.cs_type_1 .cs_pricing_head_title,
.cs_pricing_table.cs_style_1.cs_type_1 .cs_price_value,
.cs_pricing_table.cs_style_1.cs_type_1 .cs_pricing_feature_list,
.cs_pricing_table.cs_style_1.cs_type_1 .cs_pricing_feature_title,
.cs_pricing_table.cs_style_1.cs_type_1 .cs_pricing_btn {
    color: var(--white-color);
}
.cs_pricing_table.cs_style_1.cs_type_1 .cs_pricing_icon {
    background-color: var(--white-color);
    color: var(--accent-color);
}
.cs_pricing_table.cs_style_1.cs_type_1 .cs_pricing_btn {
    border-color: var(--white-color);
    background-color: transparent;
}
.cs_pricing_table.cs_style_1.cs_type_2 {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cs_pricing_table.cs_style_1.cs_type_2::after {
    background-color: var(--accent-color);
    opacity: 0.9;
}
.cs_pricing_table.cs_style_1.cs_type_2 .cs_pricing_feature_list li,
.cs_pricing_table.cs_style_1.cs_type_2 .cs_pricing_icon,
.cs_pricing_table.cs_style_1.cs_type_2 .cs_pricing_head_title,
.cs_pricing_table.cs_style_1.cs_type_2 .cs_price_value,
.cs_pricing_table.cs_style_1.cs_type_2 .cs_pricing_feature_list,
.cs_pricing_table.cs_style_1.cs_type_2 .cs_pricing_feature_title,
.cs_pricing_table.cs_style_1.cs_type_2 .cs_pricing_btn {
    color: var(--white-color);
}
.cs_pricing_table.cs_style_1.cs_type_2 .cs_pricing_icon {
    color: var(--accent-color);
}
.cs_pricing_table.cs_style_1.cs_type_2 .cs_pricing_btn {
    border-color: var(--accent-color);
    color: var(--accent-color);
}
.cs_pricing_table.cs_style_1.cs_type_3 {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cs_pricing_table.cs_style_1.cs_type_4 {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cs_pricing_table.cs_style_1.cs_type_4 .cs_pricing_btn {
    background-color: transparent;
}
.cs_pricing_table.cs_style_1.cs_type_4::after {
    background-color: var(--gray2-color);
    opacity: 0.3;
    border-radius: inherit;
}
.cs_pricing_table.cs_style_1 .cs_pricing_feature_list li,
.cs_pricing_table.cs_style_1 .cs_pricing_icon,
.cs_pricing_table.cs_style_1 .cs_pricing_head_title,
.cs_pricing_table.cs_style_1 .cs_price_value,
.cs_pricing_table.cs_style_1 .cs_pricing_feature_list,
.cs_pricing_table.cs_style_1 .cs_pricing_feature_title,
.cs_pricing_table.cs_style_1 .cs_pricing_btn {
    position: relative;
    z-index: 2;
}
.cs_pricing_table.cs_style_1 .cs_pricing_headedr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}
.cs_pricing_table.cs_style_1 .cs_pricing_head_title {
    line-height: 1.42em;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_pricing_table.cs_style_1 .cs_pricing_head_subtitle {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_pricing_table.cs_style_1 .cs_price_value {
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_pricing_table.cs_style_1 .cs_price_value sup {
    font-size: 16px;
    position: absolute;
    top: 12px;
    left: 5px;
}
.cs_pricing_table.cs_style_1 .cs_price_value sub {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6em;
    margin-left: 15px;
}
.cs_pricing_table.cs_style_1 .cs_pricing_feature_title {
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_pricing_table.cs_style_1 .cs_pricing_feature_list {
    padding-bottom: 38px;
}
.cs_pricing_table.cs_style_1 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--heading-color);
    line-height: 1.57em;
    margin-bottom: 16px;
    opacity: 0.9;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_pricing_table.cs_style_1 li i {
    margin-top: 2px;
}
.cs_pricing_table.cs_style_1 li:last-child {
    margin-bottom: 0;
}
.cs_pricing_table.cs_style_1 .cs_pricing_icon {
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cs_pricing_table.cs_style_1 .cs_pricing_icon span {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1),
        -webkit-transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}
.cs_pricing_table.cs_style_1 .cs_pricing_icon span:first-child {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}
.cs_pricing_table.cs_style_1 .cs_pricing_icon span:last-child {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
}
.cs_pricing_table.cs_style_1 .cs_pricing_btn {
    display: block;
    text-align: center;
    line-height: 1.56em;
    padding: 15px 30px;
    border: 1px solid var(--accent-color);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cs_pricing_table.cs_style_1:hover,
.cs_pricing_table.cs_style_1.active {
    background-color: var(--accent-color);
}
.cs_pricing_table.cs_style_1:hover .cs_pricing_feature_list li,
.cs_pricing_table.cs_style_1:hover .cs_price_value,
.cs_pricing_table.cs_style_1:hover .cs_pricing_head_title,
.cs_pricing_table.cs_style_1:hover .cs_pricing_head_subtitle,
.cs_pricing_table.cs_style_1:hover sup,
.cs_pricing_table.cs_style_1:hover .sub,
.cs_pricing_table.cs_style_1:hover .cs_pricing_feature_title,
.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list li,
.cs_pricing_table.cs_style_1.active .cs_price_value,
.cs_pricing_table.cs_style_1.active .cs_pricing_head_title,
.cs_pricing_table.cs_style_1.active .cs_pricing_head_subtitle,
.cs_pricing_table.cs_style_1.active sup,
.cs_pricing_table.cs_style_1.active .sub,
.cs_pricing_table.cs_style_1.active .cs_pricing_feature_title {
    color: var(--white-color);
}
.cs_pricing_table.cs_style_1:hover .cs_pricing_icon,
.cs_pricing_table.cs_style_1.active .cs_pricing_icon {
    background-color: var(--white-color);
    color: var(--heading-color);
}
.cs_pricing_table.cs_style_1:hover .cs_pricing_icon span:first-child,
.cs_pricing_table.cs_style_1.active .cs_pricing_icon span:first-child {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}
.cs_pricing_table.cs_style_1:hover .cs_pricing_icon span:last-child,
.cs_pricing_table.cs_style_1.active .cs_pricing_icon span:last-child {
    -webkit-transform: translateX(22px);
    transform: translateX(22px);
}
.cs_pricing_table.cs_style_1:hover.cs_type_1 .cs_pricing_icon,
.cs_pricing_table.cs_style_1.active.cs_type_1 .cs_pricing_icon {
    color: var(--accent-color);
}
.cs_pricing_table.cs_style_1:hover.cs_type_1 .cs_pricing_btn,
.cs_pricing_table.cs_style_1.active.cs_type_1 .cs_pricing_btn {
    background-color: var(--white-color);
    color: var(--accent-color);
}
.cs_pricing_table.cs_style_1:hover.cs_type_2::after,
.cs_pricing_table.cs_style_1.active.cs_type_2::after {
    background-color: var(--white-color);
    opacity: 1;
}
.cs_pricing_table.cs_style_1:hover.cs_type_2 .cs_pricing_feature_list li,
.cs_pricing_table.cs_style_1:hover.cs_type_2 .cs_price_value,
.cs_pricing_table.cs_style_1:hover.cs_type_2 .cs_pricing_head_title,
.cs_pricing_table.cs_style_1:hover.cs_type_2 .cs_pricing_head_subtitle,
.cs_pricing_table.cs_style_1:hover.cs_type_2 sup,
.cs_pricing_table.cs_style_1:hover.cs_type_2 .sub,
.cs_pricing_table.cs_style_1:hover.cs_type_2 .cs_pricing_feature_title,
.cs_pricing_table.cs_style_1.active.cs_type_2 .cs_pricing_feature_list li,
.cs_pricing_table.cs_style_1.active.cs_type_2 .cs_price_value,
.cs_pricing_table.cs_style_1.active.cs_type_2 .cs_pricing_head_title,
.cs_pricing_table.cs_style_1.active.cs_type_2 .cs_pricing_head_subtitle,
.cs_pricing_table.cs_style_1.active.cs_type_2 sup,
.cs_pricing_table.cs_style_1.active.cs_type_2 .sub,
.cs_pricing_table.cs_style_1.active.cs_type_2 .cs_pricing_feature_title {
    color: var(--accent-color);
}
.cs_pricing_table.cs_style_1:hover.cs_type_2 .cs_pricing_icon,
.cs_pricing_table.cs_style_1.active.cs_type_2 .cs_pricing_icon {
    background-color: var(--accent-color);
    color: var(--white-color);
}
.cs_pricing_table.cs_style_1:hover.cs_type_2 .cs_pricing_btn,
.cs_pricing_table.cs_style_1.active.cs_type_2 .cs_pricing_btn {
    background-color: var(--accent-color);
    color: var(--white-color);
}
.cs_pricing_table.cs_style_1:hover.cs_type_4::after,
.cs_pricing_table.cs_style_1.active.cs_type_4::after {
    background-color: var(--accent-color);
    opacity: 1;
}
.cs_pricing_table.cs_style_1:hover.cs_type_4 .cs_pricing_btn,
.cs_pricing_table.cs_style_1.active.cs_type_4 .cs_pricing_btn {
    background-color: var(--white-color);
}

/*---------------------------------------------------------------
Pricing controller 
----------------------------------------------------------------*/
.cs_tab {
    display: none;
}
.cs_tab.active {
    display: block;
}

.cs_pricing_control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cs_pricing_control li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.42em;
    cursor: pointer;
}
@media (max-width: 991px) {
    .cs_pricing_control li {
        font-size: 22px;
    }
}
.cs_pricing_control li:last-child a::before {
    left: initial;
    right: 100%;
}
.cs_pricing_control li.active {
    color: var(--accent-color);
}
.cs_pricing_control li.active .cs_switch::before {
    left: 5px;
}
.cs_pricing_control.cs_type_1 li {
    color: var(--white-color);
}
.cs_pricing_control.cs_type_1 li.active {
    color: var(--accent-color);
}
.cs_pricing_control.cs_type_1 .cs_switch {
    background-color: var(--white-color);
}
.cs_pricing_control.cs_type_1 .cs_switch::before {
    background-color: var(--accent-color);
}
.cs_pricing_control.cs_type_2 li a {
    color: var(--white-color);
}
.cs_pricing_control.cs_type_2 li.active a {
    opacity: 0.75;
}
.cs_pricing_control.cs_type_2 .cs_switch {
    background-color: var(--white-color);
}
.cs_pricing_control.cs_type_2 .cs_switch::before {
    background-color: var(--accent-color);
}
.cs_pricing_control .cs_switch {
    display: inline-block;
    height: 30px;
    width: 60px;
    background: var(--heading-color);
    border-radius: 15px;
    margin: 0 30px;
    position: relative;
}
@media (max-width: 991px) {
    .cs_pricing_control .cs_switch {
        margin: 0 20px;
    }
}
.cs_pricing_control .cs_switch::before {
    content: '';
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--white-color);
    position: absolute;
    top: 50%;
    left: 35px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_pricing_control a {
    position: relative;
}
.cs_pricing_control a::before {
    content: '';
    height: 24px;
    width: 60px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 100%;
    z-index: 1;
}

/*--------------------------------------------------------------
  20. Card
----------------------------------------------------------------*/
.cs_card.cs_style_1 {
    padding: 30px;
    position: relative;
}
@media (max-width: 575px) {
    .cs_card.cs_style_1 {
        padding: 20px 20px 30px 20px;
    }
}
.cs_card.cs_style_1::after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--gray2-color);
    opacity: 0.4;
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
}
.cs_card.cs_style_1.cs_service {
    max-width: 666px;
    padding: 60px;
}
@media (max-width: 1399px) {
    .cs_card.cs_style_1.cs_service {
        max-width: 550px;
    }
}
@media (max-width: 1199px) {
    .cs_card.cs_style_1.cs_service {
        max-width: 450px;
    }
}
@media (max-width: 991px) {
    .cs_card.cs_style_1.cs_service {
        max-width: 100%;
    }
}
@media (max-width: 575px) {
    .cs_card.cs_style_1.cs_service {
        padding: 30px 25px;
    }
}
.cs_card.cs_style_1.cs_service::after {
    background: #f7f7f8;
    opacity: 1;
}
.cs_card.cs_style_1.cs_service .cs_card_title {
    margin-bottom: 16px;
}
.cs_card.cs_style_1.cs_service .cs_card_subtitle {
    line-height: 1.88em;
    margin-bottom: 20px;
}
.cs_card.cs_style_1 .cs_card_thumbnail {
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    overflow: hidden;
}
.cs_card.cs_style_1 .cs_card_thumbnail img {
    width: 100%;
    border-radius: inherit;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.cs_card.cs_style_1 .cs_card_thumbnail:hover img {
    -webkit-transform: scale(1.05) translate(-5px, 5px);
    transform: scale(1.05) translate(-5px, 5px);
}
.cs_card.cs_style_1 .cs_card_icon {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
}
.cs_card.cs_style_1 .cs_card_bio {
    position: relative;
    z-index: 1;
}
.cs_card.cs_style_1 .cs_card_subtitle {
    margin-bottom: 10px;
}
.cs_card.cs_style_1 .cs_card_title {
    margin-bottom: 30px;
}
.cs_card.cs_style_1 .cs_card_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;
    gap: 15px;
    line-height: 1.88em;
    color: var(--heading-color);
    margin-bottom: 8px;
}
.cs_card.cs_style_1 .cs_card_btn:hover {
    color: var(--accent-color);
}
.cs_card.cs_style_1 .cs_card_btn:hover .cs_card_btn_icon span:first-child {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}
.cs_card.cs_style_1 .cs_card_btn:hover .cs_card_btn_icon span:last-child {
    -webkit-transform: translateX(16px);
    transform: translateX(16px);
}
.cs_card.cs_style_1 .cs_card_btn_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cs_card.cs_style_1 .cs_card_btn_icon span {
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1),
        -webkit-transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.cs_card.cs_style_1 .cs_card_btn_icon span:first-child {
    -webkit-transform: translateX(-16px);
    transform: translateX(-16px);
}
.cs_card.cs_style_1 .cs_card_btn_icon span:last-child {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
}

.cs_card.cs_style_2 {
    position: relative;
    padding-bottom: 150px;
}
@media (max-width: 1399px) {
    .cs_card.cs_style_2 {
        padding-bottom: 100px;
    }
}
@media (max-width: 1199px) {
    .cs_card.cs_style_2 {
        padding-bottom: 80px;
    }
}
@media (max-width: 991px) {
    .cs_card.cs_style_2 {
        padding-bottom: 0;
    }
}
.cs_card.cs_style_2:nth-child(even) .cs_card_thumbnail {
    left: 0;
    bottom: 0;
}
.cs_card.cs_style_2:nth-child(even) .cs_card.cs_style_1 {
    margin-left: auto;
}
.cs_card.cs_style_2 .cs_card_thumbnail {
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 1399px) {
    .cs_card.cs_style_2 .cs_card_thumbnail {
        max-width: 650px;
    }
}
@media (max-width: 1199px) {
    .cs_card.cs_style_2 .cs_card_thumbnail {
        max-width: 550px;
    }
}
@media (max-width: 991px) {
    .cs_card.cs_style_2 .cs_card_thumbnail {
        position: initial;
        max-width: 100%;
    }
}

.cs_card.cs_style_3 {
    height: 100%;
    padding: 100px 50px 88px 80px;
}
@media (max-width: 767px) {
    .cs_card.cs_style_3 {
        padding: 50px 40px 60px;
    }
}
@media (max-width: 450px) {
    .cs_card.cs_style_3 {
        padding: 50px 20px 60px;
    }
    .cs_card.cs_style_3 br {
        display: none;
    }
}
.cs_card.cs_style_3 .cs_card_title {
    margin-bottom: 30px;
}
.cs_card.cs_style_3 .cs_address_icon {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-color);
    position: absolute;
    top: 3px;
    left: 0;
}
.cs_card.cs_style_3 .cs_address_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}
.cs_card.cs_style_3 .cs_address_list li {
    padding-left: 46px;
    position: relative;
}

.cs_card.cs_style_4 {
    padding: 50px 40px 40px;
    border: 1px solid var(--border-color);
}
@media (max-width: 1400px) {
    .cs_card.cs_style_4 {
        padding: 25px 24px 30px;
    }
}
.cs_card.cs_style_4 .cs_card_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.cs_card.cs_style_4 .cs_card_title {
    line-height: 1.42em;
}
.cs_card.cs_style_4 .cs_card_index {
    font-family: var(--heading-font);
    font-weight: 200;
}
.cs_card.cs_style_4 .cs_card_thumbnail {
    border-radius: inherit;
    overflow: hidden;
    margin-bottom: 30px;
}
.cs_card.cs_style_4 .cs_card_subtitle {
    margin-bottom: 20px;
}
.cs_card.cs_style_4 .cs_card_btn {
    display: inline-block;
    border: 1px solid var(--accent-color);
    padding: 10px 25px;
    line-height: 1.55em;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cs_card.cs_style_4 .cs_card_btn:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.cs_card.cs_style_5 {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cs_card.cs_style_5 .cs_card_thumbnail {
    width: 245px;
    height: 245px;
    padding: 20px;
    border: 1px dashed var(--heading-color);
    margin: 0 auto 30px;
}
@media (max-width: 991px) {
    .cs_card.cs_style_5 .cs_card_thumbnail {
        margin-bottom: 15px;
    }
}
.cs_card.cs_style_5 .cs_card_thumbnail img {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border-radius: inherit;
}
.cs_card.cs_style_5 .cs_card_title {
    margin-bottom: 23px;
}
@media (max-width: 991px) {
    .cs_card.cs_style_5 .cs_card_title {
        margin-bottom: 10px;
    }
}
.cs_card.cs_style_5 .cs_card_subtitle {
    line-height: 1.87em;
    letter-spacing: 0.16px;
    opacity: 0.8;
}

.cs_card.cs_style_6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.cs_card.cs_style_6 .cs_card_thumbnail {
    padding: 10px;
    position: relative;
}
.cs_card.cs_style_6 .cs_card_thumbnail img {
    border-radius: inherit;
}
.cs_card.cs_style_6 .cs_card_thumbnail::after {
    content: '';
    width: 100%;
    height: 100%;
    border: 1px dashed var(--heading-color);
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: rotating 60s linear infinite;
    animation: rotating 60s linear infinite;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.cs_card.cs_style_6 .cs_card_title {
    line-height: 1.41em;
    margin-bottom: 5px;
}
.cs_card.cs_style_6 .cs_card_subtitle {
    margin-bottom: 12px;
    line-height: 1.87em;
    color: var(--heading-color);
    opacity: 0.7;
}
.cs_card.cs_style_6:hover .cs_card_thumbnail::after {
    -webkit-animation-play-state: running;
    animation-play-state: running;
}
@media (max-width: 767px) {
    .cs_card.cs_style_6.cs_column_reverse_md {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.cs_card.cs_style_7 {
    height: 100%;
    position: relative;
    overflow: hidden;
}
.cs_card.cs_style_7 .cs_gallery_item {
    width: 100%;
    height: 100%;
}
.cs_card.cs_style_7 .cs_card_info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 30px 60px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(148, 94, 69, 0)),
        color-stop(81.94%, var(--accent-color))
    );
    background: linear-gradient(
        180deg,
        rgba(148, 94, 69, 0) 0%,
        var(--accent-color) 81.94%
    );
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1400px) {
    .cs_card.cs_style_7 .cs_card_info {
        padding: 30px 40px;
    }
}
@media (max-width: 1199px) {
    .cs_card.cs_style_7 .cs_card_info {
        padding: 20px 15px;
    }
}
.cs_card.cs_style_7 .cs_card_title {
    margin-bottom: 10px;
}
.cs_card.cs_style_7 .cs_card_subtitle {
    margin-bottom: 12px;
}
.cs_card.cs_style_7 .cs_card_btn {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
}
.cs_card.cs_style_7 .cs_card_btn:hover {
    -webkit-transform: scale(1.1) rotate(-45deg);
    transform: scale(1.1) rotate(-45deg);
}
.cs_card.cs_style_7:hover .cs_card_info {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media (max-width: 991px) {
    .col-lg-5 .cs_card.cs_style_7 .cs_gallery_item img {
        max-height: 500px;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.cs_card.cs_style_8 {
    padding: 10px 15px;
}
@media (max-width: 575px) {
    .cs_card.cs_style_8 {
        padding: 10px;
    }
}
.cs_card.cs_style_8 .cs_card_thumbnail {
    margin-bottom: 10px;
}
.cs_card.cs_style_8 .cs_card_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 80px;
}
@media (max-width: 575px) {
    .cs_card.cs_style_8 .cs_card_info {
        gap: 0px 15px;
        padding-right: 55px;
    }
}
.cs_card.cs_style_8 .cs_card_subtitle {
    opacity: 0.8;
}

.cs_card.cs_style_9 {
    padding: 40px 40px 48px 40px;
}
@media (max-width: 1399px) {
    .cs_card.cs_style_9 {
        padding: 30px 20px;
    }
}
.cs_card.cs_style_9 h3 {
    margin-bottom: 16px;
}
.cs_card.cs_style_9 a {
    width: 40px;
    height: 40px;
    color: var(--white-color);
    position: relative;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    overflow: hidden;
}
.cs_card.cs_style_9 a i {
    position: absolute;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_card.cs_style_9 a i:last-child {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
}
.cs_card.cs_style_9:hover i:first-child {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
}
.cs_card.cs_style_9:hover i:last-child {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.cs_card.cs_style_10 {
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 767px) {
    .cs_card.cs_style_10 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
}
.cs_card.cs_style_10 .cs_card_thumbnail {
    max-width: 244px;
}
.cs_card.cs_style_10 .cs_card_title {
    margin-bottom: 12px;
}
.cs_card.cs_style_10 .cs_card_subtitle {
    margin-bottom: 24px;
}
.cs_card.cs_style_10 .cs_card_text {
    max-width: 410px;
    line-height: 1.88em;
    margin-bottom: 28px;
}
.cs_card.cs_style_10 .cs_social_btns.cs_style_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}
@media (max-width: 767px) {
    .cs_card.cs_style_10 .cs_social_btns.cs_style_1 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.cs_card.cs_style_10 .cs_social_btns.cs_style_1 a {
    color: var(--heading-color);
    width: 45px;
    height: 45px;
}
.cs_card.cs_style_10 .cs_social_btns.cs_style_1 a:hover {
    background-color: var(--heading-color);
    color: var(--white-color);
}

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

@keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
/*--------------------------------------------------------------
21. Before After Slider
----------------------------------------------------------------*/
.cs_before_after {
    width: 100%;
    position: relative;
    min-height: 770px;
}

.cs_before_after:before {
    top: 0;
}

.cs_before_badge {
    padding: 10px 30px;
    top: 40px;
    left: 40px;
}

.cs_after_badge {
    padding: 10px 30px;
    top: 40px;
    right: 40px;
}

.cs_before_after:after {
    bottom: 0;
}

.cs_before_after .cs_single_slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    border-radius: inherit;
}

.cs_before_after .cs_single_slide.cs_before {
    right: 50%;
    overflow: hidden;
}

.cs_before_after .cs_handle_before_after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    left: 50%;
    margin-left: -15px;
    cursor: ew-resize;
}

.cs_handle_before_after span {
    height: 114px;
    width: 114px;
    border-radius: 50%;
    padding: 20px;
    background-color: var(--accent-color);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cs_before_after .cs_handle_before_after:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    left: 50%;
    margin-left: -1px;
    background: var(--white-color);
}

.cs_handle_before_after span:before,
.cs_handle_before_after span:after {
    font-size: 16px;
    color: var(--white-color);
    font-weight: 900;
    font-family: 'font awesome 5 free';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cs_handle_before_after span:before {
    content: '\f053';
    left: 24px;
}

.cs_handle_before_after span:after {
    content: '\f054';
    right: 24px;
}

/*--------------------------------------------------------------
  22. Contact
----------------------------------------------------------------*/
.cs_appointment_form_wrapper.cs_type_1 {
    margin-left: 50px;
    padding: 50px;
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
}
@media (max-width: 1199px) {
    .cs_appointment_form_wrapper.cs_type_1 {
        margin: 0;
        padding: 30px 20px 40px;
    }
}
.cs_appointment_form_wrapper.cs_type_1 .cs_appointment_heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.44em;
    color: var(--accent-color);
}
.cs_appointment_form_wrapper.cs_type_1 .cs_appointment_form .cs_btn.cs_style_1 {
    width: 100%;
    line-height: 1.56em;
}

.cs_appointment_form_wrapper.cs_type_2 {
    width: 100%;
    max-width: 1490px;
    padding: 55px;
    margin: 0 auto;
    border: 1px solid rgba(19, 37, 115, 0.1);
    position: relative;
    z-index: 1;
    background-color: transparent;
    margin-top: -410px;
}
@media (max-width: 991px) {
    .cs_appointment_form_wrapper.cs_type_2 {
        padding: 20px;
    }
}
@media (max-width: 767px) {
    .cs_appointment_form_wrapper.cs_type_2 {
        padding: 0;
        border: 0;
    }
}
.cs_appointment_form_wrapper.cs_type_2 .cs_appointment_form {
    padding: 80px 60px;
    background-color: var(--white-color);
    -webkit-box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
}
@media (max-width: 767px) {
    .cs_appointment_form_wrapper.cs_type_2 .cs_appointment_form {
        padding: 50px 20px;
    }
}
.cs_appointment_form_wrapper.cs_type_2 .cs_appointment_form .cs_btn.cs_style_1 {
    line-height: 1.56em;
}

.cs_appointment_form_wrapper.cs_type_3 {
    margin-left: 50px;
    padding: 50px;
    background-color: var(--accent-color);
    position: relative;
    z-index: 1;
}
@media (max-width: 1199px) {
    .cs_appointment_form_wrapper.cs_type_3 {
        margin: 0;
        padding: 30px 20px 40px;
    }
}
.cs_appointment_form_wrapper.cs_type_3 .cs_appointment_heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.44em;
    color: var(--white-color);
}
.cs_appointment_form_wrapper.cs_type_3 .cs_form_field_wrapper::after {
    background-color: var(--white-color);
    opacity: 0.05;
}
.cs_appointment_form_wrapper.cs_type_3 .cs_form_field {
    color: var(--white-color);
}
.cs_appointment_form_wrapper.cs_type_3
    .cs_form_field::-webkit-input-placeholder {
    color: var(--white-color);
}
.cs_appointment_form_wrapper.cs_type_3 .cs_form_field::-moz-placeholder {
    color: var(--white-color);
}
.cs_appointment_form_wrapper.cs_type_3 .cs_form_field:-ms-input-placeholder {
    color: var(--white-color);
}
.cs_appointment_form_wrapper.cs_type_3 .cs_form_field::-ms-input-placeholder {
    color: var(--white-color);
}
.cs_appointment_form_wrapper.cs_type_3 .cs_form_field::placeholder {
    color: var(--white-color);
}
.cs_appointment_form_wrapper.cs_type_3
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b::after,
.cs_appointment_form_wrapper.cs_type_3
    .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    color: var(--white-color);
}
.cs_appointment_form_wrapper.cs_type_3 .cs_btn.cs_style_1 {
    width: 100%;
    line-height: 1.56em;
    color: var(--heading-color);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cs_appointment_form_wrapper.cs_type_3 .cs_btn.cs_style_1::after {
    display: none;
}
.cs_appointment_form_wrapper.cs_type_3 .cs_btn.cs_style_1:hover {
    background-color: var(--heading-color);
    color: var(--white-color);
}
.cs_appointment_form_wrapper.cs_type_3 .cs_input_icon {
    color: var(--white-color);
}

.cs_appointment.cs_style_1 {
    position: relative;
}
.cs_appointment.cs_style_1::after {
    content: '';
    width: 100%;
    height: 40%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.contact_form_wrapper {
    padding: 55px 50px 60px;
}
@media (max-width: 991px) {
    .contact_form_wrapper {
        padding: 50px 30px;
    }
}
.contact_form_wrapper.cs_type_1 {
    padding: 55px 30px 60px;
}
@media (max-width: 991px) {
    .contact_form_wrapper.cs_type_1 {
        padding: 50px 30px;
    }
}
.contact_form_wrapper::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    opacity: 0.05;
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
}
.contact_form_wrapper .cs_form_field {
    font-size: 16px;
    color: var(--body-color);
}
.contact_form_wrapper .cs_form_field::-webkit-input-placeholder {
    font-size: 16px;
    color: var(--body-color);
}
.contact_form_wrapper .cs_form_field::-moz-placeholder {
    font-size: 16px;
    color: var(--body-color);
}
.contact_form_wrapper .cs_form_field:-ms-input-placeholder {
    font-size: 16px;
    color: var(--body-color);
}
.contact_form_wrapper .cs_form_field::-ms-input-placeholder {
    font-size: 16px;
    color: var(--body-color);
}
.contact_form_wrapper .cs_form_field::placeholder {
    font-size: 16px;
    color: var(--body-color);
}

.cs_location_map {
    width: 100%;
    height: 100%;
    min-height: 357px;
    overflow: hidden;
}
.cs_location_map iframe {
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------------------
  23. Ecommerce
----------------------------------------------------------------*/
.cs_shop_sidebar {
    background-color: var(--gray-color);
    padding: 40px 25px;
}

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

.cs_shop_filter_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}
.cs_shop_filter_wrap select {
    background-color: transparent;
    border: transparent;
    color: inherit;
    outline: none;
    cursor: pointer;
}
.cs_shop_filter_wrap .cs_result_info {
    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_shop_filter_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

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

.cs_shop_sidebar_tag_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0px -5px -5px -5px;
    list-style: none;
    padding: 0;
}
.cs_shop_sidebar_tag_list a {
    border: 1px solid var(--body-color);
    padding: 3px 15px;
    display: inline-block;
    margin: 5px;
}
.cs_shop_sidebar_tag_list a:hover {
    color: var(--white-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.cs_shop_search {
    position: relative;
}
.cs_shop_search .cs_shop_search_input {
    border: 1px solid var(--border-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--heading-color);
    background-color: transparent;
    border-radius: 2px;
    display: block;
    width: 100%;
    padding: 5px 10px 5px 44px;
    height: 50px;
    outline: none;
}
.cs_shop_search .cs_shop_search_input:focus {
    border-color: var(--heading-color);
}
.cs_shop_search .cs_shop_search_input::-webkit-input-placeholder {
    color: var(--body-color);
}
.cs_shop_search .cs_shop_search_input::-moz-placeholder {
    color: var(--body-color);
}
.cs_shop_search .cs_shop_search_input:-ms-input-placeholder {
    color: var(--body-color);
}
.cs_shop_search .cs_shop_search_input::-ms-input-placeholder {
    color: var(--body-color);
}
.cs_shop_search .cs_shop_search_input::placeholder {
    color: var(--body-color);
}
.cs_shop_search .cs_shop_search_input:-ms-input-placeholder {
    color: var(--body-color);
}
.cs_shop_search .cs_shop_search_input::-ms-input-placeholder {
    color: var(--body-color);
}
.cs_shop_search .cs_shop_search_btn {
    position: absolute;
    top: 0;
    border: none;
    background: transparent;
    height: 50px;
    width: 44px;
    padding: 0 0 0 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.cs_shop_search .cs_shop_search_btn:hover {
    color: var(--accent-color);
}

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

.cs_product_card.cs_style_1 {
    padding: 20px 20px 16px;
    border: 1px solid var(--gray-color);
}
.cs_product_card.cs_style_1.cs_type_1 {
    padding: 0;
    border: none;
}
.cs_product_card.cs_style_1.cs_type_1 .cs_product_thumbnail {
    margin-bottom: 20px;
}
.cs_product_card.cs_style_1 .cs_product_thumbnail {
    display: block;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    background-color: var(--gray-color);
}
.cs_product_card.cs_style_1 .cs_card_btns {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_product_card.cs_style_1 .cs_card_btns a {
    height: 50px;
    width: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 6px;
    background-color: var(--accent-color);
    color: var(--white-color);
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    font-size: 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.cs_product_card.cs_style_1 .cs_card_btns a:hover {
    background-color: var(--white-color);
    color: var(--accent-color);
}
.cs_product_card.cs_style_1 .cs_product_title {
    line-height: 1.35em;
    margin-bottom: 4px;
}
.cs_product_card.cs_style_1 .cs_product_price {
    line-height: 1.5em;
}
.cs_product_card.cs_style_1:hover .cs_card_btns {
    background-color: rgba(0, 0, 0, 0.4);
}
.cs_product_card.cs_style_1:hover .cs_card_btns a {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.cs_product_card.cs_style_1 .cs_product_price {
    margin-bottom: 0;
}

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

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

.cs_single_product_nav {
    margin-top: 20px;
}
.cs_single_product_nav .slick-current img {
    border-color: var(--accent-color);
}
.cs_single_product_nav .slick-slide:not(.slick-current) {
    cursor: pointer;
}

.cs_single_product_thumb_item {
    overflow: hidden;
}
.cs_single_product_thumb_item img {
    width: 100%;
}

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

.cs_quantity_input {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
}

.cs_quantity_button {
    width: 24px;
    height: 24px;
    font-size: 14px;
    color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cs_quantity_button:hover {
    background-color: var(--heading-color);
}

.cs_quantity_and_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
@media (max-width: 500px) {
    .cs_quantity_and_btn {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

.cs_single_product_info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}
.cs_single_product_info b {
    font-weight: 600;
    color: var(--heading-color);
}

.cs_single_product_details {
    line-height: 1.8em;
    padding-left: 50px;
}
@media (max-width: 991px) {
    .cs_single_product_details {
        padding-left: 0;
        padding-top: 40px;
    }
}
.cs_single_product_details h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 2.11em;
}
.cs_single_product_details .cs_single_product_price {
    margin-bottom: 8px;
}
.cs_single_product_details .cs_single_product_details_text p {
    margin-bottom: 18px;
}
.cs_single_product_details .cs_single_product_details_text p:last-child {
    margin-bottom: 0;
}
.cs_single_product_details .cs_rating {
    width: 130px;
    height: 24px;
    position: relative;
    font-size: 18px;
}
.cs_single_product_details .cs_single_product_price_review {
    margin-bottom: 30px;
}
.cs_single_product_details .cs_btn.cs_style_1 {
    padding: 20px 80px;
    line-height: 1.5em;
}

.cs_product_tab {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--heading-color);
    gap: 10px 52px;
    font-family: var(--heading-font);
}
@media (max-width: 575px) {
    .cs_product_tab {
        gap: 10px 30px;
    }
}
.cs_product_tab li a {
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    font-weight: 600;
}
.cs_product_tab li a::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: currentColor;
    bottom: 0;
}
.cs_product_tab li.active a::before {
    width: 100%;
}

.cs_product_meta_info {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.cs_input_rating_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cs_input_rating_wrap p {
    margin: 0 14px 0 0;
}
.cs_input_rating_wrap .cs_input_rating {
    color: #ffb400;
}

.cs_client_review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.cs_client_review .cs_review_media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cs_client_review .cs_rating {
    width: 130px;
    height: 24px;
    position: relative;
    font-size: 18px;
}
.cs_client_review .cs_review_media_right {
    padding-top: 6px;
}
.cs_client_review .cs_review_media_thumb {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cs_client_review .cs_review_media_thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.cs_client_review .cs_review_text {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    line-height: 1.8em;
    margin-top: 30px;
}
.cs_client_review .cs_review_posted_by {
    margin-left: 65px;
    padding-top: 22px;
}

.cs_client_review_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cs_client_review_list li:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.cs_cart_table_media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
@media (max-width: 991px) {
    .cs_cart_table_media {
        gap: 10px;
    }
}
.cs_cart_table_media img {
    width: 85px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
@media (max-width: 991px) {
    .cs_cart_table_media img {
        width: 50px;
    }
}
.cs_cart_table_media h3 {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    text-align: left;
}

.cs_cart_table_close {
    background-color: transparent;
    border: none;
    padding: 0;
}
.cs_cart_table_close:hover {
    color: red;
}

@media (max-width: 991px) {
    .cs_cart_table {
        min-width: 500px;
    }
}
.cs_cart_table.cs_size1 {
    min-width: 900px;
}
.cs_cart_table th {
    background-color: var(--accent-color);
    color: var(--white-color);
    border: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6em;
    padding: 20px 30px;
    font-family: var(--heading-font);
}
@media (max-width: 991px) {
    .cs_cart_table th {
        padding: 10px;
    }
}
.cs_cart_table td {
    border-top: none;
    border-bottom: 1px solid var(--gray-color);
    padding: 20px;
    text-align: center;
    font-weight: 500;
    color: var(--heading-color);
    font-family: var(--heading-font);
}
@media (max-width: 991px) {
    .cs_cart_table td {
        padding: 10px;
    }
}
.cs_cart_table .cs_quantity {
    width: 120px;
}
@media (max-width: 991px) {
    .cs_cart_table .cs_quantity {
        width: 90px;
        padding: 0px 0px;
    }
}

.cs_cart_offer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
.cs_cart_offer .cs_shop_input {
    min-width: 160px;
    border-color: var(--accent-color);
}
.cs_cart_offer .cs_cart_offer-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (max-width: 450px) {
    .cs_cart_offer > *,
    .cs_cart_offer .cs_coupon_doce_form {
        width: 100%;
    }
    .cs_cart_offer .cs_btn.cs_style_1 {
        width: 100%;
    }
}

.cs_coupon_doce_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
.cs_coupon_doce_form input {
    background-color: transparent;
    padding: 15px 15px;
    border: 1px solid var(--accent-color);
    outline: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cs_coupon_doce_form input::-webkit-input-placeholder {
    color: var(--body-color);
}
.cs_coupon_doce_form input::-moz-placeholder {
    color: var(--body-color);
}
.cs_coupon_doce_form input:-ms-input-placeholder {
    color: var(--body-color);
}
.cs_coupon_doce_form input::-ms-input-placeholder {
    color: var(--body-color);
}
.cs_coupon_doce_form input::placeholder {
    color: var(--body-color);
}
.cs_coupon_doce_form input:-ms-input-placeholder {
    color: var(--body-color);
}
.cs_coupon_doce_form input::-ms-input-placeholder {
    color: var(--white-color);
}
.cs_coupon_doce_form input:focus {
    border-color: var(--body-color);
}
@media (max-width: 450px) {
    .cs_coupon_doce_form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cs_coupon_doce_form input,
    .cs_coupon_doce_form button {
        width: 100%;
    }
}

.cs_shop_card {
    border: 1px solid var(--gray-color);
    border-radius: 4px;
    padding: 25px 20px 25px;
    font-family: var(--heading-font);
}
.cs_shop_card table {
    border-bottom: 1px solid var(--gray-color);
    margin: 0;
}
.cs_shop_card h2 {
    font-size: 20px;
    margin-bottom: 21px;
    font-weight: 600;
}
.cs_shop_card td {
    padding: 20px 10px;
}
.cs_shop_card td:first-child {
    padding-left: 0;
}
.cs_shop_card td:last-child {
    padding-right: 0;
}
.cs_shop_card .form-check {
    margin-bottom: 6px;
}

.cs_checkout_alert a {
    color: var(--accent-color);
}
.cs_checkout_alert a:hover {
    text-decoration: underline;
}

.cs_shop_side_spacing {
    padding-left: 25px;
}
@media (max-width: 1199px) {
    .cs_shop_side_spacing {
        padding-left: 0;
        margin-top: 30px;
    }
}

.cs_checkout_title {
    font-size: 28px;
    margin-bottom: 0px;
    font-weight: 600;
}

.cs_shop_input {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid var(--gray-color);
    border-radius: 4px;
    padding: 9px 15px;
    font-family: var(--heading-font);
    outline: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-bottom: 20px;
    min-height: 50px;
}
.cs_shop_input:focus {
    border-color: var(--heading-color);
}

.cs_shop_label {
    font-family: var(--heading-font);
    display: block;
    margin-bottom: 12px;
}

.cs_payment_text {
    font-size: 16px;
    line-height: 1.6em;
}
.cs_payment_text a {
    color: var(--accent-color);
}

.cs_order-summery {
    background-color: var(--heading-color);
    list-style: none;
    padding: 25px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}
.cs_order-summery p {
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 5px;
    color: var(--border-color);
}
.cs_order-summery h3 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: var(--white-color);
}
.cs_order-summery li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 55px;
    margin-right: 55px;
}
@media (max-width: 991px) {
    .cs_order-summery li:not(:last-child) {
        border-right: 0;
        padding-right: 0;
        margin-right: 0;
    }
}
@media (max-width: 991px) {
    .cs_order-summery li {
        width: 100%;
    }
    .cs_order-summery li:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

.cs_header_cart {
    display: inline-block;
    position: relative;
    color: var(--white-color);
}
.cs_header_cart + .cs_hamburger_btn {
    margin-left: -10px;
}
.cs_header_cart svg {
    height: 26px;
    width: 26px;
}
.cs_header_cart:hover {
    color: var(--accent-color);
}

.cs_header_cart_label {
    position: absolute;
    background-color: var(--accent-color);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    padding: 0 2px;
    min-width: 17px;
    text-align: center;
    border-radius: 1.6em;
    left: 12px;
    bottom: -6px;
    color: var(--white-color);
}

.cs_pagination_box {
    gap: 15px;
}

.cs_pagination_item {
    height: 50px;
    width: 50px;
    background-color: var(--gray-color);
    color: var(--accent-color);
}
.cs_pagination_item.active,
.cs_pagination_item:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    pointer-events: none;
}

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

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

.cs_shop_form_field {
    width: 100%;
    display: block;
    border: 1px solid var(--border-color);
    padding: 9px 20px;
    outline: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: transparent;
}
.cs_shop_form_field:focus {
    border-color: var(--heading-color);
}

.form_check_input {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--border-color);
    background-color: transparent;
}

.form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--border-color);
}

.form-check-input:checked {
    border: var(--accent-color);
    background-color: var(--accent-color);
    -webkit-box-shadow: none;
    box-shadow: none;
} /*# sourceMappingURL=style.css.map */
