/* RESET CSS STRAT */
:root {
  --bg-orange: #F48C06;
  --bg-purple: #703edb;
  --bg-blue: #210d46;
  --bg-red: #EB2429;
  --bg-yellow: #FFC20E;
  --white-col: #FFFFFF;
  --font: 1.1rem;
  --text-dark: #1B1413;
  --shadow-b: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}
.text-orange{ color: #F48C06; }
.bg-orange { background-color: var(--bg-orange) !important; }

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  font-weight: normal;
  color: var(--text-dark);
  outline: none;
  line-height: 1.5em;
  overflow-x: hidden;
}

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

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

.hr {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid var(--bg-yellow);
  width: 70%;
  opacity: 0.5;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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

a {
  outline: none !important;
  color: #ffcb05;
  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;
}

a:hover,
a:active,
a:focus {
  outline: none !important;
  text-decoration: none;
  color: #4490bc;
}

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

img {
  border: 0;
}

.nopd {
  padding-left: 0px;
  padding-right: 0px;
}

.fsize14 {
  font-size: 14px;
}

.zindex5 {
  z-index: 5;
}

.line-h {
  line-height: 1.2;
}

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

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

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

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

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

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

li {
  color: #000000;
  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;
}

/* RESET CSS END */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--text-dark) !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--text-dark) !important;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--text-dark) !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: var(--text-dark) !important;
}

/* STICKY ANV BAR */
.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 rgb(0 0 0 / 10%);
}

#header.sticky .header-absolute {
  background-color: var(--white-col);
  box-shadow: 0 0 18px 1px rgb(0 0 0 / 10%);
}

#header.sticky .header-absolute .logo img {
  width: 100px;
}

/* -------------------------------------------------- */
/*  Back Top
/* -------------------------------------------------- */
#back-top {
  position: fixed;
  right: 10px;
  bottom: 0px;
  z-index: 999;
  overflow: hidden;
  display: none;
  width: 50px;
  height: 50px;
  background-color: var(--bg-orange);
  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 5 Pro';
  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 {
  position: relative;
  background-image: url(../images/banner.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  height: 100vh;
}

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

.sideNavi a {
  background-color: var(--bg-orange);
  color: var(--white-col);
  cursor: pointer;
  font-size: 18px;
  padding: 10px 20px;
  display: block;
  margin-top: 25px;
}

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

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


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

.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: 5em;
  color: var(--bg-orange);
}

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

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


.video-button {
  width: 75px;
  height: 75px;
  color: #FFFFFF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
  background-color: var(--bg-orange);
  font-size: 1.3rem;
  text-align: center;
  line-height: 72px;
  animation: pulse 2000ms linear infinite;
  -webkit-animation: pulse 2000ms linear infinite;
  -moz-animation: pulse 2000ms linear infinite;
}

.video-button::before,
.video-button::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #FFF;
  border-radius: 74px;
  opacity: 0.15;
  z-index: -10;
}

.video-play-row {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  display: inline-block;
}

.video-button::before {
  z-index: 2;
  animation: inner-ripple 2000ms linear infinite;
  -webkit-animation: inner-ripple 2000ms linear infinite;
  -moz-animation: inner-ripple 2000ms linear infinite;
}

.video-button::after {
  z-index: 1;
  animation: outer-ripple 2000ms linear infinite;
  -webkit-animation: outer-ripple 2000ms linear infinite;
  -moz-animation: outer-ripple 2000ms linear infinite;
}

.video-section {
  position: absolute;
  left: 48%;
  top: 40%;
  text-align: center;
  z-index: 3;
}

@-webkit-keyframes outer-ripple {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: .5
  }

  80% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0
  }

  100% {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0
  }
}

@-moz-keyframes outer-ripple {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: .5
  }

  80% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0
  }

  100% {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0
  }
}


.example-1 {
  position: relative;
  overflow-y: scroll;
  height: 550px;
  padding-right: 1rem;
}


.scrollbar-deep-purple::-webkit-scrollbar {
  width: 12px;
  background-color: #FFF;
}

.scrollbar-deep-purple::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-yellow);
}

.scrollbar-deep-purple {
  scrollbar-color: #046a38 #F5F5F5;
}


.bordered-deep-purple::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border: 1px solid #046a38;
}

.bordered-deep-purple::-webkit-scrollbar-thumb {
  -webkit-box-shadow: none;
}

.thin::-webkit-scrollbar {
  width: 6px;
}

.bouncing_btn {
  position: fixed;
  bottom: 15%;
  z-index: 5;
  left: 2%
}

.bouncebtn {
  animation: 2s infinite bounce;
  -webkit-animation: 2s infinite bounce;
  -moz-animation: 2s infinite bounce;
  -o-animation: 2s infinite bounce
}

.bouncing_btn .button-default-dark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  position: relative;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #fff;
  color: var(--text-dark);
  background: var(--bg-yellow);
  cursor: pointer !important
}

.bouncing_btn .button-default-dark i {
  font-size: 35px;
}