@charset "UTF-8";
/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
01. Google Fonts
02. Color Variable
03. Typography
04. General
05. Preloader
06. Header Section
07. Footer Section
08. Slider (Swiper)
09. Spacing
10. Video Modal
11. Hero Section
12. About Section
13. Services Section
14. Facilities Section
15. Healthcare Center Section
16. Blog Section
17. Contact Section
18. Team Section
19. Pricing Section
20. FAQ Section
21. Portfolio Section
22. Tabs Section
23. Testimonials Section
24. Appointment Section
25. Features Section
26. Partners Section
27. Login / My Account Section
28. Ecommerce (Shop) Section
29. Privacy Policy / Terms & Condition Section
--------------------------------------------------------------*/
/*===============================================================
  01. Google Fonts
=================================================================*/
/* Montserrat italic */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf) format("truetype");
}
/* Montserrat normal */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts/Montserrat/Montserrat-VariableFont_wght.ttf) format("truetype");
}
/* Open Sans normal  */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts/Open_Sans/OpenSans-VariableFont_wdth-wght.ttf) format("truetype");
}
/* Open Sans Italic  */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url(../fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth-wght.ttf) format("truetype");
}
/*================================================================
  02. Color Variable
==================================================================*/
:root {
  --accent-color: #136DF4;
  --primary-color: #1F2937;
  --secondary-color: #4B5563;
  --secondary2-color: #8694A7;
  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color: #FFF6EB;
  --gray2-color: #F4F2F9;
  --gray3-color: #D2E3FF;
  --gray4-color: #F3F6FF;
  --gray5-color: #DBD5F7;
  --gray6-color: #F4F6F8;
  --gray7-color: #D3E4FF;
  --danger-color: #EF4444;
  --danger-darker-color: #DC2626;
  --warning-color: #F59E0B;
  --primary-font: 'Montserrat', sans-serif;
  --secondary-font: 'Open Sans', sans-serif;
}

/*===============================================================
  03. Typography
=================================================================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 16px;
  line-height: 1.563em;
  font-weight: 400;
  overflow-x: clip;
  background-color: var(--web-wash);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--primary-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2em;
  font-family: var(--primary-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;
  border-radius: inherit;
}

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

button {
  color: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

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

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

b,
strong {
  font-weight: bold;
}

small {
  font-size: 16px;
  font-weight: 400;
}

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

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

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

label {
  margin-bottom: 8px;
}

/*=================================================================
  04. General
===================================================================*/
.cs_fs_12 {
  font-size: 12px;
  line-height: 1.67em;
}

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

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

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

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

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

.cs_fs_30 {
  font-size: 30px;
  line-height: 1.17em;
}
@media (max-width: 767px) {
  .cs_fs_30 {
    font-size: 24px;
  }
}

.cs_fs_40 {
  font-size: 40px;
  line-height: 1.25em;
}
@media (max-width: 767px) {
  .cs_fs_40 {
    font-size: 30px;
  }
}

.cs_fs_60 {
  font-size: 60px;
  line-height: 1.167em;
}
@media (max-width: 1399px) {
  .cs_fs_60 {
    font-size: 56px;
  }
}
@media (max-width: 991px) {
  .cs_fs_60 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .cs_fs_60 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .cs_fs_60 {
    font-size: 32px;
  }
}

.cs_fs_64 {
  font-size: 64px;
  line-height: 1.23em;
}
@media (max-width: 1399px) {
  .cs_fs_64 {
    font-size: 56px;
  }
}
@media (max-width: 991px) {
  .cs_fs_64 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .cs_fs_64 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .cs_fs_64 {
    font-size: 32px;
  }
}

.cs_fs_75 {
  font-size: 75px;
  line-height: 1.213em;
}
@media (max-width: 1399px) {
  .cs_fs_75 {
    font-size: 56px;
  }
}
@media (max-width: 991px) {
  .cs_fs_75 {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .cs_fs_75 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .cs_fs_75 {
    font-size: 32px;
  }
}

.cs_fs_96 {
  font-size: 96px;
  line-height: 1.2em;
}
@media (max-width: 1440px) {
  .cs_fs_96 {
    font-size: 90px;
  }
}
@media (max-width: 1399px) {
  .cs_fs_96 {
    font-size: 72px;
  }
}
@media (max-width: 1199px) {
  .cs_fs_96 {
    font-size: 66px;
  }
}
@media (max-width: 991px) {
  .cs_fs_96 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cs_fs_96 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .cs_fs_96 {
    font-size: 32px;
  }
}

/*=====================================  
  Classess for Fonts Weight
=======================================*/
.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_extrabold {
  font-weight: 800;
}

.cs_black {
  font-weight: 900;
}

/*=====================================  
  Classess for Fonts Color
=======================================*/
.cs_accent_color {
  color: var(--accent-color);
}

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

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

.cs_secondary2_color {
  color: var(--secondary2-color);
}

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

.cs_gray_color {
  color: var(--gray-color);
}

.cs_black_color {
  color: var(--black-color);
}

.cs_danger_color {
  color: var(--danger-color);
}

/*=====================================  
  Classess for Fonts Family 
=======================================*/
.cs_primary_font {
  font-family: var(--primary-font);
}

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

/*=============================================  
  Classess for Background Size & Colors
===============================================*/
.cs_accent_bg {
  background-color: var(--accent-color);
}

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

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

.cs_danger_bg {
  background-color: var(--danger-color);
}

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

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

.cs_gray2_bg {
  background-color: var(--gray2-color);
}

.cs_gray3_bg {
  background-color: var(--gray3-color);
}

.cs_gray4_bg {
  background-color: var(--gray4-color);
}

.cs_gray5_bg {
  background-color: var(--gray5-color);
}

.cs_gray6_bg {
  background-color: var(--gray6-color);
}

.cs_gray7_bg {
  background-color: var(--gray7-color);
}

.cs_black_bg {
  background-color: var(--black-color);
}

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

.cs_bg_fixed {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/*=============================================  
  Classess for Border Radius
===============================================*/
.cs_radius_5 {
  border-radius: 5px;
}

.cs_radius_10 {
  border-radius: 10px;
}

.cs_radius_15 {
  border-radius: 15px;
}

.cs_radius_20 {
  border-radius: 20px;
}

.cs_radius_30 {
  border-radius: 30px;
}

.cs_radius_50 {
  border-radius: 50%;
}

@media (max-width: 991px) {
  .cs_radius_15,
  .cs_radius_20,
  .cs_radius_30 {
    border-radius: 10px;
  }
}
/*=============================================  
  Classes for Utility Components
===============================================*/
.cs_mp_0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cs_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs_center_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*=============================================  
  Bootstrap Classess 
===============================================*/
@media (min-width: 1400px) {
  .container {
    max-width: 1344px;
  }
  .container-fluid {
    max-width: 1896px;
  }
}
.cs_gap_y_40 {
  gap: 40px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_40 {
    gap: 30px 0;
  }
}

.cs_gap_y_48 {
  gap: 48px 0;
}
@media (max-width: 991px) {
  .cs_gap_y_48 {
    gap: 30px 0;
  }
}

.cs_gap_y_30 {
  gap: 30px 0;
}

.cs_gap_y_24 {
  gap: 24px 0;
}

.cs_gap_y_16 {
  gap: 16px 0;
}

/*====================================================  
 Button Components
======================================================*/
.cs_btn_style_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 25px;
  position: relative;
  overflow: hidden;
  text-wrap: nowrap;
  transition: all 0.4s ease-in-out;
}
.cs_btn_style_1 > * {
  position: relative;
  z-index: 1;
  transition: inherit;
}
.cs_btn_style_1::before, .cs_btn_style_1::after {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(0);
  background-color: var(--primary-color);
  transition: transform 0.6s cubic-bezier(0.65, 0.35, 0.35, 0.5);
}
.cs_btn_style_1::after {
  opacity: 1;
  transition-delay: 0.3s;
}
.cs_btn_style_1:hover {
  color: var(--white-color);
}
.cs_btn_style_1:hover::before, .cs_btn_style_1:hover::after {
  transform: translate(-50%, -50%) scale(5);
}
@media (max-width: 767px) {
  .cs_btn_style_1 {
    padding: 10px 20px;
  }
}

.cs_btn_style_2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  text-wrap: nowrap;
  border: 1px solid var(--danger-color);
  transition: all 0.3s cubic-bezier(0.55, 0.45, 0.65, 0.55);
}
.cs_btn_style_2 > * {
  transition: inherit;
}
.cs_btn_style_2.cs_type_1 {
  border-color: var(--accent-color);
}
.cs_btn_style_2.cs_type_1 img {
  animation: circularRotation 4s linear infinite;
}
.cs_btn_style_2:hover {
  color: var(--danger-color);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.cs_btn_style_2:hover.cs_type_1 {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_btn_style_2:hover.cs_type_1 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}

.cs_text_btn_style_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

.cs_player_btn_style_1 {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}
.cs_player_btn_style_1 > * {
  position: relative;
  z-index: 1;
}
.cs_player_btn_style_1::before, .cs_player_btn_style_1::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-50%, -50%) scale(1);
  border-radius: inherit;
  border: 6px solid currentColor;
  animation: pulseBorder 3s linear infinite;
}
.cs_player_btn_style_1::after {
  animation-delay: 1.5s;
}
.cs_player_btn_style_1:hover {
  transform: scale(0.75);
}
.cs_player_btn_style_1:hover::before, .cs_player_btn_style_1:hover::after {
  animation-play-state: paused;
}

/*=============================================
 Social Buttons Component
===============================================*/
.cs_social_btns_style_1 {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
.cs_social_btns_style_1 a {
  width: 50px;
  height: 50px;
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/*=============================================
 Scroll Top Button
===============================================*/
.cs_scrollup_btn {
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: var(--white-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(120px) scale(0);
  transition: all 0.4s cubic-bezier(0.68, 0.55, 0.27, 1);
}
.cs_scrollup_btn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cs_scrollup_btn:hover {
  color: var(--accent-color);
  background-color: var(--white-color);
}

/*=============================================
 Section Heading Component
===============================================*/
.cs_section_heading_style_1 .cs_section_title .word,
.cs_section_heading_style_2 .cs_section_title .word {
  display: inline-block;
  overflow: hidden;
}
.cs_section_heading_style_1 .cs_section_title .word_inner,
.cs_section_heading_style_2 .cs_section_title .word_inner {
  display: inline-block;
  will-change: transform, opacity, filter;
}
.cs_section_heading_style_1 .cs_section_subtitle,
.cs_section_heading_style_2 .cs_section_subtitle {
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.cs_section_heading_style_1.cs_type_1 .cs_section_subtitle, .cs_section_heading_style_1.cs_type_2 .cs_section_subtitle {
  width: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 5px 10px;
}
.cs_section_heading_style_1.cs_type_2 .cs_section_subtitle {
  padding: 4px 10px;
  border: 1px solid currentColor;
}

.cs_section_heading_style_2 {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.cs_section_heading_style_2 .cs_section_subtitle {
  padding: 10px;
  flex: none;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
}
.cs_section_heading_style_2 .cs_section_heading_left {
  flex: 1;
}
.cs_section_heading_style_2 .cs_section_heading_right {
  width: min(70%, 872px);
}
.cs_section_heading_style_2.cs_type_1 {
  align-items: flex-end;
  justify-content: space-between;
}
.cs_section_heading_style_2.cs_type_1 .cs_section_heading_right {
  width: -moz-max-content;
  width: max-content;
  flex: none;
}
.cs_section_heading_style_2.cs_type_1 .cs_btn_style_2 {
  flex: none;
  border-color: var(--accent-color);
}
.cs_section_heading_style_2.cs_type_1 .cs_btn_style_2 img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(11%) saturate(1768%) hue-rotate(176deg) brightness(99%) contrast(92%);
}
.cs_section_heading_style_2.cs_type_1 .cs_btn_style_2:hover {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_section_heading_style_2.cs_type_1 .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(105%) contrast(101%);
}
.cs_section_heading_style_2.cs_type_1 .cs_section_heading_right {
  padding-bottom: 24px;
}
@media (max-width: 991px) {
  .cs_section_heading_style_2 {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .cs_section_heading_style_2 .cs_section_heading_left,
  .cs_section_heading_style_2 .cs_section_heading_right {
    width: 100%;
    padding: 0 !important;
  }
}

/*=============================================
 Progressbar Component
===============================================*/
.cs_progress .cs_progress_in {
  height: 1px;
  position: relative;
  background-color: var(--primary-color);
}
.cs_progress .cs_progress_in span {
  position: absolute;
  right: 0;
  bottom: calc(100% + 20px);
}
.cs_progress .cs_progress_in::after {
  content: "";
  width: 1px;
  height: 4px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  background-color: var(--primary-color);
}

/*=============================================
 Rating Component
===============================================*/
.cs_rating_percentage,
.cs_rating {
  overflow: hidden;
}
.cs_rating_percentage::before,
.cs_rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 7 Free";
  position: absolute;
  top: 0;
  left: 0;
}

.cs_rating {
  max-width: 144px;
  flex: none;
  height: 24px;
  position: relative;
  color: var(--warning-color);
  font-size: 20px;
  letter-spacing: 7px;
}
.cs_rating::before {
  font-weight: 400;
}
.cs_rating .cs_rating_percentage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.cs_rating .cs_rating_percentage::before {
  font-weight: 900;
}

/*===========================================================  
  Funfact Odometer
=============================================================*/
.odometer.odometer-auto-theme,
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default,
.odometer.odometer-theme-default .odometer-digit {
  vertical-align: top;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: inherit;
  line-height: inherit;
}

/*===========================================================  
  Responsive For Common Component & Hide Elements
=============================================================*/
@media (max-width: 991px) {
  br {
    display: none;
  }
}
/*===========================================================  
  Animations
=============================================================*/
@keyframes pulseBorder {
  100% {
    opacity: 0;
    border-width: 30px;
    transform: translate(-50%, -50%) scale(1.4);
  }
}
/*================================================================
  05. Preloader
==================================================================*/
.cs_preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cs_preloader.cs_loaded {
  opacity: 0;
  visibility: hidden;
}

.cs_preloader_in {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cs_loader {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs_loader_ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  animation: cs_loader_spin 1s linear infinite;
}

.cs_loader_track {
  fill: none;
  stroke: var(--gray3-color);
  stroke-width: 3;
}

.cs_loader_arc {
  fill: none;
  stroke: var(--accent-color);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 80 196;
}

.cs_loader_pulse {
  position: relative;
  width: 56px;
  height: 40px;
}

.cs_loader_pulse_line {
  fill: none;
  stroke: var(--accent-color);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: cs_loader_pulse 1.6s cubic-bezier(0.39, 0.575, 0.565, 1.5) infinite;
}

.cs_preloader_text {
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-family: var(--primary-font);
  animation: cs_loader_fade 1.4s ease-in-out infinite;
}

@keyframes cs_loader_spin {
  to {
    transform: rotate(270deg);
  }
}
@keyframes cs_loader_pulse {
  0% {
    stroke-dashoffset: 100;
  }
  55% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -100;
  }
}
@keyframes cs_loader_fade {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
/*=========================================================
  06. Header Section
===========================================================*/
.cs_site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}
.cs_site_header .cs_main_header_in {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.cs_site_header .cs_main_header_right .cs_search_btn:hover {
  color: var(--accent-color);
}
.cs_site_header .cs_main_header_right.cs_shop .cs_search_btn,
.cs_site_header .cs_main_header_right.cs_shop .cs_login_btn,
.cs_site_header .cs_main_header_right.cs_shop .cs_cart_btn {
  width: 50px;
  height: 50px;
  margin-right: 0;
  border-radius: 50%;
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_site_header .cs_main_header_right.cs_shop .cs_search_btn img,
.cs_site_header .cs_main_header_right.cs_shop .cs_login_btn img,
.cs_site_header .cs_main_header_right.cs_shop .cs_cart_btn img {
  width: 16px;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(13%) sepia(10%) saturate(1907%) hue-rotate(175deg) brightness(96%) contrast(91%);
  transition: filter 0.2s ease;
}
.cs_site_header .cs_main_header_right.cs_shop .cs_search_btn .cs_cart_badge,
.cs_site_header .cs_main_header_right.cs_shop .cs_login_btn .cs_cart_badge,
.cs_site_header .cs_main_header_right.cs_shop .cs_cart_btn .cs_cart_badge {
  width: 20px;
  height: 20px;
  padding: 4px;
  top: -5px;
  right: 0px;
  font-size: 12px;
  line-height: 1em;
  color: var(--white-color);
  background-color: var(--danger-color);
}
.cs_site_header .cs_main_header_right.cs_shop .cs_search_btn:hover,
.cs_site_header .cs_main_header_right.cs_shop .cs_login_btn:hover,
.cs_site_header .cs_main_header_right.cs_shop .cs_cart_btn:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_site_header .cs_main_header_right.cs_shop .cs_search_btn:hover img,
.cs_site_header .cs_main_header_right.cs_shop .cs_login_btn:hover img,
.cs_site_header .cs_main_header_right.cs_shop .cs_cart_btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.cs_site_header.cs_style_1 {
  background: rgba(255, 255, 255, 0.8);
}
.cs_site_header.cs_style_2 {
  padding: 24px 0 0;
}
.cs_site_header.cs_style_2.cs_sticky_active {
  padding: 5px 0 0;
  background-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.cs_site_header.cs_style_2.cs_sticky_active .cs_main_header {
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}
.cs_site_header.cs_style_2 .cs_top_header {
  padding: 0 24px;
  border-radius: 10px 10px 0 0;
}
.cs_site_header.cs_style_2 .cs_main_header {
  padding: 0 24px;
  border-radius: 0 0 10px 10px;
}
.cs_site_header.cs_style_3 {
  padding: 24px 0 0;
}
.cs_site_header.cs_style_3 .cs_site_brand {
  width: 135px;
  flex: none;
}
.cs_site_header.cs_style_3 .cs_search_btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}
.cs_site_header.cs_style_3 .cs_search_btn img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7470%) hue-rotate(116deg) brightness(109%) contrast(109%);
  transition: filter 0.2s ease;
}
.cs_site_header.cs_style_3 .cs_search_btn:hover {
  background-color: var(--white-color);
}
.cs_site_header.cs_style_3 .cs_search_btn:hover img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(8%) saturate(3737%) hue-rotate(175deg) brightness(103%) contrast(84%);
}
.cs_site_header.cs_style_3 .cs_main_header_left {
  height: 100%;
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 0 24px;
  color: var(--white-color);
  border-radius: 100px;
  background-color: rgba(11, 11, 11, 0.5);
  transition: all 0.3s ease;
}
.cs_site_header.cs_style_3 .cs_main_header_in {
  height: 75px;
  padding: 0 24px 0 0;
  border-radius: 100px;
}
.cs_site_header.cs_style_3 .cs_contact_list {
  display: flex;
  gap: 30px;
  align-items: center;
}
.cs_site_header.cs_style_3 .cs_contact_list li {
  display: flex;
  flex-direction: column;
}
.cs_site_header.cs_style_3.cs_sticky_active {
  padding: 5px 0 0;
  background-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.cs_site_header.cs_style_3.cs_sticky_active .cs_main_header_left {
  background-color: transparent;
}
.cs_site_header.cs_style_3.cs_sticky_active .cs_main_header_in {
  height: 75px;
  background-color: rgb(11, 11, 11);
}
.cs_site_header.cs_style_3 .cs_top_header {
  border-radius: 10px 10px 0 0;
}
.cs_site_header.cs_style_3 .cs_main_header {
  border-radius: 0 0 10px 10px;
}
.cs_site_header.cs_style_4 .cs_top_header_in img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(12%) saturate(804%) hue-rotate(176deg) brightness(98%) contrast(83%);
}
.cs_site_header.cs_style_4 .cs_header_btns_wrapper .cs_search_btn,
.cs_site_header.cs_style_4 .cs_header_btns_wrapper .cs_sidebar_btn {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  margin-right: 0;
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_site_header.cs_style_4 .cs_header_btns_wrapper .cs_search_btn:hover,
.cs_site_header.cs_style_4 .cs_header_btns_wrapper .cs_sidebar_btn:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_site_header.cs_style_4 .cs_header_btns_wrapper .cs_search_btn:hover img,
.cs_site_header.cs_style_4 .cs_header_btns_wrapper .cs_sidebar_btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(342deg) brightness(106%) contrast(105%);
}
.cs_site_header.cs_sticky_active {
  color: var(--primary-color);
  background-color: rgba(250, 250, 252, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}
.cs_site_header.cs_sticky_active .cs_main_header_in {
  height: 80px;
}
.cs_site_header .cs_header_btns_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs_site_header .cs_header_btns_wrapper .cs_search_btn {
  margin-right: 10px;
}
.cs_site_header .cs_header_btns_wrapper .cs_search_btn:hover img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2544%) hue-rotate(212deg) brightness(102%) contrast(91%);
}
@media (min-width: 1400px) {
  .cs_site_header .cs_header_btns_wrapper .cs_search_btn {
    margin-right: 20px;
  }
}
@media (min-width: 1280px) {
  .cs_site_header .container {
    max-width: 1644px;
  }
  .cs_site_header .cs_main_header_center,
  .cs_site_header .cs_nav,
  .cs_site_header .cs_nav_list_wrapper,
  .cs_site_header .cs_nav_list {
    height: inherit;
  }
  .cs_site_header .cs_nav_list {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
  .cs_site_header .cs_nav_list > li {
    height: inherit;
  }
  .cs_site_header .cs_nav_list > li a {
    display: inline-flex;
    position: relative;
    align-items: center;
    height: inherit;
  }
  .cs_site_header .cs_nav_list a:hover {
    color: var(--accent-color);
  }
  .cs_site_header .menu-item-has-children {
    position: relative;
  }
  .cs_site_header .menu-item-has-children > a {
    position: relative;
    padding-right: 20px;
  }
  .cs_site_header .menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 7 Free";
    font-size: 12px;
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .cs_site_header .menu-item-has-children ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    list-style: none;
    pointer-events: none;
    transform: scale(0, 0);
    transform-origin: bottom right;
    color: var(--secondary-color);
    background: var(--white-color);
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    transition: transform 0.3s cubic-bezier(0.55, 0.46, 0.45, 0.54), opacity 0.3s ease;
  }
  .cs_site_header .menu-item-has-children ul a {
    display: block;
    padding: 6px 20px;
  }
  .cs_site_header .menu-item-has-children:hover {
    color: var(--accent-color);
  }
  .cs_site_header .menu-item-has-children:hover ul {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transform: scale(1, 1);
    transform-origin: top left;
    transition: transform 0.3s cubic-bezier(0.55, 0.46, 0.45, 0.54);
  }
  .cs_site_header .cs_close_nav {
    display: none;
  }
}
@media (max-width: 1279px) {
  .cs_site_header.cs_style_3 .cs_main_header_left {
    padding: 0 0 0 24px;
    background-color: transparent;
  }
  .cs_site_header.cs_style_3 .cs_main_header_in {
    background-color: rgba(11, 11, 11, 0.5);
  }
  .cs_site_header .container {
    max-width: 100%;
  }
  .cs_site_header .cs_main_header_in {
    height: 80px !important;
  }
  .cs_site_header .cs_site_brand,
  .cs_site_header .cs_main_header_right {
    position: relative;
    z-index: 1001;
  }
  .cs_site_header .cs_nav_list_wrapper {
    width: 100%;
    height: 100vh;
    padding: 60px 15px 30px;
    background-color: var(--white-color);
    color: var(--primary-color);
    position: fixed;
    inset: 0;
    z-index: 10000;
    transform: scale(0, 0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.55, 0.46, 0.45, 0.54), opacity 0.3s ease;
  }
  .cs_site_header .cs_nav_list_wrapper.active {
    transform: scale(1, 1);
    transform-origin: top left;
    transition: transform 0.3s cubic-bezier(0.55, 0.46, 0.45, 0.54);
  }
  .cs_site_header .cs_nav_list {
    height: 100%;
    line-height: 1.6em;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .cs_site_header .cs_nav_list::-webkit-scrollbar {
    display: none;
  }
  .cs_site_header .cs_nav_list > li {
    width: 100%;
    margin-right: 0;
  }
  .cs_site_header .cs_nav_list ul {
    padding-left: 15px;
    display: none;
    list-style: none;
  }
  .cs_site_header .cs_nav_list a {
    display: block;
    padding: 12px 15px;
    line-height: 16px;
  }
  .cs_site_header .menu-item-has-children {
    position: relative;
  }
  .cs_site_header .menu-item-has-children:after {
    display: none;
  }
  .cs_site_header .cs_main_header_right {
    padding-right: 40px;
  }
  .cs_site_header .cs_right_nav_list {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .cs_site_header .cs_menu_toggle {
    display: inline-block;
  }
  .cs_site_header .cs_menu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }
  .cs_site_header .cs_menu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }
  .cs_site_header .cs_menu_dropdown_toggle span:before, .cs_site_header .cs_menu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    transition: all 0.3s ease;
  }
  .cs_site_header .cs_menu_dropdown_toggle span:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .cs_site_header .cs_menu_dropdown_toggle.active span:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .cs_site_header .cs_close_nav {
    width: 30px;
    height: 2px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    z-index: 1005;
    font-size: 40px;
    color: var(--primary-color);
    background-color: var(--primary-color);
    transition: all 0.3s ease;
  }
  .cs_site_header .cs_close_nav::before {
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    background-color: currentColor;
  }
  .cs_site_header .cs_close_nav.hover {
    transform: translateX(-50%) rotate(-45deg) scale(1.1);
    color: var(--danger-color);
  }
}
@media (max-width: 767px) {
  .cs_site_header .cs_main_header_in {
    height: 60px !important;
  }
  .cs_site_header .cs_main_header_left {
    width: 100px;
  }
  .cs_site_header .cs_header_btns_wrapper .cs_search_btn {
    margin-right: 0;
  }
  .cs_site_header .cs_menu_toggle {
    top: 18px;
    right: 12px;
    width: 20px;
  }
  .cs_site_header .cs_menu_toggle span:before {
    margin-top: -7px;
  }
  .cs_site_header .cs_menu_toggle span:after {
    margin-top: 7px;
  }
  .cs_site_header.cs_style_2 {
    padding: 5px 0 0 !important;
  }
  .cs_site_header.cs_style_2 .cs_main_header {
    border-radius: 10px;
    padding: 0 12px;
  }
  .cs_site_header.cs_style_3 {
    padding-top: 5px;
  }
  .cs_site_header.cs_style_3 .cs_main_header_left {
    padding-left: 12px;
  }
  .cs_site_header.cs_style_3 .cs_main_header_right {
    padding-right: 0;
  }
  .cs_site_header .cs_top_header {
    display: none;
  }
  .cs_site_header .cs_main_header_right .cs_btn_style_1,
  .cs_site_header .cs_main_header_right .cs_btn_style_2,
  .cs_site_header .cs_main_header_right .cs_contact_list {
    display: none;
  }
  .cs_site_header .cs_main_header_right.cs_shop {
    padding-right: 35px;
  }
  .cs_site_header .cs_main_header_right.cs_shop .cs_header_btns_wrapper {
    gap: 5px;
  }
  .cs_site_header .cs_main_header_right.cs_shop .cs_search_btn,
  .cs_site_header .cs_main_header_right.cs_shop .cs_login_btn,
  .cs_site_header .cs_main_header_right.cs_shop .cs_cart_btn {
    width: 40px;
    height: 40px;
  }
  .cs_site_header.cs_style_4 .cs_header_btns_wrapper .cs_search_btn,
  .cs_site_header.cs_style_4 .cs_header_btns_wrapper .cs_sidebar_btn {
    width: 40px;
    height: 40px;
  }
}

/*===========================================
 Top Header
=============================================*/
.cs_top_header_in {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
}
.cs_top_header_in .cs_top_header_left,
.cs_top_header_in .cs_top_header_right {
  height: 100%;
}
.cs_top_header_in .cs_contact_list {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.cs_top_header_in .cs_contact_list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs_top_header_in .cs_contact_list a:hover {
  text-decoration: underline;
}
.cs_top_header_in .cs_contact_item,
.cs_top_header_in .cs_language_select {
  height: 100%;
  display: flex;
  align-items: center;
}
.cs_top_header_in .cs_language_switcher {
  width: 130px;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.cs_top_header_in .cs_language_switcher::after {
  content: "\f078";
  font-size: 10px;
  font-weight: 900;
  position: absolute;
  right: 10px;
  font-family: "Font Awesome 7 Free";
}
.cs_top_header_in .cs_language_dropdown {
  width: 80px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 10000;
  padding: 0 0 10px;
  display: none;
  background-color: var(--white-color);
}
.cs_top_header_in .cs_language_dropdown button {
  width: 100%;
  display: block;
  padding: 5px 10px 0;
  color: var(--primary-color);
  text-transform: capitalize;
}
.cs_top_header_in .cs_language_dropdown button:hover {
  color: var(--accent-color);
}

/*====================================================
   Mobile Menu Styling
======================================================*/
.cs_menu_toggle {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 27px;
  right: 15px;
  z-index: 1002;
}
.cs_menu_toggle span,
.cs_menu_toggle span:before,
.cs_menu_toggle span:after {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  display: block;
}
.cs_menu_toggle span {
  margin: 0 auto;
  position: relative;
  top: 12px;
  transition-duration: 0s;
  transition-delay: 0.2s;
}
.cs_menu_toggle span:before {
  content: "";
  position: absolute;
  margin-top: -9px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}
.cs_menu_toggle span:after {
  content: "";
  position: absolute;
  margin-top: 9px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}
.cs_menu_toggle.active {
  color: inherit;
}
.cs_menu_toggle.active span {
  background-color: transparent;
  transition-delay: 0.2s;
}
.cs_menu_toggle.active span:before {
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}
.cs_menu_toggle.active span:after {
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}

.cs_menu_toggle,
.cs_menu_dropdown_toggle {
  display: none;
}

/*====================================================
 Header Search
======================================================*/
.cs_header_search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.cs_header_search .cs_close {
  font-size: 20px;
  color: var(--heading-color);
  transition: all 0.4s ease;
}
.cs_header_search .cs_close:hover {
  transform: rotate(90deg);
  color: var(--danger-color);
}
.cs_header_search .cs_header_search_in {
  position: relative;
  z-index: 1;
  background-color: var(--white-color);
  padding: 50px 0;
}
.cs_header_search .cs_search_form {
  width: 100%;
}
.cs_header_search .cs_search_form input {
  width: 100%;
  border: 1px solid var(--accent-color);
  padding: 5px 20px;
  outline: none;
  border-radius: 50px;
  padding: 10px 80px 10px 35px;
  height: 56px;
}
.cs_header_search .cs_search_btn {
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.cs_header_search .cs_search_btn:hover {
  filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2544%) hue-rotate(212deg) brightness(102%) contrast(91%);
}
.cs_header_search .cs_header_search_box {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.cs_header_search .cs_sidenav_overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(11, 11, 11, 0.5);
  height: 100%;
  width: 100%;
  cursor: zoom-out;
}
.cs_header_search.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .cs_header_search .cs_header_search_box {
    gap: 0 15px;
  }
}
@media (max-width: 575px) {
  .cs_header_search .cs_search_form input {
    padding: 10px 15px 10px 15px;
    font-size: 16px;
    height: 52px;
  }
  .cs_header_search .cs_search_btn {
    right: 15px;
  }
}

/*====================================================
  Side Header
======================================================*/
.cs_side_header {
  position: fixed;
  inset: 0;
  opacity: 0;
  z-index: 1000;
  visibility: hidden;
  transition: all 0.4s ease;
}
.cs_side_header .cs_side_header_overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  cursor: zoom-out;
  transition: all 0.3s ease;
  opacity: 0;
}
.cs_side_header .cs_side_header_in {
  width: min(100%, 500px);
  height: 100vh;
  background-color: var(--white-color);
  flex: none;
  margin-left: auto;
  overflow-y: auto;
  padding: 45px 24px 50px;
  position: relative;
  z-index: 2;
  right: -600px;
  transition: right 0.4s ease;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cs_side_header::-webkit-scrollbar {
  display: none;
}
.cs_side_header .cs_side_header_box {
  margin-bottom: 24px;
}
.cs_side_header .cs_side_header_box:last-child {
  margin-bottom: 0;
}
.cs_side_header .cs_gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.cs_side_header .cs_social_icons {
  display: flex;
  gap: 16px;
}
.cs_side_header .cs_social_icons a {
  width: 50px;
  height: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  background-color: var(--gray2-color);
}
.cs_side_header .cs_social_icons a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_side_header.active {
  opacity: 1;
  visibility: visible;
}
.cs_side_header.active .cs_side_header_overlay {
  opacity: 1;
}
.cs_side_header.active .cs_side_header_in {
  right: 0;
}
.cs_side_header .cs_contact_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_side_header .cs_contact_list li {
  padding-left: 34px;
  position: relative;
}
.cs_side_header .cs_contact_list li img {
  width: 20px;
  position: absolute;
  left: 0;
  top: 2px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(58%) saturate(3466%) hue-rotate(209deg) brightness(99%) contrast(93%);
}
.cs_side_header .cs_contact_list a:hover {
  color: var(--accent-color);
}
.cs_side_header .cs_close {
  position: absolute;
  right: 24px;
  top: 24px;
  height: 40px;
  width: 40px;
  padding: 10px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 2;
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_side_header .cs_close::before, .cs_side_header .cs_close::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: currentColor;
  left: 50%;
  top: 50%;
  margin-left: -25%;
  margin-top: -1px;
  transform: rotate(-45deg);
}
.cs_side_header .cs_close::before {
  transform: rotate(45deg);
}
.cs_side_header .cs_close:hover {
  color: var(--danger-color);
  transform: rotate(90deg);
  border-color: var(--danger-color);
}

/*================================================================
  07. Footer Section
==================================================================*/
.cs_footer_style_1, .cs_footer_style_3, .cs_footer_style_2 {
  display: block;
  width: 100%;
}
.cs_footer_style_1 .cs_footer_main, .cs_footer_style_3 .cs_footer_main, .cs_footer_style_2 .cs_footer_main {
  padding: 120px 0;
}
.cs_footer_style_1 .cs_text_widget, .cs_footer_style_3 .cs_text_widget, .cs_footer_style_2 .cs_text_widget {
  width: min(100%, 312px);
}
.cs_footer_style_1 .cs_text_widget p, .cs_footer_style_3 .cs_text_widget p, .cs_footer_style_2 .cs_text_widget p {
  color: var(--secondary2-color);
}
.cs_footer_style_1 .cs_social_btns_style_1, .cs_footer_style_3 .cs_social_btns_style_1, .cs_footer_style_2 .cs_social_btns_style_1 {
  gap: 10px;
}
.cs_footer_style_1 .cs_social_btns_style_1 a, .cs_footer_style_3 .cs_social_btns_style_1 a, .cs_footer_style_2 .cs_social_btns_style_1 a {
  color: var(--white-color);
  background-color: var(--secondary-color);
}
.cs_footer_style_1 .cs_social_btns_style_1 a:hover, .cs_footer_style_3 .cs_social_btns_style_1 a:hover, .cs_footer_style_2 .cs_social_btns_style_1 a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_footer_style_1 .cs_footer_widget_nav, .cs_footer_style_3 .cs_footer_widget_nav, .cs_footer_style_2 .cs_footer_widget_nav {
  display: flex;
  gap: 13px;
  flex-direction: column;
}
.cs_footer_style_1 .cs_footer_widget_nav a, .cs_footer_style_3 .cs_footer_widget_nav a, .cs_footer_style_2 .cs_footer_widget_nav a {
  position: relative;
  padding-left: 16px;
  color: var(--secondary2-color);
}
.cs_footer_style_1 .cs_footer_widget_nav a::before, .cs_footer_style_3 .cs_footer_widget_nav a::before, .cs_footer_style_2 .cs_footer_widget_nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
  background-color: currentColor;
}
.cs_footer_style_1 .cs_footer_widget_nav a:hover, .cs_footer_style_3 .cs_footer_widget_nav a:hover, .cs_footer_style_2 .cs_footer_widget_nav a:hover {
  color: var(--white-color);
}
.cs_footer_style_1 .cs_footer_contact, .cs_footer_style_3 .cs_footer_contact, .cs_footer_style_2 .cs_footer_contact {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.cs_footer_style_1 .cs_footer_contact li, .cs_footer_style_3 .cs_footer_contact li, .cs_footer_style_2 .cs_footer_contact li {
  position: relative;
  padding-left: 36px;
}
.cs_footer_style_1 .cs_footer_contact a, .cs_footer_style_3 .cs_footer_contact a, .cs_footer_style_2 .cs_footer_contact a,
.cs_footer_style_1 .cs_footer_contact span,
.cs_footer_style_3 .cs_footer_contact span,
.cs_footer_style_2 .cs_footer_contact span {
  display: inline-block;
  line-height: 1.4em;
}
.cs_footer_style_1 .cs_footer_contact a:hover, .cs_footer_style_3 .cs_footer_contact a:hover, .cs_footer_style_2 .cs_footer_contact a:hover {
  color: var(--accent-color);
}
.cs_footer_style_1 .cs_footer_contact img, .cs_footer_style_3 .cs_footer_contact img, .cs_footer_style_2 .cs_footer_contact img {
  width: 24px;
  height: 24px;
  flex: none;
  position: absolute;
  top: 2px;
  left: 0;
  filter: brightness(0) saturate(100%) invert(31%) sepia(44%) saturate(5483%) hue-rotate(210deg) brightness(98%) contrast(95%);
}
.cs_footer_style_1 .cs_footer_contact p, .cs_footer_style_3 .cs_footer_contact p, .cs_footer_style_2 .cs_footer_contact p {
  color: var(--secondary2-color);
}
.cs_footer_style_1 .cs_footer_bottom, .cs_footer_style_3 .cs_footer_bottom, .cs_footer_style_2 .cs_footer_bottom {
  padding: 0 0 40px;
}
.cs_footer_style_1 .cs_newsletter_style_1, .cs_footer_style_3 .cs_newsletter_style_1, .cs_footer_style_2 .cs_newsletter_style_1 {
  padding: 30px;
  display: grid;
  gap: 20px;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.cs_footer_style_1 .cs_newsletter_style_1 .cs_newsletter_subtitle, .cs_footer_style_3 .cs_newsletter_style_1 .cs_newsletter_subtitle, .cs_footer_style_2 .cs_newsletter_style_1 .cs_newsletter_subtitle {
  color: rgba(200, 221, 255, 0.8);
}
.cs_footer_style_1 .cs_newsletter_style_1 .cs_newsletter_inpu, .cs_footer_style_3 .cs_newsletter_style_1 .cs_newsletter_inpu, .cs_footer_style_2 .cs_newsletter_style_1 .cs_newsletter_inpu {
  width: 100%;
  border: 0;
  outline: 0;
  display: block;
  padding: 13px 20px 14px;
}
.cs_footer_style_1 .cs_newsletter_style_1 .cs_btn_style_1, .cs_footer_style_3 .cs_newsletter_style_1 .cs_btn_style_1, .cs_footer_style_2 .cs_newsletter_style_1 .cs_btn_style_1 {
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border: 1px solid var(--accent-color);
}
.cs_footer_style_1 .cs_newsletter_style_1 .cs_btn_style_1::before, .cs_footer_style_3 .cs_newsletter_style_1 .cs_btn_style_1::before, .cs_footer_style_2 .cs_newsletter_style_1 .cs_btn_style_1::before, .cs_footer_style_1 .cs_newsletter_style_1 .cs_btn_style_1::after, .cs_footer_style_3 .cs_newsletter_style_1 .cs_btn_style_1::after, .cs_footer_style_2 .cs_newsletter_style_1 .cs_btn_style_1::after {
  background-color: var(--accent-color);
}
.cs_footer_style_1 .cs_footer_bottom_content, .cs_footer_style_3 .cs_footer_bottom_content, .cs_footer_style_2 .cs_footer_bottom_content {
  display: flex;
  gap: 16px 20px;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
}
.cs_footer_style_1 .cs_footer_copyright, .cs_footer_style_3 .cs_footer_copyright, .cs_footer_style_2 .cs_footer_copyright {
  color: var(--secondary2-color);
}
.cs_footer_style_1 .cs_footer_copyright a, .cs_footer_style_3 .cs_footer_copyright a, .cs_footer_style_2 .cs_footer_copyright a {
  color: var(--accent-color);
}
.cs_footer_style_1 .cs_footer_copyright a:hover, .cs_footer_style_3 .cs_footer_copyright a:hover, .cs_footer_style_2 .cs_footer_copyright a:hover {
  text-decoration: underline;
}
.cs_footer_style_1 .cs_footer_bottom_nav, .cs_footer_style_3 .cs_footer_bottom_nav, .cs_footer_style_2 .cs_footer_bottom_nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cs_footer_style_1 .cs_footer_bottom_nav li, .cs_footer_style_3 .cs_footer_bottom_nav li, .cs_footer_style_2 .cs_footer_bottom_nav li {
  padding-left: 21px;
  position: relative;
  color: var(--secondary2-color);
}
.cs_footer_style_1 .cs_footer_bottom_nav li::before, .cs_footer_style_3 .cs_footer_bottom_nav li::before, .cs_footer_style_2 .cs_footer_bottom_nav li::before {
  content: "";
  width: 1px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 5px;
  background-color: currentColor;
}
.cs_footer_style_1 .cs_footer_bottom_nav li:first-child, .cs_footer_style_3 .cs_footer_bottom_nav li:first-child, .cs_footer_style_2 .cs_footer_bottom_nav li:first-child {
  padding-left: 0;
}
.cs_footer_style_1 .cs_footer_bottom_nav li:first-child::before, .cs_footer_style_3 .cs_footer_bottom_nav li:first-child::before, .cs_footer_style_2 .cs_footer_bottom_nav li:first-child::before {
  display: none;
}
.cs_footer_style_1 .cs_footer_bottom_nav li a:hover, .cs_footer_style_3 .cs_footer_bottom_nav li a:hover, .cs_footer_style_2 .cs_footer_bottom_nav li a:hover {
  color: var(--white-color);
}
@media (max-width: 1199px) {
  .cs_footer_style_1 .cs_social_btns_style_1 a, .cs_footer_style_3 .cs_social_btns_style_1 a, .cs_footer_style_2 .cs_social_btns_style_1 a {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 991px) {
  .cs_footer_style_1 .cs_footer_main, .cs_footer_style_3 .cs_footer_main, .cs_footer_style_2 .cs_footer_main {
    padding: 60px 0;
  }
  .cs_footer_style_1 .cs_text_widget, .cs_footer_style_3 .cs_text_widget, .cs_footer_style_2 .cs_text_widget {
    width: 100%;
  }
  .cs_footer_style_1 .cs_footer_contact, .cs_footer_style_3 .cs_footer_contact, .cs_footer_style_2 .cs_footer_contact {
    gap: 16px;
  }
  .cs_footer_style_1 .cs_newsletter_style_1, .cs_footer_style_3 .cs_newsletter_style_1, .cs_footer_style_2 .cs_newsletter_style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_footer_style_1 .cs_footer_bottom, .cs_footer_style_3 .cs_footer_bottom, .cs_footer_style_2 .cs_footer_bottom {
    padding: 0 0 24px;
  }
}
@media (max-width: 575px) {
  .cs_footer_style_1 .cs_newsletter_style_1, .cs_footer_style_3 .cs_newsletter_style_1, .cs_footer_style_2 .cs_newsletter_style_1 {
    padding: 30px 15px;
  }
  .cs_footer_style_1 .cs_newsletter_style_1 .cs_newsletter_form, .cs_footer_style_3 .cs_newsletter_style_1 .cs_newsletter_form, .cs_footer_style_2 .cs_newsletter_style_1 .cs_newsletter_form {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .cs_footer_style_1 .cs_newsletter_style_1 .cs_newsletter_inpu, .cs_footer_style_3 .cs_newsletter_style_1 .cs_newsletter_inpu, .cs_footer_style_2 .cs_newsletter_style_1 .cs_newsletter_inpu {
    padding: 13px 20px;
  }
  .cs_footer_style_1 .cs_newsletter_style_1 .cs_btn_style_1, .cs_footer_style_3 .cs_newsletter_style_1 .cs_btn_style_1, .cs_footer_style_2 .cs_newsletter_style_1 .cs_btn_style_1 {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    color: var(--white-color);
    border-color: var(--white-color);
  }
  .cs_footer_style_1 .cs_newsletter_style_1 .cs_btn_style_1::before, .cs_footer_style_3 .cs_newsletter_style_1 .cs_btn_style_1::before, .cs_footer_style_2 .cs_newsletter_style_1 .cs_btn_style_1::before, .cs_footer_style_1 .cs_newsletter_style_1 .cs_btn_style_1::after, .cs_footer_style_3 .cs_newsletter_style_1 .cs_btn_style_1::after, .cs_footer_style_2 .cs_newsletter_style_1 .cs_btn_style_1::after {
    display: none;
  }
  .cs_footer_style_1 .cs_newsletter_style_1 .cs_btn_style_1:hover, .cs_footer_style_3 .cs_newsletter_style_1 .cs_btn_style_1:hover, .cs_footer_style_2 .cs_newsletter_style_1 .cs_btn_style_1:hover {
    color: var(--accent-color);
    background-color: var(--white-color);
  }
}

/*================================================================
  Footer Section 2
==================================================================*/
.cs_footer_style_2, .cs_footer_style_3 {
  padding-top: 188px;
}
.cs_footer_style_2::before, .cs_footer_style_3::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.65);
}
.cs_footer_style_2 .cs_footer_main, .cs_footer_style_3 .cs_footer_main {
  width: calc(100% - 24px);
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 0 130px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(231% 135.8% at 0.9% 2.98%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
  backdrop-filter: blur(5px);
}
.cs_footer_style_2 .cs_newsletter_style_1, .cs_footer_style_3 .cs_newsletter_style_1 {
  margin-top: -67px;
  margin-bottom: 120px;
}
.cs_footer_style_2 .cs_footer_bottom, .cs_footer_style_3 .cs_footer_bottom {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .cs_footer_style_2, .cs_footer_style_3 {
    padding-top: 135px;
  }
  .cs_footer_style_2 .cs_footer_main, .cs_footer_style_3 .cs_footer_main {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 0 0 60px;
  }
  .cs_footer_style_2 .cs_newsletter_style_1, .cs_footer_style_3 .cs_newsletter_style_1 {
    margin-bottom: 60px;
  }
  .cs_footer_style_2 .cs_footer_bottom, .cs_footer_style_3 .cs_footer_bottom {
    padding: 24px 0;
  }
}

.cs_footer_style_3 {
  padding-top: 188px;
}
.cs_footer_style_3::before {
  display: none;
}
.cs_footer_style_3 .cs_footer_main {
  background: var(--white-color);
}
.cs_footer_style_3 .cs_social_btns_style_1 a {
  color: var(--primary-color);
  background-color: var(--gray4-color);
}
.cs_footer_style_3 .cs_footer_widget_nav a:hover {
  color: var(--accent-color);
}
.cs_footer_style_3 .cs_footer_bottom_nav li a:hover {
  color: var(--accent-color);
}

/*=============================================
  08. Slider (Swiper)
===============================================*/
.swiper .swiper-slide {
  width: auto;
  height: auto;
}

.swiper-slide-active .cs_hero_style_1 .cs_hero_parallax_bg {
  transform: scale(1.03);
  opacity: 1;
}
.swiper-slide-active .cs_hero_style_1 .cs_hero_subtitle,
.swiper-slide-active .cs_hero_style_1 .cs_hero_title,
.swiper-slide-active .cs_hero_style_1 .cs_hero_desc,
.swiper-slide-active .cs_hero_style_1 .cs_hero_btns {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.45, 0.35, 0.65, 0.55), opacity 1s ease;
}
.swiper-slide-active .cs_hero_style_1 .cs_hero_subtitle {
  transition-delay: 0.4s;
}
.swiper-slide-active .cs_hero_style_1 .cs_hero_title {
  transition-delay: 0.6s;
}
.swiper-slide-active .cs_hero_style_1 .cs_hero_desc {
  transition-delay: 0.8s;
}
.swiper-slide-active .cs_hero_style_1 .cs_hero_btns {
  transition-delay: 1s;
}

/*===============================================
 Equivalent Slider
=================================================*/
.cs_equipment_slider .swiper-slide-active .cs_equipment_info {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.45, 0.43, 0.515, 0.55);
}
.cs_equipment_slider .swiper-slide-active .cs_equipment_img img {
  transform: scale(1);
}
@media (max-width: 991px) {
  .cs_equipment_slider .swiper-slide-active .cs_equipment_info {
    bottom: 0;
  }
}

.cs_controller_1,
.cs_controller_2,
.cs_controller_3,
.cs_controller_4 {
  position: absolute;
  z-index: 5;
  right: calc((100vw - 1620px) / 2);
  bottom: 120px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.cs_controller_1 .slider-prev,
.cs_controller_1 .slider-next,
.cs_controller_2 .slider-prev,
.cs_controller_2 .slider-next,
.cs_controller_3 .slider-prev,
.cs_controller_3 .slider-next,
.cs_controller_4 .slider-prev,
.cs_controller_4 .slider-next {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 50%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.cs_controller_1 .slider-prev:hover,
.cs_controller_1 .slider-next:hover,
.cs_controller_2 .slider-prev:hover,
.cs_controller_2 .slider-next:hover,
.cs_controller_3 .slider-prev:hover,
.cs_controller_3 .slider-next:hover,
.cs_controller_4 .slider-prev:hover,
.cs_controller_4 .slider-next:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_controller_1 .swiper-pagination,
.cs_controller_2 .swiper-pagination,
.cs_controller_3 .swiper-pagination,
.cs_controller_4 .swiper-pagination {
  position: relative;
  bottom: initial;
  left: initial;
  text-wrap: nowrap;
}
.cs_controller_1 .swiper-pagination .swiper-pagination-current,
.cs_controller_2 .swiper-pagination .swiper-pagination-current,
.cs_controller_3 .swiper-pagination .swiper-pagination-current,
.cs_controller_4 .swiper-pagination .swiper-pagination-current {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary-color);
}
@media (max-width: 1643px) {
  .cs_controller_1,
  .cs_controller_2,
  .cs_controller_3,
  .cs_controller_4 {
    right: 12px;
  }
}
@media (max-width: 1399px) {
  .cs_controller_1,
  .cs_controller_2,
  .cs_controller_3,
  .cs_controller_4 {
    right: 12px;
  }
}
@media (max-width: 991px) {
  .cs_controller_1,
  .cs_controller_2,
  .cs_controller_3,
  .cs_controller_4 {
    right: 50%;
    bottom: 50px;
    transform: translateX(50%);
  }
}
@media (max-width: 575px) {
  .cs_controller_1 .slider-prev,
  .cs_controller_1 .slider-next,
  .cs_controller_2 .slider-prev,
  .cs_controller_2 .slider-next,
  .cs_controller_3 .slider-prev,
  .cs_controller_3 .slider-next,
  .cs_controller_4 .slider-prev,
  .cs_controller_4 .slider-next {
    width: 40px;
    height: 40px;
  }
  .cs_controller_1 .swiper-pagination .swiper-pagination-current,
  .cs_controller_2 .swiper-pagination .swiper-pagination-current,
  .cs_controller_3 .swiper-pagination .swiper-pagination-current,
  .cs_controller_4 .swiper-pagination .swiper-pagination-current {
    font-size: 32px;
  }
}

.cs_controller_2 {
  bottom: 25px;
  right: 0;
}
.cs_controller_2 .slider-prev,
.cs_controller_2 .slider-next {
  box-shadow: none;
  border: 1px solid rgba(75, 85, 99, 0.1);
}
.cs_controller_2 .slider-prev:hover,
.cs_controller_2 .slider-next:hover {
  border-color: var(--accent-color);
}
.cs_controller_2 .swiper-pagination {
  position: relative;
  bottom: initial;
  left: initial;
}
.cs_controller_2 .swiper-pagination .swiper-pagination-current {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary-color);
}

.cs_controller_3,
.cs_controller_4 {
  position: relative;
  bottom: initial;
  justify-content: center;
  margin-top: 24px;
}
.cs_controller_3::before, .cs_controller_3::after,
.cs_controller_4::before,
.cs_controller_4::after {
  content: "";
  height: 1px;
  width: calc(50% - 90px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  background: rgba(134, 148, 167, 0.5);
}
.cs_controller_3::before,
.cs_controller_4::before {
  left: 0;
}
.cs_controller_3::after,
.cs_controller_4::after {
  right: 0;
}
.cs_controller_3 .slider-prev img,
.cs_controller_4 .slider-prev img {
  transform: rotate(180deg);
}
.cs_controller_3 .slider-prev,
.cs_controller_3 .slider-next,
.cs_controller_4 .slider-prev,
.cs_controller_4 .slider-next {
  box-shadow: none;
  border: 1px solid rgba(134, 148, 167, 0.5);
  background-color: var(--gray4-color);
}
.cs_controller_3 .slider-prev img,
.cs_controller_3 .slider-next img,
.cs_controller_4 .slider-prev img,
.cs_controller_4 .slider-next img {
  transition: filter 0.3s ease;
}
.cs_controller_3 .slider-prev:hover,
.cs_controller_3 .slider-next:hover,
.cs_controller_4 .slider-prev:hover,
.cs_controller_4 .slider-next:hover {
  border-color: var(--accent-color);
}
.cs_controller_3 .slider-prev:hover img,
.cs_controller_3 .slider-next:hover img,
.cs_controller_4 .slider-prev:hover img,
.cs_controller_4 .slider-next:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(6372%) hue-rotate(64deg) brightness(120%) contrast(113%);
}
@media (max-width: 575px) {
  .cs_controller_3::before, .cs_controller_3::after,
  .cs_controller_4::before,
  .cs_controller_4::after {
    width: calc(50% - 60px);
  }
}

.cs_controller_4 {
  gap: 10px;
  justify-content: flex-end;
  margin-top: 0;
}
.cs_controller_4::before {
  width: calc(100% - 130px);
}
.cs_controller_4::after {
  display: none;
}

.cs_hero_slider_counter {
  font-weight: 600;
  font-size: 20px;
}

/*=======================================================
 Horizontal Slider
=========================================================*/
.cs_ticker_1, .cs_ticker_3, .cs_ticker_2 {
  width: 100%;
  padding: 24px 0;
  margin: 0 auto;
  overflow-x: hidden;
}
.cs_ticker_1 .cs_ticker_in, .cs_ticker_3 .cs_ticker_in, .cs_ticker_2 .cs_ticker_in {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
  gap: 50px;
}
.cs_ticker_1 .cs_ticker_content, .cs_ticker_3 .cs_ticker_content, .cs_ticker_2 .cs_ticker_content {
  animation: scrollingAnimation 40s linear infinite;
}
.cs_ticker_1:hover .cs_ticker_content, .cs_ticker_3:hover .cs_ticker_content, .cs_ticker_2:hover .cs_ticker_content {
  animation-play-state: paused;
}
.cs_ticker_1.cs_reverse .cs_ticker_content, .cs_reverse.cs_ticker_3 .cs_ticker_content, .cs_reverse.cs_ticker_2 .cs_ticker_content {
  animation-direction: alternate-reverse;
}
@media (max-width: 991px) {
  .cs_ticker_1 .cs_ticker_in, .cs_ticker_3 .cs_ticker_in, .cs_ticker_2 .cs_ticker_in {
    gap: 24px;
    animation-duration: 24s;
  }
}

.cs_ticker_2 {
  padding: 120px 0 140px;
  overflow: visible;
}
.cs_ticker_2 .cs_ticker_item {
  flex: none;
}
.cs_ticker_2 .cs_ticker_bg {
  inset: 0;
  z-index: 0;
  filter: blur(112px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1399px) {
  .cs_ticker_2 {
    padding: 70px 0;
  }
}
@media (max-width: 991px) {
  .cs_ticker_2 .cs_ticker_bg {
    filter: blur(80px);
  }
}

.cs_ticker_3 {
  padding: 30px 0;
}

.cs_ticker_items_list,
.cs_ticker_text,
.cs_tech_items_list {
  display: flex;
  flex-wrap: nowrap;
  flex: none;
  gap: 50px;
}
.cs_ticker_items_list .cs_ticker_item,
.cs_ticker_text .cs_ticker_item,
.cs_tech_items_list .cs_ticker_item {
  display: flex;
  gap: 50px;
  text-shadow: -1px -1px 0 rgba(31, 41, 55, 0.05), 1px -1px 0 rgba(31, 41, 55, 0.05), -1px 1px 0 rgba(31, 41, 55, 0.05), 1px 1px 0 rgba(31, 41, 55, 0.05), 0 2px 8px rgba(31, 41, 55, 0.15);
}
.cs_ticker_items_list .cs_ticker_item span,
.cs_ticker_items_list .cs_ticker_item img,
.cs_ticker_text .cs_ticker_item span,
.cs_ticker_text .cs_ticker_item img,
.cs_tech_items_list .cs_ticker_item span,
.cs_tech_items_list .cs_ticker_item img {
  flex: none;
  display: block;
}
.cs_ticker_items_list .cs_ticker_item.cs_shadow_none,
.cs_ticker_text .cs_ticker_item.cs_shadow_none,
.cs_tech_items_list .cs_ticker_item.cs_shadow_none {
  text-shadow: none;
}
.cs_ticker_items_list .cs_ticker_item,
.cs_ticker_text .cs_ticker_item,
.cs_tech_items_list .cs_ticker_item {
  line-height: 1.2em;
  font-family: var(--primary-font);
  color: rgba(134, 148, 167, 0.5);
}
.cs_ticker_items_list .cs_ticker_item.cs_white_color,
.cs_ticker_text .cs_ticker_item.cs_white_color,
.cs_tech_items_list .cs_ticker_item.cs_white_color {
  color: var(--white-color);
}
@media (max-width: 991px) {
  .cs_ticker_items_list,
  .cs_ticker_text,
  .cs_tech_items_list {
    gap: 24px;
  }
  .cs_ticker_items_list .cs_ticker_item,
  .cs_ticker_text .cs_ticker_item,
  .cs_tech_items_list .cs_ticker_item {
    font-size: 50px;
    gap: 24px;
  }
  .cs_ticker_items_list .cs_ticker_item.cs_fs_20,
  .cs_ticker_text .cs_ticker_item.cs_fs_20,
  .cs_tech_items_list .cs_ticker_item.cs_fs_20 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .cs_ticker_items_list .cs_ticker_item,
  .cs_ticker_text .cs_ticker_item,
  .cs_tech_items_list .cs_ticker_item {
    font-size: 32px;
  }
}

@keyframes scrollingAnimation {
  100% {
    transform: translateX(-100%);
  }
}
/*=======================================================
 Technologies Ticker
=========================================================*/
.cs_technologies_section {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_technologies_section {
    padding: 70px 0;
  }
}

.cs_tech_ticker_wrap {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.cs_tech_ticker_wrap .cs_ticker_1 .cs_ticker_in, .cs_tech_ticker_wrap .cs_ticker_2 .cs_ticker_in, .cs_tech_ticker_wrap .cs_ticker_3 .cs_ticker_in {
  gap: 12px;
}

.cs_tech_items_list {
  gap: 12px;
  margin: 0 6px;
}
.cs_tech_items_list .cs_tech_item {
  flex: none;
  display: flex;
  padding: 20px 30px;
  border-radius: 50px;
  text-align: center;
  line-height: 1.5em;
  border: 1px solid rgba(134, 148, 167, 0.5);
}

/*============================================================
  09. Spacing
==============================================================*/
.cs_mb_1 {
  margin-bottom: 1px;
}

.cs_mb_2 {
  margin-bottom: 2px;
}

.cs_mb_3 {
  margin-bottom: 3px;
}

.cs_mb_4 {
  margin-bottom: 4px;
}

.cs_mb_5 {
  margin-bottom: 5px;
}

.cs_mb_6 {
  margin-bottom: 6px;
}

.cs_mb_7 {
  margin-bottom: 7px;
}

.cs_mb_8 {
  margin-bottom: 8px;
}

.cs_mb_9 {
  margin-bottom: 9px;
}

.cs_mb_10 {
  margin-bottom: 10px;
}

.cs_mb_11 {
  margin-bottom: 11px;
}

.cs_mb_12 {
  margin-bottom: 12px;
}

.cs_mb_13 {
  margin-bottom: 13px;
}

.cs_mb_14 {
  margin-bottom: 14px;
}

.cs_mb_15 {
  margin-bottom: 15px;
}

.cs_mb_16 {
  margin-bottom: 16px;
}

.cs_mb_17 {
  margin-bottom: 17px;
}

.cs_mb_18 {
  margin-bottom: 18px;
}

.cs_mb_19 {
  margin-bottom: 19px;
}

.cs_mb_20 {
  margin-bottom: 20px;
}

.cs_mb_21 {
  margin-bottom: 21px;
}

.cs_mb_22 {
  margin-bottom: 22px;
}

.cs_mb_23 {
  margin-bottom: 23px;
}

.cs_mb_24 {
  margin-bottom: 24px;
}

.cs_mb_25 {
  margin-bottom: 25px;
}

.cs_mb_26 {
  margin-bottom: 26px;
}

.cs_mb_27 {
  margin-bottom: 27px;
}

.cs_mb_28 {
  margin-bottom: 28px;
}

.cs_mb_29 {
  margin-bottom: 29px;
}

.cs_mb_30 {
  margin-bottom: 30px;
}

.cs_mb_31 {
  margin-bottom: 31px;
}

.cs_mb_32 {
  margin-bottom: 32px;
}

.cs_mb_33 {
  margin-bottom: 33px;
}

.cs_mb_34 {
  margin-bottom: 34px;
}

.cs_mb_35 {
  margin-bottom: 35px;
}

.cs_mb_36 {
  margin-bottom: 36px;
}

.cs_mb_37 {
  margin-bottom: 37px;
}

.cs_mb_38 {
  margin-bottom: 38px;
}

.cs_mb_39 {
  margin-bottom: 39px;
}

.cs_mb_40 {
  margin-bottom: 40px;
}

.cs_mb_41 {
  margin-bottom: 41px;
}

.cs_mb_42 {
  margin-bottom: 42px;
}

.cs_mb_43 {
  margin-bottom: 43px;
}

.cs_mb_44 {
  margin-bottom: 44px;
}

.cs_mb_45 {
  margin-bottom: 45px;
}

.cs_mb_46 {
  margin-bottom: 46px;
}

.cs_mb_47 {
  margin-bottom: 47px;
}

.cs_mb_48 {
  margin-bottom: 48px;
}

.cs_mb_49 {
  margin-bottom: 49px;
}

.cs_mb_50 {
  margin-bottom: 50px;
}

.cs_mb_51 {
  margin-bottom: 51px;
}

.cs_mb_52 {
  margin-bottom: 52px;
}

.cs_mb_53 {
  margin-bottom: 53px;
}

.cs_mb_54 {
  margin-bottom: 54px;
}

.cs_mb_55 {
  margin-bottom: 55px;
}

.cs_mb_56 {
  margin-bottom: 56px;
}

.cs_mb_57 {
  margin-bottom: 57px;
}

.cs_mb_58 {
  margin-bottom: 58px;
}

.cs_mb_59 {
  margin-bottom: 59px;
}

.cs_mb_60 {
  margin-bottom: 60px;
}

.cs_mb_61 {
  margin-bottom: 61px;
}

.cs_mb_62 {
  margin-bottom: 62px;
}

.cs_mb_63 {
  margin-bottom: 63px;
}

.cs_mb_64 {
  margin-bottom: 64px;
}

.cs_mb_65 {
  margin-bottom: 65px;
}

.cs_mb_66 {
  margin-bottom: 66px;
}

.cs_mb_67 {
  margin-bottom: 67px;
}

.cs_mb_68 {
  margin-bottom: 68px;
}

.cs_mb_69 {
  margin-bottom: 69px;
}

.cs_mb_70 {
  margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .cs_mb_lg_1 {
    margin-bottom: 1px;
  }
  .cs_mb_lg_2 {
    margin-bottom: 2px;
  }
  .cs_mb_lg_3 {
    margin-bottom: 3px;
  }
  .cs_mb_lg_4 {
    margin-bottom: 4px;
  }
  .cs_mb_lg_5 {
    margin-bottom: 5px;
  }
  .cs_mb_lg_6 {
    margin-bottom: 6px;
  }
  .cs_mb_lg_7 {
    margin-bottom: 7px;
  }
  .cs_mb_lg_8 {
    margin-bottom: 8px;
  }
  .cs_mb_lg_9 {
    margin-bottom: 9px;
  }
  .cs_mb_lg_10 {
    margin-bottom: 10px;
  }
  .cs_mb_lg_11 {
    margin-bottom: 11px;
  }
  .cs_mb_lg_12 {
    margin-bottom: 12px;
  }
  .cs_mb_lg_13 {
    margin-bottom: 13px;
  }
  .cs_mb_lg_14 {
    margin-bottom: 14px;
  }
  .cs_mb_lg_15 {
    margin-bottom: 15px;
  }
  .cs_mb_lg_16 {
    margin-bottom: 16px;
  }
  .cs_mb_lg_17 {
    margin-bottom: 17px;
  }
  .cs_mb_lg_18 {
    margin-bottom: 18px;
  }
  .cs_mb_lg_19 {
    margin-bottom: 19px;
  }
  .cs_mb_lg_20 {
    margin-bottom: 20px;
  }
  .cs_mb_lg_21 {
    margin-bottom: 21px;
  }
  .cs_mb_lg_22 {
    margin-bottom: 22px;
  }
  .cs_mb_lg_23 {
    margin-bottom: 23px;
  }
  .cs_mb_lg_24 {
    margin-bottom: 24px;
  }
  .cs_mb_lg_25 {
    margin-bottom: 25px;
  }
  .cs_mb_lg_26 {
    margin-bottom: 26px;
  }
  .cs_mb_lg_27 {
    margin-bottom: 27px;
  }
  .cs_mb_lg_28 {
    margin-bottom: 28px;
  }
  .cs_mb_lg_29 {
    margin-bottom: 29px;
  }
  .cs_mb_lg_30 {
    margin-bottom: 30px;
  }
  .cs_mb_lg_31 {
    margin-bottom: 31px;
  }
  .cs_mb_lg_32 {
    margin-bottom: 32px;
  }
  .cs_mb_lg_33 {
    margin-bottom: 33px;
  }
  .cs_mb_lg_34 {
    margin-bottom: 34px;
  }
  .cs_mb_lg_35 {
    margin-bottom: 35px;
  }
  .cs_mb_lg_36 {
    margin-bottom: 36px;
  }
  .cs_mb_lg_37 {
    margin-bottom: 37px;
  }
  .cs_mb_lg_38 {
    margin-bottom: 38px;
  }
  .cs_mb_lg_39 {
    margin-bottom: 39px;
  }
  .cs_mb_lg_40 {
    margin-bottom: 40px;
  }
  .cs_mb_lg_41 {
    margin-bottom: 41px;
  }
  .cs_mb_lg_42 {
    margin-bottom: 42px;
  }
  .cs_mb_lg_43 {
    margin-bottom: 43px;
  }
  .cs_mb_lg_44 {
    margin-bottom: 44px;
  }
  .cs_mb_lg_45 {
    margin-bottom: 45px;
  }
  .cs_mb_lg_46 {
    margin-bottom: 46px;
  }
  .cs_mb_lg_47 {
    margin-bottom: 47px;
  }
  .cs_mb_lg_48 {
    margin-bottom: 48px;
  }
  .cs_mb_lg_49 {
    margin-bottom: 49px;
  }
  .cs_mb_lg_50 {
    margin-bottom: 50px;
  }
}
/*================================================================
  10. Video Modal
==================================================================*/
.cs_video_popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  transition-delay: 0.3s;
}

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

.cs_video_popup-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  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;
  transition: all 0.4s ease-out;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}

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

.cs_video_popup-content:after {
  content: "";
  display: inline-block;
  height: calc(100% + 1px);
  vertical-align: middle;
}

.cs_video_popup_container {
  display: inline-block;
  position: relative;
  text-align: left;
  background: var(--white-color);
  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;
  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: var(--white-color);
  margin-left: -10px;
  transform: rotate(-45deg);
  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: var(--white-color);
  margin-left: -10px;
  transform: rotate(45deg);
  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*/
/*================================================================
  11. Hero Section
==================================================================*/
.cs_hero_style_1 {
  height: 100vh;
  max-height: 1080px;
  position: relative;
  padding: 180px 0 120px;
  display: flex;
  align-items: flex-end;
}
.cs_hero_style_1 .cs_hero_content_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.cs_hero_style_1 .cs_hero_parallax_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: transform 2s ease, opacity 2s ease;
}
.cs_hero_style_1 .cs_hero_parallax_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(40% 62.5% at 70.57% 40.5%, rgba(200, 221, 255, 0) 62.5%, rgba(200, 221, 255, 0.8) 100%);
}
.cs_hero_style_1 .container {
  max-width: 1644px;
}
.cs_hero_style_1 .cs_hero_content {
  width: min(66%, 950px);
  position: relative;
  z-index: 1;
}
.cs_hero_style_1 .cs_hero_content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 910px;
  background: rgba(255, 255, 255, 0.9);
  filter: blur(132px);
  z-index: 0;
}
.cs_hero_style_1 .cs_hero_content > * {
  position: relative;
  z-index: 1;
}
.cs_hero_style_1 .cs_hero_subtitle,
.cs_hero_style_1 .cs_hero_title,
.cs_hero_style_1 .cs_hero_desc,
.cs_hero_style_1 .cs_hero_btns {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}
.cs_hero_style_1 .cs_hero_subtitle {
  margin-bottom: 17px;
}
.cs_hero_style_1 .cs_hero_title {
  margin-bottom: 24px;
}
.cs_hero_style_1 .cs_hero_desc {
  margin-bottom: 48px;
}
.cs_hero_style_1 .cs_hero_btns {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .cs_hero_style_1 {
    height: auto;
    padding: 260px 0 130px;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_1 {
    padding: 170px 0 130px;
  }
  .cs_hero_style_1 .cs_hero_title {
    margin-bottom: 20px;
  }
  .cs_hero_style_1 .cs_hero_desc {
    margin-bottom: 36px;
  }
  .cs_hero_style_1 .cs_hero_content_wrapper {
    flex-direction: column;
  }
  .cs_hero_style_1 .cs_hero_content {
    width: 100%;
  }
  .cs_hero_style_1 .cs_ib_card {
    width: 100%;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .cs_hero_style_1 {
    padding: 90px 0 130px;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_1 {
    padding: 90px 0 120px;
  }
  .cs_hero_style_1 .cs_hero_content_wrapper {
    flex-direction: column;
    color: var(--primary-color);
  }
  .cs_hero_style_1 .cs_hero_desc,
  .cs_hero_style_1 .cs_visiting_hours {
    font-size: 16px;
  }
  .cs_hero_style_1 .cs_ib_card {
    display: none;
  }
}

.cs_hero_style_2 {
  height: 100vh;
  max-height: 898px;
  padding: 200px 0 0;
}
.cs_hero_style_2 .cs_hero_content {
  display: grid;
  gap: 30px;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.cs_hero_style_2 .cs_hero_text {
  width: min(100%, 850px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 110px 0 50px 24px;
}
.cs_hero_style_2 .cs_hero_title {
  text-shadow: -1px -1px 0 rgba(31, 41, 55, 0.05), 1px -1px 0 rgba(31, 41, 55, 0.05), -1px 1px 0 rgba(31, 41, 55, 0.05), 1px 1px 0 rgba(31, 41, 55, 0.05), 0 2px 8px rgba(31, 41, 55, 0.15);
}
.cs_hero_style_2 .cs_hero_subtitle {
  padding: 5px 10px;
  border-radius: 5px;
  line-height: 1.43em;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background-color: var(--gray2-color);
}
.cs_hero_style_2 .cs_hero_img_wrapper {
  width: min(100%, 924px);
  margin-left: auto;
}
.cs_hero_style_2 .cs_hero_img_1 {
  width: 100%;
  height: 100%;
}
.cs_hero_style_2 .cs_hero_img_1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_hero_style_2 .cs_hero_img_2 {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding-left: 47%;
  padding-right: 6%;
}
.cs_hero_style_2 .cs_visiting_info {
  position: absolute;
  left: 24px;
  bottom: 30px;
}
.cs_hero_style_2 .cs_hero_shape_1 {
  left: 0;
  top: 60px;
  border-radius: 729px;
  filter: blur(100px);
}
.cs_hero_style_2 .cs_hero_shape_1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_hero_style_2 .cs_hero_shape_2 {
  left: 27%;
  top: 40%;
  filter: blur(100px);
}
.cs_hero_style_2 .cs_hero_shape_2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_hero_style_2 .cs_hero_shape_3 {
  top: 0;
  right: 0;
  filter: blur(100px);
}
.cs_hero_style_2 .cs_hero_shape_3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1520px) {
  .cs_hero_style_2 {
    height: auto;
    max-height: -moz-min-content;
    max-height: min-content;
  }
  .cs_hero_style_2 .cs_hero_title {
    font-size: 66px;
  }
}
@media (max-width: 1399px) {
  .cs_hero_style_2 .cs_hero_text {
    padding: 60px 0px 50px 24px;
  }
  .cs_hero_style_2 .cs_hero_title {
    font-size: 56px;
  }
}
@media (max-width: 1199px) {
  .cs_hero_style_2 {
    padding: 178px 0 0;
  }
  .cs_hero_style_2 .cs_hero_title {
    font-size: 49px;
  }
  .cs_hero_style_2 .cs_hero_shape_2 {
    display: none;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_2 {
    padding: 178px 0 24px;
  }
  .cs_hero_style_2 .cs_hero_content {
    grid-template-columns: 1fr;
  }
  .cs_hero_style_2 .cs_hero_text {
    width: 100%;
    padding: 0;
    order: 2;
  }
  .cs_hero_style_2 .cs_hero_img_wrapper {
    width: 100%;
  }
  .cs_hero_style_2 .cs_hero_img_1 {
    max-height: 450px;
    order: 1;
  }
  .cs_hero_style_2 .cs_hero_img_2 {
    padding-left: 57%;
    padding-right: 10%;
  }
  .cs_hero_style_2 .cs_hero_shape_1 {
    top: initial;
    bottom: 100px;
  }
}
@media (max-width: 767px) {
  .cs_hero_style_2 {
    padding: 80px 0 24px;
  }
  .cs_hero_style_2 .cs_hero_text {
    padding-left: 0;
  }
  .cs_hero_style_2 .cs_hero_title {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .cs_hero_style_2 .cs_hero_desc {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_2 .cs_hero_title {
    font-size: 32px;
  }
  .cs_hero_style_2 .cs_hero_desc {
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .cs_hero_style_2 .cs_hero_img_1 {
    max-height: 210px;
  }
}

.cs_hero_style_3 {
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  padding: 130px 0;
  display: flex;
  align-items: flex-end;
}
.cs_hero_style_3 .cs_hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(35% 73% at 30% 45%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 80%);
}
.cs_hero_style_3 .container {
  max-width: 1644px;
}
.cs_hero_style_3 .cs_hero_badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 1;
  justify-content: flex-end;
}
.cs_hero_style_3 .cs_hero_badge {
  width: 205px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.25);
}
.cs_hero_style_3 .cs_hero_rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cs_hero_style_3 .cs_hero_rating .cs_rating {
  width: 110px;
  color: #facc15;
  font-size: 16px;
  letter-spacing: 3px;
}
.cs_hero_style_3 .cs_hero_users {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.cs_hero_style_3 .cs_hero_avatars {
  display: flex;
  flex: none;
}
.cs_hero_style_3 .cs_hero_avatar {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
}
.cs_hero_style_3 .cs_hero_avatar + .cs_hero_avatar {
  margin-left: -12px;
}
.cs_hero_style_3 .cs_hero_avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_hero_style_3 .cs_hero_avatar.cs_hero_avatar_more {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cs_hero_style_3 .cs_hero_text {
  align-self: center;
  margin-left: auto;
  width: min(100%, 720px);
}
.cs_hero_style_3 .cs_hero_btns {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cs_hero_style_3 .cs_btn_style_1 img {
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7470%) hue-rotate(116deg) brightness(109%) contrast(109%);
}
.cs_hero_style_3 .cs_hero_features {
  width: min(100%, 270px);
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_hero_style_3 .cs_hero_features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.cs_hero_style_3 .cs_hero_features li img {
  width: 16px;
  height: 16px;
  flex: none;
}
@media (max-width: 1399px) {
  .cs_hero_style_3 {
    height: auto;
    align-items: flex-start;
    padding: 130px 0 100px;
  }
}
@media (max-width: 1199px) {
  .cs_hero_style_3 {
    padding: 120px 0 100px;
  }
  .cs_hero_style_3 .cs_hero_badges {
    margin-bottom: 30px;
  }
  .cs_hero_style_3 .cs_hero_title {
    font-size: 60px;
  }
  .cs_hero_style_3 .cs_hero_desc {
    margin-bottom: 24px;
  }
  .cs_hero_style_3 .cs_hero_features {
    position: initial;
    gap: 10px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_3 {
    padding: 120px 0 50px;
  }
  .cs_hero_style_3 .cs_hero_overlay {
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.55) 0%, rgba(31, 41, 55, 0.65) 60%, rgba(31, 41, 55, 0.8) 100%);
  }
  .cs_hero_style_3 .cs_hero_badges {
    justify-content: flex-start;
  }
  .cs_hero_style_3 .cs_hero_text {
    text-align: left;
    margin-left: 0;
    max-width: 100%;
  }
  .cs_hero_style_3 .cs_hero_btns {
    justify-content: flex-start;
  }
  .cs_hero_style_3 .cs_hero_title {
    font-size: 48px;
  }
  .cs_hero_style_3 .cs_hero_desc br {
    display: none;
  }
}
@media (max-width: 767px) {
  .cs_hero_style_3 {
    padding: 90px 0 50px;
  }
  .cs_hero_style_3 .cs_hero_badges {
    display: none;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_3 .cs_hero_title {
    font-size: 32px;
  }
  .cs_hero_style_3 .cs_hero_title br {
    display: none;
  }
  .cs_hero_style_3 .cs_hero_desc {
    font-size: 16px;
  }
  .cs_hero_style_3 .cs_hero_btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .cs_hero_style_3 .cs_hero_btn_book,
  .cs_hero_style_3 .cs_hero_btns .cs_btn_style_1 {
    justify-content: center;
  }
}

.cs_hero_style_4 {
  position: relative;
  padding: 208px 0 120px;
}
.cs_hero_style_4 .cs_hero_in {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 2.5fr 1.25fr;
}
.cs_hero_style_4 .cs_hero_heading {
  width: min(100%, 760px);
}
.cs_hero_style_4 .cs_hero_image {
  width: min(100%, 350px);
}
.cs_hero_style_4 .cs_hero_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cs_hero_style_4 .cs_hero_meta {
  max-width: 350px;
  margin-left: auto;
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: flex-end;
}
.cs_hero_style_4 .cs_hero_users {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 5px 20px 5px 5px;
  border-radius: 50px;
}
.cs_hero_style_4 .cs_hero_avatars {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs_hero_style_4 .cs_hero_avatars li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--white-color);
  flex: none;
}
.cs_hero_style_4 .cs_hero_avatars li + li {
  margin-left: -12px;
}
.cs_hero_style_4 .cs_hero_avatars li.cs_hero_avatars_count {
  background-color: var(--accent-color);
  color: var(--white-color);
  padding: 10px;
}
.cs_hero_style_4 .cs_hero_avatars li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 1200px) {
  .cs_hero_style_4 .container {
    max-width: 1644px;
  }
}
@media (max-width: 1500px) {
  .cs_hero_style_4 .cs_hero_title {
    font-size: 56px;
  }
}
@media (max-width: 1399px) {
  .cs_hero_style_4 .cs_hero_in {
    grid-template-columns: 1fr 2.5fr 1.4fr;
  }
  .cs_hero_style_4 .cs_hero_title {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .cs_hero_style_4 {
    padding: 170px 0 100px;
  }
  .cs_hero_style_4 .cs_hero_in {
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }
  .cs_hero_style_4 .cs_hero_heading {
    width: 100%;
    order: 1;
    grid-column: auto/span 2;
  }
  .cs_hero_style_4 .cs_hero_image {
    order: 2;
    width: 100%;
  }
  .cs_hero_style_4 .cs_hero_meta {
    order: 3;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_4 {
    padding: 150px 0 70px;
  }
  .cs_hero_style_4 .cs_hero_title {
    font-size: 42px;
  }
  .cs_hero_style_4 .cs_hero_avatars {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .cs_hero_style_4 .cs_hero_avatars li {
    width: 40px;
    height: 40px;
  }
  .cs_hero_style_4 .cs_hero_avatars li.cs_hero_avatars_count {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .cs_hero_style_4 {
    padding: 80px 0 50px;
  }
  .cs_hero_style_4 .cs_hero_in {
    align-items: center;
    grid-template-columns: 1fr;
  }
  .cs_hero_style_4 .cs_hero_heading {
    grid-column: auto/span 1;
  }
  .cs_hero_style_4 .cs_hero_title {
    font-size: 36px;
  }
  .cs_hero_style_4 .cs_hero_meta {
    max-width: 100%;
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_4 .cs_hero_title {
    font-size: 32px;
  }
}

.cs_hero_style_5 {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 1080px;
  padding: 112px 0 0;
  display: flex;
  align-items: flex-end;
}
.cs_hero_style_5 .cs_hero_pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
}
.cs_hero_style_5 .container {
  height: 100%;
  position: relative;
  z-index: 1;
  max-width: 1644px;
}
.cs_hero_style_5 .cs_hero_in {
  width: 100%;
  height: 100%;
  padding: 120px 0;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.cs_hero_style_5 .cs_hero_left {
  width: min(100%, 670px);
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 80px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.cs_hero_style_5 .cs_hero_title span {
  color: var(--accent-color);
}
.cs_hero_style_5 .cs_hero_bottom_info {
  max-width: 576px;
  display: flex;
  gap: 24px;
  justify-content: flex-start;
}
.cs_hero_style_5 .cs_hero_bottom_img {
  max-width: 240px;
  flex: none;
  overflow: hidden;
}
.cs_hero_style_5 .cs_hero_bottom_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cs_hero_style_5 .cs_hero_intro_text {
  height: 100%;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
}
.cs_hero_style_5 .cs_hero_image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 100%;
  max-width: 1112px;
  display: flex;
}
.cs_hero_style_5 .cs_hero_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cs_hero_style_5 .cs_hero_image_main {
  display: block;
  transform: translate3d(calc(var(--mx) * 14px), calc(var(--my) * 14px), 0) scale(1.04);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.cs_hero_style_5 .cs_hero_info {
  position: relative;
  z-index: 1;
  margin-left: auto;
  display: flex;
  gap: 14px;
  flex-direction: column;
}
.cs_hero_style_5 .cs_hero_info_card {
  width: 210px;
  padding: 24px;
}
.cs_hero_style_5 .cs_hero_info_card_rating .cs_rating {
  font-size: 16px;
  letter-spacing: 4px;
  max-width: 110px;
}
.cs_hero_style_5 .cs_hero_info_card_users {
  animation: cs_hero5_float 4s linear infinite;
  animation-direction: alternate-reverse;
}
.cs_hero_style_5 .cs_hero_avatars {
  display: flex;
  align-items: center;
  list-style: none;
}
.cs_hero_style_5 .cs_hero_avatars li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--white-color);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_hero_style_5 .cs_hero_avatars li + li {
  margin-left: -12px;
}
.cs_hero_style_5 .cs_hero_avatars li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1600px) {
  .cs_hero_style_5 .cs_hero_image {
    width: 56%;
    right: 5%;
  }
}
@media (max-width: 1440px) {
  .cs_hero_style_5 .cs_hero_image {
    width: 62%;
  }
}
@media (max-width: 1399px) {
  .cs_hero_style_5 {
    height: auto;
  }
  .cs_hero_style_5 .cs_hero_in {
    padding: 120px 0 120px;
  }
  .cs_hero_style_5 .cs_hero_image {
    width: 58%;
  }
}
@media (max-width: 1199px) {
  .cs_hero_style_5 {
    padding: 150px 0 0;
  }
  .cs_hero_style_5 .cs_hero_image {
    max-width: 70%;
  }
}
@media (max-width: 991px) {
  .cs_hero_style_5 {
    padding: 100px 0 0;
  }
  .cs_hero_style_5 .cs_hero_in {
    padding: 0 0 50px;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .cs_hero_style_5 .cs_hero_info {
    margin-left: 0;
    width: 100%;
  }
  .cs_hero_style_5 .cs_hero_info_card {
    width: calc(50% - 7px);
  }
  .cs_hero_style_5 .cs_hero_left {
    width: 100%;
    gap: 30px;
  }
  .cs_hero_style_5 .cs_hero_info {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .cs_hero_style_5 .cs_hero_image {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cs_hero_style_5 {
    padding: 80px 0 0;
  }
  .cs_hero_style_5 .cs_hero_info {
    display: none;
  }
  .cs_hero_style_5 .cs_hero_image {
    display: none;
  }
}
@media (max-width: 575px) {
  .cs_hero_style_5 .cs_hero_bottom_info {
    width: 100%;
    flex-direction: column;
  }
  .cs_hero_style_5 .cs_hero_image {
    display: none;
  }
  .cs_hero_style_5 .cs_hero_bottom_img {
    max-width: 100%;
  }
}

/*========================================
  Quick Booking Card 
==========================================*/
.cs_ib_card {
  width: 290px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  z-index: 1;
  position: relative;
  padding: 31px 30px 30px;
  border-radius: 20px;
  transform: translateY(-80px);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.cs_ib_card .cs_header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cs_ib_card .cs_dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.cs_ib_card .cs_field_item {
  background: var(--white-color);
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.cs_ib_card .cs_field_value {
  border: 0;
  outline: 0;
}
.cs_ib_card .cs_field_value::-moz-placeholder {
  color: var(--primary-color);
}
.cs_ib_card .cs_field_value::placeholder {
  color: var(--primary-color);
}
.cs_ib_card .cs_btn_style_1:hover {
  color: var(--white-color);
  border-color: var(--white-color);
  background-color: var(--primary-color);
}
.cs_ib_card .cs_btn_style_1:hover::before, .cs_ib_card .cs_btn_style_1:hover::after {
  display: none;
}
.cs_ib_card .cs_btn_style_1:active {
  transform: scale(0.98);
}

@media (max-width: 991px) {
  .cs_hero_in {
    height: auto;
  }
  .cs_hero_form {
    width: 100%;
    max-width: 450px;
  }
}
/*================================================================
  Page Header Style 1
==================================================================*/
.cs_page_header_style_1 {
  padding: 320px 0 170px;
}
.cs_page_header_style_1 .cs_breadcrumb .breadcrumb-item {
  color: var(--primary-color);
}
.cs_page_header_style_1 .cs_breadcrumb .breadcrumb-item a {
  color: var(--primary-color);
}
.cs_page_header_style_1 .cs_breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}
.cs_page_header_style_1 .cs_breadcrumb .breadcrumb-item.active {
  color: var(--secondary-color);
}
.cs_page_header_style_1 .cs_breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 8px;
}
.cs_page_header_style_1 .cs_breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 8px;
  color: var(--secondary-color);
  content: "/";
}
@media (max-width: 1199px) {
  .cs_page_header_style_1 {
    padding: 200px 0 120px;
  }
}
@media (max-width: 991px) {
  .cs_page_header_style_1 {
    padding: 170px 0 50px;
  }
}
@media (max-width: 767px) {
  .cs_page_header_style_1 {
    padding: 100px 0 50px;
  }
}

/*===============================================================
 Animations
================================================================*/
@keyframes cs_hero5_float {
  50% {
    transform: translateY(-10px);
  }
}
/*================================================================
  12. About Section
==================================================================*/
.cs_about_style_1 {
  padding: 120px 0 85px;
}
.cs_about_style_1 .cs_about_img {
  width: calc(100% + 40px);
  transform: translateX(-150px);
}
.cs_about_style_1 .cs_about_img img {
  width: 100%;
}
.cs_about_style_1 .cs_about_rating {
  width: 238px;
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 20px;
}
.cs_about_style_1 .cs_about_rating .cs_rating_text {
  margin-bottom: 8px;
}
.cs_about_style_1 .cs_about_rating .cs_rating_value {
  margin-bottom: 12px;
}
.cs_about_style_1 .cs_rating_star {
  font-size: 24px;
  margin-bottom: 10px;
}
.cs_about_style_1 .cs_section_heading_style_1 {
  margin-bottom: 24px;
}
.cs_about_style_1 .cs_section_heading_style_1 .cs_section_subtitle {
  margin-bottom: 17px;
}
.cs_about_style_1 blockquote {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--primary-color);
  font-family: var(--secondary-font);
  padding: 10px;
  margin-bottom: 24px;
  border-radius: 10px;
  background: rgba(200, 221, 255, 0.8);
}
.cs_about_style_1 .cs_about_text {
  padding-left: 100px;
}
.cs_about_style_1 .cs_about_desc {
  margin-bottom: 48px;
}
.cs_about_style_1 .cs_btns_wrapper {
  display: flex;
  gap: 20px 30px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.cs_about_style_1 .cs_btn_style_1 {
  border: 1px solid var(--accent-color);
}
.cs_about_style_1 .cs_btn_style_1::before, .cs_about_style_1 .cs_btn_style_1::after {
  background-color: var(--accent-color);
}
.cs_about_style_1 .cs_btn_style_1:hover {
  color: var(--white-color);
}
.cs_about_style_1 .cs_trusted_by {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cs_about_style_1 .cs_avatar_wrapper {
  display: flex;
}
.cs_about_style_1 .cs_avatar {
  width: 50px;
  height: 50px;
  flex: none;
  margin-left: -10px;
  border: 2px solid var(--white-color);
}
.cs_about_style_1 .cs_avatar:first-child {
  margin-left: 0;
}
.cs_about_style_1 .cs_avatar img {
  width: 100%;
}
.cs_about_style_1 .cs_funfact_style_1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cs_about_style_1 .cs_funfact_style_1 .cs_funfact_item {
  position: relative;
}
.cs_about_style_1 .cs_funfact_style_1 .cs_funfact_item::after {
  content: "";
  width: 1px;
  height: 68px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: rgba(134, 148, 167, 0.5);
}
.cs_about_style_1 .cs_funfact_style_1 .cs_funfact_item:last-child {
  margin-left: auto;
}
.cs_about_style_1 .cs_funfact_style_1 .cs_funfact_item:last-child::after {
  display: none;
}
@media (max-width: 1650px) {
  .cs_about_style_1 .cs_about_img {
    transform: translateX(-80px);
  }
  .cs_about_style_1 .cs_about_text {
    padding-left: 60px;
  }
}
@media (max-width: 1500px) {
  .cs_about_style_1 .cs_about_img {
    width: calc(100% + 12px);
    transform: translateX(-30px);
  }
}
@media (max-width: 1399px) {
  .cs_about_style_1 .cs_about_img {
    width: 100%;
    transform: translateX(0);
  }
  .cs_about_style_1 .cs_about_text {
    padding-left: 0;
  }
  .cs_about_style_1 .cs_about_desc,
  .cs_about_style_1 .cs_btns_wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cs_about_style_1 {
    padding: 70px 0;
  }
}
@media (max-width: 575px) {
  .cs_about_style_1 .cs_funfact_style_1 {
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_about_style_1 .cs_funfact_style_1 .cs_funfact_item:last-child {
    margin-left: 0;
  }
  .cs_about_style_1 .cs_funfact_style_1 .cs_funfact_item::after {
    display: none;
  }
  .cs_about_style_1 .cs_btns_wrapper {
    flex-direction: column;
  }
  .cs_about_style_1 .cs_about_rating {
    padding: 20px 15px;
  }
}

.cs_about_style_2 {
  padding: 120px 0;
}
.cs_about_style_2 .cs_about_content {
  padding-left: 112px;
}
.cs_about_style_2 .cs_about_img {
  width: 100%;
}
.cs_about_style_2 .cs_about_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_about_style_2 .cs_about_features_list {
  display: grid;
  gap: 20px;
  margin-bottom: 58px;
  grid-template-columns: repeat(2, 1fr);
}
.cs_about_style_2 .cs_about_testimonial_wrap {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.cs_about_style_2 .cs_testimonial {
  min-width: 648px;
  padding: 24px;
}
.cs_about_style_2 .cs_testimonial .cs_quote_icon {
  position: absolute;
  right: 30px;
  bottom: 30px;
  border-radius: 0;
}
.cs_about_style_2 .cs_award {
  min-width: 312px;
  padding: 24px 24px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-end;
}
.cs_about_style_2 .cs_award .cs_award_icon {
  flex: none;
}
.cs_about_style_2 blockquote {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--primary-color);
  font-family: var(--secondary-font);
  margin-bottom: 48px;
}
.cs_about_style_2 .cs_about_shape_1 {
  top: -200px;
  right: 0;
  filter: blur(50px);
  z-index: -1;
}
@media (max-width: 1399px) {
  .cs_about_style_2 .cs_about_content {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .cs_about_style_2 .cs_about_features_list {
    gap: 12px;
    margin-bottom: 30px;
  }
  .cs_about_style_2 .cs_about_text {
    margin-bottom: 30px;
  }
  .cs_about_style_2 .cs_about_testimonial_wrap {
    flex-direction: column;
  }
  .cs_about_style_2 blockquote {
    margin-bottom: 20px;
  }
  .cs_about_style_2 .cs_testimonial {
    min-width: auto;
  }
  .cs_about_style_2 .cs_testimonial p {
    position: relative;
    z-index: 1;
  }
  .cs_about_style_2 .cs_testimonial .cs_quote_icon {
    right: 15px;
    bottom: 15px;
  }
  .cs_about_style_2 .cs_award {
    min-width: auto;
    padding: 24px;
  }
}
@media (max-width: 991px) {
  .cs_about_style_2 {
    padding: 70px 0 0;
  }
}
@media (max-width: 575px) {
  .cs_about_style_2 .cs_about_features_list {
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_about_style_2 .cs_award {
    gap: 15px;
    padding: 20px 15px;
  }
  .cs_about_style_2 .cs_testimonial {
    padding: 20px 15px;
  }
  .cs_about_style_2 .cs_testimonial .cs_quote_icon {
    display: none;
  }
}

/*====================================================
 About Section 3
======================================================*/
.cs_about_style_3, .cs_contact_section_1 {
  padding: 120px 0;
}
.cs_about_style_3 .cs_section_heading_style_1, .cs_contact_section_1 .cs_section_heading_style_1 {
  width: min(100%, 1196px);
  margin: 0 auto inherit;
}
.cs_about_style_3 .cs_about_img, .cs_contact_section_1 .cs_about_img {
  width: 100%;
  height: 100%;
  min-height: 330px;
}
.cs_about_style_3 .cs_about_img img, .cs_contact_section_1 .cs_about_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_about_style_3 .cs_funfact_style_1, .cs_contact_section_1 .cs_funfact_style_1 {
  width: calc(100% - 48px);
  max-width: 563px;
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 20px 0;
  grid-template-columns: repeat(2, auto);
  background: rgba(19, 109, 244, 0.7);
  padding: 15px 30px;
}
.cs_about_style_3 .cs_funfact_style_1 .cs_funfact_number, .cs_contact_section_1 .cs_funfact_style_1 .cs_funfact_number {
  line-height: 1em !important;
}
.cs_about_style_3 .cs_funfact_item, .cs_contact_section_1 .cs_funfact_item {
  position: relative;
}
.cs_about_style_3 .cs_funfact_item::after, .cs_contact_section_1 .cs_funfact_item::after {
  content: "";
  width: 1px;
  height: 68px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
}
.cs_about_style_3 .cs_funfact_item:last-child, .cs_contact_section_1 .cs_funfact_item:last-child {
  margin-left: auto;
}
.cs_about_style_3 .cs_funfact_item:last-child::after, .cs_contact_section_1 .cs_funfact_item:last-child::after {
  display: none;
}
.cs_about_style_3 .cs_about_content, .cs_contact_section_1 .cs_about_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cs_about_style_3 .cs_btn_style_2, .cs_contact_section_1 .cs_btn_style_2 {
  width: -moz-max-content;
  width: max-content;
  border-color: var(--primary-color);
}
.cs_about_style_3 .cs_btn_style_2 img, .cs_contact_section_1 .cs_btn_style_2 img {
  transition: filter 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.55);
  filter: brightness(0) saturate(100%) invert(13%) sepia(11%) saturate(1768%) hue-rotate(176deg) brightness(99%) contrast(92%);
}
.cs_about_style_3 .cs_btn_style_2:hover, .cs_contact_section_1 .cs_btn_style_2:hover {
  color: var(--white-color);
}
.cs_about_style_3 .cs_btn_style_2:hover img, .cs_contact_section_1 .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(105%) contrast(101%);
}
.cs_about_style_3 .cs_about_extras, .cs_contact_section_1 .cs_about_extras {
  display: grid;
  gap: 24px;
  align-items: stretch;
  margin-top: auto;
  grid-template-columns: minmax(140px, 180px) 1fr;
}
.cs_about_style_3 .cs_about_doctors_img, .cs_contact_section_1 .cs_about_doctors_img {
  width: 100%;
  height: 100%;
}
.cs_about_style_3 .cs_about_doctors_img img, .cs_contact_section_1 .cs_about_doctors_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.55);
}
.cs_about_style_3 .cs_about_doctors_img:hover img, .cs_contact_section_1 .cs_about_doctors_img:hover img {
  transform: scale(1.03);
}
.cs_about_style_3 .cs_about_hours, .cs_contact_section_1 .cs_about_hours {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs_about_style_3 .cs_about_hours_title, .cs_contact_section_1 .cs_about_hours_title {
  line-height: 1.2;
}
.cs_about_style_3 .cs_about_hours_list, .cs_contact_section_1 .cs_about_hours_list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.cs_about_style_3 .cs_about_hours_list li, .cs_contact_section_1 .cs_about_hours_list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  color: var(--secondary-color);
}
.cs_about_style_3 .cs_about_hours_list .cs_about_hours_day, .cs_contact_section_1 .cs_about_hours_list .cs_about_hours_day {
  color: var(--primary-color);
  font-weight: 500;
}
@media (max-width: 1199px) {
  .cs_about_style_3 .cs_about_extras, .cs_contact_section_1 .cs_about_extras {
    grid-template-columns: minmax(120px, 150px) 1fr;
  }
  .cs_about_style_3 .cs_about_hours, .cs_contact_section_1 .cs_about_hours {
    padding: 18px 20px;
  }
}
@media (max-width: 991px) {
  .cs_about_style_3, .cs_contact_section_1 {
    padding: 60px 0;
  }
  .cs_about_style_3 .cs_section_title, .cs_contact_section_1 .cs_section_title {
    font-size: 30px;
  }
  .cs_about_style_3 .cs_about_extras, .cs_contact_section_1 .cs_about_extras {
    grid-template-columns: minmax(140px, 200px) 1fr;
  }
}
@media (max-width: 575px) {
  .cs_about_style_3 .cs_funfact_style_1, .cs_contact_section_1 .cs_funfact_style_1 {
    padding: 15px;
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_about_style_3 .cs_funfact_item:last-child, .cs_contact_section_1 .cs_funfact_item:last-child {
    margin-left: 0;
  }
  .cs_about_style_3 .cs_funfact_item::after, .cs_contact_section_1 .cs_funfact_item::after {
    display: none;
  }
  .cs_about_style_3 .cs_about_extras, .cs_contact_section_1 .cs_about_extras {
    grid-template-columns: 1fr;
  }
}

/*====================================================
  About Us Style 4
======================================================*/
.cs_about_style_4 {
  padding: 120px 0;
}
.cs_about_style_4 .cs_about_heading {
  width: min(100%, 540px);
}
.cs_about_style_4 .cs_about_features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cs_about_style_4 .cs_about_features li {
  padding-left: 34px;
  position: relative;
}
.cs_about_style_4 .cs_about_features img {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
}
.cs_about_style_4 .cs_about_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.cs_about_style_4 .cs_about_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_about_style_4 .cs_experience_badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 15px 30px;
  background-color: rgba(19, 109, 244, 0.7);
}
.cs_about_style_4 .cs_experience_badge .cs_experience_number {
  line-height: 1em;
  margin-bottom: 2px;
  font-family: var(--primary-font);
}
.cs_about_style_4 .cs_about_content {
  padding-left: 110px;
}
.cs_about_style_4 .cs_about_desc {
  margin-bottom: 48px;
}
.cs_about_style_4 .cs_about_actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cs_about_style_4 .cs_btn_style_2 {
  border-color: var(--accent-color);
  color: var(--primary-color);
}
.cs_about_style_4 .cs_btn_style_2 img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(14%) saturate(1565%) hue-rotate(175deg) brightness(97%) contrast(90%);
}
.cs_about_style_4 .cs_btn_style_2:hover {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_about_style_4 .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(166deg) brightness(104%) contrast(101%);
}
.cs_about_style_4 .cs_about_quote {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cs_about_style_4 .cs_about_quote .cs_quote_icon {
  width: 50px;
  flex: none;
}
.cs_about_style_4 .cs_about_recognition {
  display: flex;
  gap: 16px;
  padding: 20px 10px;
}
.cs_about_style_4 .cs_about_recognition .cs_recognition_icon {
  width: 50px;
  flex: none;
  border-radius: 0;
}
.cs_about_style_4 .cs_about_recognition .cs_about_recognition_title {
  color: var(--secondary-color);
}
.cs_about_style_4 .cs_about_recognition .cs_about_recognition_desc {
  margin: 0;
  color: var(--secondary-color);
  font-size: 14px;
}
@media (max-width: 1399px) {
  .cs_about_style_4 .cs_about_content {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .cs_about_style_4 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .cs_about_style_4 {
    padding: 60px 0;
  }
  .cs_about_style_4 .cs_about_heading {
    width: 100%;
  }
  .cs_about_style_4 .cs_about_desc,
  .cs_about_style_4 .cs_about_actions {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .cs_about_style_4 .cs_about_features {
    grid-template-columns: 1fr;
  }
  .cs_about_style_4 .cs_about_actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cs_about_style_4 .cs_experience_badge {
    right: 16px;
    bottom: 16px;
    padding: 14px 18px;
  }
  .cs_about_style_4 .cs_about_recognition {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/*====================================================
  Before & After Transformations Section
======================================================*/
.cs_transform_section_1 {
  padding: 120px 0 0;
}
.cs_transform_section_1 .cs_transform_content {
  width: min(100%, 420px);
}
.cs_transform_section_1 .cs_transform_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1199px) {
  .cs_transform_section_1 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .cs_transform_section_1 {
    padding: 70px 0 0;
  }
  .cs_transform_section_1 .cs_transform_content {
    width: 100%;
  }
}

/*================================================================
  About Style 5
==================================================================*/
.cs_about_style_5, .cs_feature_section_5 {
  padding: 120px 0;
}
.cs_about_style_5 .cs_about_top, .cs_feature_section_5 .cs_about_top {
  margin-bottom: 56px;
}
.cs_about_style_5 .cs_about_desc, .cs_feature_section_5 .cs_about_desc {
  width: 59%;
  margin-left: auto;
}
.cs_about_style_5 .cs_accredited_badge, .cs_feature_section_5 .cs_accredited_badge {
  width: 140px;
  height: 140px;
  padding: 10px;
  position: absolute;
  top: -70px;
  left: -82px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_about_style_5 .cs_circular_text, .cs_feature_section_5 .cs_circular_text {
  animation: circularRotation 10s linear infinite;
}
.cs_about_style_5 .cs_call_btn, .cs_feature_section_5 .cs_call_btn {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px;
  transform: translate(-50%, -50%);
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.cs_about_style_5 .cs_call_btn img, .cs_feature_section_5 .cs_call_btn img {
  border-radius: 0;
  transition: transform 0.2s cubic-bezier(0.445, 0.5, 0.55, 1.5);
}
.cs_about_style_5 .cs_call_btn:hover img, .cs_feature_section_5 .cs_call_btn:hover img {
  transform: scale(1.03);
}
.cs_about_style_5 .cs_about_card, .cs_feature_section_5 .cs_about_card {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 24px;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.45, 0.45, 0.5, 0.55);
}
.cs_about_style_5 .cs_about_card:hover, .cs_feature_section_5 .cs_about_card:hover {
  transform: translateY(-4px);
}
.cs_about_style_5 .cs_card_icon, .cs_feature_section_5 .cs_card_icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_about_style_5 .cs_about_image, .cs_feature_section_5 .cs_about_image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cs_about_style_5 .cs_about_image img, .cs_feature_section_5 .cs_about_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.35, 0.45, 0.55, 0.65);
}
.cs_about_style_5 .cs_about_image:hover img, .cs_feature_section_5 .cs_about_image:hover img {
  transform: scale(1.03);
}
@media (max-width: 1199px) {
  .cs_about_style_5 .cs_about_card, .cs_feature_section_5 .cs_about_card {
    padding: 24px 15px;
  }
}
@media (max-width: 991px) {
  .cs_about_style_5, .cs_feature_section_5 {
    padding: 70px 0;
  }
  .cs_about_style_5 .cs_about_desc, .cs_feature_section_5 .cs_about_desc {
    width: 100%;
  }
  .cs_about_style_5 .cs_about_top, .cs_feature_section_5 .cs_about_top {
    margin-bottom: 40px;
  }
  .cs_about_style_5 .cs_about_card, .cs_feature_section_5 .cs_about_card {
    padding: 24px 15px;
  }
  .cs_about_style_5 .cs_accredited_badge, .cs_feature_section_5 .cs_accredited_badge {
    width: 110px;
    height: 110px;
    top: -40px;
    left: -67px;
  }
  .cs_about_style_5 .cs_call_btn, .cs_feature_section_5 .cs_call_btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .cs_about_style_5 .cs_accredited_badge, .cs_feature_section_5 .cs_accredited_badge {
    display: none;
  }
  .cs_about_style_5 .cs_card_icon, .cs_feature_section_5 .cs_card_icon {
    margin-left: 0;
  }
}

/*===============================================
 Features Section
=================================================*/
.cs_feature_section_5 .cs_about_card.cs_color_1 {
  background-color: #E4DDCD;
}
.cs_feature_section_5 .cs_about_card.cs_color_2 {
  background-color: #DBD5F7;
}
.cs_feature_section_5 .cs_about_card.cs_color_3 {
  background-color: #BFD4CD;
}
.cs_feature_section_5 .cs_about_card .cs_card_header {
  display: flex;
  gap: 24px;
  align-items: center;
}

/*================================================================
  13. Services Section
==================================================================*/
.cs_service_card_1 {
  width: 100%;
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 90px;
  background-position: right;
}
.cs_service_card_1 .cs_service_img {
  position: absolute;
  inset: 0;
}
.cs_service_card_1 .cs_service_content {
  width: min(100%, 450px);
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 24px 24px 40px;
}
.cs_service_card_1 .cs_service_header {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}
.cs_service_card_1 .cs_service_icon {
  width: 75px;
  height: 75px;
  padding: 12px 17px;
  position: relative;
}
.cs_service_card_1 .cs_service_icon::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  z-index: 0;
  border-radius: inherit;
  background-color: var(--accent-color);
}
.cs_service_card_1 .cs_service_icon img {
  width: 42px;
  position: relative;
  z-index: 1;
}
.cs_service_card_1 .cs_service_title a:hover {
  color: var(--accent-color);
}
.cs_service_card_1 .cs_service_desc {
  margin-bottom: 22px;
}
.cs_service_card_1 .cs_service_features {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.cs_service_card_1 .cs_service_features li {
  position: relative;
  padding-left: 26px;
}
.cs_service_card_1 .cs_service_features li img {
  position: absolute;
  left: 0;
  top: 8px;
}
.cs_service_card_1 .cs_service_btn {
  width: 100px;
  height: 100px;
  display: flex;
  font-size: 24px;
  position: absolute;
  right: 90px;
  bottom: 90px;
  z-index: 3;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cs_service_card_1 .cs_service_btn:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.cs_service_card_1:hover .cs_service_btn {
  transform: scale(1);
}
@media (max-width: 991px) {
  .cs_service_card_1 {
    padding: 50px 30px;
  }
  .cs_service_card_1 .cs_service_btn {
    right: 30px;
    bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cs_service_card_1 {
    padding: 0;
    flex-direction: column-reverse;
  }
  .cs_service_card_1 .cs_service_img {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: 10px 10px 0 0;
  }
  .cs_service_card_1 .cs_service_content {
    width: 100%;
    padding: 24px 15px;
    border-radius: 0 0 10px 10px;
  }
  .cs_service_card_1 .cs_service_header {
    gap: 15px;
  }
  .cs_service_card_1 .cs_service_btn {
    position: initial;
    width: 60px;
    height: 60px;
    padding: 10px;
  }
  .cs_service_card_1 .cs_service_icon {
    width: 60px;
    height: 60px;
  }
  .cs_service_card_1 .cs_service_icon img {
    width: 36px;
  }
}

.cs_service_card_2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100px;
  transition: height 0.6s ease, grid-template-columns 0.6s ease;
}
.cs_service_card_2 .cs_service_left {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 24px 100px 24px 24px;
}
.cs_service_card_2 .cs_service_text {
  height: 100%;
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.cs_service_card_2 .cs_short_desc {
  max-width: 506px;
}
.cs_service_card_2 .cs_btn_wrap {
  display: none;
  margin-top: auto;
}
.cs_service_card_2 .cs_btn_wrap .cs_btn_style_2 {
  transform: scale(0);
  border-width: 1px;
  border-color: var(--accent-color);
}
.cs_service_card_2 .cs_btn_wrap .cs_btn_style_2 img {
  transition: filter 0.3s ease;
}
.cs_service_card_2 .cs_btn_wrap .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_service_card_2 .cs_btn_wrap .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(6372%) hue-rotate(64deg) brightness(120%) contrast(113%);
}
.cs_service_card_2 .cs_service_img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0, 0);
  transition: transform 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.55);
}
.cs_service_card_2 .cs_service_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_service_card_2.active {
  height: 264px;
  grid-template-columns: repeat(2, 1fr);
}
.cs_service_card_2.active .cs_service_left {
  padding-right: 0;
}
.cs_service_card_2.active .cs_service_text {
  gap: 20px;
  flex-direction: column;
  align-items: flex-start;
}
.cs_service_card_2.active .cs_btn_wrap {
  display: block;
}
.cs_service_card_2.active .cs_btn_wrap .cs_btn_style_2 {
  transform: scale(1);
}
.cs_service_card_2.active .cs_service_img {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}
@media (max-width: 1199px) {
  .cs_service_card_2 {
    height: 130px;
  }
  .cs_service_card_2 .cs_service_left {
    padding: 24px;
  }
  .cs_service_card_2 .cs_service_text {
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  .cs_service_card_2 {
    height: 150px;
  }
  .cs_service_card_2 .cs_service_text {
    flex-direction: column;
    align-items: flex-start;
  }
  .cs_service_card_2 .cs_short_desc {
    max-width: 100%;
  }
  .cs_service_card_2.active {
    height: auto;
    display: flex;
    gap: 0;
    flex-direction: column-reverse;
  }
  .cs_service_card_2.active .cs_service_img {
    width: 100%;
    height: 100%;
    height: 260px;
    position: relative;
  }
}
@media (max-width: 575px) {
  .cs_service_card_2 {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .cs_service_card_2 .cs_service_text {
    flex: auto;
  }
  .cs_service_card_2 .cs_service_left {
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px !important;
  }
  .cs_service_card_2 .cs_service_icon {
    width: 40px;
    flex: none;
  }
  .cs_service_card_2 .cs_service_img {
    position: initial;
    height: auto !important;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
  }
  .cs_service_card_2 .cs_btn_wrap {
    display: block;
  }
  .cs_service_card_2 .cs_btn_wrap .cs_btn_style_2 {
    transform: scale(1);
  }
}

.cs_service_card_3 {
  width: min(100%, 760px);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cs_service_card_3.cs_color_1 {
  background-color: #e4ddcd;
}
.cs_service_card_3.cs_color_2 {
  background-color: #bfd4cd;
}
.cs_service_card_3.cs_color_3 {
  background-color: #cecddd;
}
.cs_service_card_3.cs_color_4 {
  background-color: #dbd5f7;
}
.cs_service_card_3.cs_color_5 {
  background-color: #d3e4ff;
}
.cs_service_card_3.cs_color_6 {
  background-color: #fff6eb;
}
.cs_service_card_3 .cs_card_heading {
  display: flex;
  gap: 15px 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cs_service_card_3 .cs_card_index {
  flex: none;
  display: inline-block;
  padding: 5px 20px;
  color: var(--primary-color);
}
.cs_service_card_3 .cs_card_title a:hover {
  color: var(--accent-color);
}
.cs_service_card_3 .cs_card_img {
  display: block;
  overflow: hidden;
}
.cs_service_card_3 .cs_card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.cs_service_card_3 .cs_card_desc {
  color: var(--secondary-color);
  line-height: 26px;
  max-width: 620px;
}
.cs_service_card_3 .cs_service_features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 120px;
}
.cs_service_card_3 .cs_service_features li {
  padding-left: 26px;
  position: relative;
}
.cs_service_card_3 .cs_service_features li img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 4px;
}
.cs_service_card_3 .cs_card_btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 75px;
  height: 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cs_service_card_3 .cs_card_btn img {
  width: 24px;
  flex: none;
}
.cs_service_card_3 .cs_card_btn:hover {
  background-color: var(--primary-color);
}
@media (max-width: 991px) {
  .cs_service_card_3 .cs_service_features {
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .cs_service_card_3 {
    padding: 24px 15px;
    border-radius: 10px;
  }
  .cs_service_card_3 .cs_card_img {
    border-radius: 10px;
  }
  .cs_service_card_3 .cs_card_img img {
    min-height: 150px;
  }
  .cs_service_card_3 .cs_card_index {
    padding: 5px 15px;
  }
  .cs_service_card_3 .cs_service_features {
    padding-right: 0;
  }
  .cs_service_card_3 .cs_card_btn {
    width: 55px;
    height: 55px;
    position: initial;
    bottom: initial;
    right: initial;
    margin-top: 24px;
    margin-left: auto;
  }
  .cs_service_card_3 .cs_card_btn img {
    width: 16px;
  }
}

/*================================================================
  Service Card 4
==================================================================*/
.cs_service_card_4, .cs_facility_card_1 {
  width: 100%;
  height: 100%;
  padding: 24px 10px 10px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cs_service_card_4 .cs_card_body, .cs_facility_card_1 .cs_card_body {
  padding-left: 14px;
  display: flex;
  flex-direction: column;
}
.cs_service_card_4 .cs_card_title a, .cs_facility_card_1 .cs_card_title a {
  color: inherit;
  transition: color 0.3s ease;
}
.cs_service_card_4 .cs_card_title a:hover, .cs_facility_card_1 .cs_card_title a:hover {
  color: var(--accent-color);
}
.cs_service_card_4 .cs_card_tags, .cs_facility_card_1 .cs_card_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cs_service_card_4 .cs_card_tags li, .cs_facility_card_1 .cs_card_tags li {
  font-size: 14px;
  line-height: 1.5em;
  border-radius: 50px;
  padding: 4px 10px 5px;
  background-color: var(--white-color);
}
.cs_service_card_4 .cs_card_img, .cs_facility_card_1 .cs_card_img {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: auto;
}
.cs_service_card_4 .cs_card_img > img, .cs_facility_card_1 .cs_card_img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(0.45, 0.3, 0.515, 0.55);
}
.cs_service_card_4 .cs_card_img:hover img, .cs_facility_card_1 .cs_card_img:hover img {
  transform: scale(1.03);
}
.cs_service_card_4 .cs_card_btn, .cs_facility_card_1 .cs_card_btn {
  width: 75px;
  height: 75px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  transition: all 0.3s ease;
}
.cs_service_card_4 .cs_card_btn img, .cs_facility_card_1 .cs_card_btn img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(2563%) hue-rotate(176deg) brightness(91%) contrast(90%);
  transition: filter 0.2s ease;
}
.cs_service_card_4 .cs_card_btn:hover, .cs_facility_card_1 .cs_card_btn:hover {
  background-color: var(--primary-color) !important;
}
.cs_service_card_4:hover, .cs_facility_card_1:hover {
  box-shadow: 0 24px 50px -28px rgba(31, 41, 55, 0.25);
}
.cs_service_card_4:hover .cs_card_btn, .cs_facility_card_1:hover .cs_card_btn {
  background-color: var(--accent-color);
}
.cs_service_card_4:hover .cs_card_btn img, .cs_facility_card_1:hover .cs_card_btn img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(221deg) brightness(104%) contrast(100%);
}
@media (max-width: 991px) {
  .cs_service_card_4 .cs_card_body, .cs_facility_card_1 .cs_card_body {
    padding-left: 5px;
  }
  .cs_service_card_4 .cs_card_btn, .cs_facility_card_1 .cs_card_btn {
    width: 56px;
    height: 56px;
  }
}

/*================================================================
  Service Grids
==================================================================*/
.cs_service_grid_1 {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

/*================================================================
  Service Section 1
==================================================================*/
.cs_service_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_service_section_1 {
    padding: 60px 0;
  }
}

/*================================================================
  Service Section 3
==================================================================*/
.cs_service_section_3 {
  padding: 120px 0;
}
.cs_service_section_3 .cs_section_subtitle {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  padding: 6px 14px;
  line-height: 1.4;
  border: 1px solid var(--accent-color);
}
.cs_service_section_3 .cs_service_menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs_service_section_3 .cs_service_menu_item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px;
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease;
}
.cs_service_section_3 .cs_service_menu_item.cs_active, .cs_service_section_3 .cs_service_menu_item:hover {
  background-color: var(--accent-color);
}
.cs_service_section_3 .cs_service_menu_item.cs_active .cs_service_menu_icon img, .cs_service_section_3 .cs_service_menu_item:hover .cs_service_menu_icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(105%) contrast(101%);
}
.cs_service_section_3 .cs_service_menu_item.cs_active .cs_service_menu_text, .cs_service_section_3 .cs_service_menu_item:hover .cs_service_menu_text {
  color: var(--white-color);
}
.cs_service_section_3 .cs_service_menu_icon {
  width: 50px;
  height: 50px;
  flex: none;
}
.cs_service_section_3 .cs_service_menu_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(31%) sepia(94%) saturate(3066%) hue-rotate(208deg) brightness(99%) contrast(94%);
  transition: filter 0.35s ease;
}
.cs_service_section_3 .cs_service_menu_text {
  color: var(--primary-color);
  transition: color 0.35s ease;
}
.cs_service_section_3 .cs_service_panes {
  position: relative;
  width: 100%;
  min-height: 430px;
}
.cs_service_section_3 .cs_service_pane {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.45, 0.5, 0.55, 0.95), transform 0.45s cubic-bezier(0.45, 0.5, 0.55, 0.95), visibility 0s linear 0.45s;
}
.cs_service_section_3 .cs_service_pane.cs_active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.45s cubic-bezier(0.45, 0.5, 0.55, 0.95), transform 0.45s cubic-bezier(0.45, 0.5, 0.55, 0.95), visibility 0s linear 0s;
}
.cs_service_section_3 .cs_service_img {
  width: 78%;
  height: 100%;
}
.cs_service_section_3 .cs_service_img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cs_service_section_3 .cs_service_img:hover img {
  transform: scale(1.03);
}
.cs_service_section_3 .cs_service_arrow_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  z-index: 2;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cs_service_section_3 .cs_service_arrow_btn > img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(105%) contrast(101%);
}
.cs_service_section_3 .cs_service_arrow_btn:hover {
  transform: translateX(3px);
}
.cs_service_section_3 .cs_service_card {
  position: absolute;
  right: 0;
  top: 65px;
  width: min(50%, 312px);
  min-height: 300px;
  padding: 24px;
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.cs_service_section_3 .cs_service_card_tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: var(--gray7-color);
}
.cs_service_section_3 .cs_service_card_tag img {
  width: 14px;
  height: 14px;
  flex: none;
}
@media (max-width: 1199px) {
  .cs_service_section_3 .cs_service_img {
    width: 70%;
  }
  .cs_service_section_3 .cs_service_card {
    width: 60%;
    padding: 18px 20px;
  }
}
@media (max-width: 991px) {
  .cs_service_section_3 {
    padding: 60px 0;
  }
  .cs_service_section_3 .cs_service_panes {
    min-height: 380px;
    padding-right: 0;
  }
  .cs_service_section_3 .cs_service_img {
    width: 100%;
  }
  .cs_service_section_3 .cs_service_menu_item {
    padding: 20px 15px;
  }
  .cs_service_section_3 .cs_service_menu_text {
    font-size: 18px;
  }
  .cs_service_section_3 .cs_service_menu_icon {
    width: 40px;
    height: 40px;
  }
  .cs_service_section_3 .cs_service_arrow_btn {
    top: 20px;
    right: 20px;
    left: initial;
  }
  .cs_service_section_3 .cs_service_card {
    top: initial;
    min-height: auto;
    gap: 15px;
    width: calc(100% - 30px);
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px;
  }
}

/*================================================================
  Services Section 4
==================================================================*/
.cs_services_section_4 {
  padding: 120px 0;
}
.cs_services_section_4 .cs_service_heading_container {
  position: sticky;
  top: 190px;
}
.cs_services_section_4 .cs_service_heading_container .cs_btn_style_2 {
  border-color: var(--accent-color);
}
.cs_services_section_4 .cs_service_heading_container .cs_btn_style_2 img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(8%) saturate(3737%) hue-rotate(175deg) brightness(103%) contrast(84%);
}
.cs_services_section_4 .cs_service_heading_container .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_services_section_4 .cs_service_heading_container .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(96%) sepia(80%) saturate(0%) hue-rotate(132deg) brightness(114%) contrast(101%);
}
@media (max-width: 991px) {
  .cs_services_section_4 {
    padding: 70px 0;
  }
}

/*================================================================
  Service Section 5
==================================================================*/
.cs_services_section_5 {
  padding: 120px 0;
  overflow: hidden;
}
.cs_services_section_5 .cs_vector_shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
.cs_services_section_5 .cs_section_heading_style_1 {
  width: min(100%, 1096px);
}
.cs_services_section_5 .cs_service_note a {
  text-decoration: underline;
}
.cs_services_section_5 .cs_service_note a:hover {
  color: var(--accent-color);
  text-decoration: none;
}
.cs_services_section_5 .cs_controller_3 {
  right: initial;
}
@media (max-width: 991px) {
  .cs_services_section_5 {
    padding: 70px 0;
  }
}

/*================================================================
  Service Details
==================================================================*/
.cs_service_details_section {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_service_details_section {
    padding: 70px 0;
  }
}

/*================================================================
  Service Details - Conditions We Treat (reusable)
==================================================================*/
.cs_service_details .cs_service_banner img {
  width: 100%;
}
.cs_service_details .cs_conditions_list {
  display: flex;
  flex-direction: column;
}
.cs_service_details .cs_conditions_list .cs_condition_item {
  position: relative;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 24px;
}
.cs_service_details .cs_conditions_list .cs_condition_item:last-child {
  padding-bottom: 0;
}
.cs_service_details .cs_conditions_list .cs_condition_item:last-child::before {
  bottom: 0;
}
.cs_service_details .cs_conditions_list .cs_condition_item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: -4px;
  width: 1px;
  background-color: var(--accent-color);
}
.cs_service_details .cs_conditions_list .cs_condition_dot {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  border-radius: 50%;
  background-color: var(--accent-color);
  position: relative;
  z-index: 1;
}
.cs_service_details .cs_conditions_list .cs_condition_body {
  flex: 1;
}
.cs_service_details .cs_conditions_list .cs_condition_title {
  color: var(--primary-color);
}
.cs_service_details .cs_conditions_list .cs_condition_desc {
  color: var(--secondary-color);
}
.cs_service_details .cs_service_features_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_service_details .cs_service_features_list li {
  display: flex;
  gap: 10px;
}
.cs_service_details .cs_service_features_list img {
  width: 16px;
  flex: none;
}
@media (max-width: 1399px) {
  .cs_service_details .cs_feature_card_1, .cs_service_details .cs_feature_card_4 {
    padding: 24px 15px;
  }
}
@media (max-width: 991px) {
  .cs_service_details {
    margin-bottom: 40px;
  }
  .cs_service_details .cs_service_features_list {
    gap: 12px;
  }
}

/*===================================================
  Sticky Stacking Cards (GSAP)
=====================================================*/
.cs_sticky_section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cs_sticky_section.cs_type_1 {
  gap: 24px;
  align-items: flex-end;
}
.cs_sticky_section .cs_sticky_card {
  transform-origin: center top;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
@media (max-width: 991px) {
  .cs_sticky_section {
    gap: 20px;
  }
}

/*================================================================
  14. Facilities Section
==================================================================*/
.cs_hospil_facilities {
  width: min(100%, 700px);
  margin: 58px auto 0;
  display: grid;
  gap: 24px 0;
  grid-template-columns: repeat(3, auto);
}
.cs_hospil_facilities .cs_facility_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 50px 10px 60px;
  position: relative;
}
.cs_hospil_facilities .cs_facility_item::before {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
  background-color: rgba(134, 148, 167, 0.5);
}
.cs_hospil_facilities .cs_facility_item:first-child {
  padding-left: 10px;
}
.cs_hospil_facilities .cs_facility_item:first-child::before {
  display: none;
}
.cs_hospil_facilities .cs_facility_item:last-child {
  padding-right: 10px;
}
.cs_hospil_facilities .cs_facility_item .cs_facility_icon {
  width: 16px;
  height: 16px;
  flex: none;
}
@media (max-width: 767px) {
  .cs_hospil_facilities {
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    gap: 16px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cs_hospil_facilities .cs_facility_item {
    padding: 0;
  }
  .cs_hospil_facilities .cs_facility_item::before {
    display: none;
  }
}

/*================================================================
  Facilities Section 1
==================================================================*/
.cs_facilities_section_1 {
  padding: 120px 0;
}
.cs_facilities_section_1 .cs_section_heading_style_1 {
  width: min(100%, 970px);
}
@media (max-width: 991px) {
  .cs_facilities_section_1 {
    padding: 70px 0;
  }
}

.cs_facility_card_1 {
  padding: 30px 10px 40px;
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.55, 0.3, 0.55, 1.6);
}
.cs_facility_card_1 .cs_card_header {
  padding-left: 20px;
}
.cs_facility_card_1 .cs_card_img {
  display: block;
  width: 100%;
}
.cs_facility_card_1 .cs_card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cs_facility_card_1 .cs_about_features_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_facility_card_1 .cs_about_features_list li {
  position: relative;
  padding-left: 26px;
}
.cs_facility_card_1 .cs_about_features_list li img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 5px;
}
.cs_facility_card_1:hover {
  transform: translateY(-4px);
}
@media (max-width: 575px) {
  .cs_facility_card_1 {
    padding: 24px 10px;
  }
  .cs_facility_card_1 .cs_card_header {
    padding-left: 5px;
  }
  .cs_facility_card_1 .cs_about_features_list {
    gap: 12px;
  }
}

/*================================================================
  15. Healthcare Center Section
==================================================================*/
/*=================================================
  16. Blog Section
===================================================*/
.cs_post_style_1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cs_post_style_1 .cs_post_img {
  display: block;
  position: relative;
}
.cs_post_style_1 .cs_post_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.45, 0.5, 0.35, 1.5);
}
.cs_post_style_1 .cs_post_category {
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 10px;
  border-radius: 30px;
  background-color: var(--gray3-color);
}
.cs_post_style_1 .cs_post_date {
  display: inline-block;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 30px;
  background-color: #e2daf6;
}
.cs_post_style_1 .cs_post_info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cs_post_style_1 .cs_post_meta_wrapper {
  display: flex;
  gap: 20px 32px;
  flex-wrap: wrap;
}
.cs_post_style_1 .cs_post_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  text-wrap: nowrap;
}
.cs_post_style_1 .cs_post_meta img {
  width: 16px;
  height: 16px;
  flex: none;
  filter: brightness(0) saturate(100%) invert(39%) sepia(62%) saturate(7459%) hue-rotate(212deg) brightness(103%) contrast(92%);
}
.cs_post_style_1 .cs_post_author_read {
  padding-top: 44px;
  margin-top: auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(75, 85, 99, 0.1);
}
.cs_post_style_1 .cs_post_author {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cs_post_style_1 .cs_post_author .cs_author_icon {
  width: 50px;
  height: 50px;
  flex: none;
  padding: 13px;
  background-color: var(--gray3-color);
}
.cs_post_style_1 .cs_post_author .cs_author_icon img {
  border-radius: 0;
}
.cs_post_style_1 .cs_btn_style_2 {
  border-color: var(--primary-color);
}
.cs_post_style_1 .cs_btn_style_2 img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(11%) saturate(1768%) hue-rotate(176deg) brightness(99%) contrast(92%);
}
.cs_post_style_1 .cs_btn_style_2:hover {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_post_style_1 .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(0%) hue-rotate(185deg) brightness(105%) contrast(101%);
}
.cs_post_style_1:hover .cs_post_img img {
  transform: scale(1.03);
}
.cs_post_style_1 .cs_post_title a:hover {
  color: var(--accent-color);
}

.cs_post_style_2 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.45, 0.5, 0.55, 0.95), box-shadow 0.3s ease;
}
.cs_post_style_2 .cs_post_img {
  display: block;
  position: relative;
  overflow: hidden;
}
.cs_post_style_2 .cs_post_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.45, 0.5, 0.35, 0.55);
}
.cs_post_style_2 .cs_post_info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cs_post_style_2 .cs_post_meta_wrapper {
  display: flex;
  gap: 12px 24px;
  flex-wrap: wrap;
}
.cs_post_style_2 .cs_post_meta,
.cs_post_style_2 .cs_post_author {
  display: flex;
  align-items: center;
  gap: 10px;
  text-wrap: nowrap;
}
.cs_post_style_2 .cs_post_meta img,
.cs_post_style_2 .cs_post_author img {
  width: 16px;
  height: 16px;
  flex: none;
  filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(3473%) hue-rotate(212deg) brightness(106%) contrast(91%);
}
.cs_post_style_2 .cs_author_icon {
  width: 50px;
  height: 50px;
  flex: none;
  background-color: var(--gray3-color);
}
.cs_post_style_2 .cs_author_icon img {
  border-radius: 0;
}
.cs_post_style_2 .cs_post_title {
  margin-top: auto;
}
.cs_post_style_2 .cs_post_title a:hover {
  color: var(--accent-color);
}
.cs_post_style_2:hover .cs_post_img img {
  transform: scale(1.03);
}
.cs_post_style_2.cs_type_1 {
  justify-content: flex-end;
}
.cs_post_style_2.cs_type_1 .cs_post_img,
.cs_post_style_2.cs_type_1 .cs_post_overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.cs_post_style_2.cs_type_1 .cs_post_overlay {
  background: linear-gradient(180deg, rgba(31, 41, 55, 0) 30%, rgba(31, 41, 55, 0.85) 100%);
}
.cs_post_style_2.cs_type_1 .cs_post_info {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-top: auto;
  padding: 24px 30px 24px;
  color: var(--white-color);
  justify-content: flex-end;
}
.cs_post_style_2.cs_type_1 .cs_post_title {
  margin-top: initial;
}
.cs_post_style_2.cs_type_1 .cs_post_title a {
  color: var(--white-color);
}
.cs_post_style_2.cs_type_1 .cs_post_title a:hover {
  color: var(--accent-color);
}
.cs_post_style_2.cs_type_1 .cs_post_meta {
  color: var(--white-color);
}
@media (max-width: 1399px) {
  .cs_post_style_2 .cs_post_meta_wrapper {
    gap: 12px 15px;
  }
  .cs_post_style_2 .cs_author_icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 991px) {
  .cs_post_style_2.cs_type_1 {
    min-height: 450px;
  }
}

.cs_post_style_3 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cs_post_style_3 .cs_post_img {
  display: block;
  position: relative;
  overflow: hidden;
}
.cs_post_style_3 .cs_post_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 1.5);
}
.cs_post_style_3 .cs_post_img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0) 50%, rgba(31, 41, 55, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.55);
  z-index: 1;
  pointer-events: none;
}
.cs_post_style_3 .cs_post_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-45deg);
  z-index: 2;
  pointer-events: none;
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.55);
}
.cs_post_style_3 .cs_post_date {
  width: 100px;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  line-height: 1em;
  padding: 8px 30px 13px;
  flex-direction: column;
}
.cs_post_style_3 .cs_post_info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cs_post_style_3 .cs_post_meta_wrapper {
  display: flex;
  gap: 12px 24px;
  flex-wrap: wrap;
  align-items: center;
}
.cs_post_style_3 .cs_post_author,
.cs_post_style_3 .cs_post_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  text-wrap: nowrap;
}
.cs_post_style_3 .cs_post_meta img {
  width: 16px;
  height: 16px;
  flex: none;
  filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(3473%) hue-rotate(212deg) brightness(106%) contrast(91%);
}
.cs_post_style_3 .cs_post_author .cs_author_icon {
  width: 50px;
  height: 50px;
  flex: none;
  padding: 12px;
  background-color: var(--gray3-color);
}
.cs_post_style_3 .cs_post_author .cs_author_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
.cs_post_style_3 .cs_post_title {
  margin-top: auto;
}
.cs_post_style_3 .cs_post_title a:hover {
  color: var(--accent-color);
}
.cs_post_style_3:hover .cs_post_img img {
  transform: scale(1.03);
}
.cs_post_style_3:hover .cs_post_img::before {
  opacity: 1;
}
.cs_post_style_3:hover .cs_post_img::after {
  left: 200%;
}

.cs_post_style_4 {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 530px;
  padding: 24px 30px;
  display: flex;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.45, 0.5, 0.55, 0.95);
}
.cs_post_style_4 .cs_post_img {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}
.cs_post_style_4 .cs_post_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.5, 0.46, 0.45, 1.5);
}
.cs_post_style_4 .cs_post_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 50.3%, #000 91.83%);
  transition: opacity 0.4s ease;
}
.cs_post_style_4 .cs_post_info {
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.cs_post_style_4 .cs_post_meta_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}
.cs_post_style_4 .cs_post_author,
.cs_post_style_4 .cs_post_meta {
  display: flex;
  gap: 10px;
  align-items: center;
  text-wrap: nowrap;
}
.cs_post_style_4 .cs_author_icon {
  width: 50px;
  height: 50px;
  flex: none;
}
.cs_post_style_4 .cs_author_icon img {
  width: 24px;
  height: 24px;
  border-radius: 0;
}
.cs_post_style_4 .cs_post_meta img {
  width: 16px;
  height: 16px;
  flex: none;
  filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(3473%) hue-rotate(212deg) brightness(106%) contrast(91%);
}
.cs_post_style_4 .cs_post_title a {
  color: inherit;
  transition: color 0.3s ease;
}
.cs_post_style_4 .cs_post_title a:hover {
  color: var(--accent-color);
}
.cs_post_style_4:hover .cs_post_img img {
  transform: scale(1.03);
}
@media (max-width: 991px) {
  .cs_post_style_4 {
    min-height: 420px;
  }
}
@media (max-width: 575px) {
  .cs_post_style_4 {
    min-height: 340px;
  }
}

.cs_post_style_5 {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_post_style_5:first-child {
  padding-top: 0;
}
.cs_post_style_5:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.cs_post_style_5 .cs_post_img {
  display: block;
  overflow: hidden;
}
.cs_post_style_5 .cs_post_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cs_post_style_5 .cs_post_meta_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cs_post_style_5 .cs_post_author,
.cs_post_style_5 .cs_post_meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs_post_style_5 .cs_author_icon {
  width: 50px;
  height: 50px;
  flex: none;
  padding: 10px;
}
.cs_post_style_5 .cs_author_icon img {
  width: 24px;
  height: 24px;
  border-radius: 0;
}
.cs_post_style_5 .cs_post_meta img {
  width: 16px;
  height: 16px;
  flex: none;
  filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(3473%) hue-rotate(212deg) brightness(106%) contrast(91%);
}
.cs_post_style_5 .cs_post_title a:hover {
  color: var(--accent-color);
}
.cs_post_style_5:hover .cs_post_img img {
  transform: scale(1.03);
}
@media (max-width: 1199px) {
  .cs_post_style_5 {
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .cs_post_style_5 {
    grid-template-columns: 1fr;
  }
}

.cs_post_style_6 {
  display: flex;
  gap: 12px;
}
.cs_post_style_6 .cs_post_thumb {
  flex: none;
  width: 50px;
  height: 50px;
  display: block;
  overflow: hidden;
}
.cs_post_style_6 .cs_post_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.455, 0.33, 0.45, 0.55);
}
.cs_post_style_6 .cs_post_thumb:hover img {
  transform: scale(1.03);
}
.cs_post_style_6 .cs_post_info {
  flex: 1;
}
.cs_post_style_6 .cs_post_title a:hover {
  color: var(--accent-color);
}
.cs_post_style_6 .cs_post_date {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  line-height: 1.5em;
}
.cs_post_style_6 .cs_post_date img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(3473%) hue-rotate(212deg) brightness(106%) contrast(91%);
}

/*=================================================
  Blog Sections
===================================================*/
.cs_blog_section_1 {
  padding: 120px 0;
}
.cs_blog_section_1 .cs_section_heading_style_1 {
  width: min(100%, 1096px);
  margin-left: auto;
  margin-right: auto;
}
.cs_blog_section_1 .cs_blog_shape_1 {
  left: 20px;
  bottom: -190px;
  filter: blur(50px);
}
@media (max-width: 1399px) {
  .cs_blog_section_1 .cs_blog_shape_1 {
    left: -190px;
    bottom: -300px;
  }
}
@media (max-width: 991px) {
  .cs_blog_section_1 {
    padding: 70px 0;
  }
  .cs_blog_section_1 .cs_blog_shape_1 {
    display: none;
  }
}

.cs_post_list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*=================================================
  Blog Sidebar (Blog with Sidebar page)
===================================================*/
.cs_blog_sidebar_section {
  padding: 120px 0;
}
.cs_blog_sidebar_section .cs_sidebar_style_1 .cs_sidebar_widget {
  padding: 24px;
}
@media (max-width: 1199px) {
  .cs_blog_sidebar_section .cs_sidebar_style_1 .cs_sidebar_widget {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .cs_blog_sidebar_section {
    padding: 70px 0;
  }
}

.cs_blog_posts_list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/*=================================================
  Blog Details Page
===================================================*/
.cs_blog_details {
  margin-bottom: 120px;
}
.cs_blog_details .cs_blog_details_thumb {
  position: relative;
  display: block;
  overflow: hidden;
}
.cs_blog_details .cs_blog_details_thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cs_blog_details .cs_blog_details_thumb .cs_post_date {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  padding: 5px 30px 12px;
  flex-direction: column;
}
.cs_blog_details .cs_blog_details_thumb .cs_post_date span {
  display: inline-block;
  line-height: 1.14em;
}
.cs_blog_details .cs_blog_details_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}
.cs_blog_details .cs_post_author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs_blog_details .cs_post_author .cs_author_icon {
  width: 50px;
  height: 50px;
  flex: none;
  padding: 13px;
  background-color: var(--gray3-color);
}
.cs_blog_details .cs_post_author .cs_author_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
.cs_blog_details .cs_post_meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs_blog_details .cs_post_meta img {
  width: 16px;
  height: 16px;
  flex: none;
}
.cs_blog_details p {
  font-size: 16px;
  line-height: 1.625em;
  color: var(--secondary-color);
  margin-bottom: 24px;
}
.cs_blog_details h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25em;
  margin-bottom: 24px;
  color: var(--primary-color);
  font-family: var(--primary-font);
}
.cs_blog_details .cs_blog_check_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_blog_details .cs_blog_check_list li {
  padding-left: 26px;
  position: relative;
}
.cs_blog_details .cs_blog_check_list img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 6px;
}
.cs_blog_details .cs_blog_quote {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--gray2-color);
}
.cs_blog_details .cs_blog_quote blockquote {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--primary-color);
  font-family: var(--secondary-font);
  margin-bottom: 43px;
}
.cs_blog_details .cs_blog_quote small {
  color: var(--primary-color);
}
.cs_blog_details .cs_blog_quote .cs_blog_quote_icon {
  position: absolute;
  right: 24px;
  bottom: 15px;
  width: 80px;
  height: 80px;
}
.cs_blog_details .cs_blog_quote .cs_blog_quote_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cs_blog_details .cs_blog_rule_list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs_blog_details .cs_blog_rule_list li {
  display: flex;
  gap: 10px;
}
.cs_blog_details .cs_blog_rule_list .cs_rule_label {
  flex: none;
  min-width: 200px;
}
.cs_blog_details .cs_red_flag_grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
.cs_blog_details .cs_red_flag_card {
  padding: 24px;
}
.cs_blog_details .cs_red_flag_card.cs_color_1 {
  background-color: #e4ddcd;
}
.cs_blog_details .cs_red_flag_card.cs_color_2 {
  background-color: #bfd4cd;
}
.cs_blog_details .cs_red_flag_card.cs_color_3 {
  background-color: #cecddd;
}
.cs_blog_details .cs_red_flag_card.cs_color_4 {
  background-color: #dbd5f7;
}
.cs_blog_details .cs_post_tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cs_blog_details .cs_post_tags .cs_tags_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cs_blog_details .cs_post_tags .cs_tags_list a {
  display: inline-block;
  padding: 4px 10px 5px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.4em;
  color: var(--secondary-color);
  border: 1px solid rgba(134, 148, 167, 0.5);
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.cs_blog_details .cs_post_tags .cs_tags_list a:hover {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_blog_details .cs_post_navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cs_blog_details .cs_post_navigation .cs_post_nav_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(134, 148, 167, 0.5);
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.cs_blog_details .cs_post_navigation .cs_post_nav_item .cs_post_nav_label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cs_blog_details .cs_post_navigation .cs_post_nav_item .cs_post_nav_label img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(11%) saturate(1768%) hue-rotate(176deg) brightness(99%) contrast(92%);
}
.cs_blog_details .cs_post_navigation .cs_post_nav_item .cs_post_nav_title {
  transition: all 0.4s ease;
}
.cs_blog_details .cs_post_navigation .cs_post_nav_item.cs_post_nav_next {
  text-align: right;
}
.cs_blog_details .cs_post_navigation .cs_post_nav_item.cs_post_nav_next .cs_post_nav_label {
  justify-content: flex-end;
}
.cs_blog_details .cs_post_navigation .cs_post_nav_item:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.cs_blog_details .cs_post_navigation .cs_post_nav_item:hover img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(52%) saturate(5623%) hue-rotate(211deg) brightness(101%) contrast(92%);
}
.cs_blog_details .cs_post_navigation .cs_post_nav_item:hover .cs_post_nav_title {
  color: var(--accent-color);
}
@media (max-width: 991px) {
  .cs_blog_details .cs_red_flag_grid {
    gap: 16px;
  }
  .cs_blog_details .cs_red_flag_card {
    padding: 16px;
  }
  .cs_blog_details .cs_post_navigation {
    gap: 15px;
  }
  .cs_blog_details .cs_post_navigation .cs_post_nav_item {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .cs_blog_details .cs_red_flag_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_blog_details .cs_post_navigation {
    grid-template-columns: 1fr;
  }
}

.cs_comment_form_wrap .cs_comment_form_subtitle {
  color: var(--secondary-color);
}
.cs_comment_form_wrap .cs_input_wrap {
  padding: 10px;
}
.cs_comment_form_wrap .cs_input_wrap label {
  display: block;
  margin-bottom: 0;
  line-height: 1.43em;
}
.cs_comment_form_wrap .cs_input_wrap input,
.cs_comment_form_wrap .cs_input_wrap textarea {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  background-color: transparent;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1.625em;
}
.cs_comment_form_wrap .cs_input_wrap input::-moz-placeholder, .cs_comment_form_wrap .cs_input_wrap textarea::-moz-placeholder {
  color: var(--secondary-color);
  opacity: 0.5;
}
.cs_comment_form_wrap .cs_input_wrap input::placeholder,
.cs_comment_form_wrap .cs_input_wrap textarea::placeholder {
  color: var(--secondary-color);
  opacity: 0.5;
}
.cs_comment_form_wrap .cs_input_wrap textarea {
  resize: none;
  min-height: 110px;
}
.cs_comment_form_wrap .cs_save_check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 0;
}
.cs_comment_form_wrap .cs_save_check input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex: none;
  margin: 0;
  accent-color: var(--accent-color);
  border: 1px solid rgba(134, 148, 167, 0.5);
  border-radius: 2px;
  cursor: pointer;
}
.cs_comment_form_wrap .cs_btn_style_1 {
  padding: 16px 25px;
}
.cs_comment_form_wrap .cs_btn_style_1 img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(100%);
}

/*=================================================
  Pagination
===================================================*/
.cs_pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 48px;
}
.cs_pagination li a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(134, 148, 167, 0.5);
  border-radius: 3px;
  color: var(--primary-color);
  background-color: var(--white-color);
}
.cs_pagination li a img {
  width: 16px;
  height: 16px;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(13%) sepia(11%) saturate(1768%) hue-rotate(176deg) brightness(99%) contrast(92%);
  transition: filter 0.3s ease;
}
.cs_pagination li a:hover {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_pagination li a:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.cs_pagination li.active a {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}

/*===================================================
  17. Contact Section
=====================================================*/
.cs_contact_section_1 {
  padding: 0;
  position: relative;
  z-index: 1;
  margin-top: -100px;
}
.cs_contact_section_1 .cs_about_hours {
  width: min(100%, 424px);
  margin-bottom: 0;
}
.cs_contact_section_1 .cs_emergency_note {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.cs_contact_section_1 .cs_emergency_note .cs_emergency_icon {
  width: 50px;
  flex: none;
}
.cs_contact_section_1 .cs_emergency_note a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.cs_contact_section_1 .cs_contact_item {
  gap: 13px;
}
.cs_contact_section_1 .cs_contact_item .cs_contact_icon {
  width: 50px;
  height: 50px;
  padding: 13px;
  flex: none;
}
.cs_contact_section_1 .cs_contact_item .cs_contact_icon img {
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(100%) sepia(29%) saturate(1750%) hue-rotate(318deg) brightness(127%) contrast(113%);
}
.cs_contact_section_1 .cs_contact_item a:hover {
  color: var(--accent-color);
}

/*====================================================
  Location Section
======================================================*/
.cs_location_section_1 {
  padding: 120px 0;
}
.cs_location_section_1 .cs_location_info {
  width: min(100%, 430px);
}
.cs_location_section_1 .cs_location_contact_list {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.cs_location_section_1 .cs_location_contact_list li {
  padding-left: 40px;
  position: relative;
  display: flex;
  gap: 6px;
  flex-direction: column;
}
.cs_location_section_1 .cs_location_contact_list .cs_location_contact_icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  filter: brightness(0) saturate(100%) invert(33%) sepia(74%) saturate(4662%) hue-rotate(209deg) brightness(100%) contrast(92%);
}
.cs_location_section_1 .cs_location_contact_list a:hover {
  color: var(--accent-color);
}
.cs_location_section_1 .cs_visiting_hours_list {
  display: flex;
  gap: 14px;
  flex-direction: column;
}
.cs_location_section_1 .cs_visiting_hours_list li {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.cs_location_section_1 .cs_visiting_hours_list .cs_visiting_label {
  flex: 1;
}
.cs_location_section_1 .cs_visiting_hours_list .cs_visiting_time {
  font-weight: 600;
  text-align: right;
  flex: none;
  color: var(--primary-color);
}
.cs_location_section_1 .cs_location_map {
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.cs_location_section_1 .cs_location_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.cs_location_section_1 .cs_ambulance_card {
  width: 100%;
  padding: 24px;
  display: flex;
  gap: 24px;
  background: rgba(200, 221, 255, 0.8);
}
.cs_location_section_1 .cs_ambulance_card .cs_ambulance_icon {
  width: 50px;
  height: 50px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_location_section_1 .cs_ambulance_card .cs_ambulance_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(56%) sepia(83%) saturate(4605%) hue-rotate(334deg) brightness(95%) contrast(96%);
}
.cs_location_section_1 .cs_ambulance_card .cs_ambulance_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cs_location_section_1 .cs_ambulance_card p {
  color: var(--secondary-color);
}
.cs_location_section_1 .cs_ambulance_card a {
  color: var(--secondary-color);
}
.cs_location_section_1 .cs_ambulance_card a:hover {
  color: var(--accent-color);
}
@media (max-width: 991px) {
  .cs_location_section_1 {
    padding: 70px 0;
  }
  .cs_location_section_1 .cs_location_info {
    width: 100%;
  }
  .cs_location_section_1 .cs_location_contact_list {
    gap: 15px;
  }
  .cs_location_section_1 .cs_location_map {
    height: 360px;
  }
}
@media (max-width: 575px) {
  .cs_location_section_1 .cs_ambulance_card {
    padding: 15px;
  }
  .cs_location_section_1 .cs_location_map {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .cs_location_section_1 .cs_visiting_hours_list {
    gap: 15px;
  }
  .cs_location_section_1 .cs_visiting_hours_list li {
    flex-direction: column;
    gap: 6px;
  }
  .cs_location_section_1 .cs_visiting_time {
    text-align: left !important;
  }
}

/*====================================================
  Contact Page – Support / Info Cards
======================================================*/
.cs_support_section {
  padding: 120px 0;
}
.cs_support_section .cs_section_heading_style_1 {
  width: min(100%, 1095px);
}
@media (max-width: 991px) {
  .cs_support_section {
    padding: 70px 0;
  }
}

/*====================================================
  Contact Page – Form & Sidebar
======================================================*/
.cs_contact_form_section {
  padding: 120px 0;
}
.cs_contact_form_section .cs_contact_form_wrap {
  width: min(100%, 872px);
}
.cs_contact_form_section .cs_sidebar_style_1 .cs_sidebar_widget {
  padding: 24px;
}
.cs_contact_form_section .cs_contact_dept_list,
.cs_contact_form_section .cs_contact_hours_list {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.cs_contact_form_section .cs_contact_dept_list li,
.cs_contact_form_section .cs_contact_hours_list li {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.cs_contact_form_section .cs_contact_dept_list a,
.cs_contact_form_section .cs_contact_hours_list a {
  color: var(--accent-color);
  flex: none;
  text-align: right;
}
.cs_contact_form_section .cs_contact_dept_list a:hover,
.cs_contact_form_section .cs_contact_hours_list a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
@media (max-width: 1199px) {
  .cs_contact_form_section .cs_sidebar_style_1 .cs_sidebar_widget {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .cs_contact_form_section {
    padding: 70px 0;
  }
}

/*====================================================
  Contact Page – Map
======================================================*/
.cs_contact_map_section {
  padding: 120px 0;
}
.cs_contact_map_section .cs_contact_map {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.cs_contact_map_section .cs_contact_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 991px) {
  .cs_contact_map_section {
    padding: 70px 0;
  }
  .cs_contact_map_section .cs_contact_map {
    height: 360px;
  }
}
@media (max-width: 575px) {
  .cs_contact_map_section .cs_contact_map {
    height: 280px;
  }
}

/*====================================================
  Career Page
======================================================*/
.cs_career_mission_section {
  padding: 120px 0 60px;
}
.cs_career_mission_section .cs_section_heading_style_1 {
  width: min(100%, 1096px);
}
.cs_career_mission_section .cs_career_value_card {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.45, 0.45, 0.5, 0.55);
}
.cs_career_mission_section .cs_career_value_card.cs_color_1 {
  background-color: #e4ddcd;
}
.cs_career_mission_section .cs_career_value_card.cs_color_2 {
  background-color: #bfd4cd;
}
.cs_career_mission_section .cs_career_value_card.cs_color_3 {
  background-color: #cecddd;
}
.cs_career_mission_section .cs_career_value_card.cs_color_4 {
  background-color: var(--gray5-color);
}
.cs_career_mission_section .cs_career_value_card:hover {
  transform: translateY(-4px);
}
.cs_career_mission_section .cs_career_value_icon {
  width: 56px;
  height: 56px;
  flex: none;
  margin-bottom: 14px;
}
.cs_career_mission_section .cs_career_value_icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(11%) sepia(15%) saturate(1280%) hue-rotate(176deg) brightness(96%) contrast(92%);
}
.cs_career_mission_section .cs_career_value_title {
  color: var(--primary-color);
  font-family: var(--primary-font);
}
.cs_career_mission_section .cs_career_value_desc {
  color: var(--secondary-color);
}
@media (max-width: 991px) {
  .cs_career_mission_section {
    padding: 70px 0 30px;
  }
}

.cs_career_openings_section {
  padding: 120px 0;
}
.cs_career_openings_section .cs_section_heading_style_1 {
  width: min(100%, 1096px);
}
.cs_career_openings_section .cs_career_jobs_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991px) {
  .cs_career_openings_section {
    padding: 70px 0;
  }
}

.cs_career_job_card {
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cs_career_job_card .cs_career_job_info {
  flex: 1;
  min-width: 280px;
}
.cs_career_job_card .cs_career_job_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  align-items: center;
}
.cs_career_job_card .cs_career_job_meta li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cs_career_job_card .cs_career_job_meta li:first-child {
  color: var(--primary-color);
}
.cs_career_job_card .cs_career_job_meta img {
  width: 16px;
  height: 16px;
  flex: none;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(36%) sepia(61%) saturate(5481%) hue-rotate(209deg) brightness(98%) contrast(95%);
}
.cs_career_job_card .cs_btn_style_2 {
  border-color: var(--accent-color);
}
.cs_career_job_card .cs_btn_style_2 img {
  width: 16px;
  height: 16px;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(11%) sepia(15%) saturate(1280%) hue-rotate(176deg) brightness(96%) contrast(92%);
  transition: filter 0.3s ease;
}
.cs_career_job_card .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_career_job_card .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(105%) contrast(101%);
}
@media (max-width: 991px) {
  .cs_career_job_card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cs_career_benefits_section {
  padding: 120px 0;
}
.cs_career_benefits_section .cs_career_benefits_content {
  width: min(100%, 424px);
}
.cs_career_benefits_section .cs_career_benefits_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cs_career_benefits_section .cs_career_benefits_list li {
  padding-left: 26px;
  position: relative;
}
.cs_career_benefits_section .cs_career_benefits_list img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 4px;
}
.cs_career_benefits_section .cs_career_benefits_img {
  width: 100%;
  overflow: hidden;
}
.cs_career_benefits_section .cs_career_benefits_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  .cs_career_benefits_section {
    padding: 60px 0;
  }
  .cs_career_benefits_section .cs_career_benefits_content {
    width: 100%;
  }
  .cs_career_benefits_section .cs_career_benefits_list {
    gap: 12px;
  }
}

.cs_career_application_section {
  padding: 120px 0;
}
.cs_career_application_section .cs_section_heading_style_1 {
  width: min(100%, 1096px);
}
.cs_career_application_section .cs_career_application_form {
  width: min(100%, 1096px);
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cs_career_application_section {
    padding: 70px 0;
  }
}

.cs_career_upload {
  width: 100%;
  padding: 22px 20px 21px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.43em;
  text-align: center;
  border-radius: 5px;
  color: var(--primary-color);
  border: 1px dashed var(--accent-color);
  background-color: var(--gray2-color);
}
.cs_career_upload .cs_career_upload_input {
  display: none;
}
.cs_career_upload img {
  width: 24px;
}

/*====================================================
  18. Team Section
======================================================*/
.cs_team_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_team_section_1 {
    padding: 70px 0;
  }
}

.cs_team_Style_1 {
  transition: transform 0.3s cubic-bezier(0.45, 0.5, 0.55, 0.95);
}
.cs_team_Style_1 .cs_team_img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.cs_team_Style_1 .cs_team_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_team_Style_1 .cs_team_img::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0) 45%, #1f2937 100%);
  transition: opacity 0.3s ease;
}
.cs_team_Style_1 .cs_team_designation {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.cs_team_Style_1 .cs_team_contact {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-direction: column;
  padding: 30px 15px;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.45, 0.5, 0.55, 0.95), opacity 0.3s ease;
}
.cs_team_Style_1 .cs_team_social {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  clip-path: inset(0 100% 0 0);
  transition-delay: 0.4s;
  transition: all 1s ease;
}
.cs_team_Style_1 .cs_team_social a {
  color: var(--white-color);
}
.cs_team_Style_1 .cs_team_social a:hover {
  color: var(--danger-color);
}
.cs_team_Style_1 .cs_btn_style_1 {
  border: 2px solid var(--danger-color);
}
.cs_team_Style_1 .cs_btn_style_1::before, .cs_team_Style_1 .cs_btn_style_1::after {
  background-color: var(--danger-color);
}
.cs_team_Style_1 .cs_team_title span {
  font-size: 14px;
  color: var(--secondary-color);
}
.cs_team_Style_1 .cs_team_title a:hover,
.cs_team_Style_1 .cs_team_title a:hover span {
  color: var(--accent-color);
}
.cs_team_Style_1:hover {
  transform: translateY(-3px);
}
.cs_team_Style_1:hover .cs_team_img::before {
  opacity: 1;
}
.cs_team_Style_1:hover .cs_team_social {
  clip-path: inset(0 0 0 0);
}
.cs_team_Style_1:hover .cs_team_contact {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 575px) {
  .cs_team_Style_1 {
    width: min(100%, 312px);
    margin: 0 auto;
  }
}

/*====================================================
  TEAM Section 2
======================================================*/
.cs_team_section_2 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_team_section_2 {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .cs_team_section_2 .cs_section_heading_style_1 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.cs_team_style_2 .cs_team_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_team_style_2 .cs_team_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.55);
}
.cs_team_style_2 .cs_team_info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 15px;
  border-radius: inherit;
}
.cs_team_style_2 .cs_team_info::before, .cs_team_style_2 .cs_team_info::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}
.cs_team_style_2 .cs_team_info::before {
  background: linear-gradient(180deg, rgba(221, 215, 249, 0) 50%, #ddd7f9 87%);
}
.cs_team_style_2 .cs_team_info::after {
  opacity: 0;
  background: linear-gradient(180deg, rgba(19, 109, 244, 0) 50%, #136df4 100%);
}
.cs_team_style_2 .cs_team_info > * {
  position: relative;
  z-index: 1;
}
.cs_team_style_2 .cs_team_title {
  color: var(--primary-color);
}
.cs_team_style_2 .cs_team_title a:hover {
  text-decoration: underline;
}
.cs_team_style_2 .cs_team_subtitle {
  color: var(--secondary-color);
  transition: all 0.4s ease;
}
.cs_team_style_2 .cs_btn_style_1 {
  padding: 13px 25px;
  transform: translateY(5px) scale(1.1);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.455, 0.3, 0.515, 0.55), opacity 0.3s ease-in-out;
}
.cs_team_style_2 .cs_btn_style_1 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  transition: filter 0.3s ease;
}
.cs_team_style_2:hover .cs_team_img img {
  transform: scale(1.03);
}
.cs_team_style_2:hover .cs_team_info::before {
  opacity: 0;
}
.cs_team_style_2:hover .cs_team_info::after {
  opacity: 1;
}
.cs_team_style_2:hover .cs_team_title,
.cs_team_style_2:hover .cs_team_subtitle {
  color: var(--white-color);
}
.cs_team_style_2:hover .cs_btn_style_1 {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 575px) {
  .cs_team_style_2 {
    width: min(100%, 312px);
    margin: 0 auto;
  }
  .cs_team_style_2 .cs_team_info {
    padding: 20px;
  }
}

/*====================================================
  TEAM Section 3
======================================================*/
.cs_team_section_3 {
  padding: 336px 0 120px;
  background: linear-gradient(180deg, #f4f2f9 0%, #fff 100%);
}
@media (max-width: 991px) {
  .cs_team_section_3 {
    padding: 286px 0 70px;
  }
}
@media (max-width: 575px) {
  .cs_team_section_3 .cs_team_style_3 {
    width: min(100%, 312px);
    margin: 0 auto;
  }
}

.cs_team_style_3 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.45, 0.5, 0.55, 0.95);
}
.cs_team_style_3 .cs_team_img {
  width: 100%;
}
.cs_team_style_3 .cs_team_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cs_team_style_3 .cs_team_social {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.cs_team_style_3 .cs_team_social a {
  width: 35px;
  height: 35px;
  flex: none;
  opacity: 0;
  padding: 9px;
  transform: translateX(-30px);
  pointer-events: auto;
  border: 1px solid var(--accent-color);
  transition: opacity 0.4s cubic-bezier(0.45, 0.5, 0.55, 0.95), transform 0.4s cubic-bezier(0.45, 0.5, 0.55, 0.95), background-color 0.3s ease, color 0.3s ease;
}
.cs_team_style_3 .cs_team_social a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_team_style_3 .cs_team_info {
  flex: 1;
  padding: 0 24px 24px;
}
.cs_team_style_3 .cs_team_title a:hover {
  color: var(--accent-color);
}
.cs_team_style_3:hover {
  transform: translateY(-3px);
}
.cs_team_style_3:hover .cs_team_img img {
  transform: scale(1.03);
}
.cs_team_style_3:hover .cs_team_social a {
  opacity: 1;
  transform: translateX(0);
}
.cs_team_style_3:hover .cs_team_social a:nth-child(1) {
  transition-delay: 0.05s;
}
.cs_team_style_3:hover .cs_team_social a:nth-child(2) {
  transition-delay: 0.12s;
}
.cs_team_style_3:hover .cs_team_social a:nth-child(3) {
  transition-delay: 0.19s;
}
.cs_team_style_3:hover .cs_team_social a:nth-child(4) {
  transition-delay: 0.26s;
}
@media (max-width: 1199px) {
  .cs_team_style_3 .cs_team_info {
    padding: 0 15px 24px;
  }
}

/*====================================================
 Team Section 4
======================================================*/
.cs_team_section_4 {
  padding: 0 0 120px;
}
@media (max-width: 991px) {
  .cs_team_section_4 {
    padding: 0 0 70px;
  }
}

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

.cs_experts_list {
  padding-left: 112px;
}
.cs_experts_list .cs_expert_item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 30px;
  padding: 30px 0 34px;
  border-bottom: 1px solid rgba(134, 148, 167, 0.2);
  transition: padding 0.3s ease;
}
.cs_experts_list .cs_expert_item .cs_expert_bio {
  width: min(100%, 400px);
  margin-left: auto;
}
.cs_experts_list .cs_expert_item .cs_expert_actions {
  width: min(100%, 390px);
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto;
}
.cs_experts_list .cs_expert_item .cs_social_btns_style_1 {
  gap: 10px;
}
.cs_experts_list .cs_expert_item .cs_social_btns_style_1 a {
  width: 35px;
  height: 35px;
  padding: 8px;
  color: var(--secondary-color);
  border: 1px solid rgba(134, 148, 167, 0.5);
  transition: all 0.3s ease;
}
.cs_experts_list .cs_expert_item .cs_social_btns_style_1 a:hover {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_experts_list .cs_expert_item .cs_btn_style_1 {
  padding: 16px 25px;
  color: var(--white-color);
  background-color: var(--danger-color);
}
.cs_experts_list .cs_expert_item .cs_btn_style_1 i {
  margin-right: 6px;
}
.cs_experts_list .cs_expert_item.active .cs_expert_bio {
  display: none;
}
.cs_experts_list .cs_expert_item.active .cs_expert_actions {
  display: flex;
}
@media (max-width: 1399px) {
  .cs_experts_list {
    padding-left: 60px;
  }
}
@media (max-width: 1199px) {
  .cs_experts_list {
    padding-left: 0;
  }
  .cs_experts_list .cs_expert_item {
    padding: 20px 0;
  }
}
@media (max-width: 575px) {
  .cs_experts_list .cs_expert_item {
    padding: 15px 0;
    gap: 15px;
    grid-template-columns: 1fr;
  }
  .cs_experts_list .cs_expert_item .cs_expert_actions,
  .cs_experts_list .cs_expert_item .cs_expert_bio {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
}

/*====================================================
  Team Section 5 (Find a Doctor filter + grid)
======================================================*/
.cs_team_section_5 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_team_section_5 {
    padding: 70px 0;
  }
}

.cs_doctor_filter {
  padding: 24px;
}
.cs_doctor_filter .cs_filter_input img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(22%) saturate(842%) hue-rotate(175deg) brightness(91%) contrast(93%);
}
.cs_doctor_filter label {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-color);
}
.cs_doctor_filter .cs_form_field,
.cs_doctor_filter .choices__inner {
  display: block;
  padding: 13px 20px;
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 16px;
  background-color: transparent;
}
.cs_doctor_filter .cs_form_field::-moz-placeholder, .cs_doctor_filter .choices__inner::-moz-placeholder {
  color: var(--secondary-color);
}
.cs_doctor_filter .cs_form_field::placeholder,
.cs_doctor_filter .choices__inner::placeholder {
  color: var(--secondary-color);
}
.cs_doctor_filter .cs_search_icon {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 16px;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(471%) hue-rotate(176deg) brightness(94%) contrast(86%);
}
.cs_doctor_filter .choices {
  margin-bottom: 0;
}
.cs_doctor_filter .choices__inner {
  min-height: auto;
}
.cs_doctor_filter .choices__list.choices__list--single {
  padding: 0;
}
.cs_doctor_filter .choices__list--dropdown,
.cs_doctor_filter .choices__list[aria-expanded] {
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid var(--gray7-color);
}
.cs_doctor_filter .choices__list--dropdown .choices__item:hover,
.cs_doctor_filter .choices__list[aria-expanded] .choices__item:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_doctor_filter .choices[data-type*=select-one] .choices__inner {
  padding-bottom: 13px;
}
.cs_doctor_filter .choices[data-type*=select-one]::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--primary-color);
  border-left: 0;
  border-top: 0;
  position: absolute;
  right: 15px;
  top: 50%;
  margin: 0;
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
}
.cs_doctor_filter .cs_btn_style_1 {
  width: 100%;
  justify-content: center;
}
.cs_doctor_filter .cs_btn_style_1::before, .cs_doctor_filter .cs_btn_style_1::after {
  display: none;
}
.cs_doctor_filter .cs_btn_style_1 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7484%) hue-rotate(355deg) brightness(112%) contrast(104%);
}
.cs_doctor_filter .cs_btn_style_1:hover {
  background-color: var(--primary-color);
}
@media (max-width: 991px) {
  .cs_doctor_filter {
    padding: 18px;
  }
}

.cs_experts_stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 50px;
}
.cs_experts_stats .cs_stat_pill {
  padding: 10px 20px 11px;
  border-radius: 100px;
  transition: transform 0.3s ease;
}
.cs_experts_stats .cs_stat_pill strong {
  font-weight: 600;
  color: var(--primary-color);
}
.cs_experts_stats .cs_stat_pill:hover {
  transform: translateY(-3px);
}
.cs_experts_stats .cs_stat_pill.cs_color_1 {
  background-color: #e4ddcd;
}
.cs_experts_stats .cs_stat_pill.cs_color_2 {
  background-color: #bfd4cd;
}
.cs_experts_stats .cs_stat_pill.cs_color_3 {
  background-color: #dbd5f7;
}
@media (max-width: 991px) {
  .cs_experts_stats {
    margin-top: 30px;
  }
}

/*=====================================================
  Doctor Details Section
=======================================================*/
.cs_doctor_details {
  padding: 120px 0;
}
.cs_doctor_details .cs_doctor_hero {
  margin-bottom: 120px;
}
.cs_doctor_details .cs_doctor_hero .cs_doctor_img {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(134, 148, 167, 0.3);
}
.cs_doctor_details .cs_doctor_hero .cs_doctor_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cs_doctor_details .cs_doctor_hero .cs_doctor_info {
  width: min(100%, 760px);
  margin-left: auto;
}
.cs_doctor_details .cs_doctor_hero .cs_rating_container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cs_doctor_details .cs_doctor_hero .cs_rating_container .cs_rating {
  width: 130px;
  letter-spacing: 4px;
}
.cs_doctor_details .cs_doctor_hero .cs_social_btns_style_1 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cs_doctor_details .cs_doctor_hero .cs_social_btns_style_1 a {
  color: var(--primary-color);
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_doctor_details .cs_doctor_hero .cs_social_btns_style_1 a:hover {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_doctor_details .cs_doctor_hero .cs_doctor_features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cs_doctor_details .cs_doctor_hero .cs_doctor_features li {
  display: inline-flex;
  gap: 10px;
  padding: 10px;
  border-radius: 50px;
  background-color: var(--gray2-color);
}
.cs_doctor_details .cs_doctor_hero .cs_doctor_features img {
  width: 16px;
  flex: none;
}
.cs_doctor_details .cs_doctor_main .cs_doctor_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_doctor_details .cs_doctor_main .cs_doctor_list li {
  display: inline-block;
  position: relative;
  padding-left: 26px;
}
.cs_doctor_details .cs_doctor_main .cs_doctor_list li span {
  display: inline-block;
}
.cs_doctor_details .cs_doctor_main .cs_doctor_list li img {
  width: 16px;
  position: absolute;
  left: 0;
  top: 8px;
}
.cs_doctor_details .cs_doctor_main .cs_doctor_list li strong {
  color: var(--primary-color);
  font-weight: 600;
}
.cs_doctor_details .cs_doctor_main .cs_testimonial_list {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.cs_doctor_details .cs_doctor_main .cs_doctor_testimonial {
  padding: 24px;
  background-color: var(--gray2-color);
}
.cs_doctor_details .cs_doctor_main .cs_doctor_testimonial blockquote {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 24px;
  color: var(--primary-color);
  font-family: var(--secondary-font);
}
.cs_doctor_details .cs_doctor_main .cs_doctor_testimonial .cs_testimonial_author {
  font-weight: 400;
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .cs_doctor_details {
    padding: 70px 0;
  }
  .cs_doctor_details .cs_doctor_hero {
    margin-bottom: 40px;
  }
  .cs_doctor_details .cs_doctor_main .cs_doctor_list {
    gap: 12px;
  }
  .cs_doctor_details .cs_doctor_main .cs_doctor_testimonial {
    padding: 15px;
  }
}

/*================================================================
  19. Pricing Section
==================================================================*/
.cs_pricing_table_1 {
  width: 330px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cs_pricing_table_1 .cs_pricing_info {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 30px 24px;
}
.cs_pricing_table_1 .cs_pricing_value {
  display: flex;
  align-items: flex-end;
}
.cs_pricing_table_1 .cs_pricing_value small {
  font-size: 14px;
  line-height: 2em;
  color: var(--secondary-color);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs_pricing_table_1 .cs_pricing_feature_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_pricing_table_1 .cs_pricing_feature_list li {
  position: relative;
  padding-left: 26px;
}
.cs_pricing_table_1 .cs_pricing_feature_list li img {
  width: 16px;
  position: absolute;
  left: 0;
  top: 8px;
}
.cs_pricing_table_1 .cs_btn_style_2 {
  border-color: var(--accent-color);
}
.cs_pricing_table_1 .cs_btn_style_2 img {
  transition: filter 0.2s ease;
}
.cs_pricing_table_1 .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_pricing_table_1 .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(6372%) hue-rotate(64deg) brightness(120%) contrast(113%);
}
@media (max-width: 991px) {
  .cs_pricing_table_1 .cs_pricing_feature_list {
    gap: 14px;
  }
}

.cs_pricing_banner_wrap .cs_ticker_container {
  width: min(100%, 670px);
  position: absolute;
  left: 0;
  bottom: 24px;
  padding-right: 40px;
  border-radius: 0 50px 50px 0;
  background: rgba(19, 109, 244, 0.8);
}
.cs_pricing_banner_wrap .cs_ticker_content {
  gap: 24px;
}
.cs_pricing_banner_wrap .cs_ticker_item {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--secondary-font);
}
@media (min-width: 1650px) {
  .cs_pricing_banner_wrap {
    padding-right: 76px;
  }
}

@media (min-width: 1650px) {
  .cs_pricing_info_wrap {
    padding-left: 36px;
  }
}

.cs_pricing_section_1 {
  padding: 120px 0;
}
@media (min-width: 992px) {
  .cs_pricing_section_1 .container {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .cs_pricing_section_1 {
    padding: 70px 0;
  }
}

.cs_pricing_shape_1 {
  right: 0;
  bottom: 0;
}

/*================================================================
  PRICING Section 2
==================================================================*/
.cs_pricing_section_2 {
  padding: 120px 0;
}
.cs_pricing_section_2 .cs_section_heading_style_1 {
  width: min(100%, 1070px);
  margin: 0 auto 48px;
}
@media (max-width: 991px) {
  .cs_pricing_section_2 {
    padding: 70px 0;
  }
  .cs_pricing_section_2 .cs_section_heading_style_1 {
    margin: 0 auto 40px;
  }
}

.cs_pricing_table_2 {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  transition: all 0.35s ease;
}
.cs_pricing_table_2 .cs_pricing_value {
  display: flex;
  align-items: flex-end;
}
.cs_pricing_table_2 .cs_pricing_value small {
  line-height: 2em;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
}
.cs_pricing_table_2 .cs_pricing_badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  background-color: #dbd5f7;
}
.cs_pricing_table_2.cs_color_1 .cs_pricing_badge {
  background-color: #e4ddcd;
}
.cs_pricing_table_2.cs_color_2 .cs_pricing_badge {
  background-color: #bfd4cd;
}
.cs_pricing_table_2 .cs_pricing_feature_list {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_pricing_table_2 .cs_pricing_feature_list li {
  position: relative;
  padding-left: 26px;
}
.cs_pricing_table_2 .cs_pricing_feature_list li span {
  display: inline-block;
}
.cs_pricing_table_2 .cs_pricing_feature_list li img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 5px;
}
.cs_pricing_table_2 .cs_btn_style_1 {
  width: 100%;
  margin-top: auto;
  border: 1px solid var(--accent-color);
}
.cs_pricing_table_2 .cs_btn_style_1::before, .cs_pricing_table_2 .cs_btn_style_1::after {
  display: none;
}
.cs_pricing_table_2 .cs_btn_style_1 img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(57%) saturate(436%) hue-rotate(176deg) brightness(96%) contrast(89%);
}
.cs_pricing_table_2.cs_type_1 {
  padding-top: 0;
  border: 1px solid transparent;
}
.cs_pricing_table_2.cs_type_1 .cs_pricing_thumb {
  width: calc(100% + 50px);
  height: 150px;
  margin-left: -25px;
  margin-right: -25px;
  margin-top: -1px;
}
.cs_pricing_table_2.cs_type_1 .cs_pricing_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cs_pricing_table_2.active, .cs_pricing_table_2:hover {
  background-color: var(--white-color);
}
.cs_pricing_table_2.active.cs_type_1, .cs_pricing_table_2:hover.cs_type_1 {
  border-color: var(--accent-color);
}
.cs_pricing_table_2.active .cs_btn_style_1, .cs_pricing_table_2:hover .cs_btn_style_1 {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_pricing_table_2.active .cs_btn_style_1 img, .cs_pricing_table_2:hover .cs_btn_style_1 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(264deg) brightness(103%) contrast(109%);
}
.cs_pricing_table_2.active .cs_btn_style_1:hover, .cs_pricing_table_2:hover .cs_btn_style_1:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
@media (max-width: 1199px) {
  .cs_pricing_table_2 {
    padding: 24px 15px;
  }
  .cs_pricing_table_2.cs_type_1 .cs_pricing_thumb {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
}
@media (max-width: 991px) {
  .cs_pricing_table_2 .cs_pricing_feature_list {
    gap: 12px;
  }
}

.cs_pricing_toggle {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}
.cs_pricing_toggle .cs_pricing_toggle_label {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.cs_pricing_toggle .cs_pricing_toggle_label.active {
  color: var(--primary-color);
}
.cs_pricing_toggle .cs_pricing_save {
  color: var(--warning-color);
}
.cs_pricing_toggle .cs_pricing_switch {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 34px;
  flex: none;
  margin-bottom: 0;
}
.cs_pricing_toggle .cs_pricing_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cs_pricing_toggle .cs_pricing_switch input:checked + .cs_pricing_slider::before {
  transform: translateX(41px);
}
.cs_pricing_toggle .cs_pricing_slider {
  position: absolute;
  inset: 0;
  background-color: var(--accent-color);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.cs_pricing_toggle .cs_pricing_slider::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  left: 3px;
  top: 3px;
  background-color: var(--white-color);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

/*==========================================
 Other Pricing Feature
============================================*/
.cs_featured_pricingbox {
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.cs_featured_pricingbox .cs_pricing_value {
  margin-top: auto;
}
.cs_featured_pricingbox:hover {
  transform: translateY(-5px);
}
.cs_featured_pricingbox.cs_color_1 {
  background-color: #bfd4cd;
}
.cs_featured_pricingbox.cs_color_2 {
  background-color: #dbd5f7;
}
.cs_featured_pricingbox.cs_color_3 {
  background-color: #cecddd;
}
.cs_featured_pricingbox.cs_color_4 {
  background-color: #e4ddcd;
}
@media (max-width: 1199px) {
  .cs_featured_pricingbox {
    padding: 20px 15px;
  }
}

/*================================================================
  PRICING Packages (Sidebar Filter)
==================================================================*/
.cs_packages_section {
  padding: 120px 0;
}
.cs_packages_section .cs_section_heading_style_1 {
  width: min(100%, 870px);
  margin: 0 auto 48px;
}
@media (max-width: 991px) {
  .cs_packages_section {
    padding: 70px 0;
  }
  .cs_packages_section .cs_section_heading_style_1 {
    margin: 0 auto 40px;
  }
}

/*===============================================
  Reuses the shared
================================================*/
.cs_filter_list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.cs_filter_list .cs_filter_btn {
  width: 100%;
  display: block;
  text-align: left;
  padding: 10px;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.cs_filter_list .cs_filter_btn:hover {
  color: var(--primary-color);
}
.cs_filter_list .cs_filter_btn.active {
  color: var(--primary-color);
  background-color: var(--gray2-color);
}

/*================================================================
  20. FAQ Section
==================================================================*/
.cs_accordians_style_1 .cs_accordian {
  position: relative;
}
.cs_accordians_style_1 .cs_accordian:first-child .cs_accordian_head {
  padding-top: 10px;
}
.cs_accordians_style_1 .cs_accordian:first-child .cs_accordian_icon {
  top: 0px;
}
.cs_accordians_style_1 .cs_accordian:first-child .cs_accordian_toggler {
  top: 18px;
}
.cs_accordians_style_1 .cs_accordian::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.4;
  background-color: rgba(134, 148, 167, 0.5);
}
.cs_accordians_style_1 .cs_accordian .cs_accordian_head {
  padding: 40px 20px 40px 74px;
  position: relative;
  cursor: pointer;
}
.cs_accordians_style_1 .cs_accordian .cs_accordian_icon {
  position: absolute;
  top: 30px;
  left: 0;
}
.cs_accordians_style_1 .cs_accordian .cs_accordian_toggler {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 48px;
  right: 0;
}
.cs_accordians_style_1 .cs_accordian .cs_accordian_toggler img {
  transition: transform 0.3s ease;
}
.cs_accordians_style_1 .cs_accordian .cs_accordian_body {
  padding-bottom: 30px;
  margin-top: -18px;
}
.cs_accordians_style_1 .cs_accordian.active .cs_accordian_head {
  pointer-events: none;
}
.cs_accordians_style_1 .cs_accordian.active .cs_accordian_toggler img {
  transform: rotateX(180deg);
}
@media (max-width: 991px) {
  .cs_accordians_style_1 .cs_accordian .cs_accordian_head {
    padding: 24px 20px 24px 66px;
  }
  .cs_accordians_style_1 .cs_accordian .cs_accordian_icon {
    top: 14px;
  }
  .cs_accordians_style_1 .cs_accordian .cs_accordian_toggler {
    top: 32px;
  }
  .cs_accordians_style_1 .cs_accordian .cs_accordian_body {
    padding-bottom: 20px;
    margin-top: -4px;
  }
}
@media (max-width: 575px) {
  .cs_accordians_style_1 .cs_accordian:first-child .cs_accordian_icon {
    top: 8px;
  }
  .cs_accordians_style_1 .cs_accordian .cs_accordian_head {
    padding: 24px 20px 24px 45px;
  }
  .cs_accordians_style_1 .cs_accordian .cs_accordian_icon {
    width: 30px;
    top: 20px;
  }
}

.cs_faq_img {
  width: 100%;
  height: 100%;
}
.cs_faq_img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_faq_img .cs_faq_badge {
  width: 140px;
  height: 140px;
  padding: 8px;
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_faq_img .cs_circular_text {
  animation: circularRotation 10s linear infinite;
  animation-direction: alternate-reverse;
}
.cs_faq_img .cs_call_btn {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cs_faq_img .cs_call_btn img {
  border-radius: 0;
}
@media (max-width: 991px) {
  .cs_faq_img {
    border-radius: 10px;
  }
  .cs_faq_img .cs_faq_badge {
    width: 120px;
    height: 120px;
    right: 24px;
    bottom: 24px;
  }
  .cs_faq_img .cs_call_btn {
    width: 55px;
    height: 55px;
  }
}

.cs_faq_cta_1 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
.cs_faq_cta_1 .cs_faq_cta_iten {
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  gap: 10px;
}
.cs_faq_cta_1 .cs_faq_cta_iten.cs_color_1 {
  background-color: #BFD4CD;
}
.cs_faq_cta_1 .cs_faq_cta_iten .cs_accent_color {
  text-decoration: underline;
}
.cs_faq_cta_1 .cs_faq_cta_iten .cs_accent_color:hover {
  text-decoration: none;
}
.cs_faq_cta_1 .cs_faq_cta_iten img {
  flex: none;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(31%) sepia(10%) saturate(882%) hue-rotate(175deg) brightness(94%) contrast(86%);
}
.cs_faq_cta_1 .cs_faq_cta_iten a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/*================================================================
  FAQ Section 3
==================================================================*/
.cs_faq_section_2 {
  padding: 120px 0;
}
.cs_faq_section_2 .cs_faq_img img {
  width: 100%;
  min-height: 300px;
}
.cs_faq_section_2 .cs_faq_callout {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 10px 20px;
  max-width: calc(100% - 48px);
  background: rgba(19, 109, 244, 0.8);
}
@media (max-width: 991px) {
  .cs_faq_section_2 {
    padding: 60px 0;
  }
}

.cs_accordians_style_2, .cs_accordians_style_3 {
  display: flex;
  flex-direction: column;
}
.cs_accordians_style_2 .cs_accordian, .cs_accordians_style_3 .cs_accordian {
  position: relative;
}
.cs_accordians_style_2 .cs_accordian:first-child .cs_accordian_head, .cs_accordians_style_3 .cs_accordian:first-child .cs_accordian_head {
  padding-top: 4px;
}
.cs_accordians_style_2 .cs_accordian:first-child .cs_accordian_toggler, .cs_accordians_style_3 .cs_accordian:first-child .cs_accordian_toggler {
  top: 0px;
}
.cs_accordians_style_2 .cs_accordian .cs_accordian_head, .cs_accordians_style_3 .cs_accordian .cs_accordian_head {
  padding: 26px 50px 26px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(134, 148, 167, 0.2);
}
.cs_accordians_style_2 .cs_accordian .cs_accordian_toggler, .cs_accordians_style_3 .cs_accordian .cs_accordian_toggler {
  width: 35px;
  height: 35px;
  flex: none;
  position: absolute;
  right: 0;
  top: 22px;
  background-color: var(--white-color);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.cs_accordians_style_2 .cs_accordian .cs_accordian_toggler img, .cs_accordians_style_3 .cs_accordian .cs_accordian_toggler img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.cs_accordians_style_2 .cs_accordian .cs_accordian_toggler.cs_border, .cs_accordians_style_3 .cs_accordian .cs_accordian_toggler.cs_border {
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_accordians_style_2 .cs_accordian .cs_accordian_body, .cs_accordians_style_3 .cs_accordian .cs_accordian_body {
  padding-top: 24px;
}
.cs_accordians_style_2 .cs_accordian.active .cs_accordian_head, .cs_accordians_style_3 .cs_accordian.active .cs_accordian_head {
  pointer-events: none;
}
.cs_accordians_style_2 .cs_accordian.active .cs_accordian_toggler, .cs_accordians_style_3 .cs_accordian.active .cs_accordian_toggler {
  background-color: var(--accent-color);
}
.cs_accordians_style_2 .cs_accordian.active .cs_accordian_toggler.cs_border, .cs_accordians_style_3 .cs_accordian.active .cs_accordian_toggler.cs_border {
  border-color: var(--accent-color);
}
.cs_accordians_style_2 .cs_accordian.active .cs_accordian_toggler img, .cs_accordians_style_3 .cs_accordian.active .cs_accordian_toggler img {
  transform: rotateX(180deg);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(105%) contrast(101%);
}

.cs_accordians_style_3 .cs_accordian .cs_accordian_body {
  width: min(100%, 580px);
  padding-right: 45px;
}
@media (max-width: 991px) {
  .cs_accordians_style_3 .cs_accordian .cs_accordian_body {
    width: 100%;
    padding-right: 0;
  }
}

/*================================================================
  21. Portfolio Section
==================================================================*/
/*============================================================
  22. Tabs Section
==============================================================*/
.cs_tab_links.cs_style_1 {
  display: flex;
  gap: 10px 7px;
  flex-wrap: wrap;
}
.cs_tab_links.cs_style_1 li.active a {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_tab_links.cs_style_1 a {
  display: inline-block;
  padding: 4px 20px 5px;
  border-radius: 50px;
  border: 1px solid var(--accent-color);
}
.cs_tab_links.cs_style_1 a:hover {
  color: var(--accent-color);
  background-color: var(--gray3-color);
}

.cs_tabs .cs_tab {
  position: absolute;
  top: 0;
  opacity: 0;
}
.cs_tabs .cs_tab .cs_transform_img {
  opacity: 0;
  transform: scale(0.95);
}
.cs_tabs .cs_tab.active {
  position: initial;
  opacity: 1;
}
.cs_tabs .cs_tab.active .cs_transform_img {
  opacity: 1;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.45, 0.55, 0.515, 0.55);
}

/*====================================================
  23. Testimonials Section
======================================================*/
@media (max-width: 991px) {
  .cs_testimonial_section_1 {
    padding: 70px 0;
  }
  .cs_testimonial_section_1 .cs_controller_2 {
    position: initial;
    bottom: initial;
    right: initial;
    margin-top: 30px;
  }
}

.cs_testimonial_content {
  padding: 120px 112px 120px 0;
}
@media (max-width: 1399px) {
  .cs_testimonial_content {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cs_testimonial_content {
    padding: 0;
  }
}

.cs_testimonial_style_1 .cs_testimonial_header,
.cs_testimonial_style_4 .cs_testimonial_header {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cs_testimonial_style_1 .cs_rating,
.cs_testimonial_style_4 .cs_rating {
  flex: none;
  width: 152px;
}
.cs_testimonial_style_1 blockquote,
.cs_testimonial_style_4 blockquote {
  font-size: 20px;
  font-style: normal;
  line-height: 1.5em;
  color: var(--primary-color);
  margin-bottom: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cs_testimonial_style_1 .cs_testimonial_author,
.cs_testimonial_style_4 .cs_testimonial_author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cs_testimonial_style_1 .cs_testimonial_author .cs_author_img,
.cs_testimonial_style_4 .cs_testimonial_author .cs_author_img {
  width: 100px;
  height: 100px;
}
.cs_testimonial_style_1 .cs_testimonial_author .cs_author_img img,
.cs_testimonial_style_4 .cs_testimonial_author .cs_author_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .cs_testimonial_style_1 blockquote,
  .cs_testimonial_style_4 blockquote {
    margin-bottom: 30px;
  }
  .cs_testimonial_style_1 .cs_testimonial_author,
  .cs_testimonial_style_4 .cs_testimonial_author {
    gap: 15px;
  }
  .cs_testimonial_style_1 .cs_testimonial_author .cs_author_img,
  .cs_testimonial_style_4 .cs_testimonial_author .cs_author_img {
    width: 70px;
    height: 70px;
  }
}

.cs_testimonial_img {
  width: min(50vw, 948px);
  height: 100%;
}
.cs_testimonial_img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_testimonial_img .cs_ticker_container {
  width: calc(100% - 30px);
  padding-left: 38px;
  position: absolute;
  right: 0;
  bottom: 24px;
  border-radius: 50px 0 0 50px;
  background: rgba(19, 109, 244, 0.8);
}
@media (max-width: 991px) {
  .cs_testimonial_img {
    width: 100%;
    border-radius: 20px;
  }
}

.cs_testimonial_style_2 {
  width: 100%;
  height: 100%;
  padding: 24px 24px 40px;
}
.cs_testimonial_style_2 .cs_rating {
  width: 124px;
  letter-spacing: 3px;
}
.cs_testimonial_style_2 blockquote {
  font-size: 20px;
  line-height: 1.5em;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}
.cs_testimonial_style_2 .cs_testimonial_author {
  display: flex;
  gap: 25px;
  align-items: center;
  padding-bottom: 24px;
  position: relative;
}
.cs_testimonial_style_2 .cs_testimonial_author::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.4;
  background: rgba(134, 148, 167, 0.5);
}
.cs_testimonial_style_2 .cs_testimonial_author .cs_author_img {
  width: 75px;
  height: 75px;
  flex: none;
}
.cs_testimonial_style_2 .cs_testimonial_author .cs_author_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_testimonial_style_2 .cs_testimonial_author .cs_author_name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cs_testimonial_style_2 {
    padding: 24px 15px;
  }
}
@media (max-width: 575px) {
  .cs_testimonial_style_2 .cs_testimonial_author {
    gap: 15px;
  }
  .cs_testimonial_style_2 .cs_testimonial_author .cs_author_img {
    width: 55px;
    height: 55px;
  }
  .cs_testimonial_style_2 .cs_testimonial_author .cs_author_name {
    font-size: 16px;
  }
  .cs_testimonial_style_2 blockquote {
    font-size: 16px;
  }
}

.cs_testimonial_style_3 {
  width: 100%;
  padding-bottom: 75px;
}
.cs_testimonial_style_3 .cs_testimonial_content {
  padding: 0;
}
.cs_testimonial_style_3 blockquote {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin-bottom: 48px;
}
.cs_testimonial_style_3 .cs_testimonial_author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cs_testimonial_style_3 .cs_testimonial_author .cs_author_icon {
  width: 75px;
  height: 75px;
  flex: none;
  padding: 15px;
  background-color: var(--gray6-color);
}
.cs_testimonial_style_3 .cs_testimonial_author .cs_author_icon img {
  border-radius: 0;
}
@media (max-width: 1199px) {
  .cs_testimonial_style_3 blockquote {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cs_testimonial_style_3 {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .cs_testimonial_style_3 blockquote {
    font-size: 18px;
  }
}

.cs_testimonial_style_4 blockquote {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25em;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin-bottom: 56px;
  display: block;
}
.cs_testimonial_style_4 .cs_testimonial_author {
  gap: 33px;
}
@media (max-width: 991px) {
  .cs_testimonial_style_4 blockquote {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .cs_testimonial_style_4 .cs_testimonial_author {
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .cs_testimonial_style_4 blockquote {
    font-size: 20px;
  }
}

.cs_testimonial_style_5 {
  width: 424px;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_testimonial_style_5 .cs_testimonial_author {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(134, 148, 167, 0.2);
}
.cs_testimonial_style_5 .cs_testimonial_author .cs_author_img {
  width: 75px;
  height: 75px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
}
.cs_testimonial_style_5 .cs_testimonial_author .cs_author_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_testimonial_style_5 blockquote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  font-style: normal;
  color: var(--primary-color);
  font-family: var(--secondary-font);
}
@media (max-width: 991px) {
  .cs_testimonial_style_5 {
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .cs_testimonial_style_5 {
    width: 300px;
  }
  .cs_testimonial_style_5 .cs_testimonial_author {
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .cs_testimonial_style_5 .cs_testimonial_author .cs_author_img {
    width: 50px;
    height: 50px;
  }
  .cs_testimonial_style_5 .cs_testimonial_author .cs_author_name {
    font-size: 18px;
  }
  .cs_testimonial_style_5 blockquote {
    font-size: 16px;
  }
}

.cs_testimonial_info_container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  padding: 25px 30px;
}
.cs_testimonial_info_container .cs_testimonial_info_item {
  display: flex;
  gap: 10px;
}
@media (max-width: 991px) {
  .cs_testimonial_info_container {
    gap: 15px;
    padding: 20px 15px;
  }
}

/*====================================================
  Testimonials Sections
======================================================*/
.cs_testimonial_section_2 {
  width: calc(100% - 24px);
  max-width: 1872px;
  margin: 0 auto;
  padding: 120px 0;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cs_testimonial_section_2 {
    padding: 60px 0;
    border-radius: 10px 10px 0 0;
  }
}

.cs_testimonial_section_3 {
  padding: 120px 0;
}
.cs_testimonial_section_3 .cs_controller_4 {
  right: initial;
  transform: translateX(0);
}
@media (max-width: 991px) {
  .cs_testimonial_section_3 {
    padding: 60px 0;
  }
}

.cs_testimonial_image_wrap {
  width: 100%;
  height: 100%;
  position: relative;
  padding-right: 100px;
}
.cs_testimonial_image_wrap > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cs_testimonial_image_wrap .cs_testimonial_badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  min-height: 219px;
  padding: 14px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: cs_badge_floating 3.2s ease-in-out infinite;
}
.cs_testimonial_image_wrap .cs_testimonial_badge > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_testimonial_image_wrap .cs_testimonial_badge .cs_badge_label {
  line-height: 1.8em;
}
.cs_testimonial_image_wrap .cs_testimonial_badge .cs_badge_brand {
  margin-top: auto;
}
@media (max-width: 1199px) {
  .cs_testimonial_image_wrap {
    padding-right: 50px;
  }
}
@media (max-width: 575px) {
  .cs_testimonial_image_wrap {
    padding-right: 0;
  }
  .cs_testimonial_image_wrap .cs_testimonial_badge {
    min-height: auto;
    right: 10px;
    bottom: 10px;
  }
}

.cs_testimonial_section_4 {
  padding: 120px 0;
}
.cs_testimonial_section_4 .cs_testimonial_container {
  width: min(100%, 760px);
}
.cs_testimonial_section_4 .cs_controller_4 {
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cs_testimonial_section_4 {
    padding: 70px 0;
  }
  .cs_testimonial_section_4 .cs_controller_4 {
    margin-top: 30px;
  }
}

.cs_testimonial_section_5 {
  width: min(100%, 1920px);
  padding: 120px 0;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cs_testimonial_section_5 {
    padding: 70px 0;
  }
}
.cs_testimonial_section_5 .cs_customer_rating_container,
.cs_testimonial_section_5 .cs_section_heading_style_1 {
  width: min(100%, 1096px);
}

/*====================================================
 Animations
======================================================*/
@keyframes cs_badge_floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/*========================================================
  24. Appointment Section
==========================================================*/
.cs_appointment_section_1, .cs_appointment_section_5 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_appointment_section_1, .cs_appointment_section_5 {
    padding: 60px 0;
  }
}

.cs_appointment_help_cta {
  width: calc(100% - 24px);
  position: absolute;
  left: 0;
  bottom: 24px;
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 24px;
  background-color: rgba(19, 109, 244, 0.8);
  border-radius: 0 50px 50px 0;
  text-decoration: none;
  z-index: 2;
}
.cs_appointment_help_cta a:hover {
  color: var(--white-color);
  text-decoration: underline;
}

.cs_appointment_2 {
  width: calc(1320px + (100vw - 1344px) / 2);
  max-width: 1596px;
  padding: 48px;
  margin-left: auto;
  border-radius: 0 0 20px 20px;
}
.cs_appointment_2 .cs_appointment_form_wrapper {
  padding-left: 115px;
  max-width: 993px;
}
.cs_appointment_2 .cs_checkup_schedule {
  padding: 12px 20px 20px;
  border-radius: 0 0 10px 10px;
  background-color: #bfd4cd;
  margin-top: -2px;
  position: relative;
  z-index: 1;
}
.cs_appointment_2 .cs_schedule_header {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cs_appointment_2 .cs_schedule_header span {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
  font-family: var(--primary-font);
}
.cs_appointment_2 .cs_schedule_header img {
  display: inline-block;
  width: 18px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1897%) hue-rotate(207deg) brightness(98%) contrast(95%);
}
.cs_appointment_2 .cs_schedule_header a {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--primary-font);
}
.cs_appointment_2 .cs_schedule_header a:hover {
  color: var(--accent-color);
}
.cs_appointment_2 .cs_schedult_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs_appointment_2 .cs_schedult_list li {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cs_appointment_2 {
    width: calc(1140px + (100vw - 1184px) / 2);
    padding: 48px 20px;
  }
  .cs_appointment_2 .cs_appointment_form_wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .cs_appointment_2 {
    width: calc(960px + (100vw - 1008px) / 2);
  }
  .cs_appointment_2 .cs_appointment_form_wrapper {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cs_appointment_2 {
    width: 100%;
    padding: 40px 15px;
  }
}

.cs_appointment_content .cs_appountment_features {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_appointment_content .cs_appountment_features li {
  position: relative;
  padding-left: 34px;
}
.cs_appointment_content .cs_appountment_features li img {
  position: absolute;
  left: 0;
  top: 0;
}
.cs_appointment_content .cs_content_bottom {
  padding-right: 112px;
}
.cs_appointment_content .cs_appointment_img img {
  border-radius: 10px 10px 0 0;
}
.cs_appointment_content .cs_funfact_style_1 {
  width: min(100%, 470px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cs_appointment_content .cs_funfact_style_1 .cs_funfact_item {
  position: relative;
}
.cs_appointment_content .cs_funfact_style_1 .cs_funfact_item::after {
  content: "";
  width: 1px;
  height: 68px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: rgba(134, 148, 167, 0.5);
}
.cs_appointment_content .cs_funfact_style_1 .cs_funfact_item:last-child {
  margin-left: auto;
}
.cs_appointment_content .cs_funfact_style_1 .cs_funfact_item:last-child::after {
  display: none;
}
@media (max-width: 1199px) {
  .cs_appointment_content .cs_content_bottom {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cs_appointment_content .cs_content_bottom {
    padding-right: 0;
  }
}

.cs_appointment_img {
  width: 100%;
}
.cs_appointment_img img {
  width: 100%;
}

.cs_appointment_form_wrapper .cs_form_field {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--gray4-color);
  outline: none;
}
.cs_appointment_form_wrapper .cs_form_field:focus {
  border-color: var(--accent-color);
}

.cs_appointment_form_1 .cs_input_wrap,
.cs_appointment_form_2 .cs_input_wrap {
  padding: 10px;
}
.cs_appointment_form_1 label,
.cs_appointment_form_2 label {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.45em;
  color: var(--primary-color);
}
.cs_appointment_form_1 .cs_form_field,
.cs_appointment_form_1 .cs_timepicker,
.cs_appointment_form_1 .cs_datepicker,
.cs_appointment_form_1 .choices__inner,
.cs_appointment_form_2 .cs_form_field,
.cs_appointment_form_2 .cs_timepicker,
.cs_appointment_form_2 .cs_datepicker,
.cs_appointment_form_2 .choices__inner {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 16px;
  resize: none;
  background-color: transparent;
}
.cs_appointment_form_1 .cs_date_icon,
.cs_appointment_form_2 .cs_date_icon {
  right: 12px;
  bottom: 14px;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(31%) sepia(12%) saturate(671%) hue-rotate(176deg) brightness(97%) contrast(91%);
}
.cs_appointment_form_1 .cs_time_icon,
.cs_appointment_form_2 .cs_time_icon {
  display: inline-block;
  right: 15px;
  bottom: 21px;
  pointer-events: none;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}
.cs_appointment_form_1 .choices__inner,
.cs_appointment_form_2 .choices__inner {
  min-height: auto;
  padding-bottom: 0 !important;
}
.cs_appointment_form_1 .choices__list.choices__list--single,
.cs_appointment_form_2 .choices__list.choices__list--single {
  padding: 0;
}
.cs_appointment_form_1 .choices__list--dropdown,
.cs_appointment_form_1 .choices__list[aria-expanded],
.cs_appointment_form_2 .choices__list--dropdown,
.cs_appointment_form_2 .choices__list[aria-expanded] {
  border: 1px solid var(--accent-color);
  margin-top: 10px;
}
.cs_appointment_form_1 .choices__list--dropdown .choices__item:hover,
.cs_appointment_form_1 .choices__list[aria-expanded] .choices__item:hover,
.cs_appointment_form_2 .choices__list--dropdown .choices__item:hover,
.cs_appointment_form_2 .choices__list[aria-expanded] .choices__item:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_appointment_form_1 .choices[data-type*=select-one]::after,
.cs_appointment_form_2 .choices[data-type*=select-one]::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--secondary-color);
  border-left: 0;
  border-top: 0;
  position: absolute;
  right: 5px;
  top: 50%;
  margin: 0;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.cs_appointment_form_1 .cs_btn_style_2,
.cs_appointment_form_2 .cs_btn_style_2 {
  padding: 11px 25px 12px;
  border-color: var(--accent-color);
}
.cs_appointment_form_1 .cs_btn_style_2 img,
.cs_appointment_form_2 .cs_btn_style_2 img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(57%) saturate(423%) hue-rotate(175deg) brightness(94%) contrast(89%);
  transition: filter 0.4s ease;
}
.cs_appointment_form_1 .cs_btn_style_2:hover,
.cs_appointment_form_2 .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_appointment_form_1 .cs_btn_style_2:hover img,
.cs_appointment_form_2 .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(5%) hue-rotate(320deg) brightness(107%) contrast(100%);
}
.cs_appointment_form_1 .cs_input_rating_wrap,
.cs_appointment_form_2 .cs_input_rating_wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cs_appointment_form_1 .cs_input_rating_wrap .cs_input_rating,
.cs_appointment_form_2 .cs_input_rating_wrap .cs_input_rating {
  cursor: pointer;
}
.cs_appointment_form_1 .cs_input_rating_wrap .cs_input_rating .fa-solid,
.cs_appointment_form_2 .cs_input_rating_wrap .cs_input_rating .fa-solid {
  color: var(--accent-color);
}

.cs_appointment_form_2 .cs_input_wrap {
  padding: 0;
}
.cs_appointment_form_2 .cs_form_field,
.cs_appointment_form_2 .cs_timepicker,
.cs_appointment_form_2 .cs_datepicker,
.cs_appointment_form_2 .choices__inner {
  padding: 15px 20px !important;
  border-radius: 5px;
  background-color: var(--white-color);
}
.cs_appointment_form_2 .choices[data-type*=select-one]::after {
  right: 15px;
  top: 49%;
}
.cs_appointment_form_2 .cs_date_icon {
  right: 15px;
  bottom: 18px;
}
.cs_appointment_form_2 .cs_time_icon {
  bottom: 25px;
}
.cs_appointment_form_2.cs_type_1 .cs_input_wrap {
  padding: 11px 10px;
}
.cs_appointment_form_2.cs_type_1 label {
  font-size: 14px;
  line-height: 1.42em;
}
.cs_appointment_form_2.cs_type_1 .cs_form_field,
.cs_appointment_form_2.cs_type_1 .cs_timepicker,
.cs_appointment_form_2.cs_type_1 .cs_datepicker,
.cs_appointment_form_2.cs_type_1 .choices__inner {
  padding: 0 !important;
  border: 0;
}
.cs_appointment_form_2.cs_type_1 .cs_date_icon {
  bottom: 15px;
}
.cs_appointment_form_2.cs_type_1 .cs_time_icon {
  bottom: 20px;
}
.cs_appointment_form_2.cs_type_1 .choices[data-type*=select-one]::after {
  right: 5px;
}

.flatpickr-day.today {
  border-color: var(--accent-color);
}

.flatpickr-day:hover {
  color: var(--white-color);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}

/*========================================================
  APPOINTMENT Section 3
==========================================================*/
.cs_appointment_section_3 {
  padding: 120px 0;
}
.cs_appointment_section_3 .cs_appointment_map {
  width: 100%;
}
.cs_appointment_section_3 .cs_appointment_map iframe {
  width: 100%;
  min-height: 540px;
  border: 0;
  border-radius: inherit;
}
.cs_appointment_section_3 .cs_appointment_promise {
  width: 100%;
  padding: 24px;
  min-height: 366px;
  display: flex;
  flex-direction: column;
}
.cs_appointment_section_3 .cs_appointment_promise_title {
  position: relative;
  z-index: 2;
  max-width: 80%;
  line-height: 1.4;
}
.cs_appointment_section_3 .cs_appointment_promise_img {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
}
.cs_appointment_section_3 .cs_appointment_promise_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cs_appointment_section_3 .cs_appointment_promise_img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 242, 249, 0.85) 0%, rgba(244, 242, 249, 0.1) 50%);
  z-index: 1;
}
.cs_appointment_section_3 .cs_appointment_right {
  width: 100%;
  margin-top: -544px;
}
.cs_appointment_section_3 .cs_appointment_container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cs_appointment_section_3 .cs_appointment_container .cs_appointment_heading {
  padding-right: 60px;
}
.cs_appointment_section_3 .cs_appointment_form_wrapper {
  width: 100%;
  padding: 110px;
}
@media (max-width: 1399px) {
  .cs_appointment_section_3 .cs_appointment_container .cs_appointment_heading {
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .cs_appointment_section_3 .cs_appointment_right {
    margin-top: 0;
  }
  .cs_appointment_section_3 .cs_appointment_container {
    align-items: flex-start;
  }
  .cs_appointment_section_3 .cs_appointment_form_wrapper {
    padding: 28px 24px;
  }
}
@media (max-width: 991px) {
  .cs_appointment_section_3 {
    padding: 60px 0;
  }
  .cs_appointment_section_3 .cs_appointment_promise {
    padding: 24px 15px;
    min-height: 250px;
  }
  .cs_appointment_section_3 .cs_appointment_map iframe {
    min-height: 340px;
  }
}
@media (max-width: 575px) {
  .cs_appointment_section_3 .cs_appointment_form_wrapper {
    padding: 24px 15px;
  }
}

/*========================================================
  Appointment Section 4
==========================================================*/
.cs_appointment_section_4 .cs_appointment_img {
  width: min(100%, 836px);
  height: 100%;
  transform: translateX(-12px);
}
.cs_appointment_section_4 .cs_appointment_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_appointment_section_4 .cs_appointment_form_wrapper {
  padding: 120px 0;
  width: min(100%, 648px);
}
@media (min-width: 1920px) {
  .cs_appointment_section_4 .cs_appointment_img {
    transform: translateX(-40px);
  }
}
@media (max-width: 991px) {
  .cs_appointment_section_4 {
    padding: 70px 0 120px;
  }
  .cs_appointment_section_4 .cs_appointment_img {
    width: 100%;
    transform: translateX(0px);
    border-radius: 10px;
  }
  .cs_appointment_section_4 .cs_appointment_form_wrapper {
    width: 100%;
    padding: 0 0 50px;
  }
}

/*========================================================
  Appointment Section 5
==========================================================*/
.cs_appointment_section_5 .cs_appointment_content {
  width: min(100%, 536px);
}
.cs_appointment_section_5 .cs_content_bottom {
  padding-right: 0;
}

/*=================================================
  25. Features Section
===================================================*/
.cs_feature_section_1 {
  position: relative;
  z-index: 10;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_feature_section_1 {
    padding: 70px 0;
  }
}

.cs_feature_section_2 {
  padding: 24px 0 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .cs_feature_section_2 .container {
    max-width: 100%;
  }
}

.cs_feature_section_3 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_feature_section_3 {
    padding: 60px 0;
  }
}

.cs_feature_section_4 {
  position: relative;
  width: 100%;
  min-height: 800px;
  padding: 120px 0 24px;
  display: flex;
  align-items: flex-end;
}
.cs_feature_section_4 .cs_feature_bg {
  inset: 0;
  z-index: 0;
}
.cs_feature_section_4 .cs_feature_bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_feature_section_4 .cs_hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 47.96%, rgba(0, 0, 0, 0.7) 100%);
}
.cs_feature_section_4 .container {
  position: relative;
  z-index: 1;
}
.cs_feature_section_4 .cs_hero_feature_card {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(231% 135.8% at 0.9% 2.98%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
  backdrop-filter: blur(5px);
  transition: transform 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}
.cs_feature_section_4 .cs_hero_feature_card .cs_hero_feature_top {
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.cs_feature_section_4 .cs_hero_feature_card .cs_feature_icon {
  width: 50px;
  height: 50px;
  flex: none;
}
.cs_feature_section_4 .cs_hero_feature_card .cs_feature_desc {
  margin-top: auto;
}
.cs_feature_section_4 .cs_hero_feature_card:hover {
  transform: translateY(-5px);
}
@media (max-width: 991px) {
  .cs_feature_section_4 {
    min-height: auto;
  }
  .cs_feature_section_4 .cs_hero_feature_card {
    padding: 20px 15px;
  }
  .cs_feature_section_4 .cs_hero_feature_card .cs_feature_icon {
    width: 40px;
    height: 40px;
  }
}

/*=================================================
 Feature Cards
===================================================*/
.cs_feature_grid_2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .cs_feature_grid_2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs_feature_grid_2 .cs_feature_card_2:nth-child(3) {
    grid-column: auto/span 2;
  }
}
@media (max-width: 767px) {
  .cs_feature_grid_2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_feature_grid_2 .cs_feature_card_2:nth-child(3) {
    grid-column: auto/span 1;
  }
}

.cs_feature_card_1, .cs_feature_card_4 {
  width: 100%;
  height: 100%;
  padding: 24px;
  transition: all 0.3s ease;
}
.cs_feature_card_1.cs_color_1, .cs_color_1.cs_feature_card_4 {
  background-color: #e4ddcd;
}
.cs_feature_card_1.cs_color_2, .cs_color_2.cs_feature_card_4 {
  background-color: #bfd4cd;
}
.cs_feature_card_1.cs_color_3, .cs_color_3.cs_feature_card_4 {
  background-color: #cecddd;
}
.cs_feature_card_1.cs_color_4, .cs_color_4.cs_feature_card_4 {
  background-color: #dbd5f7;
}
.cs_feature_card_1 .cs_feature_card_header, .cs_feature_card_4 .cs_feature_card_header {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cs_feature_card_1 .cs_feature_icon, .cs_feature_card_4 .cs_feature_icon {
  width: 56px;
  height: 56px;
  flex: none;
  padding: 15px;
}
.cs_feature_card_1 .cs_feature_icon img, .cs_feature_card_4 .cs_feature_icon img {
  width: 24px;
  flex: none;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(27%) sepia(31%) saturate(6563%) hue-rotate(211deg) brightness(101%) contrast(91%);
}
.cs_feature_card_1 a:hover, .cs_feature_card_4 a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.cs_feature_card_1:hover, .cs_feature_card_4:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
  .cs_feature_card_1, .cs_feature_card_4 {
    padding: 24px 15px;
  }
}

.cs_feature_card_2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 24px 24px 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.cs_feature_card_2.cs_color_1 {
  background-color: #e4ddcd;
}
.cs_feature_card_2.cs_color_1 .cs_feature_img {
  border-radius: 10px 10px 0 0;
}
.cs_feature_card_2.cs_color_2 {
  background-color: #dbd5f7;
  padding: 24px;
}
.cs_feature_card_2.cs_color_3 {
  background-color: #bfd4cd;
}
.cs_feature_card_2 .cs_feature_img {
  width: 100%;
  margin-top: auto;
}
.cs_feature_card_2 .cs_feature_img img {
  width: 100%;
}
.cs_feature_card_2 .cs_feature_card_header {
  display: flex;
  gap: 15px 20px;
  align-items: center;
}
.cs_feature_card_2 .cs_feature_icon {
  width: 75px;
  height: 75px;
  flex: none;
  padding: 12px;
}
.cs_feature_card_2 .cs_feature_icon img {
  border-radius: 0;
}
.cs_feature_card_2 .cs_feature_title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs_feature_card_2 .cs_funfact_style_1 {
  width: min(100%, 280px);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  justify-content: space-between;
}
.cs_feature_card_2 .cs_funfact_style_1 .odometer.odometer-auto-theme,
.cs_feature_card_2 .cs_funfact_style_1 .odometer.odometer-theme-default {
  font-family: var(--primary-font);
  line-height: 1em;
}
.cs_feature_card_2 .cs_funfact_style_1 .cs_funfact_number {
  display: flex;
  align-items: flex-end;
}
.cs_feature_card_2 .cs_funfact_style_1 .cs_funfact_number small {
  display: inline-block;
  line-height: 2.5em;
}
.cs_feature_card_2 .cs_btn_style_1 {
  border: 1px solid var(--accent-color);
}
.cs_feature_card_2 .cs_btn_style_1::before, .cs_feature_card_2 .cs_btn_style_1::after {
  background-color: var(--accent-color);
}
.cs_feature_card_2:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .cs_feature_card_2 {
    padding: 24px 15px 0;
    border-radius: 15px;
  }
  .cs_feature_card_2.cs_color_2 {
    padding: 24px 15px;
  }
}
@media (max-width: 575px) {
  .cs_feature_card_2 .cs_feature_card_header {
    gap: 15px;
  }
  .cs_feature_card_2 .cs_feature_icon {
    width: 60px;
    height: 60px;
  }
}

.cs_feature_card_3 {
  width: 100%;
  height: 100%;
  min-height: 246px;
}
.cs_feature_card_3 .cs_feature_card_inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.45, 0.5, 0.55, 0.55);
}
.cs_feature_card_3 .cs_feature_card_face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cs_feature_card_3 .cs_feature_card_front {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.55);
}
.cs_feature_card_3 .cs_feature_card_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cs_feature_card_3 .cs_feature_card_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_feature_card_3 .cs_feature_card_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, #000 100%);
}
.cs_feature_card_3 .cs_feature_card_front_content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 22px 24px 24px;
}
.cs_feature_card_3 .cs_feature_card_header {
  display: flex;
  gap: 24px;
  align-items: center;
}
.cs_feature_card_3 .cs_feature_card_icon {
  width: 75px;
  height: 75px;
  flex: none;
  padding: 12px;
}
.cs_feature_card_3 .cs_feature_card_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(105%) contrast(101%);
}
.cs_feature_card_3 .cs_feature_card_back {
  transform: translateX(-100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.45, 0.35, 0.45, 0.5);
}
.cs_feature_card_3 .cs_feature_card_back .cs_feature_card_header {
  gap: 20px;
}
.cs_feature_card_3 .cs_feature_card_icon_back {
  width: 75px;
  height: 75px;
  flex: none;
  padding: 17px;
  background: rgba(200, 221, 255, 0.8);
}
.cs_feature_card_3 .cs_feature_card_icon_back img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
.cs_feature_card_3:hover .cs_feature_card_back {
  transform: translateX(0);
}
.cs_feature_card_3:hover .cs_feature_card_front {
  transform: translateY(100%);
}
@media (max-width: 991px) {
  .cs_feature_card_3 .cs_feature_card_back,
  .cs_feature_card_3 .cs_feature_card_front_content {
    padding: 20px 15px;
  }
  .cs_feature_card_3 .cs_feature_card_icon_back,
  .cs_feature_card_3 .cs_feature_card_icon {
    width: 55px;
    height: 55px;
    padding: 10px;
  }
}

.cs_feature_card_4 {
  padding: 20px;
}

/*=============================================
 Why Choose Us Section
===============================================*/
.cs_technology_section_1, .cs_technology_section_2 {
  padding: 120px 0;
}
.cs_technology_section_1 .cs_technology_img, .cs_technology_section_2 .cs_technology_img {
  width: calc(100% + 40px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transform: translateX(-150px);
}
.cs_technology_section_1 .cs_technology_img > img, .cs_technology_section_2 .cs_technology_img > img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_technology_section_1 .cs_technology_img::before, .cs_technology_section_2 .cs_technology_img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0) 50.3%, #1f2937 91.83%);
}
.cs_technology_section_1 .cs_technology_text, .cs_technology_section_2 .cs_technology_text {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 24px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
}
.cs_technology_section_1 .cs_accredited_badge, .cs_technology_section_2 .cs_accredited_badge {
  width: 140px;
  height: 140px;
  padding: 10px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_technology_section_1 .cs_feature_list, .cs_technology_section_2 .cs_feature_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_technology_section_1 .cs_feature_list li, .cs_technology_section_2 .cs_feature_list li {
  position: relative;
  padding-left: 26px;
}
.cs_technology_section_1 .cs_feature_list img, .cs_technology_section_2 .cs_feature_list img {
  position: absolute;
  left: 0;
  top: 8px;
}
.cs_technology_section_1 .cs_circular_text, .cs_technology_section_2 .cs_circular_text {
  animation: circularRotation 10s linear infinite;
}
.cs_technology_section_1 .cs_call_btn, .cs_technology_section_2 .cs_call_btn {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px;
  transform: translate(-50%, -50%);
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.cs_technology_section_1 .cs_call_btn img, .cs_technology_section_2 .cs_call_btn img {
  border-radius: 0;
  transition: transform 0.2s cubic-bezier(0.445, 0.5, 0.55, 1.5);
}
.cs_technology_section_1 .cs_call_btn:hover img, .cs_technology_section_2 .cs_call_btn:hover img {
  transform: scale(1.1);
}
.cs_technology_section_1 .cs_feature_grid_1, .cs_technology_section_2 .cs_feature_grid_1 {
  display: grid;
  gap: 32px 24px;
  grid-template-columns: repeat(2, 1fr);
}
.cs_technology_section_1 .cs_feature_card_1, .cs_technology_section_2 .cs_feature_card_1, .cs_technology_section_1 .cs_feature_card_4, .cs_technology_section_2 .cs_feature_card_4 {
  width: 100%;
}
.cs_technology_section_1 .cs_feature_card_1 .cs_feature_card_header, .cs_technology_section_2 .cs_feature_card_1 .cs_feature_card_header, .cs_technology_section_1 .cs_feature_card_4 .cs_feature_card_header, .cs_technology_section_2 .cs_feature_card_4 .cs_feature_card_header {
  flex-wrap: nowrap;
  margin-bottom: 22px;
}
@media (max-width: 1650px) {
  .cs_technology_section_1 .cs_technology_img, .cs_technology_section_2 .cs_technology_img {
    transform: translateX(-80px);
  }
}
@media (max-width: 1500px) {
  .cs_technology_section_1 .cs_technology_img, .cs_technology_section_2 .cs_technology_img {
    width: calc(100% + 12px);
    transform: translateX(-30px);
  }
}
@media (max-width: 1399px) {
  .cs_technology_section_1 .cs_technology_img, .cs_technology_section_2 .cs_technology_img {
    width: 100%;
    transform: translateX(0);
  }
  .cs_technology_section_1 .cs_feature_grid_1, .cs_technology_section_2 .cs_feature_grid_1 {
    gap: 24px;
  }
}
@media (max-width: 991px) {
  .cs_technology_section_1, .cs_technology_section_2 {
    padding: 60px 0;
  }
  .cs_technology_section_1 .cs_technology_text, .cs_technology_section_2 .cs_technology_text {
    padding: 24px 15px;
  }
  .cs_technology_section_1 .cs_accredited_badge, .cs_technology_section_2 .cs_accredited_badge {
    width: 110px;
    height: 110px;
  }
  .cs_technology_section_1 .cs_feature_list, .cs_technology_section_2 .cs_feature_list {
    gap: 12px;
  }
  .cs_technology_section_1 .cs_call_btn, .cs_technology_section_2 .cs_call_btn {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 575px) {
  .cs_technology_section_1 .cs_feature_grid_1, .cs_technology_section_2 .cs_feature_grid_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_technology_section_1 .cs_technology_text, .cs_technology_section_2 .cs_technology_text {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
}

.cs_technology_section_2 .cs_feature_card_1 .cs_feature_icon img, .cs_technology_section_2 .cs_feature_card_4 .cs_feature_icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(108deg) brightness(104%) contrast(104%);
}
.cs_technology_section_2 .cs_technology_img {
  transform: translateX(110px);
}
@media (max-width: 1650px) {
  .cs_technology_section_2 .cs_technology_img {
    transform: translateX(30px);
  }
}
@media (max-width: 1500px) {
  .cs_technology_section_2 .cs_technology_img {
    width: 100%;
    transform: translateX(30px);
  }
}
@media (max-width: 1399px) {
  .cs_technology_section_2 .cs_technology_img {
    width: 100%;
    transform: translateX(0);
  }
}

.cs_whychoose_section_2 {
  padding: 120px 0;
  width: calc(100% - 24px);
  max-width: 1872px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cs_whychoose_section_2 {
    padding: 70px 0;
  }
}

/*=============================================
 Why Choose Section 3
===============================================*/
.cs_whychoose_section_3 {
  padding: 120px 0;
  overflow: hidden;
}
.cs_whychoose_section_3 .cs_whychoose_card {
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(134, 148, 167, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cs_whychoose_section_3 .cs_whychoose_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(31, 41, 55, 0.25);
}
.cs_whychoose_section_3 .cs_whychoose_img {
  width: 100%;
  position: relative;
}
.cs_whychoose_section_3 .cs_whychoose_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cs_whychoose_section_3 .cs_whychoose_img .cs_whychoose_stat {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 15px 24px;
  background: rgba(255, 246, 235, 0.9);
}
.cs_whychoose_section_3 .cs_whychoose_img .cs_stat_value {
  line-height: 1;
  margin-bottom: 2px;
  font-family: var(--primary-font);
}
.cs_whychoose_section_3 .cs_whychoose_badges {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cs_whychoose_section_3 .cs_whychoose_badges .cs_whychoose_badge {
  padding: 10px 20px;
  text-align: center;
  border-radius: 50px;
}
.cs_whychoose_section_3 .cs_whychoose_badges .cs_whychoose_badge.cs_color_1 {
  background-color: #dbd5f7;
}
.cs_whychoose_section_3 .cs_whychoose_badges .cs_whychoose_badge.cs_color_2 {
  background-color: #bfd4cd;
}
.cs_whychoose_section_3 .cs_whychoose_badges .cs_whychoose_badge.cs_color_3 {
  background-color: #fce7d4;
}
.cs_whychoose_section_3 .cs_whychoose_badges .cs_whychoose_badge.cs_color_4 {
  background-color: #d3e4ff;
}
@media (max-width: 991px) {
  .cs_whychoose_section_3 {
    padding: 70px 0;
  }
  .cs_whychoose_section_3 .cs_whychoose_card {
    padding: 20px 15px;
  }
  .cs_whychoose_section_3 .cs_whychoose_badges {
    margin-top: 30px;
  }
}

@keyframes circularRotation {
  100% {
    transform: rotate(360deg);
  }
}
/*=============================================
 Work Section
===============================================*/
.cs_work_section_1 {
  padding: 120px 0;
}
.cs_work_section_1 .cs_work_bg_shape {
  width: 100%;
  height: auto;
  left: 0;
  top: 45%;
  filter: blur(112px);
}
.cs_work_section_1 .cs_work_bg_shape img {
  width: 100%;
}
.cs_work_section_1 .col-lg-4:last-child .cs_work_card_shape {
  display: none;
}
@media (max-width: 991px) {
  .cs_work_section_1 {
    padding: 60px 0;
  }
  .cs_work_section_1 .cs_work_bg_shape {
    display: none;
  }
}

.cs_work_card_1,
.cs_work_card_2 {
  width: 100%;
  height: 100%;
}
.cs_work_card_1 .cs_work_img,
.cs_work_card_2 .cs_work_img {
  width: 150px;
  height: 150px;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.55);
}
.cs_work_card_1 .cs_work_img img,
.cs_work_card_2 .cs_work_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_work_card_1 .cs_work_img.cs_white_bg img,
.cs_work_card_2 .cs_work_img.cs_white_bg img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cs_work_card_1 .cs_work_info,
.cs_work_card_2 .cs_work_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -25px;
  position: relative;
  z-index: 1;
}
.cs_work_card_1 .cs_work_step,
.cs_work_card_2 .cs_work_step {
  width: 50px;
  height: 50px;
}
.cs_work_card_1 .cs_work_card_shape,
.cs_work_card_2 .cs_work_card_shape {
  width: 160px;
  flex: none;
  left: 85%;
  top: 15%;
  animation: indication 3s linear infinite;
}
.cs_work_card_1:hover .cs_work_img,
.cs_work_card_2:hover .cs_work_img {
  transform: scale(1.03);
}
.col-lg-3 .cs_work_card_1 .cs_work_card_shape,
.col-lg-3 .cs_work_card_2 .cs_work_card_shape {
  width: 100px;
  left: 88%;
  top: 20%;
}
@media (max-width: 1199px) {
  .cs_work_card_1 .cs_work_card_shape,
  .cs_work_card_2 .cs_work_card_shape {
    width: 100px;
  }
  .col-lg-3 .cs_work_card_1 .cs_work_card_shape,
  .col-lg-3 .cs_work_card_2 .cs_work_card_shape {
    width: 60px;
    left: 90%;
  }
}
@media (max-width: 991px) {
  .cs_work_card_1 .cs_work_card_shape,
  .cs_work_card_2 .cs_work_card_shape {
    display: none;
  }
}

.cs_work_card_2 .cs_work_img img {
  border-radius: 0;
}
@media (max-width: 991px) {
  .cs_work_card_2 .cs_work_img {
    background-color: var(--gray3-color);
  }
}

@keyframes indication {
  50% {
    transform: translateX(5px);
  }
}
/*=============================================
 Admission Section
===============================================*/
.cs_admission_section_1 {
  padding: 120px 0;
}
.cs_admission_section_1 .cs_admission_steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cs_admission_section_1 .cs_admission_step {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px 30px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.cs_admission_section_1 .cs_admission_step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(19, 109, 244, 0.1);
}
.cs_admission_section_1 .cs_admission_step_number {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.cs_admission_section_1 .cs_admission_step_content {
  flex: 1;
}
.cs_admission_section_1 .cs_admission_img {
  width: 100%;
}
.cs_admission_section_1 .cs_admission_img > img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_admission_section_1 .cs_admission_badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 140px;
  height: 140px;
  padding: 10px;
  z-index: 2;
}
.cs_admission_section_1 .cs_circular_text {
  width: 100%;
  height: 100%;
  animation: circularRotation 12s linear infinite;
}
.cs_admission_section_1 .cs_circular_text img {
  width: 100%;
  height: 100%;
}
.cs_admission_section_1 .cs_admission_badge_icon {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 14px;
  transform: translate(-50%, -50%);
}
.cs_admission_section_1 .cs_admission_badge_icon img {
  border-radius: 0;
  transition: transform 0.3s cubic-bezier(0.45, 0.5, 0.55, 1.5);
}
.cs_admission_section_1 .cs_admission_badge_icon:hover img {
  transform: scale(1.03);
}
.cs_admission_section_1 .cs_admission_option {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cs_admission_section_1 .cs_admission_option.cs_color_1 {
  background-color: #c9e5dd;
}
.cs_admission_section_1 .cs_admission_option.cs_color_2 {
  background-color: var(--gray5-color);
}
.cs_admission_section_1 .cs_admission_option:hover {
  transform: translateY(-3px);
}
.cs_admission_section_1 .cs_admission_option_price small {
  color: var(--secondary-color);
}
.cs_admission_section_1 .cs_btn_style_2 {
  border-width: 1px;
  padding: 12px 25px;
  border-color: var(--accent-color);
}
.cs_admission_section_1 .cs_btn_style_2 img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(13%) sepia(11%) saturate(1768%) hue-rotate(176deg) brightness(99%) contrast(92%);
}
.cs_admission_section_1 .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_admission_section_1 .cs_btn_style_2:hover img {
  transform: translateX(2px);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(105%) contrast(101%);
}
@media (max-width: 1399px) {
  .cs_admission_section_1 .cs_admission_step {
    padding: 24px 22px;
    gap: 18px;
  }
  .cs_admission_section_1 .cs_admission_option {
    padding: 24px 15px;
  }
  .cs_admission_section_1 .cs_admission_step_number {
    font-size: 56px;
  }
}
@media (max-width: 1199px) {
  .cs_admission_section_1 .cs_admission_badge {
    width: 120px;
    height: 120px;
    right: 18px;
    bottom: 18px;
  }
  .cs_admission_section_1 .cs_admission_badge_icon {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 991px) {
  .cs_admission_section_1 {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .cs_admission_section_1 .cs_admission_step {
    padding: 20px 15px;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cs_admission_section_1 .cs_admission_step_number {
    font-size: 40px;
    writing-mode: lr;
    transform: rotate(0);
  }
  .cs_admission_section_1 .cs_admission_badge {
    width: 120px;
    height: 120px;
    right: 14px;
    bottom: 14px;
  }
  .cs_admission_section_1 .cs_admission_badge_icon {
    width: 56px;
    height: 56px;
  }
}

/*========================================================
  CTA Section 3
==========================================================*/
.cs_cta_section_3 {
  margin-bottom: -216px;
}
.cs_cta_section_3 .cs_cta_card {
  position: relative;
  padding: 88px 48px 88px 110px;
}
.cs_cta_section_3 .cs_cta_inner {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 1;
}
.cs_cta_section_3 .cs_cta_text {
  position: relative;
  width: min(100%, 536px);
}
.cs_cta_section_3 .cs_cta_desc span {
  color: var(--primary-color);
}
.cs_cta_section_3 .cs_cta_visual {
  width: 488px;
  height: 495px;
  top: -100px;
  right: 120px;
  border-radius: 50%;
  padding: 20px;
}
.cs_cta_section_3 .cs_cta_visual > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
}
.cs_cta_section_3 .cs_cta_image_stage {
  padding: 20px;
  position: relative;
}
.cs_cta_section_3 .cs_cta_image_circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cs_cta_section_3 .cs_cta_image_circle::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.39;
  border-radius: inherit;
  background-color: #fcfcfc;
}
.cs_cta_section_3 .cs_cta_image_circle > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.cs_cta_section_3 .cs_cta_offer {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 134px;
  height: 134px;
  padding: 24px;
  z-index: 1;
  border-radius: 50%;
  border: 3px solid var(--white-color);
  background-color: var(--primary-color);
  display: flex;
  gap: 2px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: bubbleUp 2s cubic-bezier(0.455, 0.03, 0.515, 1.55) infinite;
}
.cs_cta_section_3 .cs_cta_offer_label {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
.cs_cta_section_3 .cs_cta_actions {
  position: absolute;
  right: 48px;
  bottom: 45px;
  width: 64px;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 2;
}
.cs_cta_section_3 .cs_cta_actions > * {
  pointer-events: auto;
}
.cs_cta_section_3 .cs_cta_phone {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 10px;
  letter-spacing: 1px;
}
.cs_cta_section_3 .cs_cta_phone .cs_cta_phone_label {
  font-size: 14px;
}
.cs_cta_section_3 .cs_cta_phone .cs_cta_phone_number {
  font-size: 20px;
  font-weight: 600;
  text-wrap: nowrap;
}
.cs_cta_section_3 .cs_cta_phone .cs_cta_phone_number:hover {
  color: var(--danger-color);
}
.cs_cta_section_3 .cs_btn_style_1 {
  flex: none;
}
@media (max-width: 1399px) {
  .cs_cta_section_3 .cs_cta_card {
    padding: 88px 40px;
  }
}
@media (max-width: 1199px) {
  .cs_cta_section_3 .cs_cta_visual {
    width: 400px;
    height: 405px;
    top: -100px;
    right: 100px;
  }
  .cs_cta_section_3 .cs_cta_offer {
    left: 25%;
    bottom: 20px;
  }
}
@media (max-width: 991px) {
  .cs_cta_section_3 .cs_cta_card {
    padding: 60px 30px;
  }
  .cs_cta_section_3 .cs_cta_text {
    width: 100%;
  }
  .cs_cta_section_3 .cs_cta_visual {
    position: relative !important;
    top: initial;
    right: initial;
    width: auto;
    height: auto;
    margin: 0 auto;
  }
  .cs_cta_section_3 .cs_cta_offer {
    left: 0;
    bottom: 50px;
  }
  .cs_cta_section_3 .cs_cta_inner {
    flex-direction: column;
    gap: 30px;
  }
  .cs_cta_section_3 .cs_cta_actions {
    position: static;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
  }
  .cs_cta_section_3 .cs_cta_phone {
    writing-mode: horizontal-tb;
    transform: none;
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .cs_cta_section_3 .cs_cta_card {
    padding: 50px 20px;
  }
  .cs_cta_section_3 .cs_cta_offer {
    width: 100px;
    height: 100px;
    padding: 15px;
    bottom: 20px;
  }
}

@keyframes bubbleUp {
  50% {
    transform: scale(1.03);
  }
}
/*=================================================
 Equipment Slider Section 
===================================================*/
.cs_equipment_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_equipment_section_1 {
    padding: 70px 0;
  }
}

.cs_equipment_slider .swiper {
  padding-bottom: 103px;
}
.cs_equipment_slider .cs_controller_3 {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 17px;
  width: 50%;
  justify-content: flex-start;
}
.cs_equipment_slider .cs_controller_3::before {
  display: none;
}
.cs_equipment_slider .cs_controller_3::after {
  width: calc(100% - 140px);
}
@media (max-width: 991px) {
  .cs_equipment_slider .swiper {
    padding-bottom: 0;
  }
  .cs_equipment_slider .cs_controller_3 {
    width: 100%;
    position: relative;
    left: initial;
    bottom: initial;
    margin: 30px 0 0;
    justify-content: center;
  }
  .cs_equipment_slider .cs_controller_3::before {
    display: block;
  }
  .cs_equipment_slider .cs_controller_3::after {
    width: calc(50% - 90px);
  }
}

.cs_equipment_card_1 {
  position: relative;
}
.cs_equipment_card_1 .cs_equipment_img {
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
}
.cs_equipment_card_1 .cs_equipment_img img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s ease;
}
.cs_equipment_card_1 .cs_equipment_info {
  width: calc(100% - 24px);
  max-width: 424px;
  position: absolute;
  right: 9%;
  bottom: -103px;
  padding: 24px;
  opacity: 0;
  transform: translateY(0) scale(0.9);
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_equipment_card_1 .cs_equipment_info_head {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cs_equipment_card_1 .cs_equipment_icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.cs_equipment_card_1 .cs_equipment_icon img {
  width: 50px;
  height: 50px;
  border-radius: 0;
}
@media (max-width: 1199px) {
  .cs_equipment_card_1 .cs_equipment_info {
    right: 24px;
  }
}
@media (max-width: 991px) {
  .cs_equipment_card_1 .cs_equipment_info_head {
    gap: 15px;
  }
  .cs_equipment_card_1 .cs_equipment_info {
    position: relative;
    right: initial;
    bottom: initial;
    z-index: 2;
    padding: 24px 15px;
    margin: -80px auto 0;
  }
  .cs_equipment_card_1 .cs_equipment_icon {
    width: 60px;
    height: 60px;
  }
  .cs_equipment_card_1 .cs_equipment_icon img {
    width: 24px;
    height: 24px;
  }
}

/*=============================================
 CTA Section
===============================================*/
.cs_cta_style_1 {
  padding: 120px 0 120px 112px;
}
.cs_cta_style_1 .cs_cta_text {
  width: min(100%, 424px);
  position: relative;
  z-index: 1;
}
.cs_cta_style_1 .cs_cta_img {
  width: 100%;
  padding: 24px 24px 0 45%;
  display: flex;
  align-items: flex-end;
  position: absolute;
  inset: 0;
}
@media (max-width: 1199px) {
  .cs_cta_style_1 {
    padding: 120px 0 120px 30px;
  }
}
@media (max-width: 991px) {
  .cs_cta_style_1 {
    padding: 50px 30px 0;
  }
  .cs_cta_style_1 .cs_cta_img {
    padding: 0;
    position: initial;
    inset: initial;
  }
}
@media (max-width: 575px) {
  .cs_cta_style_1 {
    padding: 30px 15px 0;
  }
}

.cs_cta_style_2 {
  overflow: hidden;
  padding: 125px 20px 110px 120px;
}
.cs_cta_style_2 .cs_cta_overlay {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(19, 109, 244, 0.9) 49.04%, rgba(19, 109, 244, 0) 73.56%);
}
.cs_cta_style_2 .cs_cta_content {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
}
.cs_cta_style_2 .cs_cta_subtitle {
  letter-spacing: 0.7px;
}
.cs_cta_style_2 .cs_cta_funfact {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.2);
  width: min(100%, 562px);
}
.cs_cta_style_2 .cs_cta_funfact .cs_funfact_item {
  position: relative;
  padding: 4px 0;
}
.cs_cta_style_2 .cs_cta_funfact .cs_funfact_item::after {
  content: "";
  width: 1px;
  height: 68px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.35);
}
.cs_cta_style_2 .cs_cta_funfact .cs_funfact_item:last-child {
  margin-left: auto;
}
.cs_cta_style_2 .cs_cta_funfact .cs_funfact_item:last-child::after {
  display: none;
}
.cs_cta_style_2 .cs_cta_funfact .cs_funfact_number {
  line-height: 1em !important;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .cs_cta_style_2 {
    padding: 60px 30px;
  }
  .cs_cta_style_2 .cs_cta_content {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .cs_cta_style_2 {
    padding: 30px 15px;
  }
  .cs_cta_style_2 .cs_cta_funfact {
    padding: 15px;
    width: 100%;
  }
}

.cs_cta_style_3 {
  padding: 100px 0;
}
.cs_cta_style_3 .cs_cta_bg {
  top: 50%;
  left: 0;
  right: 0;
  filter: blur(112px);
  transform: translateY(-50%);
}
.cs_cta_style_3 .cs_cta_content {
  width: min(100%, 1180px);
}
.cs_cta_style_3 .cs_cta_title {
  text-shadow: -1px -1px 0 rgba(31, 41, 55, 0.05), 1px -1px 0 rgba(31, 41, 55, 0.05), -1px 1px 0 rgba(31, 41, 55, 0.05), 1px 1px 0 rgba(31, 41, 55, 0.05), 0 2px 8px rgba(31, 41, 55, 0.15);
}
.cs_cta_style_3 .cs_btns_group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cs_cta_style_3 .cs_btn_style_2 {
  border-color: var(--accent-color);
}
.cs_cta_style_3 .cs_btn_style_2 img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(14%) saturate(1305%) hue-rotate(175deg) brightness(94%) contrast(94%);
}
.cs_cta_style_3 .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_cta_style_3 .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(94deg) brightness(105%) contrast(101%);
}
@media (max-width: 991px) {
  .cs_cta_style_3 {
    padding: 70px 0;
  }
}

/*========================================================
  Service Details - Sidebar Widgets
==========================================================*/
.cs_sidebar_style_1 {
  width: min(100%, 312px);
  margin-left: auto;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.cs_sidebar_style_1 .cs_sidebar_widget {
  padding: 24px;
}
.cs_sidebar_style_1 .cs_filter_menu {
  border: 1px solid var(--accent-color);
}
.cs_sidebar_style_1 .cs_filter_menu .cs_widget_title {
  padding-bottom: 0;
}
.cs_sidebar_style_1 .cs_filter_menu .cs_widget_title::after {
  display: none;
}
.cs_sidebar_style_1 .cs_widget_title {
  position: relative;
  padding-bottom: 10px;
}
.cs_sidebar_style_1 .cs_widget_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28%;
  height: 1px;
  background-color: var(--accent-color);
}
.cs_sidebar_style_1 .cs_service_category_list {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.cs_sidebar_style_1 .cs_service_category_list li {
  display: inline-block;
}
.cs_sidebar_style_1 .cs_service_category_list a {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  transition: color 0.3s ease;
}
.cs_sidebar_style_1 .cs_service_category_list a::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: 12px;
  top: 8px;
  border-radius: 50%;
  background-color: currentColor;
}
.cs_sidebar_style_1 .cs_service_category_list a:hover {
  color: var(--accent-color);
}
.cs_sidebar_style_1 .cs_visiting_hours {
  display: flex;
  gap: 12px;
  flex-direction: column;
  margin-bottom: 12px;
}
.cs_sidebar_style_1 .cs_visiting_hours li {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.cs_sidebar_style_1 .cs_visiting_hours li span:last-child {
  text-align: right;
}
.cs_sidebar_style_1 .cs_visiting_hours a:hover {
  color: var(--accent-color);
}
.cs_sidebar_style_1 .cs_helpline a {
  color: var(--accent-color);
}
.cs_sidebar_style_1 .cs_helpline a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}
.cs_sidebar_style_1 .cs_appointment_form {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.cs_sidebar_style_1 .cs_appointment_form .cs_input_wrap {
  padding: 10px;
}
.cs_sidebar_style_1 .cs_appointment_form .cs_input_wrap label {
  display: block;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--primary-color);
}
.cs_sidebar_style_1 .cs_appointment_form .cs_input_wrap .cs_form_field {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
}
.cs_sidebar_style_1 .cs_appointment_form .cs_input_wrap .cs_form_field::-moz-placeholder {
  color: var(--secondary-color);
}
.cs_sidebar_style_1 .cs_appointment_form .cs_input_wrap .cs_form_field::placeholder {
  color: var(--secondary-color);
}
.cs_sidebar_style_1 .cs_appointment_form .cs_input_wrap textarea.cs_form_field {
  resize: none;
}
.cs_sidebar_style_1 .cs_appointment_form .cs_form_field,
.cs_sidebar_style_1 .cs_appointment_form .cs_timepicker,
.cs_sidebar_style_1 .cs_appointment_form .cs_datepicker,
.cs_sidebar_style_1 .cs_appointment_form .choices__inner {
  border: 0;
  outline: 0;
  font-size: 16px;
  padding: 0 !important;
  border-radius: 5px;
  min-height: auto;
  background-color: var(--white-color);
}
.cs_sidebar_style_1 .cs_appointment_form .choices__list--single {
  padding: 0 !important;
}
.cs_sidebar_style_1 .cs_appointment_form .choices[data-type*=select-one]::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--secondary-color);
  border-left: 0;
  border-top: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  margin: 0;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.cs_sidebar_style_1 .cs_appointment_form .choices[data-type*=select-one]::after {
  right: 10px;
  top: 50%;
}
.cs_sidebar_style_1 .cs_appointment_form .cs_date_icon {
  right: 10px;
}
.cs_sidebar_style_1 .cs_appointment_form .choices__list--dropdown,
.cs_sidebar_style_1 .cs_appointment_form .choices__list[aria-expanded] {
  z-index: 2;
  background-color: var(--white-color) !important;
}
.cs_sidebar_style_1 .cs_appointment_form .cs_btn_style_1 {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
}
.cs_sidebar_style_1 .cs_appointment_form .cs_btn_style_1 img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.cs_sidebar_style_1 .cs_appointment_form .cs_btn_style_1::before, .cs_sidebar_style_1 .cs_appointment_form .cs_btn_style_1::after {
  display: none;
}
.cs_sidebar_style_1 .cs_appointment_form .cs_btn_style_1:hover {
  background-color: var(--primary-color);
}
.cs_sidebar_style_1 .cs_search_form input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 5px;
  padding: 13px 32px 13px 12px;
  background-color: var(--white-color);
}
.cs_sidebar_style_1 .cs_search_form input::-moz-placeholder {
  opacity: 0.5;
}
.cs_sidebar_style_1 .cs_search_form input::placeholder {
  opacity: 0.5;
}
.cs_sidebar_style_1 .cs_search_form button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.cs_sidebar_style_1 .cs_search_form button img {
  width: 16px;
  height: 16px;
}
.cs_sidebar_style_1 .cs_categories_list {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.cs_sidebar_style_1 .cs_categories_list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--secondary-color);
}
.cs_sidebar_style_1 .cs_categories_list a:hover {
  color: var(--accent-color);
}
.cs_sidebar_style_1 .cs_recent_posts_list {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.cs_sidebar_style_1 .cs_tags_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cs_sidebar_style_1 .cs_tags_list a {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5em;
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.cs_sidebar_style_1 .cs_tags_list a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_sidebar_style_1 .cs_promo_widget {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white-color);
  background-color: var(--primary-color);
}
.cs_sidebar_style_1 .cs_promo_widget::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background-color: var(--primary-color);
  z-index: 0;
}
.cs_sidebar_style_1 .cs_promo_widget > * {
  position: relative;
  z-index: 1;
}
.cs_sidebar_style_1 .cs_promo_widget .cs_widget_title::after {
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
}
.cs_sidebar_style_1 .cs_promo_widget .cs_btn_style_1 {
  width: 100%;
  background-color: var(--danger-color);
}
.cs_sidebar_style_1 .cs_promo_widget .cs_btn_style_1::before, .cs_sidebar_style_1 .cs_promo_widget .cs_btn_style_1::after {
  display: none;
}
.cs_sidebar_style_1 .cs_promo_widget .cs_btn_style_1:hover {
  background-color: var(--danger-darker-color);
}
.cs_sidebar_style_1 .cs_venue_address,
.cs_sidebar_style_1 .cs_venue_date {
  position: relative;
  padding-left: 26px;
}
.cs_sidebar_style_1 .cs_venue_address img,
.cs_sidebar_style_1 .cs_venue_date img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 5px;
  margin-top: 0;
  filter: brightness(0) saturate(100%) invert(37%) sepia(53%) saturate(6343%) hue-rotate(208deg) brightness(98%) contrast(96%);
}
.cs_sidebar_style_1 .cs_venue_date span {
  display: inline-block;
}
.cs_sidebar_style_1 .cs_venue_date img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(10%) saturate(1907%) hue-rotate(175deg) brightness(96%) contrast(91%);
}
.cs_sidebar_style_1 .cs_venue_map {
  overflow: hidden;
  line-height: 0;
}
.cs_sidebar_style_1 .cs_venue_map iframe {
  width: 100%;
  height: 200px;
  border: 0;
}
.cs_sidebar_style_1 .cs_reserve_check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--primary-color);
}
.cs_sidebar_style_1 .cs_reserve_check input {
  width: 18px;
  height: 18px;
  flex: none;
  accent-color: var(--accent-color);
}
.cs_sidebar_style_1 .cs_contact a {
  text-wrap: nowrap;
}
.cs_sidebar_style_1 .cs_contact a:hover {
  color: var(--accent-color);
}
@media (max-width: 1199px) {
  .cs_sidebar_style_1 .cs_sidebar_widget {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .cs_sidebar_style_1 {
    width: 100%;
  }
}

/*=================================================
  Patient Resource
===================================================*/
.cs_resource_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_resource_section_1 {
    padding: 70px 0;
  }
}

.cs_resource_card {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  padding: 30px 24px;
  display: flex;
  gap: 24px;
  z-index: 0;
  flex-direction: column;
  background-color: var(--white-color);
  border: 1px solid rgba(134, 148, 167, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cs_resource_card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: inherit;
  background: conic-gradient(from var(--cs-resource-angle), transparent 0deg, var(--accent-color) 120deg, var(--accent-color) 60deg, transparent 80deg, transparent 360deg);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.cs_resource_card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-color: var(--white-color);
}
.cs_resource_card > * {
  position: relative;
  z-index: 2;
}
.cs_resource_card .cs_resource_card_header {
  display: flex;
  gap: 24px;
  align-items: center;
}
.cs_resource_card .cs_resource_card_icon {
  width: 75px;
  height: 75px;
  flex: none;
  padding: 17px;
  background: var(--gray3-color);
}
.cs_resource_card .cs_resource_card_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(27%) sepia(86%) saturate(2826%) hue-rotate(211deg) brightness(98%) contrast(94%);
}
.cs_resource_card:hover::before {
  opacity: 1;
  animation: borderAnimation 2s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .cs_resource_card:hover::before {
    animation: none;
  }
}
@media (max-width: 1199px) {
  .cs_resource_card {
    padding: 20px;
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .cs_resource_card {
    padding: 15px;
  }
}

@property --cs-resource-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes borderAnimation {
  to {
    --cs-resource-angle: 360deg;
  }
}
/*=================================================
  Patient Resource - FAQ Image Callout
===================================================*/
.cs_faq_section_2 .cs_faq_img {
  border-radius: 20px;
  overflow: hidden;
}
.cs_faq_section_2 .cs_faq_img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*=================================================
  Patient Resource - Watch & Learn Videos
===================================================*/
.cs_video_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_video_section_1 {
    padding: 70px 0;
  }
}

.cs_video_card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cs_video_card .cs_video_card_thumb {
  position: relative;
  display: block;
  overflow: hidden;
}
.cs_video_card .cs_video_card_thumb > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.54);
}
.cs_video_card .cs_video_card_play {
  width: 50px;
  height: 50px;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  background-color: var(--white-color);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.cs_video_card .cs_video_card_play img {
  display: block;
  width: 17px;
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.cs_video_card .cs_video_card_info {
  flex: 1;
}
.cs_video_card:hover .cs_video_card_thumb img {
  transform: scale(1.03);
}
.cs_video_card:hover .cs_video_card_play {
  transform: translate(-50%, -50%) scale(1.04);
  background: var(--accent-color);
}
.cs_video_card:hover .cs_video_card_play img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(276deg) brightness(106%) contrast(101%);
}

/*=================================================
  Patient Resource - Cost Estimates & Aid
===================================================*/
.cs_estimate_section_1 {
  padding: 120px 0;
}
.cs_estimate_section_1 .cs_estimate_bg {
  width: 100%;
  left: 0;
  right: 0;
  bottom: 20%;
  transform: translateY(20%);
  filter: blur(112px);
  pointer-events: none;
  z-index: 0;
}
.cs_estimate_section_1 .cs_estimate_bg img {
  width: 100%;
}
.cs_estimate_section_1 .cs_btn_style_2 {
  border-color: var(--accent-color);
}
.cs_estimate_section_1 .cs_btn_style_2 img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(11%) saturate(1768%) hue-rotate(176deg) brightness(99%) contrast(92%);
}
.cs_estimate_section_1 .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_estimate_section_1 .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}
@media (max-width: 991px) {
  .cs_estimate_section_1 {
    padding: 70px 0;
  }
}

.cs_estimate_card {
  width: 100%;
  height: 100%;
  padding: 14px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(54, 130, 244, 0.2);
  transition: transform 0.3s cubic-bezier(0.445, 0.35, 0.55, 0.55);
}
.cs_estimate_card .cs_estimate_card_icon {
  width: 100px;
  height: 100px;
  flex: none;
}
.cs_estimate_card .cs_estimate_card_icon img {
  width: 50px;
  height: 50px;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(100%);
}
.cs_estimate_card .cs_estimate_card_body {
  flex: 1;
}
.cs_estimate_card:hover {
  transform: translateY(-2px);
}
@media (max-width: 1199px) {
  .cs_estimate_card {
    gap: 16px;
  }
  .cs_estimate_card .cs_estimate_card_icon {
    width: 70px;
    height: 70px;
  }
  .cs_estimate_card .cs_estimate_card_icon img {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 575px) {
  .cs_estimate_card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*=================================================
  Patient Resource
===================================================*/
.cs_insights_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_insights_section_1 {
    padding: 70px 0;
  }
}

.cs_insight_card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.cs_insight_card .cs_insight_card_thumb {
  position: relative;
  display: block;
  overflow: hidden;
}
.cs_insight_card .cs_insight_card_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cs_insight_card .cs_insight_card_body {
  padding: 24px 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cs_insight_card .cs_insight_card_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}
.cs_insight_card .cs_insight_author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cs_insight_card .cs_insight_author_icon {
  width: 50px;
  height: 50px;
  flex: none;
  padding: 13px;
  background-color: var(--gray3-color);
}
.cs_insight_card .cs_insight_author_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
.cs_insight_card .cs_insight_author_name {
  color: var(--secondary-color);
}
.cs_insight_card .cs_insight_date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  color: var(--secondary-color);
}
.cs_insight_card .cs_insight_date img {
  width: 16px;
  height: 16px;
  flex: none;
  filter: brightness(0) saturate(100%) invert(39%) sepia(62%) saturate(7459%) hue-rotate(212deg) brightness(103%) contrast(92%);
}
.cs_insight_card .cs_insight_card_title a {
  color: inherit;
  transition: color 0.3s ease;
}
.cs_insight_card .cs_insight_card_title a:hover {
  color: var(--accent-color);
}
.cs_insight_card.cs_insight_card_featured {
  flex-direction: column;
  min-height: 530px;
}
.cs_insight_card.cs_insight_card_featured .cs_insight_card_thumb {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  z-index: 0;
}
.cs_insight_card.cs_insight_card_featured .cs_insight_card_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0) 50%, #1f2937 92%);
}
.cs_insight_card.cs_insight_card_featured .cs_insight_card_body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 24px 30px 30px;
}
.cs_insight_card.cs_insight_card_featured .cs_insight_date img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.cs_insight_card.cs_insight_card_featured .cs_insight_author_name {
  color: var(--white-color);
}
.cs_insight_card.cs_insight_card_featured .cs_insight_date {
  color: var(--white-color);
}
.cs_insight_card:hover {
  transform: translateY(-4px);
}
.cs_insight_card:hover .cs_insight_card_thumb img {
  transform: scale(1.04);
}
@media (max-width: 991px) {
  .cs_insight_card.cs_insight_card_featured {
    min-height: 420px;
  }
}

/*=================================================
  Error / 404 Page Not Found
===================================================*/
.cs_error_section {
  padding: 120px 0;
}
.cs_error_section .cs_error_in {
  width: min(100%, 650px);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}
.cs_error_section .cs_error_code {
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  font-size: 220px;
  font-family: var(--primary-font);
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: errorFloat 3s ease-in-out infinite;
}
.cs_error_section .cs_btn_style_1 img {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .cs_error_section {
    padding: 70px 0;
  }
  .cs_error_section .cs_error_code {
    font-size: 150px;
  }
}
@media (max-width: 575px) {
  .cs_error_section .cs_error_code {
    font-size: 100px;
  }
}

@keyframes errorFloat {
  50% {
    transform: translateY(-12px);
  }
}
/*=================================================
  Event - Upcoming Events
===================================================*/
.cs_event_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_event_section_1 {
    padding: 70px 0;
  }
}

.cs_event_card_1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.cs_event_card_1 .cs_event_card_thumb {
  position: relative;
  display: block;
  overflow: hidden;
}
.cs_event_card_1 .cs_event_card_thumb img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cs_event_card_1 .cs_event_card_badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 15px;
  border-radius: 50px;
}
.cs_event_card_1 .cs_event_card_badge img {
  width: 16px;
  height: 16px;
  flex: none;
}
.cs_event_card_1 .cs_event_card_badge.cs_color_1 {
  background-color: #dbd5f7;
}
.cs_event_card_1 .cs_event_card_badge.cs_color_2 {
  background-color: #bfd4cd;
}
.cs_event_card_1 .cs_event_card_badge.cs_color_3 {
  background-color: #cecddd;
}
.cs_event_card_1 .cs_event_card_body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 64px 22px 24px;
  margin-top: -40px;
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_event_card_1 .cs_event_card_title a:hover {
  color: var(--accent-color);
}
.cs_event_card_1 .cs_event_card_meta {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_event_card_1 .cs_event_card_meta li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cs_event_card_1 .cs_event_card_meta li:first-child span {
  color: var(--accent-color);
}
.cs_event_card_1 .cs_event_card_meta img {
  width: 16px;
  height: 16px;
  flex: none;
  filter: brightness(0) saturate(100%) invert(12%) sepia(5%) saturate(4653%) hue-rotate(177deg) brightness(97%) contrast(89%);
}
.cs_event_card_1 .cs_btn_style_2 {
  margin-top: auto;
  align-self: flex-start;
  border-color: var(--accent-color);
}
.cs_event_card_1 .cs_btn_style_2 img {
  width: 16px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(11%) saturate(1768%) hue-rotate(176deg) brightness(99%) contrast(92%);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.cs_event_card_1:hover {
  transform: translateY(-4px);
}
.cs_event_card_1:hover .cs_event_card_thumb img {
  transform: scale(1.03);
}
.cs_event_card_1:hover .cs_btn_style_2 {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_event_card_1:hover .cs_btn_style_2 img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.cs_event_card_1:hover .cs_btn_style_2:hover {
  color: var(--white-color);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.cs_event_card_1:hover .cs_btn_style_2:hover img {
  transform: translateX(3px);
  filter: brightness(0) saturate(100%) invert(100%);
}
@media (max-width: 1199px) {
  .cs_event_card_1 .cs_event_card_body {
    padding: 60px 15px 24px;
  }
}

.cs_event_cta_1 {
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 24px;
  background-color: var(--gray7-color);
}
.cs_event_cta_1 .cs_event_cta_text span {
  color: var(--secondary-color);
}
.cs_event_cta_1 .cs_btn_style_1 {
  flex: none;
}
.cs_event_cta_1 .cs_btn_style_1 img {
  width: 16px;
  filter: brightness(0) saturate(100%) invert(100%);
  transition: transform 0.3s ease;
}
.cs_event_cta_1 .cs_btn_style_1:hover img {
  transform: translateX(3px);
}
@media (max-width: 991px) {
  .cs_event_cta_1 {
    padding: 15px;
  }
}

/*=================================================
  Event Details
===================================================*/
.cs_event_details_section {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_event_details_section {
    padding: 70px 0;
  }
}

.cs_event_details h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--primary-color);
  font-family: var(--primary-font);
}
.cs_event_details > p {
  margin-bottom: 24px;
}
.cs_event_details > p:last-child {
  margin-bottom: 0;
}
.cs_event_details .cs_event_details_block > p {
  margin-bottom: 24px;
}
.cs_event_details .cs_event_details_block > p:last-child {
  margin-bottom: 0;
}
.cs_event_details .cs_event_details_thumb {
  position: relative;
  overflow: hidden;
}
.cs_event_details .cs_event_details_thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_event_details .cs_event_details_badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 15px;
  border-radius: 50px;
  background-color: var(--gray5-color);
}
.cs_event_details .cs_event_details_badge img {
  width: 16px;
  height: 16px;
  flex: none;
}
.cs_event_details .cs_event_highlight_list,
.cs_event_details .cs_event_schedule_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_event_details .cs_event_highlight_list li,
.cs_event_details .cs_event_schedule_list li {
  position: relative;
  padding-left: 26px;
}
.cs_event_details .cs_event_highlight_list img,
.cs_event_details .cs_event_schedule_list img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 5px;
}
@media (max-width: 991px) {
  .cs_event_details .cs_event_highlight_list,
  .cs_event_details .cs_event_schedule_list {
    gap: 12px;
  }
}

/*=================================================
  26. Partners Section
===================================================*/
.cs_partners_section_1 {
  padding: 50px 0;
}

.cs_partners_wrapper {
  width: min(100%, 1920px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px 0;
}
@media (max-width: 1023px) {
  .cs_partners_wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cs_partners_label {
  flex: none;
  padding: 0 42px 0 150px;
  color: var(--primary-color);
}
@media (max-width: 1199px) {
  .cs_partners_label {
    padding: 0 30px;
  }
}

.cs_partners_slider {
  flex: 1;
  min-width: 0;
}
.cs_partners_slider .cs_partner_item img {
  flex: none;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (max-width: 1023px) {
  .cs_partners_slider {
    max-width: 100%;
    padding-left: 30px;
  }
  .cs_partners_slider .cs_partner_item img {
    height: 40px;
    min-width: 150px;
  }
}

.cs_partners_list_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 40px;
}
.cs_partners_list_1 .cs_partner_item img {
  flex: none;
}
@media (max-width: 767px) {
  .cs_partners_list_1 {
    justify-content: center;
    gap: 24px 32px;
  }
  .cs_partners_list_1 .cs_partner_item {
    flex: 0 1 auto;
  }
  .cs_partners_list_1 .cs_partner_item img {
    height: 36px;
    width: auto;
  }
}

/*================================================================
  27. Login / My Account Section
==================================================================*/
.cs_login_section {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_login_section {
    padding: 70px 0;
  }
}

.cs_login_banner {
  position: relative;
}
.cs_login_banner .cs_login_brand {
  width: 100%;
  position: absolute;
  left: 0;
  top: 48px;
}
.cs_login_banner .cs_login_thumb {
  width: 100%;
}
.cs_login_banner .cs_login_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.cs_login_form_wrap {
  width: min(100%, 536px);
  height: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs_login_form_wrap .cs_login_form {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.cs_login_form_wrap .cs_login_field {
  padding: 10px 15px;
  background-color: var(--gray2-color);
}
.cs_login_form_wrap .cs_login_field .cs_login_label {
  font-size: 14px;
  margin: 0;
}
.cs_login_form_wrap .cs_login_field input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  color: var(--primary-color);
}
.cs_login_form_wrap .cs_login_field input::-moz-placeholder {
  opacity: 0.5;
}
.cs_login_form_wrap .cs_login_field input::placeholder {
  opacity: 0.5;
}
.cs_login_form_wrap .cs_btn_style_1::before, .cs_login_form_wrap .cs_btn_style_1::after {
  display: none;
}
.cs_login_form_wrap .cs_btn_style_1:hover {
  background-color: var(--primary-color);
}
.cs_login_form_wrap .cs_login_actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.cs_login_form_wrap .cs_login_actions .cs_login_forgot {
  transition: all 0.3s ease;
}
.cs_login_form_wrap .cs_login_actions .cs_login_forgot:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.cs_login_form_wrap .cs_login_divider {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 24px 0;
}
.cs_login_form_wrap .cs_login_divider::before, .cs_login_form_wrap .cs_login_divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(134, 148, 167, 0.5);
}
.cs_login_form_wrap .cs_login_social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cs_login_form_wrap .cs_login_social .cs_btn_style_1 {
  flex: none;
}
.cs_login_form_wrap .cs_login_social .cs_btn_style_1::before, .cs_login_form_wrap .cs_login_social .cs_btn_style_1::after {
  display: none;
}
.cs_login_form_wrap .cs_login_social .cs_btn_style_1:hover {
  background-color: var(--primary-color);
}
.cs_login_form_wrap .cs_login_register {
  text-align: center;
  margin-top: 15px;
}
.cs_login_form_wrap .cs_login_register a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
@media (max-width: 991px) {
  .cs_login_form_wrap {
    width: 100%;
  }
  .cs_login_form_wrap .cs_login_divider,
  .cs_login_form_wrap .cs_login_register {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cs_login_form_wrap .cs_login_social {
    justify-content: center;
  }
  .cs_login_form_wrap .cs_login_social .cs_btn_style_1 {
    width: 100%;
  }
}

/*=================================================
  28. Ecommerce (Shop) Section
===================================================*/
.cs_shop_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_shop_section_1 {
    padding: 70px 0;
  }
}

/*=================================================
  Shop Toolbar (result count + sorting)
===================================================*/
.cs_shop_toolbar {
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cs_shop_toolbar .cs_shop_sort {
  width: min(100%, 424px);
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_shop_toolbar .cs_shop_sort .cs_choice,
.cs_shop_toolbar .cs_shop_sort .choices,
.cs_shop_toolbar .cs_shop_sort .choices__inner {
  width: 100%;
  border: 0;
  outline: 0;
  min-height: auto;
  background-color: transparent;
}
.cs_shop_toolbar .cs_shop_sort .choices {
  margin-bottom: 0;
}
.cs_shop_toolbar .cs_shop_sort .choices__inner {
  padding: 14px 40px 14px 20px !important;
  border-radius: 5px;
}
.cs_shop_toolbar .cs_shop_sort .choices__list--single {
  padding: 0;
}
.cs_shop_toolbar .cs_shop_sort .choices__list--single .choices__item {
  color: var(--secondary-color);
}
.cs_shop_toolbar .cs_shop_sort .choices[data-type*=select-one]::after {
  content: "";
  width: 8px;
  height: 8px;
  margin: 0;
  border: 2px solid var(--secondary-color);
  border-left: 0;
  border-top: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.cs_shop_toolbar .cs_shop_sort .choices__list--dropdown,
.cs_shop_toolbar .cs_shop_sort .choices__list[aria-expanded] {
  z-index: 3;
  background-color: var(--white-color) !important;
}
@media (max-width: 575px) {
  .cs_shop_toolbar .cs_shop_sort {
    width: 100%;
  }
}

/*=================================================
  Product Card (individual component)
===================================================*/
.cs_product_card_1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cs_product_card_1 .cs_product_thumb {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_product_card_1 .cs_product_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.cs_product_card_1 .cs_btn_style_2 {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  border: 1px solid var(--accent-color);
  transform: translate(-50%, 20px);
  transition: all 0.4s ease, opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.cs_product_card_1 .cs_btn_style_2 img {
  width: 16px;
  border-radius: 0;
  transition: filter 0.2s ease;
}
.cs_product_card_1 .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_product_card_1 .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.cs_product_card_1 .cs_product_info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cs_product_card_1 .cs_product_title a:hover {
  color: var(--accent-color);
}
.cs_product_card_1 .cs_product_meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
}
.cs_product_card_1 .cs_product_price {
  color: var(--accent-color);
}
.cs_product_card_1 .cs_rating {
  width: 100px;
  font-size: 16px;
  letter-spacing: 2px;
}
.cs_product_card_1:hover .cs_product_thumb img {
  transform: scale(1.03);
}
.cs_product_card_1:hover .cs_btn_style_2 {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/*=================================================
  Shop Details - Product Info
===================================================*/
.cs_shop_details_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_shop_details_section_1 {
    padding: 70px 0;
  }
}

.cs_product_gallery {
  display: block;
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_product_gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .cs_product_gallery {
    border-radius: 10px;
  }
}

.cs_product_summary {
  width: min(100%, 650px);
  margin-left: auto;
}
.cs_product_summary .cs_product_meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cs_product_summary .cs_rating {
  width: 100px;
  font-size: 16px;
  letter-spacing: 2px;
}
.cs_product_summary .cs_product_feature_list {
  list-style: disc;
  padding-left: 30px;
  display: flex;
  gap: 14px;
  flex-direction: column;
}
.cs_product_summary .cs_product_feature_list li::marker {
  color: currentColor;
}
.cs_product_summary .cs_product_feature_list strong {
  font-weight: 600;
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .cs_product_summary {
    width: 100%;
  }
}

.cs_product_cart_row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cs_product_cart_row .cs_btn_style_2 {
  border-color: var(--accent-color);
}
.cs_product_cart_row .cs_btn_style_2 img {
  width: 16px;
}
.cs_product_cart_row .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_product_cart_row .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.cs_quantity {
  display: inline-flex;
  align-items: center;
  width: 123px;
  padding: 12px 10px;
  flex: none;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--white-color);
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_quantity button {
  flex: none;
  width: auto;
  padding: 0;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--primary-color);
  background-color: transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.cs_quantity button:hover {
  color: var(--accent-color);
}
.cs_quantity .cs_quantity_input {
  flex: 1;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: var(--primary-color);
}

.cs_product_assurance {
  display: flex;
  gap: 10px 24px;
  flex-wrap: wrap;
  align-items: center;
}
.cs_product_assurance li {
  position: relative;
  padding-left: 26px;
  color: var(--primary-color);
}
.cs_product_assurance img {
  width: 16px;
  position: absolute;
  left: 0;
  top: 8px;
}

/*=================================================
  Shop Details
===================================================*/
.cs_product_details_tabs {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .cs_product_details_tabs {
    margin-top: 60px;
  }
}

.cs_shop_tab_nav {
  display: flex;
  gap: 14px 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_shop_tab_nav li a {
  display: inline-block;
  padding: 0 0 14px;
  margin-bottom: -2px;
  border-bottom: 3px solid transparent;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.cs_shop_tab_nav li a:hover {
  color: var(--primary-color);
}
.cs_shop_tab_nav li.active a {
  color: var(--primary-color);
  border-color: var(--accent-color);
}
@media (max-width: 991px) {
  .cs_shop_tab_nav {
    padding-bottom: 20px;
  }
  .cs_shop_tab_nav li a {
    margin-bottom: 0;
    border: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cs_shop_tab_nav {
    gap: 8px 20px;
  }
  .cs_shop_tab_nav li a {
    font-size: 16px;
  }
}

.cs_product_tab_content {
  padding-top: 24px;
}

.cs_spec_list {
  width: min(100%, 470px);
  display: flex;
  gap: 14px;
  flex-direction: column;
}
.cs_spec_list li {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1.2fr;
  justify-content: space-between;
}
.cs_spec_list .cs_spec_value {
  font-weight: 600;
  color: var(--primary-color);
}
@media (max-width: 575px) {
  .cs_spec_list li {
    gap: 8px;
    grid-template-columns: 1fr;
  }
}

/*=================================================
  Shop Details - You May Also Like
===================================================*/
.cs_related_products_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_related_products_section_1 {
    padding: 70px 0;
  }
}

/*=================================================
  Cart Page
===================================================*/
.cs_cart_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_cart_section_1 {
    padding: 70px 0;
  }
}

.cs_cart_table_wrap {
  overflow-x: auto;
}

.cs_cart_table {
  min-width: 920px;
}
.cs_cart_table .cs_cart_head,
.cs_cart_table .cs_cart_row {
  display: grid;
  grid-template-columns: 1fr 2.5fr 1fr 1fr 1fr 20px;
  gap: 24px;
  align-items: center;
}
.cs_cart_table .cs_cart_head {
  padding: 12px 24px;
  border-radius: 5px;
  background-color: var(--accent-color);
}
.cs_cart_table .cs_cart_head span {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  font-family: var(--secondary-font);
}
.cs_cart_table .cs_cart_row {
  padding: 24px;
  color: var(--primary-color);
  border-bottom: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_cart_table .cs_cart_product_img {
  display: block;
  width: 176px;
  height: 187px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(134, 148, 167, 0.5);
}
.cs_cart_table .cs_cart_product_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cs_cart_table .cs_cart_product_name {
  color: var(--primary-color);
}
.cs_cart_table .cs_cart_product_name a {
  transition: color 0.3s ease;
}
.cs_cart_table .cs_cart_product_name a:hover {
  color: var(--accent-color);
}
.cs_cart_table .cs_cart_remove {
  width: 16px;
  height: 16px;
  flex: none;
  padding: 0;
  border: 0;
  cursor: pointer;
  background-color: transparent;
}
.cs_cart_table .cs_cart_remove img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cs_cart_table .cs_cart_remove:hover img {
  transform: scale(1.1);
}
@media (max-width: 1199px) {
  .cs_cart_table .cs_cart_head,
  .cs_cart_table .cs_cart_row {
    padding: 12px;
    gap: 15px;
    grid-template-columns: 1fr 3fr 1.5fr 1.5fr 1.5fr 20px;
  }
  .cs_cart_table .cs_cart_row {
    padding: 12px 0;
  }
  .cs_cart_table .cs_cart_product_img {
    width: 100px;
    height: 100px;
  }
}

.cs_cart_actions {
  display: flex;
  gap: 12px;
}
.cs_cart_actions .cs_coupon_form {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cs_cart_actions .cs_coupon_form input {
  width: min(100%, 424px);
  padding: 12px 15px;
  outline: 0;
  border-radius: 5px;
  border: 1px solid rgba(134, 148, 167, 0.5);
  color: var(--primary-color);
  background-color: var(--gray2-color);
}
.cs_cart_actions .cs_coupon_form input::-moz-placeholder {
  color: var(--secondary-color);
}
.cs_cart_actions .cs_coupon_form input::placeholder {
  color: var(--secondary-color);
}
.cs_cart_actions .cs_coupon_form .cs_btn_style_1 {
  flex: none;
}
.cs_cart_actions .cs_coupon_form .cs_btn_style_1 img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.cs_cart_actions .cs_btn_style_2 {
  margin-left: auto;
  border-color: var(--accent-color);
}
.cs_cart_actions .cs_btn_style_2 img {
  border-radius: 0;
}
.cs_cart_actions .cs_btn_style_2:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}
.cs_cart_actions .cs_btn_style_2:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}
@media (max-width: 767px) {
  .cs_cart_actions {
    flex-direction: column;
  }
  .cs_cart_actions .cs_btn_style_2 {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cs_cart_actions .cs_coupon_form {
    flex-direction: column;
  }
  .cs_cart_actions .cs_coupon_form .cs_btn_style_1,
  .cs_cart_actions .cs_coupon_form input {
    width: 100%;
  }
}

.cs_cart_totals {
  padding: 24px;
  border-radius: 20px;
  background-color: var(--gray2-color);
}
.cs_cart_totals .cs_cart_totals_title {
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
.cs_cart_totals .cs_cart_totals_title::after {
  content: "";
  width: 92px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--accent-color);
}
.cs_cart_totals .cs_cart_totals_list {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-bottom: 24px;
  color: var(--primary-color);
}
.cs_cart_totals .cs_cart_totals_list li {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.cs_cart_totals .cs_btn_style_1 {
  width: 100%;
}
.cs_cart_totals .cs_btn_style_1::before, .cs_cart_totals .cs_btn_style_1::after {
  display: none;
}
.cs_cart_totals .cs_btn_style_1 img {
  width: 16px;
  filter: brightness(0) saturate(100%) invert(100%);
}
.cs_cart_totals .cs_btn_style_1:hover {
  background-color: var(--primary-color);
}
@media (max-width: 991px) {
  .cs_cart_totals {
    border-radius: 10px;
  }
}

/*=================================================
  Checkout Page
===================================================*/
.cs_checkout_section_1 {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cs_checkout_section_1 {
    padding: 70px 0;
  }
}

.cs_checkout_form .cs_input_wrap {
  padding: 10px 15px;
}
.cs_checkout_form .cs_input_wrap label {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-color);
}
.cs_checkout_form .cs_input_wrap .cs_form_field {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--primary-color);
  background-color: transparent;
}
.cs_checkout_form .cs_input_wrap .cs_form_field::-moz-placeholder {
  color: var(--secondary-color);
  opacity: 0.5;
}
.cs_checkout_form .cs_input_wrap .cs_form_field::placeholder {
  color: var(--secondary-color);
  opacity: 0.5;
}
.cs_checkout_form .cs_input_wrap textarea.cs_form_field {
  resize: none;
  min-height: 110px;
}
.cs_checkout_form .choices {
  margin-bottom: 0;
}
.cs_checkout_form .choices__inner {
  min-height: auto;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  background-color: transparent;
}
.cs_checkout_form .choices__list--single {
  padding: 0;
}
.cs_checkout_form .choices__list--single .choices__item {
  color: var(--secondary-color);
}
.cs_checkout_form .choices[data-type*=select-one]::after {
  content: "";
  width: 8px;
  height: 8px;
  margin: 0;
  border: 2px solid var(--secondary-color);
  border-left: 0;
  border-top: 0;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.cs_checkout_form .choices__list--dropdown,
.cs_checkout_form .choices__list[aria-expanded] {
  z-index: 3;
  background-color: var(--white-color) !important;
}

.cs_checkout_sidebar {
  width: min(100%, 312px);
  padding: 24px;
}
.cs_checkout_sidebar .cs_checkout_box_title {
  position: relative;
  padding-bottom: 6px;
}
.cs_checkout_sidebar .cs_checkout_box_title::after {
  content: "";
  width: 92px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--accent-color);
}
.cs_checkout_sidebar .cs_order_summary_list {
  display: flex;
  gap: 13px;
  flex-direction: column;
  color: var(--primary-color);
}
.cs_checkout_sidebar .cs_order_summary_list li {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.cs_checkout_sidebar .cs_order_summary_list .cs_order_summary_strong {
  font-weight: 600;
}
.cs_checkout_sidebar .cs_btn_style_1 {
  width: 100%;
}
.cs_checkout_sidebar .cs_btn_style_1 img {
  width: 16px;
  height: 16px;
  border-radius: 0;
}
.cs_checkout_sidebar .cs_btn_style_1::before, .cs_checkout_sidebar .cs_btn_style_1::after {
  display: none;
}
.cs_checkout_sidebar .cs_btn_style_1:hover {
  background-color: var(--primary-color);
}
.cs_checkout_sidebar .cs_payment_methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs_checkout_sidebar .cs_payment_methods .cs_payment_option {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
  color: var(--primary-color);
}
.cs_checkout_sidebar .cs_payment_methods .cs_payment_option input[type=radio] {
  width: 18px;
  height: 18px;
  flex: none;
  margin: 0;
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 1px solid rgba(134, 148, 167, 0.5);
  transition: all 0.2s ease;
}
.cs_checkout_sidebar .cs_payment_methods .cs_payment_option input[type=radio]:checked {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}
.cs_checkout_sidebar .cs_payment_methods .cs_payment_desc {
  margin: 6px 0 0 30px;
}
@media (max-width: 991px) {
  .cs_checkout_sidebar {
    width: 100%;
  }
}

/*================================================================
  29. Privacy Policy / Terms & Condition Section
==================================================================*/
.cs_policy_section {
  padding: 120px 0;
}
.cs_policy_section .cs_policy_content {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cs_policy_section {
    padding: 70px 0;
  }
}

/*=============================================
  Sticky Table of Contents Sidebar
===============================================*/
.cs_sidebar_style_1 {
  width: min(100%, 340px);
}
.cs_sidebar_style_1 .cs_policy_nav {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_sidebar_style_1 .cs_policy_nav a {
  display: inline-flex;
  gap: 10px;
  color: var(--primary-color);
}
.cs_sidebar_style_1 .cs_policy_nav a span {
  color: var(--accent-color);
}
.cs_sidebar_style_1 .cs_policy_nav a:hover {
  color: var(--accent-color);
}
.cs_sidebar_style_1 .cs_policy_meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(134, 148, 167, 0.2);
}
@media (max-width: 991px) {
  .cs_sidebar_style_1 {
    width: 100%;
    top: 0;
  }
}

/*=============================================
  Policy Content Blocks
===============================================*/
.cs_policy_block {
  scroll-margin-top: 110px;
}
.cs_policy_block:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(134, 148, 167, 0.2);
}
.cs_policy_block .cs_policy_block_head {
  display: flex;
  gap: 10px;
}
.cs_policy_block p:last-child {
  margin-bottom: 0;
}

/*=============================================
  Checklist Style List
===============================================*/
.cs_policy_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cs_policy_list li {
  position: relative;
  padding-left: 26px;
}
.cs_policy_list li img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 5px;
}

/*=============================================
  Info Grid Cards
===============================================*/
.cs_policy_grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
  .cs_policy_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.cs_policy_card {
  height: 100%;
  padding: 24px;
  border-radius: 10px;
  background-color: var(--gray4-color);
  transition: all 0.3s ease;
}
.cs_policy_card .cs_policy_card_icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-color);
  background-color: var(--white-color);
  transition: all 0.3s ease;
}
.cs_policy_card .cs_policy_card_icon img {
  border-radius: 0;
}
.cs_policy_card:hover {
  background-color: var(--accent-color);
}
.cs_policy_card:hover .cs_policy_card_title,
.cs_policy_card:hover .cs_policy_card_text {
  color: var(--white-color);
}
.cs_policy_card:hover .cs_policy_card_icon {
  color: var(--white-color);
  background-color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 575px) {
  .cs_policy_card {
    padding: 20px 15px;
  }
}

/*=============================================
  Highlighted Note / Important Callout
===============================================*/
.cs_policy_note {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  border-radius: 10px;
  background-color: var(--gray2-color);
  border-left: 3px solid var(--accent-color);
}
.cs_policy_note i {
  color: var(--accent-color);
  font-size: 20px;
  line-height: 1.6em;
}
.cs_policy_note.cs_type_warning {
  background-color: #ffebd5;
  border-left-color: var(--warning-color);
}
.cs_policy_note.cs_type_warning i {
  color: var(--warning-color);
}
@media (max-width: 575px) {
  .cs_policy_note {
    padding: 20px 15px;
  }
}

/*=============================================
  Contact Card
===============================================*/
.cs_policy_contact {
  padding: 30px;
}
.cs_policy_contact .cs_policy_contact_list {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.cs_policy_contact .cs_policy_contact_list li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cs_policy_contact .cs_policy_contact_list .cs_policy_contact_icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background-color: var(--gray3-color);
}
.cs_policy_contact .cs_policy_contact_list a:hover {
  color: var(--accent-color);
}
@media (max-width: 575px) {
  .cs_policy_contact {
    padding: 20px 15px;
  }
}/*# sourceMappingURL=style.css.map */