/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
01. Google Fonts
02. Color Variable
03. Typography
04. Preloader
05. Spacing
06. General
07. Slider
08. Video Modal
09. Header
10. Footer
11. Sidebar
12. Isotope
13. Hero
14. Cards
15. Iconbox
16. Pricing
17. Testimonial
18. Layouts and Sections
19. Post
20. Team
--------------------------------------------------------------*/
/*--------------------------------------------------------------
 01.  Google Fonts Integration
----------------------------------------------------------------*/

/*--------------------------------------------------------------
02. Color Variable
----------------------------------------------------------------*/
:root {
  --white-color: #fff;
  --black-color: #000;
  --heading-color: #1A1A2E;
  --body-color: #737373;
  --accent-color: #013228;
  --border-color: #737373;
  --theme-color-1: #E3FFCD;
  --theme-color-2: #7341F1;
  --theme-color-3: #FED91F;
  --theme-color-4: #E3FFCD;
  --theme-color-5: #F16615;
  --green-color: #62EC30;
  --gray-color-1: #F5F7FA;
  --gray-color-2: #ECF1F5;
  --heading-font: "Inter", sans-serif;
  --body-font: "Inter", sans-serif;
}


:root {
  --primary-color: #000000;
  --secondary-color: #FFCE1A;
  --color-three: #737373;
}

/*--------------------------------------------------------------
03. Typography
----------------------------------------------------------------*/
body,
html {
  color: var(--body-color);
  font-family: var(--heading-font);
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
  overflow-x: clip;
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2em;
  font-family: var(--heading-font);
}

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;
  line-height: 1.6em;
}

@media (max-width:768px) {
  p {
    font-size: 14px;
    line-height: 25px;
  }
}

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;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--accent-color);
}

table {
  width: 100%;
  margin-bottom: 25px;
}

table th {
  font-weight: 600;
  color: var(--body-color);
}

table td,
table th {
    border: 1px solid #d1d1d1;
    padding: 4px;
    background-color: #ffce1a08;
    font-size: 14px;  
}

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);
  transition: all 0.4s ease;
}

/*--------------------------------------------------------------
  04. Preloader
----------------------------------------------------------------*/
.cs_preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  top: 0;
  width: 100%;
  height: 100vh;
}

.cs_preloader_in {
  width: 110px;
  height: 110px;
  position: relative;
  border-radius: 50%;
  border: 4px solid var(--theme-color-2);
}

.cs_preloader_in span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: spin 3s linear infinite;
}

.cs_preloader_in span::before,
.cs_preloader_in span::after {
  content: "";
  width: 50%;
  height: 50%;
  border-radius: inherit;
  position: absolute;
  top: 0;
}

.cs_preloader_in span::before {
  background-color: var(--theme-color-3);
  left: 58px;
}

.cs_preloader_in span::after {
  background-color: var(--theme-color-2);
  right: 58px;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*--------------------------------------------------------------
  05. 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;
  }

  .cs_height_151 {
    height: 151px;
  }

  .cs_height_152 {
    height: 152px;
  }

  .cs_height_153 {
    height: 153px;
  }

  .cs_height_154 {
    height: 154px;
  }

  .cs_height_155 {
    height: 155px;
  }

  .cs_height_156 {
    height: 156px;
  }

  .cs_height_157 {
    height: 157px;
  }

  .cs_height_158 {
    height: 158px;
  }

  .cs_height_159 {
    height: 159px;
  }

  .cs_height_160 {
    height: 160px;
  }

  .cs_height_161 {
    height: 161px;
  }

  .cs_height_162 {
    height: 162px;
  }

  .cs_height_163 {
    height: 163px;
  }

  .cs_height_164 {
    height: 164px;
  }

  .cs_height_165 {
    height: 165px;
  }

  .cs_height_166 {
    height: 166px;
  }

  .cs_height_167 {
    height: 167px;
  }

  .cs_height_168 {
    height: 168px;
  }

  .cs_height_169 {
    height: 169px;
  }

  .cs_height_170 {
    height: 170px;
  }
}

@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_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;
  }
}

/*--------------------------------------------------------------
  06. General
----------------------------------------------------------------*/
.cs_fs_12 {
  font-size: 12px;
}

.cs_fs_14 {
  font-size: 14px;
}

.cs_fs_15 {
  font-size: 15px;
}

.cs_fs_16 {
  font-size: 16px;
}

.cs_fs_18 {
  font-size: 18px;
  line-height: 1.56em;
}

@media (max-width: 575px) {
  .cs_fs_18 {
    font-size: 16px;
  }
}

.cs_fs_20 {
  font-size: 20px;
  line-height: 1.5em;
}

.cs_fs_22 {
  font-size: 22px;
  line-height: 1.4em;
}

@media (max-width: 575px) {
  .cs_fs_22 {
    font-size: 20px;
  }
}

.cs_fs_24 {
  font-size: 24px;
  line-height: 1.4em;
}

@media (max-width: 575px) {
  .cs_fs_24 {
    font-size: 22px;
  }
}

.cs_fs_29 {
  font-size: 29px;
  line-height: 1.21em;
}

@media (max-width: 575px) {
  .cs_fs_29 {
    font-size: 24px;
  }
}

.cs_fs_30 {
  font-size: 30px;
  line-height: 1.33em;
}

@media (max-width: 575px) {
  .cs_fs_30 {
    font-size: 28px;
  }
}

.cs_fs_32 {
  font-size: 32px;
  line-height: 1.5em;
}

.cs_fs_36 {
  font-size: 36px;
  line-height: 1.28em;
}

.cs_fs_40 {
  font-size: 40px;
  line-height: 1.45em;
}

.cs_fs_48 {
  font-size: 48px;
  line-height: 1.21em;
}

@media (max-width: 1199px) {
  .cs_fs_48 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .cs_fs_48 {
    font-size: 30px;
  }
}

.cs_fs_50 {
  font-size: 50px;
  line-height: 1.3em;
}

@media (max-width: 1199px) {
  .cs_fs_50 {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .cs_fs_50 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .cs_fs_50 {
    font-size: 36px;
  }
}

.cs_fs_64 {
  font-size: 64px;
  line-height: 1.2em;
}

@media (max-width: 1399px) {
  .cs_fs_64 {
    font-size: 60px;
  }
}

@media (max-width: 1199px) {
  .cs_fs_64 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .cs_fs_64 {
    font-size: 52px;
  }
}

@media (max-width: 575px) {
  .cs_fs_64 {
    font-size: 42px;
  }
}

.cs_fs_74 {
  font-size: 74px;
  line-height: 1.14em;
}

@media (max-width: 1199px) {
  .cs_fs_74 {
    font-size: 64px;
  }
}

@media (max-width: 575px) {
  .cs_fs_74 {
    font-size: 52px;
  }
}

.cs_heading_font {
  font-family: var(--heading-font);
}

.cs_body_font {
  font-family: var(--body-font);
}

.cs_light {
  font-weight: 300;
}

.cs_normal {
  font-weight: 400;
}

.cs_medium {
  font-weight: 500;
}

.cs_semibold {
  font-weight: 600;
}

.cs_bold {
  font-weight: 700;
}

.cs_extra_bold {
  font-weight: 800;
}

.cs_black {
  font-weight: 900;
}

.cs_white_color {
  color: var(--white-color);
}

.cs_heading_color {
  color: var(--heading-color);
}

.cs_heading_primary {
  color: var(--primary-color);
}

.cs_heading_secondary {
  color: var(--secondary-color);
}

.cs_body_color {
  color: var(--body-color) !important;
}

.cs_border_color {
  color: var(--border-color);
}

.cs_green_color {
  color: var(--green-color);
}

.cs_purple_color {
  color: var(--purple-color);
}

.cs_accent_color {
  color: var(--accent-color);
}

.cs_theme_color_1 {
  color: var(--theme-color-1);
}

.cs_theme_color_2 {
  color: var(--theme-color-2);
}

.cs_theme_color_3 {
  color: var(--theme-color-3);
}

.cs_theme_color_4 {
  color: var(--theme-color-4);
}

.cs_theme_color_5 {
  color: var(--theme-color-5);
}

.cs_primary_bg {
  background-color: var(--primary-color);
}

.cs_white_bg {
  background-color: var(--white-color);
}

.cs_heading_bg {
  background-color: var(--heading-color);
}

.cs_theme_bg_1 {
  background-color: var(--theme-color-1);
}

.cs_theme_bg_2 {
  background-color: var(--theme-color-2);
}

.cs_theme_bg_3 {
  background-color: var(--theme-color-3);
}

.cs_theme_bg_4 {
  background-color: var(--theme-color-4);
}

.cs_body_bg {
  background-color: var(--body-color);
}

.cs_accent_bg {
  background-color: var(--accent-color);
}

.cs_gray_bg {
  background-color: var(--gray-color-2);
}

.cs_gray_bg_1 {
  background-color: #F2FCF7;
}

.cs_gray_bg_2 {
  background-color: #F5F5F5;
}

.cs_gray_bg_3::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background: linear-gradient(270deg, #936DFF 0%, #00CC61 100%);
  position: absolute;
  left: 0;
  top: 0;
}

.cs_gray_bg_4 {
  background-color: #F7F7FA;
}

.cs_gray_bg_5 {
  background-color: #00F043;
}

.cs_gray_bg_6 {
  background-color: #EEF5FF;
}
.cs_gray_bg_7{
  background-color: var(--color-three);
}
.cs_theme_bg_1 {
  background-color: var(--theme-color-1);
}

.cs_theme_bg_2 {
  background-color: var(--theme-color-2);
}

.cs_theme_bg_3 {
  background-color: var(--theme-color-3);
}

.cs_theme_bg_4 {
  background-color: var(--theme-color-4);
}

.cs_theme_bg_5 {
  background-color: var(--theme-color-5);
}

.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_bg_shape_1 {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  opacity: 0.05;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cs_radius_3 {
  border-radius: 3px;
}

.cs_radius_4 {
  border-radius: 4px;
}

.cs_radius_5 {
  border-radius: 5px;
}

.cs_radius_7 {
  border-radius: 7px;
}

.cs_radius_8 {
  border-radius: 8px;
}

.cs_radius_10 {
  border-radius: 10px;
}

.cs_radius_12 {
  border-radius: 12px;
}

.cs_radius_15 {
  border-radius: 15px;
}

.cs_radius_16 {
  border-radius: 16px;
}

.cs_radius_20 {
  border-radius: 20px;
}

.cs_radius_30 {
  border-radius: 30px;
}

.cs_radius_40 {
  border-radius: 40px;
}

.cs_radius_50 {
  border-radius: 50px;
}

.cs_radius_50_50 {
  border-radius: 50px 50px 0 0;
}

.cs_radius_100 {
  border-radius: 50%;
}

.cs_mp_0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cs_has_before_after::before,
.cs_has_before_after::after {
  content: "";
  width: 65px;
  height: 1px;
  position: absolute;
  top: 15px;
}

.cs_has_before_after::before {
  background: linear-gradient(270deg, #6C6C6C 0%, #FFF 100%);
  right: calc(100% + 15px);
}

.cs_has_before_after::after {
  background: linear-gradient(90deg, #6C6C6C 0%, #FFF 100%);
  left: calc(100% + 15px);
}

/*----------------------------------
  Form Elements Classes
 ----------------------------------*/
.cs_form_field {
  display: block;
  width: 100%;
  resize: none;
  outline: none;
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.cs_form_field:focus {
  border-color: var(--accent-color);
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cs_result {
  font-size: 14px;
  color: var(--accent-color);
}

/*----------------------------------
  Bootstrap Classes
 ----------------------------------*/
.cs_row_gap_30 {
  margin-left: -15px;
  margin-right: -15px;
}

.cs_row_gap_30>* {
  padding-left: 15px;
  padding-right: 15px;
}

.cs_gap_y_20 {
  gap: 20px 0;
}

.cs_gap_y_30 {
  gap: 30px 0;
}

.cs_gap_y_40 {
  gap: 40px 0;
}

@media (max-width:768px) {
  .cs_gap_y_30 {
    gap: 15px;
  }
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--border-color);
  opacity: 0.5;
}

.cs_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs_center_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cs_mt_90 {
  margin-top: -90px;
}

/*-----------------------------------
  Buttons & Social Buttons
 ------------------------------------*/
.cs_btn.cs_style_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border: 0;
  outline: 0;
  padding: 21px 30px;
  line-height: 1em;
  border-radius: 100px;
  gap: 8px;
  position: relative;
  transition: all 0.5s ease;
}

.cs_btn.cs_style_1.cs_bg_1 {
  background-color: var(--secondary-color);
}

.cs_btn.cs_style_1.cs_outline {
  border: 1px solid var(--heading-color);
}

.cs_btn.cs_style_1>* {
  position: relative;
  z-index: 1;
}

.cs_btn.cs_style_1 .cs_btn_icon {
  width: 16px;
  overflow: hidden;
}

.cs_btn.cs_style_1 i {
  text-shadow: -20px 0px 0px currentColor;
  transition: all 0.3s ease;
}

.cs_btn.cs_style_1:hover {
  color: var(--white-color);
}

.cs_btn.cs_style_1:hover.cs_bg_1 {
  background-color: black;
}

.cs_btn.cs_style_1:hover.cs_outline {
  background-color: var(--heading-color);
}

.cs_btn.cs_style_1:hover.cs_theme_bg_4 {
  color: var(--heading-color);
  background-color: var(--theme-color-3);
}

.cs_btn.cs_style_1:hover i {
  transform: translateX(20px);
}

@media (max-width: 575px) {
  .cs_btn.cs_style_1 {
    padding: 18px 30px;
  }
}

.cs_player_btn.cs_style_1 {
  width: 38px;
  height: 38px;
}

.cs_player_btn.cs_style_1::before,
.cs_player_btn.cs_style_1::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--theme-color-3);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: button-pulse 4s linear infinite;
}

.cs_player_btn.cs_style_1.cs_white_bg::before,
.cs_player_btn.cs_style_1.cs_white_bg::after {
  background-color: var(--white-color);
}

.cs_player_btn.cs_style_1.cs_theme_bg_2::before,
.cs_player_btn.cs_style_1.cs_theme_bg_2::after {
  background-color: var(--theme-color-2);
}

.cs_player_btn.cs_style_1::after {
  animation-delay: 2s;
}

.cs_player_btn.cs_style_1 i {
  margin-left: 4px;
}

.cs_player_btn.cs_style_1>* {
  position: relative;
  z-index: 1;
}

.cs_cta_btn {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 3px 28px;
  border: 1px solid var(--white-color);
  border-radius: 100px;
}

.cs_cta_btn:hover {
  background-color: var(--theme-color-1);
  border-color: var(--theme-color-1);
  color: var(--heading-color);
}

.cs_social_links.cs_style_1 {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.cs_social_links.cs_style_1 a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  position: relative;
}

.cs_social_links.cs_style_1 a>* {
  position: relative;
  z-index: 2;
}

.cs_social_links.cs_style_1 a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(#737373, #000000);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.cs_social_links.cs_style_1 a::after {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: inherit;
  background-color: #EFEFEF;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.cs_social_links.cs_style_1 a:hover {
  color: var(--white-color);
}

.cs_social_links.cs_style_1 a:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

/*-------------------------------
 Scroll up button
---------------------------------*/
.cs_scrollup {
  width: 50px;
  height: 50px;
  border: 0;
  outline: 0;
  position: fixed;
  bottom: 50px;
  right: 10px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  z-index: 9999;
}

.cs_scrollup.cs_scrollup_show {
  transform: translateY(0);
  opacity: 1;
}

/*-------------------------------
 Section Heading
---------------------------------*/
.cs_section_heading.cs_style_1 .cs_section_subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 100px;
  position: relative;
}

.cs_section_heading.cs_style_1 .cs_section_subtitle::before {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(90deg, #7341F1 0%, #2EB67D 100%);
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
}

.cs_section_heading.cs_style_1 .cs_section_subtitle::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  border-radius: inherit;
  position: absolute;
  left: 1px;
  top: 1px;
}

.cs_section_heading.cs_style_1 .cs_section_subtitle.cs_type_1::after {
  background-color: var(--accent-color);
}

.cs_section_heading.cs_style_1 .cs_section_subtitle>* {
  position: relative;
  z-index: 1;
}

.cs_section_heading.cs_style_1.cs_type_1 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cs_section_heading.cs_style_1 .cs_brand_title {
  letter-spacing: -0.4px;
}

@media (max-width: 991px) {
  .cs_section_heading.cs_style_1 br {
    display: none;
  }

  .cs_section_heading.cs_style_1.cs_type_1 {
    flex-direction: column;
  }
}

/*-----------------------------------------
 Page heading
-------------------------------------------*/
.cs_page_heading {
  width: 100%;
  padding: 200px 0 100px;
  background-color: #dddddd;
  background-image: url(../images/breadcrumb-2.png);
}

.cs_page_heading .breadcrumb-title {
  font-size: 40px;
  font-weight: 700;
  color: rgb(0, 0, 0);
}

@media (max-width: 991px) {
  .cs_page_heading {
    padding: 110px 0 40px;
  }

  .cs_sidebar.cs_style_1 .cs_service_category_list a {
    padding: 10px 15px;
  }

  .cs_page_heading .breadcrumb-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
  }
}

.cs_page_heading .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: rgb(0, 0, 0);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.cs_page_heading .breadcrumb {
  display: inline-flex;
  justify-content: center;
  margin: 0;
}

.cs_page_heading .breadcrumb-item {
  color: rgb(0, 0, 0);
}

.cs_page_heading .breadcrumb-item.active {
  color: rgb(0, 0, 0);
}

.cs_page_heading .breadcrumb-item:hover {
  color: rgb(0, 0, 0);
}

/*------------------------------------
 Shapes
--------------------------------------*/
.cs_star_shape_1 {
  top: 140px;
  left: 8%;
  animation: circular-rotation 10s linear infinite;
  animation-direction: reverse;
}


  .cs_star_shape_1,
  .cs_vector_shape_1 {
    display: none;
  }


.cs_star_shape_2 {
  top: 20px;
  left: 8%;
  animation: circular-rotation 10s linear infinite;
  animation-direction: reverse;
}

.cs_star_shape_3 {
  bottom: 40px;
  right: 7%;
  animation: circular-rotation 10s linear infinite;
}

.cs_star_shape_4 {
  bottom: 88px;
  right: 68px;
  animation: circular-rotation 10s linear infinite;
}

.cs_star_shape_5 {
  bottom: 102px;
  right: 115px;
  animation: circular-rotation 10s linear infinite;
}

.cs_vector_shape_1 {
  right: 8%;
  bottom: 0;
  animation: rotation-y 10s linear infinite;
}

.cs_vector_shape_4 {
  right: 0;
  bottom: 0;
  animation: slide-right 10s linear infinite;
}

.cs_vector_shape_5 {
  top: -80px;
  right: -80px;
}

.cs_vector_shape_6 {
  width: 219px;
  height: 611px;
  border-radius: 611px;
  background: linear-gradient(187deg, #62EC30 5.76%, rgba(98, 236, 48, 0) 147.33%);
  filter: blur(300px);
  left: -183px;
  bottom: 0;
}

.cs_vector_shape_7 {
  width: 293px;
  height: 1249px;
  border-radius: 1249px;
  background: linear-gradient(207deg, #FECE00 33.64%, rgba(254, 206, 0, 0) 106.3%);
  filter: blur(493.5px);
  top: 0;
  right: -100px;
}

.cs_vector_shape_8 {
  top: 80px;
  left: 3%;
  animation: rotation-y 10s linear infinite;
}

.cs_vector_shape_9 {
  width: 127px;
  height: 616px;
  border-radius: 616px;
  background: linear-gradient(207deg, #7341F1 27.07%, rgba(254, 206, 0, 0) 69.44%);
  filter: blur(209.5px);
  top: 32%;
  left: 3%;
}

.cs_elipse_2,
.cs_elipse_3,
.cs_elipse_4 {
  width: 641px;
  height: 641px;
  opacity: 0.6;
}

.cs_elipse_2 {
  background: linear-gradient(197deg, #E3FFCD -22.98%, rgba(250, 248, 255, 0) 99.39%);
  top: -220px;
  right: -150px;
}

.cs_elipse_3 {
  background: linear-gradient(197deg, #E3FFCD -22.98%, rgba(250, 248, 255, 0) 99.39%);
  top: -220px;
  right: -220px;
}

.cs_elipse_4 {
  background: linear-gradient(205deg, #E3FFCD -14.5%, rgba(227, 255, 205, 0) 89.88%);
  top: -190px;
  right: -150px;
}

.cs_vector_shape_2 {
  top: 45px;
  right: 45px;
}

.cs_pricing_shape_2 {
  top: 80px;
  right: 0;
  opacity: 0.75;
}

.cs_pricing_shape_3 {
  top: 140px;
  left: 6%;
  animation: rotation-y 10s linear infinite;
}

.cs_pricing_shape_4 {
  top: 140px;
  right: 10%;
  animation: rotation-y 10s linear infinite;
}

.cs_pricing_shape_5 {
  bottom: 83px;
  left: 5%;
  animation: circular-rotation 10s linear infinite;
}

.cs_feature_shape_1 {
  top: 17%;
  right: 6%;
  animation: circular-rotation 10s linear infinite;
}

.cs_feature_shape_2 {
  left: 4%;
  bottom: 6%;
  animation: rotation-y 10s linear infinite;
}

/*-----------------------------------
  Start Review 
 ------------------------------------*/
.cs_rating_percentage,
.cs_rating {
  overflow: hidden;
}

.cs_rating_percentage::before,
.cs_rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
}

.cs_rating {
  width: 97px;
  flex: none;
  height: 24px;
  position: relative;
  color: #FF5E14;
  font-size: 14px;
  letter-spacing: 4px;
}

.cs_rating::before {
  font-weight: 400;
}

.cs_rating_percentage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.cs_rating_percentage::before {
  font-weight: 900;
}

/*-----------------------------------------
 Lists
-------------------------------------------*/
.cs_mp_0 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs_list.cs_style_1 li {
  position: relative;
  padding-left: 46px;
}

.cs_list.cs_style_1 li:not(:last-child) {
  margin-bottom: 26px;
}

.cs_list.cs_style_1 img {
  position: absolute;
  top: 0;
  left: 0;
}

.cs_list.cs_style_2 {
  display: flex;
  gap: 30px 40px;
  flex-wrap: wrap;
}

.cs_list.cs_style_2 li {
  width: calc(50% - 20px);
  position: relative;
  padding-left: 25px;
}

.cs_list.cs_style_2 .cs_list_icon {
  position: absolute;
  top: 0px;
  left: 0;
}

@media (max-width: 767px) {
  .cs_list.cs_style_2 li {
    width: 100%;
  }
}

/*-----------------------------------------
 FAQ & Accordian
-------------------------------------------*/
.cs_faq.cs_style_1 .cs_faq_heading {
  max-width: 450px;
}

.cs_faq.cs_style_1 .cs_faq_shape_1 {
  top: 0;
  right: 0;
}

.cs_faq.cs_style_1 .cs_faq_shape_2 {
  left: 5%;
  bottom: 85px;
  animation: circular-rotation 10s linear infinite;
  animation-direction: reverse;
}

.cs_faq.cs_style_1 .cs_faq_shape_3 {
  top: 17%;
  left: 7%;
  animation: rotation-y 10s linear infinite;
}

.cs_faq.cs_style_1 .cs_faq_shape_4 {
  top: 64%;
  left: 13%;
  animation: rotation-y 10s linear infinite;
}

.cs_faq.cs_style_1 .cs_faq_shape_5 {
  top: 62%;
  left: 30%;
  animation: rotation-y 10s linear infinite;
}

.cs_faq.cs_style_1 .cs_faq_shape_6 {
  bottom: 120px;
  right: 7%;
  animation: rotation-y 10s linear infinite;
}

@media (min-width: 1400px) {
  .cs_faq.cs_style_1 .cs_faq_thumbnail {
    transform: translateX(70px);
  }
}

@media (max-width: 991px) {
  .cs_faq.cs_style_1 .cs_faq_heading {
    max-width: 100%;
  }
}

.cs_accordian.cs_style_1 {
  border: 1px solid rgba(26, 26, 46, 0.25);
}

.cs_accordian.cs_style_1 .cs_accordian_head {
  padding: 15px 66px 14px 24px;
  cursor: pointer;
}

.cs_accordian.cs_style_1 .cs_accordian_body {
  padding: 0 66px 14px 24px;
  margin-top: -5px;
}

.cs_accordian.cs_style_1 .cs_accordian_body p {
  margin-bottom: 0;
}

.cs_accordian.cs_style_1 .cs_accordian_toggler {
  width: 18px;
  height: 2px;
  background-color: var(--heading-color);
  top: 28px;
  right: 24px;
}

.cs_accordian.cs_style_1 .cs_accordian_toggler::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.4s ease;
}

.cs_accordian.cs_style_1.active .cs_accordian_head {
  pointer-events: none;
}

.cs_accordian.cs_style_1.active .cs_accordian_toggler::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.cs_accordian.cs_style_2 .cs_accordian_head {
  padding: 26px 80px 26px 24px;
  cursor: pointer;
}

.cs_accordian.cs_style_2 .cs_accordian_body {
  padding: 0 80px 14px 24px;
  margin-top: -5px;
}

.cs_accordian.cs_style_2 .cs_accordian_body p {
  margin-bottom: 0;
}

.cs_accordian.cs_style_2 .cs_accordian_toggler {
  width: 36px;
  height: 36px;
  border: 1px solid var(--body-color);
  top: 24px;
  right: 24px;
  transition: all 0.4s ease;
}

.cs_accordian.cs_style_2.active .cs_accordian_head {
  pointer-events: none;
}

.cs_accordian.cs_style_2.active .cs_accordian_toggler {
  color: var(--white-color);
  background: linear-gradient(#737373, #000000);
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .cs_accordian.cs_style_2 .cs_accordian_head {
    padding: 12px 36px 12px 12px;
  }

  .cs_accordian.cs_style_2 .cs_accordian_body {
    padding: 0 12px 12px 12px;
  }
.cs_accordian.cs_style_2 .cs_accordian_head h3{
  font-size: 15px;
}
  .cs_accordian.cs_style_2 .cs_accordian_toggler {
    top: 11px;
    right: 8px;
    width: 25px;
        height: 25px;
        font-size: 12px;
  }
  .cs_faq_wrapper_1 .cs_accordian.cs_style_2{
    margin-bottom: 10px !important;
  }
}

.cs_faq_wrapper_1 .cs_accordian.cs_style_1,
.cs_faq_wrapper_1 .cs_accordian.cs_style_2 {
  margin-bottom: 30px;
}

.cs_faq_wrapper_1 .cs_accordian.cs_style_1:last-child,
.cs_faq_wrapper_1 .cs_accordian.cs_style_2:last-child {
  margin-bottom: 0;
}

/*-----------------------------------
  Start Responsive
 ------------------------------------*/
@media (max-width: 1199px) {
  .cs_pricing_shape_2 {
    display: none;
  }
}

@media (max-width: 991px) {
  br {
    display: none;
  }
}

/*-----------------------------------
  Start Animations 
 ------------------------------------*/
@keyframes circular-rotation {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotation-y {
  100% {
    transform: rotatey(360deg);
  }
}

@keyframes slide-right {
  50% {
    transform: translateX(100px);
    opacity: 0.5;
  }
}

@keyframes button-pulse {
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
  07. Slider
----------------------------------------------------------------*/
.cs_slider {
  position: relative;
  z-index: 1;
}

.slick-arrow {
  cursor: pointer;
}

.draggable {
  cursor: url(../img/drag.png) 16 9, ew-resize !important;
}

.slick-slide>div {
  display: flex;
  flex-direction: column;
}

.cs_remove_overflow .slick-list {
  overflow: visible;
}

.cs_remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.cs_slider_gap_24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}

.cs_slider_gap_24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.cs_slider_gap_30 .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}

.cs_slider_gap_30 .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}

.slick-active .cs_testimonial.cs_style_2 .cs_avatar.cs_style_1 {
  transform: translateY(0);
  opacity: 1;
}

.slick-active .cs_testimonial.cs_style_2 .cs_quote_icon {
  opacity: 1;
  transform: translateX(-20px) scale(1);
}

/*---------------------------------------
 Infinite scrolling slider
-----------------------------------------*/
.cs_brands_slider .container {
  max-width: 1453px;
}
.cs_brands_slider .slick-slide{
  margin: 0px 15px;
}
.cs_horizontal_slider_wrapper {
  margin: 0 auto;
  overflow: hidden;
}

.cs_horizontal_slider_wrapper .cs_slider_in {
  min-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.cs_horizontal_slider_wrapper .cs_brands_list {
  min-width: 100%;
  flex: none;
  display: flex;
  align-items: center;
  gap: 100px;
  margin: 0 50px;
  animation: slider-left 30s linear infinite;
}

.cs_horizontal_slider_wrapper:hover .cs_brands_list {
  animation-play-state: paused;
}

.cs_horizontal_slider_wrapper.cs_type_1 {
  padding: 30px 40px;
}

.cs_horizontal_slider_wrapper.cs_type_1 .cs_brands_list {
  gap: 35px;
  margin: 0 18px;
}

.cs_horizontal_slider_wrapper.cs_type_1 .cs_brands_list>div {
  display: flex;
  align-items: center;
  gap: 35px;
}

/*--------------------------------------
 Arrows
-----------------------------------------*/
.cs_slider_arrows.cs_style_1 {
  position: absolute;
  right: 60px;
  bottom: 72px;
}

.cs_slider_arrows.cs_style_1.cs_type_1 {
  display: flex;
  align-items: center;
  gap: 10px;
  position: initial;
}

.cs_slider_arrows.cs_style_1.cs_type_1 .slick-arrow:hover {
  background: linear-gradient(#737373, #000000);
}

.cs_slider_arrows.cs_style_1 .slick-arrow {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0px 4px 20px rgba(7, 36, 95, 0.1));
  transition: all 0.3s ease;
}

.cs_slider_arrows.cs_style_1 .slick-arrow:hover {
  background-color: var(--theme-color-2);
  color: var(--white-color);
}

/*--------------------------------------
 Pagination
-----------------------------------------*/
.cs_pagination.cs_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 60px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.cs_pagination.cs_style_1 li {
  height: 12px;
  width: 12px;
  border-radius: 2px;
  background: var(--purple-color);
  opacity: 0.2;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_1 li.slick-active {
  opacity: 1;
}

.cs_pagination.cs_style_1 button {
  display: none;
}

@media (max-width: 991px) {
  .cs_mobile_hide {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .cs_mobile_show {
    display: none !important;
  }
}

@keyframes slider-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/*--------------------------------------------------------------
  08. Video Modal
----------------------------------------------------------------*/
.cs-pd-video .cs_video_open,
.cs-sample-img .cs_video_open {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 68px;
  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%;
  transition-delay: 0.3s;
}

.cs_video_popup.active {
  left: 0;
  transition-delay: 0s;
  left: 0;
}

.cs_video_popup-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  transition: all 0.4s ease-out;
  opacity: 0;
}

.cs_video_popup.active .cs_video_popup-overlay {
  opacity: 0.8;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cs_video_popup-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  text-align: center;
  transition: all 0.4s ease-out;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}

.cs_video_popup.active .cs_video_popup-content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cs_video_popup-content:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.cs_video_popup-container {
  display: inline-block;
  position: relative;
  text-align: left;
  background: #fff;
  max-width: 1380px;
  width: 100%;
  vertical-align: middle;
}

.cs_video_popup-container .embed-responsive {
  width: 100%;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.embed-responsive-16by9::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.embed-responsive iframe,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cs_video_popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #d90d0d;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.cs_video_popup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.cs_video_popup-close:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.cs_video_popup-close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  margin-left: -10px;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.cs_video_popup-close:hover:before,
.cs_video_popup-close:hover:after {
  background: #000;
}

.cs_video_popup-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.cs_video_popup-align {
  overflow: hidden;
}

/*End Video Popup*/
/*--------------------------------------------------------------
 09. Header
----------------------------------------------------------------*/
.cs_site_header {
  position: relative;
  z-index: 101;
}

.cs_header_shape {
  width: 100%;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 0;
}

.cs_header_shape img {
  width: 100%;
  height: 100%;
}

/* .cs_site_header.cs_style_1 {
  padding: 0 45px;
} */
.cs_site_header.cs_style_1 .cs_main_header_in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  margin: 0 auto;
  position: relative;
  background-color: var(--color-three);
  border-radius: 70px;
  margin-top: 10px;
}

.cs_site_header.cs_style_1 .cs_main_header_right {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  position: relative;
}

.cs_main_header_right .select-currency {
  background-color: black;
  color: white;
  padding: 13px;
  border-radius: 30px;
  font-size: 12px;
  border: none;
}
.cs_main_header_right .select-currency:hover{
  background-color: var(--secondary-color);
  color: black;
}

.cs_site_branding img {
  height: 60px;
}

@media (max-width: 1199px) {
  .cs_site_branding img {
    height: 50px;
  }
.cs_main_header_right .select-currency{
  font-size: 12px;
}
  .cs_main_header .container {
    padding: 0px 8px;
  }
}

@media (max-width: 1199px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    margin-right: 50px;
  }
}

@media (max-width: 480px) {

  .cs_site_header.cs_style_1 .cs_main_header_right .btn-one {
    display: none;
  }
}

.cs_site_header.cs_style_1.cs_type_1 {
  margin-top: 40px;
}

.cs_site_header.cs_style_1.cs_type_2 .cs_site_branding:hover,
.cs_site_header.cs_style_1.cs_type_2 .cs_nav_list a:hover {
  color: var(--theme-color-4);
}

.cs_site_header.cs_style_1.cs_type_2 .cs_nav_list ul a:hover {
  color: var(--accent-color);
}

.cs_site_header.cs_style_1.cs_type_2 .cs_nav .cs_nav_list.cs_active {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.cs_site_header_full_width .container {
  max-width: 100%;
  padding: 0 100px;
}

.cs_site_header_style_1 .cs_main_header_right {
  display: flex;
  align-items: center;
}

.cs_site_header_style_1 .cs_nav+.cs_header_toolbox.cs_center {
  margin-left: 35px;
}

@media screen and (max-width: 1399px) {
  .cs_site_header.cs_style_1 {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1199px) {
  .cs_main_header .container {
    max-width: 100%;
  }

  .cs_site_header.cs_style_1 .cs_nav {
    display: flex;
  }

  .cs_site_header.cs_style_1 .cs_main_header_in {
    padding: 15px;
    margin-top: 3px;
  }

  .cs_site_header.cs_style_1 .cs_header_shape {
    display: none;
  }
}

/*  */
@media (max-width:768px) {
  .cs_main_header .container {
    padding: 0px !important;
  }

  .cs_site_header.cs_style_1 .cs_main_header_in {
    border-radius: 0px;
    margin-top: 0px;
  }

  .cs_main_header_right .select-currency {
    padding: 4px 8px;
    font-size: 10px;
  }

  .get-help-button button {
    padding: 7px !important;
  }

  .cs_site_header.cs_style_1 .cs_main_header_right {
    margin-right: 40px;
  }
}

/* Country Menu Grid */
.cs_nav_list .countries-menu {
  position: relative;
}

@media (min-width:1200px) {

  .cs_nav_list .countries-menu ul.country-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    background: #fff;
    padding: 0;
    border-radius: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
  }

  .cs_nav_list .countries-menu:hover ul.country-grid {
    opacity: 1;
    visibility: visible;
    padding: 10px;
  }

  /* Each country item */
  .cs_nav_list .countries-menu ul.country-grid li {
    list-style: none;
    text-align: center;
  }

  .cs_nav_list .countries-menu ul.country-grid li a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .cs_nav_list .countries-menu ul.country-grid li a:hover {
    background: #f5f5f5;
    color: var(--secondary-color);
  }

}

.cs_nav_list .countries-menu ul.country-grid img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%;
}

.cs_nav_list .countries-menu ul.country-grid span {
  font-size: 14px;
  font-weight: 600;
}





.cs_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs_fixed_header,
.cs_sticky_header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 999;
}

.cs_gescout_sticky {
  position: fixed !important;
  top: -110px;
  opacity: 0;
  transition: all 0.4s ease;
  background-color: var(--white-color);
}

.cs_gescout_show {
  top: 0 !important;
  opacity: 1;
  background-color: var(--white-color);
  color: var(--heading-color);
}

.cs_gescout_show .cs_header_shape {
  display: none;
}

.cs_gescout_show.cs_type_1 {
  margin-top: 0 !important;
}

.cs_gescout_show.cs_type_2 {
  background-color: var(--accent-color);
  color: var(--white-color);
}

@media screen and (min-width: 1400px) {
  .cs_site_header.cs_style_1 .container {
    max-width: 1800px;
  }

  .cs_site_header.cs_style_1.cs_type_2 .cs_main_header_in {
    max-width: 1800px;
  }

  .cs_site_header.cs_style_1 .cs_nav_list>li {
    margin-right: 25px;
  }
}

@media screen and (min-width: 1200px) {
  .cs_main_header {
    position: relative;
  }

  .cs_main_header .container-fluid {
    padding-right: 40px;
    padding-left: 40px;
  }

  .cs_site_branding {
    display: inline-block;
  }

  .cs_site_branding+.cs_main_header_center {
    margin-left: 40px;
  }

  .cs_site_header.cs_style_1 .cs_main_header_center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .cs_site_header.cs_style_1 .cs_main_header_left {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cs_nav {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1.6em;
  }

  .cs_nav .cs_nav_list {
    display: flex !important;
    flex-wrap: wrap;
    height: inherit;
  }

  .cs_nav .cs_nav_list>li {
    margin-right: 30px;
    height: inherit;
    position: relative;
  }
.cs_nav .cs_nav_list>li:hover a{
  color: var(--primary-color);
}
  .cs_nav .cs_nav_list>li:last-child {
    margin-right: 0;
  }

  .cs_nav .cs_nav_list>li>a {
    padding: 10px 0;
    display: inline-flex;
    position: relative;
    height: inherit;
    align-items: center;
    color: white;
  }

  .cs_nav .cs_nav_list>li>ul {
    left: 0;
    top: calc(100% + 25px);
    border-top: 2px solid var(--accent-color);
    transition: all 0.5s ease;
  }

  .cs_nav .cs_nav_list>li:hover>ul {
    top: calc(100% + 4px);
    opacity: 1;
    visibility: visible;
  }

  .cs_nav .cs_nav_list>li.menu-item-has-children>a {
    position: relative;
    padding-right: 15px;
  }

  .cs_nav .cs_nav_list>li.menu-item-has-children>a::before {
    content: "+";
    position: absolute;
    right: 0;
    margin-top: 0;
  }

  .cs_nav .cs_nav_list ul {
    width: 300px;
    background-color: var(--white-color);
    position: absolute;
    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;
    transition: all 0.1s ease;
  }

  .cs_nav .cs_nav_list ul li:hover ul {
    top: 0px;
  }

  .cs_nav .cs_nav_list ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 8px ;
    color: var(--heading-color);
    font-size: 15px;
  }

  .cs_nav .cs_nav_list ul a:hover {
    color: var(--accent-color);
  }

  .cs_nav .cs_nav_list ul ul {
    top: 15px;
    left: 100%;
  }

  .cs_menu_toggle,
  .cs_menu_dropdown_toggle {
    display: none;
  }

  .cs_nav .cs_nav_list .cs_mega_menu {
    position: relative;
  }
}

@media screen and (max-width: 1199px) {
  .cs_site_header.cs_style_1 {
    padding: 0;
  }

  .cs_site_header_full_width .container {
    padding: 0 15px;
  }

  .cs_menu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 60px;
    top: 0;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }

  .cs_menu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
    color: white;
  }

  .cs_menu_dropdown_toggle span:before,
  .cs_menu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    transition: all 0.3s ease;
  }

  .cs_menu_dropdown_toggle span:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .cs_menu_dropdown_toggle.active span:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .menu-item-has-children .menu-item-has-children .cs_menu_dropdown_toggle {
    padding: 20px 18px;
  }

  .cs_site_branding {
    position: relative;
    z-index: 101;
  }

  .cs_nav .cs_nav_list {
    position: fixed;
    width: 100vw;
    left: -100vw;
    background-color: black;
    color: var(--heading-color);
    padding: 10px 0;
    top: 0;
    overflow: auto;
    height: 100vh;
    line-height: 1.6em;
    padding-top: 80px;
    transition: all 0.4s ease;
  }
body.nav-open {
  overflow: hidden;
  position: fixed;
}

  .cs_nav .cs_nav_list.cs_active {
    left: 0vw;
  }

  .cs_nav .cs_nav_list ul {
    padding-left: 15px;
    display: none;
  }

  .cs_nav .cs_nav_list a {
    display: block;
    padding: 12px 15px;
    line-height: 16px;
    color: white;
  }

  .cs_nav .cs_nav_list>li>a {
    font-size: 16px;
    line-height: 22px;
    color: white;
  }

  .cs_nav .menu-item-has-children {
    position: relative;
  }

  .cs_animo_links>li>a .cs_animo_text {
    text-shadow: 0 32px 0 currentColor;
  }

  .cs_animo_links>li>a:hover span {
    transform: translateY(-32px);
  }

  /*Mobile Menu Button*/
  .cs_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
  }

  .cs_menu_toggle span,
  .cs_menu_toggle span:before,
  .cs_menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }

  .cs_menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    transition-duration: 0s;
    transition-delay: 0.2s;
  }

  .cs_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }

  .cs_menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0s;
  }

  .cs_site_header.cs_style_1 .cs_menu_toggle {
    top: 50%;
    right: 5px;
    margin-top: -13px;
    color: white;
  }

  .cs_toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    transition-delay: 0.2s;
  }

  .cs_toggle_active span:before {
    margin-top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.2s;
  }

  .cs_toggle_active span:after {
    margin-top: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.2s;
  }

  .cs_nav .cs_nav_list a {
    position: relative;
  }

  .cs_site_header.cs_style_1 .cs_main_header_center .cs_site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
  }

  .cs_site_header.cs_style_1 {
    top: 0;
  }

  .cs_site_header.cs_style_1.cs_type_1 {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
  10. Footer
----------------------------------------------------------------*/

.cs_footer{
  background-color: var(--secondary-color);
}
.cs_footer.cs_style_1 .cs_footer_top {
  padding: 30px 0px;
}

.cs_footer.cs_style_1 .cs_footer_top::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--black-color);
  box-shadow: 0px 1px 2px 0px rgba(45, 54, 67, 0.05);
  position: absolute;
  left: 0;
  bottom: 0;
}

.cs_footer.cs_style_1 .cs_footer_main {
  padding: 72px 0 80px;
}

.cs_footer.cs_style_1 .cs_footer_widget_wrapper {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 30px;
}

.cs_footer.cs_style_1 .cs_footer_widget {
  max-width: 420px;
}

.cs_footer.cs_style_1 .cs_footer_widget_title {
  display: inline-block;
  padding-bottom: 12px;
  position: relative;
}

.cs_footer.cs_style_1 .cs_footer_widget_title::before,
.cs_footer.cs_style_1 .cs_footer_widget_title::after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.cs_footer.cs_style_1 .cs_footer_widget_title::before {
  width: 100%;
  background: linear-gradient(#737373, #000000);
}

.cs_footer.cs_style_1 .cs_footer_widget_title::after {
  width: 4px;
  background-color: #EFEFEF;
  left: 4px;
  animation: slide-both 15s linear infinite;
}

.cs_footer.cs_style_1 .cs_footer_menu li {
  margin-bottom: 10px;
}

.cs_footer.cs_style_1 .cs_footer_menu li a:hover {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_footer.cs_style_1 .cs_footer_menu li:last-child {
  margin-bottom: 0;
}

.cs_footer.cs_style_1 .cs_cta_btns {
  display: flex;
  flex-direction: column;
}

.cs_footer.cs_style_1 .cs_cta_btns .cs_cta_btn {
  border: 0;
  padding: 4px 28px;
}

.cs_footer.cs_style_1 .cs_cta_btns .cs_cta_btn:not(:last-child) {
  margin-bottom: 30px;
}

.cs_footer.cs_style_1 .cs_footer_bottom {
  padding: 22px 0;
}

.cs_footer.cs_style_1 .cs_newsletter.cs_style_1 {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 30px 20px;
}

.cs_footer.cs_style_1 .cs_newsletter.cs_style_1 .cs_newsletter_text {
  max-width: 633px;
}

.cs_footer.cs_style_1 .cs_newsletter.cs_style_1 .cs_newsletter_form {
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cs_footer.cs_style_1 .cs_newsletter.cs_style_1 .cs_input_wrapper {
  flex: 1;
}

.cs_footer.cs_style_1 .cs_newsletter.cs_style_1 input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 100px;
  padding: 15px 20px 15px 58px;
}

.cs_footer.cs_style_1 .cs_newsletter.cs_style_1 .cs_input_icon {
  position: absolute;
  left: 24px;
  top: 15px;
}

@media (max-width: 991px) {
  .cs_footer.cs_style_1 .cs_newsletter.cs_style_1 {
    grid-template-columns: repeat(1, auto);
  }
}

@media (max-width:768px) {
  .cs_footer .container.two {
    padding: 0px !important;
    border-radius: 0px;
  }

  .cs_footer .container.two .cs_footer_main {
    border-radius: 0px;
  }

  .cs_footer.cs_style_1.cs_type_2 .cs_footer_menu {
    gap: 15px !important;
  }
}

@media (max-width: 450px) {
  .cs_footer.cs_style_1 .cs_newsletter.cs_style_1 .cs_newsletter_form {
    flex-direction: column;
  }

  .cs_footer.cs_style_1 .cs_newsletter.cs_style_1 .cs_input_wrapper {
    width: 100%;
  }

  .cs_footer.cs_style_1 .cs_newsletter.cs_style_1 .cs_btn.cs_style_1 {
    width: 100%;
  }
}

.cs_btn.cs_style_1 input {
  background-color: transparent;
  border: none;
  font-size: 16px;
}

.cs_footer.cs_style_1 .cs_location_list {
  
 
}

.cs_footer.cs_style_1 .cs_location_list .col-md-4 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 16px;
}

.cs_footer.cs_style_1 .cs_location_list .cs_location_icon {
  width: 40px;
  height: 40px;
  flex: none;
  background-color: #144138;
}

.cs_footer.cs_style_1 .cs_location_list a {
  color: var(--body-color);
}

.cs_footer.cs_style_1 .cs_location_list a:hover {
  color: black;
}

@media (max-width:768px) {
  .cs_footer.cs_style_1 .cs_location_list {
    gap: 10px;
  }
}

.cs_footer.cs_style_1.cs_type_1 .cs_footer_top {
  padding: 35px 0 39px;
}

.cs_footer.cs_style_1.cs_type_1 .cs_footer_top::before {
  content: "";
  width: 100%;
  height: 1px;
  opacity: 0.25;
  background: #D5DCFC;
  box-shadow: 0px 1px 2px 0px rgba(45, 54, 67, 0.05);
  position: absolute;
  top: 0;
  left: 0;
}

.cs_footer.cs_style_1.cs_type_1 .cs_footer_top::after {
  opacity: 0.25;
  background: #D5DCFC;
  box-shadow: 0px 1px 2px 0px rgba(45, 54, 67, 0.05);
}

.cs_footer.cs_style_1.cs_type_1 .cs_footer_widget_title::before {
  background: linear-gradient(90deg, #B5BFFF 27.14%, #FFF 100%);
}

.cs_footer.cs_style_1.cs_type_1 .cs_footer_widget_title::after {
  background-color: var(--accent-color);
}

.cs_footer.cs_style_1.cs_type_1 .cs_social_links.cs_style_1 a {
  background: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.cs_footer.cs_style_1.cs_type_1 .cs_social_links.cs_style_1 a::after,
.cs_footer.cs_style_1.cs_type_1 .cs_social_links.cs_style_1 a::before {
  display: none;
}

.cs_footer.cs_style_1.cs_type_1 .cs_social_links.cs_style_1 a:hover {
  background-color: var(--theme-color-4);
  border-color: var(--theme-color-4);
  color: var(--heading-color);
}

.cs_footer.cs_style_1.cs_type_1 .cs_footer_menu li a {
  background: none;
  -webkit-text-fill-color: var(--white-color);
}

.cs_footer.cs_style_1.cs_type_1 .cs_footer_menu li a:hover {
  -webkit-text-fill-color: var(--theme-color-4);
}

.cs_footer.cs_style_1.cs_type_1 .cs_footer_bottom::before {
  content: "";
  width: 100%;
  height: 1px;
  opacity: 0.25;
  background: #D5DCFC;
  box-shadow: 0px 1px 2px 0px rgba(45, 54, 67, 0.05);
  position: absolute;
  left: 0;
  top: 0;
}

.cs_footer.cs_style_1.cs_type_2 .cs_location_icon {
  background-color: black;
  color: white;
}

.cs_footer.cs_style_1.cs_type_2 .cs_footer_top::after {
  display: none;
}

.cs_footer.cs_style_1.cs_type_2 .cs_footer_main {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-three);
  box-shadow: 0px 19px 53px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 22px;
}

.cs_footer.cs_style_1.cs_type_2 .cs_brand {
  flex: none;
}

.cs_footer.cs_style_1.cs_type_2 .cs_footer_desc {
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width:768px) {
  .cs_footer.cs_style_1.cs_type_2 .cs_footer_desc {
    padding: 10px;
    gap: 5px;
  }

  .cs_footer.cs_style_1.cs_type_2 .cs_footer_main {
    margin-bottom: 0px;
  }
}

.cs_footer.cs_style_1.cs_type_2 .cs_footer_desc_text {
  max-width: 755px;
  color: white;
}

.cs_footer.cs_style_1.cs_type_2 .cs_footer_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 11px 20px 11px 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0px 19px 53px 0px rgba(0, 0, 0, 0.05);
}

.cs_footer.cs_style_1.cs_type_2 .cs_footer_header a:hover {
  background: none;
  color: var(--theme-color-4);
  -webkit-text-fill-color: var(--theme-color-4);
}

.cs_footer.cs_style_1.cs_type_2 .cs_footer_menu {
  display: flex;
  align-items: center;
  gap: 20px 40px;
  flex-wrap: wrap;
}

.cs_footer.cs_style_1.cs_type_2 .cs_footer_menu li {
  margin-bottom: 0;
}

.cs_footer.cs_style_1.cs_type_2 .cs_social_links a {
  width: fit-content;
  height: fit-content;
  background: none;
  color: var(--white-color);
}

.cs_footer.cs_style_1.cs_type_2 .cs_social_links a::after,
.cs_footer.cs_style_1.cs_type_2 .cs_social_links a::before {
  display: none;
}

.cs_footer.cs_style_1.cs_type_2 .cs_footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .cs_footer.cs_style_1 .cs_footer_widget_wrapper {
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
  }

  .cs_footer.cs_style_1 .cs_footer_widget_wrapper .cs_footer_widget {
    max-width: 100%;
  }

  .cs_footer.cs_style_1 .cs_footer_widget_wrapper .cs_footer_widget:first-child {
    grid-column: auto/span 3;
  }

  .cs_footer.cs_style_1.cs_type_2 .cs_footer_desc {
    padding: 40px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cs_footer.cs_style_1.cs_type_2 .cs_footer_header {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .cs_footer.cs_style_1 .cs_footer_widget_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .cs_footer.cs_style_1 .cs_footer_widget_wrapper .cs_footer_widget:first-child {
    grid-column: auto/span 1;
  }
}

@keyframes slide-both {
  50% {
    left: calc(100% - 8px);
  }
}

/*--------------------------------------------------------------
  11. Sidebar
----------------------------------------------------------------*/
.cs_sidebar.cs_style_1 {
  padding-left: 20px;
  position: sticky;
  top: 20px;
}

@media (min-width: 992px) and (max-width: 1500px) {
  .cs_post.cs_style_1 {
    padding: 10px !important;
  }
  
  .blogs .col-lg-4 {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
}


.cs_sidebar.cs_style_1 .cs_sidebar_widget {
  padding: 12px;
}

.cs_sidebar.cs_style_1 .cs_sidebar_widget:not(:last-child) {
  margin-bottom: 30px;
}

.cs_sidebar.cs_style_1 .cs_service_category_list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white-color);
  padding: 15px 25px;
  border-radius: 8px;
  position: relative;
}

.cs_sidebar.cs_style_1 .cs_service_category_list a>* {
  position: relative;
  z-index: 1;
}

.cs_sidebar.cs_style_1 .cs_service_category_list a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease;
  background: linear-gradient(#737373, #000000);
}

.cs_sidebar.cs_style_1 .cs_service_category_list li:not(:last-child) {
  margin-bottom: 15px;
}

.cs_sidebar.cs_style_1 .cs_service_category_list li:hover a {
  color: var(--white-color);
}

.cs_sidebar.cs_style_1 .cs_service_category_list li:hover a::before {
  opacity: 1;
}

.cs_sidebar.cs_style_1 .cs_search {
  border-radius: 8px;
}

.cs_sidebar.cs_style_1 .cs_search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 16px 20px;
  border-radius: inherit;
}

.cs_sidebar.cs_style_1 .cs_search .cs_search_button {
  height: 100%;
  padding: 16px 20px;
  border: 0;
  outline: 0;
  border-radius: 0 8px 8px 0;
  background-color: var(--secondary-color);
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s ease;
  color: black;
}

.cs_sidebar.cs_style_1 .cs_recent_post_wrapper .cs_recent_post {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.cs_sidebar.cs_style_1 .cs_recent_post_wrapper .cs_recent_post:first-child {
  padding-top: 0;
}

.cs_sidebar.cs_style_1 .cs_recent_post_wrapper .cs_recent_post:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cs_recent_post_right h3 {
  font-size: 16px;
  font-weight: 500;
}

.cs_sidebar.cs_style_1 .cs_recent_post {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cs_sidebar.cs_style_1 .cs_recent_post .cs_post_meta i {
  margin-right: 8px;
}

.cs_sidebar.cs_style_1 .cs_recent_post .cs_post_meta,
.cs_sidebar.cs_style_1 .cs_recent_post h3 a:hover {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_sidebar.cs_style_1 .cs_recent_post_thumb {
  width: 80px;
  height: 80px;
  flex: none;
  overflow: hidden;
}

.cs_sidebar.cs_style_1 .cs_recent_post_thumb img {
  border-radius: inherit;
  transition: all 0.4s ease;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.cs_sidebar.cs_style_1 .cs_recent_post_thumb:hover img {
  transform: scale(1.05);
}

@media (max-width: 1399px) {
  .cs_sidebar.cs_style_1 {
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .cs_sidebar.cs_style_1 .cs_sidebar_widget {
    padding: 15px;
  }
}

.cs_tags_links {
  display: flex;
  gap: 10px 5px;
  flex-wrap: wrap;
}

.cs_tags_links .cs_tag_link {
  padding: 7px 16px;
  position: relative;
}

.cs_tags_links .cs_tag_link>* {
  position: relative;
  z-index: 1;
}

.cs_tags_links .cs_tag_link::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease;
  background: linear-gradient(#737373, #000000);
}

.cs_tags_links .cs_tag_link:hover {
  color: var(--white-color);
}

.cs_tags_links .cs_tag_link:hover::before {
  opacity: 1;
}

/*--------------------------------------------------------------
12. Isotope
----------------------------------------------------------------*/
.cs_isotop {
  transition: all 0.4s ease;
}

.cs_has_gutter_24 {
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -24px;
}

.cs_has_gutter_24 .cs_isotop_item {
  padding: 0 12px;
  margin-bottom: 24px;
}

.cs_has_gutter_30 {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -30px;
}

.cs_has_gutter_30 .cs_isotop_item {
  padding: 0 15px;
  margin-bottom: 30px;
}

.cs_has_gutter_74 {
  margin-left: -37px;
  margin-right: -37px;
}

.cs_has_gutter_74 .cs_isotop_item {
  padding: 0 37px;
  padding-bottom: 74px;
}

.cs_has_gutter_40 {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -30px;
}

.cs_has_gutter_40 .cs_isotop_item {
  padding: 0 20px;
  margin-bottom: 30px;
}

.cs_wave_1>*:nth-child(3) {
  padding-top: 30px;
}

.cs_wave_1>*:nth-child(4) {
  padding-top: 60px;
}

.cs_wave_2>*:nth-child(2),
.cs_wave_2>*:nth-child(4) {
  padding-top: 50px;
}

.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%;
}

.cs_isotop_filter.cs_style_1 {
  margin-bottom: 60px;
}

.cs_isotop_filter.cs_style_1 li {
  border-radius: 50px;
  position: relative;
  border: 1px solid var(--border-color);
}

.cs_isotop_filter.cs_style_1 li::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.4s ease;
  background: linear-gradient(#737373, #000000);
}

.cs_isotop_filter.cs_style_1 li.active,
.cs_isotop_filter.cs_style_1 li:hover {
  border-color: transparent;
}

.cs_isotop_filter.cs_style_1 li.active::before,
.cs_isotop_filter.cs_style_1 li:hover::before {
  opacity: 1;
}

.cs_isotop_filter.cs_style_1 li.active a,
.cs_isotop_filter.cs_style_1 li:hover a {
  color: var(--white-color);
}

.cs_isotop_filter.cs_style_1 a {
  display: inline-block;
  padding: 4px 20px;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}

.cs_isotop_filter.cs_style_1 ul {
  display: flex;
  justify-content: center;
  gap: 15px 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 1199px) {
  .cs_isotop.cs_has_gutter_100 .cs_isotop_item {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .cs_isotop.cs_has_gutter_100 {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px;
  }

  .cs_isotop.cs_has_gutter_80 {
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -25px;
  }

  .cs_isotop.cs_has_gutter_80 .cs_isotop_item {
    padding: 0 12px;
    margin-bottom: 25px;
  }

  .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%;
  }
}

/*--------------------------------------------------------------
  13. Hero
----------------------------------------------------------------*/

.cs_hero.cs_style_1 .cs_hero_content {
  width: 100%;
  height: 100%;
  padding: 290px 0px 230px;
}

.cs_hero.cs_style_1 .cs_hero_thumbnail img {
  width: 100%;
}

.cs_hero.cs_style_1 .cs_hero_text {
  width: 100%;
  max-width: 744px;
}

.cs_hero.cs_style_1 .cs_hero_subtitle {
  display: inline-flex;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--white-color);
}

.cs_hero.cs_style_1 .cs_btns_group {
  display: flex;
  align-items: center;
  gap: 20px 40px;
  flex-wrap: wrap;
}

.cs_hero.cs_style_1 .cs_client_info_wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cs_hero.cs_style_1 .cs_client_info_wrapper img {
  width: 51%;
}

.cs_hero.cs_style_1 .cs_client_info_wrapper h3 {
  margin-bottom: -3px;
}

@media (min-width: 1400px) {

  .cs_hero.cs_style_1 .container {
    max-width: 1510px;
  }

  .cs_hero.cs_style_1 .cs_hero_thumbnail {
    width: 39vw;
    position: absolute;
    top: 140px;
    right: 3%;
    z-index: 1;
  }
}

@media (max-width: 1399px) {
  .cs_hero.cs_style_1 .cs_hero_content {
    padding: 190px 0px 120px;
  }

  .cs_hero.cs_style_1 .cs_hero_thumbnail {
    transform: translateX(40px);
  }
}

@media (max-width: 1199px) {
  .cs_hero.cs_style_1 .cs_hero_content {
    margin: 80px auto 0;
    padding: 120px 0px;
    border-radius: 30px;
  }

  .cs_hero.cs_style_1 .cs_hero_thumbnail {
    transform: translateX(0);
  }

  .cs_hero.cs_style_1 .cs_btns_group {
    gap: 20px;
  }

  .cs_hero.cs_style_1 .cs_client_info_wrapper {
    gap: 10px;
  }

  .cs_hero.cs_style_1 br {
    display: none;
  }
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_content {
    padding: 80px 0px;
  }

  .cs_hero.cs_style_1 .cs_hero_thumbnail {
    position: initial;
  }
}

@media (max-width: 575px) {
  .cs_hero.cs_style_1 .cs_client_info_wrapper img {
    width: 49%;
  }
}

.cs_hero.cs_style_2 {
  padding: 264px 0 510px;
}

.cs_hero.cs_style_2 .cs_hero_subtitle {
  display: inline-flex;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--heading-color);
}

.cs_hero.cs_style_2 .cs_btns_group {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 30px;
  flex-wrap: wrap;
}

.cs_hero.cs_style_2 .cs_hero_text * {
  position: relative;
  z-index: 1;
}

.cs_hero.cs_style_2 .cs_hero_shape_1 {
  top: 20px;
  left: 2%;
  z-index: 0;
}

.cs_hero.cs_style_2 .cs_hero_shape_2 {
  top: 16%;
  right: 5%;
  z-index: 0;
  animation: rotation-y 10s linear infinite;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_2 {
    padding: 190px 0 300px;
  }

  .cs_hero.cs_style_2 .cs_hero_shape_1,
  .cs_hero.cs_style_2 .cs_hero_shape_2 {
    display: none;
  }
}

@media (max-width: 767px) {
  .cs_hero.cs_style_2 {
    padding: 190px 0 180px;
  }
}

.cs_hero.cs_style_3 {
  padding: 104px 0 0;
}

.cs_hero.cs_style_3::before {
  content: "";
  width: 100%;
  height: 30%;
  background-color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}

.cs_hero.cs_style_3 .cs_hero_thumbnail {
  width: 48vw;
  position: absolute;
  right: 0;
  top: 22%;
}

.cs_hero.cs_style_3 .cs_hero_content {
  padding: 248px 0;
}

.cs_hero.cs_style_3 .cs_hero_text {
  max-width: 684px;
}

.cs_hero.cs_style_3 .cs_has_shape {
  display: inline-block;
  padding: 10px 15px;
}

.cs_hero.cs_style_3 .cs_has_shape img {
  position: absolute;
  left: 0;
  top: 0;
}

.cs_hero.cs_style_3 .cs_hero_subtitle {
  display: inline-flex;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 100px;
  border: 1px solid var(--heading-color);
}

.cs_hero.cs_style_3 .cs_btns_group {
  display: flex;
  align-items: center;
  gap: 30px 40px;
  flex-wrap: wrap;
}

.cs_hero.cs_style_3 .cs_hero_shape_1 {
  left: 55%;
  top: 6%;
  animation: rotation-y 10s linear infinite;
}

.cs_hero.cs_style_3 .cs_hero_shape_2 {
  left: 5%;
  bottom: 4%;
  animation: rotation-y 10s linear infinite;
}

@media (min-width: 1600px) {
  .cs_hero.cs_style_3 .cs_hero_text {
    transform: translateX(-100px);
  }
}

@media (max-width: 991px) {
  .cs_hero.cs_style_3 .cs_hero_content {
    padding: 80px 0;
  }

  .cs_hero.cs_style_3 .cs_hero_thumbnail {
    position: initial;
    width: 100%;
  }

  .cs_hero.cs_style_3 .cs_hero_text {
    max-width: 100%;
  }

  .cs_hero.cs_style_3 .cs_hero_shape_1,
  .cs_hero.cs_style_3 .cs_hero_shape_2 {
    display: none;
  }
}

/*--------------------------------------------------------------
  14. Cards
----------------------------------------------------------------*/
.cs_card.cs_style_1 .cs_card_thumbnail {
  overflow-y: clip;
}

.cs_card.cs_style_1 .cs_card_thumbnail>img {
  position: relative;
  z-index: 2;
}

.cs_card.cs_style_1 .cs_about_mask_shape_1 {
  width: 100%;
  bottom: 0;
  right: 0;
  transform: translateX(-25px);
  z-index: 1;
}

.cs_card.cs_style_1 .cs_about_mask_shape_1 img {
  width: 100%;
}

.cs_card.cs_style_1 .cs_elipse_1 {
  width: 71%;
  height: 70%;
  background: linear-gradient(211deg, #62EC30 -15.3%, rgba(250, 248, 255, 0) 94.38%);
  top: 40px;
  left: 45%;
  transform: translateX(-45%);
  z-index: 0;
  animation: zoom-in 3s linear infinite;
}

.cs_card.cs_style_1 .cs_card_content {
  padding-left: 40px;
}

.cs_card.cs_style_1 .cs_list.cs_style_1 {
  margin-bottom: 42px;
}

.cs_card.cs_style_1.cs_type_1 .cs_card_thumbnail {
  padding-left: 0;
}

.cs_card.cs_style_1.cs_type_1 .cs_list.cs_style_1 {
  max-width: 430px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  flex-wrap: wrap;
  gap: 32px 30px;
}

.cs_card.cs_style_1.cs_type_1 .cs_list.cs_style_1 li {
  margin-bottom: 0;
}

.cs_card.cs_style_1.cs_type_2 .cs_card_thumbnail,
.cs_card.cs_style_1.cs_type_2 .cs_card_content {
  padding-left: 0;
}

.cs_card.cs_style_1.cs_type_2 .cs_card_content {
  max-width: 600px;
}

.cs_card.cs_style_1.cs_type_2 .cs_vector_shape_3 {
  width: 100%;
  top: 40%;
  right: 0;
  transform: translateY(-40%);
}

.cs_card.cs_style_1.cs_type_3 .cs_card_thumbnail {
  padding-left: 0;
}

.cs_card.cs_style_1.cs_type_3 .cs_card_content {
  padding-left: 30px;
}

.cs_card.cs_style_1.cs_type_4 .cs_card_thumbnail {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.cs_card.cs_style_1.cs_type_4 .cs_card_content {
  padding-left: 0;
  padding-bottom: 120px;
}

.cs_card.cs_style_1.cs_type_4 .cs_section_subtitle::after {
  background-color: var(--accent-color);
}

.cs_card.cs_style_1.cs_type_4 .cs_btn.cs_style_1 {
  margin-top: 44px;
}

.cs_card.cs_style_1.cs_type_5 .cs_card_content {
  padding-left: 0;
  padding-right: 30px;
}

.cs_card.cs_style_1.cs_type_5 .cs_btns_group {
  display: flex;
  align-items: center;
  gap: 30px 40px;
  flex-wrap: wrap;
}

.cs_card.cs_style_1.cs_type_5 .cs_client_info_wrapper {
  display: flex;
  align-items: center;
  gap: 15px 24px;
  flex-wrap: wrap;
}

.cs_card.cs_style_1.cs_type_5 .cs_client_info_wrapper i {
  margin-right: 6px;
}

@media (min-width: 1600px) {
  .cs_card.cs_style_1.cs_type_1 .cs_card_thumbnail {
    transform: translateX(100px);
  }

  .cs_card.cs_style_1.cs_type_1 .cs_list.cs_style_1 {
    gap: 32px 37px;
  }

  .cs_card.cs_style_1.cs_type_2 .cs_card_thumbnail {
    transform: translateX(-80px);
  }
}

@media (max-width: 1199px) {

  .cs_card.cs_style_1 .cs_card_thumbnail,
  .cs_card.cs_style_1 .cs_card_content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .cs_card.cs_style_1 .cs_about_mask_shape_1 {
    left: 0;
    transform: translateX(0);
    padding-right: 25px;
  }
}

@media (max-width: 420px) {
  .cs_card.cs_style_1.cs_type_1 .cs_list.cs_style_1 {
    grid-template-columns: repeat(1, auto);
  }
  .cs_card.cs_style_1 .cs_list.cs_style_1{
    margin-bottom: 20px;
  }
}

.cs_card.cs_style_2 .cs_card_thumbnail {
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.cs_card.cs_style_2 .cs_card_thumbnail img {
  width: 100%;
  border-radius: inherit;
}

.cs_card.cs_style_2 .cs_service_item {
  position: relative;
}

.cs_card.cs_style_2 .cs_service_item::before,
.cs_card.cs_style_2 .cs_service_item::after {
  content: "";
  width: 5px;
  position: absolute;
  top: 40px;
  left: 20px;
  border-radius: 50px;
  visibility: hidden;
  opacity: 0;
}

.cs_card.cs_style_2 .cs_service_item::before {
  height: 60%;
  background-color: var(--gray-color-2);
}

.cs_card.cs_style_2 .cs_service_item::after {
  height: 20%;
  background-color: var(--secondary-color);
}

.cs_card.cs_style_2 .cs_service_item.cs_active {
  padding: 22px 30px 26px 45px;
}

.cs_card.cs_style_2 .cs_service_item.cs_active::before,
.cs_card.cs_style_2 .cs_service_item.cs_active::after {
  visibility: visible;
  opacity: 1;
}

.cs_card.cs_style_2 .cs_btns_group {
  display: flex;
  align-items: center;
  gap: 30px 40px;
  flex-wrap: wrap;
}

.cs_card.cs_style_2 .cs_client_info_wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cs_card.cs_style_2 .cs_client_info_wrapper span {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
  .cs_card.cs_style_2 .cs_card_thumbnail {
    width: 100%;
    position: initial;
  }

  .cs_card.cs_style_2 .cs_service_item {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .cs_card.cs_style_2 .cs_service_item.cs_active {
    padding: 22px 10px 26px 15px;
  }

  .cs_card.cs_style_2 .cs_service_item.cs_active::before,
  .cs_card.cs_style_2 .cs_service_item.cs_active::after {
    left: 0;
  }
}

@keyframes zoom-in {
  50% {
    transform: translate(-45%, 0) scale(1.06);
    opacity: 0.7;
  }
}

/*--------------------------------------------------------------
  15. Iconbox
----------------------------------------------------------------*/
.cs_iconbox.cs_style_1 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon {
  width: 71px;
  height: 71px;
  flex: none;
}
.cs_iconbox.cs_style_1 .cs_iconbox_icon svg{
  height: 30px;
  width: 30px;
}
.cs_iconbox.cs_style_1 .cs_iconbox_icon.cs_bg_1 {
  background: linear-gradient(90deg, #551DFF 0%, var(--primary-color) 100%);
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon.cs_bg_2 {
  background-color: #FF5F85;
}

.cs_iconbox.cs_style_1 img {
  transition: all 0.6s ease-in-out;
}

.cs_iconbox.cs_style_1.cs_type_1 {
  max-width: 380px;
  gap: 24px;
}

.cs_iconbox.cs_style_1.cs_type_1 .cs_iconbox_icon {
  border-radius: 15px 15px 0 15px;
}

.cs_iconbox.cs_style_1:hover img {
  transform: rotateY(360deg);
}

@media (max-width: 768px) {
  .cs_iconbox.cs_style_1 {
    flex-direction: column;
    align-items: flex-start;
  }
  .cs_iconbox.cs_style_1 .cs_iconbox_icon{
    display: none;
  }
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon {
  width: 60px;
  height: 60px;
  border-radius: 20px 20px 0 20px;
  transition: all 0.6s ease-in-out;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon.cs_bg_1 {
  background: linear-gradient(#737373, #000000);
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon.cs_bg_2 {
  background: #FF5F85;
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_icon {
  border-radius: 0;
}

.cs_iconbox.cs_style_3 {
  width: 120px;
  height: 120px;
  padding: 10px;
  box-shadow: 0px 20px 24px -4px rgba(45, 54, 67, 0.04), 0px 8px 11px -4px rgba(45, 54, 67, 0.04);
}

.cs_iconbox.cs_style_4 {
  padding: 0px 0px;
  border: solid 1px var(--border-color);
  transition: ease-in .3s;
}

.cs_iconbox.cs_style_4 .cs_iconbox_content {
  padding: 10px 10px 20px;
  transition: ease-in .3s;
}

.cs_iconbox.cs_style_4 .cs_iconbox_content::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  opacity: 0.5;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  transition: ease-in .3s;
}

.cs_iconbox.cs_style_4 .cs_iconbox_content::after {
  content: "";
  width: 623px;
  height: 140px;
  border-radius: 623px;
  background: radial-gradient(122.31% 119.29% at 50% 50%, rgba(255, 255, 255, 0.4) 0%, rgba(191, 9, 255, 0) 100%);
  filter: blur(150px);
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: ease-in .3s;
}

.cs_iconbox.cs_style_4 .cs_iconbox_content>* {
  position: relative;
  z-index: 1;
}

.cs_iconbox.cs_style_4 .cs_iconbox_header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cs_iconbox.cs_style_4 .cs_iconbox_title a:hover {
  color: var(--theme-color-3);
}

.cs_iconbox.cs_style_4 .cs_iconbox_title a,
.cs_iconbox.cs_style_4 .cs_btn.cs_style_1,
.cs_iconbox.cs_style_4 .cs_iconbox_icon,
.cs_iconbox.cs_style_4 p {
  transition: all 0s ease;
}

.cs_iconbox.cs_style_4 .cs_btn.cs_style_1 {
  padding: 0;
  border-radius: 0;
}

.cs_iconbox.cs_style_4 .cs_service_shape {
  width: 100%;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 0;
}

.cs_iconbox.cs_style_4:hover {
  border-color: var(--primary-color);
}

.cs_iconbox.cs_style_4:hover .cs_btn.cs_style_1,
.cs_iconbox.cs_style_4:hover .cs_iconbox_icon,
.cs_iconbox.cs_style_4:hover .cs_iconbox_title,
.cs_iconbox.cs_style_4:hover p {
  color: var(--white-color);
}

.cs_iconbox.cs_style_4:hover .cs_iconbox_content {
  background: linear-gradient(#737373, #000000);
}

.cs_iconbox.cs_style_4:hover .cs_iconbox_content::before,
.cs_iconbox.cs_style_4:hover .cs_iconbox_content::after {
  display: none;
}

.cs_iconbox.cs_style_4:hover .cs_iconbox_content::after {
  opacity: 0;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon {
  width: 83px;
  height: 60px;
  padding: 5px;
  background-color: #FFF8E9;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon.cs_bg_1 {
  background-color: #DBFCFF;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon.cs_bg_2 {
  background-color: #DDFFF5;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon.cs_bg_3 {
  background-color: #FFF2F7;
}

.cs_iconbox.cs_style_6 {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cs_iconbox.cs_style_6 .cs_iconbox_icon {
  width: 62px;
  height: 62px;
  flex: none;
  position: relative;
}

.cs_iconbox.cs_style_6 .cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px dashed var(--white-color);
  border-radius: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cs_iconbox.cs_style_6:hover .cs_iconbox_icon::before {
  animation: rotation 20s linear infinite;
}

.cs_iconbox_wrapper_1 .cs_iconbox.cs_style_1 {
  margin-bottom: 26px;
}

.cs_iconbox_wrapper_1 .cs_iconbox.cs_style_1.cs_type_1 {
  margin-bottom: 30px;
}

.cs_iconbox_wrapper_1 .cs_iconbox.cs_style_1:last-child {
  margin-bottom: 0;
}

.cs_iconbox_wrapper_2 {
  padding-left: 50px;
}

.cs_iconbox_wrapper_2 .cs_iconbox.cs_style_2:not(:last-child) {
  margin-bottom: 23px;
}

@media (max-width: 1399px) {
  .cs_iconbox_wrapper_2 {
    padding-left: 0;
  }
}

.cs_iconbox_wrapper_3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}

@media (max-width: 768px) {
  .cs_iconbox_wrapper_3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .cs_iconbox.cs_style_4 {
    padding: 0px;
  }

  .cs_iconbox.cs_style_4 .cs_iconbox_content {
    padding: 10px;
  }

  .card-sec-one .cs_iconbox_icon {
    padding: 5px !important;
  }

  .card-sec-one .cs_iconbox_icon svg {
    width: 20px;
    height: 20px;
  }

  .cs_iconbox.cs_style_4 .cs_iconbox_header {
    gap: 10px;
    margin-bottom: 10px;
  }
}

@keyframes rotation {
  50% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*--------------------------------------------------------------
  16. Pricing
----------------------------------------------------------------*/
.cs_pricing_table.cs_style_1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px 40px 40px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.cs_pricing_table.cs_style_1 .cs_pricing_table_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cs_pricing_table.cs_style_1 .cs_price {
  line-height: 1em;
}

.cs_pricing_table.cs_style_1 .cs_price small {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  margin-left: 2px;
}

.cs_pricing_table.cs_style_1 .cs_separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 26, 46, 0) 0%, #1A1A2E 50%, rgba(26, 26, 46, 0) 100%);
}

.cs_pricing_table.cs_style_1 .cs_pricing_feature_list li {
  padding-left: 24px;
  position: relative;
}

.cs_pricing_table.cs_style_1 .cs_pricing_feature_list li:not(:last-child) {
  margin-bottom: 16px;
}

.cs_pricing_table.cs_style_1 .cs_pricing_feature_list .cs_feature_icon {
  position: absolute;
  top: 0;
  left: 0;
}

.cs_pricing_table.cs_style_1 .cs_btn.cs_style_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 20px 21px;
  background-color: var(--white-color);
  border-radius: 100px;
  margin-top: auto;
}

.cs_pricing_table.cs_style_1 .cs_pricing_badge {
  width: 100%;
  max-width: 198px;
  padding: 7px 20px;
  border-radius: 50px;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
}

.cs_pricing_table.cs_style_1 .cs_pricing_table_shape {
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cs_pricing_table.cs_style_1 .cs_pricing_table_shape img {
  width: 100%;
  height: 100%;
}

.cs_pricing_table.cs_style_1 .monthlyPrice {
  display: none;
}

.cs_pricing_table.cs_style_1>* {
  position: relative;
  z-index: 1;
}

.cs_pricing_table.cs_style_1.cs_active {
  padding-top: 76px;
  border-color: transparent;
  background-color: transparent;
}

.cs_pricing_table.cs_style_1.cs_active .cs_btn.cs_style_1 {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.cs_pricing_table.cs_style_1:hover {
  background-color: var(--theme-color-1);
  border-color: var(--theme-color-1);
}

.cs_pricing_table.cs_style_1:hover.cs_active {
  background-color: transparent;
  border-color: transparent;
}

.cs_pricing_table.cs_style_1:hover .cs_btn.cs_style_1 {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.cs_pricing_table.cs_style_1.cs_type_1 {
  height: 100%;
  border: 0;
  padding: 32px 40px 40px;
  background-color: #0F3A37;
}

.cs_pricing_table.cs_style_1.cs_type_1 .cs_pricing_badge {
  border-radius: 0;
  max-width: 150px;
  padding: 7px 16px 7px 32px;
  top: 40px;
  right: 0;
  left: initial;
  transform: translateX(0);
}

.cs_pricing_table.cs_style_1.cs_type_1 .cs_pricing_badge::before {
  content: "";
  border-top: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #0F3A37;
  position: absolute;
  top: 0;
  left: -1px;
}

.cs_pricing_table.cs_style_1.cs_type_1 .cs_separator {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 50%, rgba(255, 255, 255, 0) 100%);
}

.cs_pricing_table.cs_style_1.cs_type_1 small {
  color: var(--white-color);
}

.cs_pricing_table.cs_style_1.cs_type_1 .cs_btn.cs_style_1 {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}

.cs_pricing_table.cs_style_1.cs_type_1.cs_active,
.cs_pricing_table.cs_style_1.cs_type_1:hover {
  background-color: #0F3A37;
}

.cs_pricing_table.cs_style_1.cs_type_1.cs_active .cs_btn.cs_style_1,
.cs_pricing_table.cs_style_1.cs_type_1:hover .cs_btn.cs_style_1 {
  background-color: var(--theme-color-4);
  color: var(--heading-color);
}

@media (max-width: 1399px) {
  .cs_pricing_table.cs_style_1.cs_type_1 {
    padding: 32px 20px 40px;
  }

  .cs_pricing_table.cs_style_1 .cs_pricing_badge {
    max-width: 160px;
  }

  .cs_pricing_table.cs_style_1 .cs_fs_74 {
    font-size: 64px;
  }
}

@media (max-width: 1199px) {
  .cs_pricing_table.cs_style_1 {
    padding: 48px 15px 40px;
  }

  .cs_pricing_table.cs_style_1.cs_active {
    padding-top: 60px;
    background-color: var(--theme-color-1);
  }

  .cs_pricing_table.cs_style_1.cs_active:hover {
    background-color: var(--theme-color-1);
  }

  .cs_pricing_table.cs_style_1 .cs_pricing_table_shape {
    display: none;
  }

  .cs_pricing_table.cs_style_1 .cs_fs_74 {
    font-size: 50px;
  }
}

.cs_pricing_table.cs_style_2 {
  padding: 52px 40px 60px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.cs_pricing_table.cs_style_2 .yearlyPrice {
  display: none;
}

.cs_pricing_table.cs_style_2 .cs_pricing_table_heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cs_pricing_table.cs_style_2 .cs_separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 26, 46, 0) 0%, #1A1A2E 51.5%, rgba(26, 26, 46, 0) 100%);
}

.cs_pricing_table.cs_style_2 .cs_feature_list_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cs_pricing_table.cs_style_2 .cs_pricing_feature_list {
  max-width: 220px;
}

.cs_pricing_table.cs_style_2 .cs_pricing_feature_list li {
  position: relative;
  padding-left: 33px;
  margin-bottom: 10px;
}

.cs_pricing_table.cs_style_2 .cs_pricing_feature_list li:last-child {
  margin-bottom: 0;
}

.cs_pricing_table.cs_style_2 .cs_feature_icon {
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 1px;
}

.cs_pricing_table.cs_style_2 .cs_btn.cs_style_1 {
  width: 100%;
  padding: 20px 30px;
  border-radius: 100px;
  color: var(--heading-color);
  border: 1px solid var(--border-color);
}

.cs_pricing_table.cs_style_2 .cs_pricing_badge {
  padding: 7px 16px 7px 32px;
  position: absolute;
  top: 49px;
  left: 48%;
  transform: translateX(-48%);
}

.cs_pricing_table.cs_style_2 .cs_pricing_badge::before {
  content: "";
  border-top: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid var(--accent-color);
  position: absolute;
  top: 0;
  left: -1px;
}

.cs_pricing_table.cs_style_2 .cs_feature_title,
.cs_pricing_table.cs_style_2 .cs_plan_title,
.cs_pricing_table.cs_style_2 .cs_price,
.cs_pricing_table.cs_style_2 .cs_feature_icon,
.cs_pricing_table.cs_style_2 .cs_separator {
  transition: all 0.3s ease;
}

.cs_pricing_table.cs_style_2:hover,
.cs_pricing_table.cs_style_2.active {
  background-color: var(--accent-color);
}

.cs_pricing_table.cs_style_2:hover .cs_feature_title,
.cs_pricing_table.cs_style_2:hover .cs_plan_title,
.cs_pricing_table.cs_style_2:hover .cs_price,
.cs_pricing_table.cs_style_2.active .cs_feature_title,
.cs_pricing_table.cs_style_2.active .cs_plan_title,
.cs_pricing_table.cs_style_2.active .cs_price {
  color: var(--white-color);
}

.cs_pricing_table.cs_style_2:hover .cs_feature_icon,
.cs_pricing_table.cs_style_2.active .cs_feature_icon {
  color: var(--theme-color-4);
}

.cs_pricing_table.cs_style_2:hover .cs_separator,
.cs_pricing_table.cs_style_2.active .cs_separator {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 51.5%, rgba(255, 255, 255, 0) 100%);
}

.cs_pricing_table.cs_style_2:hover .cs_btn.cs_style_1,
.cs_pricing_table.cs_style_2.active .cs_btn.cs_style_1 {
  background-color: var(--theme-color-4);
  border-color: var(--theme-color-4);
}

@media (max-width: 1399px) {
  .cs_pricing_table.cs_style_2 {
    padding: 52px 20px 60px;
  }

  .cs_pricing_table.cs_style_2 .cs_fs_74 {
    font-size: 64px;
  }

  .cs_pricing_table.cs_style_2 .cs_pricing_badge {
    left: 52%;
    transform: translateX(-52%);
  }
}

@media (max-width: 1199px) {
  .cs_pricing_table.cs_style_2 .cs_pricing_badge {
    padding: 7px 16px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .cs_pricing_table.cs_style_2 .cs_pricing_badge::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .cs_pricing_table.cs_style_2 .cs_fs_74 {
    font-size: 52px;
  }
}

@media (max-width: 440px) {
  .cs_pricing_table.cs_style_2 .cs_pricing_table_heading {
    flex-direction: column;
  }
}

/*-------------------------------------
 Pricing Controll
---------------------------------------*/
.cs_pricing_control {
  padding: 6px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  gap: 8px;
}

.cs_pricing_control li a {
  display: inline-block;
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--body-color);
}

.cs_pricing_control li.active a,
.cs_pricing_control li:hover a {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.cs_pricing_control .cs_offer_info {
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  text-wrap: nowrap;
}

.cs_pricing_control.cs_type_1 {
  background: linear-gradient(90deg, #7341F1 0%, #2EB67D 100%);
  border: 0;
}

.cs_pricing_control.cs_type_1::before {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: inherit;
  background-color: var(--accent-color);
  opacity: 0.8;
  position: absolute;
  left: 1px;
  top: 1px;
}

.cs_pricing_control.cs_type_1 li {
  position: relative;
  z-index: 1;
}

.cs_pricing_control.cs_type_1 li a {
  color: var(--white-color);
}

.cs_pricing_control.cs_type_1 li.active a,
.cs_pricing_control.cs_type_1 li:hover a {
  background-color: var(--theme-color-4);
  color: var(--heading-color);
}

.cs_pricing_control.cs_type_1 .cs_offer_info {
  right: calc(100% + 15px);
  left: initial;
}

@media (max-width: 440px) {
  .cs_pricing_control .cs_offer_info {
    top: calc(100% + 10px);
    left: 70%;
    transform: translateY(0);
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
  17. Testimonial
----------------------------------------------------------------*/
.cs_testimonial.cs_style_1 .testimonial_slider_content {
  padding: 35px 50px 50px;
}

.cs_testimonial.cs_style_1 .cs_rating {
  margin: 0 auto;
  max-width: 94px;
}

.cs_testimonial.cs_style_1 blockquote {
  font-size: 18px;
  color: var(--heading-color);
  font-style: normal;
  margin-bottom: 26px;
}

.cs_testimonial.cs_style_1 .cs_testimonial_shape_1 {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.cs_testimonial.cs_style_1 .cs_testimonial_shape_1 img {
  width: 100%;
  height: 100%;
}

.cs_testimonial.cs_style_1 .cs_testimonial_shape_2 {
  top: 80px;
  right: 6%;
  animation: rotation-y 10s linear infinite;
}

.cs_testimonial.cs_style_1 .cs_testimonial_shape_3 {
  top: 80px;
  left: 0;
}

.cs_testimonial.cs_style_1 .cs_bubble_1 {
  width: 20px;
  height: 20px;
  transform: scale(0.5);
  right: 6%;
  bottom: 29%;
  animation: bubble-animation 3s linear infinite;
}

.cs_testimonial.cs_style_1 .cs_bubble_2 {
  width: 10px;
  height: 10px;
  transform: scale(0.5);
  right: 4%;
  bottom: 20%;
  animation: bubble-animation 3s linear infinite;
  animation-delay: 1s;
}

.cs_testimonial.cs_style_1 .cs_bubble_3 {
  width: 15px;
  height: 15px;
  transform: scale(0.5);
  right: 13%;
  bottom: 10%;
  animation: bubble-animation 3s linear infinite;
  animation-delay: 2s;
}

@media (max-width: 1199px) {
  .cs_testimonial.cs_style_1 .testimonial_slider_content {
    padding: 0;
  }

  .cs_testimonial.cs_style_1 .cs_testimonial_shape_1 {
    display: none;
  }
}

.cs_testimonial.cs_style_2 .cs_testimonial_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cs_testimonial.cs_style_2 .cs_quote_icon {
  transform: translateX(-20px) scale(0);
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 0.4s;
}

.cs_testimonial.cs_style_2 .cs_rating {
  width: 97px;
}

.cs_testimonial.cs_style_2 blockquote {
  font-size: 18px;
  color: var(--heading-color);
  font-style: normal;
  margin-bottom: 30px;
}

.cs_testimonial.cs_style_2 .cs_avatar.cs_style_1 {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 0.4s;
}

.cs_testimonial.cs_style_3 {
  display: flex;
  align-items: center;
  gap: 40px 80px;
}

.cs_testimonial.cs_style_3 .cs_testimonial_thumbnail {
  flex: none;
  height: 100%;
  padding: 14px 90px 0 68px;
  background-color: var(--theme-color-4);
  border-radius: 20px 150px 0 20px;
}

.cs_testimonial.cs_style_3 .cs_testimonial_info {
  padding-right: 80px;
}

.cs_testimonial.cs_style_3 .cs_quote_icon {
  bottom: 80px;
  right: 80px;
}

.cs_testimonial.cs_style_3 blockquote {
  font-size: 20px;
  color: var(--heading-color);
  font-style: normal;
  font-family: var(--heading-font);
  margin-bottom: 28px;
}

.cs_testimonial.cs_style_3 .cs_rating {
  color: var(--theme-color-3);
}

@media (max-width: 1399px) {
  .cs_testimonial.cs_style_3 {
    gap: 40px;
  }

  .cs_testimonial.cs_style_3 .cs_testimonial_thumbnail {
    padding: 14px 30px 0 30px;
  }

  .cs_testimonial.cs_style_3 .cs_testimonial_info {
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .cs_testimonial.cs_style_3 {
    flex-direction: column;
    padding: 30px;
  }

  .cs_testimonial.cs_style_3 .cs_testimonial_info {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .cs_testimonial.cs_style_3 {
    flex-direction: column;
    padding: 30px 15px;
  }
}

.cs_avatar.cs_style_1 {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cs_avatar.cs_style_1 .cs_avatar_icon {
  width: 80px;
  height: 80px;
  flex: none;
}

.cs_avatar.cs_style_1 .cs_avatar_icon img {
  border-radius: inherit;
}

@media (max-width: 575px) {
  .cs_avatar.cs_style_1 {
    gap: 16px;
  }

  .cs_avatar.cs_style_1 .cs_avatar_icon {
    width: 60px;
    height: 60px;
  }
}

.cs_testimonial_slider_wrapper {
  padding: 52px 60px 60px;
  border: 1px solid var(--border-color);
}

@media (max-width: 991px) {
  .cs_testimonial_slider_wrapper {
    padding: 52px 30px 60px;
  }
}

@media (max-width: 575px) {
  .cs_testimonial_slider_wrapper {
    padding: 52px 15px 70px;
  }

  .cs_testimonial_slider_wrapper .cs_slider_arrows.cs_style_1 {
    position: absolute;
    right: 15px;
    bottom: 40px;
  }
}

/*-----------------------------------------
 Single slider arrow & navigation
--------------------------------------------*/
.cs_single_product_thumb .slick-arrow {
  width: 56px;
  height: 56px;
  background-color: var(--theme-color-4);
  border-radius: 50%;
  border: 0;
  outline: 0;
  position: absolute;
  top: -120px;
  left: 20%;
  font-size: 0;
  transition: all 0.4s ease;
}

.cs_single_product_thumb .slick-arrow.slick-next {
  left: initial;
  right: 20%;
  transform: rotate(180deg);
}

.cs_single_product_thumb .slick-arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/icons/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}

.cs_single_product_thumb .slick-arrow:hover {
  background: linear-gradient(90deg, #551DFF 0%, var(--primary-color) 100%);
}

.cs_single_product_thumb .slick-arrow:hover::after {
  filter: brightness(0) saturate(100%) invert(98%) sepia(100%) saturate(9%) hue-rotate(192deg) brightness(102%) contrast(104%);
}

@media (max-width: 1199px) {
  .cs_single_product_thumb .slick-arrow {
    left: 10%;
  }

  .cs_single_product_thumb .slick-arrow.slick-next {
    right: 10%;
  }
}

@media (max-width: 991px) {
  .cs_single_product_thumb .slick-arrow {
    left: 0;
  }

  .cs_single_product_thumb .slick-arrow.slick-next {
    right: 0;
  }
}

@media (max-width: 767px) {
  .cs_single_product_thumb .slick-arrow {
    display: none;
  }
}

.cs_single_product_nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs_single_product_nav .cs_nav_img {
  width: 60px !important;
  height: 60px;
}

.cs_single_product_nav .cs_nav_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.cs_single_product_nav .slick-current {
  width: 100px !important;
}

.cs_single_product_nav .slick-current .cs_nav_img {
  width: 100px !important;
  height: 100px;
  border: 2px solid var(--heading-color);
}

.cs_single_product_nav .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .cs_single_product_nav .cs_nav_img {
    width: 35px !important;
    height: 35px;
  }

  .cs_single_product_nav .slick-track {
    gap: 10px;
  }

  .cs_single_product_nav .slick-current {
    width: 60px !important;
  }

  .cs_single_product_nav .slick-current .cs_nav_img {
    width: 60px !important;
    height: 60px;
  }
}

/*-------------------------------------
 Animations
--------------------------------------*/
@keyframes bubble-animation {
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/*---------------------------------------------------------
 18. Layouts and Sections
-----------------------------------------------------------*/
.cs_features_steps_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 0px;
}

@media (max-width: 991px) {
  .cs_features_steps_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .cs_feature_step {
    gap: 0px !important;
  }

  .cs_feature_step:not(:last-child) {
    padding-right: 0px !important;
  }

  .cs_feature_step .cs_step_indfo_wrapper {
    padding: 10px !important;
  }

  .cs_features_steps_wrapper {
    gap: 10px;
  }

  .cs_feature_step .cs_vertical_line {
    height: 15px !important;
  }

  .countries-default .card-inner h3 {
    font-size: 10px !important;
    margin: 5px 0px !important;
  }

  .cs_counter.cs_style_1 .cs_counter_content_wrapper {
    padding: 40px 0px 20px 0px !important;
  }
}

.cs_feature_step {
  gap: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.cs_feature_step:not(:last-child) {
  padding-right: 30px;
}

.cs_feature_step .cs_step_index {
  padding: 6px 24px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  position: relative;
}

.cs_feature_step .cs_step_index>* {
  position: relative;
  z-index: 1;
}

.cs_feature_step .cs_step_index::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: inherit;
  transition: all 0.4s ease;
  background-image: linear-gradient(#737373, #000000);
}

.cs_feature_step .cs_vertical_line {
  width: 1px;
  height: 55px;
  background-color: var(--border-color);
}

.cs_feature_step .cs_step_indfo_wrapper {
  width: 100%;
  padding: 22px 20px 23px;
  position: relative;
  transition: all 0.3s ease;
}

.cs_feature_step .cs_step_indfo_wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.3s ease;
}

.cs_feature_step .cs_step_indfo_wrapper h3 {
  transition: all 0.3s ease;
}

.cs_feature_step .cs_step_indfo_wrapper>* {
  position: relative;
  z-index: 1;
}

.cs_feature_step .cs_step_indfo_wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: inherit;
  transition: all 0.4s ease;
  background-image: linear-gradient(#737373, #000000);
}

.cs_feature_step::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  position: absolute;
  top: 19px;
  left: 0;
}

.cs_feature_step:hover .cs_step_index,
.cs_feature_step:hover .cs_step_indfo_wrapper,
.cs_feature_step.active .cs_step_index,
.cs_feature_step.active .cs_step_indfo_wrapper {
  color: var(--white-color);
}

.cs_feature_step:hover .cs_step_index h3,
.cs_feature_step:hover .cs_step_indfo_wrapper h3,
.cs_feature_step.active .cs_step_index h3,
.cs_feature_step.active .cs_step_indfo_wrapper h3 {
  color: var(--white-color);
}

.cs_feature_step:hover .cs_step_index img,
.cs_feature_step:hover .cs_step_indfo_wrapper img,
.cs_feature_step.active .cs_step_index img,
.cs_feature_step.active .cs_step_indfo_wrapper img {
  opacity: 0;
}

.cs_feature_step:hover .cs_step_index::before,
.cs_feature_step:hover .cs_step_indfo_wrapper::before,
.cs_feature_step.active .cs_step_index::before,
.cs_feature_step.active .cs_step_indfo_wrapper::before {
  opacity: 1;
}

.cs_features_items_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cs_features_items_wrapper .cs_feature_item:nth-child(1) {
  grid-column: auto/span 2;
  border: 0;
  padding: 80px;
}

@media (max-width: 991px) {
  .cs_features_items_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .cs_features_items_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
.cs_feature_step .cs_step_indfo_wrapper h3{
  font-size: 18px;
}
  .cs_features_items_wrapper .cs_feature_item:nth-child(1) {
    grid-column: auto/span 1;
    padding: 40px 20px;
  }
}

.cs_feature_item {
  padding: 30px;
  border: 1px solid var(--border-color);
}

.cs_feature_item .cs_feature_icon {
  width: 60px;
  height: 60px;
  background-color: #f4ffce;
}

.cs_feature_item .cs_feature_icon.cs_bg_1 {
  background-color: #f4ffce;
}

.cs_feature_item .cs_feature_icon.cs_bg_2 {
  background-color: #ddfffc;
}

.cs_feature_item .cs_feature_icon.cs_bg_3 {
  background-color: #ffeee4;
}

.cs_feature_item .cs_feature_icon img {
  transition: all 0.6s ease-in-out;
}

.cs_feature_item h3 a:hover {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_feature_item .cs_features_list li {
  padding-left: 17px;
  position: relative;
}

.cs_feature_item .cs_features_list li:not(:last-child) {
  margin-bottom: 10px;
}

.cs_feature_item .cs_features_list img {
  position: absolute;
  left: 0;
  top: 7px;
}

.cs_feature_item .cs_btn.cs_style_1 {
  background: rgba(255, 255, 255, 0.25);
}

.cs_feature_item .cs_btn.cs_style_1:hover {
  background: linear-gradient(245deg, #551dff -77.04%, var(--primary-color) 119.05%);
}

.cs_feature_item .cs_text_btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  background: var(--heading-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_feature_item .cs_text_btn:hover {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_feature_item:hover .cs_feature_icon img {
  transform: rotateY(360deg);
}

@media (max-width: 1199px) {
  .cs_feature_item br {
    display: none;
  }
}

@media (max-width: 767px) {
  .cs_feature_item {
    padding: 30px 20px;
  }
}

/*---------------------------------------
 How It Works
----------------------------------------*/
.cs_workink_process_heading {
  padding-left: 40px;
}

@media (max-width: 1399px) {
  .cs_workink_process_heading {
    padding-left: 0;
  }
}

/*---------------------------------------
 counter Animation
----------------------------------------*/
.cs_counter.cs_style_1 {
  width: 100%;
  padding: 0 30px;
}

.cs_counter.cs_style_1 .cs_counter_content_wrapper {
  padding: 60px 0;
  background-color: var(--color-three);
}

.cs_counter.cs_style_1 .cs_counter_number {
  display: flex;
  justify-content: center;
}

.cs_numberbox p {
  text-align: center;
}

.cs_counter.cs_style_1.cs_type_1 {
  padding: 48px 0 51px;
}

@media (max-width: 1199px) {
  .cs_counter.cs_style_1 {
    padding: 0;
    border-radius: 0px;
  }

  .cs_counter.cs_style_1 .cs_counter_content_wrapper {
    border-radius: 0px;
  }

  .cs_counter.cs_style_1 br {
    display: none;
  }
}

@media (max-width: 991px) {
  .cs_counter.cs_style_1 .cs_counter_content_wrapper {
    padding: 75px 0;
  }

  .cs_counter.cs_style_1 .cs_counter_number {
    font-size: 25px;
  }

}

/*-----------------------------------------
 CTA
------------------------------------------*/
.cs_cta.cs_style_1 {
  padding: 0 30px;
}

.cs_cta.cs_style_1 .cs_cta_thumbnail {
  padding-left: 100px;
}

.cs_cta.cs_style_1 .cs_cta_thumbnail img {
  width: 100%;
  max-width: 330px;
}

.cs_cta.cs_style_1 .cs_cta_btns {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .cs_cta.cs_style_1 .cs_cta_thumbnail {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1 {
    padding: 0px;
  }
  .cs_cta.cs_style_1 .cs_cta_content_wrapper{
    border-radius: 0px;
  }

  .cs_cta.cs_style_1 .cs_cta_thumbnail img {}
}

@media (max-width: 768px) {
  .cs_cta.cs_style_1 .cs_cta_thumbnail img {
    display: none;
  }
  .cs_cta.cs_style_1 .cs_cta_text h2{
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 12px;
  }
  .cs_cta.cs_style_1 .cs_cta_text h3{
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 6px;
    font-weight: 500;
  }
    .cs_cta.cs_style_1 .cs_cta_text p{
      margin-bottom: 5px;
    }
    .cs_cta.cs_style_1 .cs_cta_btns{
      gap: 4px;
    }
}

/*-----------------------------------------
 Banner Styling
------------------------------------------*/
.cs_banner.cs_style_1 {
  margin-top: -430px;
  z-index: 2;
}

.cs_banner.cs_style_1 .cs_banner_thumbnail_wrapper {
  position: relative;
}

.cs_banner.cs_style_1 .cs_banner_thumbnail:nth-child(2) {
  width: 100%;
  height: 100%;
  padding-left: 67%;
  padding-top: 13%;
  position: absolute;
  right: 0;
  bottom: 0;
  animation: slide-x 10s linear infinite;
}

@media (min-width: 1400px) {
  .cs_banner.cs_style_1 .cs_banner_thumbnail:nth-child(2) {
    right: -80px;
  }
}

.cs_banner.cs_style_1 .cs_banner_thumbnail img {
  width: 100%;
}

@media (max-width: 991px) {
  .cs_banner.cs_style_1 {
    margin-top: -220px;
  }
}

@media (max-width: 767px) {
  .cs_banner.cs_style_1 {
    margin-top: -100px;
  }
}

/*----------------------------------------
 Video Block 
------------------------------------------*/
.cs_video.cs_style_1 {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/*----------------------------------------
 Toolset Section
------------------------------------------*/
.cs_toolset_content {
  padding-top: 380px;
}

.cs_toolset_content .cs_toolset_text {
  max-width: 604px;
}

.cs_toolset_content .cs_toolset_logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cs_toolset_content .cs_iconbox.cs_style_3 {
  position: absolute;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(1) {
  top: 0;
  left: 39%;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(2) {
  top: 0;
  right: 39%;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(3) {
  top: 17%;
  left: 12%;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(4) {
  top: 17%;
  left: 25%;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(5) {
  top: 17%;
  right: 12%;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(6) {
  top: 17%;
  right: 25%;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(7) {
  top: 39%;
  left: 5%;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(8) {
  top: 44%;
  left: 19%;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(9) {
  top: 39%;
  right: 5%;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(10) {
  top: 44%;
  right: 19%;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(11) {
  top: 61%;
  left: 0;
}

.cs_toolset_content .cs_iconbox.cs_style_3:nth-child(12) {
  top: 61%;
  right: 0;
}

.cs_toolset_content.cs_type_1 {
  padding: 85px 0;
}

.cs_toolset_content.cs_type_1 .cs_toolset_text {
  max-width: 710px;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(1),
.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(2),
.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(3),
.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(4) {
  top: 120px;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(7),
.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(8),
.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(9),
.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(10) {
  top: initial;
  bottom: 210px;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(1) {
  left: 2%;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(2) {
  left: 18%;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(3) {
  left: initial;
  right: 2%;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(4) {
  left: initial;
  right: 18%;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(5) {
  top: 38%;
  left: 10%;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(6) {
  top: 38%;
  right: 10%;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(7) {
  left: 2%;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(8) {
  left: 18%;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(9) {
  right: 2%;
}

.cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3:nth-child(10) {
  right: 18%;
}

@media (max-width: 1399px) {
  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(1) {
    left: 37%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(2) {
    right: 37%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(3) {
    left: 8%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(4) {
    left: 23%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(5) {
    right: 8%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(6) {
    right: 23%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(7) {
    left: 4%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(8) {
    top: 42%;
    left: 18%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(9) {
    right: 4%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(10) {
    top: 42%;
    right: 18%;
  }
}

@media (max-width: 1199px) {
  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(1) {
    left: 35%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(2) {
    right: 35%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(3) {
    left: 7%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(5) {
    right: 7%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(7) {
    left: 2%;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3:nth-child(9) {
    right: 2%;
  }
}

@media (max-width: 991px) {
  .cs_toolset_content {
    padding: 0 !important;
  }

  .cs_toolset_content .cs_toolset_text {
    max-width: 100%;
    margin-top: 40px;
  }

  .cs_toolset_content .cs_iconbox.cs_style_3 {
    position: initial;
  }

  .cs_toolset_content.cs_type_1 .cs_iconbox.cs_style_3 {
    position: initial;
  }
}

/*------------------------------------------------
 Brands Section
-------------------------------------------------*/
.cs_brands_wrapper {
  padding: 52px 40px 33px;
  border: 1px solid var(--border-color);
}

.cs_brands_wrapper .cs_brand_title {
  padding: 8px 36px 8px 36px;
  box-shadow: 0px 1px 2px 0px rgba(45, 54, 67, 0.05);
  position: absolute;
  left: 67px;
  top: -22px;
  text-align: center;
}

.cs_brands_wrapper .cs_brand_title img {
  position: absolute;
  top: 15px;
  left: 16px;
}

.cs_brands_wrapper .cs_brand_title img:last-child {
  left: initial;
  right: 16px;
}

@media (max-width: 991px) {
  .cs_brands_wrapper {
    padding: 52px 15px 33px;
  }

  .cs_brands_wrapper .cs_brand_title {
    position: relative;
    left: initial;
    margin-top: -54px;
  }
}

/*-------------------------------------------
 Customer Review
--------------------------------------------*/
.cs_customer_review {
  padding: 108px 0 120px;
}

.cs_customer_review .cs_review_item {
  padding: 40px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(104deg, rgba(255, 255, 255, 0.1) 0.47%, rgba(255, 255, 255, 0) 100.42%);
  backdrop-filter: blur(20px);
}

.cs_customer_review .cs_rating_container {
  width: 134px;
  border-radius: 50px;
  padding: 5px 20px;
  background: rgba(255, 255, 255, 0.1);
}

.cs_customer_review .cs_rating {
  color: var(--white-color);
  letter-spacing: 4px;
}

/*------------------------------------------------
 Service Details Pgae
-------------------------------------------------*/
.cs_service_details img {
  width: 100%;
  border-radius: inherit;
}

.cs_service_details h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.21em;
  text-transform: capitalize;
}

.cs_service_details p {
  font-family: var(--heading-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.56em;
  margin-bottom: 30px;
}

.cs_service_details p:last-child {
  margin-bottom: 0;
}

.cs_service_details .cs_banner {
  width: 100%;
  margin-bottom: 52px;
}

.cs_service_details ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: flex-start;
  gap: 15px 90px;
  margin-bottom: 60px;
}

.cs_service_details ul li {
  list-style: disc;
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .cs_service_details ul {
    gap: 15px 50px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .cs_service_details h2 {
    font-size: 36px;
  }

  .cs_service_details .cs_banner {
    margin-bottom: 40px;
  }

  .cs_service_details ul {
    grid-template-columns: repeat(1, auto);
  }
}

/*------------------------------------------------
 Project & Project Details Pgae
-------------------------------------------------*/
.cs_projects_wrapper {
  width: 100%;
  max-width: 1770px;
  padding: 0 15px;
  margin: 0 auto;
}

.cs_project_item img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.cs_project_item .cs_project_info {
  width: 96%;
  max-width: 323px;
  padding: 24px 20px;
  background: var(--white-color);
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.cs_project_item:hover .cs_project_info {
  bottom: 30px;
  opacity: 1;
}

.cs_project_details h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.21em;
}

.cs_project_details p {
  font-size: 18px;
  line-height: 1.56em;
  margin-bottom: 50px;
}

.cs_project_details img {
  width: 100%;
  border-radius: inherit;
}

.cs_project_details .cs_banner {
  margin-bottom: 49px;
}

.cs_project_details ul {
  margin: 0;
}

.cs_project_details ul li {
  list-style: disc;
  margin-bottom: 15px;
}

.cs_project_details ul li b {
  font-weight: 600;
  color: var(--heading-color);
  margin-right: 3px;
}

.cs_project_details ul li:last-child {
  margin-bottom: 0;
}

.cs_project_details ul li::marker {
  color: var(--heading-color);
}

.cs_project_details .cs_project_desc {
  max-width: 788px;
}

.cs_project_details .cs_project_info_wrapper {
  width: 100%;
  max-width: 370px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  margin: -110px auto 0;
  position: relative;
}

.cs_project_details .cs_project_info_wrapper::before {
  content: "";
  width: 100%;
  height: 100px;
  background: linear-gradient(#737373, #000000);
  border-radius: 15px 15px 0 0;
  position: absolute;
  left: 0;
  top: -4px;
}

.cs_project_details .cs_project_info_inner {
  padding: 34px 30px 40px;
  position: relative;
  z-index: 1;
}

.cs_project_details .cs_project_info_list li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 0;
  padding: 12px 0;
}

.cs_project_details .cs_project_info_list li:last-child {
  border-bottom: 1px solid var(--border-color);
}

.cs_project_details .cs_project_info_list .cs_social_links.cs_style_2 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cs_project_details .cs_project_info_list .cs_social_links.cs_style_2 a {
  width: fit-content;
  height: fit-content;
  padding: 0;
}

.cs_project_details .cs_project_info_list .cs_social_links.cs_style_2 a:hover {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
  .cs_project_details .cs_banner {
    margin-bottom: 40px;
  }

  .cs_project_details p {
    margin-bottom: 30px;
  }

  .cs_project_details .cs_project_info_wrapper {
    max-width: 100%;
    margin: 0px auto 0;
  }
}

/*---------------------------------------------------------
  Contact Page
 ---------------------------------------------------------*/
.cs_contact_desc .cs_contact_info_list {
  padding: 40px;
  border-radius: 20px 20px 0px 0px;
  background: linear-gradient(#737373, #000000);
}

.cs_contact_desc .cs_contact_info_list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cs_contact_desc .cs_contact_info_list li:first-child {
  padding-top: 0;
}

.cs_contact_desc .cs_contact_info_list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cs_contact_desc .cs_contact_info_list a:hover {
  color: var(--theme-color-3);
}

.cs_contact_desc .cs_video.cs_style_1 {
  min-height: 247px;
}

.cs_result {
  font-size: 14px;
  color: var(--accent-color);
}

@media (min-width: 1400px) {
  .cs_contact_desc {
    padding: 0 30px 0 66px;
  }

  .cs_contact_form_wrapper {
    padding-right: 80px;
  }
}

.cs_location_map iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  filter: grayscale(150%);
  margin-bottom: -10px;
}

@keyframes slide-x {
  50% {
    transform: translateX(50px);
  }
}

/*--------------------------------------------------------------
  19. Posts Post Details page
----------------------------------------------------------------*/
.cs_post.cs_style_1 {
  padding: 16px 16px 18px;
  border: 1px solid var(--border-color);
}

.cs_post.cs_style_1 .cs_post_thumbnail {
  display: block;
  border-radius: 14px;
  aspect-ratio: 6/5;
}

.cs_post.cs_style_1 .cs_post_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.6s ease;
}

.cs_post.cs_style_1 .cs_post_thumbnail:hover img {
  transform: scale(1.06);
}

.cs_post.cs_style_1 .cs_post_category {
  padding: 2px 14px;
  border-radius: 0px 50px 50px 0px;
  left: 0;
  top: 20px;
  transition: all 0.3s ease;
}

.cs_post.cs_style_1 .cs_post_meta_wrapper {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cs_post.cs_style_1 .cs_post_title a{
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.cs_post.cs_style_1 .cs_post_meta_wrapper span:first-child {
  margin-right: 2px;
}

.cs_post.cs_style_1 .cs_post_title:hover a {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_post.cs_style_1 .cs_post_btn i {
  margin-left: 10px;
}

.cs_post.cs_style_1 .cs_post_btn span:first-child {
  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%); */
  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: 100% 1px;
}

.cs_post.cs_style_1 .cs_post_btn:hover {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_post.cs_style_1 .cs_post_btn:hover span:first-child {
  background-size: 0 1px;
}

.cs_post.cs_style_1:hover .cs_post_category {
  background: linear-gradient(#737373, #000000);
}

.cs_post.cs_style_1.cs_type_1 .cs_post_btn,
.cs_post.cs_style_1.cs_type_1 .cs_post_title a {
  background: none;
  -webkit-text-fill-color: var(--heading-color);
}

.cs_post.cs_style_1.cs_type_1 .cs_post_btn:hover,
.cs_post.cs_style_1.cs_type_1 .cs_post_title:hover a {
  -webkit-text-fill-color: var(--accent-color);
}

.cs_post.cs_style_1.cs_type_2 {
  padding: 30px;
}

.cs_post.cs_style_1.cs_type_2 .cs_post_thumbnail {
  border-radius: 10px;
}

.cs_post.cs_style_1.cs_type_2 .cs_post_meta_wrapper {
  padding-bottom: 0;
  border-bottom: 0;
}

.cs_post.cs_style_1.cs_type_2 .cs_post_subtitle {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cs_post.cs_style_1.cs_type_2 .cs_posted_by {
  padding: 11px 16px;
  top: 20px;
  left: 20px;
  background: linear-gradient(#737373, #000000);
}

.cs_post.cs_style_1.cs_type_2 .cs_posted_by span {
  line-height: 1em;
}

@media (max-width: 767px) {
  .cs_post.cs_style_1.cs_type_2 {
    padding: 15px 15px 20px;
  }

  .cs_post.cs_style_1 .cs_post_thumbnail {
    aspect-ratio: 8/5 !important;
  }
  .cs_post.cs_style_1{
    padding: 10px;
  }
  .cs_post.cs_style_1 .cs_fs_20{
    font-size: 16px;
  }
  .cs_post.cs_style_1 .cs_post_meta_wrapper{
    margin-bottom: 3px;
  }
  .cs_post.cs_style_1 .cs_fs_20 {
    margin-bottom: 4px;
  }
}

.cs_post.cs_style_2 {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cs_post.cs_style_2 .cs_post_thumbnail {
  display: inline-block;
}

.cs_post.cs_style_2 .cs_post_thumbnail img {
  border-radius: inherit;
  transition: all 0.6s ease;
}

.cs_post.cs_style_2 .cs_post_thumbnail:hover img {
  transform: scale(1.06);
}

.cs_post.cs_style_2 .cs_post_content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cs_post.cs_style_2 .cs_post_meta_wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cs_post.cs_style_2 .cs_post_meta:first-child {
  border-radius: 50px;
  padding: 3px 20px;
  background: linear-gradient(#737373, #000000);
  position: relative;
}

.cs_post.cs_style_2 .cs_post_meta:first-child::before {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: var(--gray-color-1);
  border-radius: inherit;
  position: absolute;
  left: 1px;
  top: 1px;
}

.cs_post.cs_style_2 .cs_post_meta:first-child>* {
  position: relative;
  z-index: 1;
}

.cs_post.cs_style_2 .cs_post_meta:last-child {
  padding-left: 22px;
  position: relative;
}

.cs_post.cs_style_2 .cs_post_meta:last-child::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--heading-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.cs_post.cs_style_2 .cs_post_title:hover a {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs_post.cs_style_2 .cs_post_btn_wrapper {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.cs_post.cs_style_2 .cs_separator {
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 30px;
}

.cs_post.cs_style_2 .cs_post_btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 5px 20px;
}

.cs_post.cs_style_2 .cs_post_btn:hover {
  color: var(--white-color);
  border-color: transparent;
  background: linear-gradient(#737373, #000000);
}

.cs_posts_wrapper .cs_post.cs_style_1 {
  margin-bottom: 30px;
}

.cs_posts_wrapper .cs_post.cs_style_1:last-child {
  margin-bottom: 0;
}

@media (min-width: 1400px) {
  .cs_posts_wrapper {
    padding-right: 42px;
  }
}

/* ------------------------------------
 Pagination
----------------------------------------*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.page-item {
  display: inline-block;
  border-radius: 6px;
  color: var(--body-color);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  color: var(--heading-color);
}

.page-item span {
  padding: 5px 16px;
  border-radius: 5px;
  font-size: 12px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  border-radius: inherit;
  font-size: 12px;
  color: var(--body-color);
  border: 1px solid var(--border-color);
  position: relative;
}

.page-link:hover {
  background: linear-gradient(#737373, #000000);
  color: var(--white-color) !important;
  border-color: transparent;
}

.page-item.active .page-link {
  background: linear-gradient(#737373, #000000);
  color: var(--white-color);
  border-color: transparent;
  pointer-events: none;
}

/*-------------------------------------
 Blog Details Page
---------------------------------------*/
/* .cs_post_details {
  padding-right: 42px;
} */

.cs_post_details h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.07em;
  margin-bottom: 30px;
}

.cs_post_details p {
  font-size: 16px;
  line-height: 1.75em;
  font-family: var(--heading-font);
  margin-bottom: 30px;
}

.cs_post_details p:last-child {
  margin-bottom: 0;
}

.cs_post_details img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.cs_post_details .cs_post_meta_wrapper {
  display: flex;
  gap: 15px 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.cs_post_details .cs_post_meta_wrapper i {
  margin-right: 8px;
}

.cs_post_details .cs_posted_by {
  padding: 11px 16px;
  top: 32px;
  left: 33px;
  background: linear-gradient(#737373, #000000);
}

.cs_post_details .cs_posted_by span {
  line-height: 1em;
}

.cs_post_details .cs_posted_by span:first-child {
  margin-bottom: 3px;
}

.cs_post_details .cs_quote_wrapper {
  padding-left: 4px;
}

.cs_post_details .cs_quote_wrapper::before {
  content: "";
  width: 40px;
  height: 100%;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(#737373, #000000);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.cs_post_details .cs_quote_wrapper img {
  width: fit-content;
  height: fit-content;
  position: absolute;
  bottom: 20px;
  right: 40px;
  z-index: 1;
}

.cs_post_details blockquote {
  padding: 30px 130px 30px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--heading-color);
  font-family: var(--heading-font);
  background-color: var(--gray-color-1);
  margin-bottom: 33px;
  position: relative;
  z-index: 1;
}

.cs_post_details .cs_post_share_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cs_post_details .cs_post_tags,
.cs_post_details .cs_post_socials {
  display: flex;
  align-items: center;
  gap: 15px 10px;
  flex-wrap: wrap;
}

.cs_post_details .cs_post_tags h3,
.cs_post_details .cs_post_socials h3 {
  margin: 0;
}

.cs_post_details .cs_tags_links {
  gap: 5px;
}

.cs_post_details .cs_tags_links .cs_tag_link {
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

.cs_post_details .cs_tags_links .cs_tag_link:hover {
  border-color: transparent;
}

.cs_post_details .cs_social_links.cs_style_2 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cs_post_details .cs_social_links.cs_style_2 a {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--body-color);
}

.cs_post_details .cs_social_links.cs_style_2 a::after {
  display: none;
}

.cs_post_details .cs_social_links.cs_style_2 a:hover {
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1399px) {
  .cs_post_details {
    padding-right: 0;
  }

  .cs_post_details blockquote {
    padding: 30px 40px 30px 36px;
  }
}

@media (max-width: 767px) {
  .cs_post_details blockquote {
    padding: 30px 15px 50px 15px;
  }

  .cs_post_details .cs_quote_wrapper svg {
    right: 20px;
    bottom: 15px;
  }
}

/*--------------------------------------
 Comments
----------------------------------------*/
.cs_comment_list li {
  padding-bottom: 30px;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 30px;
}

.cs_comment_list li:first-child {
  padding-top: 0;
}

.cs_comment_list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.cs_comment_body {
  display: flex;
  gap: 20px;
}

.cs_comment_body .cs_comment_thumbnail {
  flex: none;
  width: 96px;
  height: 96px;
}

.cs_comment_body .cs_comment_thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.cs_comment_body .cs_reply_btn {
  border-radius: 50px;
  background: linear-gradient(#737373, #000000);
  color: var(--white-color);
  border: 0;
  outline: 0;
  padding: 2px 16px;
  position: absolute;
  top: 20px;
  right: 0;
}

.cs_comment_body .cs_reply_btn:hover {
  background: linear-gradient(245deg, #1A1A2E -67.04%, #1A1A2E 129.05%);
}

@media (max-width: 575px) {
  .cs_comment_body {
    flex-direction: column;
  }

  .cs_comment_body .cs_reply_btn {
    display: block;
    position: initial;
    margin-top: 15px;
    margin-left: auto;
  }
}

.cs_comment_form label {
  color: var(--heading-color);
  font-weight: 500;
}

.cs_comment_form .cs_btn.cs_style_1 {
  border: 0;
  outline: 0;
}

@media (min-width: 1400px) {
  .cs_comment_area {
    padding-right: 42px;
  }
}

/*--------------------------------------------------------------
  20. Team
----------------------------------------------------------------*/
.cs_team.cs_style_1 {
  max-width: 420px;
  margin: 0 auto;
}

.cs_team.cs_style_1 .cs_team_thumbnail {
  width: 75%;
  max-width: 300px;
  margin: 0 auto;
}

.cs_team.cs_style_1 .cs_team_thumbnail img {
  border-radius: inherit;
}

.cs_team.cs_style_1 .cs_team_info {
  width: 100%;
  padding: 175px 30px 24px;
  margin-top: -156px;
  transition: all 0.3s ease;
}

.cs_team.cs_style_1 .cs_social_links.cs_style_1 a {
  background: none;
}

.cs_team.cs_style_1 .cs_social_links.cs_style_1 a::after,
.cs_team.cs_style_1 .cs_social_links.cs_style_1 a::before {
  display: none;
}

.cs_team.cs_style_1 .cs_social_links.cs_style_1 a:nth-child(1) {
  background-color: #E7F1FF;
  color: #1877F2;
}

.cs_team.cs_style_1 .cs_social_links.cs_style_1 a:nth-child(2) {
  background-color: #FFFAE3;
  color: #FED91F;
}

.cs_team.cs_style_1 .cs_social_links.cs_style_1 a:nth-child(3) {
  background-color: #E1F5FF;
  color: #0077B5;
}

.cs_team.cs_style_1 .cs_social_links.cs_style_1 a:nth-child(4) {
  background-color: #FFEBEE;
  color: #E60023;
}

.cs_team.cs_style_1 .cs_social_links.cs_style_1 a:hover:nth-child(1) {
  background-color: #1877F2;
  color: #E7F1FF;
}

.cs_team.cs_style_1 .cs_social_links.cs_style_1 a:hover:nth-child(2) {
  background-color: #FED91F;
  color: var(--heading-color);
}

.cs_team.cs_style_1 .cs_social_links.cs_style_1 a:hover:nth-child(3) {
  background-color: #0077B5;
  color: #E1F5FF;
}

.cs_team.cs_style_1 .cs_social_links.cs_style_1 a:hover:nth-child(4) {
  background-color: #E60023;
  color: #FFEBEE;
}

.cs_team.cs_style_1:hover .cs_team_info {
  box-shadow: 0px 10px 50px 10px #E8E8E8;
}

/*---------------------------------------------
 Team Details Page
----------------------------------------------*/
.cs_team_details p {
  font-size: 18px;
  font-family: var(--heading-font);
  margin-bottom: 30px;
}

.cs_team_details p:last-child {
  margin-bottom: 0;
}

.cs_team_details h2 {
  font-size: 48px;
  line-height: 1.21em;
  font-weight: 600;
  margin-bottom: 20px;
}

.cs_team_details ul li {
  color: var(--heading-color);
  list-style: disc;
  margin-bottom: 15px;
}

.cs_team_details ul li:last-child {
  margin-bottom: 0;
}

.cs_team_details .cs_team_info_wrapper {
  padding: 40px;
  margin-bottom: 63px;
}

.cs_team_details .cs_team_thumbnail img {
  width: 100%;
  border-radius: inherit;
}

.cs_team_details .cs_team_info {
  padding-left: 16px;
}

.cs_team_details .cs_team_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.cs_team_details .cs_team_header h3 {
  margin-bottom: -6px;
}

.cs_team_details .cs_social_links.cs_style_1 {
  gap: 7px;
}

.cs_team_details .cs_social_links.cs_style_1 a {
  width: 36px;
  height: 36px;
  background: linear-gradient(245deg, #fff 50%, #fff 50%);
  color: var(--heading-color);
}

.cs_team_details .cs_social_links.cs_style_1 a::after {
  display: none;
}

.cs_team_details .cs_social_links.cs_style_1 a::before {
  opacity: 0;
}

.cs_team_details .cs_social_links.cs_style_1 a:hover {
  color: var(--white-color);
}

.cs_team_details .cs_social_links.cs_style_1 a:hover::before {
  opacity: 1;
}

.cs_team_details .cs_contact_list {
  padding-top: 45px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cs_team_details .cs_contact_list li {
  padding-left: 46px;
  position: relative;
  list-style: none;
}

.cs_team_details .cs_contact_list .cs_contact_icon {
  width: 36px;
  height: 36px;
  padding: 5px;
  position: absolute;
  left: 0;
  top: -5px;
}

.cs_team_details .cs_contact_list i,
.cs_team_details .cs_contact_list a:hover {
  background: linear-gradient(#737373, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1199px) {
  .cs_team_details .cs_team_info {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .cs_team_details .cs_team_info_wrapper {
    padding: 20px 20px 40px;
    margin-bottom: 40px;
  }

  .cs_team_details h2 {
    font-size: 36px;
  }

  .cs_team_details p {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */




/* CUSTOM CSS */



.container {
  max-width: 1500px;
  margin: auto;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1600px !important;
  }
}

@media (min-width: 1251px) and (max-width: 1500px) {
  .container {
    max-width: 1200px !important;
  }
}

@media (min-width: 1001px) and (max-width: 1250px) {
  .container {
    max-width: 980px !important;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .container {
    margin: 0px 20px;
  }
}

@media (max-width:768px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}


.buttons-two {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-flow: row wrap;
}


.btn-hover .cs_btn_icon {
  width: 22px;
  height: 16px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-hover .cs_btn_icon i {
  position: absolute;
  font-weight: 700;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0;
}

.btn-hover .cs_btn_icon .default-icon {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.btn-hover .cs_btn_icon .hover-icon {
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}

.btn-hover:hover .cs_btn_icon .default-icon {
  opacity: 0;
  transform: translateY(-50%) translateX(100%);
}

.btn-hover:hover .cs_btn_icon .hover-icon {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


.btn-one {
  background-color: var(--secondary-color);
  cursor: pointer;
  color: black;
  padding: 15px 30px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  border: none;
  gap: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  width: max-content;
}
.btn-one input{
  background-color: transparent;
  border: none;
}

.btn-one:hover {
  background-color: black;
  color: white;
}
.btn-one:hover input{
  color: white;
}
.btn-one .text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-two {
  background-color: black;
  color: rgb(255, 255, 255);
  cursor: pointer;
  padding: 15px 30px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  width: max-content;
}

.btn-two:hover {
  background-color: var(--secondary-color);
  color: #000000;
}

.btn-two .text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.label-item {
  background-color: transparent;
  border: solid 1px var(--color-three);
  border-radius: 20px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: black;
  font-size: 16px;
  font-weight: 500;
  width: max-content;
  margin-bottom: 25px;
}

.label-item svg {
  width: 16px;
  height: 16px;
  fill: black;
}

@media (max-width:768px) {

  .btn-one .text,
  .btn-two .text {
    font-size: 12px;
  }

  .btn-one,
  .btn-two {
    padding: 10px 15px;
  }
}

.btn-one .wpcf7-spinner{
  display: none;
}

.banner-sec .swiper-slide {
  padding: 150px 0px 100px 0px;
  background:linear-gradient(45deg, #0514c20f, #ffce1a12) ;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Right image continuous floating */
.banner-sec .right img {
  animation: floatForever 4s ease-in-out infinite;
  display: block;
}

/* Keyframes for smooth up-down float */
@keyframes floatForever {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* .banner-sec  .slide-item{
  min-height: 100vh;
} */
.banner-sec .container {
  height: 100%;
}

.banner-sec .left h2 {
  font-size: 51px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 72px;
  margin-top: 20px;
}

.banner-sec .left p {
  color: black;
  margin-bottom: 40px;

}
.banner-sec .right{
  display: flex;
  justify-content: center;
}
.banner-sec .right img{
  max-width: 600px;
}

.banner-sec .slide-item{
  position: relative;
}
@media (max-width:768px) {
  .banner-sec .left h2 {
    font-size: 27px;
    line-height: 43px;
    margin-bottom: 15px;
  }
  .banner-sec .left {
    color: black;   
    font-weight: 500;
  }
  .banner-sec .buttons-two{
    margin-top: 30px;
  }
  .banner-sec .right{
  position: absolute;
  top: 80px;
  right: 10px;
  z-index: -1;
  opacity: 0.4;
}
.banner-sec .right img{
  max-width: 280px;
}

.banner-sec .left p {
  margin-bottom: 7px;
}
  .label-item {
    margin-bottom: 10px;
    font-size: 13px;
    gap: 5px;
    padding: 4px;
  }

  .label-item svg {
    width: 15px;
    height: 15px;
  }

  .banner-sec .swiper-slide {
    padding:130px 0px 40px 0px;
  }

  .cs_card.cs_style_1 .cs_card_thumbnail>img {
    display: none;
  }
}

.card-sec-one .cs_iconbox_icon {
  background-color: var(--secondary-color);
  border-radius: 5px;
  color: black;
  padding: 10px;
}



.testimonials-section {
  background: #f9f9f9;
}

.section-header .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header .section-subtitle {
  font-size: 16px;
  color: #555;
}

.testimonial-card {
  border: solid 1px rgb(223, 223, 223);
  padding: 20px;
  border-radius: 15px;
}

.testimonial-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.testimonial-icon img {
  width: 50px;
  box-shadow: 0 3px 30px 0 rgb(0 0 0 / 10%);
  border-radius: 50%;
}

.testimonial-icon .rating {
  display: flex;
  align-items: center;
  gap: 3px;
}

.testimonial-icon .rating i {
  font-size: 16px;
  color: var(--secondary-color);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 12px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.testimonial-author p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.testimonials-slick .slick-slide {
  margin: 0 15px;
  /* adjust spacing as needed */
}

.testimonials-slick .slick-list {
  margin: 0 -15px;
  /* compensate for outer spacing */
}


.cs_location_info p {
  font-weight: 600;
  font-size: 16px;
  color: black;
}

.copy-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}

.padding-main {
  padding-bottom: 60px !important;
  padding-top: 60px !important;
}

@media (max-width:768px) {
  .padding-main {
    padding-bottom: 20px !important;
    padding-top: 20px !important;
  }
  .section-header .section-title{
    font-size: 20px;
  }
}



.copy-right img {
  max-height: 30px;
}

@media (max-width:768px) {
  .copy-right {
    flex-flow: row wrap;
    gap: 0px;
  }
  .copy-right p{
    margin-bottom: 0px;
    font-size: 10px;
  }
  .copy-right img{
    height: 15px;
  }
}


/* COUNTRIES */


.countries-default {
  position: relative;
  background: url("assets/images/country-bg.webp") no-repeat center/cover;
  z-index: 1;
}

/* Overlay */
.countries-default::before {
  content: "";
  position: absolute;
  inset: 0;
  /* shorthand for top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.5);
  /* change color & opacity as needed */
  z-index: 2;
}

/* Ensure content stays above overlay */
.countries-default>* {
  position: relative;
  z-index: 3;
}
.countries-default {
  background-size: cover;
  background-position: center;
}

.countries-default .swiper {
  padding-top: 30px;
  padding-bottom: 60px;
}

.countries-default .swiper-slide {
  display: flex;
  justify-content: center;
}


.countries-swiper .swiper-pagination-bullet-active {
  background: #000;
}

.countries-default .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.countries-default .head {
  margin-bottom: 30px;
}

.countries-default .head .left h2 {
  color: white;
  font-size: 40px;
}

.countries-default .head .left p {
  color: white;
  max-width: 700px;
}

.countries-default .card-inner .image {
  display: flex;
  justify-content: center;
  aspect-ratio: 5/5;
  width: 90px;
}

.countries-default .card-inner img {
width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.countries-default .card-inner {
    padding: 0px 5%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countries-default .card-inner h3 {
      font-size: 12px;
    letter-spacing: 1px;
    color: white;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    max-width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.countries-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  margin-right: 30px;
}




.card-inner h3 {
  font-size: 16px;
  margin-top: 10px;
  color: #222;
}

/* Continuous scroll animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




@media (max-width:768px) {
 
  .countries-default .head {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }
  .countries-default .card-inner .image{
    width: 70px;
  }
  .marquee-item{
    margin-right: 20px;
  }

  /* .countries-default .card-inner .row>* {
    padding-left: 7px !important;
    padding-right: 7px !important;
  } */

  .countries-default .card-inner {
    padding: 0px;
    margin-bottom: 20px;
  }

  .countries-default .head .left h2 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
  }
    .countries-default .head .left p{
      margin-bottom: 0px;
    }
}


/* COUNTRIES LIST */

.countries-sec .heading {
  margin-bottom: 40px;
}

.countries-sec .heading h2 {
  font-size: 45px;
  margin-bottom: 15px;
}

.countries-sec .country-search-form {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 700px;
  width: 100%;
}

.countries-sec .country-search-form .search-input {
  width: 100%;
  padding: 10px 45px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.countries-sec .country-search-form .search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.countries-sec .country-search-form .search-btn {
  position: absolute;
  right: 4px;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  color: #000000;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s ease;
  background-color: var(--secondary-color);
  padding: 7px 15px;
  border-radius: 32px;
}

.countries-sec .country-card {
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 0px 9px 0 rgb(0 0 0 / 10%);
  margin-bottom: 30px;
}

.countries-sec .country-card .top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 17px;
}

.countries-sec .country-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.countries-sec .country-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}

.countries-sec .country-card ul {
  margin: 0px;
  padding: 0px;
}

.countries-sec .country-card ul li {
  color: #515151;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.countries-sec .country-card li i {
  color: var(--primary-color);
  font-size: 15px;
}

@media (max-width:768px) {
  .countries-sec .heading h2 {
    font-size: 20px;
  }

  .countries-sec .heading {
    margin-bottom: 20px;
  }

  .countries-sec .country-card {
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 10px;
  }

  .countries-sec .country-card .top {
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }

  .countries-sec .country-card img {
    width: 45px;
    height: 45px;
  }
}


/* SERVICE ICON */

.service-main-sec .service-card-bg {
  padding: 12px 0 0 12px;
  border-radius: 10px;
  border-top: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  transition: all 0.3s ease;
  height: 100%;
  display: block;
}
.service-main-sec .col-md-4{
  margin-bottom: 30px;
}
.service-main-sec .service-card-bg:hover {
  padding: 0px;
}

.service-main-sec .service-card-bg:hover .service-card {
  background: linear-gradient(#0514C2, #010c86);
  color: white;
}

.service-main-sec .service-card-bg:hover .service-card h3 {
  color: white;
}

.service-main-sec .service-card {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 15px;
  height: 100%;
}

.service-main-sec .service-card .service-head {
  display: flex;
  align-items: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.service-main-sec .service-card .service-head .icon {
  background-color: var(--secondary-color);
  border-radius: 5px;
  padding: 8px;
  width: 42px;
  height: 42px;
}

.service-main-sec .service-card .service-head h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}

.service-main-sec .service-card ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.service-main-sec .service-card ul li {
  margin-bottom: 15px;
  font-size: 14px;
}

@media (max-width:768px) {
  .service-main-sec .service-card-bg {
    padding: 10px 0px 0px 10px;
  }
  .service-main-sec .col-md-4{
    margin-bottom: 10px;
  }
  .service-main-sec .service-card {
    padding: 10px;
  }

  .service-main-sec .service-card .service-head .icon {
    height: 30px;
    width: 30px;
    padding: 5px;
  }

  .service-main-sec .service-card .service-head h3 {
    font-size: 15px;
  }

  .service-main-sec .service-card .service-head {
    margin-bottom: 10px;
  }

  .service-main-sec .service-card ul li {
    margin-bottom: 7px;
  }
}

/* SERVICE_DETAILS */

.service-details .left img {
  width: 100%;
  border-radius: 20px;
}

.service-details .right h2 {
  font-size: 50px;
  margin-bottom: 30px;
}

.service-details .right p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 30px;
}

.service-details .service-text-content {
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #fff;
  border-radius: 12px;
  line-height: 1.7;
  color: #333;
}

.service-details .service-text-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #111;
}


.service-details .service-text-content h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
}

.service-details .service-text-content h4 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.service-details .service-text-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

.service-details .service-text-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.service-details .service-text-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #444;
  font-size: 0.98rem;
}

.service-details .service-text-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.service-details .service-text-content a.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.service-details .service-text-content a.btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .service-details .right h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .service-details .service-text-content {
    margin-top: 30px;
    padding: 0px;
  }

  .service-details .service-text-content h2 {
    font-size: 1.8rem;
  }

  .service-details .service-text-content h3 {
    font-size: 1.3rem;
  }
}

/* MODAL FORM */

.modal {
  padding: 0px !important;
}

.modal-form .modal-header {
  border: none;
}

.modal-form .modal-header h5 {
  font-size: 25px;
  font-weight: 600;
}

.modal-form .form-group {
  margin-bottom: 18px;
}

.modal-form .form-group label {
  margin-bottom: 0px;
  font-size: 14px;
}

.modal-form .form-group .form-control {
  padding: 11px;
  border-radius: 8px;
  border: solid 1px #e1e1e1;
  font-size: 14px;
  outline: none;
}


/* SELECT CURRENCY */

.modal-currency-select h2 {
  font-size: 25px;
  font-weight: 600;
}

.modal-currency-select .modal-header {
  font-size: 17px;
  color: #595959;
  margin: 0px;
  font-weight: 500;
  text-transform: uppercase;
}

.modal-currency-select .modal-body h3 {
  font-size: 17px;
  color: #595959;
  font-weight: 500;
  text-transform: uppercase;
}

.modal-currency-select .modal-body .currency-list ul {
  columns: 2;
  margin: 0px;
  padding: 0px;
}

.modal-currency-select .modal-body .currency-list ul li {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.modal-currency-select .modal-body .currency-list {
  margin-bottom: 20px;
}

.modal-currency-select .modal-body .currency-list ul li img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.modal-currency-select .modal-body .currency-list ul li span {
  font-size: 14px;
}

.modal-currency-select .modal-body .save-btn {
  display: flex;
  justify-content: center;
}

.modal-currency-select .modal-body .save-btn button {
  padding: 7px 40px;
  background-color: var(--secondary-color);
  color: black;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-size: 15px;
  border-radius: 20px;
}

@media (max-width:768px) {
  .modal-currency-select .modal-body .currency-list ul li span {
    font-size: 12px;
    line-height: 23px;
  }
  .modal-currency-select .modal-body {
    padding: 10px;
  }
  .modal-currency-select .modal-body .currency-list ul li img {
    height: 22px;
    width: 22px;
  }
  .modal-currency-select .modal-body .currency-list ul li{
    margin-bottom: 15px;
  }
}
/* CONTACT PAGE */

.contact-tabs .nav-tabs {
  border: none !important;
}

.contact-tabs .nav-tabs .nav-link {
  border: solid 1px black;
  border-radius: 0px;
  color: black;
  padding: 6px 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}

.contact-tabs .nav-tabs .nav-link.active {
  background-color: black;
  color: white;
}

.contact-tabs .nav-tabs {
  display: flex;
  gap: 10px;
}

.contact-tabs .contact-info i {
  background-color: var(--secondary-color);
  width: 35px;
  height: 35px;
  color: black !important;
  padding: 10px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
}

.contact-tabs .contact-info li {
  display: flex;
  gap: 5px;
  align-items: center;
}

.contact-tabs .contact-info li span {
  font-size: 15px;
  font-weight: 500;
}


/* GET HELP FAQ */


.get-help-button {
  position: fixed;
  top: 200px;
  right: 30px;
  z-index: 997;
}

.get-help-button button {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--secondary-color);
  /* Change to your brand color */
  color: #000000;
  border: none;
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.get-help-button button:hover {
  transform: translateY(-2px);
  background-color: var(--primary-color);
  color: white;
}
.get-help-button button:hover svg {
  stroke: white;
}
.get-help-button button svg {
  width: 20px;
  height: 20px;
  stroke: #000000;
}

/* Optional: Mobile-friendly positioning */
@media (max-width: 768px) {
  
  .get-help-button {
    position: relative !important;
    top: 0;
    right: 0;
  }
  .get-help-button button svg {
    display: none;
  }

  .get-help-button button {
    padding: 4px 8px !important;
    font-size: 11px;
  }

}



/* Sidebar Panel */
.help-sidebar {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100%;
  background-color: #fff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  z-index: 9998;
  overflow-y: auto;
  padding: 20px;
  padding-bottom: 100px;
}

.help-sidebar.active {
  right: 0;
}

/* Header */
.help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.help-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0px;
}

.help-header button {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* FAQ LIST SECTION */
.help-sidebar .faq-list {
  margin-top: 10px;
}

/* Accordion Group */
.help-sidebar .faq-list .faq-group {
  background-color: #FFF9E4;
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Accordion Header */
.help-sidebar .faq-list .accordion-header {
  cursor: pointer;
  position: relative;
  padding-right: 25px;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Icon inside header */
.help-sidebar .faq-list .accordion-header i {
  background-color: var(--secondary-color);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #000;
  border-radius: 3px;
}

/* Header text */
.help-sidebar .faq-list .accordion-header h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: #000;
}

/* Chevron */
.help-sidebar .faq-list .accordion-header::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.help-sidebar .faq-list .faq-group.open .accordion-header::after {
  transform: translateY(-50%) rotate(225deg);
}

/* Expanded List */
.help-sidebar .faq-list .faq-group.open ul {
  margin-top: 10px;
}

/* FAQ List Items */
.help-sidebar .faq-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.help-sidebar .faq-list ul li {
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 14px;
  color: black;
}



/* FAQ Detail */
.help-sidebar .faq-detail {
  display: none;
  background-color: #FFF9E4;
  padding: 10px 12px;
  border-radius: 6px;
}

.help-sidebar .faq-detail.active {
  display: block;
}

.help-sidebar .faq-detail .faq-details-head {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 20px;
}

.help-sidebar .faq-detail .faq-details-head h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0px;
}

.help-sidebar .faq-detail .faq-details-head i {
  color: black;
}

.help-sidebar .faq-detail p {
  font-size: 14px;
  color: black;
}

/* Back button */
.help-sidebar .back-btn {
  display: inline-block;
  background: none;
  border: none;
  color: black;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--secondary-color);
  border-radius: 4px;
  height: 30px;
  width: 30px;
}

.help-sidebar .help-footer {
  position: absolute;
  bottom: 0px;
  left: 10px;
  right: 10px;
}

.help-sidebar .help-footer .footer-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: var(--primary-color);
  padding: 10px;
  color: white;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  flex-flow: row wrap;
}

.help-sidebar .help-footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 15px 0px;
}

.help-sidebar .help-footer-links span {
  color: #000000;
}

.help-sidebar .help-footer-links i {
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .help-sidebar {
    width: 100%;
    right: -100%;
    padding: 12px;
  }
  .help-sidebar .faq-list .faq-group{
    padding: 6px 8px;
  }
  .help-sidebar .faq-list .accordion-header h4{
    font-size: 14px;
  }
}



/* TRADEMARK REGISTER */

.trademark-register .trademark-steps .step-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.trademark-register .trademark-steps .step-tab {
  position: relative;
  text-align: center;
  padding: 12px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
}

.trademark-register .trademark-steps .step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #555;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.trademark-register .trademark-steps .step-label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #777;
}

.trademark-register .trademark-steps .step-tab.active .step-number {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 115, 230, 0.3);
}

.trademark-register .trademark-steps .step-tab.active .step-label {
  color: var(--primary-color);
  font-weight: 600;
}

.trademark-register .trademark-steps .step-tab.completed .step-number {
  background: #28a745;
  color: #fff;
}

.trademark-register .trademark-steps .step-tab.completed .step-label {
  color: #28a745;
}

.trademark-register .trademark-steps .step-line {
  width: 80px;
  height: 3px;
  background: #ddd;
  transition: background 0.3s ease;
}

.trademark-register .trademark-steps .step-tab.active~.step-line,
.trademark-register .trademark-steps .step-tab.completed~.step-line {
  background: var(--primary-color);
}




.trademark-register .trademark-steps .step-tab.active {
  color: #000;
}

.trademark-register .trademark-steps .step-content {
  display: none;
}

.trademark-register .trademark-steps .step-content.active {
  display: block;
}

.trademark-register .trademark-steps .step-content .steps-head {
  margin-bottom: 30px;
}

.trademark-register .trademark-steps .step-content .steps-head .top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.trademark-register .trademark-steps .step-content .steps-head span {
  background-color: var(--secondary-color);
  color: black;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50%;
  text-align: center;
}

.trademark-register .trademark-steps .step-content .steps-head p {
  font-size: 16px;
}

.trademark-register .trademark-steps .step-content .steps-head h3 {
  margin: 0px;
  font-size: 17px;
  font-weight: 600;
}

/* Trademark Type Boxes */
.trademark-register .trademark-steps .trademark-options {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.trademark-register .trademark-steps .trademark-options p {
  font-size: 14px;
}

.trademark-register .trademark-steps .trademark-options .title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.trademark-register .trademark-steps .trademark-options .title h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.trademark-register .trademark-steps .trademark-options .title span {
  font-size: 14px;
}

.trademark-register .trademark-steps .trademark-options .title img {
  width: auto;
  height: 60px;
}

.trademark-register .trademark-steps .trademark-option {
  flex: 1;
  border: 2px solid #eee;
  border-radius: 6px;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.trademark-register .trademark-steps .trademark-option:hover,
.trademark-register .trademark-steps .trademark-option.active {
  border-color: var(--secondary-color);
  background: #fff9e4;
}

.trademark-register .trademark-steps .trademark-input {
  display: none;
  margin-bottom: 20px;
}

.trademark-register .trademark-steps .trademark-input label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

/* Trademark Input Box */
.trademark-register .trademark-input {
  max-width: 450px;
  margin: 25px auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Poppins', sans-serif;
}

.trademark-register .trademark-steps .trademark-input .input-wrapper {
  position: relative;
  width: 100%;
}

.trademark-register .trademark-steps .trademark-input input {
  width: 100%;
  padding: 14px 14px 14px 16px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  outline: none;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Floating Label */
.trademark-register .trademark-steps .trademark-input label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 15px;
  pointer-events: none;
  transition: 0.2s ease all;
  background: #fff;
  padding: 0 6px;
}

/* Focus + Filled */
.trademark-register .trademark-steps .trademark-input input:focus,
.trademark-register .trademark-steps .trademark-input input:not(:placeholder-shown) {
  border-color: var(--primary-color, #ffb400);
}

.trademark-register .trademark-steps .trademark-input input:focus+label,
.trademark-register .trademark-steps .trademark-input input:not(:placeholder-shown)+label {
  top: 0;
  font-size: 13px;
  color: var(--primary-color, #ffb400);
}

/* Border Highlight */
.trademark-register .trademark-steps .trademark-input .input-focus-border {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color, #ffb400);
  transition: width 0.3s ease;
}

.trademark-register .trademark-steps .trademark-input input:focus~.input-focus-border {
  width: 100%;
}

/* Hint Text */
.trademark-register .trademark-steps .trademark-input .input-hint {
  margin-top: 6px;
  font-size: 13px;
  color: #777;
  font-style: italic;
}

/* Responsive */
@media (max-width: 480px) {
  .trademark-register .trademark-steps .trademark-input input {
    font-size: 15px;
  }

  .trademark-register .trademark-steps .trademark-input label {
    font-size: 14px;
  }
  .trademark-register .trademark-steps .step-tabs{
    margin-bottom: 5px;
  }
  .trademark-register .trademark-steps .step-content .steps-head{
    margin-bottom: 10px;
  }
  .trademark-register .trademark-steps .step-content .steps-head span{
    width: 30px;
    height: 30px;
    padding: 4px;
  }
  .trademark-register .trademark-steps .step-content .steps-head h3 {
    font-size: 15px;
  }
  .trademark-register .trademark-steps .step-content .steps-head p {
    margin-bottom: 5px;
  }
  .trademark-register .trademark-steps .trademark-option{
    padding: 7px;
  }
  .trademark-register .trademark-steps .trademark-options .title img {
    height: 45px;
  }
  .trademark-register .trademark-steps .trademark-options .title h4 {
    font-size: 15px;
    margin-bottom: 0px;
  }
  .trademark-register .trademark-steps .trademark-options .title span {
    font-size: 12px;
    line-height: 20px;
  }
  .trademark-register .trademark-steps .trademark-options p{
    margin-bottom: 0px;
    font-size: 12px;
  }
      .trademark-register .trademark-steps .trademark-options{
        gap: 5px;
      }
      .trademark-register .trademark-steps .step-number{
        width: 30px;
        height: 30px;
        font-size: 14px;
      }
      .trademark-register .trademark-steps .trademark-options .title{
        margin-bottom: 5px;
      }
      .trademark-register .trademark-steps .country-step .row>*{
        padding-left: 4px;
        padding-right: 4px;
      }
      .country-item .country-label{
        padding: 5px !important;
      }
      .country-item .country-label h4 {
        font-size: 13px !important;
        font-weight: 400 !important;
      }
      .country-item .country-label .rate{
        font-size: 11px !important;
      }
}

/* Step 2 */


.trademark-register .trademark-steps .country-list {
  display: grid;
  grid-template-columns: auto auto auto;
  flex: 2;
}
.country-item{
  position: relative;
}
/* Hide native radio button */
.country-item input[type="radio"] {
  display: none;
}

/* Full card label styling */
.country-item .country-label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #eee;
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
  position: relative;
}

.country-item .country-label:hover {
  border-color: var(--secondary-color);
  background-color: #fffaf0;
}

/* Flag image */
.country-item .country-label img.flag {
  width: 35px;
  height: 25px;
  object-fit: cover;
  border-radius: 3px;
}

/* Country info */
.country-item .country-label .right {
  display: flex;
  flex-direction: column;
}

.country-item .country-label h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.country-item .country-label .rate {
  font-size: 14px;
  font-weight: 500;
}

/* Checked state for full card */
.country-item input[type="radio"]:checked+.country-label {
  border-color: var(--secondary-color);
  background-color: #fff4d3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Optional: checkmark on top-right */
.country-item input[type="checkbox"] {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 700;
  z-index: 99;
}


.trademark-register .trademark-steps .country-summary {
  background: #fffcf2;
  padding: 15px;
  border-radius: 6px;
}

.trademark-register .trademark-steps .country-summary h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: solid 1px #ddd;
}

.trademark-register .trademark-steps .country-summary ul {
  list-style: none;
  padding: 0;
}

.trademark-register .trademark-steps .country-summary ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: black;
  flex-direction: column;
}

.trademark-register .trademark-steps .country-summary ul li .country-summary-header{

  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}


.trademark-register .trademark-steps .country-summary ul li.total {
  font-weight: 700;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  flex-direction: row;
}

/* Step Buttons */
.trademark-register .trademark-steps .step-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.trademark-register .trademark-steps .step-buttons button {
  background: var(--primary-color);
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 400;
  color: rgb(255, 255, 255);
}


/* Trademark Logo Upload Section */
.trademark-register .trademark-steps .trademark-upload {
  max-width: 450px;
  margin: 25px auto;
  display: none;
}

/* Upload Area */
.trademark-register .trademark-steps .trademark-upload .upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 40px 20px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.trademark-register .trademark-steps .trademark-upload .upload-area:hover {
  border-color: var(--primary-color, #ffb400);
  background-color: #fffaf0;
}

/* Icon */
.trademark-register .trademark-steps .trademark-upload .upload-icon {
  font-size: 40px;
  color: var(--primary-color, #ffb400);
  margin-bottom: 10px;
}

/* Upload Text */
.trademark-register .trademark-steps .trademark-upload .upload-text {
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}

.trademark-register .trademark-steps .trademark-upload .upload-text span {
  color: var(--primary-color, #ffb400);
  text-decoration: underline;
  cursor: pointer;
}

/* Drag Active State */
.trademark-register .trademark-steps .trademark-upload .upload-area.dragover {
  border-color: var(--primary-color, #ffb400);
  background-color: #fff4d3;
}

/* Preview Box */
.trademark-register .trademark-steps .trademark-upload .upload-preview {
  display: none;
  margin-top: 15px;
  text-align: center;
}

.trademark-register .trademark-steps .trademark-upload .upload-preview img {
  max-width: 180px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Applicant Form */
.trademark-register .trademark-steps .applicant-form {
  margin: 25px auto;
}
.trademark-register .trademark-steps .applicant-form p{
  margin-bottom: 0px;
}

/* Form Group */
.trademark-register .trademark-steps .applicant-form .form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.trademark-register .trademark-steps .applicant-form .form-group button {
  background-color: var(--secondary-color);
  padding: 12px 30px;
  color: black;
  border: none;
  width: max-content;
}

/* Input & Textarea */
.trademark-register .trademark-steps .applicant-form input,
.trademark-register .trademark-steps .applicant-form textarea {
  padding: 9px 16px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  outline: none;
  background-color: #fff;
  transition: all 0.3s ease;
  font-family: inherit;
  resize: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  width: 100%;
}

/* Focus effect */
.trademark-register .trademark-steps .applicant-form input:focus,
.trademark-register .trademark-steps .applicant-form textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Labels */
.trademark-register .trademark-steps .applicant-form label {
  font-size: 15px;
  color: #888;
  background: #fff;
  padding: 0 5px;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  margin-bottom: 2px;
}

/* Floating label when input is filled */
.trademark-register .trademark-steps .applicant-form input:focus+label,
.trademark-register .trademark-steps .applicant-form input:not(:placeholder-shown)+label,
.trademark-register .trademark-steps .applicant-form textarea:focus+label,
.trademark-register .trademark-steps .applicant-form textarea:not(:placeholder-shown)+label {
  top: -8px;
  font-size: 13px;
  color: var(--secondary-color);
}

/* Textarea */
.trademark-register .trademark-steps .applicant-form textarea {
  min-height: 100px;
  padding-top: 18px;
  /* extra space for floating label */
}

/* Responsive */
@media (max-width: 480px) {
  .trademark-register .trademark-steps .applicant-form {
    gap: 0px;
  }
.country-item input[type="checkbox"]{
  bottom: 0px;
}
  .trademark-register .trademark-steps .applicant-form input,
  .trademark-register .trademark-steps .applicant-form textarea {
    font-size: 14px;
  }

  .trademark-register .trademark-steps .applicant-form label {
    font-size: 14px;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .trademark-register .trademark-steps .trademark-options {
    flex-direction: column;
  }

  .trademark-register .trademark-steps .country-step {
    flex-direction: column;
  }
}

.country-banner {
  padding: 140px 0 0px;
}
.country-banner .container{
    background-color: #ffce1a17;
    padding:40px 20px;
    border-radius: 20px;
}
.country-banner .left .country-title{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.country-banner .left .country-title img{
  height: 30px;
}
.country-banner .left h1 {
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.country-banner .left h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0px;
}
.country-banner .right{
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
}
.country-banner .right p {
  margin-bottom: 15px;
  font-size: 15px;
}

.country-banner .right img {
  width: 100%;
}

@media (max-width:768px) {
  .country-banner {
    padding: 80px 0px 25px;
  }

  .country-banner .container{
    border-radius: 0px;
    box-shadow: none;
  }

  .country-banner .left h1 {
    font-size: 20px;
  }

  .country-banner .left h2 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
  }
}

.country-video-sec .left h2 {
  font-size: 40px;
  font-weight: 600;
}

.country-video-sec .left p {
  font-size: 16px;
  color: black;
  margin-bottom: 30px;
}

.country-video-sec .left ul {
  padding: 0px;
}

.country-video-sec .left ul li {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.country-video-sec .left ul li .icon i {
  width: 50px;
  height: 50px;
  padding: 15px;
  text-align: center;
  color: var(--secondary-color);
  background-color: #ffce1a30;
  font-size: 20px;
  border-radius: 4px;
}

.country-video-sec .left ul li .text h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.country-video-sec .left ul li .text span {
  font-size: 15px;
}

@media (max-width:768px) {
  .country-video-sec .left h2 {
    font-size: 20px;
  }

}

/* Video Banner */
.country-video-sec .right .video-banner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.country-video-sec .right .video-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.country-video-sec .right .video-banner:hover img {
  transform: scale(1.05);
}

.country-video-sec .right .video-banner .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  transition: all 0.3s ease;
}

.country-video-sec .right .video-banner:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video Popup */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-popup.active {
  display: flex;
}

.video-popup-content {
  position: relative;
  background: #000;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
}

.video-popup-content iframe {
  width: 100%;
  height: 450px;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
  .video-popup-content iframe {
    height: 250px;
  }

  .country-video-sec .right .video-banner img {
    max-height: 200px;
    object-fit: cover;
  }
}


.trademark-services {
  background-color: #FFFCEF;
}

.trademark-services .heading h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

.trademark-services .card-inner {
  border: solid 1px #010101;
  height: 100%;
  padding: 15px;
  border-radius: 12px;
}

.trademark-services .card-inner .title {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trademark-services .card-inner .title span {
  font-size: 20px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px black;
  text-stroke: 1px black;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.trademark-services .card-inner .title h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}

.trademark-services .card-inner p {
  font-size: 14px;
}

.trademark-services .col-md-3 {
  margin-bottom: 30px;
}

@media (max-width:768px) {
  .trademark-services .heading h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
  }

  .trademark-services .card-inner .title {
    margin-bottom: 7px;
  }
.trademark-services .card-inner{
  padding: 12px;
}
  .trademark-services .card-inner p {
    margin-bottom: 0px;
  }

  .trademark-services .col-md-3 {
    margin-bottom: 10px;
  }

}


.registration-steps .left h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

.registration-steps .left p {
  margin-bottom: 20px;
}

.registration-steps .right ul {
  columns: 2;
  padding: 0px;
}

.registration-steps .right ul li {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 15px;
  box-shadow: 0 0px 11px 0 rgb(0 0 0 / 10%);
  border-radius: 15px;
  margin-bottom: 20px;
}

.registration-steps .right ul li span {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  padding: 14px;
  font-weight: 700;
}

.registration-steps .right ul li h3 {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width:768px) {
  .registration-steps .left h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .registration-steps .right ul {
    margin: 20px 0px 0px 0px;
  }

  .registration-steps .right ul li {
            padding: 10px;
        gap: 5px;
        margin-bottom: 10px;
  }

  .registration-steps .right ul li span {
    font-size: 14px;
    height: 30px;
    width: 30px;
    font-weight: 400;
    padding: 4px
  }

  .registration-steps .right ul li h3 {
    font-size: 15px;
  }
}


.requirements-sec .left h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.requirements-sec .left ul {
  padding: 0px;
}

.requirements-sec .left ul li {
  background-color: #F3F3F3;
  margin-bottom: 15px;
  border-radius: 4px;
  display: block;
  padding: 10px 5px;
  color: black;
  font-size: 15px;
}


.requirements-sec .right .fee-table h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: black;
}

.requirements-sec .right table {
  width: 100%;
  border-collapse: collapse;
}

.requirements-sec .right table th {
  background-color: #ffce1a0f;
  color: var(--secondary-color);
  padding: 8px;
  font-weight: 400;
  border: none;
}

.requirements-sec .right table td {
  padding: 7px;
  border: 1px solid #eee;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
}



.requirements-sec .right .note {
  font-size: 13px;
  color: #777;
  margin-top: 15px;
}



.cta-two .container {
  border-radius: 30px;
  padding: 30px;
  background-color: #F9F9F9;
  box-shadow: 0 0px 10px 0 rgb(0 0 0 / 13%);
}

.cta-two .container .left .buttons {
  display: flex;
  gap: 20px;
}

.cta-two .container .left p {
  margin: 30px 0px 25px 0px;
}
.cta-two .container .left h2{
  font-weight: 600;
  font-size: 35px;
}
@media (max-width:768px) {
  .cta-two .left h2 {
    font-size: 30px;
  }
  .requirements-sec .left ul li{
    padding: 10px;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .requirements-sec .right table th,
  .requirements-sec .right table td{
    font-size: 12px;
  }
.requirements-sec .left h2{
  font-size: 22px;
  margin-bottom: 15px;
}
  .cta-two .container .left .buttons {
    gap: 10px;
  }
.cta-two .container .right{
  display: none;
}
  .cta-two .container {
    border-radius: 0px;
    box-shadow: none;
  }

}


.pagination-wrapper {
  text-align: center;
  margin-top: 30px;
}

.pagination-wrapper .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.pagination-wrapper .page-numbers:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #000;
}

.pagination-wrapper .current {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}


.main-title {
  font-size: 40px;
}

@media (max-width:768px) {
  .main-title {
    font-size: 19px;
    line-height: 29px;
  }
}

.cta-calendly{
  margin-bottom: 20px;
}
.cta-calendly .container{
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding:70px 30px;
  display: flex;
  justify-content: center;
  text-align: center;
  height: 100%;
      background-image: url(../images/cta.webp);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-calendly .container .cta-content{
  max-width: 800px;
}

@media (max-width:768px) {
  .cta-calendly .container{
    padding: 35px 10px;
    border-radius: 0px;
  }
  .cta-calendly .container .cta-content h2{
    font-size: 25px;
  }
}

.cs_brands_slider {
  margin-top: 20px;
}

.cs_brands_slider img {
  margin: 0 auto;
  display: block;
  transition: 0.3s;
  border: solid 1px #e9e9e9;
  padding: 0px;
}

.cs_brands_slider img:hover {
  filter: grayscale(0%);
}



/* SWIPER NAVS */

/* Remove default Swiper arrow styles completely */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}

/* Shared navigation button styling */
.swiper-button-prev,
.swiper-button-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
}

/* Hover */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #fff;
  color: #000;
}

/* Banner slider positions */
.banner-prev { left: 30px; }
.banner-next { right: 30px; }
.swiper-button-prev{
  left: 0px;
}
.swiper-button-next{
  right: 0px;
}

@media (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
@media (max-width:992px) {
  .swiper-button-prev, .swiper-button-next{
    display: none;
  }
}


.thankyou-card {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 150px;
        display: flex;
    flex-direction: column;
    align-items: center;
}

.thankyou-card h2 {
    font-size: 28px;
    color: #333;
    margin: 0px 0 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.thankyou-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.lottie-animation {
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width:768px) {
  .thankyou-card{
    box-shadow: none;
    margin-top: 120px;
    margin-bottom: 30px;
    padding: 15px;
  }
  .lottie-animation {
    width: 200px;
  }
  .thankyou-card h2 {
    font-size: 20px;
  }
    .thankyou-card p{
      font-size: 14px;
    }
}


.contact-maps .video-box{
  border: solid 1px rgb(230, 230, 230);
}
.contact-maps video{
  margin-left: -1px;
  width: 100%;
}





/* Modal Body Container */
.consult-modal-body {
  padding: 2rem;
}

/* Content Layout */
.consult-modal-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Left Image */
.consult-modal-image img {
  max-width: 230px;
}

/* Right Side Content */
.consult-modal-text {
  flex: 1;
  min-width: 250px;
}

.consult-modal-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.consult-modal-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Custom Button */
.consult-modal-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.consult-modal-btn:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 576px) {
  .consult-modal-content {
    flex-direction: column;
    text-align: center;
  }
  
  .consult-modal-image img {
    max-width: 120px;
  }
}



.cs_error_img img{
  max-width: 400px;
}
.error-sec{
  padding: 150px 0px 40px 0px;
}
@media (max-width:768px) {
  .cs_error_img img{
    max-width: 200px;
  }
}




.country-tags {
    display: flex;
    flex-flow: row wrap;
    gap: 2px;
    margin-bottom: 5px;
}

.country-flag {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 5px;
}
.country-tag-details{
  margin-bottom: 15px;
}
.country-tag-details .country-flag{

    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 5px;
}


.step-content[data-step="1"] .next-btn:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}
.step-content[data-step="2"] .next-btn:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}


.discount {
    color: #28a745;
    font-weight: 600;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
    font-size: 0.9rem;
    padding: 0.75rem;
}

.country-summary {
    position: relative;
}