@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Start Poppins */
/* Start Rubik */
@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/static/Rubik-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/static/Rubik-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/static/Rubik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/static/Rubik-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --white: #fff;
  --black: #000;
  --heading-color: #222;
  --body-color: #636363;
  --accent-color: #0097b2;
  --blue-color: #002261;
  --gray-color: #e8edf0;
  --border-color: #dddddd;
  --heading-font: "Poppins", sans-serif;
  --body-font: "Rubik", sans-serif;
}

body,
html {
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

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

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
  line-height: 1.6em;
}

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

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

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

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

address {
  margin: 0 0 15px;
}

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

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

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

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

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

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

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

dl {
  margin-bottom: 25px;
}

dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

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

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

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

/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.cs_preloader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
  left: 0;
  top: 0;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs_preloader .cs_preloader_in {
  position: relative;
}

.cs_preloader .cs_preloader_in svg {
  width: 110px;
  height: 110px;
}

.cs_preloader .cs_wave_first svg {
  fill: rgba(46, 166, 247, 0.15);
}

.cs_preloader .cs_wave_second {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  -webkit-animation: spark 1.25s linear infinite;
  animation: spark 1.25s linear infinite;
}

.cs_preloader .cs_wave_second svg {
  fill: var(--accent-color);
}

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

  100% {
    max-width: 100%;
  }
}

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

  100% {
    max-width: 100%;
  }
}

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

  .cs_height_2 {
    height: 2px;
  }

  .cs_height_3 {
    height: 3px;
  }

  .cs_height_4 {
    height: 4px;
  }

  .cs_height_5 {
    height: 5px;
  }

  .cs_height_6 {
    height: 6px;
  }

  .cs_height_7 {
    height: 7px;
  }

  .cs_height_8 {
    height: 8px;
  }

  .cs_height_9 {
    height: 9px;
  }

  .cs_height_10 {
    height: 10px;
  }

  .cs_height_11 {
    height: 11px;
  }

  .cs_height_12 {
    height: 12px;
  }

  .cs_height_13 {
    height: 13px;
  }

  .cs_height_14 {
    height: 14px;
  }

  .cs_height_15 {
    height: 15px;
  }

  .cs_height_16 {
    height: 16px;
  }

  .cs_height_17 {
    height: 17px;
  }

  .cs_height_18 {
    height: 18px;
  }

  .cs_height_19 {
    height: 19px;
  }

  .cs_height_20 {
    height: 20px;
  }

  .cs_height_21 {
    height: 21px;
  }

  .cs_height_22 {
    height: 22px;
  }

  .cs_height_23 {
    height: 23px;
  }

  .cs_height_24 {
    height: 24px;
  }

  .cs_height_25 {
    height: 25px;
  }

  .cs_height_26 {
    height: 26px;
  }

  .cs_height_27 {
    height: 27px;
  }

  .cs_height_28 {
    height: 28px;
  }

  .cs_height_29 {
    height: 29px;
  }

  .cs_height_30 {
    height: 30px;
  }

  .cs_height_31 {
    height: 31px;
  }

  .cs_height_32 {
    height: 32px;
  }

  .cs_height_33 {
    height: 33px;
  }

  .cs_height_34 {
    height: 34px;
  }

  .cs_height_35 {
    height: 35px;
  }

  .cs_height_36 {
    height: 36px;
  }

  .cs_height_37 {
    height: 37px;
  }

  .cs_height_38 {
    height: 38px;
  }

  .cs_height_39 {
    height: 39px;
  }

  .cs_height_40 {
    height: 40px;
  }

  .cs_height_41 {
    height: 41px;
  }

  .cs_height_42 {
    height: 42px;
  }

  .cs_height_43 {
    height: 43px;
  }

  .cs_height_44 {
    height: 44px;
  }

  .cs_height_45 {
    height: 45px;
  }

  .cs_height_46 {
    height: 46px;
  }

  .cs_height_47 {
    height: 47px;
  }

  .cs_height_48 {
    height: 48px;
  }

  .cs_height_49 {
    height: 49px;
  }

  .cs_height_50 {
    height: 50px;
  }

  .cs_height_51 {
    height: 51px;
  }

  .cs_height_52 {
    height: 52px;
  }

  .cs_height_53 {
    height: 53px;
  }

  .cs_height_54 {
    height: 54px;
  }

  .cs_height_55 {
    height: 55px;
  }

  .cs_height_56 {
    height: 56px;
  }

  .cs_height_57 {
    height: 57px;
  }

  .cs_height_58 {
    height: 58px;
  }

  .cs_height_59 {
    height: 59px;
  }

  .cs_height_60 {
    height: 60px;
  }

  .cs_height_61 {
    height: 61px;
  }

  .cs_height_62 {
    height: 62px;
  }

  .cs_height_63 {
    height: 63px;
  }

  .cs_height_64 {
    height: 64px;
  }

  .cs_height_65 {
    height: 65px;
  }

  .cs_height_66 {
    height: 66px;
  }

  .cs_height_67 {
    height: 67px;
  }

  .cs_height_68 {
    height: 68px;
  }

  .cs_height_69 {
    height: 69px;
  }

  .cs_height_70 {
    height: 70px;
  }

  .cs_height_71 {
    height: 71px;
  }

  .cs_height_72 {
    height: 72px;
  }

  .cs_height_73 {
    height: 73px;
  }

  .cs_height_74 {
    height: 74px;
  }

  .cs_height_75 {
    height: 75px;
  }

  .cs_height_76 {
    height: 76px;
  }

  .cs_height_77 {
    height: 77px;
  }

  .cs_height_78 {
    height: 78px;
  }

  .cs_height_79 {
    height: 79px;
  }

  .cs_height_80 {
    height: 80px;
  }

  .cs_height_81 {
    height: 81px;
  }

  .cs_height_82 {
    height: 82px;
  }

  .cs_height_83 {
    height: 83px;
  }

  .cs_height_84 {
    height: 84px;
  }

  .cs_height_85 {
    height: 85px;
  }

  .cs_height_86 {
    height: 86px;
  }

  .cs_height_87 {
    height: 87px;
  }

  .cs_height_88 {
    height: 88px;
  }

  .cs_height_89 {
    height: 89px;
  }

  .cs_height_90 {
    height: 90px;
  }

  .cs_height_91 {
    height: 91px;
  }

  .cs_height_92 {
    height: 92px;
  }

  .cs_height_93 {
    height: 93px;
  }

  .cs_height_94 {
    height: 94px;
  }

  .cs_height_95 {
    height: 95px;
  }

  .cs_height_96 {
    height: 96px;
  }

  .cs_height_97 {
    height: 97px;
  }

  .cs_height_98 {
    height: 98px;
  }

  .cs_height_99 {
    height: 99px;
  }

  .cs_height_100 {
    height: 100px;
  }

  .cs_height_101 {
    height: 101px;
  }

  .cs_height_102 {
    height: 102px;
  }

  .cs_height_103 {
    height: 103px;
  }

  .cs_height_104 {
    height: 104px;
  }

  .cs_height_105 {
    height: 105px;
  }

  .cs_height_106 {
    height: 106px;
  }

  .cs_height_107 {
    height: 107px;
  }

  .cs_height_108 {
    height: 108px;
  }

  .cs_height_109 {
    height: 109px;
  }

  .cs_height_110 {
    height: 110px;
  }

  .cs_height_111 {
    height: 111px;
  }

  .cs_height_112 {
    height: 112px;
  }

  .cs_height_113 {
    height: 113px;
  }

  .cs_height_114 {
    height: 114px;
  }

  .cs_height_115 {
    height: 115px;
  }

  .cs_height_116 {
    height: 116px;
  }

  .cs_height_117 {
    height: 117px;
  }

  .cs_height_118 {
    height: 118px;
  }

  .cs_height_119 {
    height: 119px;
  }

  .cs_height_120 {
    height: 120px;
  }

  .cs_height_121 {
    height: 121px;
  }

  .cs_height_122 {
    height: 122px;
  }

  .cs_height_123 {
    height: 123px;
  }

  .cs_height_124 {
    height: 124px;
  }

  .cs_height_125 {
    height: 125px;
  }

  .cs_height_126 {
    height: 126px;
  }

  .cs_height_127 {
    height: 127px;
  }

  .cs_height_128 {
    height: 128px;
  }

  .cs_height_129 {
    height: 129px;
  }

  .cs_height_130 {
    height: 130px;
  }

  .cs_height_131 {
    height: 131px;
  }

  .cs_height_132 {
    height: 132px;
  }

  .cs_height_133 {
    height: 133px;
  }

  .cs_height_134 {
    height: 134px;
  }

  .cs_height_135 {
    height: 135px;
  }

  .cs_height_136 {
    height: 136px;
  }

  .cs_height_137 {
    height: 137px;
  }

  .cs_height_138 {
    height: 138px;
  }

  .cs_height_139 {
    height: 139px;
  }

  .cs_height_140 {
    height: 140px;
  }

  .cs_height_141 {
    height: 141px;
  }

  .cs_height_142 {
    height: 142px;
  }

  .cs_height_143 {
    height: 143px;
  }

  .cs_height_144 {
    height: 144px;
  }

  .cs_height_145 {
    height: 145px;
  }

  .cs_height_146 {
    height: 146px;
  }

  .cs_height_147 {
    height: 147px;
  }

  .cs_height_148 {
    height: 148px;
  }

  .cs_height_149 {
    height: 149px;
  }

  .cs_height_150 {
    height: 150px;
  }
}

@media screen and (max-width: 991px) {
  .cs_height_lg_1 {
    height: 1px;
  }

  .cs_height_lg_2 {
    height: 2px;
  }

  .cs_height_lg_3 {
    height: 3px;
  }

  .cs_height_lg_4 {
    height: 4px;
  }

  .cs_height_lg_5 {
    height: 5px;
  }

  .cs_height_lg_6 {
    height: 6px;
  }

  .cs_height_lg_7 {
    height: 7px;
  }

  .cs_height_lg_8 {
    height: 8px;
  }

  .cs_height_lg_9 {
    height: 9px;
  }

  .cs_height_lg_10 {
    height: 10px;
  }

  .cs_height_lg_11 {
    height: 11px;
  }

  .cs_height_lg_12 {
    height: 12px;
  }

  .cs_height_lg_13 {
    height: 13px;
  }

  .cs_height_lg_14 {
    height: 14px;
  }

  .cs_height_lg_15 {
    height: 15px;
  }

  .cs_height_lg_16 {
    height: 16px;
  }

  .cs_height_lg_17 {
    height: 17px;
  }

  .cs_height_lg_18 {
    height: 18px;
  }

  .cs_height_lg_19 {
    height: 19px;
  }

  .cs_height_lg_20 {
    height: 20px;
  }

  .cs_height_lg_21 {
    height: 21px;
  }

  .cs_height_lg_22 {
    height: 22px;
  }

  .cs_height_lg_23 {
    height: 23px;
  }

  .cs_height_lg_24 {
    height: 24px;
  }

  .cs_height_lg_25 {
    height: 25px;
  }

  .cs_height_lg_26 {
    height: 26px;
  }

  .cs_height_lg_27 {
    height: 27px;
  }

  .cs_height_lg_28 {
    height: 28px;
  }

  .cs_height_lg_29 {
    height: 29px;
  }

  .cs_height_lg_30 {
    height: 30px;
  }

  .cs_height_lg_31 {
    height: 31px;
  }

  .cs_height_lg_32 {
    height: 32px;
  }

  .cs_height_lg_33 {
    height: 33px;
  }

  .cs_height_lg_34 {
    height: 34px;
  }

  .cs_height_lg_35 {
    height: 35px;
  }

  .cs_height_lg_36 {
    height: 36px;
  }

  .cs_height_lg_37 {
    height: 37px;
  }

  .cs_height_lg_38 {
    height: 38px;
  }

  .cs_height_lg_39 {
    height: 39px;
  }

  .cs_height_lg_40 {
    height: 40px;
  }

  .cs_height_lg_41 {
    height: 41px;
  }

  .cs_height_lg_42 {
    height: 42px;
  }

  .cs_height_lg_43 {
    height: 43px;
  }

  .cs_height_lg_44 {
    height: 44px;
  }

  .cs_height_lg_45 {
    height: 45px;
  }

  .cs_height_lg_46 {
    height: 46px;
  }

  .cs_height_lg_47 {
    height: 47px;
  }

  .cs_height_lg_48 {
    height: 48px;
  }

  .cs_height_lg_49 {
    height: 49px;
  }

  .cs_height_lg_50 {
    height: 50px;
  }

  .cs_height_lg_51 {
    height: 51px;
  }

  .cs_height_lg_52 {
    height: 52px;
  }

  .cs_height_lg_53 {
    height: 53px;
  }

  .cs_height_lg_54 {
    height: 54px;
  }

  .cs_height_lg_55 {
    height: 55px;
  }

  .cs_height_lg_56 {
    height: 56px;
  }

  .cs_height_lg_57 {
    height: 57px;
  }

  .cs_height_lg_58 {
    height: 58px;
  }

  .cs_height_lg_59 {
    height: 59px;
  }

  .cs_height_lg_60 {
    height: 60px;
  }

  .cs_height_lg_61 {
    height: 61px;
  }

  .cs_height_lg_62 {
    height: 62px;
  }

  .cs_height_lg_63 {
    height: 63px;
  }

  .cs_height_lg_64 {
    height: 64px;
  }

  .cs_height_lg_65 {
    height: 65px;
  }

  .cs_height_lg_66 {
    height: 66px;
  }

  .cs_height_lg_67 {
    height: 67px;
  }

  .cs_height_lg_68 {
    height: 68px;
  }

  .cs_height_lg_69 {
    height: 69px;
  }

  .cs_height_lg_70 {
    height: 70px;
  }

  .cs_height_lg_71 {
    height: 71px;
  }

  .cs_height_lg_72 {
    height: 72px;
  }

  .cs_height_lg_73 {
    height: 73px;
  }

  .cs_height_lg_74 {
    height: 74px;
  }

  .cs_height_lg_75 {
    height: 75px;
  }

  .cs_height_lg_76 {
    height: 76px;
  }

  .cs_height_lg_77 {
    height: 77px;
  }

  .cs_height_lg_78 {
    height: 78px;
  }

  .cs_height_lg_79 {
    height: 79px;
  }

  .cs_height_lg_80 {
    height: 80px;
  }

  .cs_height_lg_81 {
    height: 81px;
  }

  .cs_height_lg_82 {
    height: 82px;
  }

  .cs_height_lg_83 {
    height: 83px;
  }

  .cs_height_lg_84 {
    height: 84px;
  }

  .cs_height_lg_85 {
    height: 85px;
  }

  .cs_height_lg_86 {
    height: 86px;
  }

  .cs_height_lg_87 {
    height: 87px;
  }

  .cs_height_lg_88 {
    height: 88px;
  }

  .cs_height_lg_89 {
    height: 89px;
  }

  .cs_height_lg_90 {
    height: 90px;
  }

  .cs_height_lg_91 {
    height: 91px;
  }

  .cs_height_lg_92 {
    height: 92px;
  }

  .cs_height_lg_93 {
    height: 93px;
  }

  .cs_height_lg_94 {
    height: 94px;
  }

  .cs_height_lg_95 {
    height: 95px;
  }

  .cs_height_lg_96 {
    height: 96px;
  }

  .cs_height_lg_97 {
    height: 97px;
  }

  .cs_height_lg_98 {
    height: 98px;
  }

  .cs_height_lg_99 {
    height: 99px;
  }

  .cs_height_lg_100 {
    height: 100px;
  }

  .cs_height_lg_101 {
    height: 101px;
  }

  .cs_height_lg_102 {
    height: 102px;
  }

  .cs_height_lg_103 {
    height: 103px;
  }

  .cs_height_lg_104 {
    height: 104px;
  }

  .cs_height_lg_105 {
    height: 105px;
  }

  .cs_height_lg_106 {
    height: 106px;
  }

  .cs_height_lg_107 {
    height: 107px;
  }

  .cs_height_lg_108 {
    height: 108px;
  }

  .cs_height_lg_109 {
    height: 109px;
  }

  .cs_height_lg_110 {
    height: 110px;
  }

  .cs_height_lg_111 {
    height: 111px;
  }

  .cs_height_lg_112 {
    height: 112px;
  }

  .cs_height_lg_113 {
    height: 113px;
  }

  .cs_height_lg_114 {
    height: 114px;
  }

  .cs_height_lg_115 {
    height: 115px;
  }

  .cs_height_lg_116 {
    height: 116px;
  }

  .cs_height_lg_117 {
    height: 117px;
  }

  .cs_height_lg_118 {
    height: 118px;
  }

  .cs_height_lg_119 {
    height: 119px;
  }

  .cs_height_lg_120 {
    height: 120px;
  }

  .cs_height_lg_121 {
    height: 121px;
  }

  .cs_height_lg_122 {
    height: 122px;
  }

  .cs_height_lg_123 {
    height: 123px;
  }

  .cs_height_lg_124 {
    height: 124px;
  }

  .cs_height_lg_125 {
    height: 125px;
  }

  .cs_height_lg_126 {
    height: 126px;
  }

  .cs_height_lg_127 {
    height: 127px;
  }

  .cs_height_lg_128 {
    height: 128px;
  }

  .cs_height_lg_129 {
    height: 129px;
  }

  .cs_height_lg_130 {
    height: 130px;
  }

  .cs_height_lg_131 {
    height: 131px;
  }

  .cs_height_lg_132 {
    height: 132px;
  }

  .cs_height_lg_133 {
    height: 133px;
  }

  .cs_height_lg_134 {
    height: 134px;
  }

  .cs_height_lg_135 {
    height: 135px;
  }

  .cs_height_lg_136 {
    height: 136px;
  }

  .cs_height_lg_137 {
    height: 137px;
  }

  .cs_height_lg_138 {
    height: 138px;
  }

  .cs_height_lg_139 {
    height: 139px;
  }

  .cs_height_lg_140 {
    height: 140px;
  }

  .cs_height_lg_141 {
    height: 141px;
  }

  .cs_height_lg_142 {
    height: 142px;
  }

  .cs_height_lg_143 {
    height: 143px;
  }

  .cs_height_lg_144 {
    height: 144px;
  }

  .cs_height_lg_145 {
    height: 145px;
  }

  .cs_height_lg_146 {
    height: 146px;
  }

  .cs_height_lg_147 {
    height: 147px;
  }

  .cs_height_lg_148 {
    height: 148px;
  }

  .cs_height_lg_149 {
    height: 149px;
  }

  .cs_height_lg_150 {
    height: 150px;
  }
}

/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/
.cs_light {
  font-weight: 300;
}

.cs_normal {
  font-weight: 400;
}

.cs_medium {
  font-weight: 500;
}

.cs_semibold {
  font-weight: 600;
}

.cs_bold {
  font-weight: 700;
}

.cs_extra_bold {
  font-weight: 800;
}

.cs_black {
  font-weight: 900;
}

.cs_radius_3 {
  border-radius: 3px;
}

.cs_radius_5 {
  border-radius: 5px;
}

.cs_radius_7 {
  border-radius: 7px;
}

.cs_radius_10 {
  border-radius: 10px;
}

.cs_radius_15 {
  border-radius: 15px;
}

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

.cs_row_gap_30 {
  margin-left: -15px;
  margin-right: -15px;
}

.cs_row_gap_30>* {
  padding-left: 15px;
  padding-right: 15px;
}

.cs_gap_y_24 {
  gap: 24px 0;
}

.cs_gap_y_30 {
  gap: 30px 0;
  margin-top: 20px;
}

.cs_gap_y_35 {
  gap: 35px 0;
}

.cs_gap_y_40 {
  gap: 40px 0;
}

.cs_gap_y_45 {
  gap: 45px 0;
}

.cs_gap_y_50 {
  gap: 50px 0;
}

.cs_gap_y_60 {
  gap: 60px 0;
}

.cs_gap_y_65 {
  gap: 65px 0;
}

.cs_gap_y_80 {
  gap: 80px 0;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  opacity: 1;
}

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

.cs_bg_fixed {
  background-attachment: fixed;
}

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

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

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

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

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

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

.cs_accent_color {
  color: #053275;
}

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

.cs_primary_bg {
  background-color: #2f3d6c00;
  margin-top: -40px;
}

.cs_blue_bg {
  background-color: var(--blue-color);
}

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

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

.cs_gray_bg_2 {
  background-color: #f0f4f6;
}

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

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

.cs_pb_60 {
  padding-bottom: 60px;
}

.container-fluide {
  width: 100%;
  max-width: 1920px;
  padding: 0 30px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .container-fluide {
    padding: 0 12px;
  }
}

.cs_btn.cs_style_1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 17px;
  font-weight: 500;
  padding: 6px 15px;
  line-height: 1.6em;
  gap: 8px;
  line-height: 1.6em;
  border-radius: 1.6em;
}

.cs_btn.cs_style_1 i {
  font-size: 15px;
}

.cs_btn.cs_style_1.cs_color_1 {
  background-color: var(--accent-color);
  color: #fff;
}

.cs_btn.cs_style_1.cs_color_1:hover {
  background-color: var(--blue-color);
}

.cs_btn.cs_style_1.cs_color_2 {
  background-color: var(--blue-color);
  color: #fff;
}

.cs_btn.cs_style_1.cs_color_2:hover {
  background-color: var(--accent-color);
}

.cs_btn.cs_style_1.cs_color_3 {
  background-color: #fff;
  color: var(--blue-color);
}

.cs_btn.cs_style_1.cs_color_3:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.cs_player_btn {
  position: relative;
  z-index: 10;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  padding: 0 0 0 3px;
  color: #fff;
}

.cs_player_btn:before,
.cs_player_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.cs_player_btn:before {
  z-index: 0;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.cs_player_btn:after {
  z-index: 1;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.cs_player_btn span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 15px solid currentColor;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

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

.cs_solution_content_wrapper.cs_type_1 {
  padding: 35px 30px 44px;
}

@media (max-width: 575px) {
  .cs_solution_content_wrapper.cs_type_1 {
    padding: 35px 15px 45px;
  }
}

@media (min-width: 1400px) {
  .cs_solution_content_wrapper {
    padding-right: 76px;
  }
}

.cs_solution_content_wrapper .cs_section_heading_left {
  margin-bottom: 24px;
}

.cs_solution_content_wrapper .cs_section_heading_right {
  margin-bottom: 5px;
}

.cs_solution_content_wrapper .cs_service_heading {
  font-size: 22px;
  margin-bottom: 25px;
}

.cs_service_details .cs_service_heading {
  font-size: 22px;
  margin-bottom: 27px;
}

.cs_service_details .cs_service_subtitle {
  margin-bottom: 20px;
}

.cs_service_details .cs_about_iconbox {
  margin-top: 0;
  border-top: 0;
  padding-top: 30px;
}

.cs_service_details .cs_about_iconbox::before {
  display: none;
}

.cs_solution_thumbnail {
  margin-right: -50px;
}

@media (max-width: 1399px) {
  .cs_solution_thumbnail {
    margin-right: 0;
  }
}

.cs_solution_thumbnail img {
  width: 100%;
}

.cs_service_details_thumbnail {
  width: 100%;
  height: 100%;
  max-height: 448px;
}

.cs_service_details_thumbnail img {
  height: 100%;
  width: 100%;
}

.cs_solution_links.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 22px;
}

.cs_solution_links.cs_style_2 li {
  padding: 7px 10px;
  border: 1px solid var(--border-color);
  border-radius: 35px;
  background-color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_2 li:hover {
  background-color: var(--blue-color);
}

.cs_solution_links.cs_style_2 li:hover a {
  color: var(--white);
}

.cs_solution_links.cs_style_2 li:hover .cs_tab_link_icon_left {
  background-color: var(--accent-color);
}

.cs_solution_links.cs_style_2 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_2 .cs_tab_link_icon_left {
  width: 30px;
  height: 30px;
  background-color: var(--blue-color);
  color: var(--white);
  border-radius: 50%;
  padding: 5px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_1 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 450px;
  background: transparent;
  padding-right: 10px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_1 .cs_tab_link_icon_left {
  width: 45px;
  height: 45px;
  background-color: var(--blue-color);
  border-radius: 50%;
  padding: 5px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_1 .cs_tab_link_icon_left img {
  width: 22px;
  height: 22px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_solution_links.cs_style_1 .cs_tab_link_icon_right {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--accent-color);
  border-radius: 50%;
  margin-left: auto;
  font-size: 16px;
  opacity: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_solution_links.cs_style_1 li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.cs_solution_links.cs_style_1 li:hover a {
  background: linear-gradient(142deg, #002261 -8.12%, #2a96e6 108.12%);
  color: var(--white);
}

.cs_solution_links.cs_style_1 li:hover .cs_tab_link_icon_left {
  background-color: var(--accent-color);
}

.cs_solution_links.cs_style_1 li:hover .cs_tab_link_icon_right {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.cs_process.cs_style_1 {
  text-align: center;
}

.cs_process.cs_style_1 .cs_btn.cs_style_1 {
  position: relative;
  z-index: 1;
  margin: 50px auto 0;
}

.cs_process_bg {
  width: 100%;
  height: 45%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}

.cs_process_bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--blue-color);
  opacity: 0.85;
  position: absolute;
  top: 0;
  left: 0;
}

.cs_contact_thumbnail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cs_contact_thumbnail.cs_pl_40 {
  padding-left: 40px;
}

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

.cs_contact_thumbnail.cs_pr_40 {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .cs_contact_thumbnail.cs_pr_40 {
    padding-right: 0;
  }
}

.cs_contact_thumbnail.cs_pr_40 .cs_teeth_shape {
  right: 50px;
  left: auto;
}

.cs_contact_thumbnail .cs_teeth_shape {
  position: absolute;
  top: 40px;
  left: 50px;
}

@media (max-width: 575px) {
  .cs_contact_thumbnail .cs_teeth_shape {
    display: none;
  }
}

.cs_contact_thumbnail .cs_contact_img {
  position: relative;
  z-index: 1;
}

.cs_contact_thumbnail .cs_contact_bg_shape {
  width: 100%;
  height: 40%;
  background-color: #d8e6f3;
  border-top: 5px solid var(--blue-color);
  padding: 40px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  margin-top: -190px;
}

@media (max-width: 991px) {
  .cs_contact_thumbnail .cs_contact_bg_shape {
    margin-top: 0;
  }
}

.cs_contact_thumbnail .cs_white_bg_shape {
  width: 100%;
  max-width: 400px;
  height: 190px;
  background-color: var(--white);
  margin-top: -45px;
}

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

.cs_contact_thumbnail .cs_iconbox.cs_style_4 {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 0;
  padding-top: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cs_contact_thumbnail .cs_iconbox.cs_style_4:hover {
  background-color: initial;
}

.cs_contact_thumbnail .cs_iconbox.cs_style_4:hover .cs_iconbox_icon {
  background-color: var(--blue-color);
}

.cs_contact_thumbnail .cs_iconbox.cs_style_4:hover .cs_iconbox_title,
.cs_contact_thumbnail .cs_iconbox.cs_style_4:hover .cs_iconbox_subtitle {
  color: initial;
}

.cs_contact_form .cs_btn.cs_style_1 {
  border: none;
  margin-top: 10px;
}

.cs_form_field {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  outline: none;
  background-color: #f0f4f6;
  resize: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_form_field:focus {
  border-color: var(--accent-color);
}

.cs_appointment_form_wrapper {
  width: 100%;
  max-width: 970px;
  background-color: #f2f4f9;
  border-radius: 40px;
  padding: 90px 70px 100px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .cs_appointment_form_wrapper {
    padding: 40px 30px 50px;
    border-radius: 10px;
  }
}

@media (max-width: 575px) {
  .cs_appointment_form_wrapper {
    padding: 0;
    background-color: transparent;
  }
}

.cs_appointment_form .cs_form_field {
  background-color: var(--white);
  border-radius: 0;
}

.cs_appointment_form select {
  padding: 12.3px 20px;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: normal;
  color: var(--body-color);
}

.cs_appointment_form .cs_btn.cs_style_1 {
  border: 0;
  border-radius: 8;
  background-color: #cf3d3f;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_appointment_form .cs_btn.cs_style_1:hover {
  background-color: var(--accent-color);
}

.cs_location_map {
  width: 100%;
  height: 460px;
  margin-bottom: -1px;
}

.cs_location_map iframe {
  width: 100%;
  height: 100%;
}

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

.cs_rating_percentage,
.cs_rating {
  overflow: hidden;
}

.cs_rating_percentage.scale_half,
.cs_rating.scale_half {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  letter-spacing: 10px;
  width: 180px;
  margin-left: -15px;
}

.cs_rating_percentage::before,
.cs_rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
}

.cs_rating {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 157px;
  height: 26px;
  position: relative;
  color: #ffb400;
  font-size: 22px;
  letter-spacing: 7px;
}

.cs_rating::before {
  font-weight: 400;
}

.cs_rating_percentage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.cs_rating_percentage::before {
  font-weight: 900;
}

@-webkit-keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
    transform: rotateX(-20deg) rotateY(0deg);
  }

  75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }

  100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }
}

@keyframes spinAnimaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
    transform: rotateX(-20deg) rotateY(0deg);
  }

  75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }

  100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.cs_section_heading.cs_style_1 .cs_section_title {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  color: #3fa6d8;
}

.cs_section_heading.cs_style_1 .cs_section_subtitle {
  font-size: 35px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.cs_section_heading.cs_style_1 .cs_shape_left,
.cs_section_heading.cs_style_1 .cs_shape_right {
  height: 5px;
  width: 32px;
  border-radius: 10px;
  position: relative;
  background-color: currentColor;
}

.cs_section_heading.cs_style_1 .cs_shape_left::before,
.cs_section_heading.cs_style_1 .cs_shape_right::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 5px;
  border-radius: 10px;
  background-color: currentColor;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.cs_section_heading.cs_style_1 .cs_shape_right::before {
  left: initial;
  right: 0;
}

.cs_section_heading.cs_style_1.cs_type_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_right {
  width: 40%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

@media (max-width: 1400px) {
  .cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_right {
    width: 45%;
  }
}

@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_right {
    width: 100%;
  }
}

.cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_left {
  width: 40%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

@media (max-width: 1400px) {
  .cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_left {
    width: 45%;
  }
}

@media (max-width: 1199px) {
  .cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_left {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .cs_section_heading.cs_style_1.cs_type_1 .cs_section_heading_left {
    width: 100%;
  }
}

.cs_about.cs_style_1 .container {
  position: relative;
  z-index: 2;
}

.cs_about.cs_style_1 .cs_section_img {
  position: absolute;
  right: 3%;
  bottom: 6%;
  width: 12%;
}

@media (max-width: 1600px) {
  .cs_about.cs_style_1 .cs_section_img {
    right: 12px;
  }
}

@media (max-width: 1400px) {
  .cs_about.cs_style_1 .cs_section_img {
    display: none;
  }
}

.cs_about.cs_style_1 .cs_about_thumb {
  margin-right: 36px;
  position: relative;
  padding-bottom: 0px;
}

@media (max-width: 991px) {
  .cs_about.cs_style_1 .cs_about_thumb {
    margin-right: 0;
  }
}

.cs_about.cs_style_1 .cs_about_thumb_1 {
  padding-right: 26%;
}

.cs_about.cs_style_1 .cs_about_thumb_1::before {
  content: "";
  height: 160px;
  width: 160px;
  position: absolute;
  border-radius: 50%;
  border: 25px solid #3fa6d8;
  right: 150px;
  top: 14px;
}

.cs_about.cs_style_1 .cs_about_thumb_1 img {
  position: relative;
  z-index: 2;
  width: 370px;
}

.cs_about.cs_style_1 .cs_about_thumb_2 {
  padding-left: 38%;
  position: absolute;
  bottom: -45px;
  right: 0;
  z-index: 2;
}

.cs_about.cs_style_1 .cs_about_thumb_shape_2 {
  position: absolute;
  left: 7%;
  bottom: 32px;
}

.cs_about.cs_style_1 .cs_about_player_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  color: var(--blue-color);
  font-weight: 500;
  position: absolute;
  bottom: 25%;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg) translateY(85%);
  transform: rotate(180deg) translateY(85%);
  right: 8%;
}

@media (max-width: 575px) {
  .cs_about.cs_style_1 .cs_about_player_btn {
    right: 4%;
  }
}

.cs_about.cs_style_1 .cs_about_player_btn:hover .cs_about_play_btn_text::before {
  height: 100%;
}

.cs_about.cs_style_1 .cs_about_play_btn_text {
  position: relative;
}

.cs_about.cs_style_1 .cs_about_play_btn_text::before {
  content: "";
  width: 1px;
  height: 0%;
  background-color: var(--accent-color);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_about.cs_style_1 .cs_about_thumb .cs_player_btn span {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: -3px;
  left: -1px;
}

.cs_about.cs_style_1 .cs_section_heading.cs_style_1 {
  margin-bottom: 0px;
}

.cs_about .cs_readmore_wrap {
  justify-content: flex-start;
}

.cs_about.cs_style_1 .cs_about_text {
  text-align: justify;
  margin-bottom: 30px;
  line-height: 33px;
  font-size: 17px;
}

.cs_about.cs_style_1 .cs_btn.cs_style_1 {
  margin-top: 50px;
}

.cs_about.cs_style_1 .cs_experience_box {
  height: 150px;
  width: 150px;
  /* border: 10px solid #fff; */
  /* background-color: #c6cbd5; */
  border-radius: 50%;
  position: absolute;
  bottom: 51%;
  right: 12%;
  z-index: 5;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 10px;
}

.cs_about.cs_style_1 .cs_experience_box_number {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0px;
  line-height: 1.2em;
}

.cs_about.cs_style_1 .cs_experience_box_title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox_1_wrap {
  max-width: 490px;
}

.cs_about.cs_style_1.cs_type_1 .cs_about_thumb {
  margin-left: -80px;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .cs_about.cs_style_1.cs_type_1 .cs_about_thumb {
    margin-left: 0;
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_experience_box {
  bottom: 0;
  left: 44%;
}

@media (max-width: 991px) {
  .cs_about.cs_style_1.cs_type_1 .cs_experience_box {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 480px) {
  .cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1:not(:last-child) {
  margin-bottom: 30px;
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1:nth-child(even) .cs_iconbox_head {
  padding-right: 0px;
  padding-left: 30px;
}

@media (max-width: 480px) {
  .cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1 .cs_iconbox_head {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  padding-right: 30px;
}

@media (max-width: 480px) {
  .cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1 .cs_iconbox_head {
    padding-left: 0 !important;
    padding-right: 0;
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_iconbox.cs_style_1 .cs_iconbox_img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 200px;
}

.cs_about.cs_style_1.cs_type_1 .cs_about_iconbox {
  border: none;
  padding: 0;
}

.cs_about.cs_style_1.cs_type_1 .cs_about_iconbox::before {
  display: none;
}

.cs_about.cs_style_1.cs_type_1 .cs_video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  gap: 20px;
  color: var(--heading-color);
}

.cs_about.cs_style_1.cs_type_1 .cs_video_open:hover .cs_play_btn_text {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

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

.cs_about.cs_style_1.cs_type_1 .cs_btn.cs_style_1 {
  margin: 0;
}

.cs_about.cs_style_1.cs_type_1 .cs_about_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 50px;
  margin-top: 50px;
}

@media (max-width: 450px) {
  .cs_about.cs_style_1.cs_type_1 .cs_about_btns {
    gap: 25px 25px;
  }
}

.cs_about.cs_style_1.cs_type_1 .cs_section_img {
  right: 3%;
  bottom: 22%;
}

.cs_about.cs_style_1.cs_type_1 .cs_section_img img {
  -webkit-animation: spinAnimaiton 6s linear infinite;
  animation: spinAnimaiton 6s linear infinite;
}

.cs_section_img img {
  animation: floatMove 4s ease-in-out infinite;
}

/* Smooth slight movement */
@keyframes floatMove {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}


.cs_about.cs_style_1.cs_type_2 .cs_experience_box {
  position: initial;
}

.cs_about.cs_style_1.cs_type_2 .cs_about_thumb {
  margin: 0 0 0 -125px;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .cs_about.cs_style_1.cs_type_2 .cs_about_thumb {
    margin-left: 0;
  }
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box {
  border-radius: 15px;
  border: none;
  position: relative;
  left: 0;
  bottom: 0;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box::before,
.cs_about.cs_style_1.cs_type_2 .cs_experience_box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: inherit;
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box::before {
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  background-color: #fff;
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box::after {
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  z-index: 2;
  border: 1px dashed var(--accent-color);
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box_in {
  position: relative;
  z-index: 2;
}

.cs_about.cs_style_1.cs_type_2 .cs_experience_box_number,
.cs_about.cs_style_1.cs_type_2 .cs_experience_box_title {
  color: var(--blue-color);
}

.cs_about.cs_style_1.cs_type_2 .cs_about_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin-bottom: 45px;
}

@media (max-width: 470px) {
  .cs_about.cs_style_1.cs_type_2 .cs_about_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.cs_about.cs_style_1.cs_type_2 .cs_iconbox_1_list li .cs_iconbox.cs_style_1 .cs_iconbox_head {
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.cs_about.cs_style_1.cs_type_2 .cs_iconbox_1_list li:last-child .cs_iconbox.cs_style_1 .cs_iconbox_head {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cs_about.cs_style_1.cs_type_2 .cs_about_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 75px;
  margin-top: 50px;
}

@media (max-width: 470p) {
  .cs_about.cs_style_1.cs_type_2 .cs_about_btns {
    gap: 20px 30px;
  }
}

.cs_about.cs_style_1.cs_type_2 .cs_player_btn {
  width: 50px;
  height: 50px;
}

.cs_about.cs_style_1.cs_type_2 .cs_video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  color: var(--blue-color);
  font-size: 17px;
  font-weight: 500;
}

.cs_about.cs_style_1.cs_type_2 .cs_video_open:hover .cs_play_btn_text::before {
  width: 0;
}

.cs_about.cs_style_1.cs_type_2 .cs_play_btn_text {
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_about.cs_style_1.cs_type_2 .cs_play_btn_text::before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 2px;
  right: 0;
  background-color: currentColor;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_about.cs_style_1.cs_type_2 .cs_section_img {
  right: 20px;
  bottom: 10%;
}

.cs_about_iconbox {
  /* border-top: 1px solid var(--border-color); */
  margin-top: 30px;
  padding-top: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
}

.cs_about_iconbox::before {
  content: "";
  height: 1px;
  width: 47px;
  position: absolute;
  top: -1px;
  left: 24%;
}

.cs_about_iconbox .cs_about_iconbox_icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: var(--blue-color);
  color: #fff;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: 6px;
}

.cs_about_iconbox .cs_about_iconbox_subtitle {
  max-width: 450px;
  margin-bottom: 0;
}

.cs_about_iconbox .cs_about_iconbox_subtitle a {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: underline;
}

.cs_about_iconbox .cs_about_iconbox_subtitle a:hover {
  letter-spacing: 1px;
}

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

.cs_progress {
  height: 7px;
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  padding: 1px;
  max-width: 490px;
}

.cs_progress .cs_progress_in {
  height: 100%;
  border-radius: inherit;
  background-color: var(--accent-color);
}

.cs_social_btns.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.cs_social_btns.cs_style_1 a {
  background-color: #475f8d;
  height: 30px;
  width: 30px;
  color: #fff;
  border-radius: 50%;
}

.cs_social_btns.cs_style_1 a:hover {
  background-color: #fff;
  color: var(--accent-color);
}

.cs_brand.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 16px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_brand.cs_style_1 img {
  -webkit-filter: brightness(0) invert(0.6);
  filter: brightness(0) invert(0.6);
}

.cs_brand.cs_style_1:hover {
  border-color: var(--border-color);
}

.cs_brand.cs_style_1:hover img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}

.cs_service_wrapper {
  overflow: hidden;
}

.cs_service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: calc(100% + 2px);
  margin-bottom: -1px;
}

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

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

.cs_list.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.cs_list.cs_style_1 li {
  padding-left: 40px;
  position: relative;
}

.cs_list.cs_style_1 li i {
  position: absolute;
  left: 0;
  top: 6px;
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cs_list.cs_style_1 li:hover i {
  -webkit-filter: initial;
  filter: initial;
}

.cs_list.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.cs_list.cs_style_2 li {
  padding-left: 28px;
  position: relative;
}

.cs_list.cs_style_2 li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--accent-color);
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_list.cs_style_2 li:hover i {
  color: var(--blue-color);
}

.cs_video_area {
  background-color: var(--white);
  position: relative;
}

.cs_video_area::after {
  content: "";
  width: 100%;
  height: 220px;
  background-color: var(--blue-color);
  position: absolute;
  left: 0;
  bottom: 0;
}

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

.cs_video_area .cs_video_wrapper {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.cs_video_area .cs_video_open {
  margin-bottom: 30px;
}

.cs_video_area .cs_video_title {
  margin-bottom: 12px;
}

.cs_video_area .cs_video_title .cs_accent_color {
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  position: relative;
}

@media (max-width: 991px) {
  .cs_video_area .cs_video_title .cs_accent_color {
    padding: 0;
    border: 0;
  }
}

.cs_video_area .cs_video_title .cs_accent_color::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("../img/icons/arrow_icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -36px;
  right: -36px;
}

@media (max-width: 991px) {
  .cs_video_area .cs_video_title .cs_accent_color::after {
    display: none;
  }
}

.cs_video_area .cs_video_subtitle {
  margin-bottom: 40px;
}

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

.cs_video_area .cs_hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cs_video_area .cs_cta_shape {
  z-index: 2;
}

@media (min-width: 1700px) {
  .cs_video_area .cs_cta_shape {
    bottom: -35px;
    right: 3%;
  }
}

@media (min-width: 1500px) {
  .cs_video_area .cs_cta_shape {
    bottom: -35px;
    right: 1%;
  }
}

@media (max-width: 1499px) {
  .cs_video_area .cs_cta_shape {
    display: none;
  }
}

.cs_project_grid.cs_style_1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

@media (max-width: 1199px) {
  .cs_project_grid.cs_style_1 .cs_project_item {
    grid-column: auto/span 2;
  }
}

@media (max-width: 575px) {
  .cs_project_grid.cs_style_1 .cs_project_item {
    grid-column: auto/span 4;
  }
}

.cs_project_grid.cs_style_1 .cs_project_item:nth-child(1) {
  grid-column: auto/span 2;
}

@media (max-width: 767px) {
  .cs_project_grid.cs_style_1 .cs_project_item:nth-child(1) {
    grid-column: auto/span 4;
  }
}

.cs_project_grid.cs_style_1 .cs_project_item:nth-child(2) {
  grid-column: auto/span 2;
}

@media (max-width: 767px) {
  .cs_project_grid.cs_style_1 .cs_project_item:nth-child(2) {
    grid-column: auto/span 4;
  }
}

.cs_project_grid.cs_style_2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

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

.cs_project_grid.cs_style_2 .cs_project_item {
  grid-column: auto/span 2;
}

@media (max-width: 991px) {
  .cs_project_grid.cs_style_2 .cs_project_item {
    grid-column: auto/span 3;
  }
}

.cs_project_grid.cs_style_2 .cs_project_item:nth-child(4) {
  grid-column: auto/span 3;
}

.cs_project_grid.cs_style_2 .cs_project_item:nth-child(5) {
  grid-column: auto/span 3;
}

@-webkit-keyframes thermometer-animation {
  50% {
    height: 100%;
  }
}

@keyframes thermometer-animation {
  50% {
    height: 100%;
  }
}

.cs_video_open.cs_style_2 {
  position: relative;
}

.cs_video_open.cs_style_2::before {
  content: "";
  position: absolute;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background-color: var(--blue-color);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cs_video_open.cs_style_2::after {
  content: "";
  position: absolute;
  height: 59px;
  width: 59px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--blue-color);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cs_video_open.cs_style_2 .cs_player_btn {
  width: 75px;
  height: 75px;
}

.cs_video_open.cs_style_2 .cs_player_btn::before,
.cs_video_open.cs_style_2 .cs_player_btn::after {
  background-color: transparent;
  border: 1px solid var(--blue-color);
}

.cs_code_input {
  width: 135px;
  border-color: transparent;
  margin-top: 20px;
  font-style: italic;
}

.cs_page_heading {
  height: 610px;
  padding: 130px 0 50px;
}

@media (max-width: 991px) {
  .cs_page_heading {
    height: 420px;
  }
}

.cs_page_heading .breadcrumb {
  font-size: 19px;
  line-height: 1.5em;
}

.cs_page_heading .breadcrumb .active {
  color: var(--accent-color);
}

.cs_page_heading .cs_page_title {
  font-size: 66px;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .cs_page_heading .cs_page_title {
    font-size: 48px;
  }
}

.cs_error_content {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.cs_error_content .cs_error_thumbnail {
  width: 100%;
  margin-bottom: 48px;
}

.cs_error_content .cs_error_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_error_content .cs_error_heading {
  font-size: 30px;
  margin-bottom: 15px;
}

.cs_error_content .cs_error_subtitle {
  margin-bottom: 26px;
}

.cs_error_content .cs_btn.cs_style_1 {
  border-radius: 5px;
}

.cs_tab {
  display: block;
}

.cs_tab.active {
  display: none;
}

.cs_tab_links.cs_style_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 17px;
  font-weight: 500;
  gap: 10px 10px;
  margin-top: 25px;
  color: var(--heading-color);
}

.cs_tab_links.cs_style_3 li.active a {
  color: #fff;
  background-color: var(--accent-color);
}

.cs_tab_links.cs_style_3 li a {
  padding: 4px 12px;
}

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

.cs_scrollup:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.cs_scrollup.cs_scrollup_show {
  bottom: 30px;
}

/*--------------------------------------------------------------
  5. 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

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

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

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

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

.cs_dental_slider_wrapper {
  width: 100%;
  max-width: 712px;
  border: 7px solid var(--white);
  padding: 60px;
  margin-left: auto;
}

@media (max-width: 575px) {
  .cs_dental_slider_wrapper {
    padding: 60px 12px;
  }
}

.cs_dental_slider_wrapper .cs_slider_shape {
  right: 60px;
  bottom: 60px;
  z-index: 3;
}

.cs_slider_arrows.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
  height: 40px;
  width: 40px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

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

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

.cs_pagination.cs_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 65px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 15px;
}

@media (max-width: 991px) {
  .cs_pagination.cs_style_1 ul {
    margin-top: 40px;
  }
}

.cs_pagination.cs_style_1 li {
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 2px solid var(--heading-color);
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_1 li::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 4px;
  border-radius: 2px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--heading-color);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_1 li.slick-active {
  background-color: transparent;
}

.cs_pagination.cs_style_1 li.slick-active::before {
  opacity: 1;
}

.cs_pagination.cs_style_1 button {
  display: none;
}

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

.cs_pagination.cs_style_2.cs_flex_left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.cs_pagination.cs_style_2.cs_flex_left ul {
  margin-top: 30px;
}

.cs_pagination.cs_style_2.cs_accent_color li.slick-active {
  background-color: var(--accent-color);
}

.cs_pagination.cs_style_2.cs_white_color li {
  background-color: var(--white);
}

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

@media (max-width: 991px) {
  .cs_pagination.cs_style_2 ul {
    margin-top: 40px;
  }
}

.cs_pagination.cs_style_2 li {
  height: 8px;
  width: 25px;
  border-radius: 4px;
  background-color: #e0e9ef;
  margin: 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_2 li.slick-active {
  width: 40px;
  background-color: var(--blue-color);
}

.cs_pagination.cs_style_2 button {
  display: none;
}

.cs_pagination.cs_style_3 {
  position: absolute;
  width: 410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  bottom: 190px;
  right: 0;
}

@media (max-width: 991px) {
  .cs_pagination.cs_style_3 {
    bottom: 170px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 15px;
    width: 100%;
  }
}

@media (max-width: 350px) {
  .cs_pagination.cs_style_3 {
    bottom: 140px;
  }
}

.cs_pagination.cs_style_3 .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.cs_pagination.cs_style_3 li:nth-child(-n+9) button::before {
  content: "0";
}

.cs_pagination.cs_style_3 button {
  border: none;
  background-color: transparent;
  padding: 0;
  min-width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: var(--blue-color);
  border-radius: 7px 7px 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_3 button:hover {
  background-color: var(--accent-color);
}

.cs_pagination.cs_style_3 .slick-active button {
  background-color: var(--accent-color);
}

.cs_hero_slider_nav {
  height: 318px;
  position: absolute;
  bottom: 40px;
  right: 50px;
  width: 96px;
}

@media (max-width: 1199px) {
  .cs_hero_slider_nav {
    right: 20px;
  }
}

@media (max-width: 991px) {
  .cs_hero_slider_nav {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 250px;
    height: 77px;
  }
}

.cs_hero_slider_nav .slick-slide {
  padding-top: 7px;
  padding-bottom: 7px;
}

@media (max-width: 991px) {
  .cs_hero_slider_nav .slick-slide {
    padding: 0 5px;
  }
}

.cs_hero_slider_nav .slick-list {
  margin-top: -7px;
  margin-bottom: -7px;
}

@media (max-width: 991px) {
  .cs_hero_slider_nav .slick-list {
    margin: 0 -5px;
  }
}

.cs_hero_slider_nav .cs_hero_slider_thumb_mini {
  height: 96px;
  width: 96px;
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

@media (max-width: 991px) {
  .cs_hero_slider_nav .cs_hero_slider_thumb_mini {
    height: 77px;
  }
}

.cs_hero_slider_nav .cs_hero_slider_thumb_mini img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.cs_hero_slider_nav .cs_hero_slider_thumb_mini::before {
  content: "+";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 34, 97, 0.8705882353);
  border-radius: inherit;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

.cs_hero_slider_nav .slick-current .cs_hero_slider_thumb_mini {
  border-color: #fff;
}

.cs_hero_slider_nav .slick-slide:hover {
  cursor: pointer;
}

.cs_hero_slider_nav .slick-slide:hover .cs_hero_slider_thumb_mini {
  border-color: #fff;
}

.cs_hero_slider_nav .slick-slide:hover .cs_hero_slider_thumb_mini::before {
  opacity: 1;
}

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

@media (min-width: 992px) {
  .cs_mobile_show {
    display: none !important;
  }
}

.slick-slide .cs_hero.cs_style_3 .cs_hero_text_in {
  position: relative;
  left: 100px;
  opacity: 0;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.slick-slide .cs_hero.cs_style_3 .cs_hero_shape img {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.slick-slide.slick-active .cs_hero.cs_style_3 .cs_hero_text_in {
  left: 0px;
  opacity: 1;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.slick-slide.slick-active .cs_hero.cs_style_3 .cs_hero_shape img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cs_video_popup-align {
  overflow: hidden;
}

/*End Video Popup*/
/*--------------------------------------------------------------
7. Header
----------------------------------------------------------------*/
.cs_header_contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 25px;
}

.cs_header_contact_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.cs_header_contact_list li i {
  margin-right: 5px;
}

.cs_header_search_form {
  position: absolute;
  width: 280px;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background-color: #fff;
  padding: 18px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 20px rgba(18, 30, 59, 0.1);
  box-shadow: 0px 0px 20px rgba(18, 30, 59, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

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

.cs_header_search_form .cs_header_search_form_in {
  position: relative;
}

.cs_header_search_form .cs_header_search_field {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 5px 15px;
  outline: none;
}

.cs_header_search_form .cs_header_search_field:focus {
  border-color: var(--accent-color);
}

.cs_header_search_form .cs_header_submit_btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 46px;
  width: 46px;
  border: none;
  padding: 10px;
  border-radius: 0 5px 5px 0;
  background-color: var(--accent-color);
  color: #fff;
}

.cs_header_search_form .cs_header_submit_btn:hover {
  background-color: var(--blue-color);
}

.cs_search_wrap {
  position: relative;
}

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


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

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

.cs_site_header.cs_style_1 .cs_top_header_in {
  height: 40px;
  /* border-bottom: 1px solid #ababab; */
  margin-bottom: 15px;
}

.cs_site_header.cs_style_1 .cs_main_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px 40px;
}

.border-right {
  border-right: none !important;
}

.border-right a {
  padding-right: 0 !important;
}

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

@media (max-width: 575px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    gap: 5px 0px;
  }
}

.cs_site_header.cs_style_1 .cs_search_toggle {
  height: 35px;
  width: 35px;
  border: 1px solid var(--body-color);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_site_header.cs_style_1 .cs_search_toggle:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.cs_site_header.cs_style_1.cs_type_1 .cs_main_header_in {
  height: 110px;
}

.cs_site_header.cs_sticky_active .cs_main_header_in {
  display: none;
  border-bottom: none;
}

/* Option A */
.cs_site_header.active .cs_main_header_in {
  display: none;
  border-bottom: none;
}

/* Option B */
.cs_site_header.sticky .cs_main_header_in {
  display: none;
  border-bottom: none;
}

/* Option C */
.cs_sticky_header.is-sticky .cs_main_header_in {
  display: none;
  border-bottom: none;
}

@media (max-width: 1199px) {
  .cs_site_header.cs_style_1.cs_type_1 .cs_main_header_in {
    height: 80px;
  }
}

.cs_site_header.cs_style_1.cs_type_1 .cs_main_header_shape {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  height: 110px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .cs_site_header.cs_style_1.cs_type_1 .cs_main_header_shape {
    height: 80px;
  }
}

.cs_site_header.cs_style_1.cs_type_1 .cs_main_header {
  z-index: 1;
}

.cs_site_header.cs_style_1.cs_type_1.cs_gescout_sticky {
  background-color: transparent;
}

.cs_site_header.cs_style_1.cs_type_1.cs_gescout_show {
  -webkit-box-shadow: initial;
  box-shadow: initial;
}

@media (min-width: 1400px) {
  .cs_site_header.cs_style_1.cs_type_1 .container {
    max-width: 1500px;
  }
}

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

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

.cs_site_header_spacing_150 {
  height: 150px;
}

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

  .cs_site_header_spacing_150 {
    height: 130px;
  }

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

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

@media screen and (max-width: 767px) {
  .cs_site_header.cs_style_1 .cs_top_header {
    display: none;
  }

  .cs_site_header_spacing_150 {
    height: 80px;
  }
}

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

.cs_sticky_header {
  /* position: fixed !important; */
  width: 100%;
  /* z-index: 999; */
  z-index: 3;
  padding: 15px 0;
  border-top: 2px solid #0c479d;
}

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

.cs_gescout_sticky {
  position: fixed !important;
  top: -110px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--white);
}

.cs_gescout_sticky.cs_site_header.cs_style_1 .cs_top_header_in {
  height: 0;
}

.cs_gescout_sticky.cs_fixed_sticky {
  top: 0;
  opacity: 1;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}

.cs_gescout_show {
  top: 0 !important;
  opacity: 1;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}

.cs_site_branding {
  display: inline-block;
}

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

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

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

.cs_main_header {
  position: relative;
}

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

@media screen and (min-width: 1200px) {

  .cs_main_header_center,
  .cs_top_header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .cs_site_header.cs_style_1 .cs_main_header_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: calc(100% - 300px);
  }

  .cs_site_header.cs_style_1 .cs_main_header_left {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cs_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #053275;
  }

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

  .cs_nav .cs_nav_list>li {
    margin-right: 20px;
  }

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

  .cs_nav .cs_nav_list>li>a {
    padding: 0px 20px 0px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

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

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

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

  .cs_nav .cs_nav_list>li.menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    border: 2px solid #d85c23;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
    margin-left: 6px;
    position: relative;
    top: -1px;
    border-radius: 0px 0px 2px 0px;
  }

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

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

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

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

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

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

  .cs_nav+.cs_toolbox {
    margin-left: 40px;
  }

  .cs_menu_toggle,
  .cs_menu_dropdown_toggle {
    display: none;
  }

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

  .cs_nav .cs_nav_list .cs_mega_wrapper {
    width: 1296px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    top: 100px !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 15px 10px;
    border-top: 2px solid var(--accent-color);
    border-radius: 0 0 5px 5px;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb {
    display: grid !important;
    grid-gap: 10px;
    grid-template-columns: repeat(6, 1fr);
    padding: 20px 20px 14px 20px;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb img {
    border: 1px solid var(--border-color);
    border-radius: 2px 20px 2px 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 8px;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb a {
    padding: 0;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 500;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper.cs_with_thumb a:hover img {
    border-color: #d5d4d4;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper a {
    padding: 7px 10px;
  }

  .cs_nav .cs_nav_list .cs_mega_wrapper>li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px 0;
  }

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

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

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

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

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

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

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

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

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

  .cs_site_header_full_width .container {
    padding: 0 15px;
  }

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

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

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

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

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

  .menu-item-has-children .menu-item-has-children .cs_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: #fff;
    color: var(--heading-color);
    padding: 10px 0;
    top: 0;
    overflow: auto;
    min-height: 100vh;
    line-height: 1.6em;
    padding-top: 150px;
    z-index: 100;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .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;
  }

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

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

  .cs_site_header.cs_style_1.cs_type_1 .cs_nav .cs_nav_list {
    padding-top: 80px;
  }

  .cs_animo_links>li>a .cs_animo_text {
    text-shadow: 0 32px 0 currentColor;
  }

  .cs_animo_links>li>a:hover span {
    -webkit-transform: translateY(-32px);
    transform: translateY(-32px);
  }

  /*Mobile Menu Button*/
  .cs_menu_toggle {
    display: inline-block;
    width: 25px;
    height: 22px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
    z-index: 101;
  }

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

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

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

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

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

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

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

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

  .cs_nav .cs_nav_list a {
    position: relative;
  }

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

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

  .cs_site_header.cs_style_1 {
    top: 0;
  }

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

  .cs_has_main_nav {
    display: none;
  }

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

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

  .cs_site_header.cs_style_1 .cs_action_box>*:not(:last-child) {
    margin-right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .cs_site_header .cs_btn.cs_style_1 {
    display: none;
  }
}

/*--------------------------------------------------------------
  8. Footer
----------------------------------------------------------------*/
.cs_footer {
  padding-top: 1px;
}

.cs_footer .cs_social_btns.cs_style_1 {
  margin-top: 50px;
}

.cs_footer .cs_social_btns.cs_style_1 a {
  height: 40px;
  width: 40px;
  background-color: #54b3f4;
  -webkit-box-shadow: 0px 0px 57px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 57px rgba(0, 0, 0, 0.05);
  font-size: 16px;
}

.cs_footer .cs_social_btns.cs_style_1 a:hover {
  background-color: var(--blue-color);
}

.cs_footer_highlight_col {
  /* padding: 60px 35px;
  margin-top: -26px; */
  border-radius: 5px 5px 0 0;
}

@media (max-width: 1199px) {
  .cs_footer_highlight_col {
    padding: 50px 15px;
  }
}

.cs_footer_logo {
  padding-bottom: 30px;
  margin-top: 100px;
}

.cs_footer_contact li {
  position: relative;
  padding-left: 25px;
}

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

.cs_footer_contact li i {
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  text-align: center;
}

.cs_footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 25px;
}

.cs_footer_bottom_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .cs_footer_bottom_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px 0;
    text-align: center;
    padding: 18px 0;
  }

  .cs_footer_bottom_in .cs_footer_menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cs_footer_widget_title {
  color: #3fa6d8;
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .cs_footer_widget_title {
    margin-bottom: 25px;
  }
}

.cs_footer_widget_nav_list li:not(:last-child) {
  margin-bottom: 15px;
}

.cs_footer_widget {
  padding: 40px 0;
  font-size: 19px;
}

@media (max-width: 1199px) {
  .cs_footer_widget {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .cs_footer_widget {
    padding: 0;
  }
}

.cs_footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

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

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

@media (max-width: 991px) {
  .cs_footer_row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0px 0px;
  }
}

@media (max-width: 767px) {
  .cs_footer_row {
    gap: 50px 0px;
    padding-bottom: 70px;
  }
}

.cs_footer_row .cs_footer_col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 991px) {
  .cs_footer_row .cs_footer_col {
    -webkit-box-flex: 0 !important;
    -ms-flex: none !important;
    flex: none !important;
    width: 30%;
  }
}

@media (max-width: 767px) {
  .cs_footer_row .cs_footer_col {
    width: 100%;
  }
}

.cs_footer_row .cs_footer_col:first-child {
  -webkit-box-flex: 1.6;
  -ms-flex: 1.6;
  flex: 1;
}

@media (max-width: 991px) {
  .cs_footer_row .cs_footer_col:first-child {
    width: 100%;
  }
}

.cs_footer_row .cs_footer_col:last-child {
  -webkit-box-flex: 1.4;
  -ms-flex: 1.4;
  flex: 1.4;
}

@media (max-width: 991px) {
  .cs_footer_row .cs_footer_col:last-child {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .cs_footer_row .cs_footer_col:last-child {
    width: 100%;
  }
}

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

.cs_recent_post .cs_recent_post_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 85px;
  height: 85px;
  overflow: hidden;
  border-radius: 50%;
}

.cs_recent_post .cs_recent_post_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_recent_post .cs_recent_post_title {
  font-size: 17px;
  color: #fff;
  margin: 0;
  font-weight: 600;
  line-height: 1.4em;
}

.cs_recent_post p {
  font-size: 14px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.65);
}

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

.cs_service_footer {
  max-width: 460px;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.cs_service_footer .cs_service_footer_icon {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cs_service_footer .cs_service_footer_text {
  font-size: 18px;
  color: var(--heading-color);
  text-align: center;
}

@media (max-width: 767px) {
  .cs_service_footer .cs_service_footer_text {
    text-align: left;
  }

  .cs_service_footer .cs_service_footer_text br {
    display: none;
  }
}

.cs_service_footer a {
  color: var(--accent-color);
  display: inline-block;
}

.cs_service_footer a {
  margin-left: 7px;
  line-height: 28px;
}

.cs_service_footer a span {
  display: inline-block;
  margin-left: 5px;
}

.cs_service_footer a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
  9. Sidebar
----------------------------------------------------------------*/
.cs_sidebar.cs_style_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
}

@media (max-width: 991px) {
  .cs_sidebar.cs_style_1 {
    gap: 30px;
  }
}

.cs_sidebar_widget {
  border: 1px solid var(--border-color);
  padding: 35px 30px 40px;
}

@media (max-width: 1199px) {
  .cs_sidebar_widget {
    padding: 30px 15px;
  }
}

.cs_sidebar_widget.cs_search {
  padding: 3px;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cs_sidebar_widget.cs_search input {
  border: none;
  outline: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 17px;
}

.cs_sidebar_widget.cs_search .cs_search_icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 37px;
  height: 32px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_sidebar_widget.cs_search .cs_search_icon:hover {
  background-color: var(--accent-color);
}

.cs_sidebar_widget.cs_service {
  border: none;
}

.cs_sidebar_widget .cs_sidebar_title {
  font-size: 22px;
  text-decoration: underline;
  margin-bottom: 34px;
}

.cs_sidebar_widget .cs_categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.cs_sidebar_widget .cs_categories li:first-child {
  margin-bottom: 1px;
}

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

.cs_sidebar_widget .cs_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cs_sidebar_widget .cs_tag_list .cs_tag_link {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 20px;
  border: 1px solid var(--border-color);
  font-size: 17px;
  font-weight: 400;
  color: var(--body-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_sidebar_widget .cs_tag_list .cs_tag_link:hover {
  background-color: var(--blue-color);
  color: var(--white);
  border-color: var(--blue-color);
}

/*--------------------------------------------------------------
  10. Hero
----------------------------------------------------------------*/
.cs_hero.cs_style_1 {
  height: 810px;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 {
    height: initial;
    padding: 80px 0 150px 0;
  }
}

.cs_hero.cs_style_1 .cs_hero_title {
  font-size: 66px;
  margin-bottom: 12px;
  color: #fff;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_title {
    font-size: 48px;
  }

  .cs_site_branding img {
    width: 167px !important;
    height: 83px !important;
  }
}

.cs_hero.cs_style_1 .cs_hero_title span {
  color: var(--accent-color);
  display: inline-block;
  position: relative;
}

.cs_hero.cs_style_1 .cs_hero_title span::before {
  content: "";
  position: absolute;
  height: 6px;
  width: 95%;
  left: 0;
  bottom: 5px;
  background-color: var(--accent-color);
}

.cs_hero.cs_style_1 .cs_hero_subtitle {
  font-size: 19px;
  max-width: 600px;
  margin-bottom: 25px;
  color: #fff;
}

.cs_hero.cs_style_1 .cs_hero_info {
  border-left: 5px solid var(--blue-color);
  position: relative;
  padding: 4px 0px 4px 18px;
  margin-bottom: 35px;
}

.cs_hero.cs_style_1 .cs_hero_info::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: var(--blue-color);
  left: -4px;
  top: 50%;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 0 0 0 5px;
}

.cs_hero.cs_style_1 .cs_hero_info h3 {
  font-size: 24px;
  color: var(--blue-color);
  margin-bottom: 4px;
}

.cs_hero.cs_style_1 .cs_hero_info p {
  margin: 0;
  color: var(--blue-color);
}

.cs_hero.cs_style_1 .cs_hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.cs_hero.cs_style_1 .cs_hero_text {
  background-color: #fff;
  max-width: 825px;
  width: 100%;
  padding: 60px 70px 70px 70px;
  border-radius: 50px;
  position: relative;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_text {
    padding: 40px 30px 50px 30px;
  }
}

.cs_hero.cs_style_1 .cs_hero_text_in {
  position: relative;
  z-index: 2;
}

.cs_hero.cs_style_1 .cs_hero_shape {
  position: absolute;
  right: 75px;
  bottom: 30px;
}

@media (max-width: 575px) {
  .cs_hero.cs_style_1 .cs_hero_shape {
    right: 25px;
  }
}

.cs_hero.cs_style_2 .cs_hero_text,
.cs_hero.cs_style_3 .cs_hero_text {
  max-width: 650px;
  position: relative;
}

@media (max-width: 991px) {

  .cs_hero.cs_style_2 .cs_hero_text,
  .cs_hero.cs_style_3 .cs_hero_text {
    max-width: 550px;
  }
}

.cs_hero.cs_style_2 .cs_hero_title,
.cs_hero.cs_style_3 .cs_hero_title {
  font-size: 66px;
  margin-bottom: 12px;
}

@media (max-width: 991px) {

  .cs_hero.cs_style_2 .cs_hero_title,
  .cs_hero.cs_style_3 .cs_hero_title {
    font-size: 48px;
  }
}

.cs_hero.cs_style_2 .cs_hero_subtitle,
.cs_hero.cs_style_3 .cs_hero_subtitle {
  font-size: 19px;
  max-width: 500px;
  margin-bottom: 18px;
}

.cs_hero.cs_style_2 .cs_list.cs_style_2,
.cs_hero.cs_style_3 .cs_list.cs_style_2 {
  font-size: 18px;
  gap: 10px;
  margin-bottom: 30px;
}

.cs_hero.cs_style_2 .cs_list.cs_style_2 li i,
.cs_hero.cs_style_3 .cs_list.cs_style_2 li i {
  top: 4px;
}

.cs_hero.cs_style_2 .cs_list.cs_style_2 li:hover i,
.cs_hero.cs_style_3 .cs_list.cs_style_2 li:hover i {
  color: var(--accent-color);
}

.cs_hero.cs_style_2 {
  height: 810px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_2 {
    height: initial;
    padding-top: 80px;
    padding-bottom: 180px;
  }
}

.cs_hero.cs_style_2 .cs_hero_shape {
  position: absolute;
  top: 15%;
  right: 100%;
  width: 135px;
  margin-right: 20px;
}

.cs_hero.cs_style_2 .cs_hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.cs_hero.cs_style_2 .cs_player_btn {
  width: 50px;
  height: 50px;
}

.cs_hero.cs_style_2 .cs_video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.cs_hero.cs_style_2 .cs_video_open:hover .cs_play_btn_text {
  letter-spacing: 0.5px;
}

.cs_hero.cs_style_2 .cs_play_btn_text {
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_2 .cs_play_btn_text {
    color: var(--blue-color);
  }
}

.cs_hero.cs_style_2 .cs_hero_card {
  position: absolute;
  right: 0;
  height: 143px;
  width: 143px;
  border: 7px solid #fff;
  background-color: var(--accent-color);
  border-radius: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 45%;
  right: -70px;
}

@media (max-width: 1400px) {
  .cs_hero.cs_style_2 .cs_hero_card {
    right: 10px;
  }
}

@media (max-width: 1199px) {
  .cs_hero.cs_style_2 .cs_hero_card {
    right: 80px;
  }
}

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

.cs_hero.cs_style_2 .cs_hero_card h4 {
  font-size: 34px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 0;
}

.cs_hero.cs_style_2 .cs_hero_card h4 span {
  font-size: 14px;
  line-height: 1.6em;
}

.cs_hero.cs_style_2 .cs_hero_card p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.cs_hero.cs_style_3 {
  height: 880px;
  position: relative;
  padding-top: 80px;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_3 {
    padding-bottom: 285px;
    padding-top: 160px;
    height: initial;
  }
}

@media (max-width: 350px) {
  .cs_hero.cs_style_3 {
    padding-bottom: 255px;
  }
}

.cs_hero.cs_style_3 .cs_hero_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.cs_hero.cs_style_3 .cs_hero_shape {
  position: absolute;
  right: 100%;
  width: 125px;
  top: 10px;
  margin-right: 40px;
}

.cs_hero.cs_style_3 .cs_hero_title span {
  -webkit-text-stroke: 3px var(--accent-color);
}

/*--------------------------------------------------------------
  11. Iconbox
----------------------------------------------------------------*/
.cs_iconbox.cs_style_1 .cs_iconbox_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  padding-bottom: 20px;
  /* border-bottom: 1px solid var(--border-color); */
  margin-bottom: 15px;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon {
  -webkit-box-shadow: 0px 0px 49px rgba(18, 30, 59, 0.14);
  /* box-shadow: 0px 0px 49px rgba(18, 30, 59, 0.14); */
  background: #002261;
  height: 58px;
  width: 58px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_1 .cs_iconbox_icon img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_iconbox.cs_style_1 .cs_iconbox_title {
  font-size: 22px;
}

.cs_iconbox.cs_style_1 .cs_iconbox_subtitle {
  max-width: 250px;
}

.cs_iconbox.cs_style_1:hover .cs_iconbox_icon {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_1:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_iconbox.cs_style_2 {
  padding: 30px;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

.cs_iconbox.cs_style_2 .iconbox_index {
  color: var(--blue-color);
  -webkit-text-stroke: 1px var(--white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5em;
  position: relative;
  z-index: 1;
  opacity: 0;
}

.cs_dark_overlay {
  position: relative;
  overflow: hidden;
}

/* Dark overlay layer */
.cs_dark_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--blue-color);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

/* Keep content above overlay */
.cs_dark_overlay>* {
  position: relative;
  z-index: 2;
}


.cs_iconbox.cs_style_2 .cs_iconbox_icon {
  width: 53px;
  height: 53px;
  position: relative;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon img {
  position: relative;
  z-index: 1;
}

/* .cs_iconbox.cs_style_2 .cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--blue-color);
  -webkit-filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_icon::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: -4px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--accent-color);
  z-index: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
} */

.cs_iconbox.cs_style_2 .cs_iconbox_title {
  font-size: 21px;
  margin-top: -38px;
  margin-bottom: 5px;
  text-align: center;
  color: #fff;
  position: relative;
  /* z-index: 1; */
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_subtitle {
  position: relative;
  color: #fff;
  text-align: justify;
  padding-top: 20px;
  font-size: 17px;
  /* z-index: 1; */
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--blue-color);
  opacity: 0.8;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2 .cs_iconbox_shape {
  width: 56px;
  height: 56px;
  background-color: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  bottom: -56px;
  right: -56px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_overlay,
.cs_iconbox.cs_style_2:hover .iconbox_index {
  opacity: 1;
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_icon::before {
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_icon::after {
  background-color: var(--white);
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_title a,
.cs_iconbox.cs_style_2:hover .cs_iconbox_subtitle {
  color: var(--white);
}

.cs_iconbox.cs_style_2:hover .cs_iconbox_shape {
  bottom: -20px;
  right: -20px;
}

.cs_iconbox.cs_style_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  padding: 30px 0 30px 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .cs_iconbox.cs_style_3 {
    padding: 30px 0 !important;
  }

  .cs_iconbox.cs_style_3:last-child {
    padding-bottom: 0 !important;
  }
}

.cs_iconbox.cs_style_3:nth-child(1) {
  padding-top: 0;
}

.cs_iconbox.cs_style_3:nth-child(2) {
  padding-top: 0;
}

.cs_iconbox.cs_style_3:nth-child(5) {
  padding-bottom: 0;
}

.cs_iconbox.cs_style_3:nth-child(6) {
  padding-bottom: 0;
}

.cs_iconbox.cs_style_3:nth-child(even) {
  padding-left: 50px;
  padding-right: 0;
}

@media (max-width: 767px) {
  .cs_iconbox.cs_style_3:nth-child(even) {
    padding-left: 0;
  }
}

.cs_iconbox.cs_style_3:nth-child(odd) {
  padding-right: 50px;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 65px;
  height: 65px;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  -webkit-transform: translate(-50%, -10px) rotate(45deg);
  transform: translate(-50%, -10px) rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_3 .cs_iconbox_icon img {
  position: relative;
  z-index: 1;
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_3 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: 5px;
  color: #c5161d;
}

.cs_iconbox.cs_style_3 .cs_iconbox_subtitle {
  margin-bottom: 0;
}

.cs_iconbox.cs_style_3:hover .cs_iconbox_icon::before {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_3:hover .cs_iconbox_icon::after {
  -webkit-transform: translate(-50%, 5px) rotate(45deg);
  transform: translate(-50%, 5px) rotate(45deg);
}

.cs_iconbox.cs_style_3:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_iconbox_4_wrap {
  position: relative;
  z-index: 10;
  margin-top: -100px;
}

.cs_iconbox.cs_style_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 50px 70px;
  gap: 30px;
  background-color: #fff;
  border-bottom: 3px solid var(--blue-color);
  -webkit-box-shadow: 0px 0px 128px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 128px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1400px) {
  .cs_iconbox.cs_style_4 {
    padding: 40px;
  }
}

@media (max-width: 1199px) {
  .cs_iconbox.cs_style_4 {
    padding: 30px;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .cs_iconbox.cs_style_4 {
    padding: 25px;
  }
}

@media (max-width: 430px) {
  .cs_iconbox.cs_style_4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.cs_iconbox.cs_style_4 .cs_iconbox_icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 110px;
  width: 110px;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--blue-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .cs_iconbox.cs_style_4 .cs_iconbox_icon {
    height: 90px;
    width: 90px;
  }
}

.cs_iconbox.cs_style_4 .cs_iconbox_title {
  font-size: 35px;
  margin-bottom: 7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_4 .cs_iconbox_title {
    font-size: 30px;
  }
}

.cs_iconbox.cs_style_4 .cs_iconbox_subtitle {
  font-size: 17px;
  margin-bottom: 30px;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 430px) {
  .cs_iconbox.cs_style_4 .cs_iconbox_subtitle {
    margin-bottom: 20px;
  }
}

.cs_iconbox.cs_style_4 .cs_btn.cs_style_1 {
  border-radius: 5px;
}

.cs_iconbox.cs_style_4:hover {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_4:hover .cs_iconbox_icon {
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_4:hover .cs_btn.cs_style_1 {
  background-color: #fff;
  color: var(--blue-color);
}

.cs_iconbox.cs_style_4:hover .cs_btn.cs_style_1:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.cs_iconbox.cs_style_4:hover .cs_iconbox_title,
.cs_iconbox.cs_style_4:hover .cs_iconbox_subtitle {
  color: #fff;
}

.cs_iconbox.cs_style_5 {
  padding: 37px 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .cs_iconbox.cs_style_5 {
    padding: 30px;
  }
}

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

  .cs_iconbox.cs_style_5 br {
    display: none;
  }
}

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

.cs_iconbox.cs_style_5 .cs_iconbox_icon {
  width: 53px;
  height: 53px;
  position: relative;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_5 .cs_iconbox_icon {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-bottom: 15px;
  }

  .cs_iconbox.cs_style_5 .cs_iconbox_icon img {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon img {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--white);
  -webkit-filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: -4px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--accent-color);
  z-index: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_5 .cs_iconbox_title {
  font-size: 22px;
}

.cs_iconbox.cs_style_5 .cs_iconbox_line {
  width: 83px;
  height: 2px;
  background-color: var(--border-color);
  opacity: 0.3;
}

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

.cs_iconbox.cs_style_5 .cs_iconbox_thumbnail {
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cs_iconbox.cs_style_5 .cs_iconbox_btn {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  font-size: 30px;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .cs_iconbox.cs_style_5 .cs_iconbox_btn {
    right: 30px;
    top: 30px;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@media (max-width: 575px) {
  .cs_iconbox.cs_style_5 .cs_iconbox_btn {
    right: 20px;
    top: 20px;
  }
}

.cs_iconbox.cs_style_5 .cs_iconbox_btn i {
  color: var(--accent-color);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_5:hover {
  border-style: dashed;
  border-color: var(--accent-color);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_icon:before {
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_icon::after {
  background-color: var(--white);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_thumbnail {
  right: 15%;
  -webkit-transform: translateY(-50%) rotate(-22deg);
  transform: translateY(-50%) rotate(-22deg);
  opacity: 1;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_5:hover .cs_iconbox_thumbnail {
    display: none;
  }
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_btn {
  color: var(--white);
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_btn i {
  color: var(--white);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.cs_iconbox_wrapper {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 77px;
}

.cs_iconbox.cs_style_6 {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.3);
}

@media (max-width: 575px) {
  .cs_iconbox.cs_style_6 {
    gap: 20px;
  }
}

.cs_iconbox.cs_style_6 .cs_iconbox_icon {
  width: 70px;
  height: 70px;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 575px) {
  .cs_iconbox.cs_style_6 .cs_iconbox_icon {
    width: 60px;
    height: 60px;
  }
}

.cs_iconbox.cs_style_6 .cs_iconbox_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_6 .cs_iconbox_index {
  width: 24px;
  height: 24px;
  background-color: #0365d3;
  font-size: 9px;
  font-weight: 500;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_6 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: 5px;
}

.cs_iconbox.cs_style_6:hover {
  border-color: #0365d3;
}

.cs_iconbox.cs_style_6:hover .cs_iconbox_icon {
  background-color: #0365d3;
}

.cs_iconbox.cs_style_6:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_iconbox.cs_style_6:hover .cs_iconbox_index {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cs_iconbox.cs_style_7 .cs_iconbox_thumbnail {
  border-radius: 10px;
  z-index: 2;
}

.cs_iconbox.cs_style_7 .cs_iconbox_thumbnail img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.cs_iconbox.cs_style_7 .cs_iconbox_content {
  width: 95%;
  background-color: var(--white);
  border-radius: 0 0 10px 10px;
  position: relative;
  margin: -50px auto 0;
  padding: 70px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.cs_iconbox.cs_style_7 .cs_iconbox_overlay {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_7 .cs_iconbox_icon {
  width: 53px;
  height: 53px;
  background-color: var(--white);
  border-radius: 50%;
  margin: -50px 0 32px;
  position: relative;
  z-index: 3;
}

.cs_iconbox.cs_style_7 .cs_iconbox_icon img {
  position: relative;
  z-index: 1;
}

.cs_iconbox.cs_style_7 .cs_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 0;
  background-color: var(--blue-color);
  -webkit-filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  filter: drop-shadow(0px 0px 49px rgba(49, 82, 157, 0.14));
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_7 .cs_iconbox_icon::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  background-color: var(--accent-color);
  z-index: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_7 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: 8px;
}

.cs_iconbox.cs_style_7 .cs_iconbox_subtitle {
  margin-bottom: 13px;
}

.cs_iconbox.cs_style_7 .cs_iconbox_title,
.cs_iconbox.cs_style_7 .cs_iconbox_subtitle,
.cs_iconbox.cs_style_7 .cs_iconbox_btn {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_7 .cs_iconbox_shape_1,
.cs_iconbox.cs_style_7 .cs_iconbox_shape_2 {
  width: 40px;
  height: 40px;
  background-color: var(--blue-color);
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_7 .cs_iconbox_shape_1 {
  left: -20px;
  bottom: -20px;
}

.cs_iconbox.cs_style_7 .cs_iconbox_shape_2 {
  right: -20px;
  bottom: -20px;
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_overlay {
  opacity: 1;
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_icon::before {
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_icon::after {
  background-color: var(--white);
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_title,
.cs_iconbox.cs_style_7:hover .cs_iconbox_subtitle,
.cs_iconbox.cs_style_7:hover .cs_iconbox_btn {
  color: var(--white);
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_btn {
  color: var(--white);
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_btn:hover {
  color: var(--accent-color);
  letter-spacing: 0.5px;
}

.cs_iconbox.cs_style_7:hover .cs_iconbox_shape_1,
.cs_iconbox.cs_style_7:hover .cs_iconbox_shape_2 {
  background-color: var(--accent-color);
}

.cs_iconbox.cs_style_8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 40px 20px 1px;
  background-color: #fff;
  gap: 25px;
  height: 190px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 410px;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_8 {
    max-width: calc(100% - 65px);
    height: 170px;
    gap: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 350px) {
  .cs_iconbox.cs_style_8 {
    max-width: calc(100% - 54px);
    height: 140px;
    gap: 12px;
  }
}

.cs_iconbox.cs_style_8 .cs_iconbox_icon {
  height: 120px;
  width: 120px;
  border: 7px solid #fff;
  background-color: var(--accent-color);
  margin-left: -60px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_8 .cs_iconbox_icon {
    height: 100px;
    width: 100px;
    border-width: 4px;
    margin-left: -50px;
    padding: 18px;
  }
}

@media (max-width: 350px) {
  .cs_iconbox.cs_style_8 .cs_iconbox_icon {
    height: 80px;
    width: 80px;
    margin-left: -40px;
    padding: 14px;
  }
}

.cs_iconbox.cs_style_8 .cs_iconbox_title {
  font-size: 35px;
  margin-bottom: 7px;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_8 .cs_iconbox_title {
    font-size: 28px;
  }
}

@media (max-width: 400px) {
  .cs_iconbox.cs_style_8 .cs_iconbox_title {
    font-size: 24px;
  }
}

.cs_iconbox.cs_style_8 .cs_iconbox_subtitle {
  font-size: 20px;
  margin: 0;
  color: var(--heading-color);
}

@media (max-width: 400px) {
  .cs_iconbox.cs_style_8 .cs_iconbox_subtitle {
    font-size: 18px;
  }
}

.cs_iconbox_9_wrapper {
  padding: 30px 0;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_iconbox_9_wrapper {
    padding: 30px 15px 0;
  }
}

.cs_iconbox.cs_style_9 {
  padding: 30px 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
}

@media (max-width: 991px) {
  .cs_iconbox.cs_style_9 {
    padding: 30px 15px;
  }
}

@media (min-width: 1200px) {
  .cs_iconbox.cs_style_9 {
    padding: 30px 40px 40px;
  }
}

.cs_iconbox.cs_style_9.active {
  border: 1px dashed var(--border-color);
  border-radius: 10px;
}

.cs_iconbox.cs_style_9 .cs_index {
  font-size: 48px;
  font-weight: 700;
  color: var(--border-color);
}

.cs_iconbox.cs_style_9 .cs_iconbox_icon {
  width: 124px;
  height: 124px;
  background-color: rgb(240, 244, 246);
  padding: 10px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-top: -12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_9 .cs_iconbox_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_9 .cs_iconbox_icon::after {
  content: "";
  width: 104px;
  height: 104px;
  border: 1px dashed var(--border-color);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_9 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: 8px;
}

.cs_iconbox.cs_style_9 .cs_iconbox_shape {
  position: absolute;
  right: 0;
  top: 50px;
}

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

.cs_iconbox.cs_style_9 .cs_iconbox_shape.cs_left {
  left: 0;
  right: auto;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.cs_iconbox.cs_style_9:hover .cs_iconbox_icon {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_9:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_iconbox.cs_style_9:hover .cs_iconbox_icon::after {
  border-color: var(--white);
}

.cs_iconbox.cs_style_10 {
  width: 100%;
  height: 100%;
  padding: 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_10 .cs_iconbox_icon {
  font-size: 28px;
  color: var(--accent-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_10 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: -2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_10 .cs_iconbox_subtitle {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_10:hover {
  background-color: var(--blue-color);
}

.cs_iconbox.cs_style_10:hover .cs_iconbox_icon,
.cs_iconbox.cs_style_10:hover .cs_iconbox_title,
.cs_iconbox.cs_style_10:hover .cs_iconbox_subtitle {
  color: var(--white);
}

.cs_iconbox.cs_style_11 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 1199px) {
  .cs_iconbox.cs_style_11 {
    padding: 30px 15px;
  }
}

.cs_iconbox.cs_style_11 .cs_iconbox_icon {
  width: 65px;
  height: 65px;
  border-radius: 5px;
  background-color: var(--accent-color);
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_11 .cs_iconbox_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_11 .cs_iconbox_title {
  font-size: 22px;
  margin-bottom: 6px;
}

.cs_iconbox.cs_style_11 .cs_iconbox_subtitle {
  margin-bottom: 13px;
}

.cs_iconbox.cs_style_11 .cs_iconbox_btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--accent-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_iconbox.cs_style_11:hover .cs_iconbox_icon {
  background-color: var(--white);
}

.cs_iconbox.cs_style_11:hover .cs_iconbox_icon img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}

.cs_iconbox.cs_style_11:hover .cs_iconbox_btn {
  background-color: var(--accent-color);
  color: var(--white);
}

/*--------------------------------------------------------------
  12. Posts
----------------------------------------------------------------*/
.cs_post.cs_style_1 {
  overflow: hidden;
}

.cs_post.cs_style_1 .cs_post_thumbnail {
  display: inline-block;
  padding: 0 10px;
  margin-bottom: -8px;
}

.cs_post.cs_style_1 .cs_post_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_post.cs_style_1 .cs_post_content {
  border: 1px solid var(--border-color);
  background-color: var(--white);
  padding: 30px 35px 30px 30px;
}

@media (max-width: 575px) {
  .cs_post.cs_style_1 .cs_post_content {
    padding: 40px 20px 30px;
  }
}

.cs_post.cs_style_1 .cs_post_category {
  padding: 5px 20px;
  background-color: var(--white);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  left: 30px;
  top: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_post.cs_style_1 .cs_post_meta_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

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

.cs_post.cs_style_1 .cs_posted_by {
  width: 65px;
  height: 57px;
  padding: 10px;
  border: 2px solid var(--white);
  background-color: var(--blue-color);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  right: 30px;
  top: -30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_post.cs_style_1 .cs_post_title {
  font-size: 22px;
  margin-bottom: 10px;
}

.cs_post.cs_style_1 .cs_post_subtitle {
  font-size: 17px;
  margin-bottom: 7px;
}

.cs_post.cs_style_1 .cs_post_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.cs_post.cs_style_1 .cs_post_shape {
  width: 120px;
  height: 100px;
  background-color: var(--accent-color);
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  right: -150px;
  bottom: -100px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

.cs_post.cs_style_1 .cs_post_shape::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  opacity: 0.3;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(-30px, -15px);
  transform: translate(-30px, -15px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_post.cs_style_1:hover .cs_post_shape {
  opacity: 1;
  right: -50px;
  bottom: -75px;
}

.cs_post.cs_style_1:hover .cs_post_category {
  background-color: var(--accent-color);
  color: var(--white);
}

.cs_post.cs_style_1:hover .cs_posted_by {
  background-color: var(--accent-color);
}

.cs_post.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

@media (max-width: 1199px) {
  .cs_post.cs_style_2 br {
    display: none;
  }
}

.cs_post.cs_style_2:not(:last-child) {
  margin-bottom: 30px;
}

.cs_post.cs_style_2 .cs_post_thumb_thumbnail {
  display: inline-block;
  width: 94px;
  height: 78px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cs_post.cs_style_2 .cs_post_thumb_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_post.cs_style_2 .cs_post_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  margin-bottom: 6px;
}

.cs_post.cs_style_2 .cs_post_title {
  font-size: 17px;
  font-weight: 600;
}

.cs_posts_grid.cs_style_1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1199px) {
  .cs_posts_grid.cs_style_1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/*-------------------------------------------
 Blog Details Page Styling
----------------------------------------------*/
.cs_post_details.cs_style_1 .cs_post_thumb_thumbnail {
  margin-bottom: 24px;
}

.cs_post_details.cs_style_1 .cs_post_thumb_thumbnail img {
  width: 100%;
}

.cs_post_details.cs_style_1 .cs_post_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  margin-bottom: 17px;
}

.cs_post_details.cs_style_1 .cs_post_meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.cs_post_details.cs_style_1 .cs_reply_title {
  font-size: 22px;
}

.cs_post_details.cs_style_1 p {
  margin-bottom: 20px;
}

.cs_comment_body {
  width: 100%;
  max-width: 730px;
  padding: 35px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
}

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

.cs_comment_body:nth-child(even) {
  padding-left: 50px;
}

@media (max-width: 991px) {
  .cs_comment_body:nth-child(even) {
    padding-left: 0;
  }
}

.cs_comment_body h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.cs_comment_body p {
  margin-bottom: 14px;
}

.cs_comment_body .cs_comment_thumbnail {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  overflow: hidden;
}

.cs_comment_body .cs_comment_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_comment_body .cs_comment_meta_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}

.cs_comment_body .cs_reply_btn {
  font-size: 17px;
  font-weight: 500;
}

.cs_reply_heading {
  font-size: 40px;
  margin-bottom: 33px;
}

.cs_reply_form .cs_form_field {
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
}

.cs_reply_form select {
  padding: 12.3px 20px;
  font-size: 17px;
  color: var(--body-color);
}

.cs_reply_form .cs_btn.cs_style_1 {
  border: none;
  outline: none;
  padding: 11px 50px;
  margin-top: 20px;
}

/*--------------------------------------------------------------
  13. CTA
----------------------------------------------------------------*/
@media (max-width: 991px) {
  .cs_cta.cs_style_1 {
    padding: 70px 0;
  }
}

.cs_cta.cs_style_1 .cs_cta_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

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

.cs_cta.cs_style_1 .cs_cta_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px 70px;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1 .cs_cta_left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.cs_cta.cs_style_1 .cs_cta_right {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cs_cta.cs_style_1 .container {
  position: relative;
  z-index: 2;
}

.cs_cta.cs_style_1 .cs_cta_title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.cs_cta.cs_style_1 .cs_cta_subtitle {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.cs_cta.cs_style_1 .cs_cta_thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 200px;
  height: 190px;
  position: relative;
}

.cs_cta.cs_style_1 .cs_cta_thumb::before {
  content: "";
  height: 110px;
  width: 110px;
  background-color: var(--accent-color);
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: -20px;
  top: 50%;
  margin-top: -55px;
}

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

.cs_cta.cs_style_1 .cs_cta_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.cs_cta.cs_style_1 .cs_cta_shape {
  width: 300px;
  height: 300px;
  position: absolute;
  right: -140px;
  bottom: -150px;
}

.cs_cta.cs_style_1 .cs_cta_shape::before,
.cs_cta.cs_style_1 .cs_cta_shape::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
  position: absolute;
  top: 0;
  right: 0;
}

.cs_cta.cs_style_1 .cs_cta_shape::before {
  -webkit-transform: scale(0);
  transform: scale(0);
  z-index: 1;
  -webkit-animation: zoom-shape1 4s linear infinite;
  animation: zoom-shape1 4s linear infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.cs_cta.cs_style_1 .cs_cta_shape::after {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: zoom-shape2 4s linear infinite;
  animation: zoom-shape2 4s linear infinite;
  opacity: 0.71;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1.cs_type_1 {
    padding: 0;
  }
}

.cs_cta.cs_style_1.cs_type_1 .cs_cta_in {
  padding: 33px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1.cs_type_1 .cs_cta_in {
    padding: 70px 0;
  }
}

.cs_cta.cs_style_1.cs_type_1 .cs_cta_left {
  gap: 30px 60px;
}

.cs_cta.cs_style_1.cs_type_1 .cs_cta_thumb {
  width: initial;
  height: 125px;
}

.cs_cta.cs_style_1.cs_type_1 .cs_cta_thumb:before {
  height: 60px;
  width: 60px;
  margin-top: -32px;
  right: -12px;
}

.cs_cta.cs_style_1.cs_type_1 .container {
  position: relative;
  z-index: 2;
}

.cs_cta.cs_style_1.cs_type_1 .container::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100vw;
  left: -20px;
  top: 0;
  background-color: var(--blue-color);
  border-radius: 100px 0 0 100px;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_1.cs_type_1 .container::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 0;
  }
}

.cs_cta.cs_style_1.cs_type_1 .cs_cta_shape {
  z-index: 3;
}

.cs_cta.cs_style_2 {
  width: 100%;
  height: 100%;
  padding: 40px 0 60px 0;
  /* min-height: 500px; */
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 500px) {
  .cs_cta.cs_style_2 {
    min-height: 640px;
  }
}

@media (max-width: 380px) {
  .cs_cta.cs_style_2 {
    min-height: 680px;
  }
}

.cs_cta.cs_style_2 .cs_cta_btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_cta.cs_style_2 .cs_cta_btn_wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

.cs_cta.cs_style_2 .cs_player_btn {
  width: 43px;
  height: 43px;
  color: var(--accent-color);
}

.cs_cta.cs_style_2 .cs_player_btn:before,
.cs_cta.cs_style_2 .cs_player_btn:after {
  background-color: var(--white);
}

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

.cs_cta.cs_style_2 .cs_play_btn_text:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.cs_cta.cs_style_2 .cs_video_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
}

.cs_cta.cs_style_2 .cs_video_open:hover .cs_play_btn_text {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.cs_cta.cs_style_2 .cs_cta_text {
  max-width: 540px;
  position: relative;
  z-index: 2;
}

.cs_cta.cs_style_2 .cs_section_title {
  margin-bottom: 12px;
}

.cs_section_title img {
  margin-right: 10px;
  margin-bottom: 10px;
}

.cs_cta.cs_style_2 .cs_cta_subtitle {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 44px;
}

.cs_cta.cs_style_2 .cs_btn.cs_style_1 {
  margin-top: 1px;
}

.cs_cta.cs_style_2 .cs_cta_shape {
  right: 3%;
  bottom: 8%;
}

@media (max-width: 767px) {
  .cs_cta.cs_style_2 .cs_cta_shape {
    display: none;
  }
}

.cs_cta.cs_style_3 {
  padding: 60px 0 65px;
}

@media (max-width: 767px) {
  .cs_cta.cs_style_3 {
    padding: 40px 0;
  }
}

.cs_cta.cs_style_3 .cs_cta_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 767px) {
  .cs_cta.cs_style_3 .cs_cta_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 24px;
  }
}

.cs_cta.cs_style_3 .cs_cta_info {
  padding-left: 20px;
  position: relative;
}

.cs_cta.cs_style_3 .cs_cta_info::after,
.cs_cta.cs_style_3 .cs_cta_info::before {
  content: "";
  width: 3px;
  height: 100%;
  border-radius: 2px;
  position: absolute;
  left: 0;
}

.cs_cta.cs_style_3 .cs_cta_info::before {
  background-color: var(--white);
  top: 0;
}

.cs_cta.cs_style_3 .cs_cta_info::after {
  height: 50%;
  background-color: var(--blue-color);
  bottom: 0;
}

.cs_cta.cs_style_3 .cs_cta_title {
  font-size: 24px;
  margin-bottom: 10px;
}

.cs_cta.cs_style_3 .cs_color_3:hover {
  background-color: var(--blue-color);
}

@-webkit-keyframes zoom-shape1 {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes zoom-shape1 {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes zoom-shape2 {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes zoom-shape2 {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
  14. Testimonial
----------------------------------------------------------------*/
.cs_testimonial_area {
  background-repeat: no-repeat;
  background-position: right;
}

.cs_testimonial_content {
  padding-left: 75px;
  position: relative;
  margin-left: 75px;
}

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

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

.cs_testimonial_content::after {
  content: "";
  width: 10px;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0px;
}

@media (max-width: 575px) {
  .cs_testimonial_content::after {
    display: none;
  }
}

.cs_testimonial.cs_style_1 {
  max-width: 491px;
}

.cs_testimonial.cs_style_1.cs_type_1 {
  max-width: 100%;
  padding: 35px 35px 40px;
  background-color: #f2f6fd;
}

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

.cs_testimonial.cs_style_1.cs_type_1 .cs_testimonial_subtitle {
  margin-bottom: 30px;
}

.cs_testimonial.cs_style_1 .cs_rating_container {
  margin-bottom: 17px;
}

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

@media (max-width: 575px) {
  .cs_testimonial.cs_style_1 .cs_avatar.cs_style_1 {
    gap: 15px;
  }
}

.cs_testimonial.cs_style_1 .cs_avatar_thumbnail {
  width: 73px;
  height: 73px;
  border-radius: 50%;
}

.cs_testimonial.cs_style_1 .cs_avatar_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.cs_testimonial.cs_style_1 .cs_avatar_title {
  font-size: 22px;
  margin-bottom: 1px;
}

@media (max-width: 575px) {
  .cs_testimonial.cs_style_1 .cs_avatar_title {
    font-size: 20px;
  }
}

.cs_testimonial.cs_style_1 .cs_testimonial_subtitle {
  margin-bottom: 38px;
}

.cs_testimonial.cs_style_1+.cs_testimonial_heading {
  margin-bottom: 16px;
}

/*--------------------------------------------------------------
  15. Counter
----------------------------------------------------------------*/
.odometer-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cs_counter_area {
  position: relative;
}

.cs_counter_area::after {
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
}

.cs_counter_content {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
}

.cs_counter_content .cs_counter_shape {
  width: 100%;
  left: 0;
  top: -20px;
}

.cs_counter_content .cs_counter_shape img {
  display: inline-block;
  width: 100%;
}

.cs_counter_1_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 40px;
  position: relative;
  z-index: 1;
  padding: 45px 0;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 {
  position: relative;
  z-index: 2;
  width: 25%;
  padding: 0 45px;
  text-align: center;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_icon {
  width: 74px;
  height: 74px;
  background-color: var(--white);
  border-radius: 50%;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_nmber {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2em;
  margin-bottom: -2px;
  font-family: var(--heading-font);
}

.cs_counter_1_wrap .cs_counter.cs_style_1 .cs_counter_title {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

@media (min-width: 575px) {
  .cs_counter_1_wrap .cs_counter.cs_style_1 {
    padding: 0 20px;
  }
}

@media (min-width: 575px) {
  .cs_counter_1_wrap .cs_counter.cs_style_1:not(:nth-child(4n+0))::before {
    content: "";
    height: 57%;
    width: 1px;
    background-color: var(--border-color);
    opacity: 0.3;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
  }
}

.cs_counter_1_wrap .cs_counter.cs_style_1:last-child::before {
  display: none;
}

.cs_counter_1_wrap .cs_counter.cs_style_1:hover .cs_counter_icon {
  background-color: var(--accent-color);
}

.cs_counter_1_wrap .cs_counter.cs_style_1:hover .cs_counter_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media (max-width: 1199px) {
  .cs_counter_1_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .cs_counter_1_wrap .cs_counter.cs_style_1 {
    width: calc(50% - 25px);
  }

  .cs_counter_1_wrap .cs_counter.cs_style_1:nth-child(2)::before {
    display: none;
  }
}

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

  .cs_counter_1_wrap .cs_counter.cs_style_1 {
    width: 100%;
    margin: auto;
  }
}

.cs_counter.cs_style_1 {
  gap: 17px;
}

@media (max-width: 575px) {
  .cs_counter.cs_style_1 .cs_counter_nmber {
    min-width: 70px;
  }
}

.cs_counter_2_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1199px) {
  .cs_counter_2_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

.cs_counter_2_wrap .cs_counter.cs_style_2 {
  position: relative;
  width: 100%;
  padding: 48px 15px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

@media (min-width: 1200px) {
  .cs_counter_2_wrap .cs_counter.cs_style_2:nth-child(1) {
    border-right: 0;
    border-radius: 10px 0 0 10px;
  }

  .cs_counter_2_wrap .cs_counter.cs_style_2:nth-child(4) {
    border-radius: 0 10px 10px 0;
  }

  .cs_counter_2_wrap .cs_counter.cs_style_2:nth-child(3) {
    border-right: 0;
    border-left: 0;
  }
}

@media (max-width: 1199px) {
  .cs_counter_2_wrap .cs_counter.cs_style_2 {
    border-radius: 10px;
  }
}

.cs_counter_2_wrap .cs_counter.cs_style_2::after,
.cs_counter_2_wrap .cs_counter.cs_style_2::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: transparent;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cs_counter_2_wrap .cs_counter.cs_style_2::after {
  top: 0px;
}

.cs_counter_2_wrap .cs_counter.cs_style_2::before {
  bottom: 0px;
}

.cs_counter_2_wrap .cs_counter.cs_style_2 .cs_counter_icon {
  width: 74px;
  height: 74px;
  background-color: var(--blue-color);
  border-radius: 50%;
  margin-bottom: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_counter_2_wrap .cs_counter.cs_style_2 .cs_counter_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.cs_counter_2_wrap .cs_counter.cs_style_2 .cs_counter_nmber {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2em;
  margin-bottom: -2px;
}

.cs_counter_2_wrap .cs_counter.cs_style_2 .cs_counter_title {
  font-size: 22px;
  font-weight: 500;
  color: var(--heading-color);
}

.cs_counter_2_wrap .cs_counter.cs_style_2:hover .cs_counter_icon {
  background-color: var(--accent-color);
}

.cs_counter_2_wrap .cs_counter.cs_style_2:hover::after,
.cs_counter_2_wrap .cs_counter.cs_style_2:hover::before {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
  16. Casestudie
----------------------------------------------------------------*/
.cs_timeline_wrapper {
  overflow-x: auto;
}

.cs_days_row {
  min-width: 1070px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--border-color);
}

.cs_days_row .cs_day_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_days_row .cs_day_col:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.cs_days_row .cs_day_col:hover {
  background-color: var(--blue-color);
  color: var(--white);
}

.cs_content_row {
  min-width: 1070px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--border-color);
  border-top: 0;
}

.cs_content_row .cs_content_col {
  padding: 30px 10px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.cs_content_row .cs_content_col:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.cs_content_row .cs_content_col::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/schedule_bg_1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_content_row .cs_content_col.cs_time::after {
  display: none;
}

.cs_content_row .cs_content_col:hover::after {
  opacity: 1;
}

.cs_content_row .cs_content_col:hover .cs_schedule_title,
.cs_content_row .cs_content_col:hover .cs_schedule_time,
.cs_content_row .cs_content_col:hover .cs_doctor_title {
  color: var(--white);
}

.cs_content_row .cs_time {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.cs_content_row .cs_schedule_wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.cs_content_row .cs_schedule_wrapper .cs_schedule_title {
  font-size: 20px;
  margin-bottom: 2px;
}

.cs_content_row .cs_schedule_wrapper .cs_schedule_time {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 0px;
}

.cs_content_row .cs_schedule_wrapper .cs_doctor_title {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  17. Team
----------------------------------------------------------------*/
.cs_team.cs_style_1 {
  width: 100%;
  max-width: 320px;
  height: 415px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 1400px) {
  .cs_team.cs_style_1 {
    height: 360px;
  }
}

@media (max-width: 1199px) {
  .cs_team.cs_style_1 {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .cs_team.cs_style_1 {
    height: 415px;
  }
}

.cs_team.cs_style_1 .cs_team_thumbnail {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cs_team.cs_style_1 .cs_team_bio {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_team.cs_style_1 .cs_team_title a {
  font-size: 20px;
  color: var(--white);
}

.cs_team.cs_style_1 .cs_team_subtitle {
  margin-bottom: 10px;
  color: var(--white);
}

.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a {
  background-color: var(--white);
  color: var(--blue-color);
}

.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a:hover.cs_blue_hover {
  background-color: var(--blue-color);
}

.cs_team.cs_style_1 .cs_team_shape {
  width: 330px;
  height: 270px;
  position: absolute;
  top: -250px;
  right: -240px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cs_team.cs_style_1 .cs_team_shape.cs_blue_bg {
  width: 160px;
  height: 330px;
  top: -125px;
  left: -100px;
  -webkit-transform: rotate(-48deg);
  transform: rotate(-48deg);
}

.cs_team.cs_style_1:hover .cs_team_thumbnail {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  overflow: hidden;
}

.cs_team.cs_style_1:hover .cs_team_bio {
  position: initial;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cs_team.cs_style_1:hover .cs_team_shape {
  top: -170px;
  right: -110px;
}

.cs_team.cs_style_1:hover .cs_team_shape.cs_blue_bg {
  top: -135px;
  left: -50px;
}

.cs_team_bg_dark {
  width: 100%;
  height: 45%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs_team_bg_dark .cs_team_bg_white {
  width: 100%;
  max-width: 1400px;
  height: 170px;
  position: absolute;
  top: -85px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.cs_doctors_grid.cs_style_1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1199px) {
  .cs_doctors_grid.cs_style_1 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .cs_doctors_grid.cs_style_1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/*-------------------------------------------
 Doctor Details Page Styling
----------------------------------------------*/
.cs_doctor_details_wrapper {
  width: 100%;
  max-width: 1170px;
}

.cs_doctor_details_wrapper .cs_progress_bar_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 70px;
}

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

.doctors-glass .cs_readmore_wrap {
  margin-top: 40px;
}

.cs_doctor_details_thumbnail {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.cs_doctor_details_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_doctor_details_thumbnail .cs_doctor_thumbnail_shape1,
.cs_doctor_details_thumbnail .cs_doctor_thumbnail_shape2 {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0.5;
  -webkit-animation: scale-shape 5s linear infinite;
  animation: scale-shape 5s linear infinite;
}

.cs_doctor_details_thumbnail .cs_doctor_thumbnail_shape1 {
  left: -70px;
  top: -100px;
  z-index: 1;
}

.cs_doctor_details_thumbnail .cs_doctor_thumbnail_shape2 {
  left: -100px;
  top: -40px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.cs_doctor_details {
  width: 100%;
  padding-left: 60px;
}

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

.cs_doctor_details .cs_doctor_info_header {
  margin-bottom: 17px;
}

.cs_doctor_details .cs_doctor_title {
  font-size: 22px;
  margin-bottom: 3px;
}

.cs_doctor_details .cs_doctor_info_wrapper {
  width: 100%;
  border: 1px solid var(--border-color);
}

@media (max-width: 991px) {
  .cs_doctor_details .cs_doctor_info_wrapper {
    max-width: 100%;
  }
}

.cs_doctor_details .cs_doctor_info_row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--border-color);
}

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

.cs_doctor_details .cs_doctor_info_row:last-child {
  border-bottom: 0;
}

.cs_doctor_details .cs_doctor_info_row::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--border-color);
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 575px) {
  .cs_doctor_details .cs_doctor_info_row::after {
    display: none;
  }
}

.cs_doctor_details .cs_doctor_info_col {
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .cs_doctor_details .cs_doctor_info_col:first-child {
    border-bottom: 1px solid var(--border-color);
  }
}

@-webkit-keyframes scale-shape {
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-shape {
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
  18. Card
----------------------------------------------------------------*/
.cs_card.cs_style_1 {
  padding-bottom: 1px;
  position: relative;
}

.cs_card.cs_style_1 .cs_card_info_wrapper {
  width: 100%;
  max-width: 426px;
  padding: 30px;
  position: relative;
  margin-top: -70px;
}

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

.cs_card.cs_style_1 .cs_card_info_wrapper::after {
  content: "";
  width: 93%;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 575px) {
  .cs_card.cs_style_1 .cs_card_info_wrapper::after {
    width: 100%;
  }
}

.cs_card.cs_style_1 .cs_card_text {
  width: 100%;
  max-width: 370px;
  padding-left: 20px;
  padding-right: 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .cs_card.cs_style_1 .cs_card_text {
    padding-left: 0;
  }
}

.cs_card.cs_style_1 .cs_card_text::after {
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 480px) {
  .cs_card.cs_style_1 .cs_card_text::after {
    display: none;
  }
}

.cs_card.cs_style_1 .cs_card_index {
  width: 47px;
  height: 47px;
  background-color: var(--blue-color);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_1 .cs_card_title {
  font-size: 22px;
  margin-bottom: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_1 .cs_card_subtitle {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_1:hover .cs_card_info_wrapper:after {
  background-color: var(--blue-color);
}

.cs_card.cs_style_1:hover .cs_card_title,
.cs_card.cs_style_1:hover .cs_card_subtitle {
  color: var(--white);
}

.cs_card.cs_style_1:hover .cs_card_index {
  background-color: var(--accent-color);
}

.cs_card.cs_style_2 {
  padding: 10px 0 10px 10px;
  /* border: 1px solid var(--border-color); */
  border-radius: 10px;
}

@media (max-width: 991px) {
  .cs_card.cs_style_2 {
    padding: 10px 10px 40px 10px;
  }
}

.cs_card.cs_style_2 .cs_card_thumb img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_card.cs_style_2 .cs_card_text {
  max-width: 500px;
  margin-left: 30px;
}

.cs_card.cs_style_2 .cs_card_title {
  font-size: 30px;
  margin-bottom: 16px;
}

.cs_card.cs_style_2 .cs_card_subtitle {
  margin-bottom: 28px;
}

.cs_card.cs_style_2 .cs_list.cs_style_1 {
  margin-bottom: 35px;
}

.cs_card.cs_style_2 hr {
  margin-bottom: 40px;
}

.cs_card.cs_style_3 {
  min-height: 800px;
  overflow: hidden;
}

.cs_card.cs_style_3 .cs_solution_content {
  max-width: 550px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .cs_card.cs_style_3 .cs_solution_content {
    padding-right: 0;
    max-width: 100%;
  }
}

.cs_card.cs_style_3 .cs_section_heading.cs_style_1 {
  margin-bottom: 22px;
}

.cs_card.cs_style_3 .cs_solution_text {
  margin-bottom: 18px;
}

.cs_card.cs_style_3 .cs_solution_list_wrapper {
  margin-bottom: 42px;
}

.cs_card.cs_style_3 .cs_solution_thumbnail {
  height: 100%;
  min-height: 600px;
  width: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 991px) {
  .cs_card.cs_style_3 .cs_solution_thumbnail {
    width: 100%;
    position: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cs_card.cs_style_3 .cs_player_btn_2 {
  -webkit-transform: translate(-75px, -60px);
  transform: translate(-75px, -60px);
}

@media (max-width: 991px) {
  .cs_card.cs_style_3 .cs_player_btn_2 {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

.cs_card.cs_style_3 .cs_player_btn_wrapper {
  width: 150px;
  height: 150px;
  background-color: var(--white);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_card.cs_style_3 .cs_player_btn_wrapper {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    background-color: transparent;
  }
}

.cs_card.cs_style_3 .cs_video_open {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.cs_card.cs_style_3 .cs_player_btn_column {
  width: 40px;
  height: 330px;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  position: absolute;
  left: 50%;
  bottom: 70%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 20px;
  padding: 10px;
}

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

.cs_card.cs_style_3 .cs_player_btn_column div {
  width: 100%;
  height: 50%;
  background-color: var(--accent-color);
  border-radius: inherit;
  -webkit-animation: thermometer-animation 3s cubic-bezier(0.52, 1.64, 0.37, 0.66) infinite;
  animation: thermometer-animation 3s cubic-bezier(0.52, 1.64, 0.37, 0.66) infinite;
}

.cs_card.cs_style_3 .cs_solution_shape {
  left: 2%;
  bottom: -20px;
  width: 16%;
}

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

.cs_card.cs_style_4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.cs_card.cs_style_4 .cs_card_thumbnail {
  margin-bottom: -189px;
  margin-left: -50px;
}

@media (max-width: 1399px) {
  .cs_card.cs_style_4 .cs_card_thumbnail {
    margin-left: 0;
  }
}

@media (max-width: 1199px) {
  .cs_card.cs_style_4 .cs_card_thumbnail {
    margin-bottom: 0;
  }
}

.cs_card.cs_style_5 {
  position: relative;
}

@media (max-width: 1500px) {
  .cs_card.cs_style_5 {
    height: 450px;
  }
}

@media (max-width: 1200px) {
  .cs_card.cs_style_5 {
    height: 360px;
  }
}

.cs_card.cs_style_5 .cs_card_thumbnail {
  height: 100%;
  width: 100%;
}

.cs_card.cs_style_5 .cs_card_thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_card.cs_style_5 .cs_card_info_wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100% - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 30px;
  position: absolute;
  left: 50%;
  bottom: 45px;
  -webkit-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1599px) {
  .cs_card.cs_style_5 .cs_card_info_wrapper {
    width: 100%;
    max-width: calc(100% - 30px);
    bottom: 15px;
    -webkit-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 15px;
  }
}

.cs_card.cs_style_5 .cs_card_info_wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: rgba(0, 34, 97, 0.8);
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
}

@media (max-width: 1599px) {
  .cs_card.cs_style_5 .cs_card_info_wrapper::before {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }
}

.cs_card.cs_style_5 .cs_card_text {
  position: relative;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1599px) {
  .cs_card.cs_style_5 .cs_card_text {
    padding-left: 0;
  }

  .cs_card.cs_style_5 .cs_card_text::after {
    display: none;
  }
}

.cs_card.cs_style_5 .cs_card_text::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
}

.cs_card.cs_style_5 .cs_card_index {
  font-size: 28px;
  position: relative;
  z-index: 2;
}

.cs_card.cs_style_5 .cs_card_title {
  font-size: 22px;
}

.cs_card.cs_style_5 .cs_iconbox_btn {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--white);
  border: 5px solid var(--white);
  border-radius: 50%;
  position: absolute;
  top: -30px;
  right: -45px;
  font-size: 30px;
  z-index: 3;
}

@media (max-width: 1599px) {
  .cs_card.cs_style_5 .cs_iconbox_btn {
    width: 60px;
    height: 60px;
    position: initial;
    font-size: 22px;
    border-width: 3px;
  }
}

.cs_card.cs_style_5:hover .cs_card_info_wrapper {
  opacity: 1;
  -webkit-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

.cs_card.cs_style_6 {
  position: relative;
  padding: 50px 30px;
  background-color: var(--white);
  border-top: 5px solid var(--accent-color);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.cs_card.cs_style_6 .cs_card_shape {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 6px 6px 10px 10px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_6 .cs_card_thumbnail {
  width: 200px;
  height: 200px;
  border: 10px solid var(--white);
  -webkit-filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.07));
  border-radius: 50%;
  margin: -140px 0px 30px;
}

.cs_card.cs_style_6 .cs_card_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_card.cs_style_6 .cs_card_info,
.cs_card.cs_style_6 .cs_card_thumbnail {
  position: relative;
  z-index: 1;
}

.cs_card.cs_style_6 .cs_card_title {
  font-size: 22px;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_6 .cs_card_btn {
  width: 43px;
  height: 43px;
  background-color: var(--blue-color);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 50%;
  font-size: 18px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_6:hover .cs_card_btn {
  background-color: var(--accent-color);
  color: var(--white);
  border-color: var(--white);
}

.cs_card.cs_style_6:hover .cs_card_title,
.cs_card.cs_style_6:hover .cs_card_subtitle {
  color: var(--white);
}

.cs_card.cs_style_6:hover .cs_card_shape {
  opacity: 1;
}

.cs_card.cs_style_7 {
  max-height: 312px;
  background-color: #d8e6f3;
  position: relative;
  padding: 114px 40px 40px 40px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_thumbnail_wrapper {
  width: 257px;
  height: auto;
  position: absolute;
  top: -50px;
  right: -55px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .cs_card.cs_style_7 .cs_card_thumbnail_wrapper {
    width: 220px;
    top: -40px;
    right: -35px;
  }
}

.cs_card.cs_style_7 .cs_card_thumbnail {
  width: 257px;
  height: 257px;
  background-color: var(--white);
  border: 1px solid var(--heading-color);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .cs_card.cs_style_7 .cs_card_thumbnail {
    width: 220px;
    height: 220px;
  }
}

.cs_card.cs_style_7 .cs_thumbnail_shape {
  position: absolute;
  left: -15px;
  bottom: -15px;
}

.cs_card.cs_style_7 .cs_card_index {
  width: 65px;
  height: 65px;
  background-color: var(--white);
  font-size: 30px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_info_wrapper {
  max-width: 220px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_title {
  font-size: 22px;
  color: var(--heading-color);
  margin-bottom: 7px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_subtitle {
  margin-bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7 .cs_card_btn {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--accent-color);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  margin-top: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_card.cs_style_7:hover {
  padding: 68px 20px 40px 40px;
}

.cs_card.cs_style_7:hover .cs_card_overlay {
  opacity: 1;
}

.cs_card.cs_style_7:hover .cs_card_index {
  background-color: var(--accent-color);
  color: var(--white);
}

.cs_card.cs_style_7:hover .cs_card_title,
.cs_card.cs_style_7:hover .cs_card_subtitle {
  color: var(--white);
}

.cs_card.cs_style_7:hover .cs_card_btn {
  visibility: visible;
  opacity: 1;
}

.cs_card.cs_style_7:hover .cs_card_thumbnail_wrapper {
  visibility: hidden;
  opacity: 0;
}

.cs_card.cs_style_8 .cs_card_title {
  font-size: 22px;
  margin-bottom: 15px;
}

.cs_card.cs_style_8 .cs_card_subtitle {
  margin-bottom: 20px;
}

.cs_card.cs_style_8 .cs_progress_bar_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

/*--------------------------------------------------------------
  19. Card
----------------------------------------------------------------*/
.cs_tab_links.cs_style_1 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 991px) {
  .cs_tab_links.cs_style_1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

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

.cs_tab_links.cs_style_1 li {
  border-radius: 5px;
  position: relative;
  background-color: #f1f7fc;
  color: var(--heading-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cs_tab_links.cs_style_1 li::after {
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--blue-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, -10px) rotate(45deg);
  transform: translate(-50%, -10px) rotate(45deg);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .cs_tab_links.cs_style_1 li::after {
    display: none;
  }
}

.cs_tab_links.cs_style_1 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding-right: 40px;
  font-size: 23px;
  color: var(--heading-color);
  height: 69px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .cs_tab_links.cs_style_1 li a {
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li a {
    height: 60px;
  }
}

.cs_tab_links.cs_style_1 li a span {
  position: relative;
  z-index: 1;
  font-size: 20px;
}

.cs_tab_links.cs_style_1 li .cs_tab_link_icon {
  width: 70px;
  height: 100px;
  background-color: transparent;
  border-right: 2px solid transparent;
  border-radius: 30px 60px 60px 30px;
  margin-left: -2px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_tab_links.cs_style_1 li .cs_tab_link_icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_tab_links.cs_style_1 li.active {
  background-color: var(--blue-color);
}

.cs_tab_links.cs_style_1 li.active a {
  color: var(--white);
}

.cs_tab_links.cs_style_1 li.active::after {
  -webkit-transform: translate(-50%, 14px) rotate(45deg);
  transform: translate(-50%, 14px) rotate(45deg);
  opacity: 1;
}

.cs_tab_links.cs_style_1 li.active .cs_tab_link_icon {
  background-color: var(--accent-color);
  border-color: var(--white);
}

.cs_tab_links.cs_style_1 li.active .cs_tab_link_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li.active .cs_tab_link_icon {
    background-color: inherit;
    border: none;
  }
}

.cs_tab_links.cs_style_1 li:hover {
  background-color: var(--blue-color);
  color: var(--white);
}

.cs_tab_links.cs_style_1 li:hover a {
  color: var(--white);
}

.cs_tab_links.cs_style_1 li:hover::after {
  -webkit-transform: translate(-50%, 10px) rotate(45deg);
  transform: translate(-50%, 10px) rotate(45deg);
  opacity: 1;
}

.cs_tab_links.cs_style_1 li:hover .cs_tab_link_icon {
  background-color: var(--accent-color);
  border-color: var(--white);
}

.cs_tab_links.cs_style_1 li:hover .cs_tab_link_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li:hover .cs_tab_link_icon {
    background-color: inherit;
    border: none;
  }
}

@media (max-width: 1399px) {
  .cs_tab_links.cs_style_1 {
    gap: 15px;
  }
}

/*--------------------------------
 Tab styling
 -------------------------------*/
.cs_tab {
  display: none;
}

.cs_tab.active {
  display: block;
}

/*--------------------------------
 Extra css
 -------------------------------*/
.cs_hero.cs_style_1 .cs_hero_text {
  background-color: inherit;
  padding: inherit;
  border-radius: inherit;
  position: inherit;
}

.cs_tab_links.cs_style_1 li a span {
  font-size: 19px;
}

.cs_card.cs_style_2 .cs_card_text {
  max-width: 530px;
}

.cs_card.cs_style_2 .cs_card_title {
  font-size: 27px;
}

.home_form_area .cs_form_field {
  background-color: #fff;
}


.cs_top_header_in {
  display: flex;
  width: 100%;
}

.cs_header_contact_list.right-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.cs_header_contact_list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs_header_contact_list a {
  color: #053275;
  text-decoration: none;
  font-size: 15px; 	
}

.cs_header_contact_list.right-end li i {
  color: #053275;
}

.cs_site_branding img {
  width: 150px;
  height: auto;
  object-fit: contain;
  position: absolute;
  /* z-index: 999; */
  z-index: 2;
  top: 5px;
}

.container {
  max-width: 1500px;
}

.cs_experience_image {
  max-width: 80%;
  height: auto;
  display: block;
  border-radius: 50%;
  border: 10px solid #fff;
}

.cs_readmore_wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.cs_readmore_btn {
  position: relative;
  display: inline-block;
  padding: 8px 15px;
  background: linear-gradient(to bottom,
      #053275 -100%,
      #0097b2 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.cs_readmore_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #053275;
  transition: all 0.4s ease;
  z-index: -1;
}

.cs_readmore_btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  background: #053275;
  transition: all 0.4s ease;
  z-index: -1;
}

.cs_readmore_btn:hover::before,
.cs_readmore_btn:hover::after {
  width: 50%;
  height: 100%;
}

.cs_readmore_btn:hover {
  color: #fff;
}

.cs_iconbox_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.cs_iconbox_col {
  display: flex;
  justify-content: center;
}

.cs_iconbox_icon img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.cs_height_120 {
  height: 0;
}

.cs_height_110 {
  height: 45px;
}

.cs_appointment_image img {
  width: 100%;
  border-radius: 12px;
}

.cs_appointment_form_wrapper {
  background: rgba(255, 255, 255, 0.08);
  padding: 45px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.cs_appointment_form .cs_form_group {
  margin-bottom: 20px;
}

.app-btn {
  text-align: center;
}

.cs_appointment_form input,
.cs_appointment_form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 14px;
}

.cs_appointment_form .cs_btn {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .cs_appointment_image {
    text-align: center;
  }

  .cs_appointment_image img {
    max-width: 380px;
  }
}

.cs_custom_shape_bg {
  position: relative;
  background: #f4f7fa;
  overflow: hidden;
}

.cs_custom_shape_bg {
  position: relative;
  overflow: hidden;
}

.cs_custom_shape_bg::before {
  content: "";
  position: absolute;
  top: -59px;
  right: -110px;
  width: 500px;
  height: 400px;
  background: #253f6d;
  border-radius: 50%;
  z-index: 0;
  display: none;
  animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }

  50% {
    transform: translateY(-25px) translateX(10px) rotate(3deg);
  }

  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}


.cs_custom_shape_bg::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: 400px;
  width: 300px;
  height: 300px;
  background: #0b2a5a;
  border-radius: 50%;
  z-index: 0;
  display: none;
}

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

.cs_choose_image {
  text-align: right;
}

.cs_choose_image img {
  width: 600px;
  height: 530px;
  margin-bottom: -175px;
  margin-right: -55px;
}

.hospital-services-alt {
  background: linear-gradient(135deg, #f4f8fc, #ffffff);
}

.service-heading .sub-title {
  display: inline-block;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-heading h2 {
  font-size: 36px;
  font-weight: 700;
}

.service-box {
  background: #fff;
  border-radius: 25% 0 25% 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hospital-services-alt .cs_section_heading {
  margin-bottom: 20px;
}

.hospital-services-alt .cs_readmore_wrap {
  margin-top: 40px;
}

.cs_form_row {
  display: flex;
  gap: 15px;
}

.cs_form_row .cs_form_group {
  flex: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cs_form_row {
    flex-direction: column;
  }
}

.service-info {
  padding: 15px;
  text-align: center;
  /* background: linear-gradient(45deg, #002261, rgba(13, 110, 253, 0.25)); */
  background: linear-gradient(45deg, #68bfe9, #0f499e);
}

.service-info h4 {
  font-size: 23px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 500;
  /* text-shadow: 0px 2px #000; */
}

.service-info p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}

.service-info a {
  color: #0d6efd;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 991px) {
  .service-heading h2 {
    font-size: 28px;
  }
}

.shape1 {
  position: relative;
  z-index: 0;
}

.shape1 img {
  position: absolute;
  bottom: -80px;
  width: 270px;
}

.testimonials-style-2 {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  padding: 50px 0;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-subtitle {
  display: inline-block;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonials-title {
  font-size: 38px;
  font-weight: 700;
}

.testimonial-wrapper {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.8s ease;
}

.testimonial-card {
  min-width: calc(50% - 15px);
  background: rgba(13, 110, 253, 0.25);
  padding: 45px 40px;
  border-radius: 16px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 70px;
  color: #cf3d3f;
  font-family: serif;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
  color: #383e44;
  margin-bottom: 20px;
  margin-top: 10px;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 21px;
  color: #cf3d3f;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 17px;
  color: #043174;
  font-weight: 600;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
  }

  .testimonials-title {
    font-size: 28px;
  }
}

.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px 0;
  border-top: 2px solid #960505;
  margin-top: 15px;
}

.cs_footer_copyright {
  color: #ffffff;
  font-size: 16px;
}

.social-fixed {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* z-index: 999; */
  z-index: 2;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: translateX(-6px) scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.facebook {
  background: #1877f2;
}

.instagram {
  background: radial-gradient(circle at 30% 110%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
}

.twitter {
  background: #000000;
}

.youtube {
  background: #ff0000;
}

@media (max-width: 768px) {
  .social-fixed {
    right: 10px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

.cs_footer_widget_nav_list li {
  transition: transform 0.3s ease;
}

.cs_footer_widget_nav_list li:hover {
  transform: translateX(10px);
}

.cs_footer_widget_nav_list li a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  transition: color 0.3s ease;
}

.cs_footer_widget_nav_list li:hover a {
  color: #05a3b8;
}

.cs_footer_widget_nav_list li i {
  transition: margin-right 0.3s ease, color 0.3s ease;
}

.cs_footer_widget_nav_list li:hover i {
  margin-right: 10px;
  color: #05a3b8;
}

.doctors-modern {
  padding: 50px 0;
  background: #f8fafc;
}

.section-header span {
  color: #00bcd4;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-header h2 {
  font-size: 36px;
  margin-top: 10px;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 20px;
}

.doctor-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  height: 380px;
}

.doctor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.doctor-card:hover img {
  transform: scale(1.1);
}

.doctor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 188, 212, 0.95),
      rgba(0, 60, 90, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.doctor-card:hover .doctor-overlay {
  opacity: 1;
}

.doctor-info {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-info {
  transform: translateY(0);
}

.doctor-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.designation {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.specialization {
  font-size: 15px;
  margin-top: 6px;
  font-weight: 600;
}

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

@media (max-width: 575px) {
  .doctors-grid {
    grid-template-columns: 1fr;
  }
}

.quote-icon {
  font-size: 50px;
  color: #00bcd4;
  margin-bottom: 15px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  margin-top: 25px;
  gap: 15px;
}

.testimonial-client img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.client-info span {
  font-size: 13px;
  color: #777;
}

.banner-new {
  position: relative;
  min-height: 90vh;
  background: #0b3a55;
  overflow: hidden;
}

.banner-new-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(7, 40, 63, 0.95),
      rgba(7, 40, 63, 0.75)),
    url("assets/img/eye-bg.jpg") center / cover no-repeat;
  z-index: 0;
}

.banner-new-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 90vh;
  gap: 60px;
}

.banner-new-content {
  width: 55%;
  color: #fff;
}

.banner-new-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.banner-new-content h1 span {
  color: #36c6d3;
}

.banner-new-content p {
  max-width: 520px;
  margin: 25px 0 35px;
  font-size: 16px;
  line-height: 1.7;
  color: #d9edf3;
}

.banner-new-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #0cb8c5;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-new-btn:hover {
  background: #099aa5;
  transform: translateY(-2px);
}

.banner-new-image {
  width: 45%;
  display: flex;
  justify-content: center;
}

.banner-new-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.banner-new-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.banner-new-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 140px;
  background: #f5f9fc;
  border-top-left-radius: 120px;
  z-index: 1;
}

@media (max-width: 991px) {
  .banner-new-wrap {
    flex-direction: column;
    text-align: center;
    padding-top: 80px;
  }

  .banner-new-content,
  .banner-new-image {
    width: 100%;
  }

  .banner-new-content h1 {
    font-size: 38px;
  }

  .banner-new-circle {
    width: 320px;
    height: 320px;
  }
}

.hero-banner {
  position: relative;
  background-image: url(../img/bg-3.png);
  background-size: cover;
  background-position: center;
  padding: 101px 0 100px;
  overflow: hidden;
}

/* DARK SHADOW OVERLAY */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0022617d;
  z-index: 0;
}

/* KEEP CONTENT ABOVE OVERLAY */
.hero-banner>* {
  position: relative;
  z-index: 1;
}


.hero-container {
  max-width: 1430px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

/* LEFT CONTENT */
.hero-content {
  color: #fff;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 5px #000;
}

.hero-content h1 span {
  color: #0097b2;
}

.hero-content p {
  font-size: 16px;
  color: #cfd9e6;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #2fd1c5;
  color: #002b3d;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #25b6ab;
}

/* RIGHT IMAGE */
.hero-image {
  position: relative;
}

/* HERO IMAGE CONTAINER */
.hero-image {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* CIRCLE MASK */
.image-circle {
  border-radius: 50%;
  overflow: hidden;
  /* IMPORTANT */
  /* background: #fff;
  border: 10px solid #fff; */
}

.image-slider img {
  width: 33.3333%;
}

/* SLIDER */
.image-slider {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

/* SLIDER IMAGES */
.image-slider img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/* OPTIONAL FLOAT EFFECT */
/* .image-slider img {
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
} */

/* DOTS */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd8dc;
  cursor: pointer;
}

.hero-dots span.active {
  background: #0c479d;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero-image,
  .image-circle {
    width: 280px;
    height: 280px;
  }
}

.image-circle {
  width: 630px;
  height: 630px;
  border-radius: 50%;
  margin-right: 0px;
}

.image-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 15px solid #fff;
}

/* DOT INDICATORS */
.hero-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots span {
  width: 12px;
  height: 12px;
  background: #8faedb;
  border-radius: 50%;
  opacity: 0.5;
}

.hero-dots span.active {
  background: #2fd1c5;
  opacity: 1;
}

/* CURVED WAVE */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .image-circle {
    width: 280px;
    height: 280px;
  }
}

/* Section */
.doctors-glass {
  padding: 50px 0;
  background-image: url(../img/revive/bg-shape-full.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-head .subtitle {
  color: #0d6efd;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 700;
}

.section-head h2 span {
  color: #0d6efd;
}

/* Grid */
.doctor-wrapper {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.doctor-box {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
  border-bottom: 2px solid #0097b2;
}

.doctor-box:hover {
  border-radius: 18px;
  transform: translateY(-10px);
}

.doctor-box:hover a {
  text-decoration: underline;
}

.doctor-img {
  border-radius: 18px;
  text-align: center;
}

/* Image */
.doctor-img img {
  width: 60%;
  /* height: 360px; */
  object-fit: cover;
  transition: transform 0.6s ease;
}

.doctor-content a {
  font-size: 16px;
  color: #0097b2;
}

/* DEFAULT: Glass Content */
.doctor-content {
  /* position: absolute; */
  bottom: 0px;
  left: 15px;
  right: 15px;
  padding: 5px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  text-align: center;
  z-index: 2;
  transition: all 0.4s ease;
}

.doctor-content h3 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  color: #053275;
  margin-bottom: 10px;
}

.doctor-content span {
  font-size: 14px;
  color: #0d6efd;
}

.doctor-content p {
  font-size: 16px;
  color: #555;
  margin-top: 6px;
}

/* HOVER: Alternate Style */
.doctor-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #061f4d5e;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

.doctor-box:hover::before {
  opacity: 1;
}

/* 
.doctor-box:hover img {
  transform: scale(1.1);
} */

.doctor-box:hover .doctor-content {
  background: transparent;
  /* backdrop-filter: none; */
  transform: translateY(-25px);
}

.doctor-box:hover .doctor-content h3,
.doctor-box:hover .doctor-content span,
.doctor-box:hover .doctor-content p {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .section-head h2 {
    font-size: 28px;
  }
}


.testimonials-boxed {
  padding: 25px 0 60px;
  margin-top: 0px;
  background: linear-gradient(135deg, #f5faff, #eef3f9);
}

/* Heading */
.section-head .subtitle {
  color: #0d6efd;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 700;
}

.section-head h2 span {
  color: #0d6efd;
}

/* Slider */
.testimonial-slider {
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* Slide */
.testimonial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* Card */
.testimonial-card {
  position: relative;
  padding: 40px 30px 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Accent */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #2ea6f7, #dc3545);
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(13, 110, 253, 0.25);
}

/* Quote */
.testimonial-card .quote {
  position: absolute;
  top: 27px;
  right: 25px;
  font-size: 80px;
  color: #cf3d3f;
  font-family: serif;

}

/* Text */
.testimonial-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* Client */
.client {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.client img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.testimonial-card:hover .client img {
  transform: scale(1.1);
}

.client h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.client span {
  font-size: 14px;
  color: #555;
}

/* Controls */
.slider-controls {
  margin-top: 40px;
  text-align: center;
  display: none;
}

.slider-controls button {
  background: none;
  border: none;
  font-size: 32px;
  color: #0d6efd;
  margin: 0 15px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-slide {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 28px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 90px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  /* z-index: 9999; */
  z-index: 2;
  transition: 0.3s ease;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 22px 45px rgba(37, 211, 102, 0.6);
}

/* Floating animation */
.floating {
  animation: floatY 3s ease-in-out infinite;
}

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: pulseRing 2s infinite;
  z-index: -1;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}

.hospital-departments {
  padding: 40px 0 40px;
}

.dept-head {
  text-align: center;
  margin-bottom: 50px;
}

.dept-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: #102a43;
}

.dept-head p {
  font-size: 16px;
  color: #6b7c93;
  margin-top: 8px;
}

/* Card */
.dept-image-card {
  position: relative;
  height: 340px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
}

.dept-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Overlay */
.dept-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  padding: 22px;
  background: linear-gradient(0deg, #0c479d, rgb(12 71 157 / 58%));
  color: #fff;
  text-align: center;
}

.dept-overlay h3 {
  font-size: 18px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

.dept-overlay p {
  font-size: 16px;
  margin-top: 6px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

/* Hover Effects */
.dept-image-card:hover img {
  transform: scale(1.08);
}

.dept-image-card:hover {
  transform: translateY(-10px);
}

.dept-image-card:hover .dept-overlay p {
  max-height: 80px;
  opacity: 1;
}

/* Swiper */
.dept-image-slider {
  padding-bottom: 50px;
}

.swiper-pagination-bullet {
  background: #0d6efd;
}

/* Responsive */
@media (max-width: 768px) {
  .dept-head h2 {
    font-size: 28px;
  }

  .dept-image-card {
    height: 300px;
    margin-right: 30px;
    margin-left: 30px;
    margin-top: 20px;
  }

  .image-circle {
    display: none;
  }

  .cs_cta.cs_style_1 {
    display: none;
  }

  .hero-content h1 {
    font-size: 30px;
    margin-top: 170px;
  }

  .hero-banner {
    height: 70vh;
  }

  .cs_about.cs_style_1 .cs_about_thumb_1 img {
    display: none;
  }

  .cs_about.cs_style_1 .cs_about_thumb {
    display: none;
  }

  .cs_about_content {
    margin-top: -60px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .cs_section_heading.cs_style_1 .cs_section_title {
    font-size: 22px;
    text-align: center;
  }


  .cs_iconbox_grid {
    display: block;
  }

  .cs_iconbox_col {
    display: block;
    margin-left: 15px;
  }

  .cs_section_heading.cs_style_1 .cs_section_subtitle {
    margin-left: 20px;
  }

  .cs_height_110 {
    height: 0px;
  }

  .cs_service_wrapper {
    margin-left: 15px;
    margin-right: 22px;
  }

  .service-box {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 20px;
  }

  .shape1 img {
    display: none;
  }

  .cs_appointment_image img {
    margin-top: 30px;
  }

  .doctors-glass {
    background-image: none;
    padding: 40px 0;

  }

  .doctor-box {
    margin-right: 15px;
    margin-left: 15px;
  }

  .doctor-wrapper {
    margin-top: 20px;
  }

  .cs_footer_logo {

    margin-top: 35px;
    margin-left: 30px;
  }

  .cs_footer_widget {
    padding: 0;
    margin-left: 25px;
  }

  .cs_footer_logo {
    padding-bottom: 0px;
  }

  .cs_footer_row .cs_footer_col {

    margin-top: -25px;
  }

  .cs_footer_widget_nav_list li i {
    margin-right: 10px;
  }

  .testimonial-slider {
    margin-top: 0px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

.cs_nav .cs_nav_list>li {
  border-right: 1px solid #000;
}

.hospital-departments .cs_section_heading {
  margin-bottom: 20px;
}

.contact-footer ul li {
  font-size: 18px;
}

.hospital-departments-inner .card {
  border: none;
  border-radius: 22px;
}

.hospital-departments-inner {
  padding-bottom: 60px;
}

.hero-banner-inner {
  position: relative;
  background-image: url(../img/revive/inner-banner.png);
  background-size: cover;
  background-position: center;
  padding: 50px 0 50px;
  overflow: hidden;
  height: 600px;
  display: flex;
}

/* DARK SHADOW OVERLAY */
.hero-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0022615e;
  z-index: 0;
}

/* KEEP CONTENT ABOVE OVERLAY */
.hero-banner-inner>* {
  position: relative;
  z-index: 1;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
}

/* COMMON */
.box-header {
  background: #1b2a52;
  color: #fff;
  padding: 15px;
  font-size: 22px;
  text-align: center;
  font-weight: 600;
}

/* LEFT */
.contact-info {
  flex: 1;
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #ddd;
}

.info-box {
  padding: 15px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.info-box:nth-child(2n) {
  border-right: none;
}

.info-box i {
  font-size: 28px;
  color: #c5161d;
  margin-bottom: 10px;
}

.info-box h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #1b2a52;
}

.info-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* RIGHT */
.contact-form {
  flex: 1;
  background: #e3e3e3;
}

.contact-container form {
  padding: 48px 30px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group.full {
  width: 100%;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
}

textarea {
  min-height: 100px;
  resize: none;
}

label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}


small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #555;
}

.submit-btn {
  background: #1b2a52;
  color: #fff;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.submit-btn i {
  margin-left: 5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-box {
    border-right: none;
  }

  .form-row {
    flex-direction: column;
  }
}

.contact-btn {
  text-align: center;
}

.about-inner .cs_about_thumb {
  float: left;
  margin-bottom: 50px;
}

.department-details-img {
  float: left;
  margin-right: 30px;
}

.department-details-img img {
  width: 400px;
  height: auto;
}

.department-details-content p {
  font-size: 17px;
  line-height: 33px;
  text-align: justify;
}

.profile-btn {
  padding: 6px;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  background-color: #c5161d;
}

.profile-btn:hover {
  color: #3fa6d8;
}


.top-search {
  margin-right: 5px;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap input {
  width: 220px;
  padding: 2px 30px 2px 10px;
  /* space for icon */
  border: 1px solid #053275;
  border-radius: 20px;
  background: transparent;
  color: inherit;
  font-size: 14px;
  outline: none;
}

.search-btn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #0d4574;
  cursor: pointer;
  padding: 0;
}

/* Optional hover */
.search-btn:hover {
  opacity: 0.8;
}

.affiliation-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  /* flex-wrap: wrap; */
}

.affiliation-item {
  /* display: flex; */
  align-items: center;
  gap: 18px;
  padding: 20px 30px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.affiliation-item:hover {
  border-color: #1f2933;
  background-color: #f9fafb;
}

.affiliation-item img {
  object-fit: contain;
}

.affiliation-item span {
  font-size: 16px;
  color: #374151;
  font-weight: 500;
  white-space: nowrap;
}

.naina-highlights {
  padding: 20px 0px;
}



.highlights-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.highlight-item {
  text-align: center;
}

.highlight-image {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 25px;
}

.highlight-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.highlight-item:hover img {
  transform: scale(1.05);
}

.highlight-item h4 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 12px;
}

.highlight-item p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .highlights-wrapper {
    grid-template-columns: 1fr;
  }

  .highlight-image img {
    height: 240px;
  }
}

.main-footer {
  /* background: #3368a7; */
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 20px 20px 5px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

/* Navigation menu */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav .border-right {
  border-right: none;
}

/* Legal links */
.legal-links a {
  color: #dbe7f2;
  text-decoration: none;
  font-size: 19px;
  transition: .3s;
  font-weight: 600;
}

.legal-links a:hover {
  color: #f37538;
}

.legal-links span {
  margin: 0 6px;
  color: #fff;
}

/* Copyright */
.footer-row .copyright {
  margin-top: 10px;
}

.copyright a {
  color: #fff;
}

.copyright a:hover {
  color: #f37538;
}

.main-footer .copyright {
  border-top: 1px solid #fff;
  margin-bottom: 5px;
  padding-top: 10px;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  font-family: arial narrow;
}

.footer-nav li {
  display: inline-block;
  margin: 0 12px;
  border-right: 2px dashed #fff;
}

.footer-nav li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  margin-right: 30px;
}

.footer-nav li a:hover {
  color: #ffffff;
}

.footer-signup-form {
  width: 50%;
}

.footer-signup-modern span {
  color: #fff;
  font-size: 15px;
}

.signup-cta i {
  font-size: 15px;
  color: #fff;
  transition: transform 0.3s ease;
}



.signup-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
}

.signup-input-group input {
  flex: 1;
  padding: 8px 14px;
  border-radius: 8px;
  color: #fff !important;
  font-size: 15px !important;
  border: 2px solid #fff !important;
}

.signup-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 5px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: transparent;
}

.president-message {
  padding: 40px 0px 40px;
  background: url(../img/wave.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 40px;
}

.pm-container {
  max-width: 1430px;
  margin: auto;
  display: flex;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.pm-image img {
  border-radius: 22px;
  object-fit: cover;
  width: 800px;
  margin-bottom: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pm-content {
  background: #ffffff;
  padding: 0px 45px 30px 0;
  border-radius: 22px;
}

.pm-content .cs_readmore_wrap {
  justify-content: flex-end;
}

.president-message .cs_section_heading {
  margin-bottom: 20px;
}

.pm-image {
  text-align: center;
}

.pm-content p {
  font-size: 17px;
  text-align: justify;
  line-height: 33px;
}

.pm-image-info h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 4px;
}

.pm-image-info span {
  font-size: 14px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 900px) {
  .pm-container {
    grid-template-columns: 1fr;
  }

  .pm-content {
    padding: 40px 30px;
  }
}

/* .hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

/* Primary Button */
.hero-buttons .btn {
  background: linear-gradient(to bottom,
      #053275 -100%,
      #0097b2 100%);
  color: #ffffff;
}

.hero-buttons .btn:hover {
  background: linear-gradient(to top,
      #053275 0%,
      #0097b2 100%);
}


/* Responsive */
@media (max-width: 768px) {
  .hero-buttons {
    justify-content: center;
  }
}

.main-slider-two {
  margin-top: 0;
  z-index: 1;
}

.main-slider-two .swiper-container {
  height: 700px;
}

.main-slider-two .swiper-slide {
  position: relative;
  overflow: hidden;
}

.main-slider-two .container {
  position: relative;
  padding-top: 175px;
  padding-bottom: 170px;
  z-index: 30;
  padding-left: 175px;
}

.main-slider-two-bg-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.main-slider-two-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -1px;
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
  animation: zoomInOut 12s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.main-slider-two .swiper-slide-active .main-slider-two-image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider-two-shape-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 2;
}

.main-slider-two-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  z-index: 2;
  bottom: 0;
}


.main-slider-two-shape-2 {
  position: absolute;
  top: 55px;
  left: 90px;
  bottom: 0;
  right: 0px;
  opacity: .30;
  z-index: 2;
}

.main-slider-two-bubble-1 {
  position: absolute;
  top: 120px;
  left: 130px;
  opacity: .70;
  z-index: 3;
}

.main-slider-two-bubble-1 img {
  width: auto;
}

.main-slider-two-bubble-2 {
  position: absolute;
  top: 66px;
  left: 138px;
  opacity: .70;
  z-index: 2;
}

.main-slider-two-bubble-2 img {
  width: auto;
}

.main-slider-two-bubble-3 {
  position: absolute;
  bottom: 104px;
  left: 235px;
  z-index: 2;
}

.main-slider-two-bubble-3 img {
  width: auto;
}

.main-slider-two-bubble-4 {
  position: absolute;
  top: 96px;
  right: 250px;
  opacity: .70;
  z-index: 2;
}

.main-slider-two-bubble-4 img {
  width: auto;
}

.main-slider-two-bubble-5 {
  position: absolute;
  right: 50px;
  bottom: 260px;
  opacity: .70;
  z-index: 2;
}

.main-slider-two-bubble-5 img {
  width: auto;
}

.main-slider-two-bubble-6 {
  position: absolute;
  bottom: 104px;
  right: 192px;
  opacity: .70;
  z-index: 2;
}

.main-slider-two-bubble-6 img {
  width: auto;
}

.main-slider-two-bubble-7 {
  position: absolute;
  right: 150px;
  bottom: 60px;
  opacity: .70;
  z-index: 3;
}

.main-slider-two-bubble-7 img {
  width: auto;
}

.main-slider-two-bubble-8 {
  position: absolute;
  right: 83%;
  top: 35%;
  margin-top: -15px;
  opacity: 1;
  z-index: 3;
}

.main-slider-two-bubble-8 img {
  width: 250px;
}


.main-slider-two__content {
  position: relative;
  display: block;
  text-align: left;
  margin-top: 50px;
}

.main-slider-two__sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--brote-white);
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__sub-title:before {
  position: absolute;
  top: 14px;
  left: -40px;
  height: 5px;
  width: 30px;
  content: "";
  background-color: var(--brote-primary);
  border-radius: 2px;
}

.main-slider-two__title {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  line-height: 71px;
  margin-top: 9px;
  margin-bottom: 27px;
  letter-spacing: -0.04em;
  opacity: 0;
  text-shadow: 2px 2px 5px black;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-8px) translateZ(0);
  }

  50% {
    transform: translateX(8px) translateZ(0);
  }

  100% {
    transform: translateX(-8px) translateZ(0);
  }
}

/* Apply the animation */
.float-bob-x {
  display: inline-block;
  /* ensures transform behaves nicely */
  will-change: transform;
  /* hint for smoother animation */
  animation-name: float-bob-x;
  animation-duration: 4s;
  /* full cycle duration */
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  /* Make it feel lighter on mobile */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* -------------------------------------------
   Float (bob) on Y axis — smooth up & down
   ------------------------------------------- */
@keyframes float-bob-y {
  0% {
    transform: translateY(-8px) translateZ(0);
  }

  50% {
    transform: translateY(8px) translateZ(0);
  }

  100% {
    transform: translateY(-8px) translateZ(0);
  }
}

/* Base floating animation */
.float-bob-y {
  display: inline-block;
  will-change: transform;
  animation-name: float-bob-y;
  animation-duration: 4s;
  /* full up-down cycle */
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.callback-caption {
  font-size: 18px;
  color: #ffffff;
  margin-top: 15px;
  line-height: 1.6;
}

.slider-one__layer {
  position: absolute;
  bottom: 35%;
  left: 70%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 99;
}

.caption-box h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 600;
}

.caption-box p {
  color: #ffffff;
  font-size: 18px;
  margin-top: 8px;
}

.slider-one__layer .caption-box .text-theme {
  color: #0097b2 !important;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.7);
}

.slider-one__layer .caption-box .text-title {
  color: #fff !important;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.7);
}



/* Container for buttons */
.caption-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* position: absolute; */
  /* matches the inline positioning */
  left: 300px;
  top: 450px;
  flex-wrap: wrap;
  /* ensures buttons wrap on smaller screens */
}

/* Common styles for all buttons */
.caption-buttons button {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom,
      #053275 0%,
      #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.caption-buttons button:hover {
  background: linear-gradient(to top,
      #053275 0%,
      #0097b2 100%);
}

/* Primary button */


/* Responsive adjustments */
@media (max-width: 768px) {
  .caption-buttons {
    left: 50px;
    top: 420px;
    flex-direction: column;
    gap: 15px;
  }
}

/* Ticker layout with heading */
.ticker-container {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #053275;
  padding: 0;
}

/* News Head */
.news-head {
  background-color: #0097b2;
  /* background: linear-gradient(to bottom, #053275 -100%, #0097b2 100%); */
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  white-space: nowrap;
  font-size: 14px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ticker wrapper */
.ticker-wrapper {
  overflow: hidden;
  flex: 1;
}

.affiliations-classic {
  margin-top: 15px;
}

/* Ticker text */
.ticker {
  display: inline-flex;
  gap: 30px;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  font-weight: 500;
  color: #fff;
}

/* Animation */
@keyframes ticker-scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 1366px) {
  .container {
    max-width: 1140px;
  }

  .cs_nav .cs_nav_list>li>a {
    padding: 0px 10px 0px 0;
    font-size: 16px;
  }

  .cs_site_branding img {
    width: 120px;
    top: 18px;
  }

  .main-slider-two .swiper-container {
    height: 480px;
  }

  .slider-one__layer .caption-box .text-title {
    font-size: 40px !important;
  }

  .ticker span {
    font-size: 14px;
  }

  .caption-buttons button {
    padding: 4px 20px !important;
    font-size: 15px !important;
  }

  .cs_about.cs_style_1 .cs_about_text {
    line-height: 30px;
    font-size: 16px;
  }

  .cs_section_heading.cs_style_1 .cs_section_subtitle {
    font-size: 30px;
  }

  .cs_about.cs_style_1 .cs_about_thumb_1 img {
    width: 320px;
  }

  .cs_about.cs_style_1 .cs_about_thumb_2 {
    bottom: -35px;
  }

  .cs_readmore_btn {
    padding: 5px 10px;
    font-size: 15px;
  }

  .president-message {
    margin-top: 0;
  }

  .pm-container {
    max-width: 1140px;
  }

  .pm-content {
    padding-left: 0;
    padding-right: 30px;
  }

  .president-message .cs_readmore_wrap {
    margin-top: 0;
  }

  .pm-content p {
    font-size: 16px;
    line-height: 30px;
  }

  .dept-overlay h3 {
    font-size: 18px;
  }

  .dept-overlay p {
    font-size: 15px;
  }

  .dept-image-card {
    height: auto;
  }

  .affiliation-item img {
    width: 230px;
  }

  .affiliation-item h5 {
    margin-bottom: 10px;
  }

  .doctor-wrapper {
    gap: 20px;
  }

  .doctor-content h3 {
    font-size: 16px;
    line-height: 25px;
  }

  .footer-nav li a {
    font-size: 15px;
    margin-right: 20px;
  }

  .footer-nav li {
    margin: 0 12px 0 5px;
  }

  .main-footer .copyright {
    font-size: 15px;
  }

  .signup-input-group input {
    padding: 4px 14px;
    font-size: 14px !important;
  }

  .signup-input-group {
    padding-bottom: 6px;
  }

}

.cs_about_content .cs_section_heading .sub-head-about {
  font-size: 22px;
  color: #d85c23;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.menu-item-has-children .sub-dropdown {
  right: 100%;
}

.about-inner-image {
  float: left;
  margin-bottom: 40px;
}

.about-inner-section .cs_section_heading {
  text-align: center;
}

.about-inner-section .sub-head-about {
  text-align: left;
}

.main-slider-two-inner .main-slider-two-image-layer {
  width: 100%;
  bottom: 0;
  animation: none;
}

.main-slider-two-inner .slider-one__layer {
  position: absolute;
  bottom: 35%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 99;
}

.main-slider-two-inner {
  height: 550px;
}

.main-slider-two-inner .swiper-container {
  height: 550px;
}

.main-footer .copyright p {
  margin-bottom: 0;
}

.president-img {
  text-align: center;
}

.president-img img {
  width: 170px;
}

.past-president-inner-section .card-body {
  padding-bottom: 8px;
}


/* Popup overlay */
.bio-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  /* higher than sticky header */
  display: none;
  align-items: center;
  justify-content: center;
}

.bio-popup {
  background: #fff;
  max-width: 900px !important;
  width: 90%;
  max-height: 85vh;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  z-index: 1000000;
  /* above overlay */
  overflow-y: auto;
}

.bio-popup p {
  text-align: justify;
  font-size: 16px;
}

.bio-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

body.bio-popup-open {
  overflow: hidden;
}



.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.tab-btn {
  border: none;
  background: #fff;
  color: #053275;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  padding: 8px 15px;
  background: linear-gradient(to bottom, #053275 -100%, #0097b2 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.tab-content {
  display: none;
  animation: fadeUp 0.6s ease;
}

.tab-content.active {
  display: block;
}

.tabs button {
  border: none;
}

.gallery-section .card {
  border: none;
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  border: none;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.12);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Video Play Icon */
.video .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.video:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vmv-clean {
  padding-bottom: 50px;
}

.vmv-row {
  align-items: stretch;
}

.vmv-box {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmv-box::after {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d85c23, #ff9f43, transparent);
  animation: borderRun 2s linear infinite;
}

@keyframes borderRun {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.vmv-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.vmv-box h3 {
  color: #053275;
}

/* Push content nicely */
.vmv-box p {
  margin-bottom: 15px;
  text-align: justify;
  line-height: 30px;
}

.vmv-list {
  margin-top: auto;
  /* THIS balances layout */
  padding-left: 18px;
}

.vmv-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #475569;
}

.history-content {
  border-radius: 15px;
  border-left: 2px solid #ff9f43;
  padding-left: 30px;
}

.history-content p {
  font-size: 17px;
  text-align: justify;
  line-height: 30px;
}

.naina-founders {
  padding-top: 20px;
}

.naina-founders h3 {
  color: #053275;
  text-align: center;
}

.naina-founders p {
  text-align: justify;
  font-size: 17px;
  line-height: 30px;
}

.naina-birth {
  padding-top: 40px;
}

.naina-birth h3 {
  color: #053275;
  text-align: center;
}

.naina-birth p {
  text-align: justify;
  font-size: 17px;
  line-height: 30px;
}

.naina-birth .birth-img {
  float: left;
  margin-right: 30px;
}

.naina-past-years {
  padding-top: 40px;
}

.naina-past-years h3 {
  color: #053275;
  text-align: center;
}

.naina-past-years .card {
  border: none;
}

.join-us p {
  font-size: 17px;
  text-align: center;
  line-height: 30px;
}

.join-us p a {
  color: #053275;
}


/* Tabs container */
.membership-section .tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 10px 0px 20px;
  gap: 12px;
  margin-top: 0;
}

/* Hide radio buttons */
.membership-section .tabs input {
  display: none;
}

/* Tab labels */
.membership-section .tabs label {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  background: #eef2f7;
  color: #053275;

  padding: 12px 26px;
  border-radius: 8px;

  min-width: 200px;
  /* 🔑 SAME WIDTH */
  text-align: center;
  height: 44px;
  /* 🔑 SAME HEIGHT */
  line-height: 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

/* Active tab */
.membership-section #tab1:checked+label,
.membership-section #tab2:checked+label {
  background: linear-gradient(135deg, #053275, #0097b2);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 151, 178, 0.35);
}

/* Content */
.membership-section .tab-content {
  width: 100%;
  display: none;
  padding: 30px 10px 10px;
  animation: fadeIn 0.4s ease;
}

/* Show active content */
.membership-section #tab1:checked~#content1,
.membership-section #tab2:checked~#content2 {
  display: block;
}

/* List styling */
.membership-section .tab-content ul {
  padding-left: 22px;
  margin: 0;
}

.membership-section .tab-content li {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 8px;
  position: relative;
}

.membership-section .tab-content li::before {
  content: "✔";
  position: absolute;
  left: -22px;
  color: #d85c23;
  font-size: 14px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .membership-section .tabs {
    justify-content: center;
  }

  .membership-section .tabs label {
    min-width: 100%;
  }
}

.tab-content h3 {
  font-size: 22px;
}

.tab-content p {
  font-size: 17px;
  text-align: justify;
}

.membership-wrapper .form-head {
  font-size: 25px;
  text-align: center;
  color: #0097b2;
  margin-top: 20px;
}

.form-container {
  /* max-width: 1200px; */
  margin: auto;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #aaa;
  padding: 25px;
}

/* LABELS */
.membership-form-container form label {
  font-weight: 600;
  display: block;
  font-size: 16px;
  color: #444;
  margin-bottom: 6px;
}

.membership-form-container label span {
  color: red;
  font-size: 12px;
  font-weight: normal;
}

/* INPUTS */
.membership-form-container input,
.membership-form-container select,
.membership-form-container textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #aaa;
  margin-bottom: 10px;
  color: #444;
}

.membership-form-container input,
.membership-form-container select {
  height: 40px;
}

.membership-form-container textarea {
  height: 150px;
  resize: vertical;
  color: #636363;
  font-size: 15px;
}

/* FIELDSETS */
.membership-form-container fieldset {
  border: none;
  padding: 0;
  margin-bottom: 20px;
}

.membership-form-container legend {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.membership-form-container legend span {
  color: red;
  font-size: 12px;
  font-weight: normal;
}

/* GRID SYSTEM */
.membership-form-container .grid-2,
.membership-form-container .grid-3,
.membership-form-container .grid-5 {
  display: grid;
  gap: 15px;
  align-items: start;
}

.membership-form-container .grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.membership-form-container .grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.membership-form-container .grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* RADIO / CHECKBOX */
.membership-form-container .radio {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-weight: normal;
}

.membership-form-container .radio input {
  width: auto;
  margin: 0;
}

.membership-form-container input[type="radio"],
.membership-form-container input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* ADDRESS */
.membership-form-container .address-group input,
.membership-form-container .address-group select {
  margin-bottom: 10px;
}

/* NOTES */
.membership-form-container .note {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

/* TOTAL */
.membership-form-container .total {
  font-weight: bold;
  color: green;
}

/* BUTTON */
.membership-form-container button {
  background: linear-gradient(135deg, #053275, #0097b2);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 151, 178, 0.35);
  border: none;
  padding: 8px 20px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 0px;
  margin-bottom: 15px;
  border-radius: 6px;
}



/* RESPONSIVE */
@media (max-width: 900px) {

  .membership-form-container .grid-2,
  .membership-form-container .grid-3,
  .membership-form-container .grid-5 {
    grid-template-columns: 1fr;
  }
}

.pay-btn {
  text-align: center;
}

.tab2-contents p b {
  color: #000;
  font-weight: 500;
}

.membership-faq {
  background: #fff;
  padding: 40px 0px;
}

.form-head {
  text-align: center;
  font-size: 24px;
  color: #0a6a88;
  margin-bottom: 30px;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid #e1e1e1;
}

/* HIDE CHECKBOX */
.faq-item input {
  display: none;
}

/* QUESTION */
.faq-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #0a6a88;
  padding: 15px 10px;
  position: relative;
}

/* ARROW */
.faq-item label::before {
  content: "▸";
  font-size: 16px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 30px;
}

.faq-content p {
  font-size: 16px;
  color: #333;
  padding-bottom: 10px;
}

/* OPEN STATE */
.faq-item input:checked+label::before {
  transform: rotate(90deg);
}

.faq-item input:checked~.faq-content {
  max-height: 200px;
}

.academic-partners a {
  text-decoration: none;
}

.academic-partners .card {
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.academic-partners a:hover .card {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image animation */
.academic-partners .card img {
  transition: transform 0.3s ease;
}

.academic-partners a:hover .card img {
  transform: scale(1.05);
}

.academic-partners .card::after {
  content: "Learn More →";
  position: absolute;
  inset: 0;
  background: rgba(5, 50, 117, 0.60);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.academic-partners a:hover .card::after {
  opacity: 1;
}

.learn-section p {
  font-size: 17px;
  text-align: center;
}

.learn-section p a {
  color: #053275;
}

.webinar-section {
  padding-top: 20px;
}

.webinar-section h3 {
  color: #053275;
  text-align: center;
}

.webinar-section .card {
  border: none;
}

/* Main Card */
.pulse-card {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(135deg, #053275, #0b4f6c);
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* NEW Badge */
.pulse-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  background: #dc2626;
  color: white;
  padding: 8px 60px;
  transform: rotate(45deg);
  font-weight: 700;
  font-size: 14px;
}

/* Content */
.pulse-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 40px;
  align-items: center;
}

.pulse-title {
  font-size: 48px;
  letter-spacing: 2px;
  color: #fbbf24;
}

.pulse-subtitle {
  margin-top: 8px;
  font-size: 16px;
  opacity: 0.9;
  letter-spacing: 1px;
}

.heartbeat {
  margin: 25px 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
  position: relative;
}

.heartbeat::after {
  content: "❤";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: #f87171;
  font-size: 18px;
  animation: heartMove 2.5s linear infinite;
}

/* Keyframes */
@keyframes heartMove {
  0% {
    left: -20px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* CTA */
.pulse-cta {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
}

.pulse-cta p {
  font-size: 15px;
  margin-bottom: 18px;
}

.pulse-cta a {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 40px;
  background: linear-gradient(135deg, #10b981, #22c55e);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pulse-cta a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .pulse-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pulse-title {
    font-size: 36px;
  }
}

/* ---------- SECTION ---------- */
.tabs-section {
  margin: 60px auto 20px;
}

.newsletter-section .tabs-section h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 10px;
  color: #053275;
}

.newsletter-section .tabs-section-two h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 0px;
  color: #053275;
  margin-top: 30px;
}

.newsletter-section .tabs-section p {
  text-align: left;
  margin-bottom: 15px;
  color: #4b5563;
  font-size: 17px;
}

/* ---------- TAB WRAPPER ---------- */
.newsletter-section .tabs-wrapper {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 25px;
}

.Inviting-section .tabs-section h2 {
  font-size: 25px;
  margin-bottom: 0px;
  color: #053275
}

.Inviting-section .tabs-section-two h2 {
  font-size: 25px;
  margin-bottom: 0px;
  color: #053275
}

/* ---------- TAB CONTENT ---------- */
.Inviting-section .tab-content {
  /* padding: 30px; */
  display: block;
}

.Inviting-section .tab-content.active {
  display: block;
}

.Inviting-section .tab-content h3 {
  margin-bottom: 15px;
  color: #960505;
}

.Inviting-section .tab-content ul {
  padding-left: 0px;
  margin-bottom: 0;
}

.Inviting-section .tab-content li {
  margin-bottom: 10px;
  font-size: 17px;
  text-align: justify;
}

/* ---------- FOOTER ---------- */
.footer-note {
  text-align: left !important;
  margin-top: 0px !important;
  font-size: 17px !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .tab-buttons {
    flex-direction: column;
  }
}


.goals-card {
  margin: auto;
  padding: 20px 0;
}

.goals-card h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1e293b;
}

.goals-card .intro {
  text-align: left;
  font-size: 17px;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.7;
}

.goals-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}

.goals-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
  font-size: 17px;
  text-align: justify;
}

.goals-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #16a34a;
  font-weight: bold;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 600px) {
  .goals-card {
    padding: 25px;
  }

  .goals-list li {
    flex-direction: row;
  }
}

.footer-note a {
  color: #053275;
}

.newsletter-archive {
  padding: 40px 0px 0;
  text-align: center;
}

.archive-title {
  font-size: 28px;
  font-weight: 700;
  color: #960505;
  margin-bottom: 40px;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin: auto;
}

.newsletter-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transform: translateY(0);
  transition: all 0.35s ease;
}

.newsletter-card img {
  width: 100%;
  height: 362px;
  display: block;
  transition: transform 0.4s ease;
}

.newsletter-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.newsletter-card:hover img {
  transform: scale(1.05);
}

/* Date Badge */
.newsletter-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0b4f8a;
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Hover overlay */
.newsletter-card::after {
  content: "Read Newsletter →";
  position: absolute;
  inset: 0;
  background: rgba(11, 79, 138, 0.50);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.newsletter-card:hover::after {
  opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .archive-title {
    font-size: 22px;
  }
}


.downloads-alt {
  padding: 0 20px;
  text-align: center;
}

.downloads-alt h2 {
  font-size: 2.2rem;
  color: #0a3d62;
}

.subtext {
  color: #666;
  margin: 10px 0 40px;
}

/* List */
.download-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Item */
.download-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* Date badge */
.date-badge {
  min-width: 80px;
  text-align: center;
  background: linear-gradient(135deg, #003566, #0077b6);
  color: #fff;
  border-radius: 12px;
  padding: 12px 10px;
}

.date-badge span {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.date-badge strong {
  display: block;
  font-size: 1.3rem;
  margin-top: 4px;
}

/* Info */
.file-info {
  flex: 1;
  text-align: left;
}

.file-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #960505;
}

.file-info p {
  font-size: 0.9rem;
  color: #777;
}

/* Download button */
.file-download {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.2s ease;
}

.file-download:hover {
  color: #fff;
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 600px) {
  .download-item {
    flex-direction: column;
    text-align: center;
  }

  .file-info {
    text-align: center;
  }
}

.research-editorial {
  padding: 20px 20px;
}

/* Title */
.research-editorial .title-area {
  margin-bottom: 40px;
}

.research-editorial .title-area h1 {
  font-size: 25px;
  color: #960505;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 1.1rem;
  color: #666;
  letter-spacing: 1px;
}

/* Flow Blocks */
.flow-block {
  margin-bottom: 0px;
}

.flow-block h2 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #053275;
}

.accent {
  padding-left: 30px;
  border-left: 3px solid #960505;
}

.lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: #444;
  font-size: 1.05rem;
}

/* Timeline list */
.timeline-list li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
  text-align: justify;
}

.timeline-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #960505;
  font-size: 1.1rem;
}

/* Number list */
.timeline-number {
  padding-left: 25px;
}

.timeline-number li {
  margin-bottom: 14px;
  color: #333;
}

/* Meta row */
.meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  text-align: center;
  margin-top: 30px;
}

.meta-row h3 {
  margin-bottom: 10px;
  color: #053275;
  font-size: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .title-area h1 {
    font-size: 2.2rem;
  }

  .flow-block {
    padding-left: 20px;
  }
}

.rig-modern {
  padding-top: 30px;
}


.rig-wrapper {
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.rig-modern h1 {
  font-size: 25px;
  color: #960505;
  text-transform: uppercase;
  text-align: center;
}

.rig-modern .rig-note {
  text-align: center;
  font-size: 18px;
}

/* Content */
.rig-content h1 {
  font-size: 2.6rem;
  color: #1f2b6c;
  margin-bottom: 20px;
}

.rig-note {
  font-size: 0.95rem;
  margin-bottom: 30px;
  color: #555;
}

.rig-img img {
  width: 300px;
}

.rig-note a {
  color: #4f6bed;
  text-decoration: none;
  font-weight: 500;
}

.rig-content h3 {
  margin-bottom: 15px;
  color: #003566;
}

.rig-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #333;
}

/* Button */
.rig-action {
  margin-top: 40px;
}

.rig-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rig-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 25px rgba(95, 108, 255, 0.3);
}

/* Accent Panel */
.rig-accent {
  position: relative;
}

.accent-box {
  background: linear-gradient(160deg, #eef2ff, #ffffff);
  padding: 40px;
  border-left: 5px solid #960505;
  border-radius: 12px;
}

.research-faq .form-head {
  color: #960505;
}

.accent-box h4 {
  margin-bottom: 20px;
  color: #1f2b6c;
}

.accent-box ul {
  list-style: none;
  padding: 0;
}

.accent-box li {
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
  color: #333;
}

.accent-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5f6cff;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .rig-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .rig-content h1 {
    font-size: 2.1rem;
  }
}

.learn-awards-section {
  padding-top: 20px;
}

.learn-awards-section h3 {
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  color: #960505;
}

.learn-awards-section p {
  font-size: 17px;
  text-align: center;
}

.learn-awards-section p a {
  color: #053275;
}

.awards-form-section h3 {
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  color: #960505;
}

.awards-form-section p {
  font-size: 17px;
  text-align: center;
}

.naina-founder-img .card .founder-img {
  text-align: center;
}

.naina-founder-img .card img {
  width: 174px;
  height: 230px;
}

.naina-founders-section {
  background: #fff;
}

.founder-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.founder-card img {
  width: 170px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  border: 5px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.founder-card h5 {
  font-weight: 600;
  color: #0b3c5d;
  margin: 10px 0;
  font-size: 18px;
}

.founder-card p {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 0;
  text-align: center;
}

#about-inner {
  scroll-margin-top: 120px;
}

#learn-inner {
  scroll-margin-top: 120px;
}

#research-inner {
  scroll-margin-top: 120px;
}

#history-inner {
  scroll-margin-top: 120px;
}

#awards-inner {
  scroll-margin-top: 120px;
}

#nurses-indian-inner {
  scroll-margin-top: 120px;
}

#nurses-usa-inner {
  scroll-margin-top: 120px;
}

#nightingale-inner {
  scroll-margin-top: 120px;
}

#excellence-inner {
  scroll-margin-top: 120px;
}

#legacy-inner {
  scroll-margin-top: 120px;
}

#omana-award-inner {
  scroll-margin-top: 120px;
}

#publications-inner {
  scroll-margin-top: 120px;
}

#apn-inner {
  scroll-margin-top: 120px;
}

#haiti-inner {
  scroll-margin-top: 120px;
}

#board-inner {
  scroll-margin-top: 120px;
}

#president-msg-inner {
  scroll-margin-top: 120px;
}

#chapetrs-inner {
  scroll-margin-top: 120px;
}

#leadership-inner {
  scroll-margin-top: 120px;
}

#strategic-plan-inner {
  scroll-margin-top: 120px;
}

#overview-inner {
  scroll-margin-top: 120px;
}

#newsletter-inner {
  scroll-margin-top: 120px;
}

#inviting-inner {
  scroll-margin-top: 120px;
}

#advocacy-inner {
  scroll-margin-top: 120px;
}

#bylaws-inner {
  scroll-margin-top: 120px;
}

#communications-inner {
  scroll-margin-top: 120px;
}

#editorial-inner {
  scroll-margin-top: 120px;
}

#succession-inner {
  scroll-margin-top: 120px;
}

#fundraising-inner {
  scroll-margin-top: 120px;
}

#professional-inner {
  scroll-margin-top: 120px;
}

#ce-packet-inner {
  scroll-margin-top: 120px;
}

#educational-inner {
  scroll-margin-top: 120px;
}

#ce-requirements-inner {
  scroll-margin-top: 120px;
}

#ce-library-inner {
  scroll-margin-top: 120px;
}

#pfl-inner {
  scroll-margin-top: 120px;
}

#events-inner {
  scroll-margin-top: 120px;
}



.naina-scholarships {
  background: #f6fbff;
}

.naina-scholarships .section-title {
  font-weight: 600;
  color: #960505;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.scholarship-card {
  background: #4e8eb95c;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.scholarship-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.scholarship-card h4 {
  font-weight: 600;
  color: #0b3c5d;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}

.scholarship-card p {
  line-height: 30px;
  font-size: 16px;
  text-align: justify;
}

.learn-more {
  text-align: center;
}

.learn-more a {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
}

.learn-more a:hover {
  color: #fff;
}

.scholarship-details {
  padding: 20px 0 0;
}

.scholarship-details p {
  font-size: 17px;
}

.details-intro {
  background: #ffffff;
  padding: 25px;
  border-left: 5px solid #0b3c5d;
  margin-bottom: 25px;
  border-radius: 8px;
  line-height: 1.7;
}

.details-intro p {
  font-size: 17px;
  line-height: 30px;
}

.highlight-box {
  background: #eef6ff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-weight: 500;
}

.content-card {
  background: #ffffff;
  padding: 30px 30px 10px;
  border-radius: 14px;
  margin-bottom: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.content-card h3 {
  color: #0b3c5d;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 25px;
}

.content-card ul,
.content-card ol {
  padding-left: 20px;
}

.content-card li {
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 17px;
  text-align: justify;
}

.contact-box {
  text-align: center;
}

.contact-box p {
  color: #053275;
  font-weight: 600;
}

.contact-box a {
  color: #960505;
  font-weight: 600;
  text-decoration: none;
}

.omana-guideline p {
  text-align: justify;
}

.color-blue {
  color: #053275;
}

.proposal-format strong {
  text-transform: uppercase;
}

.color-red {
  font-size: 21px !important;
  font-weight: 600 !important;
  margin-bottom: 20px;
  color: #960505 !important;
}

.rubric-btn a {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  margin: 0 8px;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
}

.rubric-btn {
  margin-top: 50px;
}

.naina-awards-section {
  background: #f8fbff;
}

.award-card {
  background: #4e8eb95c;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.naina-awards-section .section-title {
  font-weight: 600;
  color: #960505;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.content-card b {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #960505;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.award-card h4 {
  font-weight: 600;
  color: #0b3c5d;
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
}

.award-card p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
  flex-grow: 1;
  text-align: justify;
}

.award-footer {
  margin-top: 25px;
}

.award-footer .btn {
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 500;
}

.enquiry p {
  font-weight: 600;
  margin-bottom: 8px;
  color: #960505;
}

.deadline b {
  font-size: 17px !important;
}

.caring-award-section p {
  text-align: justify;
  font-size: 17px;
  line-height: 30px;
}

.caring-award-section ul li {
  text-align: justify;
  font-size: 17px;
  line-height: 30px;
}

.excellence-nightingale-award-section p {
  text-align: justify;
  font-size: 17px;
  line-height: 30px;
}

.excellence-nightingale-award-section ol li {
  font-size: 19px;
  line-height: 30px;
}

.excellence-nightingale-award-section ol li ul li {
  font-size: 17px;
  line-height: 30px;
}



:root {
  --primary: #0b3c8c;
  --accent: #e11d48;
  --soft-blue: #eef4ff;
  --soft-red: #fff1f3;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}


.pub-wrapper {
  padding: 10px 0 10px
}

/* Columns */
.pub-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
}

/* Section Card */
.pub-column {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 2.5rem 2.2rem 3rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

/* Section Heading */
.pub-column h2 {
  display: inline-block;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 2.2rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: var(--soft-blue);
  color: #960505;
}

/* Timeline */
.pub-items {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid var(--primary);
}

/* Item */
.pub-items li {
  position: relative;
}

/* Dot */
.pub-items li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: #960505;
  border-radius: 50%;
  border: 3px solid white;
}

/* Link Row */
.pub-items a {
  display: block;
  padding: 1rem 1.25rem 1rem 1.8rem;
  margin: 0.4rem 0;
  text-decoration: none;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  border-radius: 12px;
  background: linear-gradient(90deg,
      rgba(241, 245, 249, 0.8),
      rgba(255, 255, 255, 0.9));
  transition: all 0.25s ease;
}

/* Alternate rows */
.pub-items li:nth-child(even) a {
  background: linear-gradient(90deg,
      rgba(238, 242, 255, 0.9),
      rgba(255, 255, 255, 1));
}

/* Hover */
.pub-items a:hover {
  transform: translateX(10px);
  background: linear-gradient(90deg,
      rgba(224, 231, 255, 1),
      rgba(255, 255, 255, 1));
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.2);
}

.apn-content-section {
  padding-top: 40px;
}

.apn-content-section h3 {
  text-align: center;
  font-size: 25px;
  color: #053275;
}

.apn-img {
  float: left;
  margin-right: 30px;
  margin-bottom: 10px;
}

.apn-content-section p {
  font-size: 17px;
  text-align: justify;
  line-height: 30px;
}

.apn-content-section2 h3 {
  text-align: center;
  font-size: 25px;
  color: #053275;
}

.apn-content-section2 p {
  font-size: 17px;
  text-align: justify;
  line-height: 30px;
}

.apn-content-section2 ul li {
  font-size: 17px;
  text-align: justify;
  line-height: 30px;
}

.goals h3 {
  color: #053275;
  font-size: 25px;
  text-align: center;
}

.goals p {
  font-size: 17px;
  text-align: justify;
  line-height: 30px;
}

.brochure-btn {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.brochure-btn a {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.goal-content {
  margin-bottom: 30px;
}

.goal-content .goal-img {
  float: left;
  margin-right: 30px;
}

.goal-content2 .goal-img2 {
  float: right;
  margin-left: 30px;
  width: 300px;
}

.goal-content2 .goal-img3 {
  float: left;
  margin-right: 30px;
  width: 300px;
}

.goal-content2 h3 {
  padding-top: 40px;
}

.goal-content2 {
  margin-bottom: 50px;
}

.haiti-section p {
  font-size: 17px;
  text-align: justify;
  line-height: 30px;
}

.haiti-section h3 {
  font-size: 25px;
  color: #053275;
}

.haiti-section ul li {
  font-size: 17px;
  text-align: justify;
  line-height: 30px;
}

.president-message-inner .pm-container {
  display: block;
}

.president-message-inner .pm-image {
  float: left;
  margin-right: 30px;
  width: 300px;
}

.president-message-inner {
  background: none;
}

/* Leadership Sections */
.leadership-section {
  padding: 25px 0 0;
}

.leadership-section h2 {
  font-size: 28px;
  text-align: center;
  color: #003366;
  margin-bottom: 30px;
}

/* Cards Grid */
.leadership-section .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.leadership-section .card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 260px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.leadership-section .card img {
  width: 100%;
  object-fit: cover;
}

.leadership-section .card h3 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 18px;
  color: #003366;
}

.leadership-section .card .role {
  margin: 0px 0 10px;
  font-size: 16px;
  color: #960505;
}

.leadership-section .card .profile-each {
  margin-bottom: 0;
}

.leadership-section .card .profile-each a {
  font-size: 15px;
  color: #fff;
  border: none;
  padding: 5px;
  border-radius: 6px;
}

.profile-details .bio-head {
  text-align: center;
  float: left;
  margin-right: 25px;
}

.profile-details .bio-head h4 {
  font-size: 15px;
  line-height: 22px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.profile-details .bio-head h6 {
  font-size: 13px;
  color: #960505;
  margin-bottom: 0;
}

.profile-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 3px solid #eee;
}

.profile-details .bio-popup {
  padding: 38px 38px 20px;
}

.profile-details .bio-popup p {
  line-height: 30px;
}

/* Layout */
.split-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: flex-start;
}

/* Left Nav */
.policy-nav {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.policy-nav h3 {
  font-size: 22px;
  color: #003366;
  margin-bottom: 25px;
  border-bottom: 2px solid #eef2f7;
  padding-bottom: 10px;
}

.policy-nav ul {
  list-style: none;
}

.policy-nav li {
  padding: 14px 18px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: #444;
  border-left: 4px solid transparent;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.policy-nav li:hover {
  background: #f0f5fb;
  color: #003366;
}

.policy-nav li.active {
  background: #eef5ff;
  color: #003366;
  font-weight: 600;
  border-left-color: #0073e6;
}

/* Right Content */
.policy-details {
  background: #ffffff;
  /* padding: 45px 50px; */
  border-radius: 16px;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); */
  margin-top: 30px;
}

.policy-details h2 {
  font-size: 32px;
  color: #960505;
  margin-bottom: 16px;
}

.policy-details p {
  font-size: 17px;
  color: #555;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Button */
.btn-policy {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  margin-top: 20px;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-policy:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 115, 230, 0.35);
}

/* Policy Content Visibility */
.policy-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.policy-content.active {
  display: block;
}

/* Smooth animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sp-modern {
  margin-top: 30px;
}

/* PANELS */
.sp-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.sp-panel {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}


.sp-panel h3 {
  font-size: 24px;
  color: #003366;
  margin-bottom: 12px;
}

.sp-panel p {
  font-size: 16.5px;
  line-height: 1.8;
  text-align: justify;
  color: #555;
}

/* SECTION HEADER */
.sp-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.sp-section-header h2 {
  font-size: 30px;
  color: #003366;
}

.sp-section-header span {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #0073e6, transparent);
}

/* PILLARS GRID */
.sp-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px 60px;
  padding-bottom: 0px;
}

.sp-pillar {
  display: flex;
  gap: 22px;
}

.pillar-index {
  font-size: 36px;
  font-weight: 700;
  color: #0073e6;
  min-width: 60px;
}

.pillar-text h4 {
  font-size: 21px;
  color: #003366;
  margin-bottom: 6px;
}

.pillar-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .sp-panels,
  .sp-pillars-grid {
    grid-template-columns: 1fr;
  }

  .sp-hero h1 {
    font-size: 38px;
  }
}

.committees-overview {
  background: #fff;
  padding: 10px 0 0px;
}


/* GRID */
.co-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* GROUP */
.co-group {
  position: relative;
  padding-left: 22px;
}

/* Vertical Accent Line */
.co-group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 60px;
  background: linear-gradient(#0073e6, #003366);
  border-radius: 2px;
}

.co-group h3 {
  font-size: 22px;
  color: #003366;
  margin-bottom: 22px;
  line-height: 1.3;
}

/* LIST */
.committee-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.committee-list li {
  padding: 14px 0;
  border-bottom: 1px solid #e6edf5;
}

.committee-list li:last-child {
  border-bottom: none;
}

.committee-list strong {
  display: block;
  font-size: 19px;
  color: #960505;
  margin-bottom: 4px;
}

.committee-list span {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
}

/* HOVER REFINEMENT */
.committee-list li:hover strong {
  color: #003366;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .co-groups {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .co-group::before {
    height: 40px;
  }
}

.overview-content {
  padding-bottom: 20px;
}

.overview-content p {
  text-align: justify;
  font-size: 17px;
  line-height: 30px;
}


/* ===============================
   COMMUNICATIONS – MATRIX DESIGN
================================ */

.communications-matrix {
  padding: 10px 0;
  background: #f8fafc;
}

.comm-header {
  margin-bottom: 30px;
}

.comm-header p {
  font-size: 17px;
  text-align: justify;
  line-height: 30px;
  color: #555;
}


/* ===============================
   EDITORIAL SECTION
================================ */

.editorial-section {
  padding: 10px 0;
  background: #ffffff;
  color: #222;
}


/* ===============================
   SUCCESSION PLANNING – PATHWAY
================================ */

.succession-pathway {
  padding: 10px 0;
  background: #f7f9fc;
}

/* HEADER */
.succession-header {
  margin-bottom: 30px;
}

.succession-header h2 {
  font-size: 34px;
  color: #002f5f;
  margin-bottom: 14px;
}

.succession-header p {
  font-size: 17px;
  text-align: center;
  line-height: 1.65;
  color: #555;
}

/* PATHWAY */
.pathway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* STEP */
.path-step {
  background: #ffffff;
  padding: 26px 24px 30px;
  border-top: 4px solid #1b6ec2;
}

.path-label {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1b6ec2;
  margin-bottom: 10px;
}

.path-step h3 {
  font-size: 20px;
  color: #960505;
  margin-bottom: 10px;
}

.path-step p {
  font-size: 17px;
  text-align: justify;
  line-height: 1.65;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pathway {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pathway {
    grid-template-columns: 1fr;
  }

  .succession-pathway {
    padding: 70px 0;
  }
}



.step-dot {
  position: absolute;
  left: -2px;
  top: 10px;
  width: 14px;
  height: 14px;
  background: #960505;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(#9605058a);
}

/* Cards */
.step-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 22px 26px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.step-card h3 {
  font-size: 1.3rem;
  color: #053275;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .pd-wrapper {
    grid-template-columns: 1fr;
  }

  .pd-timeline {
    padding-left: 30px;
  }
}

/* Section */
.ce-submit {
  padding: 20px 20px 0;
}

/* Container */
.ce-container {
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Header */
.ce-header {
  text-align: center;
  margin-bottom: 30px;
}

.ce-badge {
  display: inline-block;
  background: rgba(15, 155, 108, 0.1);
  color: #0f9b6c;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.ce-header h2 {
  font-size: 2.4rem;
  color: #1f2933;
  margin-bottom: 12px;
}

.ce-header p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* Steps */
.ce-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.ce-step {
  flex: 1;
  text-align: center;
  background: #f1f5f9;
  padding: 20px;
  border-radius: 16px;
}

.ce-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #960505;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  margin-bottom: 10px;
}

.ce-step p {
  font-size: 0.95rem;
  color: #333;
}

/* Form */
.ce-form {
  display: grid;
  gap: 20px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0px;
  display: block;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border-radius: 2px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: #0f9b6c;
}

/* File Upload */
.file-upload {
  position: relative;
  border: 2px dashed #cbd5e1;
  border-radius: 2px;
  padding: 14px;
  text-align: center;
}

.file-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload label span {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.file-upload label small {
  display: block;
  color: #777;
  margin-top: 5px;
}

/* Button */
.ce-btn .submit-btn {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0px;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ce-btn .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(15, 155, 108, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .ce-container {
    padding: 40px 25px;
  }

  .ce-steps {
    flex-direction: column;
  }
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Stack on mobile */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.naina-events {
  padding: 10px 0px;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.events-container {
  margin: auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  background: #ffffff;
  border-radius: 20px;
  display: block;
  gap: 20px;
  padding: 25px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.event-date {
  width: 65px;
  height: 65px;
  text-align: center;
  background: #960505;
  color: #fff;
  border-radius: 14px;
  padding: 10px 8px;
  margin-bottom: 10px;
}

.event-date .day {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

.event-date .month {
  font-size: 0.85rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.event-details {
  flex: 1;
}

.event-type {
  font-size: 0.8rem;
  font-weight: 600;
  color: #960505;
  text-transform: uppercase;
}

.event-details h3 {
  font-size: 1.35rem;
  color: #1f2933;
  margin: 8px 0 10px;
}

.event-details p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

.event-meta {
  display: flex;
  gap: 18px;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 16px;
}

.event-btn {
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 25px rgba(15, 155, 108, 0.35);
}

.view-all-btn {
  text-decoration: none;
  font-weight: 600;
  color: #0f9b6c;
}

/* Responsive */
@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }

  .event-meta {
    justify-content: center;
  }

  .event-date {
    margin: auto;
  }
}

.ce-state-section {
  padding: 10px 20px;
}

.section-header h2 {
  font-size: 28px;
  color: #1f2937;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

.state-search {
  text-align: center;
  margin: 20px auto;
  max-width: 480px;
}

.state-search input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.state-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.state-card:hover {
  transform: translateY(-4px);
}

.state-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #0f4c81;
}

.state-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

:root {
  --primary: #4f46e5;
  --primary-light: #eef2ff;
  --text-dark: #111827;
  --bg: #f9fafb;
}

.pfl-section .tabs-container {
  overflow: hidden;
}

.pfl-section .tabs {
  display: flex;
  flex-wrap: wrap;
  background: #c0d0e85e;
  padding: 0px;
  gap: 6px;
  border-radius: 14px;
}

.pfl-section .tab-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #444;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.pfl-section .tab-btn:hover {
  background: rgba(79, 70, 229, 0.08);
  color: #960505;
}

.pfl-section .tab-btn.active {
  background: #960505;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.pfl-section .tab-content {
  padding: 32px;
  display: none;
  animation: fadeIn 0.4s ease;
}

.pfl-section .tab-content.active {
  display: block;
}

.pfl-section .tab-content p a {
  color: #053275;
  font-weight: bold;
}

.pfl-section .tab-content h2 {
  margin-top: 20px;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: #960505;
}

.pfl-section .tab-content p {
  line-height: 1.6;
}

.pfl-section .tab-content .video-row {
  margin: 0 40px;
}

.pfl-section .tab-content .card {
  border: none;
  margin: 20px;
  height: auto !important;
}

.slide-content {
  text-align: center;
  margin-top: 30px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .pfl-section .tab-btn {
    flex: 100%;
  }
}

.fundraising-section p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}


.event-section {
  padding: 10px 0;
}

.event-section .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.event-section .event-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-section .event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-section .event-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.event-section .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-section .event-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #053275;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  border-radius: 4px;
  font-weight: bold;
}

.event-section .event-date .date-day {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.event-section .event-date .date-month {
  font-size: 12px;
  text-transform: uppercase;
}

.event-section .event-content {
  padding: 20px;
}

.event-section .event-content h3 {
  font-size: 20px;
  color: #960505;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.event-section .event-content p {
  font-size: 16px;
  color: #555;
  text-align: justify;
  margin-bottom: 15px;
  min-height: 45px;
}

.event-section .event-btn {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.event-section .events-more .btn-view-all {
  margin-top: 30px;
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 6px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.event-section .events-more .btn-view-all:hover {
  background: #111;
}

.contact-section {
  padding: 20px 0;
  background: #f8f8f8;
  color: #333;
}

.contact-section .section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-section .section-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-info,
.contact-form {
  flex: 1 1 45%;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.info-box i {
  font-size: 24px;
  color: #960505;
  width: 40px;
}

.info-box h4 {
  font-size: 18px;
  margin: 0;
}

.info-box p,
.info-box a {
  font-size: 17px;
  color: #555;
  text-decoration: none;
  margin-bottom: 0;
}

.contact-form form {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
}

.contact-form textarea {
  resize: vertical;
}

.contact-inner-section .btn-submit {
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.map-placeholder {
  margin-top: 40px;
  width: 100%;
  text-align: center;
  background: #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
}

.map-placeholder iframe {
  width: 100%;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }
}

#leads .card {
  margin: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#leads .card p {
  font-size: 15px;
}

#leads .card img {
  width: 250px;
  height: 245px;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pdf-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pdf-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pdf-icon {
  font-size: 55px;
  margin-bottom: 30px;
}

.pdf-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #e14d06;
}

.pdf-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.pdf-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.view-btn {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#facilitators .card {
  margin: 0;
  text-align: center;
}

#facilitators .card p {
  text-align: center;
}

#resources h3 {
  color: #0097b2;
  font-size: 25px;
  text-align: center;
}

#resources h3 a:hover {
  text-decoration: underline;
}

.button-wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.button-wrapper .btn img {
  width: 400px;
  height: auto;
}

.button-wrapper {
  display: flex;
  gap: 20px;
}

.btn {
  position: relative;
  display: block;
  overflow: hidden;
}

.btn img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.button-wrapper span {
  color: #fff;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  transition: opacity 0.3s ease;
  text-align: center;
}

.button-wrapper span:hover {
  color: #fff;
  background: linear-gradient(to top, #053275 0%, #0097b2 100%);
}

.button-wrapper a:active {
  border: none;
}

.resources-tool-slider {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.resources-tool-slider .slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resources-tool-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .8s ease;
}

.resources-tool-slider .slide.active {
  opacity: 1;
  position: relative;
}

.modern-slider .slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.resources-tool-slider .slide-content {
  position: absolute;
  bottom: 40px;
  left: 0px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 25px;
  margin: 0 30px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.resources-tool-slider .slide-content h2 {
  margin: 0;
  font-size: 25px;
  color: #fff;
}

.resources-tool-slider .slider-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.resources-tool-slider .dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  opacity: .5;
  cursor: pointer;
}

.resources-tool-slider .dot.active {
  opacity: 1;
  background: #00bcd4;
}


.resources-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin: auto;
}

/* SLIDER */

.modern-slider {
  /* background: linear-gradient(135deg, #0f766e, #115e59); */
  color: white;
  border-radius: 16px;
  padding: 20px 20px 35px;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slide {
  display: none;
  animation: fade 0.8s ease;
}

.slide.active {
  display: block;
}

.slide h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.slide p {
  font-size: 17px;
  opacity: .9;
  margin-bottom: 30px;
}

.slider-btn {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  color: #fff;
  background: linear-gradient(to top, #053275 0%, #0097b2 100%);
}

.color {
  color: #960505;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DOTS */

.slider-dots {
  position: absolute;
  bottom: 25px;
}

.dot {
  width: 10px;
  height: 10px;
  background: white;
  opacity: .5;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.dot.active {
  opacity: 1;
}

/* SIDEBAR */

.sidebar-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.project-card h3 {
  color: #fff !important;
}

.project-card a {
  background-color: #fff;
  padding: 6px;
  color: #960505;
  border-radius: 8px;
  text-align: center;
}

.project-card {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.card p {
  margin-bottom: 20px;
}

.card button {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  background: white;
  font-weight: 600;
  cursor: pointer;
}

.card button:hover {
  opacity: .9;
}

@media (max-width:900px) {

  .resources-container {
    grid-template-columns: 1fr;
  }

  .modern-slider {
    padding: 40px;
  }

}

.resources-section {
  padding-top: 40px;
}

.slide h2 {
  font-size: 25px !important;
  text-transform: capitalize !important;
}

#president-inner .card-body {
  padding-top: 0;
}

#president-inner .card-text {
  font-size: 15px;
}


.cards-section-another {
  display: flex;
  justify-content: center;
  gap: 0px;
  padding: 30px 0;
  margin-top: 40px;
}

.cards-section-another .card {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cards-section-another .card-top {
  text-align: center;
  padding: 0 20px 20px;
}

.cards-section-another .card-bottom {
  background: linear-gradient(135deg, #960505, #0026b8);
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-weight: 500;
}

.cards-section-another .card-bottom:hover {
  background: linear-gradient(135deg, #0026b8, #960505);
}

.pfl-social-icons {
  margin-top: 50px;
  text-align: center;
}

.pfl-social-icons a {
  padding: 12px;
  color: #fff;
  font-size: 20px;
  margin: 0 3px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fb {
  background-color: #1877f2;
}

.tw {
  background-color: #000;
}

.yt {
  background-color: #ff0000;
}

.pfl-social-icons h3 {
  padding-bottom: 15px;
}

.donate-form-container {
  max-width: 800px;
}

.comm-membership-section p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

#comm-membership-inner {
  scroll-margin-top: 120px;
}

.advocacy-section p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.bylaws-section p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.editorial-section p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.professional-section p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.ce-library-section p {
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
}

.content-policy-section .card {
  border: none;
  padding: 0;
  box-shadow: none;
}

.content-policy-section .card h3 {
  color: #960505;
  text-align: justify;
  margin-bottom: 10px;
}

.content-policy-section .card ul li {
  font-size: 17px;
  line-height: 35px;
}

.content-policy-section .header p {
  color: #000;
  margin-bottom: 8px;
}

.content-policy-section .content-grid {
  margin-top: 20px;
}

.content-policy-section .section-img {
  float: left;
  text-align: center;
  margin-right: 30px;
  margin-top: 0px;
  width: 300px;
}

.content-policy-section .section-img img {
  margin-bottom: 10px;
  border-radius: 22px;
}

.content-policy-section .pm-image-info {
  text-align: center;
}

.co-chair h4 {
  font-size: 18px;
  color: #0f172a;
}

/*---------------------
  Portfolio
-----------------------*/

.portfolio {
  background: #100028;
}

.portfolio__filter {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio__filter li {
  list-style: none;
  font-size: 16px;
  color: #adadad;
  margin-right: 5px;
  display: inline-block;
  cursor: pointer;
  padding: 6px 22px;
}

.portfolio__filter li.active {
  border: 1px solid #00bfe7;
}

.portfolio__filter li:last-child {
  margin-right: 0;
}

.portfolio__item {
  margin-bottom: 35px;
}

.portfolio__item:hover .portfolio__item__text h4:after {
  opacity: 1;
}

.portfolio__item__video {
  height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 28px;
}

.portfolio__item__video .play-btn {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.portfolio__item__text {
  text-align: center;
}

.portfolio__item__text h4 {
  color: #ffffff;
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.portfolio__item__text h4:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #333;
  content: "";
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  opacity: 0;
}

.portfolio__item__text ul li {
  list-style: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  margin-right: 24px;
  position: relative;
  color: #adadad;
}

.portfolio__item__text ul li:after {
  position: absolute;
  right: -16px;
  top: 0;
  content: "/";
}

.portfolio__item__text ul li:last-child {
  margin-right: 0;
}

.portfolio__item__text ul li:last-child:after {
  display: none;
}

.portfolio__item__text span {
  font-size: 16px;
  font-weight: 300;
  color: #adadad;
  display: block;
}

.pagination__option {
  text-align: center;
  padding-top: 20px;
}

.pagination__option.blog__pagi {
  padding-top: 5px;
}

.pagination__option .arrow__pagination {
  font-size: 15px;
  color: #ffffff;
  display: inline-block;
  text-transform: uppercase;
}

.pagination__option .arrow__pagination.left__arrow {
  margin-right: 26px;
}

.pagination__option .arrow__pagination.right__arrow {
  margin-left: 18px;
}

.pagination__option .arrow__pagination span {
  opacity: 0.5;
}

.pagination__option .number__pagination {
  font-size: 18px;
  color: #ffffff;
  height: 50px;
  width: 50px;
  background: rgba(242, 242, 242, 0.1);
  line-height: 50px;
  text-align: center;
  display: inline-block;
  margin-right: 6px;
}


#news-inner {
  scroll-margin-top: 120px;
}

/* Section */
.news-section {
  padding: 20px 20px 0px;
  background: #f8fafc;
}

/* Grid */
.news-grid {
  display: block;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Card */
.news-card {
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid #960505;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
}

/* Soft hover effect */
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Title */
.news-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #1e3a5f;
}

/* Date */
.news-card .date {
  font-size: 15px;
  color: #960505;
  margin-bottom: 8px;
}

/* Paragraph */
.news-card p {
  font-size: 17px;
  line-height: 1.6;
}

/* List */
.news-card ul {
  margin-top: 15px;
  margin-bottom: 0px;
  padding-left: 18px;
}

.news-card ul li {
  font-size: 17px;
  margin-bottom: 6px;
  list-style: none;
}

/* Responsive */
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.past-president-inner-section .btn {
  display: inline-block !important;
}

.profile-each a {
  color: #fff !important;
  border: none !important;
  font-size: 14px !important;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
}

.profile-each a:hover {
  background: linear-gradient(to top, #053275 0%, #0097b2 100%);
}

.design {
  font-size: 14px;
  margin-bottom: 0 !important;
  margin-top: 10px;
}

.resume-btn {
  margin-top: 10px;
  margin-bottom: 10px !important;
}

.resume-btn a {
  color: #fff !important;
  border: none !important;
  font-size: 14px !important;
  padding: 5px;
  border-radius: 6px;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
}

.resume-btn a:hover {
  background: linear-gradient(to top, #053275 0%, #0097b2 100%);
}

.committee-details ul li {
  font-size: 17px;
  line-height: 34px;
}

.committee-details p {
  font-size: 17px;
  line-height: 34px;
}

.content-policy-section .span-head {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
  line-height: 50px;
}

.policies-inner-section .cs_section_heading {
  position: relative;
}

.policies-inner-section .policy-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 20px;
  background: #d85c23;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 10px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0px !important;
  color: #fff;
  margin-top: 20px;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.policies-inner-section .policy-btn:hover {
  background: linear-gradient(to top, #053275 0%, #0097b2 100%);
}

#newsletter-inner .policy-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 20px;
  background: #d85c23;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 10px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0px !important;
  color: #fff;
  margin-top: 20px;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


#newsletter-inner .policy-btn:hover {
  background: linear-gradient(to top, #053275 0%, #0097b2 100%);
}


@media (min-width: 300px) and (max-width: 800px) {
  .top-search {
    display: none;
  }

  .cs_header_contact_list {
    display: none;
  }

  .cs_site_branding img {
    position: relative;
    top: 10px !important;
    left: -15px;
  }

  .main-slider-two-shape-box {
    display: none;
  }

  .main-slider-two-image-layer {
    width: 100% !important;
  }

  .slider-one__layer .caption-box .text-title {
    font-size: 25px !important;
  }

  .caption-buttons {
    flex-direction: row;
  }

  .slider-one__layer {
    left: 50% !important;
  }

  .cs_section_heading.cs_style_1 .cs_section_subtitle {
    font-size: 16px;
  }

  .cs_section_heading.cs_style_1 .cs_shape_left,
  .cs_section_heading.cs_style_1 .cs_shape_right {
    height: 3px;
    width: 20px;
  }

  .cs_about_content .cs_section_heading .sub-head-about {
    font-size: 18px;
  }

  .cs_about.cs_style_1 .cs_about_text {
    font-size: 15px;
  }

  .cs_about .cs_readmore_wrap {
    justify-content: center;
  }

  .president-message {
    padding-top: 30px;
    margin-top: 30px;
  }

  .pm-container {
    flex-direction: column;
  }

  .pm-image {
    order: 1;
    margin: 0 40px;
  }

  .pm-content {
    order: 2;
  }

  .affiliation-list {
    display: block;
  }

  .affiliation-item {
    margin: 0 15px 30px;
  }

  .affiliation-item img {
    width: 190px;
  }

  .affiliation-item h5 {
    font-size: 16px;
  }

  .cs_section_heading.cs_style_1 .cs_section_subtitle {
    font-size: 20px;
  }

  .doctor-img img {
    width: 30%;
    margin-top: 15px;
  }

  .doctor-box {
    margin-right: 20px;
    margin-left: 20px;
  }

  .highlight-item {
    margin: 0 20px;
  }

  .highlight-item h4 {
    font-size: 16px;
  }

  .footer-nav li {
    display: block;
    border-right: none;
    text-align: left;
  }

  .footer-row {
    justify-content: flex-start;
  }

  .vmv-box {
    margin: 0 20px;
  }

  .cs_nav .cs_nav_list {
    padding-left: 30px;
  }

  .cs_nav .cs_nav_list>li {
    border-right: none;
    margin-bottom: 10px;
  }

  .leadership-section .card h3 {
    font-size: 16px;
  }

  #president-inner .card {
    margin: 0 20px;
  }

  #president-inner .card p {
    font-size: 15px;
  }

  #president-inner .card .text-center {
    padding-bottom: 20px;
  }

  .bio-head h4 {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .bio-head h6 {
    margin-bottom: 0;
  }

  .bio-popup p {
    font-size: 15px;
  }

  .history-content {
    border-left: none;
    padding-left: 0;
    margin: 0 20px;
  }

  .naina-founders {
    margin: 0 20px;
  }

  .naina-birth {
    margin: 0 20px;
  }

  .naina-founders h3 {
    font-size: 20px;
  }

  .naina-birth h3 {
    font-size: 20px;
  }

  .naina-past-years {
    margin: 0 20px;
  }

  .naina-past-years h3 {
    font-size: 20px;
  }

  .split-layout {
    display: block;
  }

  .policy-nav {
    padding: 20px;
    margin-bottom: 0px;
  }

  .policy-details h2 {
    font-size: 22px;
  }

  .policy-details {
    padding: 30px 25px;
  }

  .sp-panel h3 {
    font-size: 20px;
  }

  .sp-panel p {
    font-size: 16px;
  }

  .sp-section-header h2 {
    font-size: 21px;
  }

  .sp-pillar {
    display: block;
  }

  .sp-pillars-grid {
    margin: 0 20px;
    gap: 20px 60px;
  }

  .sp-section-header {
    margin-bottom: 20px;
  }

  .pillar-index {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .academic-partners {
    margin: 0 20px;
  }

  .president-message-inner .pm-image {
    float: none;
    margin-right: 0;
    width: auto;
    margin: 0 30px;
  }

  .pm-content {
    margin: 0 30px;
    padding: 0;
  }

  .pm-content p {
    line-height: 30px;
  }

  .hospital-departments {
    margin-top: 0;
    padding-top: 0;
  }

  .naina-events {
    background: none;
  }

  .events-grid {
    margin: 0 30px;
    display: block;
  }

  .gallery-section .card {
    margin: 0 20px;
  }

  .cs_site_header.cs_style_1 .cs_top_header_in {
    display: none;
  }

  .caption-buttons button {
    padding: 4px 20px !important;
    font-size: 13px !important;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .social-fixed {
    right: 0px;
  }

  .bio-popup {
    max-height: 70vh;
  }

  .cs_scrollup {
    display: none;
  }

  .profile-img {
    width: 160px;
    height: 180px;
  }

  .dept-image-card {
    margin-right: 40px;
    margin-left: 40px;
    margin-top: 20px;
  }

  .whatsapp-float {
    z-index: 9;
  }

  .social-fixed {
    z-index: 9;
  }

  #president-inner .card img {
    margin-bottom: 20px;
  }

  .Inviting-section .tabs-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }

  .goals-list li {
    font-size: 15px;
  }

  .Inviting-section .tabs-section {
    margin-top: 30px;
  }

  .Inviting-section .tabs-section {
    margin-left: 20px;
    margin-right: 20px;
  }

  .goals-card {
    padding: 0;
  }

  .Inviting-section .tabs-wrapper {
    margin: 0 20px;
  }

  .Inviting-section .tab-content li {
    font-size: 15px;
  }

  .Inviting-section .tab-content h3 {
    font-size: 16px;
  }

  .Inviting-section .tabs-section-two h2 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
  }

  .Inviting-section .newsletter-goals {
    margin: 0 20px;
  }

  .Inviting-section p {
    text-align: justify;
  }

  .Inviting-section .tabs-section-two {
    margin: 0 20px;
  }

  .Inviting-section .goals-list {
    margin-bottom: 10px;
  }

  .newsletter-grid {
    margin: 0 30px;
    display: block;
  }

  .newsletter-archive {
    padding: 100px 0px 0;
  }

  #newsletter-inner .policy-btn {
    left: 0;
    top: 85px;
    width: 50%;
    font-size: 14px !important;
    margin: 0 30px;
  }

  .policies-inner-section .policy-btn {
    left: 0;
    top: 85px;
    width: 50%;
    font-size: 14px !important;
    margin: 0 30px;
  }

  .policies-section {
    margin-bottom: 50px;
    margin-top: 100px;
  }

  .policy-nav li {
    padding: 10px 14px;
    font-size: 16px;
  }

  #policyMenu {
    padding: 0;
  }

  .policy-details {
    padding: 0px 25px;
  }
}


.leadership-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.leadership-tabs .tab-btn {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #053275;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.leadership-tabs .tab-btn.active,
.leadership-tabs .tab-btn:hover {
  padding: 8px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  color: #fff;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #053275 0%, #0097b2 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.leadership-tabs .tab-content {
  display: none;
}

.leadership-tabs .tab-content.active {
  display: block;
}

.leadership-section .card p {
  text-align: center;
}

@media (max-width: 1366px) {
  .leadership-section .grid {
    gap: 10px;
  }
}

.Inviting-section .tabs-section {
  margin-top: 35px;
}



@media (min-width: 300px) and (max-width: 800px) {
  .cs_about.cs_style_1 .cs_section_heading.cs_style_1 {
    text-align: center;
  }

  section {
    margin-top: 0 !important;
  }

  .cs_about.cs_style_1 .cs_about_text br {
    display: none;
  }

  .pm-content .cs_readmore_wrap {
    justify-content: center;
  }

  .affiliation-item {
    margin: 0 25px 30px;
  }

  .cs_cta.cs_style_2 {
    margin-top: 0;
    padding: 40px 0px 20px 0px;
  }

  .doctor-box {
    margin-right: 30px;
    margin-left: 30px;
  }

  .highlight-item {
    margin: 0 30px;
  }

  .about-inner-section .cs_about_content {
    margin-top: -20px;
  }

  .about-inner-section .sub-head-about {
    text-align: center;
  }

  .vmv-box {
    padding: 20px 20px;
  }

  .vmv-box h3 {
    font-size: 18px;
  }

  .vmv-box p {
    font-size: 15px;
  }

  .vmv-box ul li {
    font-size: 15px;
    text-align: justify;
  }

  .dept-image-card {
    padding: 0;
  }

  .board-section .row {
    margin-top: 0 !important;
  }

  .leadership-tabs .tab-btn {
    padding: 8px 15px !important;
    font-size: 15px !important;
    margin-top: 0;
  }

  .leadership-section .card p {
    font-size: 16px;
  }

  #president-inner .card {
    margin: 0 30px;
    padding: 20px 20px 0px;
  }

  .bio-head h6 {
    margin-bottom: 0;
    font-size: 14px;
  }

  .history-content p {
    font-size: 15px !important;
  }

  .naina-birth {
    padding-top: 0px;
  }

  .naina-birth p {
    font-size: 15px !important;
  }

  .founder-card {
    padding: 0;
    box-shadow: none;
    margin: 0 30px;
  }

  .founder-card h5 {
    font-size: 16px;
  }

  .founder-card p {
    font-size: 14px;
    line-height: 25px;
  }

  .founder-card:hover {
    box-shadow: none;
  }

  .naina-birth {
    margin: 0 30px;
  }

  .naina-birth p {
    font-size: 15px;
  }

  .history-inner-section .pm-container {
    margin-top: 20px;
    text-align: center;
  }

  .history-inner-section .pm-container strong {
    font-size: 18px;
  }

  .history-inner-section .pm-image {
    margin-top: 20px;
  }

  .history-inner-section .pm-container .pm-content p {
    font-size: 15px;
    line-height: 30px;
  }

  .history-inner-section .pm-container .pm-content ul li span {
    font-size: 15px;
    line-height: 30px;
  }

  .history-inner-section .president-message {
    padding-bottom: 0;
  }

  #policies-inner .caption-buttons button {
    margin-left: 0;
  }

  #policies-inner .policies-section {
    margin-top: 0 !important;
  }

  .policy-nav li {
    font-size: 15px;
  }

  .policy-details div {
    text-align: justify !important;
  }

  .policy-details span {
    line-height: 30px;
    text-align: justify !important;
  }

  .policy-details p {
    line-height: 30px;
    font-size: 15px;
    text-align: justify !important;
  }

  .policy-details ul li {
    line-height: 30px !important;
    font-size: 15px !important;
    text-align: justify !important;
  }

  .sp-panel h3 {
    font-size: 18px !important;
  }

  .sp-panel p {
    font-size: 15px !important;
  }

  .sp-panel {
    padding: 20px;
    margin: 0 30px;
  }

  .sp-section-header h2 {
    font-size: 20px !important;
  }

  .sp-section-header {
    margin: 0 30px 10px;
  }

  .pillar-text h4 {
    font-size: 18px;
  }

  .pillar-index {
    font-size: 20px;
  }

  .pillar-text p {
    font-size: 15px;
    line-height: 30px;
    text-align: justify;
  }

  .sp-pillars-grid {
    margin: 0 30px !important;
    gap: 0px 60px !important;
  }

  .academic-partners {
    margin: 0 30px !important;
  }

  .content-policy-section .section-img {
    float: none;
    text-align: center;
    margin-right: 0;
    margin-top: 15px;
    width: auto;
  }

  .content-policy-section .section-img img {
    width: 200px;
  }

  .committee-details {
    margin: 0 30px;
  }

  .content-policy-section .span-head {
    font-size: 20px;
  }

  .committee-details p {
    font-size: 15px;
    line-height: 30px;
    text-align: justify;
  }

  .committee-details ul li {
    font-size: 15px;
    line-height: 30px;
    text-align: justify;
  }

  .committee-details ul li span {
    font-size: 15px;
    line-height: 30px;
    text-align: justify;
  }

  .bio-popup p {
    font-size: 15px;
    line-height: 30px;
  }

  .ce-container {
    padding: 20px;
  }

  .ce-submit {
    padding: 10px 0 0;
    margin: 0 30px;
  }

  .ce-header {
    text-align: justify;
  }

  .ce-packet-section {
    margin-bottom: 50px;
  }

  .ce-header p {
    font-size: 15px;
    line-height: 26px;
  }

  .ce-submit .form-group input {
    font-size: 15px;
    margin-top: 10px;
  }

  .ce-btn .submit-btn {
    padding: 8px 15px !important;
    font-size: 15px !important;
  }

  .event-date {
    width: 60px;
  }

  .event-date .day {
    font-size: 15px;
  }

  .event-date .month {
    font-size: 15px;
  }

  .event-details h3 {
    font-size: 18px;
  }

  .event-btn {
    padding: 8px 15px !important;
    font-size: 15px !important;
  }

  #ce-library-inner .advocacy-section {
    margin: 0 30px;
  }

  #ce-library-inner .advocacy-section p span {
    font-size: 15px;
    line-height: 30px;
    text-align: justify;
  }

  .cs_nav .cs_nav_list>li {
    color: #960505;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px !important;
  }

  .resume-btn {
    margin-top: 10px;
  }

  .cs_nav .cs_nav_list>li>a {
    line-height: 30px;
  }

  .pub-items a {
    font-size: 15px;
    padding: 15px;
    text-align: justify;
  }

  .pub-columns {
    gap: 20px;
  }

  .pub-wrapper {
    margin: 0 30px;
  }

  .pub-column h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .pub-column {
    padding: 0;
    border: none;
    text-align: center;
    box-shadow: none;
  }

  .gallery-section .card {
    margin: 0 30px;
    padding: 0;
  }

  .file-info h3 {
    font-size: 18px;
  }

  .date-badge span {
    font-size: 12px;
  }

  .date-badge strong {
    font-size: 13px;
    margin-top: 0;
  }

  .date-badge {
    min-width: 70px;
    padding: 5px 0px;
  }

  .file-download {
    padding: 6px 10px !important;
    font-size: 15px !important;
  }

  .footer-nav li {
    margin: 5px 12px 0 5px;
  }

  .cs_site_branding img {
    position: relative;
    top: 0px !important;
    left: -15px;
  }

  .fundraising-inner-section .fundraising-section {
    margin: 0 30px;
  }

  .fundraising-section p {
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
  }

  .fundraising-section div {
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
  }

  .fundraising-section ul li {
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
  }

  .fundraising-inner-section .fundraising-section h1 {
    margin-bottom: 0;
  }

  .join-us {
    margin: 0 30px;
  }

  .join-us p {
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
  }

  .membership-form-container {
    margin: 0 30px;
  }

  .membership-form-container form label {
    font-size: 15px;
  }

  .membership-form-container textarea {
    font-size: 14px;
    height: 200px;
  }

  .membership-form-container button {
    padding: 5px 10px;
    font-size: 14px;
  }

  .membership-form-container input,
  .membership-form-container select,
  .membership-form-container textarea {
    font-size: 13px;
  }

  .membership-wrapper .form-head {
    font-size: 18px;
  }

  .form-head {
    font-size: 18px;
  }

  .membership-faq {
    margin: 0 30px;
  }

  .faq-item label {
    font-size: 15px;
    padding: 10px 10px;
  }

  .download-item {
    gap: 15px;
  }

  .pfl-section .tabs-container {
    margin: 0 30px;
  }

  .pfl-section .tab-btn {
    padding: 10px 16px;
    font-size: 15px;
  }

  .pfl-section .tab-content h2 {
    font-size: 20px;
  }

  .tab-content h3 {
    font-size: 18px;
  }

  .pfl-section .tab-content {
    padding: 0;
  }

  .tab-content p {
    font-size: 15px;
    line-height: 28px !important;
  }

  .pfl-section .tab-content .video-row {
    margin: 0 0px;
  }

  .pfl-section .tab-content .card {
    padding: 0;
    margin: 0;
  }

  .view-btn {
    padding: 8px 15px !important;
    font-size: 15px !important;
  }

  #resources h3 {
    font-size: 18px;
  }

  .button-wrapper {
    display: block;
  }

  .button-wrapper span {
    font-size: 15px;
  }

  .modern-slider {
    padding: 0;
  }

  .modern-slider .slide img {
    height: 100%;
  }

  .slide h2 {
    font-size: 16px !important;
  }

  .slider-btn {
    padding: 8px 12px !important;
    font-size: 15px !important;
  }

  .project-card {
    padding: 20px !important;
  }

  .pfl-social-icons a {
    padding: 10px;
    font-size: 16px;
  }

  .cards-section-another {
    display: block;
    margin-top: 20px;
  }

  .cs_about {
    margin-top: 40px !important;
  }

  .leadership-section .card img {
    height: 250px;
  }

  .testimonials-boxed {
    padding-bottom: 0;
  }

  .cards-section-another .card-bottom {
    font-size: 15px;
  }

  .cards-section-another .card {
    margin-bottom: 20px !important;
  }

  .overview-content p {
    text-align: justify;
    font-size: 14px;
    line-height: 28px;
  }

  .co-group h3 {
    font-size: 18px;

  }

  .webinar-section h3 {

    font-size: 18px;
  }

  .webinar-section {
    padding-top: 0;
    margin: 0 30px 50px;
  }

  .learn-section {
    margin: 0 30px;
  }

  .learn-section p {
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
  }

  .committees-overview {
    margin: 0 25px;
  }

  .committee-list strong {
    font-size: 18px;
  }

  .committee-list span {
    font-size: 15px;

  }

  .state-grid {
    display: block;
  }

  .state-card {
    margin-bottom: 30px;
  }

  .ce-library-section p {
    font-size: 15px;
    line-height: 28px;
  }

  .ce-library-section {
    margin: 0 30px;
  }

  .newsletter-card img {
    margin-bottom: 30px;
  }
}

.history-inner-section .president-message-inner {
  padding-bottom: 0;
}

.history-inner-section .president-message-inner .pm-content {
  padding-bottom: 0;
}

section {
  margin-top: 35px;
}

.leadership-inner-section {
  margin-bottom: 45px;
}

.past-president-inner-section {
  margin-bottom: 40px;
}

.strategic-plan-inner-section {
  margin-bottom: 40px;
}

.academic-partners-inner-section {
  margin-bottom: 45px;
}

.overview-inner-section {
  margin-bottom: 45px;
}

.advocacy-inner-section {
  margin-bottom: 30px;
}

#apn-inner {
  margin-bottom: 35px;
}

.educational-inner-section {
  margin-bottom: 45px;
}

.ce-requirements-inner-section {
  margin-bottom: 40px;
}

.ce-library-inner-section {
  margin-bottom: 40px;
}

.gallery-inner-section {
  margin-bottom: 50px;
}

.events-inner-section {
  margin-bottom: 40px;
}

#downloads-inner {
  margin-bottom: 50px;
}

.fundraising-inner-section {
  margin-bottom: 50px;
}

.ticker-section {
  margin-top: 0;
}