/** Nunito Sans **/
@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/** Rubik **/
@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/Rubik-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/Rubik-VariableFont_wght.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/Rubik-VariableFont_wght.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/rubik/Rubik-VariableFont_wght.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/*--------------------------------------------------------------
2. All Variable
----------------------------------------------------------------*/
:root {
  --white-color: #fff;
  --heading-color: #191919;
  --body-color: #393e3e;
  --accent-color: #FFA415;
  --orange-color: #FF5528;
  --border-color: #8D8D8D;
  --blue-color: #346DFF;
  --gray-color: #E7E7E7;
  --gray2-color: #F1F6F7;
  --heading-font: "Nunito Sans", sans-serif;
  --body-font: "Rubik", sans-serif;
  --blue-color: #009edb;
  --yellow-color: #f6c50f;
}

/*--------------------------------------------------------------
3. Typography
----------------------------------------------------------------*/
body,
html {
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.66em;
  font-weight: 400;
  overflow-x: clip;
}

body {
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2em;
  font-family: var(--heading-font);
}

.language  li a:hover img{
    transform:scale(1.1);
}

.mt {
  margin-top: 90px;
}

.pt {
  padding-top: 90px;
}

.ptm {
  padding-top: 50px;
}

.mb {
  margin-bottom: 90px;
}

.pb {
  padding-bottom: 90px;
}

.cs_heading_font {
  font-family: var(--heading-font);
}

.cs_secondary_font {
  font-family: var(--body-font);
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--blue-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;
}

/*--------------------------------------------------------------
  4. Preloader
----------------------------------------------------------------*/
.cs_preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: 99999;
}

.cs_preloader::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--orange-color);
  opacity: 0.08;
}

.cs_preloader .cs_preloader_shape_1 {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translateX(200px) rotate(0deg);
  transform: translateX(200px) rotate(0deg);
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_preloader .cs_preloader_shape_1 {
    display: none;
  }
}

.cs_preloader .cs_preloader_shape_2 {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateX(-190px) rotate(110deg);
  transform: translateX(-190px) rotate(110deg);
  z-index: 1;
}

@media (max-width: 991px) {
  .cs_preloader .cs_preloader_shape_2 {
    display: none;
  }
}

.cs_preloader_in {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 65px;
  height: 65px;
  font-size: 0;
  display: inline-block;
  margin: -32px 0 0 -32px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.cs_preloader_in span {
  background-color: var(--orange-color);
  display: inline-block;
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 65px;
  opacity: 0.5;
  border-radius: 50%;
  -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
  animation: ballPulseDouble 2s ease-in-out infinite;
}

.cs_preloader_in span:last-child {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ballPulseDouble {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
  5. 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;
  }
}

/*--------------------------------------------------------------
  6. General
----------------------------------------------------------------*/
.cs_fs_12 {
  font-size: 12px;
  line-height: 1em;
}

.cs_fs_14 {
  font-size: 14px;
  line-height: 1em;
}

.cs_fs_16 {
  font-size: 16px;
  line-height: 2.19em;
}

.cs_fs_18 {
  font-size: 18px;
  line-height: 1.67em;
}

.cs_fs_21 {
  font-size: 21px;
  line-height: 1.67em;
}

.cs_fs_28 {
  font-size: 28px;
  line-height: 1.43em;
}

@media (max-width: 575px) {
  .cs_fs_28 {
    font-size: 24px;
  }
}

.cs_fs_37 {
  font-size: 37px;
  line-height: 1.35em;
}

@media (max-width: 1200px) {
  .cs_fs_37 {
    font-size: 28px;
  }
}

.cs_fs_67 {
  font-size: 67px;
  line-height: 1.12em;
}

@media (max-width: 1400px) {
  .cs_fs_67 {
    font-size: 60px;
  }
}

@media (max-width: 1200px) {
  .cs_fs_67 {
    font-size: 54px;
  }
}

@media (max-width: 991px) {
  .cs_fs_67 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .cs_fs_67 {
    font-size: 42px;
  }
}

.cs_fs_90 {
  font-size: 90px;
  line-height: 1.22em;
}

@media (max-width: 1400px) {
  .cs_fs_90 {
    font-size: 75px;
  }
}

@media (max-width: 1200px) {
  .cs_fs_90 {
    font-size: 67px;
  }
}

@media (max-width: 991px) {
  .cs_fs_90 {
    font-size: 56px;
  }
}

@media (max-width: 575px) {
  .cs_fs_90 {
    font-size: 48px;
  }
}

.cs_fs_140 {
  font-size: 140px;
  line-height: 1.07em;
}

@media (max-width: 1600px) {
  .cs_fs_140 {
    font-size: 90px;
  }
}

@media (max-width: 991px) {
  .cs_fs_140 {
    font-size: 75px;
  }
}

@media (max-width: 575px) {
  .cs_fs_140 {
    font-size: 60px;
  }
}

.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_heading_font {
  font-family: var(--heading-font);
}

.cs_body_font {
  font-family: var(--body-font);
}

.cs_radius_3 {
  border-radius: 3px;
}

.cs_radius_5 {
  border-radius: 5px;
}

.cs_radius_15 {
  border-radius: 15px;
}

.cs_radius_30 {
  border-radius: 30px;
}

.cs_radius_50 {
  border-radius: 50%;
}

.cs_mp_0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1400px) {
  .cs_row_gap_50 {
    margin-left: -25px;
    margin-right: -25px;
  }

  .cs_row_gap_50>* {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.cs_gap_y_30 {
  gap: 30px 0;
}

.cs_gap_y_40 {
  gap: 40px 0;
}

.cs_gap_y_80 {
  gap: 80px 0;
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--border-color);
  opacity: 1;
}

.cs_bg_filed {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.cs_bg_fixed {
  background-attachment: fixed;
}

@media (max-width: 1370px) {
  .cs_bg_fixed {
    background-attachment: initial;
  }
}

.cs_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs_white_color {
  color: var(--white-color);
}

.cs_heading_color {
  color: var(--heading-color);
}

.cs_body_color {
  color: var(--body-color);
}

.cs_gray_color {
  color: var(--gray-color);
}

.cs_gray2_color {
  color: var(--gray2-color);
}

.cs_accent_color {
  color: var(--accent-color);
}

.cs_orange_color {
  color: var(--orange-color);
}

.cs_blue_color {
  color: var(--blue-color);
}

.cs_white_bg {
  background-color: var(--white-color);
}

.cs_heading_bg {
  background-color: var(--heading-color);
}

.cs_secondary_bg {
  background-color: var(--body-color);
}

.cs_gray_bg {
  background-color: var(--gray-color);
}

.cs_gray2_bg {
  background-color: var(--gray2-color);
}

.cs_accent_bg {
  background-color: var(--blue-color);
}

.cs_orange_bg {
  background-color: var(--orange-color);
}

.cs_blue_bg {
  background-color: var(--blue-color);
}

.cs_yellow_bg {
  background-color: var(--yellow-color);
}

.cs_blue_bg {
  background-color: var(--blue-color);
}


.cs_slider.cs_style_1 .cs_yellow_bg {
  color: black;
}

.cs_slider.cs_style_1 .cs_blue_bg:hover {
  color: black;
}

.cs_slider.cs_style_1 .cs_yellow_bg:before {
  background-color: var(--blue-color) !important;
}

.cs_slider.cs_style_1 .cs_blue_bg:before {
  background-color: var(--yellow-color) !important;
}






label {
  display: inline-block;
  margin-bottom: 5px;
}



.cs_half_screen_right {
  height: 100%;
  width: 50vw;
  margin-left: -14px;
}

@media (max-width: 991px) {
  .cs_half_screen_right {
    width: 100%;
    margin-left: 0;
  }
}

.cs_half_screen_left {
  height: 100%;
  width: calc(50vw + 14px);
  margin-left: calc(-50vw + 100%);
}

@media (max-width: 991px) {
  .cs_half_screen_left {
    width: 100%;
    margin-left: 0;
  }
}

.cs_btn.cs_style_1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 30px;
  outline: none;
  border: none;
  font-family: var(--heading-font);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.29, 0.36, 0.13, 0.44);
  transition: all 0.4s cubic-bezier(0.29, 0.36, 0.13, 0.44);
}

.btn-image img {
  margin-right: 5px;
  position: relative;
  z-index: 5;
}

.btn-image {
  color: black;
}


.btn-image {}

.cs_btn.cs_style_1 .cs_btn_text {
  position: relative;
  z-index: 1;
}

.cs_btn.cs_style_1::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--blue-color);
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transition: all 0.4s cubic-bezier(0.29, 0.36, 0.13, 0.44);
  transition: all 0.4s cubic-bezier(0.29, 0.36, 0.13, 0.44);
}

.cs_btn.cs_style_1.cs_accent_hover::before {
  background-color: var(--yellow-color);
}

.cs_btn.cs_style_1.cs_dark_hover::before {
  background-color: var(--heading-color);
}

.cs_btn.cs_style_1:hover {
  background-color: transparent;
  color: var(--white-color);
}

.cs_btn.cs_style_1:hover::before {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.cs_player_btn.cs_style_1 {
  width: 70px;
  height: 70px;
  position: relative;
}

.cs_player_btn.cs_style_1 img {
  position: relative;
  z-index: 1;
}

.cs_player_btn.cs_style_1::before,
.cs_player_btn.cs_style_1::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  -webkit-animation: scale-up 4s linear infinite;
  animation: scale-up 4s linear infinite;
}

.cs_player_btn.cs_style_1::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.cs_player_btn.cs_style_2 {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cs_player_btn.cs_style_2 img {
  position: relative;
  z-index: 1;
}

.cs_player_btn.cs_style_2::before,
.cs_player_btn.cs_style_2::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
  border: 4px solid var(--accent-color);
  border-radius: inherit;
  -webkit-animation: border-scale 6s cubic-bezier(0.29, 0.36, 0.13, 0.44) infinite;
  animation: border-scale 6s cubic-bezier(0.29, 0.36, 0.13, 0.44) infinite;
}

.cs_player_btn.cs_style_2::after {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.cs_player_btn.cs_style_3 {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_player_btn.cs_style_3:before,
.cs_player_btn.cs_style_3: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%;
  border: 3px solid currentColor;
  border-radius: 50%;
  -webkit-animation: playBtnAnim 4s linear infinite;
  animation: playBtnAnim 4s linear infinite;
}

.cs_player_btn.cs_style_3:after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.cs_section_heading.cs_style_1 .cs_section_subtitle {
  margin-bottom: 7px;
}

.cs_social_btns.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.cs_social_btns.cs_style_1 a {
  width: 35px;
  height: 35px;
}

.cs_page_heading {
  height: 600px;
  padding: 120px 0 50px;
}

@media (max-width: 991px) {
  .cs_page_heading {
    height: 420px;
  }
}

.cs_page_heading .breadcrumb-item+.breadcrumb-item::before {
  content: "//";
  color: var(--white-color);
}

.cs_page_heading .breadcrumb {
  color: var(--accent-color);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}

.cs_page_heading .breadcrumb-item.active {
  color: var(--white-color);
}

/*------------------------------------------
 Scroll Top Button
-------------------------------------------*/
.cs_scrollup {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 40px;
  right: 30px;
  -webkit-transform: translateY(100px) scale(0);
  transform: translateY(100px) scale(0);
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

.cs_scrollup i {
  color: black;
}

.cs_scrollup:hover {
  background-color: var(--blue-color);
}

.cs_scrollup:hover i {
  color: white;
}

.cs_scrollup.cs_scrollup_show {
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}


.banner {
  padding-top: 84px;
  padding-bottom: 84px;
  background-size: cover;
  object-fit: cover;
  width: 100%;
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: black;
  opacity: 0.3;
}

.banner .container {
  position: relative;
  z-index: 10;
}


.banner h2 {
  color: white !important;
  font-size: 35px;
  margin-bottom: 10px;
}

.banner ul {
  display: flex;
  flex-direction: row;
  padding-left: 0px;
  gap: 25px;
  margin-bottom: 0px;
}


.banner ul li {
  list-style-type: none;
  position: relative;
}

.banner ul li a {
  color: white;
  font-weight: 500;
}

.banner ul li::after {
  position: absolute;
  right: -16px;
  content: "-";
  font-weight: bold;
  color: white;
}


.banner ul li:last-child::after {
  display: none;
}

.banner ul li a:hover {
  color: var(--blue-color);
  transition: all ease 0.4s;
}


.cs_scrollup i {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  -webkit-animation: slide-up 4s cubic-bezier(0.45, 0.04, 0.38, 0.79) infinite;
  animation: slide-up 4s cubic-bezier(0.45, 0.04, 0.38, 0.79) infinite;
}

@-webkit-keyframes slide-up {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

@keyframes slide-up {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

/*------------------------------------------
 Start Rating
 ------------------------------------------ */
.cs_rating_percentage,
.cs_rating {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 126px;
  height: 24px;
  font-size: 16px;
  position: relative;
  letter-spacing: 4px;
  overflow: hidden;
}

.cs_rating_percentage::before,
.cs_rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
}

/*------------------------------------------
 End Rating
 ------------------------------------------ */
/*------------------------------------------
 Start Accordion
 ------------------------------------------ */
.cs_accordians.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: 25px;
  position: relative;
  z-index: 1;
}

.cs_accordians.cs_style_1 .cs_accordian {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(118, 131, 133, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(118, 131, 133, 0.3);
}

.cs_accordians.cs_style_1 .cs_accordian .cs_accordian_body {
  padding: 0 110px 35px 30px;
}

@media (max-width: 991px) {
  .cs_accordians.cs_style_1 .cs_accordian .cs_accordian_body {
    padding: 0 20px 30px;
  }
}

.cs_accordians.cs_style_1 .cs_accordian .cs_accordian_body .p {
  margin: 0;
}

.cs_accordians.cs_style_1 .cs_accordian .cs_accordian_head {
  padding: 30px 65px 30px 30px;
  position: relative;
  cursor: pointer;
}

@media (max-width: 991px) {
  .cs_accordians.cs_style_1 .cs_accordian .cs_accordian_head {
    padding: 30px 60px 30px 20px;
  }
}

.cs_accordians.cs_style_1 .cs_accordian .cs_accordian_head::before {
  content: "";
  width: 6px;
  height: 28px;
  background-color: var(--blue-color);
  position: absolute;
  top: 33px;
  left: 0;
}

.cs_accordians.cs_style_1 .cs_accordian.active .cs_accordian_head {
  padding: 30px 60px 12px 30px;
  pointer-events: none;
}

@media (max-width: 991px) {
  .cs_accordians.cs_style_1 .cs_accordian.active .cs_accordian_head {
    padding: 30px 60px 12px 20px;
  }
}

.cs_accordians.cs_style_1 .cs_accordian.active .cs_accordian_toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg) scale(0);
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.cs_accordians.cs_style_1 .cs_accordian .cs_accordian_toggle {
  width: 28px;
  height: 28px;
  top: 36px;
  right: 25px;
}

.cs_accordians.cs_style_1 .cs_accordian .cs_accordian_toggle::before,
.cs_accordians.cs_style_1 .cs_accordian .cs_accordian_toggle::after {
  content: "";
  width: 16px;
  height: 2px;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.cs_accordians.cs_style_1 .cs_accordian .cs_accordian_toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 1199px) {
  .cs_accordians.cs_style_1 .cs_accordian .cs_accordian_toggle {
    top: 26px;
    right: 20px;
  }
}

.cs_faq_shape_1 {
  top: 100px;
  left: -220px;
  -webkit-transform: rotate(-12deg);
  transform: rotate(-12deg);
  opacity: 0.4;
}

.cs_faq_shape_2 {
  bottom: 100px;
  right: -220px;
  -webkit-transform: rotate(-12deg);
  transform: rotate(-12deg);
  opacity: 0.4;
}

#faq .figura {
  position: absolute;
  left: 50px;
  top: 22%;
}

.color-black {
  color: black;
}

/*------------------------------------------
 End Accordion
 ------------------------------------------ */
/*------------------------------------------
 Start Progressbar
 ------------------------------------------ */
.cs_progress {
  background: rgba(85, 85, 85, 0.15);
  height: 10px;
  border-radius: 5px;
}

.cs_progress .cs_progress_in {
  height: 100%;
  position: relative;
  border-radius: inherit;
}

.cs_progress .cs_progress_in span {
  -webkit-box-shadow: 0px 0px 10px rgba(85, 85, 85, 0.2);
  box-shadow: 0px 0px 10px rgba(85, 85, 85, 0.2);
  background-color: var(--white-color);
  position: absolute;
  line-height: 1.5em;
  right: -18px;
  bottom: 100%;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 5px 5px 0 0;
  min-width: 40px;
  text-align: center;
}

.cs_progress .cs_progress_in span::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: var(--white-color);
  left: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: -4px;
  margin-left: -4px;
}

.cs_progress_heading {
  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;
}

/*------------------------------------------
 End Progressbar
 ------------------------------------------ */
/*------------------------------------------
 Start Donation Form
 ------------------------------------------ */
.cs_donate_form_1 .cs_input_amount,
.cs_donate_form_1 .cs_donate_input {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  height: 50px;
  padding: 10px 30px;
  border: none;
  outline: none;
}

.cs_donate_form_1 .cs_fixed_amount_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .cs_donate_form_1 .cs_fixed_amount_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cs_donate_form_1 .cs_fixed_amount_item {
  height: 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.cs_donate_form_1 .cs_fixed_amount_check {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  cursor: pointer;
  opacity: 0;
}

.cs_donate_form_1 .cs_fixed_amount_check:checked+label {
  background-color: var(--orange-color);
  color: var(--white-color);
}

.cs_donate_form_1 .cs_fixed_amount_item label {
  margin: 0;
  height: 100%;
}

.cs_donate_form_1 .cs_custom_amount_btn {
  display: block;
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 20px;
  outline: none;
}

.cs_donate_form_1 .cs_btn.cs_style_1.cs_custom_amount_btn::before {
  background-color: var(--accent-color);
}

.cs_donate_form_1 .cs_btn.cs_style_1.cs_custom_amount_btn:hover {
  color: var(--white-color);
}

.cs_donate_form_1 .cs_btn.cs_style_1::before {
  background-color: var(--white-color);
}

.cs_donate_form_1 .cs_btn.cs_style_1:hover {
  background-color: transparent;
  color: var(--body-color);
}

/*------------------------------------------
 End Donation Form
 ------------------------------------------ */
/*------------------------------------------
 Start Video Section
 ------------------------------------------ */
.cs_video.cs_style_1 {
  width: 100%;
  height: 100%;
  min-height: 650px;
}

/*------------------------------------------
  End Video Section
 ------------------------------------------ */
@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

@keyframes scale-up {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

@-webkit-keyframes border-scale {
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.4);
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

@keyframes border-scale {
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.4);
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

@-webkit-keyframes playBtnAnim {
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@keyframes playBtnAnim {
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes slide-left {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slide-left {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/*--------------------------------------------------------------
  7. Slider
----------------------------------------------------------------*/
.slick-arrow {
  cursor: pointer;
}

/* .draggable {
  cursor: url(../img/drag.png) 16 9, ew-resize !important;
} */

.slick-current .cs_hero.cs_style_1 .cs_hero_title {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.slick-current .cs_hero.cs_style_1 .cs_hero_subtitle {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.slick-current .cs_hero.cs_style_1 .cs_btn_group {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.slick-current .cs_hero.cs_style_1 .cs_player_btn.cs_style_1 {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.slick-slide>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cs_remove_overflow .slick-list {
  overflow: visible;
}

.cs_remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.cs_remove_overflow .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.cs_slider_gap_24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}

.cs_slider_gap_24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.cs_slider_gap_100 .slick-slide {
  padding-left: 50px;
  padding-right: 50px;
}

.cs_slider_gap_100 .slick-list {
  margin-left: -50px;
  margin-right: -50px;
}

.cs_ptb_12 .slick-slide {
  padding-top: 12px;
  padding-bottom: 12px;
}

.cs_ptb_12 .slick-list {
  margin-top: -12px;
  margin-bottom: -12px;
}

.cs_slider_gap_90 .slick-slide {
  padding-left: 45px;
  padding-right: 45px;
}

.cs_slider_gap_90 .slick-list {
  margin-left: -45px;
  margin-right: -45px;
}

@media (max-width: 1199px) {
  .cs_slider_arrows.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;
    gap: 20px;
    margin-top: 40px;
  }
}

.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_left,
.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_right {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1199px) {

  .cs_slider_arrows.cs_style_1 .cs_arrow_wrap_left,
  .cs_slider_arrows.cs_style_1 .cs_arrow_wrap_right {
    position: initial;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.cs_slider_arrows.cs_style_1 .cs_arrow_wrap {
  width: calc((100vw - 1290px) / 2);
}

@media (max-width: 1400px) {
  .cs_slider_arrows.cs_style_1 .cs_arrow_wrap {
    width: calc((100vw - 1110px) / 2);
  }
}

@media (max-width: 1199px) {
  .cs_slider_arrows.cs_style_1 .cs_arrow_wrap {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.cs_slider_arrows.cs_style_1 .cs_left_arrow,
.cs_slider_arrows.cs_style_1 .cs_right_arrow {
  height: 70px;
  width: 70px;
  background-color: transparent;
  color: var(--heading-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {

  .cs_slider_arrows.cs_style_1 .cs_left_arrow,
  .cs_slider_arrows.cs_style_1 .cs_right_arrow {
    width: 50px;
    height: 50px;
  }
}

.cs_slider_arrows.cs_style_1 .cs_left_arrow:hover,
.cs_slider_arrows.cs_style_1 .cs_right_arrow:hover {
  background-color: var(--yellow-color);
  color: var(--white-color);
}

.cs_slider_arrows.cs_style_1 .cs_right_arrow svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_left {
  left: 0;
}

.cs_slider_arrows.cs_style_1 .cs_arrow_wrap_right {
  right: 0;
}

.cs_pagination.cs_style_1 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1600px) {
  .cs_pagination.cs_style_1 {
    right: 10%;
  }
}

@media (max-width: 991px) {
  .cs_pagination.cs_style_1 {
    left: 50%;
    top: calc(100% - 95px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.cs_pagination.cs_style_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 991px) {
  .cs_pagination.cs_style_1 ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.cs_pagination.cs_style_1 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cs_pagination.cs_style_1 li button {
  height: 15px;
  width: 15px;
  font-size: 0;
  color: transparent;
  padding: 0;
  background-color: var(--white-color);
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_pagination.cs_style_1 li.slick-active button {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
  8. 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;
}

#goog-gt-tt {
  display: none !important;
}

:focus-visible {
  outline: none !important;
}

font {
  background-color: transparent !important;
  box-shadow: none !important;
}

.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0px !important;
}

.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*/
/*--------------------------------------------------------------
9. Header
----------------------------------------------------------------*/
.cs_site_header {
  /* position: absolute; */
  z-index: 101;
  width: 100%;
  left: 0;
  top: 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_site_header.cs_gescout_show {
  top: 0 !important;
  opacity: 1;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.2);
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.2);
}

.cs_site_header.cs_gescout_show.cs_site_header.cs_style_1 {
  border-bottom: 0;
}



.cs_site_header.cs_style_1.cs_gescout_sticky {
  position: fixed !important;
  top: 0px;
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-bottom: 0;

}

.cs_site_header {
  transition: all 0.4s ease;
}


@keyframes stickyDrop {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.cs_site_header {
  transition: all 0.3s ease;
}

/* Sticky con animación */
.cs_site_header.cs_style_1.cs_gescout_sticky {
  position: fixed !important;
  top: 0;
  opacity: 1;
  background-color: var(--heading-color);
  border-bottom: 0;
  animation: stickyDrop 0.4s ease forwards;
}


.cs_site_header.cs_style_1.cs_gescout_sticky .cs_main_header .container-fluid {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}


.cs_site_header.cs_style_1.cs_gescout_sticky .cs_site_branding img {
  max-width: 250px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.cs_site_header.cs_style_1.cs_gescout_sticky .cs_top_heaer {
  display: none;
}


.cs_site_header.cs_style_1.cs_gescout_sticky .cs_main_header_left {
  border-right: 0;
}

.cs_site_header.cs_style_1.cs_gescout_sticky .cs_main_header_right {
  border-left: 0;
}

.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: 100%;
}

.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;
  padding-right: 80px;

}

.cs_top_heaer {
  /* background-color: var(--blue-color); */
  background-color: var(--blue-color);
  align-items: center;
  display: flex;
  justify-content: center;
  padding-top: 18px;
  padding-bottom: 18px;

}

.cs_top_heaer ul li a {
  color: white;
  font-size: 17px;
}

.cs_top_heaer ul li a:hover {
  color: var(--yellow-color);
  transition: all ease 0.4s;
}

.cs_top_heaer ul {
  padding-left: 0px;
  list-style-type: none;
  margin-bottom: 0px;
}

.cs_top_heaer .info_contact {
  display: flex;
  flex-direction: row;
  padding-left: 0px;
  list-style-type: none;
  column-gap: 40px;
}

.cs_top_heaer .info_contact li img {
  margin-right: 5px;
}

.cs_top_heaer .link_contact {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  column-gap: 45px;
}

.cs_top_heaer .link_contact li ul {
  display: flex;
  flex-direction: row;
}


.container-g {
  max-width: 1680px;
}


.cs_top_heaer .link_contact .social {
  display: flex;
  flex-direction: row;
  gap: 10px;

}

.cs_top_heaer .link_contact .social li a:hover {
  font-variant: var(--yellow-color);
  transition: all ease 0.4s;
}


.cs_top_heaer .link_contact .language button {
  border: none;
  background-color: transparent;
  outline: none;

}



.cs_top_heaer .link_contact .language {
  display: flex;
  flex-direction: row;
  column-gap: 5px;
}


.cs_top_heaer .link_contact .language button:hover {
  transform: scale(1.1);
  transition: all ease 0.4s;

}


.cs_site_branding img {
  width: 100%;
}


#causes h2 {
  color: white;
  font-size: 50px;
}

#causes .cs_btn.cs_style_1::before {
  background-color: white !important;
}

#causes .cs_btn.cs_style_1:hover {
  color: black !important;
}


#causes .cs_card_thumbnail {
  display: block;
  overflow: hidden;
}

#causes .cs_card_thumbnail:hover img {
  transform: scale(1.1);
  transition: all ease 0.4s;
}


#causes .title:hover h3 {
  color: var(--blue-color);
  transition: all ease 0.4s;
  display: -webkit-box;

}

#causes .title:hover h3 {
  max-height: 100%;
  height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}


#causes .p {
  color: var(-s-blue-color);
  transition: all ease 0.4s;
  max-height: 100%;
  height: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
}


.cs_section_title {
  font-size: 50px;
}








@media (max-width: 1600px) {
  .cs_site_header.cs_style_1 .cs_main_header_left {
    padding-right: 30px;
  }
}

@media (max-width: 1365px) {
  .cs_site_header.cs_style_1 .cs_main_header_left {
    padding-right: 15px;
    border: 0;
  }
}

.cs_site_header.cs_style_1 .cs_main_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 50px;
  padding-left: 70px;

}

.cs_site_header.cs_style_1 .cs_main_header_right .cs_btn.cs_style_1 {
  background-color: var(--yellow-color);
  color: black;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 50px;
}

.cs_site_header.cs_style_1 .cs_main_header_right .cs_btn.cs_style_1 img {
  position: relative;
  z-index: 10;
}

.cs_site_header.cs_style_1 .cs_main_header_right .cs_btn.cs_style_1::before {
  background-color: var(--blue-color);

}





.cs_site_header.cs_style_1 .cs_main_header_right .cs_btn.cs_style_1 img {
  margin-right: 10px;
}




@media (max-width: 1600px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    padding-left: 30px;
  }
}

@media (max-width: 1365px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    padding-left: 0;
    border: 0;
  }
}



@media (max-width: 450px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {
    display: none;
  }
}

.cs_site_header.cs_style_1 .cs_nav .cs_nav_list>li {
  position: relative;
}

.cs_site_header.cs_style_1 .cs_nav .cs_nav_list>li:not(:last-child) {
  margin-right: 40px;
}

@media (max-width: 1400px) {
  .cs_site_header.cs_style_1 .cs_nav .cs_nav_list>li:not(:last-child) {
    margin-right: 30px;
  }
}

.cs_site_header_full_width .container {
  max-width: 100%;
  padding: 0 100px;
}

.cs_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs_sticky_header {
   position: fixed !important; 
  width: 100%;
  z-index: 999;
}

.cs_slider{
    margin-top:145px;
}

.banner{
   margin-top:200px;
}

.cs_main_header {
  position: relative;
}

.cs_main_header .container-fluid {
  padding-right: 115px;
  padding-left: 115px;
  background-color: white;
}

@media screen and (min-width: 991px) {
  .cs_site_header.cs_style_1:not(.cs_heading_color) .cs_nav_list>li>a:hover {
    color: var(--blue-color);
  }

  .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%;
  }

  .cs_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    line-height: 1.6em;
  }

  .cs_nav .cs_nav_list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: inherit;
  }

  .cs_nav .cs_nav_list>li {
    height: inherit;
  }

  .cs_nav .cs_nav_list>li:last-child {
    margin-right: 0;
  }

  .cs_nav .cs_nav_list>li>a {
    padding: 10px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    height: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: black;
    text-transform: none;
    font-size: 19px;
  }

  .cs_nav .cs_nav_list>li>ul {
    left: 0%;
    top: 100%;
    -webkit-transform: perspective(500px) rotatex(-15deg);
    transform: perspective(500px) rotatex(-15deg);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    pointer-events: none;
  }

  .cs_nav .cs_nav_list>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transform: perspective(500px) rotatex(0deg);
    transform: perspective(500px) rotatex(0deg);
    pointer-events: auto;
  }

  .cs_nav .cs_nav_list>li.menu_item_has_children>a {
    position: relative;
  }

  .cs_nav .cs_nav_list>li.menu_item_has_children>a::after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    border: 2px solid currentColor;
    -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 ul {
    width: 260px;
    background-color: var(--white-color);
    color: var(--heading-color);
    position: absolute;
    border-top: 2px solid var(--blue-color);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 0 0 5px 5px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list ul li:hover ul {
    top: 0px;
  }

  .cs_nav .cs_nav_list ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .cs_nav .cs_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
  }

  .cs_nav .cs_nav_list ul ul {
    top: 15px;
    left: 100%;
  }

  .cs_menu_toggle,
  .cs_menu_dropdown_toggle {
    display: none;
  }

  .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: 992px) {
  .cs_main_header.active {
    background-color: var(--heading-color);
  }

  .cs_main_header .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }

  .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: absolute;
    width: calc(100% + 30px);
    height: 100%;
    min-height: 29vh;
    overflow-y: auto;
    left: -15px;
    background-color: var(--blue-color);
    color: var(--white-color);
    top: 100px;
    padding: 30px 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 999999999999;
  }

  .cs_nav .cs_nav_list::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    opacity: 0.5;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 2000;
  }

  .cs_nav .cs_nav_list.cs_active {
    top: 80px;
    visibility: visible;
    opacity: 1;
  }

  .cs_nav .cs_nav_list ul {
    padding-left: 15px;
    display: none;
  }

  .cs_nav .cs_nav_list a {
    display: block;
    padding: 10px 15px;
  }

  .cs_nav .cs_nav_list>li>a {
    font-size: 18px;
  }

  .cs_nav .menu_item_has_children {
    position: relative;
  }

  /*Mobile Menu Button*/
  .cs_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
    color: black;
  }

  .cs_menu_toggle span,
  .cs_menu_toggle span:before,
  .cs_menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }

  .cs_menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .cs_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  .cs_menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
  }

  .cs_site_header.cs_style_1 .cs_menu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }

  .cs_toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .cs_toggle_active span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .cs_toggle_active span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s;
    transition-delay: 0s, 0.2s;
  }

  .cs_nav .cs_nav_list a {
    position: relative;
  }

  .cs_site_header.cs_style_1 .cs_main_header_in {
    height: 80px;
  }

  .cs_site_header .current-menu-item>a:before {
    display: none;
  }

  .cs_site_header.cs_style_1 .cs_main_header_center .cs_site_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .cs_site_header.cs_style_1 {
    top: 0;
  }

  .cs_nav .cs_nav_list img {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .cs_site_header .container {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
  10. Footer
----------------------------------------------------------------*/
.cs_footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 75px 0;
  padding-top: 90px;
}



@media (max-width: 991px) {
  .cs_footer_row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 50px 40px;
    padding: 60px 0;
  }
}

/* .cs_footer_row .cs_footer_col {
  -webkit-box-flex: 1.2;
  -ms-flex: 1.2;
  flex: 1.2;
} */

@media (max-width: 991px) {
  .cs_footer_row .cs_footer_col {
    -webkit-box-flex: 0 !important;
    -ms-flex: none !important;
    flex: none !important;
    width: calc(50% - 20px);
  }
}

@media (max-width: 470px) {
  .cs_footer_row .cs_footer_col {
    width: 100%;
  }
}

/* .cs_footer_row .cs_footer_col:first-child {
  -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
}

.cs_footer_row .cs_footer_col:nth-child(2) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
} */

.cs_footer_row .cs_footer_widget_title {
  margin-bottom: 32px;
}

.cs_footer_widget_menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs_footer_widget_menu li a {
  font-size: 20px;
}

.cs_footer_widget_menu li:not(:last-child) {
  margin-bottom: 10px;
}

.cs_footer_text_widget p {
  margin-bottom: 0;
}

.cs_footer_text_widget img+p {
  margin-top: 28px;
}

.cs_copyright a {
  color: var(--accent-color);
}

.cs_footer_bottom {
  border-top: 1px solid var(--body-color);
}

.bg-copy {
  background-color: #005e82;
}

.cs_footer_bottom_in {
  display: flex;
  align-items: center;
  justify-content: center !important;
}

.cs_footer_bottom_in p {
  text-align: center;
}

.cs_footer_bottom_in p a {
  color: white;
}

.cs_footer_bottom_in p a:hover {
  color: var(--yellow-color);
  transition: all ease 0.4s;
}

.cs_footer_bottom_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px 0;
  gap: 5px 25px;
}

#whatsappflotante {
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  z-index: 99999;
  filter: drop-shadow(-2px 2px 15px rgba(0, 0, 0, 0.7));
}

#whatsappflotante:hover {
  opacity: 0.8;
  filter: drop-shadow(0px 2px 2px #000);
}


@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-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

.cs_footer_bottom_in .cs_footer_widget_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2px 30px;
}

.cs_footer_bottom_in .cs_footer_widget_menu li {
  margin-bottom: 0;
}

.cs_footer_widget_menu a,
.cs_copyright a,
.cs_page_heading .breadcrumb a {
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.cs_footer_widget_menu a:hover,
.cs_copyright a:hover,
.cs_page_heading .breadcrumb a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.cs_footer.cs_style_1 {
  padding-top: 1px;
  margin-top: 134px;
  position: relative;
}


.cs_footer.cs_style_1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: black;
  opacity: 0.6;
}

.footer-contact {
  background-color: var(--blue-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer-contact ul li {
  list-style-type: none;
  color: white;
}

.footer-contact ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  gap: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-contact ul li a:hover {
  color: var(--yellow-color);
  transition: all ease 0.4s;
}


.cs_footer.cs_style_1 .container {
  position: relative;
  z-index: 10;
}


.cs_footer.cs_style_1 .cs_newsletter.cs_style_1 {
  margin-top: -70px;
  z-index: 10;
  position: relative;
}


.cs_footer.cs_style_1 .cs_footer_widget a img {
  max-width: 171px;

}

.cs_footer.cs_style_1 .cs_social_btns.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.cs_footer.cs_style_1 .cs_social_btns.cs_style_1 a {
  height: 35px;
  width: 35px;
  color: black;
}

.cs_footer.cs_style_1 .cs_social_btns.cs_style_1 a:hover {
  background-color: var(--yellow-color);

}

/*--------------------------------------------------------------
  11. Sidebar
----------------------------------------------------------------*/
.cs_right_sidebar {
  padding: 35px;
  margin-left: 40px;
}

@media (max-width: 1400px) {
  .cs_right_sidebar {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .cs_right_sidebar {
    padding: 35px 25px;
  }
}

.cs_sidebar_item:not(:last-child) {
  margin-bottom: 45px;
}

.cs_sidebar_widget_title {
  font-size: 28px;
  margin-bottom: 28px;
  font-weight: 600;
}

.tag_cloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

.tag_cloud_link {
  line-height: 1.6em;
  border: 1px solid var(--body-color);
  padding: 6px 20px;
  display: inline-block;
  margin: 5px;
}

.tag_cloud_link:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.widget_archive,
.widget_categories {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
}

.widget_archive ul,
.widget_categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget_archive ul li,
.widget_categories ul li {
  padding-left: 35px;
  position: relative;
}

.widget_archive ul li::before,
.widget_categories ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  height: 20px;
  width: 20px;
  border: 2px solid var(--heading-color);
  border-radius: 3px;
}

.widget_archive ul li::after,
.widget_categories ul li::after {
  content: "";
  height: 7px;
  width: 7px;
  border: 2px solid var(--heading-color);
  position: absolute;
  left: 5px;
  top: 9px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-left: 0;
  border-bottom: 0;
}

.widget_archive ul li:not(:last-child),
.widget_categories ul li:not(:last-child) {
  margin-bottom: 10px;
}

.cs_recent_posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cs_recent_posts li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.cs_recent_posts li:not(:last-child) {
  margin-bottom: 20px;
}

.cs_recent_post_thumb {
  height: 95px;
  width: 95px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  overflow: hidden;
}

.cs_recent_post_thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_recent_post_thumb:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.cs_recent_post_title {
  line-height: 1.3em;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cs_sidebar_search {
  position: relative;
}

.cs_sidebar_search input {
  display: block;
  width: 100%;
  background-color: transparent;
  outline: none;
  border: 1px solid var(--body-color);
  border-radius: 5px;
  padding: 10px 58px 10px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 50px;
}

.cs_sidebar_search input:focus {
  border-color: var(--accent-color);
}

.organismos-h h2{
    color:black !important;
}

.organismos-h .cs_slide{
    display:flex !important;
    align-items:center;
    justify-content:center;
    
}



.cs_sidebar_search_btn {
  position: absolute;
  border: none;
  outline: none;
  top: 1px;
  right: 1px;
  padding: 2px 12px 4px 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 48px;
  width: 54px;
  color: var(--body-color);
  background-color: transparent;
}

.cs_sidebar_search_btn:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
}

@media screen and (max-width: 991px) {
  .cs_sidebar_widget_title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .widget_archive ul li:not(:last-child),
  .widget_categories ul li:not(:last-child) {
    margin-bottom: 12px;
  }
}

/*--------------------------------------------------------------
  12. Newsletter
----------------------------------------------------------------*/
.cs_newsletter.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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 58px 58px;
  gap: 30px;
}


.cs_newsletter.cs_style_1 .cs_btn.cs_style_1 {
  background-color: var(--yellow-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: black;
  font-size: 28px;
  border-radius: 35px;
}

.cs_newsletter.cs_style_1 .cs_btn.cs_style_1 img {
  position: relative;
  z-index: 10;
}


.cs_newsletter.cs_style_1 .cs_btn.cs_style_1::before {
  background-color: white;



}







.cs_newsletter.cs_style_1 h2 {
  font-size: 30px;

}


@media (max-width: 1400px) {
  .cs_newsletter.cs_style_1 {
    padding: 95px 60px;
  }
}

@media (max-width: 1199px) {
  .cs_newsletter.cs_style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 65px 60px;
  }

  .cs_newsletter.cs_style_1 .cs_newsletter_left {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .cs_newsletter.cs_style_1 {
    padding: 65px 30px;
  }
}

@media (max-width: 360px) {
  .cs_newsletter.cs_style_1 {
    padding: 50px 30px 50px;
  }
}

.cs_newsletter.cs_style_1 .cs_newsletter_left {
  position: relative;
  z-index: 1;
}

.cs_newsletter.cs_style_1 .cs_newsletter_title {
  margin-bottom: 8px;
}

.cs_newsletter.cs_style_1 .cs_newsletter_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .cs_newsletter.cs_style_1 .cs_newsletter_form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .cs_newsletter.cs_style_1 .cs_newsletter_form {
    width: 100%;
  }
}

.cs_newsletter.cs_style_1 .cs_newsletter_input {
  width: 330px;
  height: 50px;
  border: none;
  outline: none;
  padding: 5px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 575px) {
  .cs_newsletter.cs_style_1 .cs_newsletter_input {
    width: 100%;
  }
}

.cs_newsletter.cs_style_1 .cs_newsletter_shape_1 {
  bottom: 0;
  left: 100px;
}

@media (max-width: 991px) {
  .cs_newsletter.cs_style_1 .cs_newsletter_shape_1 {
    display: none;
  }
}

.cs_newsletter.cs_style_1 .cs_newsletter_shape_1 img {
  -webkit-transform: translate(-20px, 10px) rotateY(180deg);
  transform: translate(-20px, 10px) rotateY(180deg);
}

.cs_newsletter.cs_style_1 .cs_newsletter_shape_2 {
  left: 58%;
  -webkit-transform: translate(-58%, -10px) rotate(180deg);
  transform: translate(-58%, -10px) rotate(180deg);
  top: 0;
}

@media (max-width: 991px) {
  .cs_newsletter.cs_style_1 .cs_newsletter_shape_2 {
    display: none;
  }
}

.cs_newsletter.cs_style_1 .cs_newsletter_shape_3 {
  right: 0;
  bottom: 0;
  -webkit-transform: translate(10px, 10px);
  transform: translate(10px, 10px);
}

.cs_nav .cs_nav_list ul a {
  text-transform: none;
  line-height: normal;
}

.publicacion-i .sec-title {
  margin-bottom: 30px;
}

.publicacion-i .sec-title .date {
  color: black;
  font-weight: 600;
}

.publicacion-i .sec-title h2 {
  color: var(--blue-color);

}


.publicacion-i .sec-text {
  margin-top: 30px;
}



.contactenos-i .form {
  background-color: #f1f2f6;
  padding: 40px;
  border-radius: 10px;
  height: 100%;
}

.contactenos-i .form h2 {
  font-size: 33px;
}

.contactenos-i .form div {
  font-size: 15px;
}

.contactenos-i .form form {
  margin-top: 40px;
}

.contactenos-i .form form input,
.contactenos-i .form form textarea {
  width: 100%;
  margin-bottom: 30px;
  background-color: #e4e6f2;
  border: 1px solid rgba(128, 128, 128, 0.3);
  border-radius: 5px;
  padding: 13px 10px;
}



.contactenos-i .check input {
  width: auto !important;
}

.contactenos-i .check a {
  text-decoration: underline;
}

.contactenos-i .cs_btn {
  width: 100%;
  font-size: 19px;
}

.contactenos-i .cs_btn:hover {
  color: black !important;
  background-color: var(--yellow-color);
  transition: all ease 0.4s;

}

.contactenos-i .cs_btn::before {
  display: none;
}


.contactenos-i .contact-info {
  background-color: #f1f2f6;
  padding: 40px;
  border-radius: 10px;
}

.contactenos-i .contact-info ul {
  padding-left: 0px;
}

.contactenos-i .contact-info ul li {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.contactenos-i .contact-info ul li span {
  min-width: 65px;
  min-height: 65px;
  background-color: var(--blue-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.contactenos-i .contact-info ul li:last-child {
  margin-bottom: 0px;
}

.contactenos-i h2 {
  font-size: 33px;
}

.contactenos-i iframe {
  margin-top: 20px;
}

.contactenos-i .row {
  align-items: stretch;
}


#mensaje {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mensaje .content-m {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding-bottom: 10%;

}

#mensaje .img-pc {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

#mensaje:before {
  content: "";
  background-color: black;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: 0.5;
}

#mensaje h2 {
  color: white;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.3;
  margin-bottom: 30px;
}

#mensaje .btn-e {
  background-color: #d93020;
  border-radius: 30px;
  border: none;
  color: white;
  font-size: 17px;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 10px;
  padding: 10px 30px;
  font-weight: 600;
  display: inline-block;
}

#mensaje .btn-e:hover {
  background-color: #0278F4;
  transition: background-color 0.5s;
}

.ft .cs_footer.cs_style_1 {
  margin-top: 0px !important;

}




@media (max-width: 991px) {
  .cs_newsletter.cs_style_1 .cs_newsletter_shape_3 {
    display: none;
  }
}

/*--------------------------------------------------------------
  13. Hero
----------------------------------------------------------------*/
.cs_hero.cs_style_1 {
  width: 100%;
  height: 100%;
  min-height: 780px;
  background-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
}


.cs_hero.cs_style_1::after {
  background-color: black;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.3;
}







.cs_hero.cs_style_1 .cs_hero_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 150px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .cs_hero.cs_style_1 .cs_hero_content {
    gap: 60px;
  }
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    text-align: center;
  }
}

.cs_hero.cs_style_1 .cs_hero_text {
  width: 100%;
  max-width: 880px;
}

@media (max-width: 1400px) {
  .cs_hero.cs_style_1 .cs_hero_text {
    max-width: 730px;
  }
}

@media (max-width: 1200px) {
  .cs_hero.cs_style_1 .cs_hero_text {
    max-width: 650px;
  }
}

.cs_hero.cs_style_1 .cs_hero_title {
  margin-bottom: 25px;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.cs_hero.cs_style_1 .cs_hero_subtitle {
  margin-bottom: 60px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_hero_subtitle br {
    display: none;
  }
}

.cs_hero.cs_style_1 .cs_btn_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .cs_hero.cs_style_1 .cs_btn_group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

@media (max-width: 400px) {
  .cs_hero.cs_style_1 .cs_btn_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.cs_hero.cs_style_1 .cs_player_btn.cs_style_1 {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cs_hero.cs_style_1 .cs_hero_shape_1 {
  top: 20%;
  left: 8%;
  -webkit-transform: translate(-8%, -20%) rotateZ(0deg);
  transform: translate(-8%, -20%) rotateZ(0deg);
  -webkit-animation: moving-hand 5s linear infinite;
  animation: moving-hand 5s linear infinite;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_hero.cs_style_1 .cs_hero_shape_2 {
  right: 0;
  bottom: 0;
}

@-webkit-keyframes moving-hand {
  50% {
    -webkit-transform: translate(-8%, -20%) rotateZ(10deg);
    transform: translate(-8%, -20%) rotateZ(10deg);
  }
}

@keyframes moving-hand {
  50% {
    -webkit-transform: translate(-8%, -20%) rotateZ(10deg);
    transform: translate(-8%, -20%) rotateZ(10deg);
  }
}

/*--------------------------------------------------------------
  14. Posts
----------------------------------------------------------------*/
.cs_post.cs_style_1 {
  height: 100%;
  -webkit-box-shadow: 3px 4px 10px 0px rgba(122, 122, 122, 0.2);
  box-shadow: 3px 4px 10px 0px rgba(122, 122, 122, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cs_post.cs_style_1 .cs_post_thumbnail {
  display: inline-block;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.cs_post.cs_style_1 .cs_post_thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.cs_post.cs_style_1 .cs_post_category {
  padding: 10px;
  top: 30px;
  left: 30px;
}

.cs_post.cs_style_1 .cs_post_content {
  padding: 22px 30px 16px;
}

@media (max-width: 1199px) {
  .cs_post.cs_style_1 .cs_post_content {
    padding: 22px 24px 16px;
  }
}

.cs_post.cs_style_1 .cs_post_meta {
  margin-bottom: 12px;
  font-family: var(--heading-font);
  font-weight: bold;
}

.cs_post.cs_style_1 .cs_post_title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cs_post.cs_style_1 .cs_post_title:hover a {
  color: var(--blue-color);
}

.cs_post.cs_style_1 .cs_post_info {
  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_post.cs_style_1 .cs_post_author {
  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_social_btns.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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 7px;
}

.cs_post.cs_style_1 .cs_social_btns.cs_style_1 a {
  width: 22px;
  height: 22px;
  font-size: 10px;
  color: var(--white-color);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cs_post.cs_style_1 .cs_social_btns.cs_style_1 a.active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.cs_post.cs_style_1 .cs_social_btns.cs_style_1 a:hover {
  background-color: var(--heading-color);
}

.cs_post.cs_style_1 .cs_social_btns.cs_style_1 a:last-child {
  font-size: 22px;
  color: var(--heading-color);
  background-color: transparent;
  -webkit-transform: scale(1);
  transform: scale(1);
  cursor: pointer;
}

.cs_post.cs_style_1 hr {
  border-color: var(--gray-color);
  margin-bottom: 16px;
}

.cs_post.cs_style_1:hover .cs_post_thumbnail img {
  -webkit-transform: translateY(10px) scale(1.1);
  transform: translateY(10px) scale(1.1);
}

/*------------------------------------------------
 Start Blog Details
--------------------------------------------------*/
.cs_blog_details img {
  margin-bottom: 40px;
  border-radius: 15px;
}

.cs_blog_details h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cs_blog_details p {
  margin-bottom: 35px;
}

.cs_blog_details p:first-child:first-letter,
.cs_blog_details>img:first-child+p:first-letter {
  float: left;
  font-size: 51px;
  line-height: 0.5em;
  font-weight: 700;
  margin: 10px 10px 0 0;
  text-transform: uppercase;
  font-style: normal;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.cs_blog_details blockquote {
  border-left: 5px solid var(--accent-color);
  font-size: 21px;
  line-height: 1.33em;
  font-style: normal;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
  padding: 15px 30px 15px 30px;
  margin: 40px 0;
}

@media (max-width: 575px) {
  .cs_blog_details blockquote {
    padding: 15px 0px 15px 20px;
  }
}

.cs_blog_details blockquote svg {
  display: block;
  margin-bottom: 25px;
}

.cs_blog_details blockquote small {
  display: block;
  font-family: var(--secondary-font);
  font-style: initial;
  font-size: 18px;
  line-height: 1.66em;
  color: var(--body-color);
  margin-top: 18px;
}

.cs_blog_details ul {
  list-style: disc;
}

.cs_blog_details ul li:not(:last-child) {
  margin-bottom: 5px;
}

.cs_blog_details .cs_video_block.cs_style_1 {
  margin-bottom: 40px;
  height: 450px;
}

.cs_blog_details>* {
  margin-bottom: 0;
}

.cs_post_share {
  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;
  gap: 20px 20px;
}

.cs_categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 16px;
  line-height: 1.6em;
}

.cs_categories a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  background-color: var(--accent-color);
  padding: 2px 15px;
}

.cs_categories a:hover {
  background-color: var(--heading-color);
  color: #fff;
}

.cs_social_share_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--heading-color);
}

.cs_social_share_btns a:hover {
  color: var(--accent-color);
}

.cs_author_card {
  border: 1px solid var(--border-color);
  border-right: 0;
  border-left: 0;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
}

@media (max-width: 767px) {
  .cs_author_card {
    gap: 0 20px;
  }
}

@media (max-width: 575px) {
  .cs_author_card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cs_author_card br {
    display: none;
  }
}

.cs_author_card img {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

@media (max-width: 767px) {
  .cs_author_card img {
    height: 120px;
    width: 120px;
  }
}

.cs_author_card h3 {
  margin-bottom: 12px;
}

.cs_author_card p {
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .cs_author_card .cs_social_btns.cs_style_1 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cs_author_card .cs_social_btns.cs_style_1 a {
  border: 1px solid var(--heading-color);
}

.cs_author_card .cs_social_btns.cs_style_1 a:hover {
  background-color: var(--heading-color);
  color: var(--white-color);
}

/*------------------------------------------------
 End Blog Details
--------------------------------------------------*/
/*--------------------------------------------------------------
  15. CTA
----------------------------------------------------------------*/
.cs_cta.cs_style_1 .cs_cta_content_wrapper {
  width: 100%;
  max-width: 623px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 auto;
}

.cs_cta.cs_style_1 .cs_cta_text {
  position: relative;
  z-index: 1;
}

.cs_cta.cs_style_1 .cs_cta_subtitle {
  margin-bottom: 42px;
}

.cs_cta.cs_style_1 .cs_funfact.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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

.cs_cta.cs_style_1 .cs_funfact_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.cs_cta.cs_style_1 .cs_cta_img_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 575px) {
  .cs_cta.cs_style_1 .cs_cta_img_wrapper {
    gap: 10px;
  }
}

.cs_cta.cs_style_1 .cs_cta_img {
  border-radius: 60px 0 0 0;
  position: absolute;
}

@media (max-width: 1199px) {
  .cs_cta.cs_style_1 .cs_cta_img {
    position: initial;
  }
}

.cs_cta.cs_style_1 .cs_cta_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs_cta.cs_style_1 .cs_cta_img:nth-child(1) {
  top: 25%;
  left: 11%;
}

.cs_cta.cs_style_1 .cs_cta_img:nth-child(2) {
  top: 25%;
  right: 11%;
}

.cs_cta.cs_style_1 .cs_cta_img:nth-child(3) {
  left: 18%;
  bottom: 150px;
}

.cs_cta.cs_style_1 .cs_cta_img:nth-child(4) {
  right: 18%;
  bottom: 150px;
}

.cs_cta.cs_style_1 .cs_cta_img img {
  border-radius: inherit;
}

.cs_cta.cs_style_1 .cs_cta_shape_1 {
  width: 284px;
  height: 284px;
  background: rgba(255, 164, 21, 0.2);
  -webkit-filter: blur(100px);
  filter: blur(100px);
  left: 50%;
  top: 140px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*--------------------------------------------------------------
  16. Testimonial
----------------------------------------------------------------*/
.cs_testimonial.cs_style_1 {
  height: 100%;
  min-height: 460px;
  padding: 50px;
}

@media (max-width: 1399px) {
  .cs_testimonial.cs_style_1 {
    padding: 40px 30px;
  }
}

.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;
  margin-bottom: 40px;
}

.cs_testimonial.cs_style_1 .cs_avatar_thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 60px;
  height: 60px;
}

.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 {
  margin-bottom: -3px;
}

.cs_testimonial.cs_style_1 .cs_testimonial_subtitle {
  font-style: normal;
}

/*--------------------------------------------------------------
  17. Team
----------------------------------------------------------------*/
.cs_team.cs_style_1 {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}

.cs_team.cs_style_1 .cs_team_thumbnail {
  margin-bottom: 26px;
  padding: 1px;
}

.cs_team.cs_style_1 .cs_team_thumbnail img {
  width: 100%;
  border-radius: inherit;
}

.cs_team.cs_style_1 .cs_team_thumbnail_shape {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cs_team.cs_style_1 .cs_team_thumbnail_shape img {
  position: relative;
  z-index: 2;
}

.cs_team.cs_style_1 .cs_team_thumbnail_overlay {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3.93%, rgba(252, 162, 20, 0)), to(rgba(252, 162, 20, 0.8)));
  background: linear-gradient(180deg, rgba(252, 162, 20, 0) 3.93%, rgba(252, 162, 20, 0.8) 100%);
  top: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_team.cs_style_1 .cs_team_thumbnail_overlay.cs_color_1 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3.93%, rgba(252, 162, 20, 0)), to(rgba(255, 143, 171, 0.8)));
  background: linear-gradient(180deg, rgba(252, 162, 20, 0) 3.93%, rgba(255, 143, 171, 0.8) 100%);
}

.cs_team.cs_style_1 .cs_team_thumbnail_overlay.cs_color_2 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3.93%, rgba(252, 162, 20, 0)), to(rgba(52, 109, 255, 0.8)));
  background: linear-gradient(180deg, rgba(252, 162, 20, 0) 3.93%, rgba(52, 109, 255, 0.8) 100%);
}

.cs_team.cs_style_1 .cs_team_thumbnail_overlay.cs_color_3 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3.93%, rgba(252, 162, 20, 0)), to(rgba(255, 197, 106, 0.8)));
  background: linear-gradient(180deg, rgba(252, 162, 20, 0) 3.93%, rgba(255, 197, 106, 0.8) 100%);
}

.cs_team.cs_style_1 .cs_social_btns.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;
  gap: 15px;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translate(-50%, -20px) scale(0);
  transform: translate(-50%, -20px) scale(0);
  z-index: 3;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a {
  color: var(--white-color);
}

.cs_team.cs_style_1 .cs_social_btns.cs_style_1 a:hover {
  color: var(--orange-color);
}

.cs_team.cs_style_1:hover .cs_team_thumbnail_overlay {
  visibility: visible;
  opacity: 1;
}

.cs_team.cs_style_1:hover .cs_social_btns.cs_style_1 {
  -webkit-transform: translate(-50%, -60px) scale(1);
  transform: translate(-50%, -60px) scale(1);
}

/*--------------------------------------------------------------
  18. Card
----------------------------------------------------------------*/
.cs_card.cs_style_1 .cs_card_thumbnail {
  width: 100%;
  border-radius: 15px 15px 0 0;
}

.cs_card.cs_style_1 .cs_card_thumbnail img {
  border-radius: 15px;
  width: 100%;
}

.cs_card.cs_style_1 .cs_card_content {
  padding-bottom: 25px;
}

.cs_card.cs_style_1 .cs_card_title {
  margin-bottom: 17px;
}

@media (max-width: 1399px) {
  .cs_card.cs_style_1 .cs_card_title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .cs_card.cs_style_1 .cs_card_title br {
    display: none;
  }
}

.cs_card.cs_style_1 .cs_card_subtitle {
  margin-bottom: 48px;
}

.cs_card.cs_style_1 .cs_progress_wrap {
  margin-bottom: 16px;
}

.cs_card.cs_style_1 .cs_progress_heading {
  margin-bottom: 15px;
}

.cs_card.cs_style_1 .cs_card_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 17px 25px 0px;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(28, 28, 28, 0.25);
  box-shadow: 0px 4px 10px 0px rgba(28, 28, 28, 0.25);
  border-radius: 0 0 15px 15px;
}

@media (max-width: 1399px) {
  .cs_card.cs_style_1 .cs_card_info {
    padding: 17px 20px 0px;
  }
}

.cs_card.cs_style_1 .cs_btn.cs_style_1 {
  display: inline-block;
  text-align: center;
  margin-bottom: -25px;
}

.cs_btn.cs_blue_bg::before {
  background-color: var(--yellow-color);
}

.cs_btn.cs_blue_bg:hover {
  color: black;
}

.cs_card.cs_style_2 .cs_card_thumbnail {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.cs_card.cs_style_2 .cs_card_thumbnail::after {
  content: "";
  position: absolute;
  background-color: black;
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  opacity: 0.3;
}

.cs_card.cs_style_2 .cs_card_thumbnail img {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;

}

.cs_card.cs_style_2 .cs_card_info {
  width: 100%;
  height: 100%;
  padding: 35px 43px;
  top: 0;
  left: 0;
  z-index: 5;
}

@media (max-width: 991px) {
  .cs_card.cs_style_2 .cs_card_info {
    padding: 35px 20px;
  }
}

.cs_card.cs_style_2 .cs_card_title {
  margin-bottom: 21px;
}

@media (max-width: 450px) {
  .cs_card.cs_style_2 .cs_card_title {
    font-size: 24px;
  }
}

.cs_card.cs_style_2 .cs_card_icon {
  width: 110px;
  height: 110px;
  bottom: 10px;
  right: 0;
  border-radius: 15px 0 0 0;
}

.dmt .mt {
  margin-top: 0px;

}

.hacemos-i .cs_about_content {
  padding-left: 0px !important;
}

.hacemos-i .cs_btn_group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hacemos-i .cs_btn_group a:last-child img {
  max-width: 25px;
  margin-right: 10px;
  position: relative;
  z-index: 10;
}

.hacemos-i .cs_btn_group a:last-child::before {
  background-color: var(--blue-color);
}

.hacemos-i .cs_btn_group a:last-child:hover {
  color: white !important;
}

@media (max-width: 1399px) {
  .cs_card.cs_style_2 .cs_card_icon {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 991px) {
  .cs_card.cs_style_2 .cs_card_icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .cs_card.cs_style_2 .cs_card_icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 420px) {
  .cs_card.cs_style_2 .cs_card_icon {
    width: 70px;
    height: 70px;
  }
}

.cs_card.cs_style_2:hover .cs_card_thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*------------------------------------------------------
 19. Funfact
--------------------------------------------------------*/
.cs_funfact_list.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  gap: 28px 0;
}

.cs_funfact_list.cs_style_1 .cs_funfact.cs_style_1 {
  width: 50%;
  padding: 0 12px;
}

@media (max-width: 420px) {
  .cs_funfact_list.cs_style_1 .cs_funfact.cs_style_1 {
    width: 100%;
  }
}

.cs_funfact_list.cs_style_1 .cs_funfact.cs_style_1 .cs_funfact_number {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue-color);
  margin-bottom: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*--------------------------------------------------------------
20. Modal
----------------------------------------------------------------*/
.cs_modal {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
}

.cs_modal.active {
  opacity: 1;
  visibility: visible;
}

.cs_modal_container {
  width: 100%;
  max-width: 1230px;
  margin: auto;
  position: relative;
  z-index: 2;
  padding: 45px 50px 55px;
}

@media (max-width: 400px) {
  .cs_modal_container {
    padding: 30px 15px;
  }
}

.cs_modal_in {
  padding: 60px 20px 30px;
}

.cs_close_overlay {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  background-color: rgba(13, 12, 23, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.cs_close_modal {
  padding: 0;
  border: none;
  height: 25px;
  width: 25px;
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: transparent;
  color: var(--heading-color);
  font-size: 18px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cs_close_modal:hover {
  color: red;
  border-color: red;
}

.cs_modal_btn {
  cursor: pointer;
}

.cs_modal.cs_size_sm .cs_modal_container {
  width: 100%;
  max-width: 872px;
}

/*--------------------------------------------------------
  21. About
 --------------------------------------------------------- */
.cs_about.cs_style_1 .cs_about_thumbnail_wrapper {
  position: relative;
  z-index: 1;
}

#about h2 {
  font-size: 67px !important;
}


#about.quienes-i h2 {
  font-size: 50px !important;

}

.preguntas-i {}


.cs_about.cs_style_1 {
  position: relative !important;
}

.cs_about.cs_style_1 .figura {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.cs_about.cs_style_1 .cs_about_thumbnail_1 img {
  width: 100%;
  border-radius: inherit;
}

.cs_about.cs_style_1 .cs_about_thumbnail_2 {
  padding-left: 45%;
  border-radius: 0 0 5px 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.cs_about.cs_style_1 .cs_about_thumbnail_2 img {
  border: 15px solid var(--white-color);
  border-right: 0;
  border-bottom: 0;
  border-radius: inherit;
}

.cs_about.cs_style_1 .cs_about_content {
  position: relative;
  z-index: 1;
  padding-left: 75px;
}

@media (max-width: 1199px) {
  .cs_about.cs_style_1 .cs_about_content {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .cs_about.cs_style_1 .cs_about_content {
    padding-left: 0;
  }
}

.cs_about.cs_style_1 .cs_about_text {
  margin-bottom: 0px;
  color: ;
}

.cs_about.cs_style_1 .cs_about_shape_1 {
  top: 60%;
  right: -200px;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
}

@media (max-width: 1650px) {
  .cs_about.cs_style_1 .cs_about_shape_1 {
    display: none;
  }
}

/*-----------------------------------------------------
  22. Gallery
------------------------------------------------------- */
.cs_horizontal_slider_wrapper {
  overflow-x: hidden;
}

.cs_horizontal_slider_wrapper:hover .cs_gallery_list {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.cs_horizontal_slider_wrapper.cs_style_1 .cs_gallery_list {
  -webkit-animation-duration: 45s;
  animation-duration: 45s;
}

.cs_horizontal_slider_wrapper.cs_style_2 .cs_gallery_list {
  animation-direction: reverse;
  -webkit-animation-duration: 55s;
  animation-duration: 55s;
}

.cs_horizontal_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}

.cs_gallery_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin: 0 12px;
  -webkit-animation: slide-left 10s linear infinite;
  animation: slide-left 10s linear infinite;
}

.cs_gallery_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 618px;
  height: 100%;
}

@media (max-width: 1399px) {
  .cs_gallery_item {
    max-width: 450px;
  }
}

@media (max-width: 991px) {
  .cs_gallery_item {
    max-width: 280px;
  }
}

.cs_gallery_item img {
  border-radius: inherit;
}

.cs_gallery_item::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 164, 21, 0)), to(var(--yellow-color)));
  background: linear-gradient(180deg, rgba(255, 164, 21, 0) 0%, var(--yellow-color) 100%);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cs_gallery_item .cs_gallery_icon {
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cs_gallery_item:hover::before {
  opacity: 0.7;
}

.cs_gallery_item:hover .cs_gallery_icon {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

/*------------------------------------------------------------
 23. Contact
--------------------------------------------------------------*/
.cs_contact_section.cs_style_1 {
  width: 100%;
}

.cs_contact_section.cs_style_1 .cs_half_screen_left {
  width: calc(50vw + 0px);
}

@media (max-width: 991px) {
  .cs_contact_section.cs_style_1 .cs_half_screen_left {
    width: 100%;
  }
}

.cs_contact_section.cs_style_1 .cs_contact_left_img {
  height: 100%;
  min-height: 892px;
}

@media (max-width: 991px) {
  .cs_contact_section.cs_style_1 .cs_contact_left_img {
    min-height: 600px;
  }
}

@media (max-width: 575px) {
  .cs_contact_section.cs_style_1 .cs_contact_left_img {
    min-height: 450px;
  }
}

.cs_contact_section.cs_style_1 .cs_contact_right {
  padding-left: 86px;
}

@media (max-width: 1199px) {
  .cs_contact_section.cs_style_1 .cs_contact_right {
    padding-left: 0;
  }
}

.cs_form_field {
  display: block;
  width: 100%;
  border: 1px solid var(--border-color);
  background-color: transparent;
  outline: none;
  padding: 10px 20px;
  resize: none;
  margin-bottom: 0;
  color: var(--body-color);
}

.cs_contact_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

/*# sourceMappingURL=style.css.map */


.cs_card.cs_style_1 .cs_card_title {height: 80px;overflow: hidden;text-overflow: ellipsis;-webkit-box-orient: vertical;-webkit-line-clamp: 2; display: -webkit-box;}
.element-m {display: none;}
.contactenos-i .contact-info ul li{white-space: normal;overflow-wrap: break-word;word-break: break-word;}
.payment-methods .card .card__header {background-color: var(--blue-color);padding: 30px 20px;}
.payment-methods .card .card__header h2 {color: white;margin-bottom: 0px;font-size: 19px !important;}
.payment-methods .card {border: 0px;box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);}
.payment-methods .card__img {margin-bottom: 10px;}
.payment-methods .card .card__body div {padding: 20px 15px;border: 1px solid rgba(128, 128, 128, 0.3);}
.payment-methods .card .card__body div:nth-child(odd) {background-color: #ebebeb;}
.payment-methods .card .card__body div span {font-weight: bold;}
.payment-methods .btn-donate {display:flex;align-items:center;justify-content:center;flex-direction:column;}
.payment-methods .btn-donate  a {color:black;background-color: var(--yellow-color);font-size:20px;}
.payment-methods .btn-donate  a img {margin-right:10px;position:relative;z-index:5;}
.payment-methods .btn-donate  .c-btn {background-color: var(--blue-color);width:220px;height:220px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:15px;}
.payment-methods .btn-donate .p {text-align:center;margin-bottom:15px;}
.payment-methods .btn-donate  a:before {background-color:white;}
.payment-methods .btn-donate  a:hover {color:black !important;}




@media (max-width: 1800px) {
    .cs_site_branding img {max-width: 250px;padding-top: 15px;padding-bottom: 15px;}
}

@media (max-width: 1750px) {
  .cs_site_branding img {max-width: 250px;padding-top: 15px;padding-bottom: 15px;}
  .container-g {max-width: 1480px;}
  .cs_main_header .container-fluid {padding-right: 50px;padding-left: 50px;}
  .cs_hero.cs_style_1 {min-height: 610px;}
  .cs_fs_90 {font-size: 85px;line-height: 1em;}
  .cs_fs_21 {font-size: 20px;line-height: 1.67em;}
  .mt {margin-top: 85px;}
  .pt {padding-top: 85px;}
  .ptm {padding-top: 85px;}
  .mb {margin-bottom: 85px;}
  .pb {padding-bottom: 85px;}
  #about h2 {font-size: 57px !important;}
  #causes h2 {font-size: 45px;}
  .cs_section_title {font-size: 45px;}
  #faq .figura {left: 0px;}
  .banner {padding-top: 55px;padding-bottom: 55px;}
  .banner h2 {font-size: 33px;}
  .cs_about.cs_style_1 .cs_about_content {padding-left: 50px;}
  #about.quienes-i h2 {font-size: 45px !important;}
  .publicacion-i .sec-title h2 {font-size: 40px;}
  .contactenos-i h2 {font-size: 30px;}
  .contactenos-i .form h2 {font-size: 30px;}
  #mensaje h2 {font-size: 45px;}
  #mensaje .content-m {padding-bottom: 5%;}
}

 @media (max-width: 1450px) {
  .container {max-width: 1250px;}
  .cs_site_branding img {max-width: 210px;padding-top: 15px;padding-bottom: 15px;}
  .cs_site_header.cs_style_1 .cs_main_header_right .cs_btn.cs_style_1 {font-size: 18px;}
  .cs_fs_90 {font-size: 67px;line-height:0.9em;}
  .cs_hero.cs_style_1 {min-height: 550px;}
  #about h2 {font-size: 45px !important;}
  #causes h2 {font-size: 42px;}
  .cs_fs_28 {font-size: 25px;line-height: 1.3em;}
  .cs_slider_arrows.cs_style_1 .cs_arrow_wrap_left {left: -25px;}
  .cs_slider_arrows.cs_style_1 .cs_arrow_wrap_right {right: -25px;}
  .cs_fs_21 {font-size: 19px;line-height: 1.57em;}
  #faq .figura {left: -45px;transform: scale(0.8);}
  .cs_newsletter.cs_style_1 {padding: 60px 60px;}
  .cs_newsletter.cs_style_1 h2 {font-size: 28px;}
  .cs_newsletter.cs_style_1 .cs_btn.cs_style_1 {font-size: 24px;}
  .cs_footer_widget_menu li a {font-size: 18px;}
  .cs_footer_row .cs_footer_widget_title {margin-bottom: 22px;}
  .cs_section_title {font-size: 40px;}
  .banner {padding-top: 45px;}
  .banner h2 {font-size: 30px;}
  .cs_about.cs_style_1 .cs_about_content {padding-left: 40px;}
  .cs_card.cs_style_2 .cs_card_title {font-size: 33px;}
  #about.quienes-i h2 {font-size: 40px !important;}
  .publicacion-i .sec-title h2 {font-size: 35px;}
  .contactenos-i .form h2 {font-size: 28px;}
  .contactenos-i h2 {font-size: 28px;}
  #mensaje h2 {font-size: 42px;}
  #mensaje .content-m a img {max-width: 150px;}
  .cs_site_header.cs_style_1 .cs_main_header_right {padding-left: 20px;}

}

 @media (max-width: 1300px) {
  .cs_site_header.cs_style_1 .cs_main_header_right {padding-left: 10px;}
    .cs_nav .cs_nav_list>li>a {font-size: 16.5px;}
 }


@media (max-width: 1200px) {
  .container {max-width: 970px;}
  .container-g {max-width: 1480px;}
  .cs_top_heaer .info_contact {column-gap: 10px;}
  .cs_top_heaer ul li a {font-size: 16px;}
  .cs_site_branding img {max-width: 170px;}
  .cs_nav .cs_nav_list>li>a {font-size: 17px;}
  .cs_site_header.cs_style_1 .cs_nav .cs_nav_list>li:not(:last-child) {margin-right: 20px;}
  .cs_main_header .container-fluid {padding-right: 15px;padding-left: 15px;}
  .cs_site_header.cs_style_1 .cs_main_header_right {padding-left: 30px;}
  .cs_site_header.cs_style_1 .cs_main_header_right .cs_btn.cs_style_1 {font-size: 18px;}
  .cs_about.cs_style_1 .cs_about_content {padding-left: 20px;}
  .cs_site_header.cs_style_1.cs_gescout_sticky .cs_site_branding img {max-width: 170px;}
  .quienes-h .row,.quienes-i .row,.mision-vision-i .row{align-items: stretch;display: flex;}
  .cs_about_thumbnail_wrapper {height: 100%;}
  .quienes-h .row img,.quienes-i .row img,.mision-vision-i .row img{height: 100%;object-fit: cover;}
  #mensaje .content-m {padding-bottom: 10%;}
  #mensaje .content-m a img {max-width: 140px;}
}


@media (max-width: 1080px) {
  .cs_site_header.cs_style_1 .cs_nav .cs_nav_list>li:not(:last-child) {margin-right: 10px;}
  .cs_site_header.cs_style_1 .cs_main_header_right {padding-left: 13px;}
  .cs_site_branding img { max-width: 150px;}
  .cs_site_header.cs_style_1.cs_gescout_sticky .cs_site_branding img {max-width: 150px;}
  .cs_site_header.cs_style_1 .cs_main_header_right .cs_btn.cs_style_1 {padding: 10px 20px;}
  .cs_top_heaer .info_contact li:nth-child(2) {display: none;}

}

@media (max-width: 991px) {
    .cs_top_heaer .info_contact li:nth-child(2) {display: inline-block;}
  .container {max-width: 720px;}
  .cs_site_header.cs_style_1 .cs_main_header_right {padding-right: 80px;}
  .cs_site_branding img {max-width: 190px;}
  .cs_site_header.cs_style_1.cs_gescout_sticky .cs_site_branding img {max-width: 190px;}
  .cs_top_heaer .row .col-md-6 {max-width: 100%;width: 100%;}
  .cs_top_heaer .row {display: flex;justify-content: center;align-items: center;}
  .cs_top_heaer .info_contact {justify-content: center;}
  .cs_top_heaer .link_contact {justify-content: center;margin-top: 5px;}
  .cs_top_heaer .link_contact .language {column-gap: 15px;}
  .cs_hero.cs_style_1 {min-height: 650px;}
  .cs_nav .cs_nav_list a {text-transform: none;}
  #blog .row .col-lg-4:last-child {display: none;}
  .cs_newsletter.cs_style_1 {padding: 42px 30px;}
  .footer-contact ul {flex-direction: column;gap: 20px;}
  .cs_newsletter.cs_style_1 h2 br{display: none;}
  .cs_about.cs_style_1 .cs_about_thumbnail_wrapper img {width: 100%;}
  .banner {padding-top: 50px !important;padding-bottom: 50px !important;}
   #blog.blog-i .row .col-lg-4:last-child {display: block;}
   .contactenos-i .contact-info {margin-top: 20px;}
   #mensaje .img-pc {height: 600px;object-fit: cover;}
   #mensaje .content-m {padding-bottom: 5%;}
   #mensaje .content-m a img {max-width: 130px;}
   .cs_about.cs_style_1 .cs_about_content {padding-left: 0px;}
    .footer-contact ul {padding-left: 0px;}
  .cs_site_header.cs_style_1 .cs_main_header_right .cs_btn.cs_style_1 {padding: 10px 30px;}
  .organismos-h .cs_slide img{transform:scale(0.9);}
  .payment-methods .card__img img {max-height:80px;}
}


@media (max-width: 767px) {
       .cs_slider, .banner{margin-top:270px;}
   .btnp2{display:none !important;}
  .cs_top_heaer .link_contact {margin-bottom:15px;}
  .btn-d-m {display:flex !important;align-items:center;justify-content:center;padding:0px !important;margin-top:10px !important;}
  .btn-d-m a:before {background-color:white !important;}
  .btn-d-m a:hover span {color:black !important;}
   .cs_site_header.cs_style_1 .cs_main_header_right .cs_btn.cs_style_1 {padding: 5px 20px;}
  .banner {padding-top: 45px !important;padding-bottom: 45px !important;}
  .cs_top_heaer .info_contact {flex-direction: column;justify-content: center;align-items: center;}
  .link_contact > li:first-child {display: none;}
  .element-m {display: block;}
  .cs_nav .cs_nav_list { min-height: 45vh;}
  .cs_fs_90 {font-size: 48px;}
  #whatsappflotante {bottom: 1.5rem;left: 1.5rem;}
  .cs_fs_21 {font-size: 17px;}
  #about h2 {font-size: 35px !important;}
  h4 {font-size: 22px;}
  #causes h2 { font-size: 35px;}
  .cs_card.cs_style_1 .cs_card_title {font-size: 22px;}
  .cs_section_title {font-size: 35px;}
  .cs_fs_28 {font-size: 22px;line-height: 1.1em;}
  .cs_newsletter.cs_style_1 h2 {font-size: 23px;}
  .cs_newsletter.cs_style_1 .cs_btn.cs_style_1 {font-size: 20px;}
  .cs_footer_row { padding: 50px 0;gap: 40px 40px;}
  .cs_footer.cs_style_1 .cs_footer_widget a img {max-width: 145px;}
  .footer-contact ul li a {font-size: 16px;text-align: center;}
  .footer-contact ul li {text-align: center;}
  .cs_scrollup {bottom: 1.5rem;right: 1.5rem;}
  .mt {margin-top: 75px;}
  .pt {padding-top: 75px;}
  .ptm {padding-top: 75px;}
  .mb {margin-bottom: 75px;}
  .pb {padding-bottom: 75px;}
  .cs_player_btn.cs_style_2 {width: 70px;height: 70px;}
  .cs_card.cs_style_2 .cs_card_title {font-size: 30px;}
  #about.quienes-i h2 {font-size: 35px !important;}
  .hacemos-i .cs_btn_group {flex-direction: column;gap: 20px;}
  .banner h2 {font-size: 28px;}
  .banner ul li a {font-size: 16px;}
  .banner-h .baner-items  li:last-child {height: 25px;overflow: hidden;text-overflow: ellipsis;-webkit-box-orient: vertical ;-webkit-line-clamp: 1; display: -webkit-box; }
  .publicacion-i .sec-title h2 {font-size: 32px;}
  .publicacion-i .sec-title .date {font-size: 17px;}
  .contactenos-i .form {padding: 35px;}
  .contactenos-i .form h2 {font-size: 26px;}
  .contactenos-i .form div {padding: 0px;}
  .contactenos-i h2 {font-size: 26px;}
  .contactenos-i .contact-info {padding: 35px;}
  .contactenos-i .contact-info ul li a{font-size: 16px;white-space: normal;  word-wrap: break-word;}
  #mensaje h2 {font-size: 38px;margin-bottom: 20px;}
}
