.button {
  height: 100px;
  width: 500px;
  display: flex;
  border-radius: 2.5rem;
  transition: 0.5s;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  background-image: linear-gradient(
    to right,
    #8081cf,
    #847dc9,
    #8778c3,
    #8a74bd,
    #8d70b7,
    #8f6db2,
    #9169ac,
    #9266a7,
    #9362a1,
    #935e9a,
    #935b93,
    #93578d
  );
  color: white;
  animation: blurr 2s;
  animation-iteration-count: infinite;
  outline: none;
  cursor: pointer;
  border: none;
}

.button2 img {
  margin-block: 4px;
  margin-left: auto;
  transition: 0.5s;
  width: 32px;
  margin-right: 6px;
}

@keyframes blurr {
  0%,
  100% {
    box-shadow: 0 0 10px var(--handshake);
  }

  50% {
    box-shadow: 0 0 36px var(--handshake);
  }
}

@keyframes fade {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}

.title {
  font-weight: bold;
  margin-top: 10px;
  margin-left: 5px;
  transition: 0.5s;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 16px;
}

.button:hover .title {
  transform: translateX(-140px);
  animation: fade 0.5s;
  opacity: 0%;
}

.button:hover img {
  transform: translateX(-370px);
}

.description {
  position: absolute;
  margin-top: 6px;
  font-weight: bold;
  font-size: 14px;
  font-style: italic;
  transition: 0.5s;
  opacity: 0%;
  margin-left: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}
.button:hover .description {
  transform: translateX(20px);
  opacity: 100%;
}
/* Button 2 */
.button2 {
  height: 45px;
  width: 180px;
  display: flex;
  border-radius: 2.5rem;
  transition: 0.5s;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  background-image: linear-gradient(
    to right top,
    #00e9d8,
    #1eebd2,
    #31eecb,
    #42f0c4,
    #51f2bc,
    #5ff3b5,
    #6cf5af,
    #79f6a8,
    #88f7a0,
    #96f899,
    #a4f992,
    #b2f98b
  );
  color: white;
  animation: blurr2 2s;
  animation-iteration-count: infinite;
  outline: none;
  cursor: pointer;
  border: none;
  background: #095075;
}
.button2:hover .title {
  transform: translateX(-20px);
  animation: fade 0.5s;
  opacity: 0%;
}

.button2:hover img {
  transform: translateX(-115px);
}

.button2:hover .description {
  transform: translateX(60px);
  opacity: 100%;
}

@keyframes blurr2 {
  0%,
  100% {
    box-shadow: 0 0 10px var(--btn2);
  }

  50% {
    box-shadow: 0 0 36px var(--btn2);
  }
}

a.nav-link.btn {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.header {
  width: 100%;
  background: #095075 !important;
  color: white;
  height: 50px;
  padding-top: 10px;
}
.header-flex {
  display: flex;
  gap: 10%;
}
.header span {
  cursor: pointer;
}
/* new css */
/* li.nav-item.item_has-dropdown.w-100:hover {
  background: #095075;
  color: white;
}
ul.sub-menuu2.sub-menu.dropdown-items.fade {
  color: black;
}
.sub-menu .nav-item {
  border-bottom: none !important;
}
.sub-menuu2 .nav-item .nav-linkk-a {
  display: inline-block;
  padding-block: 3px;
  font-size: 16px !important;
}
li.nav-item.item_has-dropdown.w-100 a:hover {
  color: none !important;
}
/* form start */
.form-popup .btn {
  background-color: #095075 !important;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
}
.form-popup h1 {
  font-size: 30px;
}
button.btn.cancel {
  background: #cc0000 !important;
}
.shift-form-rt.header-popup {
  min-width: 530px;
  height: auto;
}
.form-popup .comment-respond textarea,
textarea.form-control {
  height: 70px;
}
/* Button used to open the contact form - fixed at the bottom of the page */
.header-popup {
  animation-name: none !important;
  animation-duration: 1s;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
}
.form-popup .comment-respond button,
.comment-respond input,
.comment-respond optgroup,
.comment-respond select,
.comment-respond textarea,
.form-control {
  display: block;
  width: 100%;
  height: 42px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #54595f;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/* Add styles to the form container */

/* Full-width input fields */
.form-container input[type="text"],
.form-container input[type="password"] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}
button.btn.cancel {
  background: #cc0000 !important;
  margin-bottom: 0px;
}
/* When the inputs get focus, do something */
.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus {
  background-color: #ddd;
  outline: none;
}
.marquee-content.paused:hover {
  animation-play-state: paused; /* Pause the animation */
}
/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04aa6d;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
}
div#myForm {
  width: 500px;
}
select#cars {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  color: #54595f;
  border: 1px solid #ced4da;
}
.closeNew1 {
  position: absolute;
  font-size: 14px;
  color: #fff !important;
  opacity: 1;
  background: #cc0000;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 50%;
  text-shadow: none;
  cursor: pointer;
  right: -36px;
  top: -8px;
  z-index: 1;
}

.closeNew1 i {
  line-height: 24px;
  font-size: 20px !important;
}

.file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  margin-block: 20px;

  padding: 25px;
  width: 100%;
  border: 2px dashed #ced4da;
  border-radius: 10px;
  transition: 0.2s;
}
.choose-file-button {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid #095075 !important;
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 12px;
  text-transform: uppercase;
}
.file-message {
  font-size: small;
  font-weight: 400;
  color: #54595f;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  color: #54595f;
  font-weight: 400;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
select#cars {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  color: #54595f;
  border: 1px solid #ced4da;
  font-size: 15px !important;
}

@media screen and (max-width: 600px) {
  div#myForm {
    width: 355px !important;
  }
  .shift-form-rt.header-popup {
    min-width: 260px !important;
    height: auto;
  }
  .closeNew1 {
    right: 0px !important;
    top: 14px !important;
  }
}
@media screen and (max-width: 800px) {
  .closeNew1 {
    right: -15px;
    top: 9px;
  }
}
