@import url("https://fonts.googleapis.com/css2?family=Courgette&family=Poppins:wght@500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("owl.carousel.min.css");
@import url("owl.theme.default.min.css");
@import url("gallery.css");
/*-- font style --*/
/*-- media query --*/
* {
  outline: none;
}

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

ul {
  list-style-type: none;
}

a {
  color: #002880;
  transition: all ease-in 0.3s;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in 0.3s;
}

:focus-visible {
  outline: none;
}

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

.btn-wrapper {
  height: auto;
}
.btn-wrapper .menu-toggle {
  min-height: 40px;
}
.btn-wrapper .menu-toggle .icon-bars {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before, .btn-wrapper .menu-toggle .icon-bars::after {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  left: 0;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before {
  top: 0.5em;
}
.btn-wrapper .menu-toggle .icon-bars::after {
  top: -0.5em;
}
.btn-wrapper .menu-toggle:active .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.btn-wrapper .menu-toggle:active .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.btn-wrapper .menu-toggle:active .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.menu--is-revealed .menu-toggle .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.menu--is-revealed .menu-toggle .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

html {
  font-size: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

.theme-text-secondary {
  color: #002880;
}

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

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

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

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

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

.custom-btn-primary {
  background-color: #EC202B;
  color: #ffffff;
  min-width: 170px;
  min-height: 50px;
  border: 0;
}

.custom-btn-secondary {
  background-color: #002880;
  color: #ffffff;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
}
.custom-btn-secondary:hover {
  background-color: #EC202B;
  color: #ffffff;
}

.primary-btn-effect {
  position: relative;
  cursor: hand;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.primary-btn-effect:hover {
  color: #ffffff;
}
.primary-btn-effect:hover::before {
  opacity: 1;
  width: 116%;
}
.primary-btn-effect:hover::after {
  opacity: 1;
  width: 120%;
}
.primary-btn-effect::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #002880;
  position: absolute;
  transform: skewX(-20deg);
  opacity: 1;
  left: -10%;
  top: 0;
  z-index: -12;
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.primary-btn-effect::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #EC202B;
  position: absolute;
  transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: -15;
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}

.icon-wrapper {
  box-shadow: 0 0 0px 0px rgba(0, 40, 128, 0.5);
  cursor: pointer;
  border-radius: 50%;
  transition: 250ms color;
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0px 0px rgba(0, 40, 128, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 15px rgba(0, 40, 128, 0);
  }
}

.page-loader {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: #ffffff;
  z-index: 1000;
}
.page-loader .spinner {
  position: relative;
  top: 35%;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  background-color: #EC202B;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.header {
  background-color: #ffffff;
}
@media screen and (max-width: 992px) {
  .header .navbar-collapse {
    height: 200px;
    overflow: auto;
  }
}
.header .navbar-nav .nav-item .nav-link {
  color: #000000;
  padding: 1.2rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .nav-item .nav-link {
    padding: 0.8rem 0rem;
    border-bottom: 1px solid #EBF6FF;
  }
}
.header .navbar-nav .nav-item .active:after {
  content: "";
  width: 1.25rem;
  height: 6px;
  background: #EC202B;
  position: absolute;
  bottom: 0;
  display: block;
  left: 33%;
  border-radius: 3rem;
}
.header .navbar-nav .nav-item .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #000000;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #EC202B;
  color: #ffffff;
}

.nav-effect {
  position: relative;
}
.nav-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 33%;
  width: 1.25rem;
  height: 6px;
  background: #EC202B;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .nav-effect::before {
    left: 0%;
  }
}
.nav-effect:hover:before {
  transform-origin: center center;
  transform: scale(1, 1);
}

.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 992px) {
  .hero {
    padding: 0;
  }
}
.hero::after {
  top: 0;
  right: 0;
  width: 700px;
  height: 700px;
  content: "";
  position: absolute;
  background-image: url(../images/hero/dot-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}
@media screen and (max-width: 767px) {
  .hero::after {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .hero::after {
    top: 50%;
    right: 20%;
  }
}
.hero::before {
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 100%;
  z-index: -1;
  background-color: rgba(235, 246, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .hero::before {
    width: 250px;
    height: 250px;
  }
}
.hero .hero-wrap {
  position: relative;
  border-radius: 100%;
  padding: 2rem;
  border: 2px dashed #002880;
  max-width: 550px;
  max-height: 550px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .hero .hero-wrap {
    margin-top: 8rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .hero .hero-wrap {
    max-width: 350px;
  }
}
.hero .hero-wrap .hero-inner {
  background-color: #EBF6FF;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero .hero-wrap .hero-icons .icons-box {
  position: absolute;
  padding: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 6.25rem;
  height: 6.25rem;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: all ease-in-out 0.3s;
}
.hero .hero-wrap .hero-icons .icons-box:hover {
  background-color: #002880;
}
.hero .hero-wrap .hero-icons .icons-box:hover #train-icon,
.hero .hero-wrap .hero-icons .icons-box:hover #car-icon,
.hero .hero-wrap .hero-icons .icons-box:hover #flight-icon,
.hero .hero-wrap .hero-icons .icons-box:hover #hotel-icon,
.hero .hero-wrap .hero-icons .icons-box:hover #location-icon,
.hero .hero-wrap .hero-icons .icons-box:hover #api-icon {
  fill: #ffffff;
}
@media screen and (max-width: 575px) {
  .hero .hero-wrap .hero-icons .icons-box {
    width: 3.5rem;
    height: 3.5rem;
    padding: 1rem;
  }
}
.hero .hero-wrap .hero-icons .icon1 {
  top: 80px;
  left: -10px;
}
.hero .hero-wrap .hero-icons .icon2 {
  top: -40px;
  left: 40%;
}
.hero .hero-wrap .hero-icons .icon3 {
  top: 80px;
  left: 84%;
}
.hero .hero-wrap .hero-icons .icon4 {
  top: 380px;
  left: -10px;
}
@media screen and (max-width: 575px) {
  .hero .hero-wrap .hero-icons .icon4 {
    top: 280px;
  }
}
.hero .hero-wrap .hero-icons .icon5 {
  top: 380px;
  left: 84%;
}
@media screen and (max-width: 575px) {
  .hero .hero-wrap .hero-icons .icon5 {
    top: 280px;
  }
}
.hero .hero-wrap .hero-icons .icon6 {
  top: 500px;
  left: 40%;
}
@media screen and (max-width: 575px) {
  .hero .hero-wrap .hero-icons .icon6 {
    top: 350px;
  }
}

.box-icon-float {
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
#train-icon,
#car-icon,
#flight-icon,
#hotel-icon,
#location-icon,
#api-icon {
  fill: #002880;
}

.animate-charcter {
  background-image: linear-gradient(-225deg, #002880 0%, #EC202B 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.about-company .max {
  max-width: 450px;
}
.about-company .review-con {
  text-align: justify;
}
.about-company .about-pic {
  position: relative;
}
.about-company .about-pic::before {
  width: 400px;
  height: 400px;
  top: 120px;
  right: -50px;
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 100%;
  z-index: -1;
  background-color: rgba(235, 246, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .about-company .about-pic::before {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .about-company .about-pic::before {
    right: 0px;
    top: 350px;
  }
}
.about-company .about-pic::after {
  background-size: contain;
  width: 400px;
  height: 400px;
  top: -60px;
  left: -60px;
  content: "";
  position: absolute;
  background-image: url(../images/hero/dot-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}
@media screen and (max-width: 767px) {
  .about-company .about-pic::after {
    width: 250px;
    height: 250px;
  }
}

.feature-list {
  list-style: none;
}
.feature-list li {
  line-height: 2.5rem;
}
.feature-list li i {
  color: #002880;
}

.core-product #Flight-booking-icon,
.core-product #hotel-booking,
.core-product #travel-api-icon,
.core-product #corporate-travel {
  fill: #002880;
}

.cardeffect {
  transition: all 500ms ease-in-out;
}
.cardeffect:hover {
  transform: translateY(-10px);
  cursor: pointer;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.cardeffect:hover #Flight-booking-icon,
.cardeffect:hover #hotel-booking,
.cardeffect:hover #travel-api-icon,
.cardeffect:hover #corporate-travel {
  fill: #EC202B;
  transition: all ease-in-out 0.3s;
}

.services {
  position: relative;
}
.services .max-1 {
  max-width: 650px;
  margin: 0 auto;
}
.services::before {
  top: 7rem;
  left: 0;
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 100%;
  z-index: -1;
  background-color: rgba(235, 246, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .services::before {
    width: 250px;
    height: 250px;
  }
}
.services::after {
  width: 250px;
  height: 250px;
  bottom: -2%;
  left: 30%;
  content: "";
  position: absolute;
  background-image: url(../images/hero/dot-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}
@media screen and (max-width: 767px) {
  .services::after {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .services::after {
    left: 0;
  }
}
.services .service-card .point {
  width: 2.8rem;
  height: 2.8rem;
  color: #ffffff;
}
.services .item {
  overflow: hidden;
  border-radius: 2.5rem;
}
.services .owl-nav {
  position: absolute;
  left: 44%;
}
@media screen and (max-width: 767px) {
  .services .owl-nav {
    left: 0;
  }
}
.services .owl-nav .owl-prev,
.services .owl-nav .owl-next {
  background: #ffffff !important;
  color: #EC202B !important;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 2rem !important;
}
.services .owl-nav .owl-prev:hover,
.services .owl-nav .owl-next:hover {
  background: #002880 !important;
  color: #ffffff !important;
}

.features::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  background-image: url(../images/icons/map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 650px;
  position: absolute;
  z-index: -1;
}
.features .max-2 {
  max-width: 550px;
  margin: 0 auto;
}

.review {
  position: relative;
}
.review::before {
  width: 400px;
  height: 400px;
  top: 60%;
  left: 20%;
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 100%;
  z-index: -1;
  background-color: rgba(235, 246, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .review::before {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 992px) {
  .review::before {
    top: 20%;
    left: 10%;
  }
}
@media screen and (max-width: 767px) {
  .review::before {
    top: 50%;
  }
}
.review::after {
  background-size: contain;
  width: 400px;
  height: 400px;
  top: 10%;
  left: 10%;
  content: "";
  position: absolute;
  background-image: url(../images/hero/dot-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}
@media screen and (max-width: 767px) {
  .review::after {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 992px) {
  .review::after {
    top: 2%;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .review::after {
    top: 0%;
  }
}
.review .max {
  max-width: 450px;
}
.review .review-con {
  text-align: justify;
}
.review .review-con .qotes-img {
  width: auto;
  height: auto;
}
.review .review-pic {
  position: relative;
}
.review .owl-nav {
  position: absolute;
  left: 44%;
}
@media screen and (max-width: 767px) {
  .review .owl-nav {
    left: 0;
  }
}
.review .owl-nav .owl-prev,
.review .owl-nav .owl-next {
  background: #ffffff !important;
  color: #EC202B !important;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 2rem !important;
}
.review .owl-nav .owl-prev:hover,
.review .owl-nav .owl-next:hover {
  background: #002880 !important;
  color: #ffffff !important;
}

.news .max {
  max-width: 650px;
  margin: 0 auto;
}
.news .news-card .tags {
  bottom: 2rem;
  left: 2rem;
  z-index: 1;
  display: block;
  background: #ffffff;
  border-radius: 40px;
  cursor: pointer;
}

.img-effect img {
  transition: all 0.4s ease-in-out;
}
.img-effect:hover img {
  transform: scale(1.5);
}

.flood-effect {
  transition: 0.25s ease-in-out;
  overflow: hidden;
  display: block;
  border-radius: 40px;
  min-width: 110px;
  text-align: center;
}
.flood-effect:hover {
  box-shadow: inset 10rem 0 0 0 #002880;
}
.flood-effect:hover:hover a {
  color: #ffffff;
}

.action-bg {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
}
.action-bg::before {
  width: 400px;
  height: 400px;
  top: -60px;
  right: -50px;
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 100%;
  z-index: -1;
  background-color: rgba(235, 246, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .action-bg::before {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .action-bg::before {
    right: -20px;
  }
}
.action-bg::after {
  background-size: contain;
  width: 400px;
  height: 400px;
  top: -60px;
  left: -60px;
  content: "";
  position: absolute;
  background-image: url(../images/hero/dot-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  display: block;
}
@media screen and (max-width: 767px) {
  .action-bg::after {
    width: 250px;
    height: 250px;
  }
}

.footer p {
  line-height: 2.2rem;
}
.footer .link-list li {
  line-height: 2.5rem;
}
.footer .link-list li a {
  color: #878A9B;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}
.footer .link-list li a:hover {
  color: #EC202B;
}
.footer .social a,
.footer .social .botom-link {
  color: #002880;
}
.footer .social a:hover,
.footer .social .botom-link:hover {
  color: #EC202B;
}

.scrollup {
  overflow: hidden;
  position: fixed;
  height: 2.5rem;
  width: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  bottom: -3rem;
  right: 3rem;
  text-align: center;
  z-index: 1;
  background-color: rgba(0, 40, 128, 0.8);
  display: block;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
}
.scrollup i {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
}
.scrollup i:hover, .scrollup i:focus {
  animation: toBottomFromTop 0.5s forwards;
}
.scrollup:hover, .scrollup:focus {
  color: #EC202B;
}

.scrollup.back-top {
  bottom: 20px;
}

@keyframes toBottomFromTop {
  49% {
    transform: translateY(-20%);
  }
  50% {
    opacity: 0;
    transform: translateY(20%);
  }
  51% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}
.footer-link-effect {
  position: relative;
}
.footer-link-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0px;
  width: 100%;
  height: 2px;
  border-radius: 0.5rem;
  background: #EC202B;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}
.footer-link-effect:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.svg-sprt {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

nav {
  position: relative;
}
@media screen and (max-width: 767px) {
  nav .navbar-brand {
    width: 60%;
  }
}

.switch {
  display: flex;
  align-items: center;
}
.switch .dropdown button {
  color: inherit;
  box-shadow: none;
  background: #878A9B;
  padding: 0.25rem 0.5rem;
  border-radius: 2.5rem;
}
.switch .dropdown button:hover {
  background-color: #EC202B;
}
.switch .dropdown button.dropdown-toggle::after {
  display: none;
}
.switch .dropdown .dropdown-menu {
  width: auto;
  border-radius: 0;
  padding: 0;
  min-width: 36px;
  border-radius: 2.5rem;
  z-index: 2;
}
.switch .dropdown .dropdown-menu li {
  width: auto;
  margin: 0;
}
.switch .dropdown .dropdown-menu li .dropdown-item {
  width: auto;
  margin: 0;
  padding: 0.5rem;
  min-width: 36px;
  justify-content: center;
}
.switch .dropdown .dropdown-menu li .dropdown-item:active, .switch .dropdown .dropdown-menu li .dropdown-item.active {
  background-color: #EC202B;
}

[data-bs-theme=dark] body {
  background-color: #000000;
}
[data-bs-theme=dark] .header {
  background-color: #000000;
}
[data-bs-theme=dark] .header .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}
[data-bs-theme=dark] .header .navbar-nav .nav-item .dropdown-menu {
  background-color: #000000;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
[data-bs-theme=dark] .header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #ffffff;
}
[data-bs-theme=dark] .hero::before {
  background: linear-gradient(270deg, black 0%, rgba(236, 32, 43, 0.15) 100%);
}
[data-bs-theme=dark] .hero::after {
  background: none;
}
[data-bs-theme=dark] .about-company .about-pic::before {
  background: linear-gradient(270deg, rgba(236, 32, 43, 0.13) 0%, rgba(0, 0, 0, 0.15) 100%);
}
[data-bs-theme=dark] .about-company .about-pic::after {
  background: none;
}
[data-bs-theme=dark] .services::before {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.13) 0%, rgba(236, 32, 43, 0.15) 100%);
}
[data-bs-theme=dark] .services::after {
  background: none;
}
[data-bs-theme=dark] .review::before {
  background: linear-gradient(270deg, rgba(236, 32, 43, 0.13) 0%, rgba(0, 0, 0, 0.15) 100%);
}
[data-bs-theme=dark] .review::after {
  background: none;
}
[data-bs-theme=dark] .action-bg {
  background-color: rgba(0, 40, 128, 0.2);
}
[data-bs-theme=dark] .footer h1,
[data-bs-theme=dark] .footer h2,
[data-bs-theme=dark] .footer h3 {
  color: #ffffff;
}
[data-bs-theme=dark] .footer p {
  color: #ffffff;
}
[data-bs-theme=dark] .footer .link-list li a:hover {
  color: #ffffff;
}
[data-bs-theme=dark] .footer .social a,
[data-bs-theme=dark] .footer .social .botom-link {
  color: #ffffff;
}
[data-bs-theme=dark] .footer .social a:hover,
[data-bs-theme=dark] .footer .social .botom-link:hover {
  color: #EC202B;
}

[data-bs-theme=light] .header {
  background-color: #ffffff;
}
[data-bs-theme=light] .header .navbar-nav .nav-item .nav-link {
  color: #000000;
}
[data-bs-theme=light] .hero::before {
  background: linear-gradient(270deg, rgba(235, 246, 255, 0.3) 0%, rgba(235, 246, 255, 0.5) 100%);
}
[data-bs-theme=light] .hero .animate-charcter {
  background-image: linear-gradient(-225deg, #000000 0%, #EC202B 100%);
}
[data-bs-theme=light] .features .box {
  background-color: #ffffff;
}

[data-bs-theme=auto] .switch .dropdown button {
  color: #EC202B;
}
[data-bs-theme=auto] .hero,
[data-bs-theme=auto] .header {
  background-color: #EBF6FF;
}
[data-bs-theme=auto] .core-services {
  background-color: #EBF6FF;
}
[data-bs-theme=auto] .core-services .cardeffect {
  background-color: #ffffff;
}
[data-bs-theme=auto] .services {
  background-color: #EBF6FF;
}
[data-bs-theme=auto] .features .box {
  background-color: #ffffff;
}
[data-bs-theme=auto] .footer {
  background-color: #EBF6FF;
}
[data-bs-theme=auto] .footer .border-top img {
  display: none;
}/*# sourceMappingURL=main.css.map */