/* RESET CSS STRAT */
:root {
  --bg-orange: #FF914D;
  --bg-blue: #23B5E8;
  --bg-red: #F5185A;
  --bg-yellow: #FFC20E;
  --white-col: #FFFFFF;
  --font: 1rem;
  --text-dark: #1B1413;
  --light-col: #FEFAF2;
}

*,
body,
h1,
h2,
h3,
h3,
h4,
h5,
h6,
p,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

body {
  background-color: #fdfdfd;
  font-family: "Roboto", sans-serif;
  outline: none;
  line-height: 1.3em;
  overflow-x: hidden;
}

h1,
h2,
h3,
h3,
h4,
h5,
h6 {
  color: var(--text-blue);
  font-size: 3rem;
  margin: 0px;
}

ul,
:hover,
:focus,
:active,
textarea,
input:focus,
a:hover,
a:active,
a:focus {
  outline: none !important;
}

a {
  outline: none !important;
  text-decoration: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

textarea,
input:focus {
  text-decoration: none;
}

p,
li {
  padding: 0px;
  margin: 0px;
  font-size: var(--font);
  line-height: 1.4;
  color: var(--text-dark);
}

li {
  color: #1e1e1e;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

::-moz-selection {
  background-color: #61a8f0;
  color: #FFF;
}

::selection {
  background-color: #61a8f0;
  color: #FFF;
}

.hr {
  border: 1px solid var(--secondary);
  width: 100%;
  opacity: 1;
}

.text-justify {
  text-align: justify;
}

.text-red {
  color: #E60E7C;
}

.bg-orange {
  background-color: var(--bg-orange) !important;
}

.bg-yellow {
  background-color: var(--bg-yellow);
}

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

.text-red {
  color: var(--bg-red);
}

.fsize14 {
  font-size: 14px;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #2A282899 !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: 2A282899 !important;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: 2A282899 !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: 2A282899 !important;
}

/* STICKY ANV BAR */
.sticky.header .header-absolute {
  background-color: #002147;
}

.sticky {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 50;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, .1);

}

/* -------------------------------------------------- */
/*  Back Top
/* -------------------------------------------------- */
#back-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 999;
  overflow: hidden;
  display: none;
  width: 50px;
  height: 50px;
  background-color: #044569;
  border-radius: 100%;
  text-align: center;
  -webkit-transition: all .25s ease;
  transition: all .25s ease
}

#back-top:after {
  display: block;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: "\f062";
  line-height: 48px;
  -webkit-transition: color .25s ease, -webkit-transform 2s ease;
  transition: color .25s ease, transform 2s ease
}

#back-top:hover {
  background-color: #231f20;
}

#back-top:hover:after {
  color: #FFF;
}

/* -------------------------------------------------- */
/*  Back Top END
/* -------------------------------------------------- */


/* Hero Section Slide */


.bc-img01 {
  background: url(../images/banner.webp) no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  position: relative;
  z-index: 0;
}

.bc-img01::after {
  content: '';
  position: absolute;
  bottom: 0;
  background: url(../images/jiva_banner_cent.png) no-repeat;
  background-size: contain;
  left: 50%;
  transform: translateX(-35%);
  width: 410px;
  height: 430px;
}

.sideNavi {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 2;
  transform-origin: right;
  -moz-transform: rotate(270deg) translateX(50%);
  -webkit-transform: rotate(270deg) translateX(50%);
  -o-transform: rotate(270deg) translateX(50%);
  -ms-transform: rotate(270deg) translateX(50%);
  transform: rotate(270deg) translateX(50%);
}

.sideNavi-flex {
  display: flex;
  flex-direction: row;
}

.sideNavi a {
  background-color: #002147;
  border-radius: 5px 5px 0px 0px;
  border: none !important;
  color: var(--white-col);
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 10px 30px;
  font-weight: 500;
  display: block;
}

.sideNavi a.ivr {
  background-color: #231f20 !important;
  border-radius: 0px 27px 0px 0px !important;
}

.sideNavi a.telphone {
  background-color: #ffcb05;
  color: #000;
}

.sideNavi a:hover {
  background-color: #002147;
  color: #ffffff;
}


.blog-text>a {
  background-color: var(--bg-red);
  color: var(--white-col);
  border-radius: 5px;
  border: 0;
  display: block;
  line-height: 1;
  padding: 1rem 1rem;
  position: relative;
  text-transform: capitalize;
  transform: perspective(1px) translateZ(0px);
  transition: color 0.3s ease 0s;
  vertical-align: middle;
  display: inline-block;
  font-size: 1.2rem;
}

.blog-text>a.downloadBTn {
  background-color: transparent;
  border: 1px solid var(--bg-red);
  color: var(--bg-red);
}

.blog-text>a:hover {
  color: #FFF;
}

.blog-text>a::before {
  border-radius: 5px;
  background-color: var(--bg-orange);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 50% 0 0;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
  z-index: -1;
}

.blog-text>a:hover::before {
  transform: scaleY(1);
}

.shadow:hover,
.core__section .core__Block .core__card:hover {
  box-shadow: none !important;
  -webkit-transform: translateY(-.5em);
  transform: translateY(-.5em);
}

.shadow,
.core__section .core__Block .core__card:hover {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}



.thankyou-sec .hero-thankyou .bc-img01 .thankyou__dv {
  background-color: #FFFFFF;
  width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: 30px;
}

.thankyou-sec .hero-thankyou .bc-img01 .thankyou__dv h3 {
  font-size: 4em;
  color: var(--bg-orange);
}

.thankyou-sec .hero-thankyou .bc-img01 .thankyou__dv p {
  font-size: 20px;
  line-height: 1.3;
}

.thankyou-sec .hero-thankyou .bc-img01 {
  height: 100vh;
  background-size: cover;
  padding-top: 16%;
}



#gallery-memeber.owl-theme .owl-nav {
  margin-top: 0;
}

#gallery-memeber.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  top: 40%;
  margin: 0px;
  border-radius: 0px;
  text-align: center;
}



#gallery-memeber.owl-theme .owl-nav .owl-prev {

  left: -40px;

}

#gallery-memeber.owl-theme .owl-nav .owl-next {

  right: -40px;

}

#gallery-memeber.owl-theme .owl-nav [class*=owl-] {
  color: #000;
  font-size: 24px;
  padding: 8px 0px;
  background: rgba(0, 0, 0, 0.5);

  color: #FFF;

  display: inline-block;

  cursor: pointer;

  border-radius: 0%;

  height: 40px;

  width: 40px;
}

.gallery_area .item_row .popup-gallery-row {
  padding: 0px;
}

.galleryBox .container-fluid {
  padding: 0 0;
}

.gallery_area {
  padding-top: 0px;
}

.gallery_area .single_gallery_item {
  border-radius: 0.5rem;
  display: inline-block;
  overflow: hidden;
  float: left;

  width: 100%;

  position: relative;

  z-index: 1;

}


.gallery_area .single_gallery_item .hover_overlay {
  background-color: rgba(19, 47, 67, 0.5);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0%;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  width: 100%;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
}

.gallery_area .single_gallery_item:hover .hover_overlay {

  -webkit-transform: scale(1, 1);

  transform: scale(1, 1);

}

#gallery-memeber.owl-theme .owl-dots .owl-dot.active span,
#gallery-memeber.owl-theme .owl-dots .owl-dot:hover span {
  background: #FFF !important;
}

.gallery_area .single_gallery_item:hover .gallery_info {
  display: none;
}

.gallery_area .single_gallery_item .gallery_info h5,
.gallery_area .single_gallery_item .gallery_info p {
  color: #ffffff;
  font-weight: 700;
  position: absolute;
  background-color: rgba(19, 47, 67, 0.5);
  text-align: center;
  top: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}




.gallery_area .single_gallery_item .links>a>i {

  color: #ffffff;

  font-size: 40px;

}

.gallery_area .single_gallery_item img {
  height: 270px;
  width: 100%;
}

.gallery_area .single_gallery_item .links {
  top: 40%;
  text-align: center;
  position: absolute;
  right: 0;
  margin-right: 0;
  width: 100%;
  z-index: 99;
  overflow: hidden;

}