* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #fff;
  --secondary-color: #191818;
  --border-radius: 7px;
}

html,
body {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: #ffffff;
}


ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
  line-height: 100%;
}

.post p, .post h1, .post h2, .post h3,.post li,.post ul,.post>* {
  margin-bottom: 1em;
  line-height: 1.3em;
}

.post p, .post h1, .post h2, .post h3{  
  margin-top:1em;
}

.post table{
  border:2px solid #000000;
  margin-top:1em;
  margin-bottom:1.3em;
}

@media(max-width:767px){
  .post table {
      border: 1px solid #000000;
      max-width: 100%;
      overflow-x: auto;
      display: block;
  }
}

.post table tr td,.post table tr th{
  border:1px solid #000000;
  border-spacing: 0px;
  margin: 0px;
  padding: 4px 4px;
  box-sizing: unset !important;
  vertical-align: top;
  text-align: left;
}

.post ul {
  list-style: disc;
  margin-left: 1em;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
  line-height: 100%;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}

.container {
  max-width: 1300px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.black-text{
  color: #000000;
}
.inverse-text-color{
  filter: invert(100%);
}

.bg-black{
  background-color: var(--secondary-color);
  color:var(--primary-color);
}

.bg-black .fa,.bg-black .fas,.bg-black .fa-solid{
  filter: invert(100%);
}
.bg-white .fa, .bg-white .fas, .bg-white .fa-solid{
  filter: none;
}

.bg-white{
  background-color: #ffffff;
  color:#000000;
}

.flex-row-reverse{
  flex-direction: row-reverse; 
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.hide {
  display: none !important;
}

.sec-title {
  text-align: center;
}

.sec-title h2 {
  display: inline-block;
  font-size: 46px;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
}
.hide-title .sec-title{
  display: none;
}

.bg-white .sec-title h2{
  color: #000000;
}

.d-block {
  display: block;
}

.main-wrapper {
  position: relative;
  width: 100%;
}

.sticky-social-btn {
  position: fixed;
  top: 50vh;
  right: 0;
  z-index: 2;
}

.sticky-social-btn > ul > li:not(:last-child) {
  margin-bottom: 10px;
}

.sticky-social-btn > ul > li > a {
  display: flex;
  align-items: center;
  padding: 12px 26px;
  gap: 10px;
  justify-content: center;
  border-radius: 4px;
}

.sticky-social-btn > ul > li.whatsapp > a {
  background-color: #3c9e2d;
}

.sticky-social-btn > ul > li.online > a {
  background-color: #0982fe;
}

.sticky-social-btn > ul > li.online > a > img {
  display: none;
}

.sticky-social-btn > ul > li > a > img {
  max-width: 30px;
}

.sticky-social-btn > ul > li > a > span {
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.mobile-sticky-btn {
  display: none;
}


.d-none{
  display: none !important;
}

@media (min-width: 768px) {
  .d-md-block{
    display: block !important;
  }
  .d-md-none{
    display: none !important;
  }
}

@media (max-width: 992px) {
  .sec-title h2 {
    font-size: 29px !important;
    line-height: 37px !important;
  }
}

@media (max-width: 768px) {
  .sticky-social-btn > ul > li > a > span {
    display: none;
  }

  .sticky-social-btn > ul > li.online > a > img {
    display: block;
  }

  .mobile-sticky-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #191818;
    width: 100%;
    z-index: 2;
    display: block;
  }

  .mobile-sticky-btn > ul {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 20px;
  }

  .mobile-sticky-btn > ul > li > a {
      background-color: #fff;
      color: #191818;
      font-size: 12px;
      border-radius: 4px;
      max-width: 160px;
      width: 100%;
      min-width: 160px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      padding: 5px;
  }
  #body .slick-dots {
    position: absolute;
    bottom: 10px;
    right: auto;
    left: auto;
    width: 100%;
    justify-content: center;
    right: auto !important;
    left: auto;
    transform: none;
  }
}


.readMoreContent{
  display: none;
  margin-bottom:20px;
}

.ready-more-btn {
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 100%;
  max-width: max-content;
  width: 100%;
  text-decoration: underline;
  margin-bottom:20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fa.rotate180::before,.fa-solid.rotate180::before,.fas.rotate180::before {
  /*animation: spin 0.5s linear 0.5s;*/
  transform: rotate(180deg);
}
.banner-slider .banner-slide,.video-slider .video-slide,.with-slick-slider .item,.with-slick-slider>.img-wrapper{
  display: none;
}
.banner-slider .banner-slide:first-of-type,.video-slider .video-slide:first-of-type,.with-slick-slider .item:first-of-type,.with-slick-slider>.img-wrapper:first-of-type{
  display: block;
}



@media(min-width:768px){
  .item-wrapper{
    display: flex;
    flex-wrap:wrap;
  }
  .item-wrapper .item {
      min-width: 20%;
      max-width: 33%;
  }
  .item-wrapper.slick-slider .item {
      min-width: unset;
      max-width: unset;
  }
  .mobile-items-wrapper{
    display:none;
  }
}

iframe[src*=youtube]{
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.text-center{
  text-align: center;
}
.primary-btn{
  background-color: #000000;
  display: inline-block;
  padding:5px 30px;
  font-size:1.3em;
  color: #ffffff;
  margin-top: 1em;
}