/*--------------------------------------------------------------
>> TABLE OF CONTENTS: CONSULTAS DE VEÍCULOS
----------------------------------------------------------------
1. Typography
2. Preloader
3. Spacing
4. General
5. Slider
6. Video Modal
7. Header
8. Footer
9. Isotope
10. Hero
11. Iconbox
12. CTA
13. Testimonial
14. Team
15. Card

16 - Index
17 - Sobre
18 - Consultas
19 - Conteúdos
20 - API
21 - Contato
--------------------------------------------------------------*/

/*--------------------------------------------------------------
 ** Google Fonts Integration
----------------------------------------------------------------*/
/** DM_Sans **/
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DM_Sans/DMSans-VariableFont_opsz,wght.woff2")
    format("woff2");
  font-style: normal;
  font-display: swap;
}

/** EncodeSansCondensed **/
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.woff2")
    format("woff2");
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
** All Variable
----------------------------------------------------------------*/
:root {
  --white-color: #f9fbf3;
  --heading-color: #1e2433;
  --body-color: rgb(55 72 54 / 50%);
  --gray-color: #e1ece3;
  --border-color: #d9d9d9;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --body-font: "DM Sans", sans-serif;
}

/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
body,
html {
  color: var(--body-color);
  background: transparent !important;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  overflow-x: clip;
}

body {
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

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

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

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

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

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

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

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

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

address {
  margin: 0 0 15px;
}

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

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

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

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

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

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

table td,
table th {
  border-top: 1px solid var(--border-color);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}

dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

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

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

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

label {
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.cs_preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-color);
  z-index: 99999;
}

.cs_preloader::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--heading-color);
  opacity: 0.08;
}

.cs_preloader .cs_preloader_shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.cs_preloader .cs_preloader_shape_2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

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

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

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

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

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

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.cs_preloader_text {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 16px;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
  3. 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;
}

@media screen and (min-width: 992px) {
  .cs_height_1 {
    height: 1px;
  }

  .cs_height_2 {
    height: 2px;
  }

  .cs_height_3 {
    height: 3px;
  }

  .cs_height_4 {
    height: 4px;
  }

  .cs_height_5 {
    height: 5px;
  }

  .cs_height_6 {
    height: 6px;
  }

  .cs_height_7 {
    height: 7px;
  }

  .cs_height_8 {
    height: 8px;
  }

  .cs_height_9 {
    height: 9px;
  }

  .cs_height_10 {
    height: 10px;
  }

  .cs_height_11 {
    height: 11px;
  }

  .cs_height_12 {
    height: 12px;
  }

  .cs_height_13 {
    height: 13px;
  }

  .cs_height_14 {
    height: 14px;
  }

  .cs_height_15 {
    height: 15px;
  }

  .cs_height_16 {
    height: 16px;
  }

  .cs_height_17 {
    height: 17px;
  }

  .cs_height_18 {
    height: 18px;
  }

  .cs_height_19 {
    height: 19px;
  }

  .cs_height_20 {
    height: 20px;
  }

  .cs_height_21 {
    height: 21px;
  }

  .cs_height_22 {
    height: 22px;
  }

  .cs_height_23 {
    height: 23px;
  }

  .cs_height_24 {
    height: 24px;
  }

  .cs_height_25 {
    height: 25px;
  }

  .cs_height_26 {
    height: 26px;
  }

  .cs_height_27 {
    height: 27px;
  }

  .cs_height_28 {
    height: 28px;
  }

  .cs_height_29 {
    height: 29px;
  }

  .cs_height_30 {
    height: 30px;
  }

  .cs_height_31 {
    height: 31px;
  }

  .cs_height_32 {
    height: 32px;
  }

  .cs_height_33 {
    height: 33px;
  }

  .cs_height_34 {
    height: 34px;
  }

  .cs_height_35 {
    height: 35px;
  }

  .cs_height_36 {
    height: 36px;
  }

  .cs_height_37 {
    height: 37px;
  }

  .cs_height_38 {
    height: 38px;
  }

  .cs_height_39 {
    height: 39px;
  }

  .cs_height_40 {
    height: 40px;
  }

  .cs_height_41 {
    height: 41px;
  }

  .cs_height_42 {
    height: 42px;
  }

  .cs_height_43 {
    height: 43px;
  }

  .cs_height_44 {
    height: 44px;
  }

  .cs_height_45 {
    height: 45px;
  }

  .cs_height_46 {
    height: 46px;
  }

  .cs_height_47 {
    height: 47px;
  }

  .cs_height_48 {
    height: 48px;
  }

  .cs_height_49 {
    height: 49px;
  }

  .cs_height_50 {
    height: 50px;
  }

  .cs_height_51 {
    height: 51px;
  }

  .cs_height_52 {
    height: 52px;
  }

  .cs_height_53 {
    height: 53px;
  }

  .cs_height_54 {
    height: 54px;
  }

  .cs_height_55 {
    height: 55px;
  }

  .cs_height_56 {
    height: 56px;
  }

  .cs_height_57 {
    height: 57px;
  }

  .cs_height_58 {
    height: 58px;
  }

  .cs_height_59 {
    height: 59px;
  }

  .cs_height_60 {
    height: 60px;
  }

  .cs_height_61 {
    height: 61px;
  }

  .cs_height_62 {
    height: 62px;
  }

  .cs_height_63 {
    height: 63px;
  }

  .cs_height_64 {
    height: 64px;
  }

  .cs_height_65 {
    height: 65px;
  }

  .cs_height_66 {
    height: 66px;
  }

  .cs_height_67 {
    height: 67px;
  }

  .cs_height_68 {
    height: 68px;
  }

  .cs_height_69 {
    height: 69px;
  }

  .cs_height_70 {
    height: 70px;
  }

  .cs_height_71 {
    height: 71px;
  }

  .cs_height_72 {
    height: 72px;
  }

  .cs_height_73 {
    height: 73px;
  }

  .cs_height_74 {
    height: 74px;
  }

  .cs_height_75 {
    height: 75px;
  }

  .cs_height_76 {
    height: 76px;
  }

  .cs_height_77 {
    height: 77px;
  }

  .cs_height_78 {
    height: 78px;
  }

  .cs_height_79 {
    height: 79px;
  }

  .cs_height_80 {
    height: 80px;
  }

  .cs_height_81 {
    height: 81px;
  }

  .cs_height_82 {
    height: 82px;
  }

  .cs_height_83 {
    height: 83px;
  }

  .cs_height_84 {
    height: 84px;
  }

  .cs_height_85 {
    height: 85px;
  }

  .cs_height_86 {
    height: 86px;
  }

  .cs_height_87 {
    height: 87px;
  }

  .cs_height_88 {
    height: 88px;
  }

  .cs_height_89 {
    height: 89px;
  }

  .cs_height_90 {
    height: 90px;
  }

  .cs_height_91 {
    height: 91px;
  }

  .cs_height_92 {
    height: 92px;
  }

  .cs_height_93 {
    height: 93px;
  }

  .cs_height_94 {
    height: 94px;
  }

  .cs_height_95 {
    height: 95px;
  }

  .cs_height_96 {
    height: 96px;
  }

  .cs_height_97 {
    height: 97px;
  }

  .cs_height_98 {
    height: 98px;
  }

  .cs_height_99 {
    height: 99px;
  }

  .cs_height_100 {
    height: 100px;
  }

  .cs_height_101 {
    height: 101px;
  }

  .cs_height_102 {
    height: 102px;
  }

  .cs_height_103 {
    height: 103px;
  }

  .cs_height_104 {
    height: 104px;
  }

  .cs_height_105 {
    height: 105px;
  }

  .cs_height_106 {
    height: 106px;
  }

  .cs_height_107 {
    height: 107px;
  }

  .cs_height_108 {
    height: 108px;
  }

  .cs_height_109 {
    height: 109px;
  }

  .cs_height_110 {
    height: 110px;
  }

  .cs_height_111 {
    height: 111px;
  }

  .cs_height_112 {
    height: 112px;
  }

  .cs_height_113 {
    height: 113px;
  }

  .cs_height_114 {
    height: 114px;
  }

  .cs_height_115 {
    height: 115px;
  }

  .cs_height_116 {
    height: 116px;
  }

  .cs_height_117 {
    height: 117px;
  }

  .cs_height_118 {
    height: 118px;
  }

  .cs_height_119 {
    height: 119px;
  }

  .cs_height_120 {
    height: 120px;
  }

  .cs_height_121 {
    height: 121px;
  }

  .cs_height_122 {
    height: 122px;
  }

  .cs_height_123 {
    height: 123px;
  }

  .cs_height_124 {
    height: 124px;
  }

  .cs_height_125 {
    height: 125px;
  }

  .cs_height_126 {
    height: 126px;
  }

  .cs_height_127 {
    height: 127px;
  }

  .cs_height_128 {
    height: 128px;
  }

  .cs_height_129 {
    height: 129px;
  }

  .cs_height_130 {
    height: 130px;
  }

  .cs_height_131 {
    height: 131px;
  }

  .cs_height_132 {
    height: 132px;
  }

  .cs_height_133 {
    height: 133px;
  }

  .cs_height_134 {
    height: 134px;
  }

  .cs_height_135 {
    height: 135px;
  }

  .cs_height_136 {
    height: 136px;
  }

  .cs_height_137 {
    height: 137px;
  }

  .cs_height_138 {
    height: 138px;
  }

  .cs_height_139 {
    height: 139px;
  }

  .cs_height_140 {
    height: 140px;
  }

  .cs_height_141 {
    height: 141px;
  }

  .cs_height_142 {
    height: 142px;
  }

  .cs_height_143 {
    height: 143px;
  }

  .cs_height_144 {
    height: 144px;
  }

  .cs_height_145 {
    height: 145px;
  }

  .cs_height_146 {
    height: 146px;
  }

  .cs_height_147 {
    height: 147px;
  }

  .cs_height_148 {
    height: 148px;
  }

  .cs_height_149 {
    height: 149px;
  }

  .cs_height_150 {
    height: 150px;
  }
}

@media screen and (max-width: 991px) {
  .cs_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;
  }

  .cs_mb_lg_51 {
    margin-bottom: 51px;
  }

  .cs_mb_lg_52 {
    margin-bottom: 52px;
  }

  .cs_mb_lg_53 {
    margin-bottom: 53px;
  }

  .cs_mb_lg_54 {
    margin-bottom: 54px;
  }

  .cs_mb_lg_55 {
    margin-bottom: 55px;
  }

  .cs_mb_lg_56 {
    margin-bottom: 56px;
  }

  .cs_mb_lg_57 {
    margin-bottom: 57px;
  }

  .cs_mb_lg_58 {
    margin-bottom: 58px;
  }

  .cs_mb_lg_59 {
    margin-bottom: 59px;
  }

  .cs_mb_lg_60 {
    margin-bottom: 60px;
  }

  .cs_height_lg_1 {
    height: 1px;
  }

  .cs_height_lg_2 {
    height: 2px;
  }

  .cs_height_lg_3 {
    height: 3px;
  }

  .cs_height_lg_4 {
    height: 4px;
  }

  .cs_height_lg_5 {
    height: 5px;
  }

  .cs_height_lg_6 {
    height: 6px;
  }

  .cs_height_lg_7 {
    height: 7px;
  }

  .cs_height_lg_8 {
    height: 8px;
  }

  .cs_height_lg_9 {
    height: 9px;
  }

  .cs_height_lg_10 {
    height: 10px;
  }

  .cs_height_lg_11 {
    height: 11px;
  }

  .cs_height_lg_12 {
    height: 12px;
  }

  .cs_height_lg_13 {
    height: 13px;
  }

  .cs_height_lg_14 {
    height: 14px;
  }

  .cs_height_lg_15 {
    height: 15px;
  }

  .cs_height_lg_16 {
    height: 16px;
  }

  .cs_height_lg_17 {
    height: 17px;
  }

  .cs_height_lg_18 {
    height: 18px;
  }

  .cs_height_lg_19 {
    height: 19px;
  }

  .cs_height_lg_20 {
    height: 20px;
  }

  .cs_height_lg_21 {
    height: 21px;
  }

  .cs_height_lg_22 {
    height: 22px;
  }

  .cs_height_lg_23 {
    height: 23px;
  }

  .cs_height_lg_24 {
    height: 24px;
  }

  .cs_height_lg_25 {
    height: 25px;
  }

  .cs_height_lg_26 {
    height: 26px;
  }

  .cs_height_lg_27 {
    height: 27px;
  }

  .cs_height_lg_28 {
    height: 28px;
  }

  .cs_height_lg_29 {
    height: 29px;
  }

  .cs_height_lg_30 {
    height: 30px;
  }

  .cs_height_lg_31 {
    height: 31px;
  }

  .cs_height_lg_32 {
    height: 32px;
  }

  .cs_height_lg_33 {
    height: 33px;
  }

  .cs_height_lg_34 {
    height: 34px;
  }

  .cs_height_lg_35 {
    height: 35px;
  }

  .cs_height_lg_36 {
    height: 36px;
  }

  .cs_height_lg_37 {
    height: 37px;
  }

  .cs_height_lg_38 {
    height: 38px;
  }

  .cs_height_lg_39 {
    height: 39px;
  }

  .cs_height_lg_40 {
    height: 40px;
  }

  .cs_height_lg_41 {
    height: 41px;
  }

  .cs_height_lg_42 {
    height: 42px;
  }

  .cs_height_lg_43 {
    height: 43px;
  }

  .cs_height_lg_44 {
    height: 44px;
  }

  .cs_height_lg_45 {
    height: 45px;
  }

  .cs_height_lg_46 {
    height: 46px;
  }

  .cs_height_lg_47 {
    height: 47px;
  }

  .cs_height_lg_48 {
    height: 48px;
  }

  .cs_height_lg_49 {
    height: 49px;
  }

  .cs_height_lg_50 {
    height: 50px;
  }

  .cs_height_lg_51 {
    height: 51px;
  }

  .cs_height_lg_52 {
    height: 52px;
  }

  .cs_height_lg_53 {
    height: 53px;
  }

  .cs_height_lg_54 {
    height: 54px;
  }

  .cs_height_lg_55 {
    height: 55px;
  }

  .cs_height_lg_56 {
    height: 56px;
  }

  .cs_height_lg_57 {
    height: 57px;
  }

  .cs_height_lg_58 {
    height: 58px;
  }

  .cs_height_lg_59 {
    height: 59px;
  }

  .cs_height_lg_60 {
    height: 60px;
  }

  .cs_height_lg_61 {
    height: 61px;
  }

  .cs_height_lg_62 {
    height: 62px;
  }

  .cs_height_lg_63 {
    height: 63px;
  }

  .cs_height_lg_64 {
    height: 64px;
  }

  .cs_height_lg_65 {
    height: 65px;
  }

  .cs_height_lg_66 {
    height: 66px;
  }

  .cs_height_lg_67 {
    height: 67px;
  }

  .cs_height_lg_68 {
    height: 68px;
  }

  .cs_height_lg_69 {
    height: 69px;
  }

  .cs_height_lg_70 {
    height: 70px;
  }

  .cs_height_lg_71 {
    height: 71px;
  }

  .cs_height_lg_72 {
    height: 72px;
  }

  .cs_height_lg_73 {
    height: 73px;
  }

  .cs_height_lg_74 {
    height: 74px;
  }

  .cs_height_lg_75 {
    height: 75px;
  }

  .cs_height_lg_76 {
    height: 76px;
  }

  .cs_height_lg_77 {
    height: 77px;
  }

  .cs_height_lg_78 {
    height: 78px;
  }

  .cs_height_lg_79 {
    height: 79px;
  }

  .cs_height_lg_80 {
    height: 80px;
  }

  .cs_height_lg_81 {
    height: 81px;
  }

  .cs_height_lg_82 {
    height: 82px;
  }

  .cs_height_lg_83 {
    height: 83px;
  }

  .cs_height_lg_84 {
    height: 84px;
  }

  .cs_height_lg_85 {
    height: 85px;
  }

  .cs_height_lg_86 {
    height: 86px;
  }

  .cs_height_lg_87 {
    height: 87px;
  }

  .cs_height_lg_88 {
    height: 88px;
  }

  .cs_height_lg_89 {
    height: 89px;
  }

  .cs_height_lg_90 {
    height: 90px;
  }

  .cs_height_lg_91 {
    height: 91px;
  }

  .cs_height_lg_92 {
    height: 92px;
  }

  .cs_height_lg_93 {
    height: 93px;
  }

  .cs_height_lg_94 {
    height: 94px;
  }

  .cs_height_lg_95 {
    height: 95px;
  }

  .cs_height_lg_96 {
    height: 96px;
  }

  .cs_height_lg_97 {
    height: 97px;
  }

  .cs_height_lg_98 {
    height: 98px;
  }

  .cs_height_lg_99 {
    height: 99px;
  }

  .cs_height_lg_100 {
    height: 100px;
  }

  .cs_height_lg_101 {
    height: 101px;
  }

  .cs_height_lg_102 {
    height: 102px;
  }

  .cs_height_lg_103 {
    height: 103px;
  }

  .cs_height_lg_104 {
    height: 104px;
  }

  .cs_height_lg_105 {
    height: 105px;
  }

  .cs_height_lg_106 {
    height: 106px;
  }

  .cs_height_lg_107 {
    height: 107px;
  }

  .cs_height_lg_108 {
    height: 108px;
  }

  .cs_height_lg_109 {
    height: 109px;
  }

  .cs_height_lg_110 {
    height: 110px;
  }

  .cs_height_lg_111 {
    height: 111px;
  }

  .cs_height_lg_112 {
    height: 112px;
  }

  .cs_height_lg_113 {
    height: 113px;
  }

  .cs_height_lg_114 {
    height: 114px;
  }

  .cs_height_lg_115 {
    height: 115px;
  }

  .cs_height_lg_116 {
    height: 116px;
  }

  .cs_height_lg_117 {
    height: 117px;
  }

  .cs_height_lg_118 {
    height: 118px;
  }

  .cs_height_lg_119 {
    height: 119px;
  }

  .cs_height_lg_120 {
    height: 120px;
  }

  .cs_height_lg_121 {
    height: 121px;
  }

  .cs_height_lg_122 {
    height: 122px;
  }

  .cs_height_lg_123 {
    height: 123px;
  }

  .cs_height_lg_124 {
    height: 124px;
  }

  .cs_height_lg_125 {
    height: 125px;
  }

  .cs_height_lg_126 {
    height: 126px;
  }

  .cs_height_lg_127 {
    height: 127px;
  }

  .cs_height_lg_128 {
    height: 128px;
  }

  .cs_height_lg_129 {
    height: 129px;
  }

  .cs_height_lg_130 {
    height: 130px;
  }

  .cs_height_lg_131 {
    height: 131px;
  }

  .cs_height_lg_132 {
    height: 132px;
  }

  .cs_height_lg_133 {
    height: 133px;
  }

  .cs_height_lg_134 {
    height: 134px;
  }

  .cs_height_lg_135 {
    height: 135px;
  }

  .cs_height_lg_136 {
    height: 136px;
  }

  .cs_height_lg_137 {
    height: 137px;
  }

  .cs_height_lg_138 {
    height: 138px;
  }

  .cs_height_lg_139 {
    height: 139px;
  }

  .cs_height_lg_140 {
    height: 140px;
  }

  .cs_height_lg_141 {
    height: 141px;
  }

  .cs_height_lg_142 {
    height: 142px;
  }

  .cs_height_lg_143 {
    height: 143px;
  }

  .cs_height_lg_144 {
    height: 144px;
  }

  .cs_height_lg_145 {
    height: 145px;
  }

  .cs_height_lg_146 {
    height: 146px;
  }

  .cs_height_lg_147 {
    height: 147px;
  }

  .cs_height_lg_148 {
    height: 148px;
  }

  .cs_height_lg_149 {
    height: 149px;
  }

  .cs_height_lg_150 {
    height: 150px;
  }
}

/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/
.cs_fs_16 {
  font-size: 16px;
  line-height: 1.5em;
}

.cs_fs_20 {
  font-size: 20px;
  line-height: 1.5em;
  text-align: center;
}

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

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

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

.cs_fs_32 {
  font-size: 32px;
  line-height: 1.25em;
}

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

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

.cs_fs_80 {
  font-size: 80px;
  line-height: 1.1em;
}

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

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

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

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

.cs_fs_100 {
  font-size: 60px;
  line-height: 1.08em;
  text-align: center;
}

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

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

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

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

.cs_radius_5 {
  border-radius: 5px;
}

.cs_radius_7 {
  border-radius: 7px;
}

.cs_radius_10 {
  border-radius: 10px;
}

.cs_radius_15 {
  border-radius: 15px;
}

.cs_radius_20 {
  border-radius: 20px;
}

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

.cs_pl_40 {
  padding-left: 40px;
}

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

.cs_opacity_1 {
  opacity: 0.1;
}

.cs_opacity_2 {
  opacity: 0.2;
}

.cs_opacity_3 {
  opacity: 0.3;
}

.cs_opacity_4 {
  opacity: 0.4;
}

.cs_opacity_5 {
  opacity: 0.5;
}

.cs_opacity_6 {
  opacity: 0.6;
}

.cs_opacity_7 {
  opacity: 0.7;
}

.cs_opacity_7_5 {
  opacity: 0.75;
}

.cs_opacity_8 {
  opacity: 0.8;
}

.cs_opacity_9 {
  opacity: 0.9;
}

.cs_gap_y_20 {
  gap: 20px 0;
}

.cs_gap_y_24 {
  gap: 24px 0;
}

.cs_gap_y_30 {
  gap: 30px 0;
}

.cs_gap_y_35 {
  gap: 35px 0;
}

.cs_gap_y_40 {
  gap: 40px 0;
}

.cs_gap_y_45 {
  gap: 45px 0;
}

.cs_gap_y_50 {
  gap: 50px 0;
}

.cs_gap_y_60 {
  gap: 60px 0;
}

.cs_gap_y_64 {
  gap: 64px 0;
}

@media (max-width: 1199px) {
  .cs_gap_y_64 {
    gap: 50px 0;
  }
}

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

.cs_gap_y_65 {
  gap: 65px 0;
}

.cs_gap_y_80 {
  gap: 80px 0;
}

.cs_gap_y_100 {
  gap: 100px 0;
}

.cs_gap_x_40 {
  margin-left: -20px;
  margin-right: -20px;
}

.cs_gap_x_40 > * {
  padding-left: 20px;
  padding-right: 20px;
}

.cs_gap_x_20 {
  margin-left: -10px;
  margin-right: -10px;
}

.cs_gap_x_20 > * {
  padding-left: 10px;
  padding-right: 10px;
}

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

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

.cs_bg_fixed {
  background-attachment: fixed;
}

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

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

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

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

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

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

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

.cs_heading_bg {
  background-image: url(../img/webp/bg-head.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px 0 0px;
}

.cs_heading_bg.cs_white_color .cs_section_heading.cs_style_1 .cs_section_title {
  color: var(--white-color);
}

.cs_heading_bg.cs_white_color .cs_heading_color,
.cs_heading_bg.cs_white_color h2,
.cs_heading_bg.cs_white_color h3 {
  color: var(--heading-color);
}

.cs_heading_bg.cs_white_color .cs_btn.cs_style_1 {
  color: var(--heading-color);
  background-color: var(--white-color);
}

.cs_heading_bg.cs_white_color .cs_btn.cs_style_1:hover {
  color: var(--heading-color);
}

.cs_heading_bg.cs_white_color .cs_values_card.cs_style_1 .cs_values li {
  border-color: var(--white-color);
}

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

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

.cs_gradient_color_1 {
  background: -webkit-linear-gradient(45deg, #e1ece3, var(--white-color) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_gradient_color_title b {
  background: linear-gradient(90deg, #4ac8d3 0%, #2691a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_accordians.cs_style_1 {
  margin-left: 60px;
}

@media (max-width: 1400px) {
  .cs_accordians.cs_style_1 {
    margin-left: 20px;
  }
}

@media (max-width: 1199px) {
  .cs_accordians.cs_style_1 {
    margin-left: 0px;
  }
}

.cs_accordians.cs_style_1 .cs_accordian_title {
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_accordians.cs_style_1 .cs_accordian_body {
  padding: 0 0px 16px 0px;
  margin-top: -8px;
}

.cs_accordians.cs_style_1 .cs_accordian_body p {
  margin: 0;
}

.cs_accordians.cs_style_1 .cs_accordian_head {
  padding: 24px 30px 24px 0px;
  position: relative;
  cursor: pointer;
}

@media (max-width: 991px) {
  .cs_accordians.cs_style_1 .cs_accordian_head {
    padding: 15px 25px 15px 0px;
  }

  .cs_accordians.cs_style_1 .cs_accordian_head svg {
    width: 15px;
  }
}

.cs_accordians.cs_style_1 .cs_accordian_head:hover .cs_accordian_title {
  color: var(--heading-color);
}

.cs_accordians.cs_style_1 .cs_accordian {
  border-bottom: 1px solid #1e243359;
}

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

.cs_accordians.cs_style_1 .cs_accordian.active .cs_accordian_toggle {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cs_accordians.cs_style_1 .cs_accordian:first-child .cs_accordian_head {
  padding-top: 0;
}

.cs_accordians.cs_style_1 .cs_accordian:first-child .cs_accordian_toggle {
  top: 8px;
}

.cs_accordians.cs_style_1 .cs_accordian_toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 33px;
  right: 0;
}

.cs_accordian_border {
  border: 1px solid var(--border-color);
}

.cs_btn.cs_style_1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 40px;
  outline: none;
  border: none;
}

.cs_btn.cs_style_1:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  border-radius: 10px;
}

.cs_btn.cs_style_1.cs_heading_bg:hover {
  color: var(--white-color);
}

.cs_btn.cs_style_1.cs_type_1 {
  border-radius: 10px;
  padding: 13px 40px;
  background: #1e2433;
}

.cs_btn.cs_style_1.cs_type_1:hover {
  background-color: #3f4c6e;
  border: 1px solid rgb(126, 198, 226);
}

.cs_btn.cs_style_2 {
  position: relative;
}

.cs_btn.cs_style_2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: currentColor;
  -webkit-transition: all 0.6s cubic-bezier(0.7, -0.56, 0.27, 1.6);
  transition: all 0.6s cubic-bezier(0.7, -0.56, 0.27, 1.6);
}

.cs_btn.cs_style_2:hover::after {
  width: 50%;
}

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

.breadcrumb {
  display: flex;
  justify-content: space-between;
}

.breadcrumb h1 {
  font-size: 48px;
}

@media (max-width: 575px) {
  .breadcrumb h1 {
    font-size: 28px;
  }
}

.breadcrumb_desc {
  display: flex;
  align-items: flex-end;
}

.breadcrumb-item a {
  color: #fff;
}

.breadcrumb-item a:hover {
  opacity: 1;
  color: #22acb8;
}

.breadcrumb-item.active {
  opacity: 0.75;
  color: #22acb8;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  height: 17px;
  width: 1px;
  background-color: var(--white-color);
  padding: 0;
  position: relative;
  top: 5px;
  margin-right: 14px;
}

.cs_page_heading.cs_style_1 {
  min-height: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 140px 0 40px;
}

@media (max-width: 575px) {
  .cs_page_heading.cs_style_1 {
    min-height: 350px;
  }
}

.cs_page_heading.cs_style_1 .cs_page_title {
  background: -webkit-linear-gradient(45deg, #e1ece3, var(--white-color) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_page_heading.cs_style_1 .breadcrumb {
  margin-bottom: 16px;
}

.cs_page_heading.cs_style_2 .breadcrumb-item a,
.cs_page_heading.cs_style_2 .breadcrumb-item.active {
  color: var(--heading-color);
}

.cs_page_heading.cs_style_2 .breadcrumb-item + .breadcrumb-item::before {
  background-color: var(--heading-color);
}

.cs_page_heading.cs_style_2 .breadcrumb {
  margin-bottom: 16px;
}

.cs_page_heading.cs_style_2 .cs_page_title span {
  background: linear-gradient(
    268deg,
    rgba(55, 72, 54, 0.8) 0.37%,
    #a0a6a1 49.66%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_half_bg {
  position: relative;
  padding: 100px 0px 100px 0px;
}

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

.cs_half_bg.cs_color_1::before {
  background-color: #e1ece3;
}

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

.slick-arrow {
  cursor: pointer;
}

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

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

.cs_remove_overflow .slick-list {
  overflow: visible;
}

.cs_remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.cs_remove_overflow .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

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

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

.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_left,
.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_right {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
  height: 60px;
  width: 60px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  background-color: var(--heading-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--white-color);
}

@media (max-width: 991px) {
  .cs_slider_arrows.cs_style_1 .cs_left_arrow,
  .cs_slider_arrows.cs_style_1 .cs_right_arrow {
    width: 50px;
    height: 50px;
  }
}

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

.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_left {
  left: 0;
}

.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_right {
  right: 0;
}

.cs_slider_arrows.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cs_slider_arrows.cs_style_2 .slick-arrow {
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.cs_slider_arrows.cs_style_2 .slick-arrow:hover {
  opacity: 0.75;
}

.cs_slider_arrows.cs_style_2.cs_type_1 {
  max-width: 45px;
  margin-left: auto;
  margin-right: 0;
}

.cs_slider_arrows.cs_style_3 .cs_right_arrow {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.75);
  height: 480px;
  width: calc(100% - 1087px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1400px) {
  .cs_slider_arrows.cs_style_3 .cs_right_arrow {
    width: calc(100% - 900px);
    padding-right: 48px;
  }
}

@media (max-width: 1199px) {
  .cs_slider_arrows.cs_style_3 .cs_right_arrow {
    width: calc(100% - 874px);
    height: 400px;
    padding-right: 0;
  }
}

.cs_slider_arrows.cs_style_3 .cs_right_arrow span {
  color: var(--heading-color);
  width: 126px;
  height: 126px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .cs_slider_arrows.cs_style_3 .cs_right_arrow span {
    width: 90px;
    height: 90px;
  }
}

.cs_slider_arrows.cs_style_3 .cs_right_arrow:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

.cs_slider_arrows.cs_style_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .cs_slider_arrows.cs_style_4 {
    width: 120px;
  }
}

.cs_slider_arrows.cs_style_4 .slick-arrow {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_slider_arrows.cs_style_4 .slick-arrow svg {
  width: 9px;
  height: 17px;
}

.cs_slider_arrows.cs_style_4 .slick-arrow:hover {
  opacity: 0.75;
}

.cs_slider_arrows_4_transparent_wrap {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 13px 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 0 0 20px 20px;
}

.cs_slider_arrows_4_transparent_wrap .cs_slider_number.cs_style_2 {
  color: #fff;
}

.cs_pagination_1_wrap {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: 100%;
}

.cs_pagination_1_in {
  max-width: 350px;
  width: 100%;
}

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

.cs_pagination.cs_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
}

.cs_pagination.cs_style_1 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 4px;
}

.cs_pagination.cs_style_1 li button {
  height: 100%;
  width: 100%;
  font-size: 0;
  color: transparent;
  padding: 0;
  background-color: rgba(249, 251, 243, 0.5);
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_1 li button:hover {
  background-color: rgba(249, 251, 243, 0.75);
}

.cs_pagination.cs_style_1 li.slick-active button {
  background-color: var(--white-color);
}

.cs_pagination.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

.cs_pagination.cs_style_2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.cs_pagination.cs_style_2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 6px;
  width: 30px;
  margin: 3px;
  border-radius: 10px;
  overflow: hidden;
}

.cs_pagination.cs_style_2 li button {
  height: 100%;
  width: 100%;
  font-size: 0;
  color: transparent;
  padding: 0;
  background-color: var(--heading-color);
  border: none;
  outline: none;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_2 li button:hover {
  opacity: 1;
}

.cs_pagination.cs_style_2 li.slick-active button {
  opacity: 1;
}

.cs_slider_number.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

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

.cs_slider_number.cs_style_1 > span[data-number]:before {
  content: "0" attr(data-number);
}

.cs_slider_number.cs_style_1 > span:before {
  content: attr(data-number);
  display: none;
}

.cs_slider_number.cs_style_1 > span > span {
  display: block;
}

.cs_slider_number.cs_style_1 [data-number="1"]::before,
.cs_slider_number.cs_style_1 [data-number="2"]::before,
.cs_slider_number.cs_style_1 [data-number="3"]::before,
.cs_slider_number.cs_style_1 [data-number="4"]::before,
.cs_slider_number.cs_style_1 [data-number="5"]::before,
.cs_slider_number.cs_style_1 [data-number="6"]::before,
.cs_slider_number.cs_style_1 [data-number="7"]::before,
.cs_slider_number.cs_style_1 [data-number="8"]::before,
.cs_slider_number.cs_style_1 [data-number="9"]::before {
  display: block;
}

.cs_slider_number.cs_style_1 [data-number="1"] > span,
.cs_slider_number.cs_style_1 [data-number="2"] > span,
.cs_slider_number.cs_style_1 [data-number="3"] > span,
.cs_slider_number.cs_style_1 [data-number="4"] > span,
.cs_slider_number.cs_style_1 [data-number="5"] > span,
.cs_slider_number.cs_style_1 [data-number="6"] > span,
.cs_slider_number.cs_style_1 [data-number="7"] > span,
.cs_slider_number.cs_style_1 [data-number="8"] > span,
.cs_slider_number.cs_style_1 [data-number="9"] > span {
  display: none;
}

.cs_slider_number.cs_style_2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 5px;
  color: var(--heading-color);
}

.cs_slider_number.cs_style_2 .cs_slider_number_seperator::before {
  content: "/";
}

.cs_full_width_slider_section {
  width: calc(100% + (100vw - 1296px) / 2);
}

@media (max-width: 1400px) {
  .cs_full_width_slider_section {
    width: calc(100% + (100vw - 1116px) / 2);
  }
}

@media (max-width: 1199px) {
  .cs_full_width_slider_section {
    width: calc(100% + (100vw - 936px) / 2);
  }
}

@media (max-width: 991px) {
  .cs_full_width_slider_section {
    width: 100%;
    padding-right: 12px;
  }
}

.slick-slide .cs_card.cs_style_4 .cs_card_info {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.slick-slide.slick-active .cs_card.cs_style_4 .cs_card_info {
  opacity: 1;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

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

.cs_show_lg {
  display: none !important;
}

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

@media (max-width: 991px) {
  .cs_show_lg {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cs_video_popup-align {
  overflow: hidden;
}

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

.cs_header_icon_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--white-color);
}

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

.cs_button_login {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #38486c;
  background: rgba(68, 89, 133, 0.24);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;

  &:hover {
    color: #4fcdd6;
    background: rgba(68, 89, 133, 0.34);
  }
}

@media (max-width: 425px) {
  .cs_button_login {
    padding: 6px 14px;
    gap: 5px;
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .cs_button_login {
    padding: 4px 12px;
    gap: 2px;
    font-size: 12px;
  }
}

.cs_button_login img {
  max-width: 20px;
}

.cs_header_form_wrap {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 15px;
  padding-right: 15px;
}

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

.cs_header_form_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--heading-color);
  opacity: 0.85;
  cursor: zoom-out;
}

.cs_header_form {
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 100%;
}

.cs_header_form .cs_header_form_input {
  display: block;
  width: 100%;
  height: 56px;
  background-color: var(--gray-color);
  border: none;
  border-radius: 10px;
  padding: 5px 20px 5px 50px;
  outline: none;
}

.cs_header_form .cs_header_form_btn {
  position: absolute;
  left: 0;
  top: 0;
  height: 56px;
  background-color: transparent;
  border: none;
  outline: none;
  width: 50px;
  color: var(--heading-color);
}

.cs_header_form .cs_header_form_btn:hover {
  opacity: 0.75;
}

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

.cs_site_header.cs_style_1 .cs_main_header_in {
  height: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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

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

.cs_site_header.cs_style_1.cs_sticky_active {
  background: linear-gradient(
      186deg,
      #1e2433 35.6%,
      rgba(34, 172, 184, 0.4) 99.23%
    ),
    #1e2433;
  box-shadow: 0 10px 10px -10px rgba(255, 255, 255, 0.06);
}

.cs_site_header.cs_style_1.cs_sticky_active .cs_main_header_in {
  height: 80px;
}

.cs_site_header.cs_style_1.cs_color_1.cs_sticky_active {
  background-color: var(--white-color);
  -webkit-box-shadow: 0 10px 10px -10px rgba(55, 72, 54, 0.06);
  box-shadow: 0 10px 10px -10px rgba(55, 72, 54, 0.06);
}

@media screen and (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_top_header_in {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cs_main_header .container {
    max-width: 100%;
  }

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

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

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

.cs_sticky_header .cs_top_header_in {
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_main_header_left {
  display: flex;
  align-items: center;
}

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

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

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

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

.logo {
  max-width: 180px;
}

@media (max-width: 991px) {
  .logo {
    max-width: 160px;
  }
}

@media (max-width: 425px) {
  .logo {
    max-width: 135px;
  }
}

.cs_main_header {
  position: relative;
}

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

@media screen and (min-width: 1200px) {
  .cs_main_header_center,
  .cs_top_header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-44%, -50%);
  }

  .cs_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    line-height: 1.6em;
  }

  .cs_nav .cs_nav_list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: inherit;
  }

  .cs_nav .cs_nav_list > li {
    margin-right: 48px;
    height: inherit;
  }

  .cs_nav .cs_nav_list > li:last-child {
    margin-right: 0;
  }

  .cs_nav .cs_nav_list > li > a {
    padding: 10px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    height: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white-color);
  }

  .cs_nav .cs_nav_list > li > a:hover {
    opacity: 0.65;
  }

  .cs_nav .cs_nav_list > li > ul {
    left: 0;
    top: calc(100% + 15px);
    pointer-events: none;
  }

  .cs_nav .cs_nav_list > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .cs_nav .cs_nav_list > li.menu-item-has-children > a {
    position: relative;
  }

  .cs_nav .cs_nav_list li:not(.cs_mega_menu) {
    position: relative;
  }

  .cs_nav .cs_nav_list ul {
    width: 260px;
    background-color: var(--white-color);
    position: absolute;
    border-top: 2px solid var(--heading-color);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 0 0 5px 5px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list ul li:hover ul {
    top: 0px;
  }

  .cs_nav .cs_nav_list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
  }

  .cs_nav .cs_nav_list ul a:hover {
    background-color: #f2f2f2;
  }

  .cs_nav .cs_nav_list ul ul {
    top: 15px;
    left: 100%;
  }

  .cs_menu_toggle,
  .cs_munu_dropdown_toggle {
    display: none;
  }

  .cs_nav .cs_nav_list .cs_mega_menu {
    position: relative;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1296px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    top: 100px !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 15px 10px;
    border-top: 2px solid var(--heading-color);
    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 > li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px 0;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper > li ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper > li ul a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list .cs_mega_menu:hover .cs_mega_wrapper li ul {
    opacity: 1;
    visibility: visible;
  }

  .cs_site_header.cs_style_1.cs_size_md .cs_nav .cs_nav_list .cs_mega_wrapper {
    top: 85px !important;
  }

  .cs_nav
    .cs_nav_list
    > li
    ul:not(.cs_mega_wrapper)
    .menu-item-has-children
    > a {
    position: relative;
  }

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

@media screen and (max-width: 1600px) {
  .cs_main_header .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (max-width: 1400px) {
  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1116px !important;
  }
}

@media screen and (max-width: 1199px) {
  .cs_main_header .container-fluid {
    padding-right: 8px;
    padding-left: 8px;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 100% !important;
  }

  .cs_munu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }

  .cs_munu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }

  .cs_munu_dropdown_toggle span:before,
  .cs_munu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .cs_munu_dropdown_toggle span:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .cs_munu_dropdown_toggle.active span:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .menu-item-has-children .menu-item-has-children .cs_munu_dropdown_toggle {
    padding: 20px 18px;
  }

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

  .cs_nav .cs_nav_list_wrap {
    position: fixed;
    width: 100vw;
    left: -100vw;
    background: linear-gradient(
        186deg,
        #1e2433 35.6%,
        rgba(34, 172, 184, 0.4) 99.23%
      ),
      #1e2433;
    color: var(--white-color);
    top: 0;
    height: 100vh;
    line-height: 1.6em;
    padding-top: 80px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list_wrap.cs_active {
    left: 0vw;
  }

  .cs_nav .cs_nav_list {
    padding: 10px 0;
    height: 100%;
    overflow: auto;
  }

  .cs_nav .cs_nav_list ul {
    padding-left: 15px;
    display: none;
  }

  .cs_nav .cs_nav_list a {
    display: block;
    padding: 12px 15px;
    line-height: 16px;
  }

  .cs_nav .cs_nav_list a:hover {
    color: rgba(255, 255, 255, 0.7);
  }

  .cs_nav .cs_nav_list > li > a {
    font-size: 18px;
    line-height: 22px;
  }

  .cs_nav .menu-item-has-children {
    position: relative;
  }

  /*Mobile Menu Button*/
  .cs_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
    color: var(--white-color);
  }

  .cs_menu_toggle span,
  .cs_menu_toggle span:before,
  .cs_menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }

  .cs_menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .cs_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  .cs_menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  .cs_site_header.cs_style_1 .cs_menu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }

  .cs_toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .cs_toggle_active span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .cs_toggle_active span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .cs_nav .cs_nav_list a {
    position: relative;
  }

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

  .cs_site_header .current-menu-item > a:before {
    display: none;
  }

  .cs_site_header.cs_style_1 .cs_main_header_center .cs_site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .cs_site_header.cs_style_1 {
    top: 0;
  }

  .cs_nav .cs_nav_list img {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .cs_site_header .container {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
  8. Footer
----------------------------------------------------------------*/
.cs_footer {
  padding-top: 100px;
  background-color: #ebedf5;
}

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

.cs_footer_widget_menu a:hover,
.cs_footer_links a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.cs_copyright {
  color: var(--heading-color);
  opacity: 0.75;
}

.cs_bottom_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 0 56px;
  border-top: 1px solid var(--heading-color);
}

@media (max-width: 991px) {
  .cs_bottom_footer {
    padding: 15px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cs_bottom_footer > * {
  padding: 4px 0;
}

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

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

.cs_footer_links a {
  color: var(--heading-color);
  opacity: 0.75;
}

.cs_footer_links a:hover {
  opacity: 1;
}

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

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

.cs_text_widget p {
  margin: 0;
  padding-left: 32px;
  max-width: 400px;
  border-left: 2px solid var(--heading-color);
}

@media (max-width: 575px) {
  .cs_text_widget p {
    padding-left: 15px;
  }
}

.cs_text_widget img {
  max-width: 180px;
}

.cs_footer_widget + .cs_footer_widget {
  margin-top: 32px;
}

.cs_newsletter.cs_style_1 {
  position: relative;
}

.cs_newsletter.cs_style_1 .cs_newsletter_input {
  height: 96px;
  padding: 10px 80px 10px 24px;
  background-color: #e1ece3;
  border: none;
  outline: none;
  display: block;
  width: 100%;
  opacity: 1;
}

@media (max-width: 1199px) {
  .cs_newsletter.cs_style_1 .cs_newsletter_input {
    height: 70px;
    padding: 10px 70px 10px 20px;
  }
}

.cs_newsletter.cs_style_1 .cs_newsletter_input::-webkit-input-placeholder {
  color: var(--heading-color);
  opacity: 0.75;
}

.cs_newsletter.cs_style_1 .cs_newsletter_input::-moz-placeholder {
  color: var(--heading-color);
  opacity: 0.75;
}

.cs_newsletter.cs_style_1 .cs_newsletter_input:-ms-input-placeholder {
  color: var(--heading-color);
  opacity: 0.75;
}

.cs_newsletter.cs_style_1 .cs_newsletter_input::-ms-input-placeholder {
  color: var(--heading-color);
  opacity: 0.75;
}

.cs_newsletter.cs_style_1 .cs_newsletter_input::placeholder {
  color: var(--heading-color);
  opacity: 0.75;
}

.cs_newsletter.cs_style_1 .cs_newsletter_input::-ms-input-placeholder {
  color: var(--heading-color);
  opacity: 0.75;
}

.cs_newsletter.cs_style_1 .cs_newsletter_btn {
  position: absolute;
  right: 24px;
  top: 24px;
}

@media (max-width: 1199px) {
  .cs_newsletter.cs_style_1 .cs_newsletter_btn {
    right: 11px;
    top: 11px;
  }
}

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

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

.cs_footer_widget_title {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #38486c;
  border-radius: 8px;
  color: #38486c;
  font-size: 18px;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-icons a:hover {
  background: #38486c;
  color: #ffffff;
}

.cs_footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 110px;
  padding: 100px 0 80px;
}

@media (max-width: 1199px) {
  .cs_footer_row {
    gap: 30px 45px;
  }
}

@media (max-width: 991px) {
  .cs_footer_row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 35px 24px;
    padding: 70px 0 50px;
  }
}

@media (max-width: 380px) {
  .cs_footer_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.cs_footer_row .cs_footer_col {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 350px;
}

.cs_footer_row .cs_footer_col:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: initial;
  padding-right: 12px;
}

@media (max-width: 991px) {
  .cs_footer_row .cs_footer_col:first-child {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.cs_footer.cs_style_1.cs_color_1 {
  background-color: var(--heading-color);
  color: var(--white-color);
}

.cs_footer.cs_style_1.cs_color_1 .cs_footer_widget_menu,
.cs_footer.cs_style_1.cs_color_1 .cs_footer_widget_title,
.cs_footer.cs_style_1.cs_color_1 .cs_copyright,
.cs_footer.cs_style_1.cs_color_1 .cs_footer_links a,
.cs_footer.cs_style_1.cs_color_1 .cs_footer_widget_menu a {
  color: var(--white-color);
}

.cs_footer.cs_style_1.cs_color_1 .cs_bottom_footer {
  border-color: var(--white-color);
}

.cs_footer.cs_style_1.cs_color_1 .cs_text_widget p {
  border-color: var(--white-color);
}

.cs_footer.cs_style_1.cs_color_1 .cs_newsletter_input {
  background-color: var(--white-color);
}

.cs_footer.cs_style_1.cs_color_1 .cs_newsletter_btn {
  background-color: #e1ece3;
}

.cs_footer.cs_style_1.cs_color_1 .cs_newsletter_btn:hover {
  background-color: var(--heading-color);
}

.cs_footer.cs_style_1.cs_color_2 {
  background-color: #e1ece3;
}

.cs_footer.cs_style_1.cs_color_2 .cs_newsletter_input {
  background-color: var(--white-color);
}

.cs_footer.cs_style_1.cs_color_2 .cs_newsletter_btn {
  background-color: var(--heading-color);
  color: var(--white-color);
}

.whatsapp-btn {
  height: 58px;
  position: fixed;
  bottom: 15px;
  right: 16px;
  z-index: 9999;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
  9. Isotope
----------------------------------------------------------------*/
.cs_isotop {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_isotop.cs_has_gutter_24 {
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -24px;
}

.cs_isotop.cs_has_gutter_24 .cs_isotop_item {
  padding: 0 12px;
  margin-bottom: 24px;
}

.cs_isotop_col_6 .cs_grid_sizer,
.cs_isotop_col_6 .cs_isotop_item {
  width: 16.666667%;
}

.cs_isotop_col_5 .cs_grid_sizer,
.cs_isotop_col_5 .cs_isotop_item {
  width: 20%;
}

.cs_isotop_col_4 .cs_grid_sizer,
.cs_isotop_col_4 .cs_isotop_item {
  width: 25%;
}

.cs_isotop_col_3 .cs_grid_sizer,
.cs_isotop_col_3 .cs_isotop_item {
  width: 33.333333%;
}

.cs_isotop_col_2 .cs_grid_sizer,
.cs_isotop_col_2 .cs_isotop_item {
  width: 50%;
}

.cs_isotop_col_1 .cs_grid_sizer,
.cs_isotop_col_1 .cs_isotop_item {
  width: 100%;
}

.cs_grid_sizer {
  width: 33.333333%;
}

.cs_isotop_col_5 .cs_w20,
.cs_isotop_col_4 .cs_w20,
.cs_isotop_col_3 .cs_w20,
.cs_isotop_col_2 .cs_w20,
.cs_isotop_col_1 .cs_w20 {
  width: 20%;
}

.cs_isotop_col_5 .cs_w25,
.cs_isotop_col_4 .cs_w25,
.cs_isotop_col_3 .cs_w25,
.cs_isotop_col_2 .cs_w25,
.cs_isotop_col_1 .cs_w25 {
  width: 25%;
}

.cs_isotop_col_5 .cs_w33,
.cs_isotop_col_4 .cs_w33,
.cs_isotop_col_3 .cs_w33,
.cs_isotop_col_2 .cs_w33,
.cs_isotop_col_1 .cs_w33 {
  width: 33.333333%;
}

.cs_isotop_col_5 .cs_w50,
.cs_isotop_col_4 .cs_w50,
.cs_isotop_col_3 .cs_w50,
.cs_isotop_col_2 .cs_w50,
.cs_isotop_col_1 .cs_w50 {
  width: 50%;
}

.cs_isotop_col_5 .cs_w66,
.cs_isotop_col_4 .cs_w66,
.cs_isotop_col_3 .cs_w66,
.cs_isotop_col_2 .cs_w66,
.cs_isotop_col_1 .cs_w66 {
  width: 66.666666%;
}

.cs_isotop_col_5 .cs_w100,
.cs_isotop_col_4 .cs_w100,
.cs_isotop_col_3 .cs_w100,
.cs_isotop_col_2 .cs_w100,
.cs_isotop_col_1 .cs_w100 {
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .cs_isotop_col_4 .cs_grid_sizer,
  .cs_isotop_col_4 .cs_isotop_item {
    width: 33.333333%;
  }
}

@media screen and (max-width: 991px) {
  .cs_isotop_col_4 .cs_grid_sizer,
  .cs_isotop_col_4 .cs_isotop_item {
    width: 50%;
  }

  .cs_isotop_col_4 .cs_w50 {
    width: 100%;
  }

  .cs_isotop_col_3 .cs_grid_sizer,
  .cs_isotop_col_3 .cs_isotop_item {
    width: 50%;
  }

  .cs_isotop_col_2 .cs_grid_sizer,
  .cs_isotop_col_2 .cs_isotop_item {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .cs_isotop_col_5 .cs_w50,
  .cs_isotop_col_4 .cs_w50,
  .cs_isotop_col_3 .cs_w50,
  .cs_isotop_col_2 .cs_w50,
  .cs_isotop_col_1 .cs_w50,
  .cs_isotop_col_5 .cs_w66,
  .cs_isotop_col_4 .cs_w66,
  .cs_isotop_col_3 .cs_w66,
  .cs_isotop_col_2 .cs_w66,
  .cs_isotop_col_1 .cs_w66 {
    width: 100%;
  }

  .cs_isotop_col_5 .cs_grid_sizer,
  .cs_isotop_col_5 .cs_isotop_item {
    width: 100%;
  }

  .cs_isotop_col_4 .cs_grid_sizer,
  .cs_isotop_col_4 .cs_isotop_item {
    width: 100%;
  }

  .cs_isotop_col_3 .cs_grid_sizer,
  .cs_isotop_col_3 .cs_isotop_item {
    width: 100%;
  }

  .cs_isotop_col_2 .cs_grid_sizer,
  .cs_isotop_col_2 .cs_isotop_item {
    width: 100%;
  }
}

/*--------------------------------------------------------------
  10. Sidebar
----------------------------------------------------------------*/
.cs_sidebar_item:not(:last-child) {
  margin-bottom: 45px;
}

.cs_sidebar_widget_title {
  font-size: 20px;
  line-height: 1.33em;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--heading-color);
  padding-bottom: 10px;
}

.tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

.tag-cloud-link {
  font-size: 14px;
  line-height: 1.6em;
  border: 1px solid rgba(55, 72, 54, 0.2);
  padding: 5px 15px;
  display: inline-block;
  margin: 5px;
  border-radius: 6px;
  color: var(--heading-color);
}

.tag-cloud-link:hover {
  color: #fff;
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}

.widget_archive ul,
.widget_categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget_archive ul li,
.widget_categories ul li {
  padding-left: 30px;
  position: relative;
}

.widget_archive ul li i,
.widget_categories ul li i {
  position: absolute;
  left: 0;
  top: 5px;
}

.widget_archive ul li:not(:last-child),
.widget_categories ul li:not(:last-child) {
  margin-bottom: 15px;
}

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

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

.cs_recent_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cs_recent_post_thumb {
  height: 70px;
  width: 70px;
  border-radius: 7px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  overflow: hidden;
  margin-right: 15px;
}

.cs_recent_post_thumb:hover .cs_recent_post_thumb_in {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.cs_recent_post_thumb_in {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_recent_post_title {
  font-size: 18px;
  margin-bottom: 8px;
}

.cs_sidebar_search {
  position: relative;
}

.cs_sidebar_search input {
  display: block;
  width: 100%;
  background-color: transparent;
  outline: none;
  border: 1px solid var(--heading-color);
  padding: 9px 40px 9px 15px;
  -webkit-transition: all 0.3sease;
  transition: all 0.3sease;
  border-radius: 10px;
}

.cs_sidebar_search input:focus {
  border-color: var(--heading-color);
}

.cs_sidebar_search_btn {
  position: absolute;
  border: none;
  outline: none;
  bottom: 0px;
  right: 0;
  padding: 10px 14px;
  cursor: pointer;
  background-color: var(--heading-color);
  border-radius: 0 10px 10px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}

.cs_sidebar_search_btn:hover {
  color: #fff;
  opacity: 0.9;
}

.cs_author_card img {
  height: 130px;
  width: 130px;
  margin-bottom: 22px;
}

.cs_author_card h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.cs_author_card p {
  margin-bottom: 0;
}

.cs_right_sidebar {
  padding-left: 40px;
}

@media (max-width: 991px) {
  .cs_right_sidebar {
    padding-left: 0px;
    padding-top: 60px;
  }
}

/*--------------------------------------------------------------
  10. Hero
----------------------------------------------------------------*/
.cs_circle_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
}

.cs_circle_group span {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  margin-left: -10px;
}

.cs_circle_group span:first-child {
  -webkit-transition: all 0.65s ease;
  transition: all 0.65s ease;
}

.cs_circle_group span:last-child {
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.cs_hero.cs_style_1 {
  position: relative;
  background: linear-gradient(
      186deg,
      #1e2433 35.6%,
      rgba(34, 172, 184, 0.4) 99.23%
    ),
    #1e2433;
  box-shadow: inset 0 -100px 100px -10px rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.cs_hero.cs_style_1 .cs_hero_in {
  padding: 190px 0px 0px 0px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 425px) {
  .cs_hero.cs_style_1 .cs_hero_in {
    padding: 135px 0px 0px 0px;
  }
}

.cs_hero.cs_style_1 .cs_hero_title b {
  font-weight: 300;
}

.cs_hero_subtitle {
  text-align: center;
}

@media (max-width: 1400px) {
  .cs_hero.cs_style_1 .cs_hero_subtitle {
    width: 100%;
  }
}

@media (max-width: 1400px) {
  .cs_hero.cs_style_1 .cs_hero_subtitle {
    width: 100%;
  }
}

.cs_button_consultation {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 98%;
  padding: 16px 40px;
  gap: 10px;
  border-radius: 8px;
  background: linear-gradient(
    269deg,
    rgb(251, 176, 59) -6.94%,
    rgb(230, 130, 0) 41.82%
  );
  transition: 0.25s;
}

.cs_button_consultation:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  cursor: pointer;
  color: #2e2e2e;
}

@media (max-width: 425px) {
}

.cs_button_search {
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  color: rgb(74, 200, 211);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 98%;
  padding: 16px 40px;
  gap: 10px;
  border-radius: 8px;
  background: rgba(74, 200, 211, 0.16);
  transition: 0.25s;
}

.cs_button_search:hover {
  background: rgba(74, 200, 211, 0.24);
  color: #e1ece2;
  backdrop-filter: blur(10px);
  transform: translateY(-2px);
  cursor: pointer;
}

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

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

.cs_hero_btns {
  padding: 20px 0px 50px 0px;
}

.cs_hero.cs_style_1 .cs_hero_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 22px;
}

@media (max-width: 769px) {
  .cs_hero.cs_style_1 .cs_hero_btns {
    flex-direction: column;
  }
}

.cs_hero.cs_style_1 .cs_hero_funfact_wrap {
  border-radius: 20px;
  position: absolute;
  width: 230px;
  bottom: -38px;
  left: 280px;
  overflow: hidden;
  padding: 1px;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_funfact_wrap {
    width: 230px;
    bottom: -38px;
    left: 80px;
  }
}

@media (max-width: 769px) {
  .cs_hero.cs_style_1 .cs_hero_funfact_wrap {
    width: 200px;
    bottom: -38px;
    left: -7px;
  }
}

@media (max-width: 425px) {
  .cs_hero.cs_style_1 .cs_hero_funfact_wrap {
    width: 175px;
    bottom: -38px;
    left: -8px;
  }
}

.cs_hero.cs_style_1
  .cs_hero_funfact_wrap:hover
  .cs_circle_group
  span:first-child {
  -webkit-transform: translateX(60px);
  transform: translateX(60px);
}

.cs_hero.cs_style_1
  .cs_hero_funfact_wrap:hover
  .cs_circle_group
  span:last-child {
  -webkit-transform: translateX(-60px);
  transform: translateX(-60px);
}

.cs_hero.cs_style_1 .cs_hero_funfact {
  border-radius: inherit;
  padding: 12px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    241deg,
    rgba(255, 255, 255, 0.9) -7.37%,
    rgba(255, 255, 255, 0.6) 89.52%
  );
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.cs_hero_funfact_title {
  font-size: 24px;
  margin-bottom: 0px;
}

@media (max-width: 425px) {
  .cs_hero_funfact_title {
    font-size: 18px;
  }
}

.cs_hero_funfact_subtitle {
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 600;
}

@media (max-width: 425px) {
  .cs_hero_funfact_subtitle {
    font-size: 12px;
  }
}

.cs_hero_funfact_car {
  position: absolute;
  bottom: -155px;
  left: -350px;
  z-index: 0;
}

@media (max-width: 991px) {
  .cs_hero_funfact_car {
    position: absolute;
    bottom: -95px;
    left: -180px;
    z-index: 0;
  }
}

@media (max-width: 769px) {
  .cs_hero_funfact_car {
    position: absolute;
    bottom: -24px;
    left: -112px;
    z-index: 0;
  }
}

.cs_hero_funfact_car img {
  width: 100%;
}

@media (max-width: 991px) {
  .cs_hero_funfact_car img {
    width: 50%;
  }
}

.cs_hero.cs_style_1 .cs_hero_box {
  padding: 12px 12px;
  position: absolute;
  width: 230px;
  bottom: -14px;
  right: 150px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    241deg,
    rgba(255, 255, 255, 0.9) -7.37%,
    rgba(255, 255, 255, 0.6) 89.52%
  );
  backdrop-filter: blur(5px);
  z-index: 0;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_box {
    width: 230px;
    bottom: -14px;
    right: 20px;
  }
}

@media (max-width: 769px) {
  .cs_hero.cs_style_1 .cs_hero_box {
    width: 230px;
    bottom: -14px;
    right: -7px;
  }
}

@media (max-width: 425px) {
  .cs_hero.cs_style_1 .cs_hero_box {
    width: 175px;
    bottom: -14px;
    right: 12px;
  }
}

.cs_hero.cs_style_1 .cs_hero_box_btn {
  position: absolute;
  right: 16px;
  top: 16px;
}

.cs_hero_box_title {
  font-size: 24px;
  margin-bottom: 0px;
}

@media (max-width: 425px) {
  .cs_hero_box_title {
    font-size: 18px;
  }
}

.cs_hero_box_subtitle {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
}

@media (max-width: 425px) {
  .cs_hero_box_subtitle {
    font-size: 12px;
  }
}

.cs_hero_box_robot {
  position: absolute;
  bottom: -110px;
  right: -60px;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_hero_box_robot {
    position: absolute;
    bottom: -70px;
    right: -235px;
    z-index: 1;
  }
}

@media (max-width: 769px) {
  .cs_hero_box_robot {
    position: absolute;
    bottom: -2px;
    right: -236px;
    z-index: 1;
  }
}

.cs_hero_box_robot img {
  width: 100%;
}

@media (max-width: 991px) {
  .cs_hero_box_robot img {
    width: 50%;
  }
}

@media (max-width: 769px) {
  .cs_hero_box_robot img {
    width: 30%;
  }
}

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

.cs_hero.cs_style_1 .cs_hero_bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.cs_hero.cs_style_1 .cs_hero_bg .cs_slider,
.cs_hero.cs_style_1 .cs_hero_bg .cs_slider_container,
.cs_hero.cs_style_1 .cs_hero_bg .cs_slider_wrapper,
.cs_hero.cs_style_1 .cs_hero_bg .slick-list,
.cs_hero.cs_style_1 .cs_hero_bg .slick-track,
.cs_hero.cs_style_1 .cs_hero_bg .slick-track * {
  height: 100%;
}

.cs_hero_imgs {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 769px) {
  .cs_hero_imgs {
    gap: 0px;
  }
}

@media (max-width: 425px) {
  .cs_hero_imgs_desktop {
    display: flex;
    gap: 0px;
  }
}

@media (max-width: 769px) {
  .cs_hero_imgs_mobile {
    display: none;
  }
}

/* Card fixo, escondido por padrão */
.cs_fixed_card {
  position: fixed;
  bottom: 20px;
  right: 100px;
  width: 280px;
  padding: 0;
  background: transparent;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 100001;
  overflow: hidden;
  box-shadow: 0 0 20px #4ac8d3, 0 0 200px #2691a6;
  cursor: pointer;
}

/* Exibe o card */
.cs_fixed_card.active {
  display: block;
}

/* Botão fechar dentro do card */
.cs_fixed_card_close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 0.9;
}

/* Imagem ocupa todo o card */
.cs_fixed_card_img {
  display: block;
  width: 100%;
  height: auto;
}

/* === Responsivo === */

/* Tablets e grandes smartphones */
@media (max-width: 768px) {
  .cs_fixed_card {
    width: 200px;
    bottom: 16px;
    right: 16px;
  }
  .cs_fixed_card_close {
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }
}

/* Telefones pequenos */
@media (max-width: 425px) {
  .cs_fixed_card {
    width: calc(42vw - 32px); /* margem de 16px dos lados */
    right: 16px;
    bottom: 16px;
    border-radius: 6px;
  }
  .cs_fixed_card_img {
    border-radius: 6px;
  }
  .cs_fixed_card_close {
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
  }
}

/* ===== Modal full-screen ===== */
.cs_video_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.cs_video_modal.active {
  display: flex;
}

/* Conteúdo do modal mantém proporção 16:9 */
.cs_video_modal_content {
  position: relative;
  width: 90%;
  max-width: 720px;
  aspect-ratio: 16/9;
}

/* Botão de fechar */
.cs_modal_close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  border: none;
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}

/* Vídeo responsivo sem menu “⋮” */
.cs_video_modal_content video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px #4ac8d3, 0 0 200px #2691a6;
}

@media (max-width: 991px) {
  .cs_video_modal_content video {
    height: 374px;
  }
}

/* placeholder centralizado */
.cs_hero_placeholder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 0 20px #4ac8d3, 0 0 200px #2691a6;
}
/* imagem de preview — ajuste o src conforme sua arte */
.cs_hero_placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* botão de play pulsante */
.cs_hero_placeholder_play {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(38, 145, 166, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  animation: pulse 2s infinite;
  box-shadow: 0 0 20px #4ac8d3, 0 0 200px #2691a6;
}
.cs_hero_placeholder_play::before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

/* keyframes para efeito de pulso */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Torna o container do vídeo inline positioned */
.cs_box_video {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-bottom: 190px;
}

@media (max-width: 769px) {
  .cs_box_video {
    padding-bottom: 100px;
  }
}

/* Close button dentro do inline vídeo, igual ao modal */
.cs_inline_close {
  position: inherit;
  top: 16px;
  left: 48px;
  background: #fff;
  color: #1e2433;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}

/* estilo para o vídeo inline após o clique */
#cs_inline_video {
  width: 70%;
  height: auto;
  max-height: 100%;
  display: block;
  border: 2px solid #2691a6b2;
  border-radius: 14px;
  filter: drop-shadow(0 0 10px #4ac8d3) drop-shadow(0 0 20px #2691a6);
}

/*--------------------------------------------------------------
  11. Iconbox
----------------------------------------------------------------*/
.cs_iconbox.cs_style_1 .cs_iconbox_icon {
  height: 48px;
  width: 48px;
  position: relative;
  font-size: 18px;
  color: var(--heading-color);
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #e1ece2;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon i {
  position: relative;
  z-index: 2;
}

.cs_iconbox.cs_style_2 {
  background-color: #e1ece3;
  border-radius: 20px;
  padding: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--heading-color);
  font-size: 24px;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon,
.cs_iconbox.cs_style_2 .cs_heading_color {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.cs_iconbox.cs_style_2:hover .cs_iconbox_icon,
.cs_iconbox.cs_style_2:hover .cs_heading_color {
  color: var(--white-color);
}

/*--------------------------------------------------------------
  12. CTA
----------------------------------------------------------------*/
.cs_cta.cs_style_1.cs_type_1 .cs_cta_in {
  max-width: 710px;
  margin-left: auto;
}

.cs_cta.cs_style_2 {
  height: 300px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.cs_cta.cs_style_2.cs_type_1 {
  min-height: 400px;
  height: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/*--------------------------------------------------------------
  13. Testimonial
----------------------------------------------------------------*/
.cs_testimonial.cs_style_1 .cs_testimonial_blockquote {
  font-style: initial;
}

.cs_testimonial.cs_style_1 .cs_testimonial_blockquote span {
  color: #7f8f80;
}

.cs_testimonial.cs_style_1 .cs_testimonial_avatar_designation {
  color: #7f8f80;
}

.cs_testimonial.cs_style_1 .cs_testimonial_meta_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.cs_testimonial.cs_style_1 .cs_testimonial_meta_wrap img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*--------------------------------------------------------------
  15. Card
----------------------------------------------------------------*/
.cs_card {
  background: linear-gradient(
      186deg,
      #1e2433 35.6%,
      rgba(34, 172, 184, 0.4) 99.23%
    ),
    #1e2433;
}

.cs_card_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 320px;
  width: calc(100% - 65px);
  gap: 8px 0px;
  padding-left: 16px;
}

@media (max-width: 1199px) {
  .cs_card_tags {
    padding-left: 12px;
  }
}

@media (max-width: 575px) {
  .cs_card_tags {
    padding-left: 10px;
  }
}

.cs_card_tags .cs_card_tag {
  padding: 10px 32px;
  border: 1px solid var(--white-color);
  border-radius: 1.6em;
  font-weight: 700;
  color: var(--white-color);
  margin-left: -16px;
}

@media (max-width: 1199px) {
  .cs_card_tags .cs_card_tag {
    padding: 10px 22px;
    margin-left: -12px;
  }
}

@media (max-width: 575px) {
  .cs_card_tags .cs_card_tag {
    padding: 7px 15px;
    margin-left: -10px;
  }
}

.cs_card_tags .cs_card_tag:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.cs_card.cs_style_1 {
  position: relative;
  padding: 24px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: center;
  gap: 40px 0;
  border-radius: 20px;
  min-height: 508px;
}

@media (max-width: 575px) {
  .cs_card.cs_style_1 {
    padding: 20px;
  }
}

.cs_card.cs_style_1 .cs_arrow_btn {
  position: absolute;
  right: 24px;
  top: 24px;
}

@media (max-width: 575px) {
  .cs_card.cs_style_1 .cs_arrow_btn {
    right: 20px;
    top: 20px;
  }
}

.cs_card_1_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

@media (max-width: 1199px) {
  .cs_card_1_group {
    gap: 15px;
  }
}

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

.cs_card_1_group .cs_card.cs_style_1 {
  padding: 32px 16px;
  height: 740px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .cs_card_1_group .cs_card.cs_style_1 {
    padding: 30px 20px;
  }
}

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

.cs_card_1_group .cs_card.cs_style_1 .cs_card_title {
  margin-bottom: 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card_1_group .cs_card.cs_style_1 .cs_card_subtitle {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
  height: 48px;
}

.cs_card_1_group .cs_card.cs_style_1 .cs_card_tags {
  width: 320px;
  position: absolute;
  top: 32px;
  left: 32px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .cs_card_1_group .cs_card.cs_style_1 .cs_card_tags {
    width: 280px;
    top: 42px;
  }
}

@media (max-width: 991px) {
  .cs_card_1_group .cs_card.cs_style_1 .cs_card_tags {
    opacity: 1;
    visibility: visible;
    left: 20px;
    top: 30px;
  }
}

@media (max-width: 350px) {
  .cs_card_1_group .cs_card.cs_style_1 .cs_card_tags {
    top: 70px;
  }
}

.cs_card_1_group .cs_card.cs_style_1.active {
  -webkit-box-flex: 2.22;
  -ms-flex: 2.22;
  flex: 2.22;
  padding: 32px;
}

@media (max-width: 1199px) {
  .cs_card_1_group .cs_card.cs_style_1.active {
    -webkit-box-flex: 1.8;
    -ms-flex: 1.8;
    flex: 1.8;
    padding: 30px 20px;
  }
}

.cs_card_1_group .cs_card.cs_style_1.active .cs_card_title {
  font-size: 60px;
  line-height: 1.1em;
  margin-bottom: 16px;
}

@media (max-width: 1400px) {
  .cs_card_1_group .cs_card.cs_style_1.active .cs_card_title {
    font-size: 70px;
  }
}

@media (max-width: 1199px) {
  .cs_card_1_group .cs_card.cs_style_1.active .cs_card_title {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .cs_card_1_group .cs_card.cs_style_1.active .cs_card_title {
    font-size: 26px;
  }
}

.cs_card_1_group .cs_card.cs_style_1.active .cs_card_subtitle {
  font-size: 20px;
  line-height: 1.5em;
  height: 90px;
}

@media (max-width: 1400px) {
  .cs_card_1_group .cs_card.cs_style_1.active .cs_card_subtitle {
    font-size: 18px;
    height: 86px;
  }
}

@media (max-width: 1991px) {
  .cs_card_1_group .cs_card.cs_style_1.active .cs_card_subtitle {
    font-size: 16px;
    height: initial;
  }
}

.cs_card_1_group .cs_card.cs_style_1.active .cs_card_tags {
  opacity: 1;
  visibility: visible;
}

.cs_card.cs_style_2 {
  position: relative;
}

.cs_card.cs_style_2 .cs_card_thumb {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: block;
  min-height: 320px;
}

.cs_card.cs_style_2 .cs_card_thumb img {
  min-height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.cs_card.cs_style_2 .cs_card_thumb::before {
  content: "";
  border-radius: 20px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(55, 72, 54, 0.75)),
    to(rgba(55, 72, 54, 0.75))
  );
  background: linear-gradient(
    0deg,
    rgba(55, 72, 54, 0.75) 0%,
    rgba(55, 72, 54, 0.75) 100%
  );
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

.cs_card.cs_style_2 .cs_card_thumb img {
  width: 100%;
  border-radius: inherit;
  width: 100%;
}

.cs_card.cs_style_2 .cs_arrow_btn {
  position: absolute;
  top: 16px;
  right: 24px;
}

.cs_card.cs_style_2 .cs_card_info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 24px;
}

.cs_card.cs_style_2 .cs_card_title a {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, currentColor),
    to(currentColor)
  );
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.cs_card.cs_style_2 .cs_card_title a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.cs_card.cs_style_2:hover .cs_card_thumb::before {
  opacity: 1;
}

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

.cs_card.cs_style_4 {
  width: 1063px;
}

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

@media (max-width: 1199px) {
  .cs_card.cs_style_4 {
    width: 850px;
  }
}

@media (max-width: 991px) {
  .cs_card.cs_style_4 {
    width: 500px;
  }
}

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

@media (max-width: 575px) {
  .cs_card.cs_style_4 {
    width: calc(100vw - 24px);
  }
}

.cs_card.cs_style_4 .cs_card_thumb {
  height: 480px;
  width: 100%;
}

@media (max-width: 1199px) {
  .cs_card.cs_style_4 .cs_card_thumb {
    height: 400px;
  }
}

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

.cs_card.cs_style_4 .cs_card_info_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 54px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

@media (max-width: 575px) {
  .cs_card.cs_style_4 .cs_card_info_list {
    gap: 10px 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.cs_card.cs_style_4 .cs_card_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px 30px;
  color: #7f8f80;
}

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

.cs_card.cs_style_4 .cs_card_text {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 410px;
  width: 100%;
}

@media (max-width: 991px) {
  .cs_card.cs_style_4 .cs_card_text {
    max-width: 100%;
  }
}

.cs_card.cs_style_5 .cs_card_info_list,
.cs_card.cs_style_6 .cs_card_info_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 50px;
}

@media (max-width: 575px) {
  .cs_card.cs_style_5 .cs_card_info_list,
  .cs_card.cs_style_6 .cs_card_info_list {
    gap: 10px 25px;
  }
}

.cs_card.cs_style_5 .cs_card_title a,
.cs_card.cs_style_6 .cs_card_title a {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, currentColor),
    to(currentColor)
  );
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 3px;
}

.cs_card.cs_style_5 .cs_card_title a:hover,
.cs_card.cs_style_6 .cs_card_title a:hover {
  color: inherit;
  background-size: 100% 3px;
  background-position: 0 calc(100% - 0px);
}

.cs_card.cs_style_5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 1199px) {
  .cs_card.cs_style_5 {
    gap: 20px;
  }
}

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

.cs_card.cs_style_5 .cs_card_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 48%;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .cs_card.cs_style_5 .cs_card_thumb {
    width: 100%;
  }
}

.cs_card.cs_style_5 .cs_card_thumb img {
  border-radius: 20px;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}

.cs_card.cs_style_5 .cs_card_thumb a.cs_card_thumb:hover img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.cs_card.cs_style_5 .cs_card_right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px 30px;
}

.cs_card.cs_style_6 {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 991px) {
  .cs_card.cs_style_6 {
    padding: 70px 0;
  }
}

.cs_card.cs_style_6::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--heading-color);
  opacity: 0.25;
}

.cs_card.cs_style_6 .container {
  position: relative;
  z-index: 2;
}

.cs_card.cs_style_6 .cs_card_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px 150px;
}

@media (max-width: 1400px) {
  .cs_card.cs_style_6 .cs_card_in {
    gap: 40px 40px;
  }
}

@media (max-width: 1199px) {
  .cs_card.cs_style_6 .cs_card_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px 0px;
  }
}

.cs_card.cs_style_6 .cs_card_left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 150px 0px;
}

@media (max-width: 1199px) {
  .cs_card.cs_style_6 .cs_card_left {
    gap: 25px 0px;
  }
}

.cs_card.cs_style_6 .cs_card_right {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 500px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 1400px) {
  .cs_card.cs_style_6 .cs_card_right {
    max-width: 450px;
  }
}

@media (max-width: 1199px) {
  .cs_card.cs_style_6 .cs_card_right {
    max-width: 800px;
  }
}

/*--------------------------------------------------------------
  16 - Index
----------------------------------------------------------------*/

.cs_half_consultation {
  position: relative;
  padding: 170px 0 100px;
}

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

.cs_consultation h1 {
  text-align: center;
  font-weight: 400;
  font-size: 44px;
  margin-bottom: 40px;
  max-width: 490px;
}

.cs_consultation span {
  font-weight: 900;
}

.cs_consult_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.cs_card_body_cadastro,
.cs_card_body_veicular,
.cs_card_body_cnh,
.cs_card_body_juridico {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 0.3s;
}

.cs_card_body_cadastro:hover,
.cs_card_body_veicular:hover,
.cs_card_body_cnh:hover,
.cs_card_body_juridico:hover {
  transform: translateY(-4px);
}

.cs_card_body_cadastro {
  border: 1px solid rgba(74, 200, 211, 0.1);
  background: linear-gradient(
    241deg,
    rgba(74, 200, 211, 0.1) -7.37%,
    rgba(74, 200, 211, 0.05) 89.52%
  );
}

.cs_card_body_veicular {
  border: 1px solid rgba(251, 176, 59, 0.01);
  background: linear-gradient(
    241deg,
    rgba(251, 176, 59, 0.1) -7.37%,
    rgba(251, 176, 59, 0.05) 89.52%
  );
}

.cs_card_body_cnh {
  border: 1px solid rgba(110, 124, 145, 0.01);
  background: linear-gradient(
    241deg,
    rgba(110, 124, 145, 0.1) -7.37%,
    rgba(110, 124, 145, 0.05) 89.52%
  );
}

.cs_card_body_juridico {
  border: 1px solid rgba(192, 57, 43, 0.01);
  background: linear-gradient(
    241deg,
    rgba(192, 57, 43, 0.1) -7.37%,
    rgba(192, 57, 43, 0.05) 89.52%
  );
}

.cs_card_header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 60px;
}

.cs_card_icon {
  font-size: 1.5rem;
}

.cs_card_header h3 {
  font-size: 1.25rem;
  margin: 0;
}

.cs_card_desc {
  flex: 1 1 auto;
  margin: 16px 0;
}

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

.cs_card_desc li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #2e2e2e;
}

.cs_card_desc li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #4adb37;
}

.cs_card_price_section {
  flex: 0 0 50px;
  display: flex;
  color: #2e2e2e;
  flex-direction: column;
  margin-bottom: 20px;
}

.cs_card_price_section h6 {
  margin-bottom: 6px;
}

.cs_card_price {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.cs_card_action {
  flex: 0 0 50px;
  display: flex;
  align-items: center;
}

.cs_card_button {
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: filter 0.2s;
}

.cs_card_cadastro .cs_card_button {
  background-color: #4ac8d3;
  color: #fff;
}

.cs_card_veicular .cs_card_button {
  background-color: #fbb03b;
  color: #fff;
}

.cs_card_cnh .cs_card_button {
  background-color: #6e7c91;
  color: #fff;
}

.cs_card_juridico .cs_card_button {
  background-color: #c0392b;
  color: #fff;
}

.cs_card_cadastro .cs_card_button:hover,
.cs_card_veicular .cs_card_button:hover,
.cs_card_cnh .cs_card_button:hover,
.cs_card_juridico .cs_card_button:hover {
  filter: brightness(0.9);
}

.cs_benefits {
  background-image: url("../img/webp/bg-benefits-new.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 109px 0 45px;
}

.cs_benefits .cs_benefits__grid {
  position: relative;
  width: 100%;
  max-width: 1069px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 402px 520px;
  column-gap: 99px;
  row-gap: 42px;
  grid-template-areas:
    "title list"
    "highlight highlight";
}

.cs_benefits .cs_benefits__grid .cs_benefits__title {
  grid-area: title;
  color: #f5f6fa;
  font-size: 52px;
  font-weight: 400;
  line-height: 116%;
  margin-left: 32px;
  font-weight: 600;
}

.cs_benefits .cs_benefits__grid .cs_benefits__title span {
  background: var(
    --blue-gradient,
    linear-gradient(90deg, #4ac8d3 0%, #2691a6 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.cs_benefits .cs_benefits__grid .cs_benefits__list {
  grid-area: list;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cs_benefits .cs_benefits__grid .cs_benefits__item {
  display: flex;
  align-items: center;
  gap: 19px;
}

.cs_benefits .cs_benefits__grid .cs_benefits__icon {
  width: fit-content;
  max-width: 45px;
}

.cs_benefits .cs_benefits__grid .cs_benefits__text .cs_benefits__benefit {
  color: #fff;
  font-family: Prompt, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 98%;
  margin-bottom: 10px;
}

.cs_benefits .cs_benefits__grid .cs_benefits__text .cs_benefits__description {
  color: #f5f6fa;
  font-family: Prompt, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 98%;
}

.cs_benefits .cs_benefits__grid .cs_benefits__text .cs_benefits__description {
  margin-bottom: 0px;
}

.cs_benefits .cs_benefits__grid .cs_benefits__highlight {
  grid-area: highlight;
  display: flex;
  padding: 24px 56px;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  border-radius: 16px;
  background: var(
    --orange-gradient,
    linear-gradient(90deg, #fbb03b 0.01%, #e68200 100%)
  );
}

.cs_benefits .cs_benefits__grid .cs_benefits__alert-icon {
  width: fit-content;
}

.cs_benefits__highlight_img {
  max-width: 70px;
}

.cs_benefits .cs_benefits__grid .cs_benefits__highlight-text {
  color: #fff;
  font-family: Prompt, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 124%;
}

.cs_benefits .cs_benefits__grid .cs_benefits__cover {
  position: absolute;
  bottom: 41px;
  left: -28px;
}

@media (max-width: 1200px) {
  .cs_benefits {
    background: linear-gradient(
        88deg,
        rgba(30, 36, 51, 0) 6.45%,
        #1e2433 88.04%
      ),
      linear-gradient(241deg, rgba(30, 36, 51, 0) 46.73%, #22acb8 97.47%),
      rgba(30, 36, 51, 0.9);
    padding: 45px 0 18px;
  }

  .cs_benefits .cs_benefits__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 50px;
    gap: 0;
  }

  .cs_benefits .cs_benefits__grid .cs_benefits__title {
    font-size: 40px;
    text-align: center;
    margin-left: 0;
    margin-bottom: 40px;
  }

  .cs_benefits .cs_benefits__grid .cs_benefits__list {
    margin-bottom: 100px;
  }

  .cs_benefits .cs_benefits__grid .cs_benefits__highlight {
    display: none;
  }

  .cs_benefits .cs_benefits__grid .cs_benefits__cover {
    left: auto;
    right: 50px;
    bottom: 75px;
  }
}

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

@media (max-width: 612px) {
  .cs_benefits .cs_benefits__grid {
    margin-left: 20px;
  }
}

@media (max-width: 466px) {
  .cs_benefits .cs_benefits__grid {
    margin-left: 10px;
  }
}

.cs_step_by_step {
  padding: 150px 0;
}

.cs_step_by_step_title {
  text-align: center;
}

.cs_step_by_step_heading {
  font-size: 48px;
  font-weight: 600;
  color: #38486c;
  line-height: 1.1;
}

.cs_step_by_step_heading_highlight {
  background: var(
    --blue-gradient,
    linear-gradient(90deg, #4ac8d3 0%, #2691a6 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.cs_step_by_step_card_title {
  font-size: 24px;
  font-weight: 700;
  color: #38486c;
  margin-bottom: 12px;
}

.cs_step_by_step_card_text {
  font-size: 20px;
  color: #4c5569;
  margin: 0;
}

.cs_step_by_step_spacer_64 {
  height: 64px;
}

.cs_step_by_step_card_wrap {
  height: 500px;
  position: relative;
}

@media (max-width: 1199px) {
  .cs_step_by_step_card_wrap {
    height: 450px;
  }
}

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

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

.cs_step_by_step_card_wrap::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  background-image: linear-gradient(
    to right,
    var(--blue-gradient, #4ac8d3 0%, #2691a6 0%),
    transparent
  );
}

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

.cs_step_by_step_section_logo {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
}

@media (max-width: 991px) {
  .cs_step_by_step_section_logo {
    bottom: -40px;
  }
}

.cs_step_by_step_section_logo img {
  height: 28px;
}

.cs_step_by_step_card {
  position: absolute;
  top: 0;
  height: 250px;
  width: 35%;
  left: 0;
}

@media (max-width: 1199px) {
  .cs_step_by_step_card {
    height: 225px;
  }
}

@media (max-width: 991px) {
  .cs_step_by_step_card {
    position: static;
    width: 100%;
    height: auto;
  }
}

.cs_step_by_step_style3::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(
    --blue-gradient,
    linear-gradient(90deg, #4ac8d3 0%, #2691a6 100%)
  );
  left: -10px;
  bottom: -10px;
  z-index: 1;
}

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

.cs_step_by_step_card_in {
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  clip-path: inset(0 round 0);
}

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

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

.cs_step_by_step_card_in::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -4px;
  right: -4px;
  bottom: -4px;
  border: 3px dashed transparent;
  border-image-source: linear-gradient(to top, #4ac8d3 0%, #0b191b0a 100%);
  border-image-slice: 1;
  border-image-repeat: stretch;
}

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

.cs_step_by_step_card:nth-child(odd) {
  top: auto;
  bottom: 0;
  left: 22%;
}

.cs_step_by_step_card:nth-child(odd)::before {
  bottom: auto;
  top: -10px;
}

.cs_step_by_step_card:nth-child(odd) .cs_step_by_step_card_in {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .cs_step_by_step_card:nth-child(odd) .cs_step_by_step_card_in {
    display: block;
  }
}

.cs_step_by_step_card:nth-child(2) {
  left: 0%;
}

.cs_step_by_step_card:nth-child(3) {
  left: 66%;
}

.cs_step_by_step_card:nth-child(4) {
  left: 44%;
}

@media (max-width: 991px) {
  .cs_step_by_step_card_wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .cs_step_by_step_card:nth-child(2) {
    order: 1;
  }
  .cs_step_by_step_card:nth-child(1) {
    order: 2;
  }
  .cs_step_by_step_card:nth-child(4) {
    order: 3;
  }
  .cs_step_by_step_card:nth-child(3) {
    order: 4;
  }
}

.cs_home_about {
  padding-top: 98px;
  background: #ebedf5;
}

.cs_home_about .cs_home_about_wrapper {
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 16px;
}

.cs_home_about .cs_home_about_heading_tag {
  display: flex;
  align-items: center;
  background: #4fcdd6;
  padding: 8px 40px;
  gap: 16px;
  border-radius: 8px;
  color: #38486c;
  font-family: Prompt, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 98%;
  margin: 0 auto 32px;
  width: fit-content;
}

.cs_home_about .cs_home_about_icon {
  display: block;
  max-width: 25px;
}

.cs_home_about .cs_home_about_title {
  color: #38486c;
  text-align: center;
  font-family: Prompt, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 98%;
  margin: 0 auto 64px;
  max-width: 1124px;
}

.cs_home_about .cs_home_about_title_highlight {
  font-weight: 600;
}

.cs_home_about .cs_home_about_infos {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
}

.cs_home_about .cs_home_about_info_content {
  display: flex;
  gap: 40px;
}

.cs_home_about .cs_home_about_number_box {
  width: 282px;
  padding-bottom: 16px;
  border-bottom: 1px solid #a7b5d2;
}

@media (max-width: 1200px) {
  .cs_home_about .cs_home_about_number_box {
    width: 382px;
  }
}

.cs_home_about .cs_home_about_number {
  display: block;
  color: #38486c;
  font-family: Prompt, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 98%;
  margin-bottom: 8px;
}

.cs_home_about .cs_home_about_info {
  color: #38486c;
  font-family: Prompt, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 98%;
}

.cs_home_about .cs_home_about_button {
  display: flex;
  width: 222px;
  height: 65px;
  padding: 24px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: linear-gradient(265deg, #fbb03b -3.91%, #e68200 80.26%);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 98%;
  transition: filter 0.25s ease;
}

.cs_home_about .cs_home_about_button:hover {
  filter: brightness(1.2);
}

.cs_home_about .cs_home_about_arrow {
  display: block;
}

@media (max-width: 1200px) {
  .cs_home_about .cs_home_about_heading_tag {
    justify-content: center;
    text-align: center;
  }

  .cs_home_about .cs_home_about_title {
    font-size: 30px;
  }

  .cs_home_about .cs_home_about_infos {
    flex-direction: column;
    align-items: center;
  }

  .cs_home_about .cs_home_about_info_content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cs_home_about .cs_home_about_number {
    text-align: center;
    width: 100%;
  }

  .cs_home_about .cs_home_about_info {
    text-align: center;
    width: 100%;
  }
}

/*--------------------------------------------------------------
  17 - Sobre
----------------------------------------------------------------*/

.cs_about {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 145px 0;
  display: flex;
  align-items: center;
  gap: 244px;
}

.cs_about__contents .cs_about__title {
  margin-bottom: 33px;
  color: #38486c;
  font-size: 56px;
  font-weight: 400;
  line-height: 98%;
}

.cs_about__contents .cs_about__title strong {
  font-weight: 600;
}

.cs_about__contents .cs_about__description {
  color: #515151;
  font-size: 24px;
  font-weight: 400;
  line-height: 98%;
}

.cs_about__contents .cs_about__description strong {
  font-weight: 600;
}

.cs_about__statistics {
  flex-shrink: 0;
  width: 285px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cs_about__statistics-box {
  padding-bottom: 16px;
  border-bottom: 1px solid #a7b5d2;
}

.cs_about__statistics-box .cs_about__statistics-number {
  display: block;
  margin-bottom: 8px;
  color: #38486c;
  font-size: 56px;
  font-weight: 600;
  line-height: 98%;
}

.cs_about__statistics-box .cs_about__statistics-text {
  display: block;
  color: #38486c;
  font-size: 18px;
  font-weight: 400;
  line-height: 98%;
}

@media (max-width: 1200px) {
  .cs_about {
    flex-direction: column;
    gap: 40px;
    padding: 64px 24px;
  }

  .cs_about__contents {
    text-align: center;
  }

  .cs_about__contents .cs_about__title {
    font-size: 32px;
  }

  .cs_about__contents .cs_about__description {
    font-size: 20px;
  }

  .cs_about__statistics {
    width: 398px;
    text-align: center;
  }
}

.cs_team_member.cs_style_1 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.cs_team_member.cs_style_1::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(transparent, #38486c);
}

.cs_team_member.cs_style_1 .cs_team_member_desc {
  margin-top: 0px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cs_team_member.cs_style_1 .cs_team_member_img {
  width: 100%;
  border-radius: 20px;
}

.cs_team_member.cs_style_1 .cs_team_member_info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 16px;
  width: 100%;
}

.cs_team_member.cs_style_1:hover .cs_team_member_desc {
  margin-top: 16px;
  max-height: 72px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/*--------------------------------------------------------------
  18 - Consultas
----------------------------------------------------------------*/
.cs_half_consultation_page {
  position: relative;
  padding: 100px 50px 100px;
}

@media (max-width: 1200px) {
  .cs_half_consultation_page {
    padding: 100px 50px 100px;
  }
}

@media (max-width: 900px) {
  .cs_half_consultation_page {
    padding: 100px 50px 100px;
  }
}

@media (max-width: 575px) {
  .cs_half_consultation_page {
    padding: 50px 0px 50px;
  }
}

.cs_consult_content {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .cs_consult_content {
    flex-direction: column;
    margin-bottom: 0px;
  }
}

.cs_half_consultation_page .cs_consult_nav {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
  align-items: center;
}

@media (max-width: 1200px) {
  .cs_half_consultation_page .cs_consult_nav {
    margin-bottom: 0px;
  }
}

.icon {
  margin-right: 6px;
}

.cs_half_consultation_page .cs_consult_nav .tab-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

@media (max-width: 1200px) {
  .cs_half_consultation_page .cs_consult_nav .tab-btn {
    padding: 6px 14px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .cs_half_consultation_page .cs_consult_nav .tab-btn {
    padding: 6px 12px;
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  .cs_half_consultation_page .cs_consult_nav .tab-btn {
    padding: 4px 10px;
    font-size: 12px;
  }
}

.cs_half_consultation_page .cs_consult_nav .tab-btn.active {
  background: var(--heading-color);
  color: #fff;
  border-color: var(--heading-color);
}

.cs_half_consultation_page .cs_consult_nav .tab-btn:hover:not(.active) {
  background: #f0f0f0;
}

.tab-btn_initial {
  display: flex;
}

@media (max-width: 768px) {
  .tab-btn_initial {
    display: none;
  }
}

.cs_half_consultation_page #cs_consult_search {
  min-width: 430px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-left: auto;
}

@media (max-width: 1200px) {
  .cs_half_consultation_page #cs_consult_search {
    width: 100%;
    min-width: 90px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .cs_half_consultation_page #cs_consult_search {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

.cs_half_consultation_page .cs_tab_content {
  display: none;
}

.cs_half_consultation_page .cs_tab_content.active {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 24px;
}

@media (max-width: 1200px) {
  .cs_tab_content_box,
  .cs_half_consultation_page .cs_tab_content.active {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .cs_tab_content_box,
  .cs_half_consultation_page .cs_tab_content.active {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
}

.cs_half_consultation_page .cs_no_results {
  display: none;
  align-content: center;
  text-align: center;
  color: #777;
  font-size: 24px;
  margin-top: 18px;
  min-height: 300px;
}

/*--------------------------------------------------------------
  19 - Conteúdos
----------------------------------------------------------------*/
/* ==== Conteúdos ==== */

/*--------------------------------------------------------------
  20 - API
----------------------------------------------------------------*/
.cs_api_about {
  width: 100%;
  max-width: 684px;
  margin: 0 auto;
  padding: 129px 0 80px;
  text-align: center;
}

.cs_api_about__title {
  margin-bottom: 24px;
  color: #38486c;
  font-size: 48px;
  font-weight: 400;
  line-height: 98%;
}

.cs_api_about__title strong {
  font-weight: 600;
}

.cs_api_about__description {
  margin-bottom: 32px;
  color: #38486c;
  font-size: 18px;
  font-weight: 400;
  line-height: 98%;
}

.cs_api_about__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20.5px 40px;
  border-radius: 8px;
  background: rgba(44, 166, 190, 0.24);
  color: #2ca6be;
  font-size: 18px;
  font-weight: 600;
  line-height: 98%;
  transition: all 0.25s ease;
}

.cs_api_about__button:hover {
  background: #2ca6be;
  color: #fff;
}

.cs_api_about__button:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 1200px) {
  .cs_api_about {
    padding: 64px 24px;
  }

  .cs_api_about__title {
    font-size: 36px;
  }
}

.cs_api_benefits {
  padding: 75px 0;
  background: linear-gradient(88deg, rgba(30, 36, 51, 0) 6.45%, #1e2433 88.04%),
    linear-gradient(241deg, rgba(30, 36, 51, 0) 46.73%, #22acb8 97.47%),
    rgba(30, 36, 51, 0.9);
}

.cs_api_benefits__wrapper {
  width: 100%;
  max-width: 1021px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 99px;
}

.cs_api_benefits__title {
  flex-shrink: 0;
  width: 440px;
  padding: 0 32px;
  font-size: 48px;
  font-weight: 600;
  line-height: 116%;
  color: #f5f6fa;
}

.cs_api_benefits__title span {
  background: linear-gradient(90deg, #4ac8d3 0%, #2691a6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_api_benefits__list {
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.cs_api_benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 19px;
}

.cs_api_benefits__icon {
  flex-shrink: 0;
}

.cs_api_benefits__info .cs_api_benefits__name {
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 98%;
}

.cs_api_benefits__info .cs_api_benefits__text {
  color: #f5f6fa;
  font-size: 16px;
  font-weight: 400;
  line-height: 98%;
}

@media (max-width: 1200px) {
  .cs_api_benefits {
    padding: 64px 0;
  }

  .cs_api_benefits__wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 0 16px;
  }

  .cs_api_benefits__title {
    width: 100%;
    text-align: center;
  }
}

/* API Access Modal Overlay */
.cs_modal_api {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* overlay */
.cs_modal_api {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.cs_modal_api.show {
  display: flex;
}

.cs_modal_api_wrapper {
  position: relative;
  width: 50%;
  max-width: 800px;
  height: 80%;
  max-height: calc(100% - 40px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.cs_modal_api_close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  color: #292929;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}

.cs_modal_api_iframe {
  flex: 1;
  width: 100%;
  border: none;
}

@media (max-width: 768px) {
  .cs_modal_api {
    padding: 10px;
  }

  .cs_modal_api_close {
    font-size: 24px;
    top: 8px;
    right: 8px;
  }

  .cs_modal_api_wrapper {
    width: 360px;
    height: 100%;
  }
}

/*--------------------------------------------------------------
  21 - Contato
----------------------------------------------------------------*/
/* ==== Contato ==== */

/*--------------------------------------------------------------
  21 - Outros
----------------------------------------------------------------*/

.cs_cta_dark {
  position: relative;
  overflow: hidden;
  background: #1e2433;
  border-radius: 20px;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.cs_cta_dark::before,
.cs_cta_dark::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.cs_cta_dark::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.cs_cta_dark::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
}

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

.cs_cta_dark h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #4ac8d3 0%, #2691a6 100%);
  background-clip: text;
  color: transparent;
}

.cs_cta_dark .highlight {
  font-weight: 600;
  color: #fff;
}

.cs_cta_dark p {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.cs_button_secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4ac8d3;
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.cs_button_secondary:hover {
  background: #2691a6;
  transform: translateY(-2px);
}

.cs_button_banner {
  width: 100%;
}

.cs_button_banner img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 20px #4ac8d3, 0 0 150px #2691a6;
  display: block;
}

/* Por padrão, ocultar a versão mobile */
.cs_button_banner img.mobile {
  display: none;
}

/* Até 767px (mobile): mostrar só a versão mobile */
@media (max-width: 767px) {
  .cs_button_banner img.desktop {
    display: none;
  }
  .cs_button_banner img.mobile {
    display: block;
  }
}

.cs_arrow_btn {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  border: none;
  outline: none;
}

.cs_arrow_btn.cs_size_lg {
  height: 64px;
  width: 64px;
}

@media (max-width: 575px) {
  .cs_arrow_btn.cs_size_lg {
    height: 56px;
    width: 56px;
  }
}

.cs_arrow_btn:hover {
  background-color: var(--white-color);
  color: var(--heading-color);
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.cs_arrow_btn.cs_white_bg.cs_heading_color:hover {
  background-color: var(--heading-color);
  color: var(--white-color);
}

.cs_brackets_title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cs_brackets_title::before {
  content: "[";
}

.cs_brackets_title::after {
  content: "]";
}

.cs_values_card.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

.cs_values_card.cs_style_1 .cs_values_card_left {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 326px;
  width: 100%;
}

@media (max-width: 991px) {
  .cs_values_card.cs_style_1 .cs_values_card_left {
    max-width: 100%;
  }
}

.cs_values_card.cs_style_1 .cs_values li {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--heading-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 15px;
}

.cs_values_card.cs_style_1 .cs_values li:last-child {
  margin-bottom: 0;
}

.cs_section_heading.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px 30px;
}

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

.cs_section_heading.cs_style_1 .cs_section_title {
  max-width: 800px;
}

@media (max-width: 1400px) {
  .cs_section_heading.cs_style_1 .cs_section_title {
    max-width: 700px;
  }
}

@media (max-width: 1199px) {
  .cs_section_heading.cs_style_1 .cs_section_title {
    max-width: 600px;
  }
}

.cs_section_heading.cs_style_1 .cs_section_title span {
  background: linear-gradient(
    268deg,
    rgba(55, 72, 54, 0.8) 0.37%,
    #a0a6a1 49.66%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_section_heading.cs_style_1 .cs_section_right {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  max-width: 330px;
}

@media (max-width: 1400px) {
  .cs_section_heading.cs_style_1 .cs_section_right {
    max-width: 260px;
  }
}

@media (max-width: 991px) {
  .cs_section_heading.cs_style_1 .cs_section_right {
    max-width: 220px;
  }
}

.cs_section_heading.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px 50px;
}

@media (max-width: 991px) {
  .cs_section_heading.cs_style_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.cs_section_heading.cs_style_2 .cs_section_title span {
  background: linear-gradient(
    -15deg,
    rgba(55, 72, 54, 0.8) 0.37%,
    #a0a6a1 49.66%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_section_heading.cs_style_2 .cs_section_right {
  -webkit-box-flex: 0;
  flex: none;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.cs_section_heading.cs_style_2.cs_color_1 .cs_section_title span {
  background: var(
    --blue-gradient,
    linear-gradient(90deg, #4ac8d3 0%, #2691a6 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_section_heading.cs_style_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cs_section_heading.cs_style_4 .cs_section_title span {
  background: linear-gradient(
    223deg,
    rgba(55, 72, 54, 0.8) 0.37%,
    #a0a6a1 49.66%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_section_heading.cs_style_5 .cs_section_title span {
  background: linear-gradient(
    223deg,
    rgba(55, 72, 54, 0.8) 0.37%,
    #a0a6a1 49.66%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_section_heading.cs_style_5 .cs_brackets_title {
  margin-bottom: 64px;
}

@media (max-width: 1199px) {
  .cs_section_heading.cs_style_5 .cs_brackets_title {
    margin-bottom: 30px;
  }
}

.cs_img_box.cs_style_1 {
  padding-right: 56px;
}

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

@media (max-width: 1199px) {
  .cs_img_box.cs_style_1 {
    padding-right: 0px;
  }
}

.cs_img_box.cs_style_1 img {
  width: 100%;
  border-radius: 20px;
}

.cs_img_box.cs_style_2 {
  margin-right: -20px;
}

@media (max-width: 1400px) {
  .cs_img_box.cs_style_2 {
    margin-right: 0px;
  }
}

.cs_video_block.cs_style_1 {
  height: 300px;
  position: relative;
}

.cs_video_block.cs_style_1.cs_type_1 {
  height: 380px;
}

.cs_player_btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs_player_btn svg {
  position: relative;
  z-index: 2;
}

.cs_player_btn:before,
.cs_player_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  border-radius: 50%;
}

.cs_player_btn:before {
  z-index: 0;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.cs_player_btn:after {
  z-index: 1;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.cs_player_btn span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 20px solid currentColor;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

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

.cs_brand.cs_style_1 img {
  display: inline-block;
}

.cs_gallery.cs_style_1 {
  position: relative;
  overflow: hidden;
  height: 383px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_gallery.cs_style_1::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--heading-color);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_gallery.cs_style_1 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_gallery.cs_style_1 .cs_gallery_info_wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.cs_gallery.cs_style_1 .cs_gallery_info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px;
  z-index: 2;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    102deg,
    rgba(255, 255, 255, 0.5) 2.43%,
    rgba(255, 255, 255, 0.1) 91.88%
  );
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_gallery.cs_style_1:hover::before {
  opacity: 0.75;
  border-radius: 20px;
}

.cs_gallery.cs_style_1:hover img {
  border-radius: 20px;
}

.cs_gallery.cs_style_1:hover .cs_gallery_info {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.cs_isotop.cs_style_1 > *:nth-child(2) .cs_gallery.cs_style_1 {
  height: 694px;
}

.cs_isotop.cs_style_1 > *:nth-child(3) .cs_gallery.cs_style_1 {
  height: 287px;
}

.cs_isotop.cs_style_1 > *:nth-child(4) .cs_gallery.cs_style_1 {
  height: 480px;
}

.cs_isotop.cs_style_1 > *:nth-child(6) .cs_gallery.cs_style_1 {
  height: 190px;
}

.cs_map {
  height: 620px;
}

.cs_map iframe {
  height: 100%;
  width: 100%;
  border: none;
  border-radius: 20px;
}

.cs_form_field {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  padding: 13px 20px;
  border-radius: 10px;
  background-color: white;
  border: 1px solid var(--heading-color);
}

.cs_form_field:hover {
  background-color: rgb(241 251 255);
  border: 1px solid rgb(126, 198, 226);
}

.cs_contact_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px 50px;
}

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

@media (max-width: 575px) {
  .cs_project_details_info {
    gap: 10px 25px;
  }
}

.cs_project_details_image {
  height: 485px;
  border-radius: 20px;
}

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

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

.cs_post_meta.cs_style_1 > * {
  position: relative;
  display: inline-block;
}

.cs_post_meta.cs_style_1 > *:not(:last-child) {
  margin-right: 14px;
  padding-right: 14px;
}

.cs_post_meta.cs_style_1 > *:not(:last-child)::before {
  content: "";
  height: 20px;
  width: 1px;
  border-radius: 2px;
  background-color: var(--body-color);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
}

.cs_post.cs_style_1 .cs_post_thumb {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 25px;
}

.cs_post.cs_style_1 .cs_post_thumb::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_post.cs_style_1 .cs_post_thumb img {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.cs_post.cs_style_1 a.cs_post_thumb:hover::after {
  opacity: 1;
}

.cs_post.cs_style_1 a.cs_post_thumb:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.cs_post.cs_style_1 .cs_post_meta {
  margin-bottom: 10px;
}

.cs_post.cs_style_1 .cs_post_title {
  margin-bottom: 15px;
  font-size: 32px;
  line-height: 1.25em;
}

@media (max-width: 1400px) {
  .cs_post.cs_style_1 .cs_post_title {
    font-size: 28px;
  }
}

@media (max-width: 1199px) {
  .cs_post.cs_style_1 .cs_post_title {
    font-size: 26px;
  }
}

.cs_post.cs_style_1 .cs_post_title a {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, currentColor),
    to(currentColor)
  );
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1),
    color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}

.cs_post.cs_style_1 .cs_post_title a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.cs_post.cs_style_1 .cs_post_sub_title {
  margin-bottom: 14px;
  line-height: 1.6em;
}

.cs_post.cs_style_1 p {
  margin-bottom: 35px;
  line-height: 1.75em;
}

.cs_post.cs_style_1 .embed-responsive {
  margin-bottom: 35px;
  border-radius: 15px;
  overflow: hidden;
}

.cs_post.cs_style_1 h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 1400px) {
  .cs_post.cs_style_1 h3 {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .cs_post.cs_style_1 h3 {
    font-size: 24px;
  }
}

.cs_post.cs_style_1 blockquote {
  font-size: 20px;
  line-height: 1.7em;
  border-left: 5px solid var(--heading-color);
  background-color: var(--gray-color);
  padding: 40px 35px;
  color: var(--heading-color);
  margin-bottom: 35px;
  border-radius: 0 15px 15px 0;
}

@media (max-width: 991px) {
  .cs_post.cs_style_1 blockquote {
    font-size: 18px;
    padding: 25px 20px;
  }
}

.cs_post.cs_style_1 blockquote small {
  display: block;
  position: relative;
  color: var(--body-color);
  font-size: 16px;
  line-height: 1.9em;
  font-style: initial;
  font-weight: 400;
  margin-top: 15px;
  padding-left: 35px;
}

.cs_post.cs_style_1 blockquote small::before {
  content: "";
  height: 2px;
  width: 20px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  background-color: var(--heading-color);
}

.cs_post.cs_style_1.cs_type_1 {
  font-size: 18px;
  line-height: 1.7em;
}

@media (max-width: 991px) {
  .cs_post.cs_style_1.cs_type_1 {
    font-size: 16px;
  }
}

.cs_post.cs_style_1.cs_type_1 .cs_post_title {
  font-size: 40px;
}

@media (max-width: 1400px) {
  .cs_post.cs_style_1.cs_type_1 .cs_post_title {
    font-size: 32px;
  }
}

@media (max-width: 1199px) {
  .cs_post.cs_style_1.cs_type_1 .cs_post_title {
    font-size: 28px;
  }
}

.cs_post_1_list .cs_post.cs_style_1:not(:first-child) {
  margin-top: 60px;
}

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

.cs_pagination_box {
  margin: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cs_pagination_box .cs_pagination_item {
  margin: 5px;
}

.cs_pagination_item {
  height: 42px;
  width: 42px;
  border-radius: 7px;
  background-color: var(--gray-color);
}

.cs_pagination_item:hover {
  background-color: var(--heading-color);
  color: #fff;
}

.cs_pagination_item.active {
  background-color: var(--heading-color);
  color: #fff;
  pointer-events: none;
}

/* Modal overlay */
.cs_modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: auto;
}

.cs_modal.show {
  display: flex;
}

.cs_modal_content {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: cs_modal_open 0.5s ease-out;
  width: 600px;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes cs_modal_open {
  from {
    opacity: 0;
    transform: translateY(-70px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cs_modal_close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  z-index: 1;
}

.cs_modal_close:hover {
  color: #000;
}

.cs_modal_body {
  display: flex;
  height: 100%;
}

.cs_modal_image {
  flex: 1;
  overflow: hidden;
}

.cs_modal_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs_modal_form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.cs_modal_form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.cs_form_group {
  margin-bottom: 15px;
}

.cs_form_group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.cs_form_group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.cs_submit_btn {
  width: 100%;
  padding: 12px;
  background-color: #f5a623;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cs_submit_btn:hover {
  background-color: #e69312;
}

.cs_modal_note {
  margin-top: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.cs_modal_note_desc {
  color: #666;
  font-size: 14px;
  line-height: 1.2;
}

.cs_modal_footer {
  text-align: center;
}

.cs_modal_footer img {
  max-width: 150px;
  margin-top: 10px;
}

@media (max-width: 1366px) and (min-width: 1025px) {
  .cs_modal_content {
    width: 550px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .cs_modal_content {
    width: 480px;
  }
}

@media (max-width: 768px) {
  .cs_modal_content {
    width: 90%;
    margin: 10% auto;
    max-height: calc(100% - 40px);
  }

  .cs_modal_body {
    flex-direction: column;
  }

  .cs_modal_image {
    display: none;
  }
}

.cs_privacy_policy {
  display: flex;
}

.cs_privacy_policy h3 {
  color: #243663;
}

.cs_privacy_policy p {
  color: #292929;
}

.cs_terms_use {
  display: flex;
}

.cs_terms_use h3 {
  color: #243663;
}

.cs_terms_use p {
  color: #292929;
}

.grecaptcha-badge {
  display: none !important;
}

.product-item {
  display: flex;
}

.product-item img {
  max-width: 100px;
}

/* Botão fixo, permite que o ícone exceda o box preto */
.cs-carousel-btn {
  position: fixed;
  bottom: 35px;
  left: 35px;
  z-index: 100000;
  display: inline-flex;
  align-items: center;
  overflow: visible; /* deixa o ícone “saltar” para fora */
  width: 64px;
  height: 64px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 64px;
  cursor: pointer;
  transition: width 0.3s ease;
  filter: drop-shadow(0 0 5px #4ac7d357) drop-shadow(0 0 10px #2691a644);
}

/* Ícone de play maior que o box */
.cs-carousel-btn-icon {
  position: relative;
  flex: 0 0 auto;
  width: 75px;
  height: 75px;
  background: #4ac8d3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cs-icon-pulse 3s ease-in-out infinite;
}
.cs-carousel-btn-icon::after {
  content: "▶";
  font-size: 2rem;
  color: #fff;
  margin-left: 4px;
}

/* Texto oculto até o hover */
.cs-carousel-btn-text {
  flex: 0 0 auto;
  margin-left: 18px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Expande o fundo escuro no hover e mostra texto */
.cs-carousel-btn:hover {
  width: 310px;
  background: #1f1f1f;
  border-radius: 32px;
  filter: drop-shadow(0 0 5px #4ac8d3) drop-shadow(0 0 10px #2691a6);
}
.cs-carousel-btn:hover .cs-carousel-btn-text {
  opacity: 1;
}

.cs-carousel-btn-box {
  display: flex;
  flex-direction: column;
}

.cs-carousel-btn-title {
  color: #4ac8d3;
  font-size: 14px;
  font-weight: bold;
}

.cs-carousel-btn-subtitle {
  color: #fbb03b;
}

/* Keyframes de pulso laranja */
@keyframes cs-icon-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
}

/* === Tablet / grandes smartphones === */
@media (max-width: 768px) {
  .cs-carousel-btn {
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
  }
  .cs-carousel-btn-icon {
    width: 64px;
    height: 64px;
    margin-left: -4px; /* para centralizar o círculo maior */
  }
  .cs-carousel-btn:hover {
    width: 260px; /* mantém expansão mas menor que no desktop */
  }
  .cs-carousel-btn-text {
    margin-left: 14px;
  }
}

/* === Smartphones pequenos === */
@media (max-width: 425px) {
  .cs-carousel-btn {
    bottom: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
  }
  .cs-carousel-btn-icon {
    width: 56px;
    height: 56px;
    margin-left: -4px;
    animation: cs-icon-pulse 2.5s ease-in-out infinite; /* mais suave */
  }
  .cs-carousel-btn:hover {
    width: 220px;
  }
  .cs-carousel-btn-text {
    margin-left: 12px;
    font-size: 0.9rem;
  }
  .cs-carousel-btn-title {
    font: small-caption;
  }
  .cs-carousel-btn-subtitle {
    font: small-caption;
  }
}

/* === Spinner Recaptcha === */
.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  animation: spin 0.8s linear infinite;
  margin-left: 6px;
  vertical-align: middle;
}

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