:root {
  --bg-grey: #f8f8f8;
  --bg-orange: #daa83e;
  --bg-blue: #015aaa;
  --bg-orange: #f37527;
  --bg-red: #7e0100;
  --bg-yellow: #ffd01e;
  --bg-orange: #f58220;
  --white-col: #ffffff;
  --font: 1rem;
  --text-dark: #000000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  outline: 0;
  line-height: 1.4em;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #323232;
  margin: 0;
  line-height: 1.2em;
}
p {
  padding: 0;
  margin: 0;
  font-size: var(--font);
  line-height: 1.5;
  color: var(--text-dark);
}
.hr {
  margin-bottom: 10px;
  margin-top: 10px;
  height: 1px;
  background: var(--bg-orange);
  width: 40%;
  opacity: 1;
}
figure,
footer,
header,
section {
  display: block;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  outline: 0 !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:active,
a:focus,
a:hover {
  outline: 0 !important;
  text-decoration: none;
  color: #4490bc;
}
input:focus,
textarea {
  outline: 0 !important;
  text-decoration: none;
}
img {
  border: 0;
}
.fs-14 {
  font-size: 14px;
}
.zindex5 {
  z-index: 5;
}
.bg-orange {
  background-color: var(--bg-orange);
}
.text-blue {
  color: var(--bg-blue);
}
.bg-blue {
  background-color: var(--bg-blue);
}
.bg-orange {
  background-color: var(--bg-orange);
}
.text-justify {
  text-align: justify;
}
.overflow {
  overflow: hidden;
}
li {
  color: #000;
  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: #df4b24;
  color: #fff;
}
::selection {
  background-color: #000;
  color: #fff;
}
::-webkit-input-placeholder {
  color: var(--text-dark) !important;
}
::-moz-placeholder {
  color: var(--text-dark) !important;
}
:-ms-input-placeholder {
  color: var(--text-dark) !important;
}
:-moz-placeholder {
  color: var(--text-dark) !important;
}
#back-top {
  position: fixed;
  right: 0;
  bottom: 1%;
  z-index: 999;
  overflow: hidden;
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--text-dark);
  background-color: var(--white-col);
  text-align: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#back-top:after {
  display: block;
  text-align: center;
  color: var(--text-dark);
  font-size: 20px;
  font-family: "Font Awesome 5 Pro";
  content: "\f357";
  line-height: 48px;
  -webkit-transition: color 0.25s ease, -webkit-transform 2s ease;
  transition: color 0.25s ease, transform 2s ease;
}
#back-top:hover {
  background-color: var(--bg-blue);
}
#back-top:hover:after {
  color: #fff;
}
.bc-img01 {
  background-image: url(../images/main_banner.webp);
  background-size: cover;
  background-position: 65% 100%;
  background-repeat: no-repeat;
}
.sideNavi {
  position: fixed;
  top: 50%;
  right: -44px;
  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: #f37527;
  border: 1px solid var(--white-col);
  border-radius: 0;
  text-align: center;
  color: #fff;
  cursor: pointer;
  border-right: 0;
  font-size: 1.3rem;
  padding: 15px 15px;
  display: block;
  margin-top: 25px;
}
.sideNavi a:hover {
  background-color: var(--bg-blue);
  color: var(--bg-yellow);
}
.image-box .image {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
.image-box .image img {
  transition: all 0.4s ease;
}
.image-box .image a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
  transition: all 0.4s linear;
}
.image-box:hover .image a:after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s linear;
}
.image-box:hover .image img {
  transform: scale(1.1);
}
.marquee-area-1 {
  overflow: hidden;
  top: 0;
  left: 0;
  padding: 0.8rem 0;
  z-index: 1;
}
.marquee-area-1 h4 {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.marquee-area-1 h4 a { color: #fff; font-weight: 600;}


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



.thankyou-sec .hero-thankyou .bc-img01 .thankyou__dv { margin: auto; background-color: #FFFFFF; width: 500px; position: relative; z-index: 1; padding: 2rem; border-radius: 30px; }
.thankyou-sec .hero-thankyou .bc-img01 .thankyou__dv h3 { font-size: 5em; }
.thankyou-sec .hero-thankyou .bc-img01 .thankyou__dv p { font-size: 20px; line-height: 1.2; }
.thankyou-sec .hero-thankyou .bc-img01 {
    height: 88vh;
    background-size: cover;
    padding-top: 12%;
}