/**********************/
/*  Typography  */
/**********************/

.form-floating > label{
  color: #898b96;
}
html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 28px;
  font-family: "IRANSans", sans-serif;
  flex-direction: column;
  color: #fefcfb;
  overflow-x: hidden;
  background-color: #10002b;
}

a {
  text-decoration: none !important;
  outline: none !important;
  transition: all 0.4s ease-in-out;
  color: rgb(96 165 250); /*#9d4edd;*/
}

a:hover {
  outline: none !important;
  text-decoration: none !important;
  color: #9d4edd;
}

a:focus {
  outline: none !important;
  text-decoration: none !important;
  color: #9d4edd;
}

a:active {
  outline: none !important;
  text-decoration: none !important;
  color: #9d4edd;
}

ul {
  list-style: none;
  padding: 0;
}

small {
  font-size: 80%;
  font-weight: 400;
  line-height: 20px;
}

span {
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IRANSans", sans-serif;
}

h1,
.h1 {
  font-size: 64px;
  line-height: 65px;
  font-weight: 600;
  color: #fefcfb;
}

h1 a,
.h1 a {
  color: inherit;
}

h2,
.h2 {
  font-size: 34px;
  line-height: 45px;
  font-weight: 500;
  color: #fefcfb;
}

h2 a,
.h2 a {
  color: inherit;
}

h3,
.h3 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  color: #fefcfb;
}

h3 a,
.h3 a {
  color: inherit;
}

h4,
.h4 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 500;
  color: #fefcfb;
}

h4 a,
.h4 a {
  color: inherit;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: #fefcfb;
}

h5 a,
.h5 a {
  color: inherit;
}

h6,
.h6 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: #fefcfb;
}

h6 a,
.h6 a {
  color: inherit;
}


input[readonly]{
  color: rgb(82, 77, 77);
}


@media (min-width: 1300px) {
  .container {
    max-width: 1300px;
  }
}

blockquote {
  border-right: 10px solid #f0f1f6;
  padding-right: 30px;
}

iframe {
  width: 100%;
}

.go-top {
  position: fixed;
  bottom: 200px;
  right: 0;
  display: none;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  transform: rotate(-90deg) translate(-50%, 0);
  z-index: 8;
}

.go-top-text {
  font-family: "IRANSans", sans-serif;
  font-size: 16px;
  color: #fefcfb;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 30px;
}

.go-top-text:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  bottom: -2px;
  height: 2px;
  background: #3452ff;
  white-space: nowrap;
  transition: all 0.4s ease-in-out;
}

.go-top-text:hover:before {
  width: 100%;
}

.sticky-top {
  top: 100px;
  z-index: 9;
}

@media (max-width: 576px) {

  h1,
  .h1 {
    font-size: 44px;
    line-height: 45px;
  }

  h2,
  .h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .scroll-down:after {
    width: 2rem;
    height: 2rem;
  }

  .go-top {
    position: fixed;
    bottom: 109px;
    right: -20px;
  }
}

/**********************/
/* Halper class */
/**********************/
.text-primary {
  color: #3452ff !important;
}

.text-secondary {
  color: #fd0 !important;
}

.text-success {
  color: #50d294 !important;
}

.text-danger {
  color: #ec5552 !important;
}

.text-warning {
  color: #FFCC00 !important;
}

.text-info {
  color: #53cad8 !important;
}

.text-dark {
  color: rgb(96 165 250) !important;
}

.text-light {
  color: #898b96 !important;
}

.text-black {
  color: #000000 !important;
}

.fill-warning {
  fill: #FFCC00;
}

.flex-wrap {
  flex-wrap: wrap;
}


.bg-primary {
  background-color: #3452ff !important;
}

.bg-secondary {
  background-color: #fd0 !important;
}

.bg-success {
  background-color: #50d294 !important;
}

.bg-danger {
  background-color: #ec5552 !important;
}

.bg-warning {
  background-color: #FFCC00 !important;
}

.bg-info {
  background-color: #53cad8 !important;
}

.bg-light {
  background-color: #f0f1f6 !important;
}

.bg-dark {
  background-color: #010521 !important;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-green {
  background-color: #50d294 !important;
}

.bg-red-light {
  background-color: #ff7171 !important;
}

.bg-blue {
  background-color: #0f6fd8 !important;
}

.bg-primary-gradient {
  background-image: linear-gradient(125deg, #ff1053, #3452ff);
}

.blur-01 {
  filter: blur(200px) contrast(1.2) saturate(0.85);
}


.border-dotted {
  border: 3px dotted #e5e5e5;
}

.border-radius-none {
  border-radius: 0 !important;
}


.w-100 {
  width: 100px;
}

.w-60 {
  width: 60px;
}

.z-index-n2 {
  z-index: -2;
}

.z-index-n1 {
  z-index: -1;
}

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.ls-3 {
  letter-spacing: 3px;
}

.ls-4 {
  letter-spacing: 4px;
}

.ls-5 {
  letter-spacing: 5px;
}

.ls-6 {
  letter-spacing: 6px;
}

.ls-7 {
  letter-spacing: 7px;
}

.ls-8 {
  letter-spacing: 8px;
}

.ls-9 {
  letter-spacing: 9px;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  font-weight: 500;
}

.display-1 {
  font-size: 6.3rem;
  line-height: 1;
}

.overflow-visible {
  overflow: visible;
}

.bg-fit {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}


.overlay-dark-70,
.overlay-dark-80,
.overlay-dark-90,
.overlay-black-50
{
  position: relative;
  z-index: 1;
}

.overlay-black-50:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.overlay-dark-70:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 5, 33, 0.7);
}
.overlay-dark-80:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 5, 33, 0.8);
}
.overlay-dark-90:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 5, 33, 0.9);
}
.slice-ptb {
  padding-top: 80px;
  padding-bottom: 80px;
}

.slice-pt {
  padding-top: 100px;
}

.slice-pb {
  padding-bottom: 100px;
}

.slice-mtb {
  margin-top: 100px;
  margin-bottom: 100px;
}

.slice-mt {
  margin-top: 100px;
}

.slice-mb {
  margin-bottom: 100px;
}


.scale-14 {
  transform: scale(1.4);
}



.avatar-40 {
  height: 40px;
  width: 40px;
}


.avatar-60 {
  height: 60px;
  width: 60px;
}


.avatar-90 {
  height: 90px;
  width: 90px;
}



.mt-n5 {
  margin-top: -3rem !important;
}



.box-shadow-primary {
  box-shadow: 0 10px 20px rgba(52, 82, 255, 0.08);
}

.hedding-svg {
  background-image: url(../images/svg/bottom-border.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
}

.animation {
  animation: example 2s infinite;
  font-size: 200px;
}


.alert {
  line-height: 1.5;
}

/* Standard syntax */
@keyframes example {
  0% {
    left: 1000px;
  }

  100% {
    left: 0px;
  }
}

@media (max-width: 991px) {
  .outside-box-right {
    margin-right: 0;
  }

  .outside-box-left {
    margin-left: 0;
  }

  .h-90vh,
  .h-100vh {
    height: auto;
  }

  .display-1 {
    font-size: 70px;
    line-height: 70px;
  }

  .slice-ptb {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .slice-pt {
    padding-top: 80px;
  }

  .slice-pb {
    padding-bottom: 80px;
  }

  .slice-mtb {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .slice-mt {
    margin-top: 80px;
  }

  .slice-mb {
    margin-bottom: 80px;
  }
}

@media (max-width: 576px) {
  .slice-ptb {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .slice-pt {
    padding-top: 60px;
  }

  .slice-pb {
    padding-bottom: 60px;
  }

  .slice-mtb {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .slice-mt {
    margin-top: 60px;
  }

  .slice-mb {
    margin-bottom: 60px;
  }
}

@media (max-width: 576px) {
  .display-1 {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (min-width: 1200px) {
  .px-xl-8 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
}

/**********************/
/* Header */
/**********************/
/**********************/
/* Navbar default */
/**********************/
.navbar {
  font-family: "IRANSans", sans-serif;
  padding: 18px 50px;
}

.navbar-brand .logo {
  height: 35px;
}

.navbar .navbar-nav li .text-line {
  position: relative;
}

.navbar .navbar-nav li .text-line:before {
  content: "";
  position: absolute;
  right: 0;
  width: 0;
  bottom: -2px;
  height: 2px;
  background: #c77dff;
  transition: all 0.4s ease-in-out;
}

.navbar .navbar-nav li:hover .text-line:before {
  width: 100%;
}

.navbar .navbar-nav li.active .text-line:before {
  width: 100%;
}

.navbar .icon-bar {
  width: 21px;
  height: 3px;
  background-color: #fefcfb;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 4px;
}

.navbar .navbar-toggler:focus {
  outline: 0px;
}

.navbar .navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 190%;
}

.navbar .navbar-toggler .middle-bar {
  opacity: 0;
}

.navbar .navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% -80%;
}

.navbar .navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.navbar .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.navbar .navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

.navbar .navbar-nav .nav-item {
  padding: 0 16px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #fefcfb;
  position: relative;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 500;
}

.navbar-icons {
  display: flex;
  flex-wrap: wrap;
}

.navbar-icons .icon {
  margin-left: 20px;
  color: #fefcfb;
  display: inline-block;
  font-size: 20px;
  line-height: 1em;
}

.navbar-icons .icon span {
  font-size: 14px;
  line-height: 1em;

}

.navbar-icons .icon:last-child {
  margin-left: 0;
}

.navbar-icons .icon:hover {
  color: #fefcfb;
}

.navbar-icons .cart-box .icon {
  margin-left: 20px;
}

.cart-box .offcanvas-header .btn-close,
.sidebar-box .offcanvas-header .btn-close {
  font-size: 24px;
  color: #3c096c !important;
}

.cart-box .offcanvas-header .btn-close:hover,
.sidebar-box .offcanvas-header .btn-close:hover {
  color: #c77dff !important;
}

/**********************/
/*  Navbar default border  */
/**********************/
.navbar-default-border {
  border-bottom: 1px solid #e5e5e5;
}

/**********************/
/*  Navbar transparent  */
/**********************/
.navbar.navbar-transparent {
  position: absolute;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid rgba(229, 229, 229, 0.1);
  background-color: rgb(16,0,43,0.5);
}

.navbar.navbar-transparent .navbar-nav .nav-item .nav-link {
  color: #e5e5e5;
}

.navbar.navbar-transparent .navbar-icons .icon {
  color: #e5e5e5;
}

.navbar.navbar-transparent .navbar-icons .icon:hover {
  color: #02c39a;
}

/**********************/
/*  Navbar blur  */
/**********************/
.navbar-blur {
  backdrop-filter: blur(0.2rem);
}

/**********************/
/*  Navbar text dark   */
/**********************/
.navbar.navbar-text-dark .navbar-nav .nav-item .nav-link {
  color: #e5e5e5;
}

.navbar.navbar-text-dark .navbar-icons .icon {
  color: #e5e5e5;
}

.navbar.navbar-text-dark .navbar-icons .icon:hover {
  color: #02c39a;
}


/**********************/
/*  Navbar transparent  */
/**********************/
.navbar.navbar-dark {
  background: transparent;
}

.navbar.navbar-dark .navbar-nav .nav-item .nav-link {
  color: #e5e5e5;
}

.navbar.navbar-dark .navbar-icons .icon {
  color: #e5e5e5;
}

.navbar.navbar-dark .navbar-icons .icon:hover {
  color: #02c39a;
}

.col-5-menu {
  flex: 0 0 auto;
  width: 20%;
}

.col-7-menu {
  flex: 0 0 auto;
  width: 14.28%;
}

.col-6-menu {
  flex: 0 0 auto;
  width: 50%;
}

.col-12-menu {
  flex: 0 0 auto;
  width: 100%;
}

/**********************/
/*  Navbar fixed  */
/**********************/
.navbar.fixed-navbar {
  transition: all 0.5s ease;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: rgb(16,0,43,0.85);
  box-shadow: 0 8px 24px rgba(1, 5, 33, 0.1);
  z-index: 999;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes stickySlideDown {
  0% {
    opacity: 0.8;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.navbar-transparent.fixed-navbar {
  /*background: #10002b;*/
}

.navbar.navbar-text-dark.fixed-navbar {
  /*background: #10002b;*/
}

.navbar.navbar-dark.fixed-navbar {
  background: #10002b;
}

.navbar-left .navbar-nav {
  display: block;
}

.navbar-left.navbar-expand-lg {
  display: block;
}

@media (max-width: 1199px) {
  .navbar {
    padding: 18px 20px;
  }

  .navbar-icons .icon {
    margin-left: 10px;
  }


  .topbar .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .navbar-transparent.navbar .icon-bar {
    background: #ffffff;
  }

  .navbar-transparent.navbar.navbar-light .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar {
    padding: 8px 10px;
  }

  .navbar .navbar-brand img {
    height: 26px;
  }

  .navbar .navbar-collapse {
    background: #010521;
    padding: 0 10px;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 9;
    max-height: 100vh;
  }

  .navbar .navbar-nav {
    padding: 20px 0;
  }

  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #ffffff;
  }

  .navbar .navbar-collapse .navbar-icons .icon {
    color: #ffffff;
  }

  .navbar-toggler {
    border: none;
    order: 5;
    position: inherit !important;
  }
  .navbar-toggler i{
    font-size: 26px;
    color: #fff;
  }
  .col-5-menu {
    flex: 0 0 auto;
    width: 33.33%;
  }

  .col-7-menu {
    flex: 0 0 auto;
    width: 33.33%;
  }

  .navbar-collapse {
    max-height: calc(100vh - 66px);
  }

  .navbar.navbar-text-dark.navbar-transparent .icon-bar {
    background-color: #fefcfb;
  }

  .navbar.navbar-dark .icon-bar {
    background-color: #fefcfb;
  }

  .navbar-icons .icon:last-child {
    margin-left: 20px;
  }

  .navbar-icons .cart-box .icon {
    margin-left: 15px;
  }
}

@media (max-width: 767px) {
  .col-5-menu {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-7-menu {
    flex: 0 0 auto;
    width: 50%;
  }

  .navbar-icons .icon span {
    display: inline;
  }
}

@media (max-width: 575px) {

  .navbar-icons .icon .icon-instagram {
    display: none;
  }

  .navbar-toggler {
    padding: 0;
  }

  .col-5-menu {
    flex: 0 0 auto;
    width: 100%;
  }

  .col-7-menu {
    flex: 0 0 auto;
    width: 100%;
  }

  .col-6-menu {
    flex: 0 0 auto;
    width: 100%;
  }

  .navbar-icons .icon {
    margin-left: 20px;
  }

  .navbar-icons .icon:has(i) span {
    display: none;
  }

  .navbar-icons .search-box .icon {
    margin-left: 15px;
  }
}


/**********************/
/* Footer */
/**********************/
.footer .footer-links ul li a {
  color: #898b96;
}

.footer .footer-links ul li a:hover {
  color: #3452ff;
}

.footer-logo {
  height: 50px;
}

@media (max-width: 991px) {
  .footer-portfolio .portfolio-column-4 .grid-item {
    width: 33.333%;
  }
}




/**********************/
/* Social icons */
/**********************/
.social-icons {
  display: flex;
  flex-wrap: wrap;
}

.social-icons .icon {
  margin-left: 20px;
  color: #010521;
  display: inline-block;
  font-size: 22px;
  margin-bottom: 3px;
}

.social-icons .icon:last-child {
  margin-left: 0;
}

.social-icons .icon:hover {
  color: #3452ff;
}

.social-icons.icons-xl {
  font-size: 36px;
}

.social-icons.icons-xl .icon {
  margin-left: 20px;
}

.social-icons.icons-md .icon {
  margin-left: 20px;
  font-size: 20px;
}

.social-icons.icons-sm .icon {
  margin-left: 10px;
  font-size: 14px;
}

.social-icons.social-icon-box .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f0f1f6;
  margin-left: 4px;
}

.social-icons.social-icon-img .icon {
  margin-left: 4px;
}

.social-icons.social-icon-img .icon img {
  width: 50px;
  height: 50px;
}

.social-icons.social-icon-img .icon:hover {
  transform: translateY(-3px);
  box-shadow: 0px 7px 20px rgba(1, 5, 33, 0.3);
}

.social-icons.social-icon-box .icon:last-child {
  margin-left: 0;
}

.social-icons.social-icon-box .icon:hover {
  background: #3452ff;
  color: #ffffff;
}

.social-icons.social-icon-box.icons-xl .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
}

.social-icons.social-icon-box.icons-md .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.social-icons.social-icon-box.icons-sm .icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.social-icons.social-icon-rounded .icon {
  border-radius: 4px;
}

.social-icons.social-icon-round .icon {
  border-radius: 50%;
}


.social-icons.icon-colored .icon.instagram {
  color: #8a3ab9;
}

.social-icons.icon-colored .icon.instagram:hover {
  background: transparent;
  color: #8a3ab9;
}


.social-icons.icon-colored .icon.rss {
  color: #ee802f;
}

.social-icons.icon-colored .icon.rss:hover {
  background: transparent;
  color: #ee802f;
}



.social-icons.social-icon-box.icon-colored .icon.instagram {
  color: #8a3ab9;
}

.social-icons.social-icon-box.icon-colored .icon.instagram:hover {
  background: #8a3ab9;
  color: #ffffff;
}


.social-icons.social-icon-box.icon-colored .icon.linkedin {
  color: #0077b5;
}

.social-icons.social-icon-box.icon-colored .icon.linkedin:hover {
  background: #0077b5;
  color: #ffffff;
}


.social-icons.icon-bg-colored .icon:hover {
  transform: translateY(-3px);
  box-shadow: 0px 7px 20px rgba(1, 5, 33, 0.3);
}



.social-icons.icon-bg-colored .icon.instagram {
  color: #ffffff;
  background: #8a3ab9;
}

/* .social-icons.icon-bg-colored .icon.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0px 7px 20px rgba(1, 5, 33, 0.3);
} */


.social-icons.icon-bg-colored .icon.linkedin {
  color: #ffffff;
  background: #0077b5;
}

/* .social-icons.icon-bg-colored .icon.linkedin:hover {
  transform: translateY(-3px);
  box-shadow: 0px 7px 20px rgba(1, 5, 33, 0.3);
} */

.social-icons.icon-border .icon {
  background: transparent;
  border: 2px solid #f0f1f6;
}

.social-icons.icon-border .icon:hover {
  background: #3452ff;
  border: 2px solid #3452ff;
}

.social-icons.icon-colored.social-text-small .icon {
  font-size: 16px;
}

.social-icons.icon-colored.social-text-small .icon span {
  padding-right: 4px;
}

.social-icons.icon-colored.social-text-small .icon:hover {
  background: transparent;
  color: #3452ff;
}

.social-icons.social-icon-text.icon-colored .icon {
  font-size: 16px;
}

.social-icons.social-icon-text.icon-colored .icon span {
  padding-right: 4px;
}

.social-icons.social-icon-text.icon-colored .icon:hover {
  background: transparent;
  color: #3452ff;
}



/**********************/
/* Counter */
/**********************/
.counter.counter-icon {
  position: relative;
  z-index: 1;
  padding-right: 50px;
  text-align: center;
}

.counter.counter-icon .icon {
  position: absolute;
  font-size: 75px;
  top: 0;
  color: rgba(103, 82, 138, 0.15);
  z-index: -1;
  left: 0;
}

.counter.counter-icon-left {
  display: flex;
}

.counter.counter-icon-left .icon {
  font-size: 60px;
  line-height: 60px;
}

.counter.counter-box {
  padding: 35px 30px 40px;
  position: relative;
  display: flex;
}

.counter.counter-box .icon {
  position: absolute;
  font-size: 60px;
  bottom: 0;
  color: rgba(52, 82, 255, 0.1);
  z-index: 0;
  left: 0;
}


/**********************/
/* Components */
/**********************/
/**********************/
/* Accordion */
/**********************/

.accordion.accordion-icon .accordion-button img{
  width:100px;
  height:100px;
  border-radius: 10px;
  /*border-color:1px #a2a2a2;*/
  /*border-style: solid;*/
  box-shadow:  1px 1px 5px grey;
  border:1px solid #a2a2a2;
 }

.accordion-item {
  border-top-right-radius: var(--bs-accordion-border-radius);
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);

}

 .accordion.accordion-icon .accordion-button span{
    font-size: small;
    line-height: 2;
 }

  @media (min-width: 768px) {
    .accordion.accordion-icon .accordion-button span{
      font-size: x-large;
      line-height: 2;
    }
  }

 

.accordion .accordion-item {
  border: none;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}


.accordion.accordion-icon .accordion-header {
  background: transparent;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  margin-bottom: 16px;
  box-shadow: 0 4px 6px rgba(1, 5, 33, 0.05);
}

.accordion.accordion-icon .accordion-header .accordion-button {
  font-size: 16px;
  color: #010521;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-radius: 5px;
}

.accordion.accordion-icon .accordion-header .accordion-button i {
  font-size: 34px;
  color: #3452ff;
  margin-right: 20px;
}

.accordion.accordion-icon .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.accordion.accordion-simple .accordion-button {
  padding: 0;
  position: relative;
  font-weight: 600;
  border: none;
  background: transparent;
}

.accordion.accordion-simple .accordion-button:focus {
  box-shadow: none;
}

.accordion.accordion-simple .accordion-body {
  padding-left: 0;
  padding-right: 0;
}

/**********************/
/* Button */
/**********************/
.btn {
  padding: 14px 30px;
  font-size: 1rem;
  /*border-radius: 3;*/
  box-shadow: none;
  transition: all 0.4s ease-in-out;
}

.btn:focus {
  box-shadow: none;
  color: #3452ff;
}

.btn-close:focus {
  box-shadow: none;
}

.btn.btn-default {
  background: #3452ff;
  color: #ffffff;
}

.btn.btn-default:hover {
  background: #010521;
  color: #ffffff;
}

.btn.btn-default:focus {
  background: #010521;
  color: #ffffff;
}

.btn.btn-green {
  background: #50d294;
  color: #ffffff;
}

.btn.btn-red {
  background: #e91c28;
  color: #ffffff;
}

.btn.btn-yellow {
  background: #ffea04;
  color: #010521;
}

.btn.btn-cyan {
  background: #26c3ad;
  color: #ffffff;
}

.btn.btn-white {
  background: #ffffff;
  color: #010521;
}

.btn.btn-white:hover {
  background: #3452ff;
  color: #ffffff;
}

.btn.btn-white:focus {
  background: #3452ff;
  color: #ffffff;
}

.btn.btn-red-light {
  background: #ff7171;
  color: #ffffff;
}

.btn.btn-orange {
  background: #f97204;
  color: #ffffff;
}

.btn.btn-blue {
  background: #0f6fd8;
  color: #ffffff;
}

.btn.btn-black {
  background: #000000;
  color: #ffffff;
}

.btn.btn-black:hover {
  background: #f0f1f6;
  color: #010521;
}

.btn.btn-black:focus {
  background: #f0f1f6;
  color: #010521;
}

/* .btn-warning i {
  color: #010521;
}

.btn-warning:hover {
  background: #3452ff;
  color: #ffffff;
  border-color: #3452ff;
}

.btn-warning:hover i {
  color: #ffffff;
}

.btn-warning:focus {
  background: #3452ff;
  color: #ffffff;
  border-color: #3452ff;
}

.btn-warning:focus i {
  color: #ffffff;
} */

.btn.btn-rounded {
  border-radius: 4px;
}

.btn.btn-round {
  border-radius: 30px;
}

.btn.btn-xl {
  padding: 20px 50px;
  font-size: 18px;
}

.btn.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn.btn-xs {
  padding: 8px 16px;
  font-size: 12px;
}

.btn.btn-icon-left i {
  padding-right: 6px;
}

.btn.btn-icon-right i {
  padding-left: 6px;
}

.btn.btn-icon-left-hover i {
  padding-right: 6px;
  transition: all 0.4s ease-in-out;
}

.btn.btn-icon-left-hover:hover i {
  transform: translateX(-4px);
}

.btn.btn-icon-right-hover i {
  padding-left: 6px;
  transition: all 0.4s ease-in-out;
}

.btn.btn-icon-right-hover:hover i {
  transform: translateX(4px);
}

.btn.btn-outline-default {
  background: transparent;
  color: #3452ff;
  border: 2px solid #3452ff;
}

.btn.btn-outline-default:hover {
  background: #3452ff;
  color: #ffffff;
}

.btn.btn-outline-light {
  background: transparent;
  color: #010521;
  border: 2px solid #e5e5e5;
}

.btn.btn-outline-light:hover {
  background: #f0f1f6;
  color: #010521;
  border-color: #f0f1f6;
}

.btn.btn-outline-dark {
  background: transparent;
  color: #010521;
  border: 2px solid #010521;
}

.btn.btn-outline-dark:hover {
  background: #010521;
  color: #ffffff;
  border-color: #010521;
}

.btn.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn.btn-outline-white:hover {
  background:  linear-gradient(to bottom, rgba(44, 24, 77, 0.50), rgba(16, 0, 43, 0), rgba(44, 24, 77, 0.1));
  color: #fff;
  border-color: #1f0a41;
}

.btn.btn-shadow {
  box-shadow: 0px 7px 20px rgba(1, 5, 33, 0.3);
}

.btn.btn-shadow-hover:hover {
  box-shadow: 0px 7px 20px rgba(1, 5, 33, 0.1);
  transform: translatey(-2px);
}

.btn-gradient {
  background: linear-gradient(125deg, #ff1053, #3452ff);
  color: #ffffff;
  border: none;
}

.btn-gradient:hover {
  box-shadow: 0px 10px 30px rgba(1, 5, 33, 0.2);
  transform: translatey(-2px);
  color: #ffffff;
}

.btn-gradient:focus {
  color: #ffffff;
}

.btn-gradient-02 {
  background: linear-gradient(125deg, #fd2590, #fd692e);
  color: #ffffff;
  border: none;
}

.btn-gradient-02:hover {
  box-shadow: 0px 10px 30px rgba(141, 94, 217, 0.2);
  transform: translatey(-2px);
  color: #ffffff;
}

.btn-gradient-02:focus {
  color: #ffffff;
}

.btn-gradient-03 {
  background: linear-gradient(to left, #c73fd4 0%, #ff578b 100%);
  color: #ffffff;
  border: none;
}

.btn-gradient-03:hover {
  box-shadow: 0px 10px 30px rgba(1, 5, 33, 0.2);
  transform: translatey(-2px);
  color: #ffffff;
}

.btn-gradient-03:focus {
  color: #ffffff;
}

.btn-gradient-04 {
  background: linear-gradient(137deg, #f42959 0%, #e84227 100%);
  color: #ffffff;
  border: none;
}

.btn-gradient-04:hover {
  box-shadow: 0px 10px 30px rgba(1, 5, 33, 0.2);
  transform: translatey(-2px);
  color: #ffffff;
}

.btn-gradient-04:focus {
  color: #ffffff;
}

.btn-sm-heading {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: white;
  margin-bottom: 0;
}


/**********************/
/* competiton cards */
/**********************/
.swiper-slide {
  height: auto !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.property-listing-item {
  height: 100%;
  background: linear-gradient(to bottom, rgba(44, 24, 77, 0.50), rgba(16, 0, 43, 0), rgba(44, 24, 77, 0.1));
  border-radius: 10px;
  border-top: 5px solid #424242;
  border-bottom: 1px solid #210a48;
  color: white;
  padding: 0px;
  border: 1px solid #29124f
}

.property-listing-item .property-image {
  position: relative;
  /*border: 1px solid #e5e5e5;*/
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.property-listing-item .property-image>img {
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 350;
  object-fit: contain;
  object-position: center;
  max-height: 322px;
  max-width: 552px;
  border-radius: 6px 6px 0 0;
}

.property-listing-item .property-agent {
  position: absolute;
  left: 15px;
  bottom: 0px;
  box-shadow: 0px 0px 18px #6e4baa;
  border-radius: 50%;
}

.property-listing-item .property-agent img {
  /*border: 1px solid #eaeaea;*/
}

.property-listing-item .property-category {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.property-listing-item .property-category a {
  background: #f97204;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
}

.property-listing-item .property-category a:hover {
  background: #ffffff;
  color: #f97204;
}

.property-listing-item .property-meta {
  position: absolute;
  left: 6px;
  bottom: 3px;
  display: flex;
}

.property-listing-item .property-meta a {
  background: #000000;
  color: #ffffff;
  width: 30px;
  line-height: 30px;
  text-align: center;
  height: 30px;
  display: block;
  border-radius: 30px;
  margin-right: 10px;
}

.property-listing-item .property-meta div {
  background: #000000;
  color: #ffffff;
  width: 60px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
  border-radius: 15px;
  margin-right: 5px;
}


.property-listing-item .property-meta a:hover {
  background: #ffffff;
  color: #f97204;
}

.property-listing-item .property-meta a.property-like {
  background: #f97204;
}
.property-listing-item .property-meta div.property-like ,
.property-listing-item .property-meta div.property-view {
  background: #10002b;
}

.property-listing-item .property-meta a.property-like:hover {
  background: #ffffff;
  color: #f97204;
}

.property-listing-item .property-info {
  /*border: 1px solid #e5e5e5;*/
  /*border-radius: 0 0 6px 6px;*/
}

/* .property-listing-item .property-list {
  display: flex;
} */

/* .property-listing-item .property-list li {
  margin-left: 20px;
}

@media (max-width:1200px) {
  .property-listing-item .property-list li {
    margin-left: 16px;
  }

}

@media (max-width:576px) {
  .property-listing-item .property-list {
    flex-wrap: wrap;
  }

} */


/**********************/
/* Tabs */
/**********************/

.nav.nav-icon .nav-link {
  padding: 40px 50px;
  margin: 0 10px;
  background: #ffffff;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  font-size: 18px;
  border: 2px solid transparent;
  color: #010521;
}

.nav.nav-icon .nav-link i {
  display: block;
  font-size: 26px;
  margin-bottom: 10px;
  color: #010521;
}

.nav.nav-icon .nav-link.active {
  border-color: #3452ff;
  color: #3452ff;
}

.nav.nav-icon .nav-link.active i {
  color: #3452ff;
}

/* nav-box  */
.nav.nav-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 5px;
}

.nav.nav-box .nav-link {
  padding: 10px 30px;
  color: #898b96;
}

.nav.nav-box .nav-link.active {
  background: #e91c28;
  color: #ffffff;
}

.nav.nav-border-wide {
  border-bottom: 3px solid #e5e5e5;
}

.nav.nav-border-wide .nav-link {
  padding: 10px 30px;
  background: transparent;
  border-radius: 0;
  font-weight: 500;
  color: #010521;
}

.nav.nav-border-wide .nav-link.active {
  background: transparent;
  color: #3452ff;
  border-bottom: 3px solid #3452ff;
}

.tab-vertical .nav .nav-link {
  font-weight: 500;
  font-size: 18px;
  color: #010521;
  border-radius: 0;
  padding: 20px 40px;
  border-right: 3px solid transparent;
}

.tab-vertical .nav .nav-link.active {
  background: #ffffff;
  border-right: 3px solid #010521;
}

@media (max-width: 1199px) {
  .nav.nav-icon .nav-link {
    padding: 40px 40px;
  }

  .tab-default.tab-light .nav .nav-item .nav-link {
    margin-bottom: 4px;
  }
}

@media (max-width: 991px) {
  .nav.nav-icon .nav-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .tab-default.tab-number .nav-item .nav-link {
    padding: 16px 36px;
  }

  .tab-default.tab-light .nav .nav-item .nav-link {
    margin-bottom: 5px;
  }
}


/**********************/
/* Countdown */
/**********************/
.countdown-item.countdown-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  margin: 10px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;

}

.countdown-item.countdown-box:hover {
  transform: scale(1.05);
}

.countdown-item.countdown-box.overlay {
  position: relative;
  z-index: 1;
}

.countdown-item.countdown-box span {
  display: block;
  margin: 0;
  font-size: 2rem; /* Increased font size for better visibility */
  line-height: 1.2;
  color: #10002b; /* Darker color for better contrast */
}

.countdown-item.countdown-box.large span {
  font-size: 3rem; /* Larger font size for emphasis */
}

.countdown-item.countdown-box p {
  font-size: 0.8rem; /* Smaller font size for labels */
  margin: 0;
  line-height: 1.5;
  color: #666; /* Lighter color for labels */
}

.countdown-item.countdown-box.large p {
  font-size: 1rem; /* Larger font size for labels in large boxes */
}

.countdown-item.countdown-box li.seperator {
  margin: 0 10px; /* Increased margin for better spacing */
  padding: 0;
  font-size: 1.5rem; /* Increased font size for separators */
  color: #171717;
  background: transparent;
  box-shadow: none;
}

.countdown-item.countdown-box.large li.seperator {
  font-size: 2rem; /* Larger font size for separators in large boxes */
}

.countdown-item.countdown-box li {
  width: 8rem;
  margin: 0 5px; /* Increased margin for better spacing */
  background: #2f1954; /* Changed background color for better visibility */
  color: white;
  border-radius: 4px;
  padding: 10px 15px; /* Increased padding for better touch targets */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: background 0.3s;
}

.countdown-item.countdown-box li:hover {
  background: #642bc6; /* Darker shade on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .countdown-item.countdown-box {
    flex-direction: column; /* Stack items on smaller screens */
    padding: 15px;
  }

  .countdown-item.countdown-box span {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
  }

  .countdown-item.countdown-box.large span {
    font-size: 2.5rem; /* Adjust font size for larger boxes on smaller screens */
  }

  .countdown-item.countdown-box li {
    padding: 8px 10px; /* Adjust padding for smaller screens */
  }

  .countdown-item.countdown-box li.seperator {
    font-size: 1.2rem; /* Adjust font size for separators on smaller screens */
  }
}



/**********************/
/* Pagination */
/**********************/
.pagination {
  flex-wrap: wrap;
}

.pagination .page-item {
  margin: 0 5px;
}

.pagination .page-link {
  padding: 7px 16px;
  color: #010521;
  border-radius: .25rem;
  background: #f0f1f6;
  transition: all 0.4s ease-in-out;
}

.pagination .page-link:focus {
  box-shadow: none;
}

.pagination .page-link:hover {
  background: #3452ff;
  border-color: #3452ff;
  color: #ffffff;
}

.pagination .page-item.active .page-link {
  background: #3452ff;
  border-color: #3452ff;
}

@media (max-width: 576px) {
  .pagination .page-item {
    margin: 5px;
  }
}




/* Blog post */
/**********************/
.blog-post {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border-radius: .25rem;
}

.blog-post .blog-image {
  position: relative;
  overflow: hidden;
  max-height: 300px;
}

.blog-post .blog-image img {
  border-radius: .25rem .25rem 0 0;
  transition: all 0.4s ease-in-out;
}

.blog-post .blog-image .blog-meta-comments {
  display: flex;
  position: absolute;
  top: -20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.blog-post .blog-image .blog-meta-comments .blog-like {
  background: #FFCC00;
  color: #010521;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: .25rem;
  margin-right: 10px;
}

.blog-post .blog-image .blog-meta-comments .blog-like:hover {
  background: #3452ff;
  color: #ffffff;
}

.blog-post .blog-image .blog-meta-comments .blog-comments {
  background: #FFCC00;
  color: #010521;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: .25rem;
}

.blog-post .blog-image .blog-meta-comments .blog-comments:hover {
  background: #3452ff;
  color: #ffffff;
}

.blog-post .blog-caption {
  padding: 34px;
}

.blog-post .blog-caption .blog-author a {
  color: #010521;
}

.blog-post .blog-caption .blog-author a:hover {
  color: #3452ff;
}

.blog-post .blog-caption .blog-meta {
  display: flex;
}

.blog-post .blog-caption .blog-meta li {
  margin-right: 8px;
}

.blog-post .blog-caption .blog-meta a {
  color: #3452ff;
  font-weight: 600;
}

.blog-post .blog-caption .blog-meta a:hover {
  color: #FFCC00;
}

.blog-post:hover .blog-image img {
  transform: scale(1.2);
}

.blog-post:hover .blog-image .blog-meta-comments {
  opacity: 1;
  visibility: visible;
  top: 20px;
}

.blog-post-article .blog-post-img {
  position: relative;
  overflow: hidden;
}

.blog-post-article .blog-post-img img {
  border-radius: .25rem .25rem 0 0;
  transition: all 0.4s ease-in-out;
}

.blog-post-article .other-info li a {
  color: #898b96;
}

.blog-post-article .other-info li a i {
  color: #3452ff;
}

.blog-post-article .other-info li a:hover {
  color: #3452ff;
}

.blog-post-article:hover .blog-post-img img {
  transform: scale(1.2);
}

.blog-post.blog-post-boxed {
  background: #f0f1f6;
  overflow: hidden;
  box-shadow: none;
  position: relative;
}

.blog-post.blog-post-boxed .blog-caption {
  padding: 50px;
  position: relative;
  z-index: 2;
}

.blog-post.blog-post-boxed .blog-caption .blog-author a {
  color: #010521;
}

.blog-post.blog-post-boxed .blog-box-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.blog-post-boxed.active .blog-box-img,
.blog-post-boxed:hover .blog-box-img {
  opacity: 1;
  transform: scale3d(1.1, 1.1, 1);
}

.blog-post-boxed:hover:before,
.blog-post-boxed.active:before {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  color: #ffffff;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.blog-post.blog-post-boxed:hover,
.blog-post.blog-post-boxed:hover a,
.blog-post.blog-post-boxed:hover .blog-author a,
.blog-post.blog-post-boxed.active,
.blog-post.blog-post-boxed.active a,
.blog-post.blog-post-boxed.active .blog-author a {
  color: #ffffff;
}

.blog-post.blog-post-boxed:hover {
  box-shadow: 0 6px 16px rgba(1, 5, 33, 0.2);
}

.blog-post.blog-post-overlay {
  overflow: hidden;
  box-shadow: none;
  position: relative;
}


.blog-post-simple {
  box-shadow: none;
}

.blog-post.blog-post-blockquote {
  padding: 30px 50px;
}

.blog-post.blog-post-blockquote .blockquote {
  position: relative;
}

.blog-post.blog-post-blockquote .blockquote:before {
  top: 5px;
  left: -50px;
  color: #3452ff;
}

.blog-post.blog-post-blockquote .blockquote:after {
  color: #3452ff;
  bottom: -50px;
  right: 50px;
}

/* Blog Overlay Style */
.blog-post.blog-overlay-style .blog-caption {
  position: absolute;
  z-index: 9;
  bottom: -110px;
  margin: 0 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}




.blog-tag {
  display: flex;
  flex-wrap: wrap;
}

.blog-tag li {
  margin: 0 3px 3px 0;
}

.blog-tag li a {
  display: block;
  padding: 2px 14px;
  border-radius: 3px;
  /*background: #f0f1f6;*/
  color: #898b96;
}

.blog-tag li a:hover {
  background: #3452ff;
  color: #ffffff;
}

.blog-single .comments-list {
  margin-top: 30px;
}

.blog-single .comments-list li {
  display: block;
}

.blog-single .comments-list li.comments {
  display: flex;
  padding-bottom: 30px;
  align-items: start;
}

.blog-single .comments-list li.comments .comment-avtar .avatar {
  width: 50px;
  height: 50px;
}

.blog-single .comments-list li.comments .comment-info {
  margin-right: 20px;
}

.blog-single .comments-list li.comments:last-child {
  padding-bottom: 0;
}

.blog-single .comments-list li.comments.children {
  padding-right: 92px;
}

.blog-single .comments-list .replay {
  font-weight: 600;
}

.blog-post-no-hover:hover .blog-image img {
  transform: scale(1);
}

@media (max-width: 992px) {
  .blog-post .blog-caption {
    padding: 20px;
  }
}

@media (max-width: 767px) {


  .mejs__container {
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .blog-post.blog-post-blockquote {
    padding: 0px 20px;
  }

  .blog-post.blog-post-blockquote .blockquote {
    padding: 0 20px;
  }
  .soundcloud {
    height: auto;
  }
}

/**********************/
/* Sidebar */
/**********************/
.widget .widget-title {
  margin-bottom: 20px;
}

.widget .widget-search {
  position: relative;
}

.widget .widget-search .form-control {
  padding-left: 60px;
}

.widget .widget-search .search-icon {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.5;
  width: 40px;
  height: 50px;
  font-weight: 600;
  font-size: 16px;
}

/* for sidebar winners */
.widget-winners{
  display: block;
  width: 100%;
  max-height: 250px;
  overflow-y: scroll;
}
.widget-winners tbody{
  display: inline-table;
  width: 100%;
}


/* for modal winners */
.widget .widget-winners li {
  border-bottom: 1px solid #e5e5e5;
}

.widget .widget-winners li a {
  padding: 0;
  display: flex;
  align-items: center;
  color: #898b96;
}

.widget .widget-winners li a span {
  margin-right: auto;
}

.widget .widget-winners li a:hover {
  color: #3452ff;
}

.widget .widget-winners li div {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: #898b96;
}

.widget .widget-winners li div span {
  margin-right: auto;
}

.widget .widget-winners li:last-child {
  border-bottom: 0;
}

.widget .widget-tag {
  display: flex;
  flex-wrap: wrap;
}

.widget .widget-tag li {
  margin: 0 3px 3px 0;
}

.widget .widget-tag li a {
  display: block;
  padding: 2px 14px;
  border-radius: 3px;
  background: #f0f1f6;
  color: #898b96;
}

.widget .widget-tag li a:hover {
  background: #3452ff;
  color: #ffffff;
}

.widget .widget-newsletter {
  background: #f0f1f6;
  padding: 30px;
  border-radius: .25rem;
}



/**********************/
/* Form */
/**********************/
.form-control {
  border-radius: 3px;
  height: 44px;
  line-height: 44px;
  padding: 12px 20px;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}

.form-control:focus {
  box-shadow: none;
  border-color: #3452ff;
}

textarea.form-control,
.form-floating>textarea.form-control {
  height: auto;
  line-height: 1.5;
}

.form-select {
  border-radius: 3px;
  height: 44px;
  line-height: 24px;
  padding: 12px 20px;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}

.form-select:focus {
  box-shadow: none;
  border-color: #3452ff;
}

.form-light .form-control {
  background: #f0f1f6;
}

.form-light .form-control:hover {
  background: #ffffff;
}

.form-border-bottom .form-control {
  border: 0px;
  border-radius: 0;
  border-bottom: 2px solid #e5e5e5;
  padding-left: 0;
}

.form-border-bottom .form-control:focus {
  border-color: #3452ff;
}


.form-shadow .form-control {
  box-shadow: 0px 7px 20px rgba(1, 5, 33, 0.1);
}

.form-control-lg {
  height: 80px;
  padding: 40px;
  font-size: 14px;
}

.form-dark .form-control {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.form-dark .form-control::-moz-placeholder {
  color: #8a8787;
}

.form-dark .form-control::-ms-input-placeholder {
  color: #8a8787;
}

.form-dark .form-control::-webkit-input-placeholder {
  color: #8a8787;
}


.subscribe-floating .btn {
  padding: 16px 30px;
}

.form-check {
  line-height: 1.5;
}

.form-check-input {
  box-shadow: none !important;
}

.form-check-input:checked {
  border-color: #3452ff;
  background-color: #3452ff;
}

/**
* Best User 
*/
.best-user-item {
  height: 100%;
}

.best-user-item a {
  color: #fefcfb;
}

.best-user-item  img {
  height: 80px;
  width: 80px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

.best-user-item  span{
  display: block; 
  margin-top: 10px; 
  margin-bottom: 10px;
  font-size: 14px;
}

/* organizer-item */
.organizer-item {
  height: 100%;
}
.organizer-item a {
  color: #fefcfb;
}

.organizer-item  img {
  height: 100px;
  width: 100px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

.organizer-item  span{
  display: block; 
  margin-top: 10px; 
  margin-bottom: 10px;
  font-size: 14px;
}


/* competition info */
.comp-info .info-item{
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;
}
.comp-info .info-item span:last-child{
  margin-right: auto !important;
}


.infinite-end-btn {
  display: none;
}


/* Animate Features */
.glow {
  color: inherit;
  /* Text color */
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.8),
    0 0 10px rgba(255, 255, 255, 0.6),
    0 0 15px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 255, 255, 0.2);
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  0% {
    text-shadow:
      0 0 5px rgba(255, 255, 255, 0.8),
      0 0 10px rgba(255, 255, 255, 0.6),
      0 0 15px rgba(255, 255, 255, 0.4),
      0 0 20px rgba(255, 255, 255, 0.2);
  }

  100% {
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.9),
      0 0 20px rgba(255, 255, 255, 0.8),
      0 0 30px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(255, 255, 255, 0.4);
  }
}

.section-m1{
  background: linear-gradient(to bottom, rgba(44, 24, 77, 0.50), rgba(16, 0, 43, 0), rgba(44, 24, 77, 0.1));
  border-radius: 30px;
  border-top: 1px solid #424242;
  border-bottom: 1px solid #210a48;
  color: white;
  padding: 30px;
}
.image-containerObject {
  position: relative;
  display: inline-block; /* یا block */
}

.imageObject {
  width:100px; /* یا هر اندازه دلخواه */
  height: auto; /* حفظ نسبت تصویر */
  position: relative; /* برای قرار دادن لایه نورانی */
  z-index: 1; /* اطمینان از اینکه تصویر بالای لایه نورانی قرار دارد */
}

.glowObject {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%; /* اندازه لایه نورانی */
  height: 120%; /* اندازه لایه نورانی */
  background-color: rgba(255, 255, 255, 0.25); /* رنگ نور */
  border-radius: 50%; /* گرد کردن لبه‌ها */
  transform: translate(-50%, -50%); /* مرکز کردن لایه نورانی */
  filter: blur(50px); /* ایجاد جلوه محو */
  z-index: 0; /* اطمینان از اینکه لایه نورانی زیر تصویر قرار دارد */
}

.test-countdown-box {
  display: flex;
  gap: 1px; /* Adjust the gap between items as needed */
  align-items: center;
  padding:23px 15px 0px 0px;
  justify-content: right !important;
}

.test-countdown-box-item {
  width: 36px; /* Set a fixed width for all boxes */
  height: 36px; /* Set a fixed height for all boxes */
  line-height: 10px;
  display: flex;
  padding: 1px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color:hsla(270, 73.00%, 34.90%, 0.7) !important; /* Background color for the boxes */
  border-radius: 8px; /* Rounded corners */
}

.test-countdown-box-item span {
  font-size: 10px; /* Adjust the font size of the numbers */
  font-weight: bold;
}

.test-countdown-box-item p {
  font-size: 9px; /* Adjust the font size of the labels */
  margin: 0;
}

.seperator {
  font-size: 18px; /* Adjust the font size of the separator */
  color: #333; /* Color of the separator */
}
.spliteItem{
  border-top:2px solid #261248 ;
  border-top-style:dashed;
  padding-top: 20px
}
.supplier-item{
  max-height: 200px;
  min-height:200px;
  height: 200px;
  background: linear-gradient(0deg, #fff, transparent);
}
.text-small {
  font-size: 0.8rem !important;
}

.text-large {
  font-size: 1.2rem !important;
}
.mt-4 .needs-validation{
  color: #000;
}