@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --website-primary: #dfa013;
  --website-secondary: #000000;
  --heading-color: #353535;
  --text-color: #101318;
  --white: #ffffff;
  --primary-gradient: linear-gradient(0deg, rgba(191, 140, 25, 1) 0%, rgba(215, 167, 59, 1) 100%);
  --bg-color: #f6f4f3;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
}

p {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  color: var(--text-color);

}

.align-item-center {
  align-items: center;
}

.button {
  background: #feca07;
  padding: 10px 15px;
  color: #000000;
  font-weight: 600;
  text-transform: capitalize;
  width: fit-content;
  border-radius: 40px;
}


.button-style {
  background: var(--primary-gradient);
  padding: 10px 10px 10px 20px;
  border-radius: 35px;
  text-align: center;
  border: 0px;
  margin: 15px 10px 15px 0px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.1s ease;
}

.button-style .arrow-icon {
  background-color: var(--website-secondary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 6px;
  margin-left: 6px;
  transition: all 0.3s ease;
}

.button-style:hover {
  background: var(--website-secondary);
  color: var(--white);
}

.button-style:hover .arrow-icon {
  background-color: var(--website-primary);
  margin-left: 16px;
}


.box-images-parallax {
  position: relative;
}

.back-element {
  width: 150px;
  position: absolute;
  top: 0;
}

.title {
  font-size: 4.0rem;
  line-height: 4.5rem;
  font-weight: 600;
  color: var(--website-secondary);
  margin-bottom: 20px;
}

.sub-title {
  font-size: 2.5rem;
  line-height: 3.0rem;
  font-weight: 600;
  color: var(--website-secondary);
  margin-bottom: 20px;
}

.h4-title {
  font-size: 2.0rem;
  line-height: 2.5rem;
  font-weight: 600;
  color: var(--website-secondary);
  margin-bottom: 20px;
}

.h5-title {
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 600;
  color: var(--website-secondary);
  margin-bottom: 20px;
}

.h6title {
  font-size: 1.2rem;
  font-weight: 600;
}

.small-title {
  color: var(--website-primary);
  font-size: 1.6rem;
  text-transform: capitalize;
  font-weight: 600;
}

.list-style {
  padding: 0px;
  margin: 0px 0px 10px 0px;
}

.list-style li {
  list-style: disc;
  padding: 10PX 0PX;
  margin-left: 20px;
}

.list-style-check {
  padding: 0px;
  margin: 0px 0px 10px 0px;
}

.list-style-check li {
  list-style-image: url(../images/check-mark.png);
  padding: 10PX 0PX;
  margin-left: 20px;
}


.white-section {
  background-color: #ffffff;
}

.accordion-button:not(.collapsed) {
  color: var(--website-secondary);
  background-color: var(--website-primary);
}

/* ========Header========== */
header {
  background-color: #000000;
  padding: 10px 0px 10px;
  position: absolute;
  z-index: 5;
  width: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

header .navbar {
  padding: 0px;
  border-radius: 160px;
  position: relative;
}

header.scrolled {
  position: sticky;
  top: 0px;
  padding: 0px;
}

header.scrolled .navbar {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}


header .navbar-brand {
  width: 180px;
}

header .navbar-expand-lg .navbar-collapse {
  justify-content: right;
}

header .navbar-expand-lg .navbar-nav .nav-link {
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #ffffff;
  border-radius: 35px;
}

header .navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #000;
  background-color: var(--website-primary);

}


.dropdown-item {
  text-transform: capitalize;
  font-size: 15px;
}

/* ========Hero Section========== */

.hero-wrapper {
  background: url(../images/banner.png);
  background-size: 100%;
  background-position: bottom;
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
}

.hero-wrapper h2 {
  font-size: 3.0em;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.hero-wrapper h2 span {
  color: var(--website-primary);
}

.hero-wrapper .shape-1 {
  position: absolute;
  top: -50px;
  left: 40%;
  width: 400px;
}

.hero-wrapper .shape-2 {
  position: absolute;
  left: 50%;
  width: 400px;
  bottom: 0px;
}

.hero-wrapper .shape-3 {
  position: absolute;
  width: 200px;
  bottom: 50%;
  right: 130px;
}

.hero-wrapper .hero-img {
  width: 550px;
  height: 550px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  left: 15%;
}


/* ========About-Section========== */

.about-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-img-1 {
  border-radius: 200px;
  position: relative;
  overflow: hidden;
  width: 60%;
}

.about-img-1::before {
  content: '';
  position: absolute;
  top: -10px;
  bottom: 0;
  left: -10px;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  border-radius: 200px;
  z-index: 1;
}

.about-img-2 {
  border-radius: 200px;
  position: absolute;
  overflow: hidden;
  width: 47%;
  top: 160px;
  right: 30px;
  z-index: 2;
  border: 5px solid #f6f4f3;
}

.about-img-2::before {
  content: '';
  position: absolute;
  top: -10px;
  bottom: 0;
  left: -10px;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  border-radius: 200px;
  z-index: 1;
}

.about-img-3 {
  position: absolute;
  width: 100px;
  top: 10px;
  left: 60%;
  z-index: 2;
}

.year-highlight-text h2 {
  font-size: 35px;
  line-height: 60px;
  font-weight: 700;
  margin: 0;
  background: #7202bb url(../images/banner.png) no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  background-position: center;
}

/* ========Servic section========== */

.service-section {
  padding-top: 80px;
}

.service-section .service-wrapper {
  padding: 50px;
  background-color: #ffffff;
  border-radius: 60px;
}

.service-section .service-wrapper .service-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #fde1a3;
  width: calc(33.33% - 30px);
  margin: 15px;
}

.icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #ffefc9;
  margin-bottom: 20px;
}

.service-section .service-wrapper .service-card h3 {
  font-size: 24px;
  font-weight: 600;
}

.service-section .service-wrapper .service-card .button-style {
  margin-bottom: 0px;
}

.prohibited-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

/* ========why-us section========== */

.whyUs-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.whyUs-section .whyUs-card {
  padding: 15px;
}

.whyUs-section .whyUs-card .icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #ffefc9;
  margin-bottom: 20px;
}

.whyUs-section .whyUs-card h3 {
  font-size: 24px;
  font-weight: 600;
}

.whyUs-section .about-img-1 {
  border-radius: 250px;
  position: relative;
  overflow: hidden;
  width: 90%;
  left: 30px;
}

.whyUs-section .about-img-2 {
  width: 40%;
  bottom: 60px;
  right: 0px;
  top: auto;
}

/* ========App-Download section========== */

.appDownload-section {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url(../images/app-download-bg.png);
  background-size: 100%;
}

.appDownload-section .title {
  color: #ffffff;
}

.download-app-btn {
  background: var(--primary-gradient);
  padding: 10px 25px;
  border-radius: 35px;
  display: inline-flex;
  align-items: center;
  border: 0px;
  margin: 15px 10px 15px 0px;
}

.download-app-btn p {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  margin: 0px;
  text-align: left;
  margin-left: 10px;
  display: grid;
  line-height: 22px;
}

.download-app-btn p span {
  font-size: 13px;
}


/* ========Home-Mission section========== */

.home-mission-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-mission-section .location-city-img {
  position: relative;
  top: 0px;
  left: 14%;
  z-index: 0;
  width: 72%;
}

.home-mission-section .car-img {
  position: absolute;
  bottom: 0px;
  z-index: 1;
}

.home-mission-section p {
  font-size: 20px;
}


/* ========Footer========== */

footer {
  background-color: var(--website-secondary);
  padding-top: 50px;
  padding-bottom: 15px;
}

footer .download-app-btn {
  background: var(--primary-gradient);
  padding: 7px 20px;
  margin: 5px 10px 5px 0px;
  width: 200px;
}

footer .download-app-btn p span {
  font-size: 12px;
  line-height: 16px;
}

footer .download-app-btn p {
  font-size: 15px;
  line-height: 16px;
}


.footer-box {
  width: 20%;
  padding: 15px;
}

footer .footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

footer p {
  color: #999999;
}

footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px 0px 0px 3px;
}

footer ul li {
  padding-top: 5px;
  padding-bottom: 5px;
  color: #999999;
}

footer ul li a {
  color: #999999;
  font-size: 14px;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 500;
  transition: all 0.1s ease;
}

footer ul li a:hover {
  color: var(--website-primary);
}

footer h3 {
  color: var(--website-primary);
  text-transform: capitalize;
  font-size: 1.4rem;
  margin-bottom: 15px;
}


footer .footer-social {
  display: flex;
}

footer .footer-social li {
  margin-right: 10px;
}

footer .footer-social li a {
  font-size: 20px;
}

footer .footer-social li a .social-btn {
  width: 35px;
  height: 35px;
  background: #101010;
  border-radius: 50%;
  text-align: center;
  padding: 8px;
  transition: all 0.1s ease;
}

footer .footer-social li a .social-btn:hover {
  background-color: var(--website-primary);
  color: #000000;
}

footer .bottom-box {
  margin-top: 15px;
  text-align: center;
  border-top: 1px solid #161616;
  padding-top: 25px;
}

/* ========Inner-Pages========== */

.inner-banner {
  background-image: url(../images/inner-banner.png);
  padding: 160px 0 100px;
  background-position: center;
}

.inner-banner h2 {
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.contact-banner {
  background-image: url(../images/contact-banner.png);
}

.mission-banner {
  background-image: url(../images/mission-banner.png);
}


.courier-banner {
  background-image: url(../images/courier-banner.png);
}

.faq-banner {
  background-image: url(../images/faq-banner.png);
}

.trip-banner {
  background-image: url(../images/trip-banner.png);
}

.outstation-banner {
  background-image: url(../images/outstation-banner.png);
}

.howFleetVelar-banner {
  background-image: url(../images/howFleetVelar-banner.png);
}

.terms-banner {
  background-image: url(../images/terms-banner.png);
}

.cancellation-banner {
  background-image: url(../images/cancellation-banner.png);
}

.parcel-delivery-policy-banner {
  background-image: url(../images/parcel-Delivery-policy-banner.png);
}

.page-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.page-section-top-space {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-section-top-space50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.faq-top-space {
  padding-top: 50px;
}

.page-section .mission-box {
  padding: 15px;
  border-radius: 65px;
  border: 1px solid var(--website-primary);
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  background: #fff;
  margin: 10px 5px;
}

.page-section .mission-box img {
  width: 50px;
  margin-right: 10px;
}

.page-section .mission-box p {
  padding: 0px;
  margin: 0px;
  font-weight: 500;
  text-transform: capitalize;
}

/*--------------
Hoe FLEETVELAR Work
--------------*/

.timeline-section {
  padding: 80px 0;
}

.timeline-section .sub-title {
  text-align: center;
}


.timeline {
  position: relative;
  max-width: 100%;
  margin: auto;
}

/* Center Line */
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--website-primary);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Item */
.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
  position: relative;
}

/* Dot */
.timeline-item::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--website-primary);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}


.content {
  width: 45%;
  border-radius: 30px;
  padding: 25px;
  border: 1px solid var(--website-primary);
  background: #fff;
}

.content h5 {
  font-size: 3.0rem;
  font-weight: 700;
  color: var(--website-primary);
}

.content .h4-title {
  font-size: 1.8rem;
  line-height: 2.0rem;
  margin-bottom: 15px;
}


/* Image */
.image {
  width: 45%;
}

.image img {
  width: 100%;
  border-radius: 15px;
}

/* Left / Right alignment */
.timeline-item.left .content {
  order: 1;
}

.timeline-item.left .image {
  order: 2;
}

.timeline-item.right .content {
  order: 2;
}

.timeline-item.right .image {
  order: 1;
}

/* Responsive */
@media(max-width: 768px) {

  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item::before {
    left: 20px;
  }

  .content,
  .image {
    width: calc(100% - 40px);
    margin-left: 40px;
  }

  .content {
    padding: 15px;
  }

  .form-top-space {
    margin-top: 10px;
  }

  .timeline-item.left .image {
    order: 0;
    margin-bottom: 15px;
  }

  .timeline-item.right .image {
    order: 0;
    margin-bottom: 15px;
  }

  .timeline-item::before {
    width: 12px;
    height: 12px;
  }

  .timeline::after {
    width: 2px;
  }

  .content h5 {
    font-size: 2.5rem;
  }

  .content .h4-title {
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin-bottom: 10px;
  }
}

/*--------------
Service
--------------*/

.outstation-section {
  background-color: rgb(255, 255, 255);
  padding: 50px;
  border-radius: 60px;
}

.why-outstation-box {
  width: calc(20% - 20px);
  padding: 20px;
  margin: 10px;
  border: 1px solid var(--website-primary);
  border-radius: 30px;
  flex: 1;
}

.why-outstation-box h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

.perfect-for-box {
  width: calc(20% - 20px);
  padding: 10px;
  margin: 10px;
  border: 1px solid var(--website-primary);
  text-align: center;
  border-radius: 30px;
  flex: 1;
}

.perfect-for-box .img-box {
  border-radius: 25px;
  overflow: hidden;
}

/* .perfect-for-box h3 {
  font-size: 1.6rem;
  font-weight: 600;
} */

.card-box {
  padding: 20px;
  margin: 10px 0px;
  border: 1px solid var(--website-primary);
  border-radius: 30px;
}

.section-top-margin {
  margin-top: 50px;
}

.short-heading {
  font-size: 1.4rem;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 0px;
}

.page-section-2 {
  padding-top: 0px;
  padding-bottom: 100px;
}

.courier-location-img {
  position: relative;
  top: 0px;
  left: 20%;
  z-index: 0;
  width: 60%;
}

.courier-car-img {
  position: absolute;
  bottom: 0px;
  z-index: 1;
}

/*--------------
Contact Form
--------------*/

.contact-box {
  border-radius: 30px;
  padding: 25px;
  border: 1px solid var(--website-primary);
  width: calc(33.33% - 20px);
  background: #fff;
  margin: 10px 10px;
}

.contact-box img {
  margin-bottom: 5px;
}

.contact-box h3 {
  font-size: 1.4rem;
}

.form-top-space {
  margin-top: 50px;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 350px;
}

.contact-form h2 {
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
}

/*--------------
Media Query
--------------*/

@media(max-width:1800px) {
  .hero-wrapper {
    background-size: cover;
  }
}

@media(max-width:1366px) {
  .hero-wrapper {
    padding: 140px 0px;
  }

  .title {
    font-size: 3.0rem;
    line-height: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .hero-wrapper {
    padding: 110px 0px 70px;
  }

  .service-section .service-wrapper .service-card {
    padding: 30px;
  }

  .title {
    font-size: 2.6rem;
    line-height: 3.0rem;
  }

  .small-title {
    font-size: 1.4rem;
  }

  .about-section,
  .whyUs-section,
  .home-mission-section,
  footer {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .service-section {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .hero-wrapper {
    padding: 95px 0px 55px;
  }

  .hero-wrapper h2 {
    font-size: 2.0rem;
  }

  .appDownload-section {
    text-align: center;
  }

  .about-section,
  .whyUs-section,
  .home-mission-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .about-img-2 {
    width: 47%;
    top: 95px;
  }

  .home-mission-section,
  .whyUs-section {
    text-align: center;
  }

  .whyUs-section .whyUs-card .icon-box {
    margin-left: auto;
    margin-right: auto;
  }

  .home-mission-section .button-style,
  .whyUs-section .button-style {
    margin: 15px auto;
  }

  .service-section .service-wrapper .service-card {
    padding: 20px;
    margin: 15px 0px;
  }

  footer {
    padding-top: 30px;
    padding-bottom: 5px;
  }

  .footer-box {
    width: 100%;
    padding: 5px 10px;
  }

  footer .bottom-box {
    margin-top: 0px;
    padding-top: 10px;
  }

  footer .footer-logo {
    width: 180px;
    margin-bottom: 15px;
  }

  footer ul {
    margin-bottom: 15px;
  }

  footer h3 {
    margin-bottom: 5px;
  }

  .page-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contact-box {
    width: calc(100% - 20px);
    padding: 20px;
  }

  .contact-margin-50 {
    margin-top: 50px;
  }

  .inner-banner {
    padding: 110px 0 70px;
  }

  .inner-banner h2 {
    font-size: 2.5rem;
  }

  .trip-banner {
    background-position: center bottom;
    background-size: cover;
  }

  .page-section-top-space {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .div-order-2 {
    order: 2;
  }

  .about-img-2 {
    bottom: 0px;
    top: auto;
  }

  .about-img-3 {
    width: 50px;
    top: -20px;
  }

  .why-outstation-box {
    width: calc(1000% - 20px);
    padding: 20px;
    flex: auto;
  }

  .sub-title {
    font-size: 2.2rem;
    line-height: 2.7rem;
    margin-bottom: 15px;
  }

  .perfect-for-box {
    width: calc(100% - 20px);
    flex: auto;
  }

  .page-section-2 {
    padding-top: 0px;
    padding-bottom: 30px;
  }

  .short-heading {
    font-size: 1.2rem;
  }

  .page-section-top-space50 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .courier-car-img {
    width: 80%;
    left: 20%;
  }

  .page-section .mission-box {
    width: calc(100% - 10px);
    margin: 5px 5px;
  }

}

@media (max-width: 480px) {
  .hero-wrapper {
    padding: 95px 0px 30px;
  }

  .hero-wrapper h2 {
    font-size: 1.4rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
  }

  .small-title {
    font-size: 1.2rem;
  }

  .title {
    font-size: 2.0rem;
    line-height: 2.2rem;
    margin-bottom: 10px;
  }

  .sub-title {
    font-size: 2.0rem;
    line-height: 2.5rem;
    margin-bottom: 15px;
  }

  .service-section {
    padding-top: 0px;
  }

  .service-section .service-wrapper {
    padding: 10px;
    margin: 0px 0px;
  }

  .service-section .service-wrapper .service-card {
    padding: 15px;
    margin: 10px 5px;
     width: calc(100% - 10px);
  }

  .home-mission-section .car-img {
    width: 80%;
    right: 0px;
  }

  .home-mission-section .location-city-img {
    left: 20%;
    width: 60%;
  }

  .why-outstation-box h3 {
    font-size: 1.4rem;
  }

  .section-top-margin {
    margin-top: 25px;
  }

  .inner-banner {
    padding: 95px 0 35px;
    background-position: center;
    background-size: cover;
  }

  .inner-banner h2 {
    font-size: 2.2rem;
  }

  .h4-title {
    font-size: 1.8rem;
    line-height: 2.0rem;
  }

  .h5-title {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }

  
}

/*--------------
Animation
--------------*/

.slide-left {
  -webkit-animation: slide-left 2s linear infinite alternate both;
  animation: slide-left 2s linear infinite alternate both;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
  }
}

.slide-down {
  -webkit-animation: slide-down 1.5s linear infinite alternate both;
  animation: slide-down 1.5s linear infinite alternate both;
}

@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}

@keyframes slide-down {
  0% {
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}

@keyframes spin {

  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }

}



/* .navbar-toggler {
  border: 0px;
  background: var(--website-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
} */

.navbar-toggler-icon {
  width: 28px;
  height: 28px;
  background-image: url(../images/menu.png);
  position: relative;
  left: -2px;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--website-secondary);
  background-color: var(--website-primary)
}