/*--------------------------------------------------------------
Header
----------------------------------------------------------------*/
.glass-background-before::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

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

.cs_site_header.cs_style_1 {
  background-color: var(--web-wash);
}
.cs_site_header.cs_style_1 .cs_main_header_in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}
.cs_site_header.cs_style_1 .cs_main_header_in {
  height: 100px;
}
.cs_site_header.cs_style_1 .cs_main_header_right {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    padding-right: 45px;
  }
}
@media (min-width: 1200px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    z-index: 10;
  }
}
.cs_site_header.cs_style_1 .cs_nav_list > li > a {
  text-transform: uppercase;
}
.cs_site_header.cs_style_1.cs_transparent_header {
  background: rgba(0, 0, 0, 0.2);
}
@media (min-width: 1200px) {
  .cs_site_header.cs_style_1.cs_transparent_header .cs_nav_list > li > a {
    color: #fff;
  }
  .cs_site_header.cs_style_1.cs_transparent_header .cs_nav_list > li > a:hover {
    color: var(--accent);
  }
}
.cs_site_header.cs_style_1.cs_transparent_header .cs_btn.cs_style_2 {
  border-radius: 5px;
  border-color: #fff;
  color: #fff;
}
.cs_site_header.cs_style_1.cs_transparent_header .cs_btn.cs_style_2:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}
.cs_site_header.cs_style_1.cs_type_1 {
  background-color: transparent;
  border-bottom: 1px solid var(--ternary);
}

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

.cs_site_header.cs_style_2 .cs_main_header_in {
  display: flex;
  justify-content: space-between;
  height: 100px;
  align-items: center;
}
.cs_site_header.cs_style_2 .cs_main_header_left {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .cs_site_header.cs_style_2 .cs_header_number {
    color: #fff;
  }
  .cs_site_header.cs_style_2 .cs_btn.cs_style_2 {
    border-color: #fff;
    color: #fff;
  }
  .cs_site_header.cs_style_2 .cs_btn.cs_style_2:hover {
    border-color: var(--accent);
  }
}
.cs_site_header.cs_style_2.cs_type_1 {
  border-bottom: 1px solid var(--secondary);
}
.cs_site_header.cs_style_2.cs_type_1 .cs_header_info_box {
  color: #fff;
}
.cs_site_header.cs_style_2.cs_type_1 .cs_header_number_icon {
  color: var(--accent);
}
.cs_site_header.cs_style_2.cs_type_1 .cs_btn.cs_style_2 {
  border-color: #fff;
  color: #fff;
}
.cs_site_header.cs_style_2.cs_type_1 .cs_btn.cs_style_2:hover {
  border-color: var(--accent);
}

.cs_header_info_box {
  display: flex;
  align-items: center;
  gap: 30px 50px;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .cs_header_info_box {
    gap: 30px 30px;
  }
}

.cs_header_number {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .cs_header_number {
    display: none;
  }
}

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

/* Start Hamburger Menum */
.cs_hamburger_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  color: currentColor;
  background-color: transparent;
  outline: none;
  padding: 0;
  color: #fff;
}
.cs_hamburger_btn .cs_hamburger_btn_in {
  width: 30px;
  height: 22px;
  line-height: 0;
  cursor: pointer;
  position: relative;
  text-align: left;
  overflow: hidden;
}
.cs_hamburger_btn .cs_hamburger_btn_in span {
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 0;
  background-color: currentColor;
  color: inherit;
  vertical-align: top;
  transition: 0.3s ease-in-out;
  border-radius: 3px;
  left: 0;
}
.cs_hamburger_btn .cs_hamburger_btn_in span:nth-child(1) {
  transform: translate(0, -10px);
  width: calc(100% - 5px);
}
.cs_hamburger_btn .cs_hamburger_btn_in span:nth-child(2) {
  transform: translate(0, 0);
}
.cs_hamburger_btn .cs_hamburger_btn_in span:nth-child(3) {
  transform: translate(0, 10px);
  width: calc(100% - 10px);
}
.cs_hamburger_btn .cs_hamburger_btn_in span:nth-child(4) {
  transform: translate(0, 20px);
  width: calc(100% - 20px);
}
.cs_hamburger_btn:hover .cs_hamburger_btn_in span {
  transition: 0.3s ease-in-out;
}
.cs_hamburger_btn:hover .cs_hamburger_btn_in span:nth-child(1) {
  transform: translate(0, 0);
}
.cs_hamburger_btn:hover .cs_hamburger_btn_in span:nth-child(2) {
  transform: translate(0, 10px);
}
.cs_hamburger_btn:hover .cs_hamburger_btn_in span:nth-child(3) {
  transform: translate(0, 20px);
}
.cs_hamburger_btn:hover .cs_hamburger_btn_in span:nth-child(4) {
  transform: translate(0, 30px);
}

.cs_hamburger_active {
  overflow: hidden;
}

.cs_hamburger_header {
  position: fixed;
  z-index: 99999;
  background-color: rgba(27, 27, 27, 0.9607843137);
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cs_hamburger_header .cs_social_btns.cs_style_1 a {
  border-color: var(--accent);
  color: #fff;
}
.cs_hamburger_header .cs_social_btns.cs_style_1 a:hover {
  transform: initial;
  background-color: var(--accent);
}
.cs_hamburger_header.active {
  opacity: 1;
  visibility: visible;
}

.cs_hamburger_header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

.cs_hamburger_menu {
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
.cs_hamburger_menu ul {
  list-style: none;
  padding: 0;
  margin: auto 0;
}
.cs_hamburger_menu .menu-item-has-children ul {
  display: none;
}
.cs_hamburger_menu .cs_menu_dropdown_toggle {
  display: block;
  cursor: pointer;
  margin-top: 5px;
}
@media (max-width: 1199px) {
  .cs_hamburger_menu .cs_menu_dropdown_toggle {
    position: initial;
    height: initial;
    width: initial;
    padding: 0;
  }
}
.cs_hamburger_menu .cs_menu_dropdown_toggle::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  height: 50px;
}
.cs_hamburger_menu .cs_menu_dropdown_toggle span {
  width: 0px;
  height: 0px;
  display: block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}
.cs_hamburger_menu .cs_menu_dropdown_toggle span::before, .cs_hamburger_menu .cs_menu_dropdown_toggle span::after {
  display: none;
}
.cs_hamburger_menu .menu-item-has-children {
  display: flex;
  align-items: center;
  gap: 0 23px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cs_hamburger_menu .menu-item-has-children:hover > a {
  color: var(--accent);
}
.cs_hamburger_menu .menu-item-has-children > *:first-child {
  order: 1;
}
.cs_hamburger_menu .menu-item-has-children > *:nth-child(2) {
  order: 3;
}
.cs_hamburger_menu .menu-item-has-children > *:nth-child(3) {
  order: 2;
}
.cs_hamburger_menu .menu-item-has-children > ul {
  width: 100%;
}
.cs_hamburger_menu .cs_nav_list > li:not(:last-child) {
  margin-bottom: 28px;
}
.cs_hamburger_menu .cs_nav_list > li > ul {
  font-size: 65%;
  line-height: 1.6em;
}
.cs_hamburger_menu .cs_nav_list > li > ul .cs_menu_dropdown_toggle {
  display: block;
  cursor: pointer;
}
.cs_hamburger_menu .cs_nav_list > li > ul .cs_menu_dropdown_toggle::before {
  height: 39px;
}
.cs_hamburger_menu .cs_nav_list > li img {
  display: none;
}
.cs_hamburger_menu .cs_nav_list ul {
  padding-left: 25px;
  padding-top: 10px;
}
.cs_hamburger_menu .cs_nav_list ul li:not(:last-child) {
  margin-bottom: 10px;
}

.menu-item-has-children > ul > li.active > a {
  color: var(--accent);
}

.cs_close_hamburger {
  background-color: transparent;
  border: navajowhite;
  padding: 0;
  transition: all 0.4s ease;
  cursor: pointer;
}
.cs_close_hamburger:hover {
  opacity: 0.75;
  transform: rotate(90deg) scale(1.05);
}

.cs_hamburger_header_info {
  height: calc(100vh - 110px);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cs_hamburger_header_info {
    display: none;
  }
}

.cs_hamburger_header_info_in {
  padding: 0px 0 50px;
  margin-top: auto;
  margin-bottom: auto;
}

/* End Hamburger Menum */
@media screen and (max-width: 1199px) {
  .cs_main_header .container {
    max-width: 100%;
  }
  .cs_site_header.cs_style_1 .cs_nav {
    display: flex;
  }
}
.cs_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.cs_gescout_sticky {
  position: fixed !important;
  top: -110px;
  opacity: 0;
  transition: all 0.3s ease;
}
.cs_gescout_sticky.cs_site_header.cs_style_1 {
  background-color: rgb(255, 255, 255);
}
.cs_gescout_sticky.cs_site_header.cs_style_1.cs_transparent_header {
  background-color: rgba(0, 0, 0, 0.8);
}

.cs_gescout_show {
  top: 0 !important;
  opacity: 1;
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}
.cs_gescout_show.cs_site_header.cs_style_2 {
  background-color: var(--primary);
}
.cs_gescout_show.cs_site_header.cs_style_2 .cs_main_header_in {
  height: 90px;
}
.cs_gescout_show.cs_site_header.cs_style_2 .cs_header_info_box {
  color: #fff;
}
.cs_gescout_show.cs_site_header.cs_style_2 .cs_btn.cs_style_2 {
  border-color: #fff;
  color: #fff;
}
.cs_gescout_show.cs_site_header.cs_style_2 .cs_btn.cs_style_2:hover {
  border-color: var(--accent);
}

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

.cs_main_header .container-fluid {
  padding-right: 100px;
  padding-left: 100px;
}
@media (max-width: 1600px) {
  .cs_main_header .container-fluid {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 1400px) {
  .cs_main_header .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 1199px) {
  .cs_main_header .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media screen and (min-width: 1200px) {
  .cs_main_header {
    position: relative;
  }
  .cs_main_header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .cs_site_header.cs_style_1 .cs_main_header_center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: calc(100% - 300px);
  }
  .cs_site_header.cs_style_1 .cs_main_header_left {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cs_nav {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1.6em;
  }
  .cs_nav .cs_nav_list {
    display: flex !important;
    flex-wrap: wrap;
    height: inherit;
  }
  .cs_nav .cs_nav_list > li {
    margin-right: 40px;
    height: inherit;
  }
  .cs_nav .cs_nav_list > li:last-child {
    margin-right: 0;
  }
  .cs_nav .cs_nav_list > li > a {
    padding: 10px 0;
    display: inline-flex;
    position: relative;
    height: inherit;
    align-items: center;
  }
  .cs_nav .cs_nav_list > li > ul {
    left: 0;
    top: calc(100% + 15px);
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .cs_nav .cs_nav_list > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .cs_nav .cs_nav_list > li.menu-item-has-children > a {
    position: relative;
  }
  .cs_nav .cs_nav_list > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    border: 2px solid currentColor;
    transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
    margin-left: 6px;
    position: relative;
    top: -1px;
    border-radius: 0px 0px 2px 0px;
  }
  .cs_nav .cs_nav_list > li ul {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6em;
  }
  .cs_nav .cs_nav_list li:not(.cs_mega_menu) {
    position: relative;
  }
  .cs_nav .cs_nav_list ul {
    width: 230px;
    background: rgba(247, 247, 245, 0.5);
    position: absolute;
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 0 0 5px 5px;
  }
  .cs_nav .cs_nav_list ul li:hover ul {
    top: 0px;
  }
  .cs_nav .cs_nav_list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .cs_nav .cs_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
  }
  .cs_nav .cs_nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .cs_nav + .cs_toolbox {
    margin-left: 40px;
  }
  .cs_menu_toggle,
  .cs_menu_dropdown_toggle {
    display: none;
  }
  .cs_nav .cs_nav_list .cs_mega_menu {
    position: relative;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1296px !important;
    display: flex !important;
    position: fixed;
    top: 100px !important;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px 10px;
    border-top: 2px solid var(--accent);
    border-radius: 0 0 5px 5px;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper a {
    padding: 7px 10px;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper .menu-item-has-children {
    flex: 1;
    padding: 10px 0;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper .menu-item-has-children > a {
    font-size: 18px;
    font-weight: 600;
    pointer-events: none;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper .menu-item-has-children > a:hover {
    background-color: transparent;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper .menu-item-has-children ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    box-shadow: none;
    background-color: transparent;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper .menu-item-has-children ul a {
    transition: all 0.4s ease;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb {
    display: grid !important;
    grid-gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    padding: 25px 25px 20px 25px;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb img {
    border: 1px solid var(--border);
    border-radius: 7px;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 8px;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb a {
    padding: 0;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 500;
  }
  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb a:hover img {
    border-color: #d5d4d4;
  }
  .cs_nav .cs_nav_list .cs_mega_menu:hover .cs_mega_wrapper li ul {
    opacity: 1;
    visibility: visible;
  }
  .cs_nav .cs_nav_list > li ul:not(.cs_mega_wrapper) .menu-item-has-children > a {
    position: relative;
  }
}
@media screen and (max-width: 1400px) {
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1116px !important;
  }
  .cs_site_header_full_width .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 100% !important;
  }
  .cs_site_header_full_width .container {
    padding: 0 15px;
  }
  .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_menu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }
  .cs_menu_dropdown_toggle span:before, .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_menu_dropdown_toggle span:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .cs_menu_dropdown_toggle.active span:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .menu-item-has-children .menu-item-has-children .cs_menu_dropdown_toggle {
    padding: 20px 18px;
  }
  .cs_site_branding {
    position: relative;
    z-index: 101;
  }
  .cs_nav .cs_nav_list {
    position: fixed;
    width: 100vw;
    left: -100vw;
    background-color: var(--web-wash);
    color: var(--primary);
    padding: 10px 0;
    top: 0;
    overflow: auto;
    height: 100vh;
    line-height: 1.6em;
    padding-top: 80px;
  }
  .cs_nav .cs_nav_list img {
    display: none;
  }
  .cs_nav .cs_nav_list.cs_active {
    left: 0vw;
  }
  .cs_nav .cs_nav_list ul {
    padding-left: 15px;
    display: none;
  }
  .cs_nav .cs_nav_list a {
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
  }
  .cs_nav .cs_nav_list > li > a {
    font-size: 18px;
    line-height: 22px;
  }
  .cs_nav .menu-item-has-children {
    position: relative;
  }
  .cs_transparent_header .cs_nav_list {
    background-color: #1b1b1b;
    color: #fff;
  }
  /*Mobile Menu Button*/
  .cs_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
    color: var(--primary);
  }
  .cs_menu_toggle span,
  .cs_menu_toggle span:before,
  .cs_menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }
  .cs_menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    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_transparent_header .cs_menu_toggle {
    color: #fff;
  }
  .cs_site_header.cs_style_1 .cs_menu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }
  .cs_toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    transition-delay: 0.2s;
  }
  .cs_toggle_active span:before {
    margin-top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.2s;
  }
  .cs_toggle_active span:after {
    margin-top: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.2s;
  }
  .cs_nav .cs_nav_list a {
    position: relative;
  }
  .cs_site_header.cs_style_1 .cs_main_header_in {
    height: 80px;
  }
  .cs_site_header .current-menu-item > a:before {
    display: none;
  }
  .cs_site_header.cs_style_1 .cs_main_header_center .cs_site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
  .cs_site_header.cs_style_1 {
    top: 0;
  }
  .cs_has_main_nav {
    display: none;
  }
  .cs_site_header .cs_btn.cs_style_2 {
    padding: 5px 15px;
  }
}
@media screen and (max-width: 991px) {
  .cs_site_header .container {
    max-width: 100%;
  }
  .cs_site_header.cs_style_1 .cs_action_box > *:not(:last-child) {
    margin-right: 25px;
  }
}
@media screen and (max-width: 575px) {
  .cs_site_header .cs_btn.cs_style_2 {
    display: none;
  }
}
.logo {
  height: 80px;
  width: auto;
}

@media (min-width: 1200px) {
  .logo {
    height: 100px;
  }
}
.user-buttons-mobile {
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .user-buttons-mobile {
    display: none;
  }
}

.user-buttons-desktop {
  display: none !important;
}
@media screen and (min-width: 1200px) {
  .user-buttons-desktop {
    display: flex !important;
    z-index: 10;
  }
}

.cs_units_dropdown {
  padding: 8px 0;
}
.cs_units_dropdown > li {
  border-top: 2px solid var(--border);
}
.cs_units_dropdown > li:first-child {
  border-top: 0;
}
.cs_units_dropdown .cs_units_dropdown_divider {
  height: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  pointer-events: none;
}
.cs_units_dropdown .cs_units_dropdown_divider + li {
  border-top: 0;
}
.cs_units_dropdown .cs_units_dropdown_avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  flex: 0 0 34px;
}
.cs_units_dropdown .cs_units_dropdown_avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.cs_units_dropdown .cs_units_dropdown_title {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cs_nav .cs_nav_list > li > ul.cs_units_dropdown a.cs_units_dropdown_link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  transition: background-color 0.2s ease, color 0.2s ease;
  height: 54px;
}
.cs_nav .cs_nav_list > li > ul.cs_units_dropdown a.cs_units_dropdown_link:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

@media screen and (min-width: 1200px) {
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown {
    position: fixed;
    top: 100px !important;
    left: 50%;
    transform: translateX(-50%);
    width: min(1000px, 100vw - 40px);
    padding: 16px;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-height: calc(100vh - 120px);
    overflow: auto;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overscroll-behavior: contain;
  }
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown > li {
    border-top: 0;
    transition: all 300ms ease;
  }
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown > li:hover {
    transform: scale(1.05);
  }
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown .cs_units_dropdown_divider {
    grid-column: 1/-1;
    border-top: 1px solid var(--border);
    margin: 2px 0;
  }
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown .cs_units_dropdown_avatar {
    width: 100%;
    height: auto;
    display: block;
    flex: 0 0 auto;
    aspect-ratio: 3/2;
    border-radius: 12px;
    border: 0;
  }
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown .cs_units_dropdown_avatar img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown .cs_units_dropdown_title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    max-width: calc(100% - 28px);
    padding: 9px 14px;
    border-radius: 9999px;
    background-color: #fff;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  }
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown a.cs_units_dropdown_link {
    position: relative;
    display: block;
    padding: 0;
    height: auto;
    border-radius: 14px;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown a.cs_units_dropdown_link:hover {
    border-color: rgba(0, 0, 0, 0.18);
  }
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown a.cs_units_dropdown_link:not(:has(.cs_units_dropdown_title)),
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown a.cs_units_dropdown_link:has(.cs_units_dropdown_avatar.cs_center) {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    min-height: 92px;
    overflow: visible;
  }
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown a.cs_units_dropdown_link:not(:has(.cs_units_dropdown_title)) .cs_units_dropdown_avatar,
  .cs_nav .cs_nav_list > li > ul.cs_units_dropdown a.cs_units_dropdown_link:has(.cs_units_dropdown_avatar.cs_center) .cs_units_dropdown_avatar {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    aspect-ratio: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.glass-background {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/*--------------------------------------------------------------
Preloader
----------------------------------------------------------------*/
.cs_preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  top: 0;
  width: 100%;
  height: 100vh;
  font-size: 80px;
  background-color: var(--web-wash);
}

.cs_preloader_in {
  width: 130px;
  height: 130px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  border-radius: 50%;
}
.cs_preloader_in:after, .cs_preloader_in:before {
  content: "";
  border-width: 3px;
  border-style: solid;
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  margin-left: -65px;
  margin-top: -65px;
}
.cs_preloader_in:after {
  border-color: transparent;
  border-top-color: var(--accent);
  animation: spin 1s ease-in-out infinite;
  z-index: 2;
}
.cs_preloader_in:before {
  border-color: var(--accent);
  opacity: 0.2;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
  15. Card
----------------------------------------------------------------*/
.cs_card.cs_style_1 .cs_card_list,
.cs_card.cs_style_2 .cs_card_list,
.cs_card.cs_style_3 .cs_card_list,
.cs_card.cs_style_4 .cs_card_list,
.cs_card.cs_style_5 .cs_card_list,
.cs_card.cs_style_7 .cs_card_list {
  display: inline-flex;
  flex-wrap: wrap;
}
.cs_card.cs_style_1 .cs_card_list li,
.cs_card.cs_style_2 .cs_card_list li,
.cs_card.cs_style_3 .cs_card_list li,
.cs_card.cs_style_4 .cs_card_list li,
.cs_card.cs_style_5 .cs_card_list li,
.cs_card.cs_style_7 .cs_card_list li {
  position: relative;
}
.cs_card.cs_style_1 .cs_card_list li:not(:last-child),
.cs_card.cs_style_2 .cs_card_list li:not(:last-child),
.cs_card.cs_style_3 .cs_card_list li:not(:last-child),
.cs_card.cs_style_4 .cs_card_list li:not(:last-child),
.cs_card.cs_style_5 .cs_card_list li:not(:last-child),
.cs_card.cs_style_7 .cs_card_list li:not(:last-child) {
  padding-right: 15px;
  margin-right: 14px;
}
@media (max-width: 380px) {
  .cs_card.cs_style_1 .cs_card_list li:not(:last-child),
  .cs_card.cs_style_2 .cs_card_list li:not(:last-child),
  .cs_card.cs_style_3 .cs_card_list li:not(:last-child),
  .cs_card.cs_style_4 .cs_card_list li:not(:last-child),
  .cs_card.cs_style_5 .cs_card_list li:not(:last-child),
  .cs_card.cs_style_7 .cs_card_list li:not(:last-child) {
    padding-right: 9px;
    margin-right: 8px;
  }
}
.cs_card.cs_style_1 .cs_card_list li:not(:last-child)::after,
.cs_card.cs_style_2 .cs_card_list li:not(:last-child)::after,
.cs_card.cs_style_3 .cs_card_list li:not(:last-child)::after,
.cs_card.cs_style_4 .cs_card_list li:not(:last-child)::after,
.cs_card.cs_style_5 .cs_card_list li:not(:last-child)::after,
.cs_card.cs_style_7 .cs_card_list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  width: 1px;
  background-color: var(--secondary);
}
.cs_card.cs_style_1 .cs_card_price,
.cs_card.cs_style_2 .cs_card_price,
.cs_card.cs_style_3 .cs_card_price,
.cs_card.cs_style_4 .cs_card_price,
.cs_card.cs_style_5 .cs_card_price,
.cs_card.cs_style_7 .cs_card_price {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cs_card.cs_style_1.text-center .cs_card_price,
.cs_card.cs_style_1.text-center .cs_card_list,
.cs_card.cs_style_2.text-center .cs_card_price,
.cs_card.cs_style_2.text-center .cs_card_list,
.cs_card.cs_style_3.text-center .cs_card_price,
.cs_card.cs_style_3.text-center .cs_card_list,
.cs_card.cs_style_4.text-center .cs_card_price,
.cs_card.cs_style_4.text-center .cs_card_list,
.cs_card.cs_style_5.text-center .cs_card_price,
.cs_card.cs_style_5.text-center .cs_card_list,
.cs_card.cs_style_7.text-center .cs_card_price,
.cs_card.cs_style_7.text-center .cs_card_list {
  justify-content: center;
}

.cs_card.cs_style_1 .cs_card_info {
  padding: 35px 16% 0 9%;
}
@media (max-width: 991px) {
  .cs_card.cs_style_1 .cs_card_info {
    padding: 20px 15% 0 5%;
  }
}
.cs_card.cs_style_1 .cs_card_btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-size: 20px;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
}
.cs_card.cs_style_1 .cs_card_btn:hover {
  background-color: var(--accent);
  color: #fff;
}
@media (max-width: 991px) {
  .cs_card.cs_style_1 .cs_card_btn {
    right: 5%;
  }
}
@media (max-width: 575px) {
  .cs_card.cs_style_1 .cs_card_btn {
    right: 4px;
  }
}
.cs_card.cs_style_1 .cs_card_thumb img {
  position: relative;
  width: auto;
  transition: all 0.6s ease;
  background-size: cover;
}
.cs_card.cs_style_1 .cs_card_thumb img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
}
.cs_card.cs_style_1 .cs_card_thumb:hover img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.cs_card.cs_style_1 .cs_card_thumb:hover img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.cs_card.cs_style_1.cs_type_1 {
  border: 1px solid var(--border);
  border-radius: 5px;
}
.cs_card.cs_style_1.cs_type_1 .cs_card_info {
  padding: 35px 50px 45px 50px;
}
@media (max-width: 1400px) {
  .cs_card.cs_style_1.cs_type_1 .cs_card_info {
    padding: 20px 30px 30px 30px;
  }
}
.cs_card.cs_style_1.cs_type_1 .cs_card_thumb {
  border-radius: 5px 5px 0 0;
}
.cs_card.cs_style_1.cs_color_1 {
  border-color: var(--secondary);
}
.cs_card.cs_style_1.cs_color_1 .cs_card_title,
.cs_card.cs_style_1.cs_color_1 .cs_primary_color {
  color: #fff;
}

.cs_card.cs_style_2 .cs_card_info {
  padding: 35px 25px 0;
}
.cs_card.cs_style_2 .cs_card_hover {
  top: 25px;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 2;
}
.cs_card.cs_style_2 .cs_card_hover::before, .cs_card.cs_style_2 .cs_card_hover::after {
  content: "";
  position: absolute;
  height: 0%;
  width: 0%;
  transition: all 0.5s ease;
}
.cs_card.cs_style_2 .cs_card_hover::before {
  left: 0;
  bottom: 0;
  border: 1px solid var(--accent);
  border-top-width: 0;
  border-right-width: 0;
}
.cs_card.cs_style_2 .cs_card_hover::after {
  right: 0;
  top: 0;
  border: 1px solid var(--accent);
  border-bottom-width: 0;
  border-left-width: 0;
}
.cs_card.cs_style_2 .cs_card_btn {
  transform: scale(0);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.5, 2.2, 0.7, 0.7);
}
.cs_card.cs_style_2 .cs_card_hover_overlay {
  background-color: rgba(27, 27, 27, 0.5);
  opacity: 0;
  transition: all 0.5s ease;
}
.cs_card.cs_style_2:hover .cs_card_hover::before, .cs_card.cs_style_2:hover .cs_card_hover::after {
  height: 100%;
  width: 100%;
}
.cs_card.cs_style_2:hover .cs_card_btn {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
}
.cs_card.cs_style_2:hover .cs_card_hover_overlay {
  opacity: 1;
}

@media (min-width: 1401px) {
  .cs_card.cs_style_3 .cs_card_info {
    padding: 35px 50px 45px 50px;
  }
}
@media (max-width: 1400px) {
  .cs_card.cs_style_3 .cs_card_info {
    padding: 25px 30px 35px 30px;
  }
}
.cs_card.cs_style_3 .cs_card_thumb {
  border-radius: 250px 250px 0 0;
}
.cs_card.cs_style_3 .cs_card_hover {
  opacity: 0;
  background-color: rgba(27, 27, 27, 0.5);
  transition: all 0.4s ease;
}
.cs_card.cs_style_3 .cs_card_btn {
  opacity: 0;
  position: relative;
  top: -40px;
  transition: all 0.6s ease;
}
.cs_card.cs_style_3:hover .cs_card_hover {
  opacity: 1;
}
.cs_card.cs_style_3:hover .cs_card_btn {
  opacity: 1;
  top: 0;
  transition-delay: 0.15s;
}

.cs_card.cs_style_4 {
  height: 500px;
  overflow: hidden;
}
.cs_card.cs_style_4 .cs_card_thumb {
  object-fit: cover;
  transition: all 4s ease;
}
.cs_card.cs_style_4 .cs_card_price {
  right: 24px;
  top: 24px;
  padding: 10px 18px;
}
.cs_card.cs_style_4 .cs_card_info {
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0) 0%, rgba(27, 27, 27, 0.6) 100%);
  padding: 47px 30px;
}
.cs_card.cs_style_4 .cs_card_list {
  width: 100%;
  margin-top: 10px;
}
.cs_card.cs_style_4 .cs_card_title {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.6s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
  transition: all 0.4s ease;
  display: inline;
}
.cs_card.cs_style_4:hover .cs_card_title {
  color: var(--accent);
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}
.cs_card.cs_style_4:hover .cs_card_thumb {
  transform: scale(1.05);
}
.cs_card.cs_style_4.cs_type_1 {
  height: 440px;
}
.cs_card.cs_style_4.cs_type_1 .cs_card_info {
  padding: 36px 40px;
}
@media (max-width: 991px) {
  .cs_card.cs_style_4.cs_type_1 .cs_card_info {
    padding: 25px 25px;
    height: 400px;
  }
}

.cs_card.cs_style_5 {
  height: 350px;
}
.cs_card.cs_style_5::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(27, 27, 27, 0.6);
  transition: all 0.4s ease;
}
.cs_card.cs_style_5 .cs_card_in {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cs_card.cs_style_5 .cs_card_in {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
}
.cs_card.cs_style_5:hover::before {
  background-color: rgba(27, 27, 27, 0.7);
  backdrop-filter: blur(12.5px);
}

.cs_card.cs_style_6 {
  border: 1px solid var(--border);
}
.cs_card.cs_style_6 .cs_card_info {
  padding: 30px 20px 40px;
}

.cs_card.cs_style_7 {
  border: 1px solid var(--ternary);
  transition: all 0.4s ease;
}
.cs_card.cs_style_7 .cs_card_btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  margin-top: 30px;
  opacity: 0;
  display: block;
}
.cs_card.cs_style_7 .cs_card_info {
  padding: 35px 50px 45px 50px;
}
@media (max-width: 1400px) {
  .cs_card.cs_style_7 .cs_card_info {
    padding: 25px 35px 35px 35px;
  }
}
@media (max-width: 400px) {
  .cs_card.cs_style_7 .cs_card_info {
    padding: 25px 25px 35px 25px;
  }
}
.cs_card.cs_style_7 .cs_card_thumb img {
  transition: all 0.4s ease;
}
.cs_card.cs_style_7:hover {
  transform: translateY(-5px);
}
.cs_card.cs_style_7:hover .cs_card_btn {
  margin-top: 0px;
  opacity: 1;
}
.cs_card.cs_style_7:hover .cs_card_thumb img {
  transform: scale(1.03);
}
.cs_card.cs_style_7.cs_type_1 .cs_card_info p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
  .cs_card.cs_style_7.cs_type_1 {
    display: flex;
    align-items: center;
  }
  .cs_card.cs_style_7.cs_type_1 .cs_card_thumb {
    flex: none;
    width: 45%;
    height: 415px;
  }
  .cs_card.cs_style_7.cs_type_1 .cs_card_thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

.cs_slider .cs_card.cs_style_7:hover {
  transform: translateY(0px);
}

/*--------------------------------------------------------------
  16. Image Layer
----------------------------------------------------------------*/
.cs_image_layer.cs_style_1 .cs_image_layer_1_wrap {
  padding-right: 24%;
  padding-bottom: 20%;
}
.cs_image_layer.cs_style_1 .cs_image_layer_2_wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 30%;
}
.cs_image_layer.cs_style_1 .cs_image_layer_1,
.cs_image_layer.cs_style_1 .cs_image_layer_2 {
  position: relative;
}
.cs_image_layer.cs_style_1 .cs_image_layer_1::before,
.cs_image_layer.cs_style_1 .cs_image_layer_2::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  border: 1px solid #fff;
}

.cs_image_layer.cs_style_2 .cs_image_layer_1_wrap {
  padding-left: 30%;
}
.cs_image_layer.cs_style_2 .cs_image_layer_2_wrap {
  position: absolute;
  left: 0;
  bottom: 50px;
  padding-right: 42%;
}
.cs_image_layer.cs_style_2 .cs_image_layer_2 {
  border: 10px solid #fff;
}

.cs_image_layer.cs_style_3::before,
.cs_image_layer.cs_style_4::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  border: 1px solid #fff;
}
.cs_image_layer.cs_style_3.cs_type_1,
.cs_image_layer.cs_style_4.cs_type_1 {
  border-radius: 250px 0;
}
.cs_image_layer.cs_style_3.cs_type_1 img,
.cs_image_layer.cs_style_4.cs_type_1 img {
  border-radius: inherit;
}
.cs_image_layer.cs_style_3.cs_type_1::before,
.cs_image_layer.cs_style_4.cs_type_1::before {
  border-radius: 225px 0;
}

.cs_image_layer.cs_style_4 {
  min-height: 600px;
}
@media (max-width: 575px) {
  .cs_image_layer.cs_style_4 {
    min-height: 400px;
  }
}

.cs_image_layer.cs_style_5 .cs_image_layer_in {
  display: flex;
}
.cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item {
  flex: 1;
  height: 636px;
}
@media (max-width: 1400px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item {
    height: 550px;
  }
}
@media (max-width: 991px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item {
    height: 350px;
  }
}
.cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:first-child {
  padding: 80px 11% 80px 0;
}
@media (max-width: 1600px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:first-child {
    padding: 80px 8% 80px 0;
  }
}
@media (max-width: 1400px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:first-child {
    padding: 50px 6% 50px 0;
  }
}
@media (max-width: 991px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:first-child {
    padding: 30px 24px 30px 0;
  }
}
@media (max-width: 991px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:first-child {
    padding: 30px 10px 30px 0;
  }
}
.cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(2) {
  flex: 1.5;
  position: relative;
  z-index: 2;
}
.cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(3) {
  padding: 80px 0 80px 11%;
}
@media (max-width: 1600px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(3) {
    padding: 80px 0 80px 8%;
  }
}
@media (max-width: 1400px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(3) {
    padding: 50px 0 50px 6%;
  }
}
@media (max-width: 991px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(3) {
    padding: 30px 0 30px 24px;
  }
}
@media (max-width: 575px) {
  .cs_image_layer.cs_style_5 .cs_image_layer_in .cs_image_layer_item:nth-child(3) {
    padding: 30px 0 30px 10px;
  }
}
.cs_image_layer.cs_style_5 .cs_moving_text_wrap.cs_style_1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}

/*--------------------------------------------------------------
  8. Footer
----------------------------------------------------------------*/
.cs_widget_title {
  margin-bottom: 47px;
}
@media (max-width: 991px) {
  .cs_widget_title {
    margin-bottom: 30px;
  }
}
.cs_widget_title span {
  display: inline-block;
  position: relative;
  padding-right: 20px;
}
.cs_widget_title span::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 50px;
  background-color: #fff;
  left: 100%;
  top: 54%;
}

.cs_menu_widget {
  padding: 0;
  margin: 0;
  list-style: none;
}
.cs_menu_widget li:not(:last-child) {
  margin-bottom: 8px;
}
.cs_menu_widget + .cs_social_btns.cs_style_1 {
  margin-top: 38px;
}

.cs_text_widget p {
  margin: 0;
}
.cs_text_widget img + p {
  margin-top: 46px;
}
.cs_text_widget h3 + p,
.cs_text_widget h2 + p {
  margin-top: 10px;
}
.cs_text_widget h2,
.cs_text_widget h3 {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 0px;
  margin-top: 30px;
}

.cs_social_btns.cs_style_1 {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 10px;
}
.cs_social_btns.cs_style_1 a {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid var(--secondary);
  display: flex;
}
.cs_social_btns.cs_style_1 a:hover {
  border-color: var(--accent);
  transform: scale(1.08);
}
.cs_social_btns.cs_style_1 a:hover svg {
  fill: var(--accent);
}

.cs_footer_links {
  display: flex;
  flex-wrap: wrap;
}
.cs_footer_links li:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
  position: relative;
  top: -1px;
}

.cs_bottom_footer_wrap {
  background-color: #171717;
}

.cs_bottom_footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  gap: 2px 15px;
}
@media (max-width: 767px) {
  .cs_bottom_footer {
    flex-direction: column;
    padding: 40px 0 20px 0;
  }
}

.cs_copyright a {
  color: var(--accent);
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.6s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}
.cs_copyright a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.cs_fullscreen_footer_in {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}

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

.cs_footer_grid_4 {
  display: flex;
  gap: 30px 70px;
}
@media (max-width: 1400px) {
  .cs_footer_grid_4 {
    gap: 30px 40px;
  }
}
@media (max-width: 1199px) {
  .cs_footer_grid_4 {
    gap: 30px 24px;
  }
}
@media (max-width: 991px) {
  .cs_footer_grid_4 {
    display: grid;
    gap: 55px 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cs_footer_grid_4 {
    gap: 55px 24px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.cs_footer_grid_4 .cs_footer_grid_item {
  flex: 1;
}
.cs_footer_grid_4 .cs_footer_grid_item:first-child {
  flex: 1.4;
}
.cs_footer_grid_4 .cs_footer_grid_item:nth-child(2) {
  flex: 1.4;
}
.cs_footer_grid_4 .cs_footer_grid_item:last-child {
  flex: 2.1;
}
.cs_footer_grid_4.cs_type_1 {
  gap: 30px 10%;
}
@media (max-width: 1600px) {
  .cs_footer_grid_4.cs_type_1 {
    gap: 30px 6%;
  }
}
@media (max-width: 1400px) {
  .cs_footer_grid_4.cs_type_1 {
    gap: 30px 40px;
  }
}
@media (max-width: 1199px) {
  .cs_footer_grid_4.cs_type_1 {
    gap: 30px 24px;
  }
}
@media (max-width: 991px) {
  .cs_footer_grid_4.cs_type_1 {
    gap: 55px 24px;
  }
}
@media (max-width: 575px) {
  .cs_footer_grid_4.cs_type_1 {
    gap: 55px 24px;
  }
}

.cs_footer_links {
  display: flex;
  flex-wrap: wrap;
}
.cs_footer_links li:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
  position: relative;
  top: -1px;
}

.cs_footer_map {
  height: 260px;
}
.cs_footer_map iframe {
  height: 100%;
  display: block;
  border: none;
  width: 100%;
  border-radius: 5px;
  outline: none;
}

.cs_footer .cs_newsletter.cs_style_1 .cs_newsletter_input {
  padding-right: 145px;
  border-color: var(--secondary);
}
.cs_footer .cs_newsletter.cs_style_1 .cs_newsletter_input::placeholder {
  color: var(--secondary);
}
.cs_footer .cs_newsletter.cs_style_1 .cs_newsletter_input::-ms-input-placeholder {
  color: var(--secondary);
}

.cs_scrollup {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 46px;
  width: 46px;
  top: -23px;
  background-color: #181818;
  border-radius: 50%;
  cursor: pointer;
}
.cs_scrollup > svg {
  position: relative;
  z-index: 2;
}
.cs_scrollup .cs_scrollup_bg_dotted {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 15s linear infinite;
  animation-play-state: paused;
}
.cs_scrollup::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: var(--accent);
  opacity: 0.5;
}
.cs_scrollup:hover .cs_scrollup_bg_dotted {
  animation-play-state: initial;
}
.cs_scrollup.cs_type_1 {
  top: 20px;
}
@media (max-width: 991px) {
  .cs_scrollup.cs_type_1 {
    top: -23px;
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*--------------------------------------------------------------
  17. Newsletter
----------------------------------------------------------------*/
.cs_newsletter.cs_style_1 .cs_newsletter_icon {
  height: 60px;
  width: 60px;
  margin-left: auto;
  margin-right: auto;
}
.cs_newsletter.cs_style_1 .cs_newsletter_form {
  max-width: 636px;
  margin-left: auto;
  margin-right: auto;
}
.cs_newsletter.cs_style_1 .cs_newsletter_input {
  width: 100%;
  border: 1px solid var(--ternary);
  height: 55px;
  padding: 5px 185px 5px 20px;
  outline: none;
  background-color: transparent;
}
@media (max-width: 575px) {
  .cs_newsletter.cs_style_1 .cs_newsletter_input {
    padding: 5px 160px 5px 15px;
  }
}
.cs_newsletter.cs_style_1 .cs_newsletter_input:focus {
  border-color: var(--accent);
}
.cs_newsletter.cs_style_1 .cs_btn.cs_style_2 {
  padding: 10px 25px;
  background-color: transparent;
  position: absolute;
  right: 0;
  height: 55px;
  border: none;
}
@media (max-width: 575px) {
  .cs_newsletter.cs_style_1 .cs_btn.cs_style_2 {
    padding: 10px 12px;
    gap: 5px;
  }
}
.cs_newsletter.cs_style_1 .cs_btn.cs_style_2:hover {
  color: var(--accent);
}
.cs_newsletter.cs_style_1 .cs_btn.cs_style_2::before {
  content: "";
  position: absolute;
  height: 27px;
  width: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary);
}
.cs_newsletter.cs_style_1 .cs_newsletter_subtitle {
  margin-top: 21px;
}
.cs_newsletter.cs_style_1.cs_color_1 .cs_btn.cs_style_2, .cs_newsletter.cs_style_1.cs_color_2 .cs_btn.cs_style_2 {
  color: #fff;
  padding: 10px 20px;
}
.cs_newsletter.cs_style_1.cs_color_1 .cs_btn.cs_style_2:hover, .cs_newsletter.cs_style_1.cs_color_2 .cs_btn.cs_style_2:hover {
  color: var(--accent);
}
@media (max-width: 575px) {
  .cs_newsletter.cs_style_1.cs_color_1 .cs_btn.cs_style_2, .cs_newsletter.cs_style_1.cs_color_2 .cs_btn.cs_style_2 {
    padding: 10px 12px;
    gap: 5px;
  }
}
.cs_newsletter.cs_style_1.cs_color_1 .cs_newsletter_input, .cs_newsletter.cs_style_1.cs_color_2 .cs_newsletter_input {
  color: #fff;
}
.cs_newsletter.cs_style_1.cs_color_2 .cs_newsletter_input {
  background: rgba(27, 27, 27, 0.5);
  backdrop-filter: blur(10px);
}
.cs_newsletter.cs_style_1.cs_color_2 .cs_newsletter_input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.cs_newsletter.cs_style_1.cs_color_2 .cs_newsletter_input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.cs_newsletter.cs_style_1.cs_color_3 .cs_accent_bg {
  background-color: var(--primary);
}
.cs_newsletter.cs_style_1.cs_color_3 h2,
.cs_newsletter.cs_style_1.cs_color_3 .cs_btn.cs_style_2 {
  color: #fff;
}
.cs_newsletter.cs_style_1.cs_color_3 h2::before,
.cs_newsletter.cs_style_1.cs_color_3 .cs_btn.cs_style_2::before {
  background-color: #fff;
}
.cs_newsletter.cs_style_1.cs_color_3 .cs_newsletter_input {
  color: #fff;
}
.cs_newsletter.cs_style_1.cs_color_3 .cs_newsletter_input::placeholder {
  color: #fff;
}
.cs_newsletter.cs_style_1.cs_color_3 .cs_newsletter_input::-ms-input-placeholder {
  color: #fff;
}
.cs_newsletter.cs_style_1.cs_color_3 .cs_newsletter_input:focus {
  border-color: #fff;
}

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

.slick-arrow {
  cursor: pointer;
}

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

.slick-slide > div {
  display: flex;
  flex-direction: column;
}

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

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

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

.cs_slider_gap_40 .slick-slide {
  padding-left: 20px;
  padding-right: 20px;
}
.cs_slider_gap_40 .slick-list {
  margin-left: -20px;
  margin-right: -20px;
}
@media (max-width: 1400px) {
  .cs_slider_gap_40 .slick-slide {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cs_slider_gap_40 .slick-list {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.cs_slider_gap_60 .slick-slide {
  padding-left: 30px;
  padding-right: 30px;
}
.cs_slider_gap_60 .slick-list {
  margin-left: -30px;
  margin-right: -30px;
}
@media (max-width: 1400px) {
  .cs_slider_gap_60 .slick-slide {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cs_slider_gap_60 .slick-list {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.cs_show_shadow_20 .slick-list {
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.cs_slider_arrows.cs_style_1 {
  display: flex;
  gap: 12px;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
  height: 60px;
  width: 50px;
  flex: none;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 30%;
  z-index: 5;
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_1 .cs_right_arrow:hover {
  color: var(--accent);
}
.cs_slider_arrows.cs_style_1 .cs_left_arrow {
  left: 0px;
}
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
  right: -2px;
}

.cs_slider_arrows.cs_style_2 .cs_left_arrow,
.cs_slider_arrows.cs_style_2 .cs_right_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s ease;
}
.cs_slider_arrows.cs_style_2 .cs_left_arrow:hover:hover,
.cs_slider_arrows.cs_style_2 .cs_right_arrow:hover:hover {
  color: var(--accent);
}
.cs_slider_arrows.cs_style_2 .cs_right_arrow {
  right: calc((100vw - 1300px) / 2 / 2);
  margin-right: -28px;
}
@media (max-width: 1400px) {
  .cs_slider_arrows.cs_style_2 .cs_right_arrow {
    right: calc((100vw - 1140px) / 2 / 2);
    margin-right: -22px;
  }
}
@media (max-width: 1199px) {
  .cs_slider_arrows.cs_style_2 .cs_right_arrow {
    right: calc((100vw - 960px) / 2 / 2);
    margin-right: -22px;
  }
}
@media (max-width: 1050px) {
  .cs_slider_arrows.cs_style_2 .cs_right_arrow {
    margin-right: 0px;
  }
}
.cs_slider_arrows.cs_style_2 .cs_left_arrow {
  left: calc((100vw - 1300px) / 2 / 2);
  margin-left: -28px;
}
@media (max-width: 1400px) {
  .cs_slider_arrows.cs_style_2 .cs_left_arrow {
    left: calc((100vw - 1140px) / 2 / 2);
    margin-left: -22px;
  }
}
@media (max-width: 1199px) {
  .cs_slider_arrows.cs_style_2 .cs_left_arrow {
    left: calc((100vw - 960px) / 2 / 2);
    margin-left: -22px;
  }
}
@media (max-width: 1050px) {
  .cs_slider_arrows.cs_style_2 .cs_left_arrow {
    margin-left: 0px;
  }
}

.cs_slider_arrows.cs_style_3 .cs_left_arrow,
.cs_slider_arrows.cs_style_3 .cs_right_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .cs_slider_arrows.cs_style_3 .cs_left_arrow,
  .cs_slider_arrows.cs_style_3 .cs_right_arrow {
    top: 35%;
  }
}
.cs_slider_arrows.cs_style_3 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_3 .cs_right_arrow:hover {
  color: var(--accent);
}
.cs_slider_arrows.cs_style_3 .cs_left_arrow {
  left: 6.6%;
}
@media (max-width: 1199px) {
  .cs_slider_arrows.cs_style_3 .cs_left_arrow {
    left: 30px;
  }
}
.cs_slider_arrows.cs_style_3 .cs_right_arrow {
  right: 6.6%;
}
@media (max-width: 1199px) {
  .cs_slider_arrows.cs_style_3 .cs_right_arrow {
    right: 30px;
  }
}

.cs_slider_arrows.cs_style_4 {
  display: flex;
  gap: 20px;
}
.cs_slider_arrows.cs_style_4 .cs_left_arrow,
.cs_slider_arrows.cs_style_4 .cs_right_arrow {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--ternary);
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.4s ease;
}
.cs_slider_arrows.cs_style_4 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_4 .cs_right_arrow:hover {
  background-color: var(--accent);
  color: #fff;
}

.cs_pagination.cs_style_1 {
  display: flex;
  justify-content: center;
}
.cs_pagination.cs_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 65px;
  display: flex !important;
  gap: 15px;
}
@media (max-width: 991px) {
  .cs_pagination.cs_style_1 ul {
    margin-top: 40px;
    gap: 8px;
  }
}
.cs_pagination.cs_style_1 li {
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 2px solid var(--primary);
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.cs_pagination.cs_style_1 li.slick-active {
  background-color: var(--accent);
  border-color: var(--accent);
}
.cs_pagination.cs_style_1 button {
  display: none;
}
.cs_pagination.cs_style_1.cs_type_1 {
  position: absolute;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15%;
}
.cs_pagination.cs_style_1.cs_type_1 ul {
  margin: 0;
}
.cs_pagination.cs_style_1.cs_type_1 li {
  border-color: #fff;
}
.cs_pagination.cs_style_1.cs_type_1 li.slick-active {
  border-color: var(--accent);
}
.cs_pagination.cs_style_1.cs_type_2 ul, .cs_pagination.cs_style_1.cs_type_3 ul {
  margin-top: 50px;
}
.cs_pagination.cs_style_1.cs_type_2 li, .cs_pagination.cs_style_1.cs_type_3 li {
  height: 10px;
  width: 10px;
  background-color: var(--secondary);
  border: none;
}
.cs_pagination.cs_style_1.cs_type_2 li.slick-active, .cs_pagination.cs_style_1.cs_type_3 li.slick-active {
  background-color: var(--accent);
}
.cs_pagination.cs_style_1.cs_type_3 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc((100% - 1296px) / 2);
}
@media (max-width: 1400px) {
  .cs_pagination.cs_style_1.cs_type_3 {
    width: calc((100% - 1116px) / 2);
  }
}
@media (max-width: 1199px) {
  .cs_pagination.cs_style_1.cs_type_3 {
    width: calc((100% - 936px) / 2);
  }
}
@media (max-width: 991px) {
  .cs_pagination.cs_style_1.cs_type_3 {
    width: 100%;
    position: initial;
    transform: initial;
  }
}
.cs_pagination.cs_style_1.cs_type_3 ul {
  margin: 0;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cs_pagination.cs_style_1.cs_type_3 ul {
    flex-direction: row;
    margin-top: 40px;
  }
}
.cs_pagination.cs_style_1.cs_type_4 {
  position: absolute;
  bottom: 423px;
  width: 100%;
}
.cs_pagination.cs_style_1.cs_color_1 li {
  border-color: #fff;
}
.cs_pagination.cs_style_1.cs_color_1 li.slick-active {
  border-color: var(--accent);
}

.cs_slider_number.cs_style_1 span,
.cs_slider_number.cs_style_2 span {
  display: inline-block;
  position: relative;
}
.cs_slider_number.cs_style_1 .cs_current_number,
.cs_slider_number.cs_style_2 .cs_current_number {
  color: var(--accent);
}
.cs_slider_number.cs_style_1 .cs_slider_number_seperator,
.cs_slider_number.cs_style_2 .cs_slider_number_seperator {
  display: inline-block;
  background-color: var(--primary);
  transform: rotate(25deg);
  position: relative;
}

.cs_slider_number.cs_style_1 {
  position: absolute;
  bottom: 6px;
  right: calc((100vw - 1300px) / 2 / 2);
  margin-right: -18px;
}
.cs_slider_number.cs_style_1 .cs_current_number {
  top: -10px;
  font-size: 50px;
}
.cs_slider_number.cs_style_1 .cs_total_numbers {
  top: 10px;
}
.cs_slider_number.cs_style_1 .cs_slider_number_seperator {
  height: 56px;
  width: 1px;
  top: 15px;
}
@media (max-width: 1400px) {
  .cs_slider_number.cs_style_1 {
    right: calc((100vw - 1140px) / 2 / 2);
  }
}
@media (max-width: 1199px) {
  .cs_slider_number.cs_style_1 {
    right: 40px;
    margin-right: 0;
  }
}

.cs_slider_number.cs_style_2 {
  font-size: 160px;
  line-height: 1em;
  padding-bottom: 80px;
}
.cs_slider_number.cs_style_2 .cs_current_number {
  top: -35px;
  font-size: 215px;
}
.cs_slider_number.cs_style_2 .cs_total_numbers {
  top: 35px;
}
.cs_slider_number.cs_style_2 .cs_slider_number_seperator {
  height: 240px;
  width: 4px;
  top: 70px;
}

.cs_hover_show_arrows .cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_hover_show_arrows .cs_slider_arrows.cs_style_1 .cs_right_arrow {
  opacity: 0;
}
.cs_hover_show_arrows:hover .cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_hover_show_arrows:hover .cs_slider_arrows.cs_style_1 .cs_right_arrow {
  opacity: 1;
}

@media (max-width: 991px) {
  .cs_slider_navigation {
    position: absolute;
    z-index: 8;
    bottom: 80px;
    display: flex;
    gap: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cs_slider_navigation .cs_swiper_button_prev,
.cs_slider_navigation .cs_swiper_button_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 5;
}
.cs_slider_navigation .cs_swiper_button_prev:hover,
.cs_slider_navigation .cs_swiper_button_next:hover {
  color: var(--accent);
}
@media (max-width: 991px) {
  .cs_slider_navigation .cs_swiper_button_prev,
  .cs_slider_navigation .cs_swiper_button_next {
    position: initial;
    transform: initial;
  }
}
.cs_slider_navigation .cs_swiper_button_prev {
  left: 6.6%;
}
@media (max-width: 1199px) {
  .cs_slider_navigation .cs_swiper_button_prev {
    left: 3%;
  }
}
.cs_slider_navigation .cs_swiper_button_next {
  right: 6.6%;
}
@media (max-width: 1199px) {
  .cs_slider_navigation .cs_swiper_button_next {
    right: 3%;
  }
}

.swiper-slide {
  overflow: hidden;
}
.swiper-slide .cs_hero.cs_style_1 .cs_hero_text {
  position: relative;
  top: 10px;
  opacity: 0;
  transition: all 0.9s ease;
  user-select: none;
}
.swiper-slide.swiper-slide-active .cs_hero.cs_style_1 .cs_hero_text {
  top: 0;
  opacity: 1;
  transition: all 0.9s ease 0.9s;
}

.slick-vertical.cs_gallery_slider_nav {
  margin-top: -12px;
  margin-bottom: -12px;
}
.slick-vertical.cs_gallery_slider_nav .slick-slide {
  border: none;
  padding: 12px 0;
}
@media (max-width: 991px) {
  .slick-vertical.cs_gallery_slider_nav {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .slick-vertical.cs_gallery_slider_nav .slick-slide {
    border: none;
    padding: 5px 0;
  }
}
.slick-vertical .cs_gallery_slider_thumb_mini {
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.slick-vertical .cs_gallery_slider_thumb_mini::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid var(--accent);
  border-radius: inherit;
  opacity: 0;
  transition: all 0.4s ease;
}
.slick-vertical .slick-current .cs_gallery_slider_thumb_mini::before {
  opacity: 1;
}

.cs_left_arrow_gallery,
.cs_right_arrow_gallery {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: var(--web-wash);
  background-color: var(--primary);
  top: 50%;
  margin-top: -25px;
  z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cs_left_arrow_gallery:hover,
.cs_right_arrow_gallery:hover {
  background-color: var(--accent);
}

.cs_left_arrow_gallery {
  left: 25px;
}

.cs_right_arrow_gallery {
  right: 25px;
}

.cs_gallery_hover_show_nav .cs_left_arrow_gallery,
.cs_gallery_hover_show_nav .cs_right_arrow_gallery {
  opacity: 0;
}
.cs_gallery_hover_show_nav:hover .cs_left_arrow_gallery,
.cs_gallery_hover_show_nav:hover .cs_right_arrow_gallery {
  opacity: 1;
}

.cs_gallery_slider_thumb_item_2 {
  height: 750px;
}
@media (max-width: 1400px) {
  .cs_gallery_slider_thumb_item_2 {
    height: 600px;
  }
}
@media (max-width: 1199px) {
  .cs_gallery_slider_thumb_item_2 {
    height: 500px;
  }
}

.cs_gallery_slider_nav_2_wrap {
  width: 100%;
  position: absolute;
  bottom: 35px;
}
@media (max-width: 767px) {
  .cs_gallery_slider_nav_2_wrap {
    bottom: 25px;
  }
}
.cs_gallery_slider_nav_2_wrap .cs_price_per {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  bottom: 4px;
}
.cs_gallery_slider_nav_2_wrap .cs_price {
  margin-top: 5px;
}

.cs_gallery_slider_nav_2 {
  width: 480px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .cs_gallery_slider_nav_2 {
    width: 350px;
  }
}
@media (max-width: 991px) {
  .cs_gallery_slider_nav_2 {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .cs_gallery_slider_nav_2 {
    margin-right: auto;
  }
}
.cs_gallery_slider_nav_2 .slick-slide {
  padding-left: 5px;
  padding-right: 5px;
}
.cs_gallery_slider_nav_2 .slick-slide.slick-current .cs_gallery_slider_thumb_mini_2::before {
  border-width: 2px;
  border-color: var(--accent);
}
.cs_gallery_slider_nav_2 .slick-list {
  margin-left: -5px;
  margin-right: -5px;
}

.cs_gallery_slider_thumb_mini_2 {
  height: 120px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1199px) {
  .cs_gallery_slider_thumb_mini_2 {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cs_gallery_slider_thumb_mini_2 {
    height: 60px;
  }
}
.cs_gallery_slider_thumb_mini_2::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  transition: all 0.4s ease;
}

.cs_gallery_slider_nav_2_in {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cs_gallery_slider_nav_2_in {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 25px;
  }
}

.cs_gallery_slider_thumb_2 {
  position: relative;
}
.cs_gallery_slider_thumb_2:after {
  background: linear-gradient(0, rgba(0, 0, 0, 0.6), transparent);
  bottom: -2px;
  content: "";
  height: 30%;
  position: absolute;
  width: 100%;
}
@media (max-width: 767px) {
  .cs_gallery_slider_thumb_2:after {
    height: 50%;
  }
}

.cs_left_arrow_gallery_2,
.cs_right_arrow_gallery_2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 5;
  color: var(--accent);
}
.cs_left_arrow_gallery_2:hover,
.cs_right_arrow_gallery_2:hover {
  color: #fff;
}

.cs_left_arrow_gallery_2 {
  left: 5%;
}

.cs_right_arrow_gallery_2 {
  right: 5%;
}

@media (max-width: 991px) {
  .cs_mobile_hide {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .cs_mobile_show {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .cs_mobile_hide_md {
    display: none !important;
  }
}
@media (min-width: 767px) {
  .cs_mobile_show_md {
    display: none !important;
  }
}
.main-preview .slick-track {
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
  13. Testimonial
----------------------------------------------------------------*/
.cs_testimonial_1_wrap .cs_testimonial_quote {
  position: absolute;
  left: 50%;
  top: 27%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .cs_testimonial_1_wrap .cs_testimonial_quote svg {
    max-width: 400px;
  }
}
@media (max-width: 400px) {
  .cs_testimonial_1_wrap .cs_testimonial_quote svg {
    max-width: 320px;
  }
}

.cs_testimonial.cs_style_1 .cs_testimonial_avatar img,
.cs_testimonial.cs_style_2 .cs_testimonial_avatar img {
  height: 110px;
  width: 110px;
  object-fit: cover;
  border-radius: 50%;
  display: inline;
  flex: none;
}

.cs_testimonial.cs_style_1 .cs_rating {
  transform: scale(1.43);
}

.cs_testimonial.cs_style_2 .cs_testimonial_avatar {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cs_testimonial.cs_style_3 {
  border: 1px solid var(--border);
  padding: 35px 35px 50px 35px;
  background-color: var(--web-wash);
}
@media (max-width: 991px) {
  .cs_testimonial.cs_style_3 {
    padding: 35px 25px 50px 25px;
  }
}
.cs_testimonial.cs_style_3 .cs_testimonial_avatar {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cs_testimonial.cs_style_3 .cs_testimonial_avatar img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.cs_testimonial.cs_style_3 .cs_quote_icon {
  position: absolute;
  bottom: 35px;
  right: 35px;
}

/*--------------------------------------------------------------
  6. 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: 100%;
  vertical-align: middle;
}

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

.cs_video_popup_container .embed-responsive {
  width: 100%;
}

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

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

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

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

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

.cs_video_popup_close:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  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: #fff;
  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;
}

.cs_video_block_title {
  pointer-events: none;
}

/*--------------------------------------------------------------
  10. Hero
----------------------------------------------------------------*/
.cs_down_btn_2 {
  position: absolute;
  height: 35px;
  width: 20px;
  border-radius: 10px;
  border: 2px solid #fff;
  bottom: 14%;
  left: 50%;
  margin-left: -10px;
}
.cs_down_btn_2::before {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  animation: UpAndDown 3s infinite;
}

@keyframes UpAndDown {
  0%, 100% {
    top: 30%;
  }
  50% {
    top: 70%;
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.8);
  }
}
.cs_hero.cs_style_1 {
  height: 100vh;
  padding: 100px 0 50px;
  max-height: 1100px;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_1 {
    padding: 100px 0;
    height: 100vh;
  }
}
@media (max-width: 575px) {
  .cs_hero.cs_style_1 {
    min-height: 500px;
  }
  .cs_hero.cs_style_1 .cs_hero_title br {
    display: none;
  }
}

.cs_hero.cs_style_1 .cs_hero_subtitle,
.cs_hero.cs_style_4 .cs_hero_subtitle {
  padding: 0 37px;
}
@media (max-width: 1400px) {
  .cs_hero.cs_style_1 .cs_hero_subtitle,
  .cs_hero.cs_style_4 .cs_hero_subtitle {
    padding: 0 25px;
  }
}
@media (max-width: 575px) {
  .cs_hero.cs_style_1 .cs_hero_subtitle,
  .cs_hero.cs_style_4 .cs_hero_subtitle {
    padding: 0;
  }
}
.cs_hero.cs_style_1 .cs_hero_subtitle img,
.cs_hero.cs_style_4 .cs_hero_subtitle img {
  top: 7px;
}
@media (max-width: 575px) {
  .cs_hero.cs_style_1 .cs_hero_subtitle img,
  .cs_hero.cs_style_4 .cs_hero_subtitle img {
    display: none;
  }
}

.cs_hero.cs_style_2 {
  height: 100vh;
  max-height: 1100px;
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_2 {
    max-height: initial;
    height: initial;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_2 {
    padding: 500px 0 0 0;
  }
}
@media (max-width: 575px) {
  .cs_hero.cs_style_2 {
    padding: 400px 0 0 0;
  }
}
.cs_hero.cs_style_2 .cs_hero_left_img,
.cs_hero.cs_style_2 .cs_hero_left_right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_2 .cs_hero_left_img,
  .cs_hero.cs_style_2 .cs_hero_left_right {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .cs_hero.cs_style_2 .cs_hero_left_img,
  .cs_hero.cs_style_2 .cs_hero_left_right {
    height: 400px;
  }
}
.cs_hero.cs_style_2 .cs_hero_left_img {
  left: 0;
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_2 .cs_hero_left_img {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_2 .cs_hero_left_img {
    width: 100%;
  }
}
.cs_hero.cs_style_2 .cs_hero_left_right {
  right: 0;
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_2 .cs_hero_left_right {
    width: 55%;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_2 .cs_hero_left_right {
    width: 100%;
    top: 400px;
  }
}
.cs_hero.cs_style_2 .cs_hero_text {
  padding: 50px 0 50px 88px;
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_2 .cs_hero_text {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_2 .cs_hero_text {
    padding: 60px 0;
  }
}
.cs_hero.cs_style_2 .cs_hero_in {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 90px 0 90px 0;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_2 .cs_hero_in {
    padding: 0px 0 0px 0;
  }
}
.cs_hero.cs_style_2 .cs_hero_content {
  flex: 1;
}

.cs_hero.cs_style_3 {
  height: 100vh;
  max-height: 1100px;
  padding-top: 70px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_3 {
    max-height: initial;
    height: initial;
    padding: 180px 0 100px;
  }
  .cs_hero.cs_style_3 .cs_form.cs_style_4.cs_type_1 .cs_date_item {
    width: 100%;
  }
  .cs_hero.cs_style_3 .cs_form.cs_style_4.cs_type_1 .cs_date_items::before {
    display: none;
  }
}
.cs_hero.cs_style_3 .cs_hero_subtitle {
  margin-bottom: 13%;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 991px) {
  .cs_hero.cs_style_3 .cs_hero_subtitle {
    margin-bottom: 50px;
  }
}
.cs_hero.cs_style_3 .container {
  position: relative;
  z-index: 5;
}
.cs_hero.cs_style_3 .cs_slider.cs_style_1 {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.cs_hero.cs_style_3 .cs_slider_container,
.cs_hero.cs_style_3 .cs_slider_container * {
  height: 100%;
}
.cs_hero.cs_style_3 .cs_hero_bg {
  transition: all 5s ease;
  transform: scale(1);
}
.cs_hero.cs_style_3 .slick-active .cs_hero_bg {
  transform: scale(1.2);
}
.cs_hero.cs_style_3 .cs_btn.cs_style_1:hover {
  background-color: #fff;
  color: var(--accent);
}

.cs_hero.cs_style_4 {
  height: 100vh;
  max-height: 1100px;
  display: flex;
  flex-direction: column;
  padding: 130px 0 0px;
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_4 {
    height: initial;
    padding: 130px 0 150px;
  }
  .cs_hero.cs_style_4 .cs_form_wrap {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_4 {
    padding: 130px 0 80px;
  }
}
.cs_hero.cs_style_4 .cs_hero_text_wrap {
  flex: 1;
}

.cs_hero.cs_style_5 {
  height: 100vh;
  max-height: 1100px;
  padding: 100px 0 50px;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_5 {
    text-align: center;
    height: initial;
    max-height: initial;
    padding: 190px 0 150px;
  }
}
.cs_hero.cs_style_5 .cs_down_btn {
  position: absolute;
  bottom: 11.5%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_5 .cs_down_btn {
    bottom: 40px;
  }
}
.cs_hero.cs_style_5 .cs_down_btn:hover {
  color: var(--accent);
}
.cs_hero.cs_style_5 .cs_play_btn_3 {
  margin-top: 70px;
}
@media (max-width: 991px) {
  .cs_hero.cs_style_5 .cs_play_btn_3 {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .cs_hero.cs_style_5 .cs_play_btn_3 {
    margin-top: 30px;
    transform: scale(0.9);
    margin-bottom: -10px;
  }
}

.cs_hero.cs_style_6 {
  height: 100vh;
  max-height: 1100px;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .cs_hero.cs_style_6 {
    height: initial;
    max-height: initial;
    padding: 200px 0 150px 0;
  }
  .cs_hero.cs_style_6 .cs_down_btn_2 {
    bottom: 40px;
  }
}

.cs_hero_7_wrap .cs_hero_7_form {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  background: rgba(170, 132, 83, 0.8);
  backdrop-filter: blur(10px);
}

.cs_hero.cs_style_7 {
  height: 100vh;
  max-height: 1100px;
  padding: 100px 0 120px 0;
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_7 {
    padding: 200px 0 460px 0;
    height: initial;
    max-height: initial;
  }
}
@media (max-width: 767px) {
  .cs_hero.cs_style_7 {
    padding: 175px 0 540px 0;
  }
}
.cs_hero.cs_style_7 .cs_hero_subtitle span {
  display: inline;
  padding: 0 20px;
}
@media (max-width: 450px) {
  .cs_hero.cs_style_7 .cs_hero_subtitle span {
    padding: 0 10px;
  }
}
.cs_hero.cs_style_7 .cs_hero_subtitle span::before, .cs_hero.cs_style_7 .cs_hero_subtitle span::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 100px;
  background-color: #fff;
}
@media (max-width: 450px) {
  .cs_hero.cs_style_7 .cs_hero_subtitle span::before, .cs_hero.cs_style_7 .cs_hero_subtitle span::after {
    width: 45px;
  }
}
.cs_hero.cs_style_7 .cs_hero_subtitle span::before {
  left: 100%;
}
.cs_hero.cs_style_7 .cs_hero_subtitle span::after {
  right: 100%;
}

.cs_slider .cs_hero.cs_style_7 .cs_hero_subtitle,
.cs_slider .cs_hero.cs_style_7 .cs_hero_title,
.cs_slider .cs_hero.cs_style_7 .cs_hero_btn {
  position: relative;
  top: 25px;
  opacity: 0;
  transition: all 0.5s ease;
}
.cs_slider .slick-slide.slick-current .cs_hero.cs_style_7 .cs_hero_subtitle {
  top: 0;
  opacity: 1;
  transition-delay: 0.6s;
}
.cs_slider .slick-slide.slick-current .cs_hero.cs_style_7 .cs_hero_title {
  top: 0;
  opacity: 1;
  transition-delay: 0.7s;
}
.cs_slider .slick-slide.slick-current .cs_hero.cs_style_7 .cs_hero_btn {
  top: 0;
  opacity: 1;
  transition-delay: 0.8s;
}

.cs_hero.cs_style_8 {
  height: calc(100vh - 140px);
  padding: 100px 0 120px 0;
  max-height: 1000px;
  min-height: 700px;
}
@media (max-width: 767px) {
  .cs_hero.cs_style_8 {
    height: initial;
    max-height: initial;
    min-height: initial;
    padding: 90px 0 100px 0;
  }
  .cs_hero.cs_style_8 .cs_hero_title br {
    display: none;
  }
}

.cs_hero.cs_style_9 {
  padding: 200px 0 0 0;
}
@media (max-width: 1400px) {
  .cs_hero.cs_style_9 {
    padding: 150px 0 0 0;
  }
}
.cs_hero.cs_style_9 .cs_video_block.cs_style_1.cs_type_2 {
  height: calc(100vh - 200px);
  max-height: 900px;
}
@media (max-width: 1400px) {
  .cs_hero.cs_style_9 .cs_video_block.cs_style_1.cs_type_2 {
    height: calc(100vh - 150px);
  }
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_9 .cs_video_block.cs_style_1.cs_type_2 {
    max-height: 750px;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_9 .cs_video_block.cs_style_1.cs_type_2 {
    height: 500px;
  }
  .cs_hero.cs_style_9 .cs_video_block.cs_style_1.cs_type_2 .cs_play_btn_2 {
    transform: scale(0.75);
  }
}
.cs_hero.cs_style_9 .cs_hero_btns {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}
.cs_hero.cs_style_9 .cs_google_review {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -2px;
}
.cs_hero.cs_style_9 .cs_rating {
  width: 103px;
  height: 16px;
  font-size: 16px;
}
.cs_hero.cs_style_9 .cs_google_review_right p {
  margin-top: -2px;
  line-height: 1.6em;
}

.cs_hero.cs_style_10 {
  padding: 182px 0 0;
}
.cs_hero.cs_style_10 .cs_hero_text {
  max-width: 1100px;
}
.cs_hero.cs_style_10 .cs_hero_subtitle {
  max-width: 750px;
}
.cs_hero.cs_style_10 .cs_hero_highlite {
  position: absolute;
  height: 200px;
  width: 200px;
  line-height: 1.2em;
  right: 92px;
  top: -100px;
  font-size: 100px;
  z-index: 10;
}
@media (max-width: 1199px) {
  .cs_hero.cs_style_10 .cs_hero_highlite {
    right: 30px;
  }
}
@media (max-width: 991px) {
  .cs_hero.cs_style_10 .cs_hero_highlite {
    transform: scale(0.65);
    right: 0px;
  }
}
.cs_hero.cs_style_10 .cs_hero_highlite .cs_round_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
}
.cs_hero.cs_style_10 .cs_hero_highlite .cs_round_img img {
  animation: rotate-anim 30s infinite;
}

@media (max-width: 991px) {
  .cs_slider_navigation {
    position: absolute;
    z-index: 8;
    bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.cs_slider_navigation .cs_swiper_button_prev,
.cs_slider_navigation .cs_swiper_button_next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
}
.cs_slider_navigation .cs_swiper_button_prev:hover,
.cs_slider_navigation .cs_swiper_button_next:hover {
  color: var(--accent);
}
@media (max-width: 991px) {
  .cs_slider_navigation .cs_swiper_button_prev,
  .cs_slider_navigation .cs_swiper_button_next {
    position: initial;
    -webkit-transform: initial;
    transform: initial;
  }
}
.cs_slider_navigation .cs_swiper_button_prev {
  left: 6.6%;
}
@media (max-width: 1199px) {
  .cs_slider_navigation .cs_swiper_button_prev {
    left: 3%;
  }
}
.cs_slider_navigation .cs_swiper_button_next {
  right: 6.6%;
}
@media (max-width: 1199px) {
  .cs_slider_navigation .cs_swiper_button_next {
    right: 3%;
  }
}

.swiper-slide {
  overflow: hidden;
}
.swiper-slide .cs_hero.cs_style_1 .cs_hero_text {
  position: relative;
  top: 10px;
  opacity: 0;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.swiper-slide.swiper-slide-active .cs_hero.cs_style_1 .cs_hero_text {
  top: 0;
  opacity: 1;
  -webkit-transition: all 0.9s ease 0.9s;
  transition: all 0.9s ease 0.9s;
}
