@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;900&display=swap");

.theme-light {
  --color-primary-container: #eb2027;
  --color-background: #fff;
   --color-background-deep: #fafafa;
  --color-primary-light: #eb202725;
 
  --switcher-background: #000;
  --switcher-font-color: #fff;
  --phase-bg: #000;
  --btn-primary-bg: #000;
  --btn-primary-hover: #eb2027;
  --btn-secondary-bg: #eb2027;
  --btn-secondary-hover: #000;
  --placeholder-text-color: #727070;
  --font-color: #000;
  --bg-cars: #eb202725;
  --overlay:linear-gradient(rgba(54, 19, 19, 0.5), rgba(63, 16, 16, 0.5));

  --bg-top: linear-gradient(rgba(0, 0, 0, 0.068), rgba(0, 0, 0, 0.5)), url('../assets/unsplash/dushawn-jovic-S6W2OaGNbNM-unsplash.jpg');
}

.theme-dark {
  --color-primary-container: #000;
  --phase-bg: transparent;
  --color-background: #1E1E1E;
  --color-primary-light: #000;
  --overlay:linear-gradient(rgba(29, 28, 28, 0.7), rgba(22, 22, 22, 0.9));

  --color-background-deep: #0e0e0e;
  --color-accent: #EB2027;
  --title-color: #eb2027;
  --switcher-background: #fff;
  --switcher-font-color: #000;
  --text-inner-color: #152836;
  --placeholder-text-color: #fff;
  --btn-primary-bg: #eb2027;
  --btn-primary-hover: #000;
  --btn-secondary-bg: #000;
  --btn-secondary-hover: #eb2027;
  --font-color: #fff;
  --bg-cars: #eb202725;
  --bg-top: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/Frame\ 1.png');
}




.right-top-menu small {
  font-size: 13px;
}

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

.colored-hr {
  border: none;
  height: 3px;
  /* Adjust the height as needed */
  background: linear-gradient(to right, var(--font-color) 30%, #EB2027 30%, #EB2027 70%, var(--font-color) 70%);
  margin: 20px 0;
  /* Adjust the margin as needed */


}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 100%;
  background:var(--color-background) ;
  color: var(--font-color);

}
.bg-card {
  background-color: var(--color-background);
  color: var(--font-color) !important;
  border: none;
}
.bg-card-deep {
  background-color: var(--color-background-deep);
  color: var(--font-color) !important;
  border: none;
}


.card{
  background-color: var(--color-background)!important;
  color: var(--font-color) !important;
  border: none;
}
#myBtn {
  display: none;
  /* Hidden by default // 5795 4299 8315 0585 2540*/
  position: fixed;
  /* Fixed/sticky position */
  bottom: 90px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: #000;
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 1rem;
  /* Some padding */
  border-radius: 20%;
  /* Rounded corners */
  font-size: 18px;
  /* Increase font size */
  width: 50px;
  margin: 0 auto;
  height: 50px;
}

#myBtn:hover {
  background-color: #eb2027;
  /* Add a dark-grey background on hover */
}

.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-hover);
  border: 1px solid var(--btn-primary-bg);
}

.btn-outline-primary {
  border: 2px solid var(--btn-primary-bg);
}

.btn-outline-secondary {
  border: 2px solid var(--btn-secondary-bg);
}

.btn-secondary {
  background-color: #eb2027;
  color: #ffff;
}

.btn-secondary:hover {
  background-color: #000 !important;
  color: #fff;
}


#offcanvasNavbar {
   background-color: var(--color-background); 
  color: var(--font-color);
}

#offcanvasNavbar .nav-link {
  color: var(--font-color);
  font-size: 22px;
}

.offkcanvas .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
}



.switcher {
  position: fixed;
  width: 50px;
  height: 50px;
  top: 230px;
  right: 30px;
  background-color: var(--switcher-background);
  color: var(--switcher-font-color);
  border-radius: 50px;
  text-align: center;
  z-index: 8;
  box-shadow: 2px 2px 3px var(--color-background-deep);
}

.my-switcher {
  margin-top: 20px;
  color: var(--switcher-font-color);
  background-color: var(--switcher-background);

}

.breadcrumb {
  padding: .1em;
}

.breadcrumb li {
  padding: .05em .25em;
  float: left;
  color: #fff !important;
  font-size: 16px;
  list-style-type: none;
}

.breadcrumb li:after {
  content: '›';
  display: inline;
  font-size: 16px;
  color: var(--font-color);

  padding: 0 .0725em 0 .15em;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb ul

/* use as midair border */
  {
  padding: 0;
  margin: .25em 0;
}

.breadcrumb .active {
  text-decoration: none;
  border-bottom: none;
  color: #fff;
}

.clear:after,
.clear:before {
  content: '';
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  display: inline-block;
  display: block;
}

.off {
  display: none;
}

#loader {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff !important;
}

.loader-img {
  width: 10%;
}

#content {
  display: block;
}


.preloader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-background);
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-duration: 0.4s;
  transition-property: opacity, transform;
}

.preloader.ready {
  z-index: -100;
  opacity: 0;
}

.btn {
  border-radius: 4px !important;
  padding: 8px 30px !important;
  font-weight: 500 !important;
  border: 0px !important;
}

.btn-outline-primary {}

@media all and (max-width:499px) {

  .top-header {
    flex-flow: row;
  }
  .overlay h2 {
    padding-top: 100px;
    font-weight: 900;
    font-size: 40px;
    color: #fff !important;
  
  }

  .loader-img {
    width: 30%;
  }

  .slider {
    overflow: hidden;
    width: 100vw;
    height: 60vh;
    position: relative;
  }

  .carousel-item img {
    width: 100vh;
    height: 100%;
  }


  .right-top-menu {
    float: right;
    display: flex;
    flex-direction: column;
    font-size: small;
    padding-right: 8px !important;

  }

  .breadcrumb {
    margin-left: 30%;
  }

  .phone-top {
    border-right: 1px solid rgb(121, 120, 120);
    margin: 4px;
    height: 10px;

  }

  .navbar-brand {
    width: 80px !important;
    ;
    height: 40px !important;

  }

  .brand-canvas {
    width: 80px !important;
    ;
    height: 50px !important;

  }

  .section-content {
    padding-top: 150px !important;
    align-content: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .section-content h1,
  h3,
  h2 {
    font-weight: 600;
  }

  .section-content p {
    width: 100% !important;
  }


  .offers {
    background-color: #fff;
  }

  .offers h2 {
    color: #fff;
  }




  .phase2 p {
    justify-content: start;
    text-align: justify;

  }




  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler {
    border: none;
  }



}

@media only screen and (min-width: 768px) {

  .slider {
    overflow: hidden;
    width: 100vw;
    height: 90vh;
    position: relative;
  }
  .overlay h2 {
    padding-top: 100px;
    font-weight:bolder;
    font-size: 60px;
    color: #fff !important;
  
  }
  .carousel-item img {
    width: 100vw;
    height: 100%;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler {
    border: none;
  }

  .right-menu {
    float: right;
  }

  .right-top-menu {
    float: right;
    display: flex;
    font-size: small;
    margin-right: 8px;

  }

  .section-content {
    padding-top: 150px !important;
  }

  .offers {
    height: 400px;
  }

  .offers h2 {
    color: #fff;
  }




  .phase2 p {
    justify-content: start;
    text-align: justify;

  }
}

@media only screen and (min-width: 992px) {
  .search-container {
    align-content: start;
    justify-content: start;
  }

  .slider {
    overflow: hidden;
    width: 100vw;
    height: 90vh;
    position: relative;
  }

  .carousel-item img {
    width: 100vw;
    height: 100%;
  }

  .section-content {
    padding-top: 180px !important;
  }

  .right-top-menu {
    float: right;
    display: flex;
    font-size: small;

  }
  .overlay h2 {
    padding-top: 100px;
    font-weight:bolder;
    font-size: 80px;
    color: #fff !important;
  
  }

}

@media only screen and (min-width: 1200px) {
  .overlay h2 {
    padding-top: 150px;
    font-weight:bolder;
    font-size: 80px;
    color: #fff !important;
  
  }
  .search-container {
    align-content: start;
    justify-content: start;
  }

  .section-content {
    padding-top: 180px !important;
  }

  .right-top-menu {
    float: right;
    display: flex;
    font-size: small;

  }

}


.phase1 {
  background-color: var(--color-primary-light);
  color: #eb2027;
}

.nav-link {
  color: #fff;
  font-weight: 300;
}

.nav-link.active {
  color: #eb2027 !important;
}

.top-header {
  padding: 8px;
  background-color: #000;
}



.nav-container {
  z-index: 11;

}

.navbar-brand {
  width: 80px;
  height: 40px;
}


.phone-top {
  border-right: 1px solid rgb(121, 120, 120);
}


.intro {
  background-image: var(--bg-top);
  background-size: cover;
  margin-top: -80px;
  background-color: #fff;
  height: 600px;


}

.section-content {
  padding-top: 200px;
}

.section-content span {
  color: var(--color-accent);
}

.section-content h1,
h3,
h2 {
  font-weight: 600;
}

.form-content {
  box-shadow: -1px 3px 16px 1px rgba(230, 28, 28, 0.05) inset;
  -webkit-box-shadow: -1px 3px 16px 1px rgba(230, 28, 28, 0.05) inset;
  -moz-box-shadow: -1px 3px 16px 1px rgba(230, 28, 28, 0.05) inset;
}

.section-content p {
  width: 60%;
  font-weight: 900px;
}

.list-top {

  list-style-type: square;
  font-weight: 400px;
  color: var(--font-color);
}


input,
textarea,
select:not(.input-mobile) {
  border-radius: 0px !important;
  margin: 5px, 8px !important;
  height: 35px;


}

/* .select-placeholder {
  color: var(--placeholder-text-color);
}

select option:disabled {
  color: var(--placeholder-text-color);
}

select:invalid {
  color: var(--placeholder-text-color) !important;
}

select:valid {
  background: green;
} */

.search {
  width: 80% !important;
}

.input-group-prepend,
#basic-addon1 {
  border: none;
  height: 35px;
}

.form-range {
  width: 80%;
}

select.round {
  background-image:
    linear-gradient(45deg, transparent 50%, rgb(255, 255, 255) 50%),
    linear-gradient(135deg, rgb(255, 255, 255) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - .5em) .5em;
  background-size:
    5px 5px,
    5px 5px,
    1.5em 1.5em;
  background-repeat: no-repeat;
  width: 100% !important;
}

select.round:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - .5em) .5em;
  background-size:
    5px 5px,
    5px 5px,
    1.5em 1.5em;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
}

/* ::placeholder {
  color: var(--placeholder-text-color) !important;
  opacity: 1;

}/* Firefox */

*/ .btn-search {
  border-radius: 0%;
  width: 100%;
  height: 35px;
}

/* .btn-search.active,
.btn:hover {
  background-color: var(--btn-secondary-bg);
  color: var(--font-color);
} */

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
}

option {
  color: #fff;
}


.select-selected {
  background-color: DodgerBlue;
}



.form-menu {
  justify-content: center;
  align-items: center;
  color: #fff !important;

}

.btn-group-wrapper {
  text-align: center;
}


div.btn-group {
  margin: 0 auto;
  text-align: center;
  width: inherit;
  display: inline-block;
}

.btn {
  color: #fff !important;
}

.btn-form {
  font-size: 14px !important;
  border: none;
  border-radius: 0px;
}

.active,
.btn:hover {
  border-right: none;
  border-top: none;
  border-left: none;
  border-radius: 0px;
  border-bottom: 1px solid #fff;

}

.carousel-item {
  border-bottom: none;
  margin-bottom: 2em;
  padding-bottom: 2em;
}

.carousel-item.active img {
  color: green;
  font-size: 3em;
}

/* ============offers==================== */

/* ============gallerry==================== */

.cars {
  background: var(--color-background-deep);
}

#cars {
  margin: 30px 0 30px 0;
}

#cars .card-notify-badge {
  position: absolute;
  left: 10px;
  top: 5px;
  background: var(--color-primary-light);
  text-align: center;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  color: #eb2027;
  font-weight: bold;

}

#cars .rounded,
.img-fluid {
  border: none !important;
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  -ms-border-radius: 8px !important;
  -o-border-radius: 8px !important;
}

#cars .card-notify-year {
  position: absolute;
  right: -10px;
  top: -20px;
  background: #EB2027;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  width: 50px;
  height: 50px;
  padding: 15px 0 0 0;
  font: #fff;
}


#cars .card-detail-badge {
  background: #000000fd;
  text-align: center;
  border-radius: 20px 20px 20px 20px;
  padding: 5px 8px;
  margin-top: 8px;
  font-size: 10px;
  color: #fff;
}



#cars .card {
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#cars .card:hover {
  box-shadow: 12px 15px 20px 0px rgba(14, 10, 8, 0.267);
  border-radius: 4px;
  transition: all 0.3s ease;
}

#cars .card-image-overlay {
  font-size: 20px;

}


#cars .card-image-overlay span {
  display: inline-block;
}


#cars .cars-btn {
  text-transform: uppercase;
  width: 120px;
  height: 30px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  display: block;
  text-decoration: none;
  margin: 20px auto 1px auto;
  color: #fff;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

#cars .cars-btn-outline {
  text-transform: uppercase;
  width: 120px;
  height: 30px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 25px;
  float: right;
  text-align: center;
  border: 3px solid #152836;
  display: block;
  text-decoration: none;
  margin: 20px auto 1px auto;
  color: #fff;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}

#cars .cars-btn:hover {
  background-color: var(--color-accent) !important;
  color: #fff;
  border: 2px solid var(--color-accent);
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: 12px 15px 20px 0px rgba(46, 61, 73, 0.15);
}

#cars .cars-btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--font-color);
  border: 2px solid var(--color-accent);
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: 12px 15px 20px 0px rgba(46, 61, 73, 0.15);
}

#cars .cars-title h5 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
}

#cars .option h5 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  color: #eb2027;
}

#cars .cars-title h4 {

  font-size: 16px;
}

#cars .imgv {

  width: 12px;
  height: 12px;
}

#cars .vicon {
  display: flex;
  background-color: #000000;
  border-radius: 50%;
  text-align: center;
  border: 1px solid orange;
  padding: 5px;
  justify-content: center;
  width: 20px;
  height: 20px;
}

#cars small {
  color: var(--font-color) !important;
}

#cars .options {
  color: #0000 !important;
}

#cars hr {
  font-family: Arial, sans-serif;
  /* choose the font you like */
  text-align: center;
  /* horizontal centering */
  line-height: 1px;
  /* vertical centering */
  height: 1px;
  /* gap between the lines */
  font-size: 1em;
  /* choose font size you like */
  border-width: 1px 0;
  /* top and bottom borders */
  border-style: solid;
  border-color: #4b4b4b;
  margin: 20px 10px;
  /* 20px space above/below, 10px left/right */
  overflow: visible;

  /* ensure 1px gap between borders */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
}

#cars hr:after {
  content: "OR";
  /* section sign */
  color: #fff;
  display: inline;
  /* for vertical centering and background knockout */
  background-color: #000;
  /* same as background color */
  padding: 0 0.5em;
  /* size of background color knockout */
}

/* opera doesn't render correctly. hide section sign */
#cars x:-o-prefocus,
hr:after {
  content: "";
}

/* ============Our clients==================== */
#clients {
  background-color: #fff;
  color: #000 !important;
}

#clients h1,
h2,
h3,
h4,
small,
p,
hr {}

#clients .fa-star {
  color: var(--color-accent);
}

#clients .fa-star-half {
  color: var(--color-accent);
}

#clients hr {
  font-family: Arial, sans-serif;
  /* choose the font you like */
  text-align: center;
  /* horizontal centering */
  line-height: 1px;
  /* vertical centering */
  height: 1px;
  /* gap between the lines */
  font-size: 1em;
  /* choose font size you like */
  border-width: 1px 0;
  /* top and bottom borders */
  border-style: solid;
  border-color: #4b4b4b;
  margin: 20px 10px;
  /* 20px space above/below, 10px left/right */
  overflow: visible;

  /* ensure 1px gap between borders */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
}

#clients hr:after {
  content: "Our clients speak";
  /* section sign */
  color: #f0f0f0;
  display: inline;
  /* for vertical centering and background knockout */
  background-color: #262626;
  /* same as background color */
  padding: 0 0.9em;
  /* size of background color knockout */
}

/* opera doesn't render correctly. hide section sign */
#clients x:-o-prefocus,
hr:after {
  content: "";
}



.img-icon {
  width: 25px;
  height: 25px;
}

.img-icon-plus {
  width: 35px;
  height: 35px;
}

textarea {
  height: 90px;
}

.staff_title {
  color: var(--title-color);
}

/* Copy this code after the above code */
@keyframes customAni {
  0% {
    animation-timing-function: ease-out;
    transform: scale(1);
    transform-origin: center center;
  }

  10% {
    animation-timing-function: ease-in;
    transform: scale(0.91);
  }

  17% {
    animation-timing-function: ease-out;
    transform: scale(0.98);
  }

  33% {
    animation-timing-function: ease-in;
    transform: scale(0.87);
  }

  45% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}

.top {

  margin: 0;
  margin-top: -80px;
}



.slider .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slider 16.5s infinite;
  -webkit-animation: slider 16.5s infinite;
}


.overlay {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--overlay);
}





.overlay p,
.click {
  padding-left: 20px;
  z-index: 12;

}




.slider .slides:nth-child(1) {
  background: linear-gradient(rgba(29, 28, 28, 0.7), rgba(22, 22, 22, 0.9)), url('../assets/details-red.jpg');
  animation-delay: 0s;
  background-size: cover;
}


.slider .slides:nth-child(2) {
  background-image: linear-gradient(rgba(59, 58, 58, 0.7), rgba(46, 45, 45, 0.9)), url('../assets/unsplash/duncan-winslow-Xs69Y3k1ru4-unsplash.jpg');
  animation-delay: -5.5s;
}

.slider .slides:nth-child(3) {
  background-image: linear-gradient(rgba(59, 58, 58, 0.7), rgba(46, 45, 45, 0.9)), url('../assets/unsplash/dushawn-jovic-S6W2OaGNbNM-unsplash.jpg');
  animation-delay: -11s;
}



@keyframes slider {

  0%,
  30%,
  100% {
    opacity: 1;
    animation-timing-function: ease;
    z-index: 0;
  }

  33% {
    opacity: 0;
    animation-timing-function: step-end;
    z-index: 0;
  }

  97% {
    opacity: 1;
    animation-timing-function: step-end;
    z-index: -1;
  }
}

#foot a {
  color: #000;
}

#foot h5 {
  font-weight: bold;
}

.card-custom {
  padding: 15px 20px;
  min-height: 700px;
}

.card-custom .vicon {
  display: flex;
  background-color: var(--color-primary-light);
  border-radius: 8px;
  text-align: center;
  color: #eb2027;
  padding: 5px;
  justify-content: center;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}



#login hr {
  font-family: Arial, sans-serif;
  /* choose the font you like */
  text-align: center;
  /* horizontal centering */
  line-height: 1px;
  /* vertical centering */
  height: 1px;
  /* gap between the lines */
  font-size: 1em;
  /* choose font size you like */
  border-width: 1px 0;
  /* top and bottom borders */
  border-style: solid;
  border-color: #1b1a1a;
  margin: 20px 10px;
  /* 20px space above/below, 10px left/right */
  overflow: visible;

  /* ensure 1px gap between borders */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
}

#login hr:after {
  content: "OR";
  /* section sign */
  color: #000;
  display: inline;
  /* for vertical centering and background knockout */
  background-color: var(--color-background);
  /* same as background color */
  padding: 0 0.5em;
  /* size of background color knockout */
}

.img-icon {
  width: 25px;
  height: 25px;
}

.img-icon-plus {
  width: 35px;
  height: 35px;
}

.social-btn {
  background-color: #1d1a1a;
  color: #000;
}

.client-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

* {
  box-sizing: border-box;
}

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--font-color);
  margin-bottom: 16px;
}

.count h6 {
  font-size: 40px;
  font-weight: bold;
  margin-top: 15px;
}

.counter-container h1 {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 580px) {
  body {
    flex-direction: column;
  }
}

.carousel-indicators img{
    width: 70px;
    display: block;
}
.carousel-indicators button{
    width: max-content !important;
}
.carousel-indicators button{
    position: unset;
}

#foot .nav-link{
  color: var(--font-color) !important;
}

/* Copy this code after the above code */
@keyframes switcherAni {
  0% {
	transform: scale(1);
  }

  50% {
	transform: scale(1.1);
  }

  100% {
	transform: scale(1);
  }
}

 /* Custom styles for profile dropdown */
 
 .profile-dropdown .dropdown-toggle::after {
  display: none;
}
.dropdown-menu{
  background-color: var(--color-background) !important;
 
}


.profile-dropdown .dropdown-menu {
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  min-width: 200px;
}

.profile-dropdown .dropdown-menu a {
  color: var(--font-color);
}

.profile-dropdown .dropdown-menu a:hover {
  background-color: var(--color-background);
}

.profile-dropdown .dropdown-menu .dropdown-item {
  padding: 10px;
}

.profile-dropdown .profile-name {
  font-weight: bold;
}

.profile-dropdown .profile-picture {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}


