@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #ff9c5b;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #00215E;
}

:focus-visible {
  outline: none;
}

button {
  transition: all 0.3s ease-out 0s;
}

button:focus:not(:focus-visible) {
  box-shadow: 0 0 0.55rem rgba(0, 0, 0, 0.15);
}

input::-moz-placeholder {
  color: #ffde00;
}

input::placeholder {
  color: #ffde00;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #000000;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #ffde00;
}

.form-check-input:focus {
  border-color: #ffde00;
  outline: 0;
  box-shadow: 0 0 0 0rem transparent;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Lato", sans-serif;
}

.heading {
  font-family: "Gloria Hallelujah", cursive;
}

.head {
  font-family: "Gloria Hallelujah", cursive;
  font-weight: 900;
  letter-spacing: 5px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #ff9c5b;
  -moz-text-fill-color: transparent;
  text-transform: uppercase;
}

a,
a:hover {
  text-decoration: none;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

.font-black {
  font-weight: 900;
}

.bg-color {
  background-color: #ff9c5b;
}

.theme-bg-primary {
  background-color: #ffde00;
}

.theme-bg-secondary {
  background-color: #00215E;
}

.theme-bg-accent-one {
  background-color: #000000;
}

.theme-bg-accent-two {
  background-color: #999999;
}

.theme-bg-accent-three {
  background-color: #e8e8e8;
}

.theme-bg-accent-four {
  background-color: #313131;
}

.theme-bg-white {
  background-color: #ffffff;
}

.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: #ffde00;
}

.theme-text-secondary {
  color: #00215E;
}

.theme-text-accent-one {
  color: #000000;
}

.theme-text-accent-two {
  color: #999999;
}

.theme-text-accent-three {
  color: #e8e8e8;
}

.theme-text-accent-four {
  color: #313131;
}

.theme-transparent-bg {
  background-color: rgba(0, 0, 0, 0) !important;
}

.theme-gradient-bg {
  background: #ff9c5b;
  background: linear-gradient(180deg, #ff9c5b 0%, #ffde00 100%);
}

.theme-box-shadow {
  box-shadow: 0 0 0.55rem rgba(0, 0, 0, 0.15);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.theme-border-radius {
  border-radius: 2rem;
}

.start-1 {
  left: 1rem;
}

.py-8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.ptu-0 {
  padding-top: 0rem !important;
}

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

.min-h-60 {
  min-height: 60px !important;
}

.max-w-100 {
  max-width: 100% !important;
}

.btn-wrap {
  text-align: center;
  display: flex;
}

.button-effect {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 50px;
  max-width: 170px;
  min-width: 170px;
  z-index: 1;
  border-radius: 2rem;
  border: none;
  color: #ffffff;
  font-weight: 600;
}
.button-effect span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #00215E;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.button-effect:hover {
  color: #ffffff;
}
.button-effect:hover span {
  width: 225%;
  height: 562.5px;
}

.custom-btn-primary {
  background-color: #ffde00;
}

.custom-btn-secondary {
  background-color: #00215E;
}
.custom-btn-secondary span {
  background-color: #ffde00;
}

.custom-link {
  background-color: #00215E;
  color: #ffffff;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
}
.custom-link:hover {
  background-color: transparent;
  color: #00215E;
  border: 2px solid #00215E;
}

.owl-theme .owl-nav.custom-nav {
  display: flex;
  justify-content: end;
  margin: 0;
}
.owl-theme .owl-nav.custom-nav .owl-prev,
.owl-theme .owl-nav.custom-nav .owl-next {
  background-color: #ffde00;
  box-shadow: 0 0 0.55rem rgba(0, 0, 0, 0.15);
  background-repeat: no-repeat;
  background-position: center;
  width: 3.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
  z-index: 1;
}
.owl-theme .owl-nav.custom-nav .owl-prev:hover,
.owl-theme .owl-nav.custom-nav .owl-next:hover {
  background-color: #000000;
}
.owl-theme .owl-nav.custom-nav .owl-prev i,
.owl-theme .owl-nav.custom-nav .owl-next i {
  font-size: 1.5rem;
  color: #999999;
}
.owl-theme .owl-nav.custom-nav .owl-prev {
  left: 0;
}
.owl-theme .owl-nav.custom-nav .owl-next {
  right: 0;
}

.owl-theme .owl-nav {
  display: flex;
  justify-content: center;
  margin: 0;
}
.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
  background-color: #00215e;
  box-shadow: none;
  background-repeat: no-repeat;
  background-position: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0;
  display: flex;
  justify-content: center;
  border: 0px solid transparent;
  transition: all 0.2s ease-out;
  z-index: 1;
  font-size: 2rem;
  line-height: 2.5rem;
  border-radius: 2rem;
  opacity: 1;
  color: #ffffff;
}
.owl-theme .owl-nav button.owl-prev:hover,
.owl-theme .owl-nav button.owl-next:hover {
  background-color: #ff9c5b;
}
.owl-theme .owl-nav button.owl-prev i,
.owl-theme .owl-nav button.owl-next i {
  font-size: 1.5rem;
  color: #ffffff;
}
.owl-theme .owl-nav .owl-prev {
  left: 0;
}
.owl-theme .owl-nav .owl-next {
  right: 0;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: #ffde00;
}

.text-effect {
  text-shadow: -0.09em 0 0 #00215E, 0.09em 0 0 #ffde00;
  letter-spacing: 4px;
}

.wave-button {
  transition: 250ms color;
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #ffffff;
}
.wave-button:hover {
  background-color: #ffde00;
  color: #ffffff;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0px 0px rgba(0, 33, 94, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 15px rgba(0, 33, 94, 0);
  }
}

.custum-input {
  border: none;
  width: 100%;
  height: 50px;
  background: #e8e8e8;
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 2rem !important;
  min-height: 60px;
}
.custum-input::-moz-placeholder {
  color: #313131;
}
.custum-input::placeholder {
  color: #313131;
}
.custum-input.textarea {
  height: 100px;
  padding-top: 2rem;
}
.custum-input:focus {
  background-color: #999999;
}

.img-effect img {
  transition: all 0.3s ease-out;
}
.img-effect:hover img {
  transform: scale(1.1) rotate(1deg);
}

blockquote {
  padding-left: 80px;
  position: relative;
  margin: 27px 0 28px;
  font-size: 1.5rem;
  color: #999999;
  line-height: 1.2;
  font-style: italic;
}
blockquote::before {
  content: "\f6b0";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "bootstrap-icons";
  color: #ffde00;
  font-size: 4rem;
  line-height: 1;
  font-style: normal;
}
blockquote cite {
  display: block;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  font-style: normal;
}
blockquote cite::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 5px;
  background: #ffde00;
}

.input-spinner {
  width: auto;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .input-spinner {
    margin-right: 0rem;
    margin-top: 1rem;
  }
}
.input-spinner .button-minus,
.input-spinner .button-plus {
  height: 2.125rem;
  width: 2.5rem;
  line-height: 1.2rem;
  background-color: transparent;
  border-color: #999999;
  border-radius: 2rem;
  font-size: 2rem;
  color: #999999;
  z-index: 0;
}
.input-spinner .button-minus:hover,
.input-spinner .button-plus:hover {
  background-color: #e8e8e8;
}
.input-spinner .form-input {
  min-height: 2.125rem;
  width: 3.5rem !important;
  font-size: 1rem;
  color: #ffde00;
  font-weight: 700;
  background: 0 0;
  border: 1px solid #999999;
  height: 100%;
  text-align: center;
  padding: 0;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.img-lt {
  filter: grayscale(100%);
  transition: 0.5s ease-in-out;
  opacity: 0.5;
}
.img-lt:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.link-more {
  position: relative;
}
.link-more:before {
  position: absolute;
  content: "";
  width: calc(100% - 13px);
  height: 1px;
  left: 0;
  bottom: -5px;
  background-color: #ffde00;
  transition: all 0.3s ease;
}
.link-more:hover:before {
  width: 0;
}

.cardeffect {
  transition: all 500ms ease-in-out;
}
.cardeffect:hover {
  transform: translateY(-10px);
  cursor: pointer;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000000;
}
#preloder .loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
    border: 4px solid #ffde00;
    border-left-color: transparent;
  }
  50% {
    transform: rotate(180deg);
    border: 4px solid #00215E;
    border-left-color: transparent;
  }
  100% {
    transform: rotate(360deg);
    border: 4px solid #ffde00;
    border-left-color: transparent;
  }
}
.text-shd {
  text-shadow: 0px 2px 20px rgba(0, 0, 0, 0.25);
}

.holi-offer-bg {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  background: url(../images/holi/hero-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}
.holi-offer-bg .holi-sub-head {
  font-size: 7.5rem;
  color: #E62C33;
}
@media screen and (max-width: 767px) {
  .holi-offer-bg .holi-sub-head {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .holi-offer-bg {
    background-position: left center;
  }
}

.text-upper {
  text-transform: uppercase;
}

.title {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 16px;
  }
}

.star {
  background: url(../images/holi/star.png) no-repeat;
  background-size: cover;
  background-position: center center;
  width: 320px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .star {
    background-size: 80%;
    width: 300px;
  }
}

.pic-ef {
  border-radius: 50%;
  box-shadow: 0 1px 14px 0px rgba(0, 0, 0, 0.25);
  width: 330px;
  height: 330px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .pic-ef {
    width: 140px;
    height: 140px;
  }
}
.pic-ef img {
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .pic-ef img {
    width: 120px;
    height: 120px;
  }
}

.fram-bg {
  position: relative;
}
.fram-bg:before {
  content: "";
  width: 100%;
  height: 844px;
  background: url(../images/holi/fram-wrap.png) no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .fram-bg:before {
    background-position: top;
    background-color: #fffbe0;
    height: 350px;
  }
}

.hand-write {
  font-size: 36px;
  line-height: 72px;
  font-weight: 400;
  font-style: normal;
  padding: 8rem 8rem 2rem 8rem;
}
@media screen and (max-width: 767px) {
  .hand-write {
    font-size: 16px;
    line-height: 28px;
    padding: 0rem 1rem;
  }
}

.note {
  font-size: 24px;
  line-height: 48px;
  font-weight: 400;
  font-style: normal;
  color: #FF0303;
  text-align: right;
  padding-right: 5rem;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .note {
    font-size: 16px;
    line-height: 40px;
    padding-right: 0rem;
    padding-top: 0;
  }
}

.follow {
  width: 200px;
  height: 68px;
  background: #FFDC00;
  position: relative;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
}
.follow:before {
  content: "";
  position: absolute;
  right: 45%;
  top: 56px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-right: 18px solid #FFDC00;
  border-bottom: 20px solid transparent;
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .follow:before {
    top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .follow {
    width: 150px;
    height: 48px;
    font-size: 16px;
  }
}

.fasil {
  text-align: right;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .social-icon {
    width: 50px;
  }
}

@media screen and (max-width: 767px) {
  .logo {
    width: 50%;
  }
}

.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  background-color: #ffde00;
}
.coming-soon-area::before {
  content: "";
  z-index: -1;
  background: rgba(0, 0, 0, 0);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.coming-soon-area .box {
  background-color: #ffffff;
  border-radius: 2rem;
  position: relative;
  padding: 1rem;
}
.coming-soon-area #timerC {
  font-size: 2.5em;
  font-weight: 600;
  color: #ffde00;
  display: flex;
  justify-content: center;
}
.coming-soon-area #timerC div {
  display: inline-block;
  min-width: 120px;
  text-align: center;
  border-right: 1px solid #e8e8e8;
  text-transform: uppercase;
  font-weight: 900;
}
@media screen and (max-width: 575px) {
  .coming-soon-area #timerC div {
    min-width: 60px;
  }
}
.coming-soon-area #timerC div:last-child {
  border-right: none;
}
.coming-soon-area #timerC div span {
  color: #000000;
  display: block;
  font-size: 0.35em;
  font-weight: 500;
}/*# sourceMappingURL=main.css.map */