@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&family=Rubik:ital,wght@0,300;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --color-text: navy;
  --color-bg: papayawhip;
  --color-bg-accent: #ecdcc0;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
  --animate-delay: 2s;
}

html,
body {
  overflow-x: hidden;
}

body {
  /*font-family: "Raleway", sans-serif;*/
  font-family: "Rubik", sans-serif;
  background: #03094e;
}

.full-screen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about {
  background: rgb(25, 31, 93);
  background: linear-gradient(0deg, rgb(25, 31, 93) 0%, rgb(3, 9, 79) 100%);
  color: #fff;
  background-image: url("../images/icons/bg-radial.png");
  background-position: -60% 100%;
}
.about .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #06092e;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  transition: transform 0.2s ease;
}
.about .card-wrapper:hover {
  transform: scale(1.5);
  background-image: url(../images/icons/car.svg);
  background-position: 121px 0%;
  background-repeat: no-repeat;
}
.about .card-wrapper .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.about .box {
  font-family: "Rubik", sans-serif;
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.about .box:before {
  content: "";
  background: linear-gradient(to right, #191f5d, #ee1c25);
  width: 100%;
  height: 100%;
  transform-origin: 100% 0;
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease-in-out;
}
.about .box:hover:before {
  opacity: 0.7;
  transform: rotate(0deg);
  margin: 0px -15px;
}
.about .box img {
  width: 100%;
  height: auto;
}
.about .box .box-content {
  color: #fff;
  width: 100%;
  padding: 15px 5px;
  transform-origin: 100% 0;
  transform: translateX(-50%) translateY(-50%) rotate(-90deg);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.35s ease-in-out;
}
.about .box:hover .box-content {
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
}
.about .box .title {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 0 3px;
}
.about .box .post {
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 1px;
  text-transform: capitalize;
  display: block;
  margin: 0 0 10px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.about .box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}
.about .box .icon li {
  margin: 0 3px;
  display: inline-block;
}
.about .box .icon li a {
  color: #fff;
  font-size: 15px;
  line-height: 34px;
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  display: block;
  position: relative;
  transition: all 0.35s;
}
.about .box .icon li a:hover {
  color: #fff;
  background: rgb(144, 109, 50);
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 990px) {
  .about .box {
    margin: 0 0 30px;
  }
}
.about p {
  font-size: 1rem;
  font-weight: 100;
}

.logos {
  color: #fff;
}
.logos p {
  font-size: 1rem;
}

.products {
  color: #fff;
  background-image: url("../images/icons/bg-radial.png");
  background-position: -60% 100%;
}
.products .img-content {
  width: 100%;
}
.products .img-content img {
  width: 100%;
}
.products p {
  font-size: 1rem;
}
.products figure.photo {
  font-family: "Rubik", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.products figure.photo * {
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}
.products figure.photo img {
  max-width: 100%;
  position: relative;
  opacity: 0.4;
  display: block;
}
.products figure.photo figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.products figure.photo h2 {
  position: absolute;
  left: 40px;
  right: 40px;
  display: inline-block;
  background: #000000;
  transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  padding: 12px 5px;
  margin: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 400;
}
.products figure.photo h2 span {
  font-weight: 800;
}
.products figure.photo:before {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  background: #ffffff;
  position: absolute;
  transition: all 0.3s ease-in-out;
  transform: rotate(110deg) translateY(-50%);
}
.products figure.photo a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.products figure.photo.blue {
  background: #123851;
}
.products figure.photo.blue h2 {
  background: #0a212f;
}
.products figure.photo.red {
  background: #581a14;
}
.products figure.photo.red h2 {
  background: #ed1c25;
}
.products figure.photo.yellow {
  background: #7f5006;
}
.products figure.photo.yellow h2 {
  background: #583804;
}
.products figure.photo:hover img,
.products figure.photo.hover img {
  opacity: 1;
  transform: scale(1.1);
}
.products figure.photo:hover h2,
.products figure.photo.hover h2 {
  transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
}
.products figure.photo:hover .circle,
.products figure.photo.hover .circle {
  top: -300px;
}
.products figure.photo:hover h3,
.products figure.photo.hover h3 {
  bottom: 45%;
}
.products figure.photo:hover .content,
.products figure.photo.hover .content {
  bottom: 0px;
}
.products figure.photo:hover:before,
.products figure.photo.hover:before {
  transform: rotate(110deg) translateY(-150%);
}

.strength {
  background: rgb(25, 31, 93);
  background: linear-gradient(0deg, rgb(25, 31, 93) 0%, rgb(3, 9, 79) 100%);
  color: #fff;
}
.strength .img-content {
  width: 100%;
}
.strength .img-content img {
  width: 100%;
}
.strength p {
  font-size: 1rem;
  font-weight: 100;
}
.strength ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.strength ul li {
  font-size: 1rem;
  line-height: 2rem;
}
.strength ul li i {
  padding-right: 20px;
}

.testimonial {
  background: rgb(25, 31, 93);
  background: linear-gradient(0deg, rgb(25, 31, 93) 0%, rgb(3, 9, 79) 100%);
  color: #fff;
  font-family: "Rubik", sans-serif;
  padding: 100px 0;
}
.testimonial h1 {
  font-size: 1rem;
}
.testimonial p {
  color: #fff;
  font-size: 1rem;
}
.testimonial .carousel-item.active.full-screen {
  height: auto !important;
}

.testimonial .row .tabs {
  all: unset;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
}

.testimonial .row .tabs li {
  all: unset;
  display: block;
  position: relative;
}

.testimonial .row .tabs li.active::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background-color: #007bff;
  border-radius: 50%;
}

.testimonial .row .tabs li.active::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: #007bff;
  border-radius: 50%;
}

.testimonial .row .tabs li:nth-child(1) {
  align-self: flex-end;
}

.testimonial .row .tabs li:nth-child(1)::before {
  left: 64%;
  bottom: -50px;
}

.testimonial .row .tabs li:nth-child(1)::after {
  left: 97%;
  bottom: -81px;
}

.testimonial .row .tabs li:nth-child(1) figure img {
  margin-left: auto;
}

.testimonial .row .tabs li:nth-child(2) {
  align-self: flex-start;
}

.testimonial .row .tabs li:nth-child(2)::before {
  right: -65px;
  top: 50%;
}

.testimonial .row .tabs li:nth-child(2)::after {
  bottom: 101px;
  border-radius: 50%;
  right: -120px;
}

.testimonial .row .tabs li:nth-child(2) figure img {
  margin-right: auto;
  max-width: 300px;
  width: 100%;
  margin-top: -50px;
}

.testimonial .row .tabs li:nth-child(3) {
  align-self: flex-end;
}

.testimonial .row .tabs li:nth-child(3)::before {
  right: -10px;
  top: -66%;
}

.testimonial .row .tabs li:nth-child(3)::after {
  top: -130px;
  border-radius: 50%;
  right: -46px;
}

.testimonial .row .tabs li:nth-child(3) figure img {
  margin-left: auto;
  margin-top: -50px;
}

.testimonial .row .tabs li:nth-child(3):focus {
  border: 10px solid red;
}

.testimonial .row .tabs li figure {
  position: relative;
}

.testimonial .row .tabs li figure img {
  display: block;
}

.testimonial .row .tabs li figure::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 4px solid #dff9d9;
  border-radius: 50%;
  transform: scale(1);
  transition: 0.3s;
}

.testimonial .row .tabs li figure:hover::after {
  transform: scale(1.1);
}

.testimonial .row .tabs.carousel-indicators li.active figure::after {
  transform: scale(1.1);
}

.testimonial .row .carousel > h3 {
  font-size: 20px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  margin-bottom: 0;
}

.testimonial .row .carousel h1 {
  font-size: 40px;
  line-height: 1.225;
  margin-top: 23px;
  font-weight: 700;
  margin-bottom: 0;
}

.testimonial .row .carousel .carousel-indicators {
  all: unset;
  padding-top: 43px;
  display: flex;
  list-style: none;
}

.testimonial .row .carousel .carousel-indicators li {
  background: #fff;
  background-clip: padding-box;
  height: 2px;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper {
  margin-top: 42px;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper p {
  font-size: 18px;
  line-height: 1.72222;
  font-weight: 500;
  color: #fff;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
  color: #fff;
  font-weight: 700;
  margin-top: 37px;
  font-size: 20px;
  line-height: 1.45;
  text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
  .testimonial .row .tabs {
    margin-right: 25px;
  }
}
.counter {
  background: rgb(25, 31, 93);
  background: linear-gradient(0deg, rgb(25, 31, 93) 0%, rgb(3, 9, 79) 100%);
  color: #fff;
}
.counter .single_counter {
  background: #070c4d;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  transition: transform 0.2s ease;
}
.counter .single_counter i {
  font-size: 2.5rem;
  padding-bottom: 10px;
  color: #ee1c25;
}

.contact3 {
  background-image: url(../images/icons/bg-radial.png);
  background-position: -60% 100%;
  color: #fff;
}
.contact3 .card {
  background-color: transparent;
}

.contact3 h1,
.contact3 h2,
.contact3 h3,
.contact3 h4,
.contact3 h5,
.contact3 h6 {
  color: #3e4555;
}

.contact3 .font-weight-medium {
  font-weight: 500;
}

.contact3 .card-shadow {
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.contact3 .btn-danger-gradiant {
  background: #ff4d7e;
  background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%);
}

.contact3 .btn-danger-gradiant:hover {
  background: #ff6a5b;
  background: linear-gradient(to right, #ff6a5b 0%, #ff4d7e 100%);
}

.banner-slide .carousel-caption {
  text-align: left;
  bottom: 38%;
  font-size: 3rem;
  font-weight: 600;
}
.banner-slide .carousel-caption h1 {
  font-size: 3rem;
  font-weight: 600;
}
.banner-slide .carousel-caption p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.9rem;
}

.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.2s;
  position: absolute;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-white {
  background-color: #ee1c25;
  color: #fff;
  border-radius: 10px !important;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.4s ease 0s;
}

.btn-white:hover {
  background: #c1060d;
  letter-spacing: 1px;
  transition: all 0.4s ease 0s;
  color: #fff;
}

.btn-animated {
  -webkit-animation: moveInBottom 5s ease-out;
  animation: moveInBottom 5s ease-out;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.nav-items {
  display: flex;
  justify-content: space-between;
  width: 100px;
}
.nav-items .text-box {
  position: relative;
}

.menu-nav-container {
  width: 320px;
  position: fixed;
  right: -340px;
  background: #080e53;
  height: 100vh;
  z-index: 999;
  top: 0;
  transition: transform 0.4s ease;
}
.menu-nav-container ul {
  margin-top: 50px;
}
.menu-nav-container ul li {
  list-style: none;
}
.menu-nav-container ul li a {
  color: #ee1c25;
  font-size: 1.4rem;
}
.menu-nav-container ul li a:hover {
  color: #fff;
}
.menu-nav-container .close {
  width: 40px;
  height: 40px;
  background-image: url(../images/icons/icons8-close-50.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* padding-right: 20px; */
  margin-right: 20px;
  margin-top: 20px;
}

.back-to-top {
  position: fixed;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 22px;
  right: 15px;
  bottom: 15px;
  transition: 0.5s;
  background: #ee1c25;
  border-radius: 44px;
  z-index: 9;
}
.back-to-top i {
  color: #fff;
  margin-top: 10px;
}

.container_foto {
  padding: 0;
  overflow: hidden;
  max-width: 350px;
  margin: 5px;
}

.container_foto article {
  padding: 5px 5%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  transition: all 0.5s ease;
  background-color: rgba(22, 18, 65, 0.6);
}

.container_foto h2 {
  color: #fff;
  font-weight: 800;
  font-size: 25px;
  border-bottom: #fff solid 1px;
}

.container_foto h4 {
  font-weight: 300;
  color: #fff;
  font-size: 16px;
}

.container_foto img {
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 1s ease;
}

.ver_mas {
  background-color: #ee1c24;
  position: absolute;
  width: 100%;
  height: 70px;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transform: translate(0px, 70px);
  -webkit-transform: translate(0px, 70px);
  -moz-transform: translate(0px, 70px);
  -o-transform: translate(0px, 70px);
  -ms-transform: translate(0px, 70px);
  transition: all 0.2s ease-in-out;
}

.ver_mas a {
  font-size: 20px;
  color: #fff;
  position: relative;
  margin: 0 auto;
  width: 100%;
  top: 13px;
}

/*hovers*/
.container_foto:hover {
  cursor: pointer;
}

.container_foto:hover img {
  opacity: 0.9;
  transform: scale(1.1);
}

.container_foto:hover article {
  background-color: rgba(22, 18, 65, 0.9);
}

.container_foto:hover .ver_mas {
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  opacity: 1;
}

.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  background: #ee1c24;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circle img {
  width: 70% !important;
}

.circle.small {
  width: 90px;
  height: 90px;
}

.products figure.photo figcaption h3 {
  background: #ed1c25;
  bottom: 0px;
  position: absolute;
  width: 100%;
  padding: 5px;
}

.products figure.photo .content {
  background: #ed1c25;
  bottom: -117px;
  position: absolute;
  width: 100%;
  padding: 5px;
}
.products figure.photo .content p {
  font-size: 13px;
}

.nav-items .text-box img {
  width: 50%;
  transition: all 0.2s ease-in-out;
}

.nav-items .text-box img:hover {
  width: 70%;
}

@media only screen and (max-width: 570px) {
  .banner-slide .carousel-caption {
    width: 90%;
  }
  .nav-items .text-box {
    position: absolute;
    top: 14px;
    left: 70%;
  }
  .logo-slider {
    display: none;
  }
  .nav-items {
    width: 100%;
  }
  .circle {
    width: 100px;
    height: 100px;
  }
  .card-circle {
    width: 310px;
    height: 310px;
  }
  .card-circle .card-title {
    font-size: 16px;
  }
  .card-circle .card-text {
    font-size: 12px;
  }
  .mbr-section-title {
    font-size: 24px;
  }
  .banner-slide .carousel-caption h1 {
    font-size: 1.8rem;
  }
  .banner-slide .carousel-caption p {
    font-size: 1rem;
    font-weight: 500 !important;
  }
  .about p,
  .strength p {
    font-size: 1rem;
  }
  .icon-cont {
    margin: 50px 0;
  }
  #sidebarMenu .logo-silver {
    display: block !important;
  }
  .logo-silver {
    display: none !important;
  }
}
.navbar-fixed {
  top: 0;
  z-index: 100;
  max-width: 100%;
  width: 100vw;
  position: fixed;
}

.card-circle {
  text-align: center;
  margin-top: 50px;
  background: #030529;
  border: 10px solid transparent;
  color: #fff;
  padding: 50px;
  position: relative;
  border-radius: 50%;
}

.card-circle .card-title {
  font-weight: 600;
  font-size: 26px;
}

.card-circle .card-text {
  font-weight: 100;
}

.card-circle .card-icon i {
  font-size: 60px;
  display: block;
}

.card-circle .card-icon i svg {
  width: 60px;
}

.card-circle:nth-child(2) {
  background: #000336;
}

.card-circle .btn {
  background: transparent;
  border: 1px solid #fff;
  text-transform: uppercase;
  padding: 5px 30px;
  border-radius: 0px;
  font-weight: 600;
}

.card-circle .btn,
.card-circle .card-icon i,
.card-circle {
  transition: all ease-in-out 0.2s;
}

.card-circle:hover .btn {
  background: #ed1c25;
  color: #fff;
  border: 1px solid transparent;
}

.card-circle .btn:hover {
  transform: scale(1.1);
}

.card-circle:hover {
  border: 10px solid #ed1c25;
}

.card-circle:hover i {
  text-shadow: 0px -1px 10px #ed1c25;
  transform: scale(1.5);
  transform: rotate(20deg);
}

@media only screen and (min-width: 1200px) {
  .card-circle:nth-child(3) {
    margin-left: -40px;
    z-index: 0;
  }
  .card-circle {
    width: 400px;
    height: 400px;
  }
  .card-circle:nth-child(2) {
    margin-left: -20px;
    box-shadow: 1px 2px 20px 8px rgba(241, 235, 235, 0.12);
    transform: scale(1.2);
    z-index: 1;
  }
  .card-circle .card-icon i {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .card-circle {
    width: 340px;
    height: 340px;
  }
  .card-circle .card-icon i {
    font-size: 50px;
  }
  .card-circle .card-icon i {
    margin-top: -25px;
  }
  .card-circle:nth-child(3) {
    margin-left: -50px;
    z-index: 0;
  }
  .card-circle:nth-child(2) {
    margin-left: -20px;
    z-index: 1;
  }
}
@media only screen and (min-width: 580px) and (max-width: 768px) {
  .card-circle {
    width: 410px;
    height: 410px;
  }
  .card-circle .card-title {
    font-size: 24px;
  }
  .card-circle .card-text {
    font-size: 18px;
  }
}
.banner-img-1 {
  min-height: 350px;
  background-image: url("../images/head_1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-img-2 {
  min-height: 350px;
  background-image: url("../images/head_2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-img-3 {
  min-height: 350px;
  background-image: url("../images/head_3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-img-4 {
  min-height: 350px;
  background-image: url("../images/head_4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-img-5 {
  min-height: 350px;
  background-image: url("../images/head_5.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-head strong {
  font-weight: 600;
  font-size: 3rem;
}

#sidebarMenu {
  height: 100vh;
  position: fixed;
  right: -19px;
  width: 350px;
  transform: translateX(350px);
  transition: transform 250ms ease-in-out;
  background: #070c4d;
  top: -10px;
}
#sidebarMenu .logo-silver {
  margin-top: 20px;
  right: 70px;
  display: none;
}

.sidebarMenuInner {
  margin: 0;
  padding: 0;
  background: #070c4d;
  margin-top: 50px;
}

.sidebarMenuInner li {
  list-style: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
}

.sidebarMenuInner li span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.sidebarMenuInner li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

input[type="checkbox"]:checked ~ #sidebarMenu {
  transform: translateX(0);
}

input[type="checkbox"] {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}

.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 22px;
  right: 15px;
  height: 22px;
  width: 22px;
}

.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #3763f1;
}

.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}

.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

input[type="checkbox"]:checked ~ .sidebarIconToggle > .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
}

input[type="checkbox"]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
}

input[type="checkbox"]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -9px;
}

#carousel .logo-slider {
  position: absolute;
  bottom: 0px;
  width: 327px;
  height: 130px;
  left: 0px;
}
#carousel .logo-slider .content {
  position: absolute;
  top: 20px;
  color: #161241;
  left: 58px;
  font-weight: 600;
}

#carousel .logo-slider.piaggio {
  position: absolute;
  bottom: 0px;
  width: 125px;
  height: 50px;
  right: 80px;
  left: auto;
  background-size: contain;
  background-repeat: no-repeat;
}

#slideshow {
  /* margin-top: 200px; */
  position: absolute;
  width: 240px;
  height: 80px;
  padding: 10px;
  bottom: 0px;
  right: 10%;
}

#slideshow .fadein > div {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 240px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
}

.img-cont-slider {
  width: 100%;
  position: relative;
}
.img-cont-slider .img {
  max-width: 100%;
}
.img-cont-slider .about-slider {
  position: absolute;
  bottom: 0px;
  right: 0px;
  margin-left: 5rem;
  background: #fff;
  width: 75%;
  height: 50%;
  padding: 1.6rem;
}
@media screen and (max-width: 600px) {
  .img-cont-slider .about-slider {
    height: 75%;
  }
}
.img-cont-slider .about-slider .carousel-indicators .active {
  background-color: #161c5b;
}
.img-cont-slider .about-slider .carousel-indicators li {
  background-color: rgba(22, 27, 91, 0.47);
}
.img-cont-slider .about-slider p {
  color: #000336;
  font-weight: 600;
  margin-top: 1rem;
}
.img-cont-slider .about-slider .img-cont {
  width: auto;
  width: 100px;
  height: 100px;
}
.img-cont-slider .about-slider .carousel-indicators {
  top: 257px;
}

.progressBar {
  margin-bottom: 26px;
  margin-bottom: 1.66em;
  position: relative;
}

.progressBar h4 {
  font-size: 16px;
  text-transform: none;
  margin-bottom: 7px;
  margin-bottom: 0.33em;
  color: #fff;
}

.progressBarcontainer {
  width: 100%;
  height: 10px;
  background: #e1e1e1 !important;
  overflow: hidden;
  border-radius: 0.3em;
}

.progressBarValue {
  height: 10px;
  float: left;
  border-radius: 0.3em;
  background: #e55d87; /* Old browsers */
  background: linear-gradient(135deg, #e55d87 0%, #00a5db 100%);
}

.speech-bubble {
  font-size: 0.75em;
  line-height: 2em;
  position: absolute;
  top: -0.6em;
  text-align: center;
  min-width: 3em;
  border-radius: 0.3em;
  color: white;
  display: none;
}

.speech-bubble:after {
  border: 0.5em solid transparent;
  content: "";
  margin-left: -0.5em;
  position: absolute;
  bottom: -50%;
  left: 50%;
}

.html {
  left: calc(88.5% - 1.5em);
}

.css {
  left: calc(78.5% - 1.5em);
}

.javascript {
  left: calc(58.5% - 1.5em);
}

.react {
  left: calc(48.5% - 1.5em);
}

.jquery {
  left: calc(58.5% - 1.5em);
}

.html,
.css,
.javascript,
.react,
.jquery {
  background: #a487b2;
}

.html:after {
  border-top-color: #a487b2;
}

.css:after {
  border-top-color: #a487b2;
}

.javascript:after {
  border-top-color: #a487b2;
}

.react:after {
  border-top-color: #a487b2;
}

.jquery:after {
  border-top-color: #a487b2;
}

.product-card {
  background-color: #060a45;
  color: #fff;
  padding: 1.4rem;
  border-radius: 5px;
}
.product-card h4 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}
.product-card .imgcard {
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .imgcard img {
  width: 80%;
}
.product-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-card.card h4 {
  font-size: 1.2rem;
}

.product-card.card p {
  font-size: 0.9rem;
}

.product-card.card:hover {
  background-color: #fafafa;
  color: #000336;
}
.product-card.card:hover h4 {
  color: #000336;
}

.product-card.pcard {
  background-image: url(../images/evway-3-510x595.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px;
  min-height: 250px;
  position: relative;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
}
.product-card.pcard .overlay {
  background: rgb(12, 17, 68);
  background: linear-gradient(
    0deg,
    rgba(12, 17, 68, 0.7469581583) 0%,
    rgba(39, 50, 168, 0.2340730042) 100%
  );
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  opacity: 0;
}
.product-card.pcard .imgcard {
  position: absolute;
  justify-content: center;
  top: -53px;
  left: -40px;
  background-color: #ee1c24;
  outline: solid 8px transparent;
  transition: all 0.35s ease;
  z-index: 5;
}
.product-card.pcard .imgcard img {
  width: 60%;
}

.product-card.pcard-one {
  background-image: url(../images/vtrade_product/Pro_1.jpg);
}

.product-card.pcard-two {
  background-image: url(../images/vtrade_product/Pro_2.jpg);
}

.product-card.pcard-three {
  background-image: url(../images/vtrade_product/Pro_3.jpg);
}

.product-card.pcard-four {
  background-image: url(../images/vtrade_product/Pro_4.jpg);
}
.product-card.pcard-five {
  background-image: url(../images/vtrade_product/Pro_5.jpg);
}
.content-in {
  background: rgba(22, 18, 65, 0.6);
  color: #090f52;
  padding: 10px;
  position: absolute;
  bottom: -37px;
  left: 0%;
  transition: all 0.5s ease;
  width: 100%;
}
.content-in h4 {
  font-size: 1.8rem;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.content-in p {
  font-size: 1rem;
}

.cir-animation {
  position: relative;
  top: -110px;
}
.cir-animation .span-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cir-animation .span-img img {
  max-width: 60%;
}
.cir-animation .wrap {
  position: relative;
  top: 30px;
  width: 60vmin;
  height: 60vmin;
  margin: 0 auto;
  background: inherit;
  transform: scale(0.2) translatez(0px);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}
.cir-animation a {
  position: absolute;
  left: 0;
  top: 0;
  width: 47.5%;
  height: 47.5%;
  overflow: hidden;
  transform: scale(0.5) translateZ(0px);
  background: #585247;
}
.cir-animation a div {
  height: 100%;
  background-size: cover;
  opacity: 0.5;
  transition: opacity 0.5s;
  border-radius: inherit;
}
.cir-animation p {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 8vmin;
  color: #e3dfd2;
  text-decoration: none;
}
.cir-animation a:nth-child(1) {
  border-radius: 40vmin 0 0 0;
  transform-origin: 110% 110%;
  transition: transform 0.4s 0.15s;
}
.cir-animation a:nth-child(1) div {
  background-image: url("../images/product_page/Pro_2W_Round_side.jpg");
}
.cir-animation .three-wheel a:nth-child(1) div {
  background-image: url("../images/product_page_1/Pro_3W_Round_side_1.jpg");
}
.cir-animation .electric a:nth-child(1) div {
  background-image: url("../images/product_page_1/Pro_E3W_Round_side_1.jpg");
}
.cir-animation .spares a:nth-child(1) div {
  background-image: url("../images/product_page/Pro_Sapre_Round_side_1.jpg");
}
.cir-animation .mrf a:nth-child(1) div {
  background-image: url("../images/product_page/Pro_tyre_Round_side_1.jpg");
}
.cir-animation a:nth-child(1) p {
  left: 30%;
  top: 30%;
  transform: rotate(-45deg);
}
.cir-animation a:nth-child(2) {
  border-radius: 0 40vmin 0 0;
  left: 52.5%;
  transform-origin: -10% 110%;
  transition: transform 0.4s 0.2s;
}
.cir-animation a:nth-child(2) div {
  background-image: url("../images/product_page/Pro_2W_Round_side_3.jpg");
}
.cir-animation .three-wheel a:nth-child(2) div {
  background-image: url("../images/product_page_1/Pro_3W_Round_side_3.jpg");
}
.cir-animation .electric a:nth-child(2) div {
  background-image: url("../images/product_page_1/Pro_E3W_Round_side_3.jpg");
}
.cir-animation .spares a:nth-child(2) div {
  background-image: url("../images/product_page/Pro_Sapre_Round_side_3.jpg");
}
.cir-animation .mrf a:nth-child(2) div {
  background-image: url("../images/product_page/Pro_tyre_Round_side_3.jpg");
}
.cir-animation a:nth-child(2) p {
  right: 30%;
  top: 30%;
  transform: rotate(45deg);
}
.cir-animation a:nth-child(3) {
  border-radius: 0 0 0 40vmin;
  top: 52.5%;
  transform-origin: 110% -10%;
  transition: transform 0.4s 0.25s;
}
.cir-animation a:nth-child(3) div {
  background-image: url("../images/product_page/Pro_2W_Round_side_2.jpg");
}
.cir-animation .three-wheel a:nth-child(3) div {
  background-image: url("../images/product_page_1/Pro_3W_Round_side_2.jpg");
}
.cir-animation .electric a:nth-child(3) div {
  background-image: url("../images/product_page_1/Pro_E3W_Round_side_2.jpg");
}
.cir-animation .spares a:nth-child(3) div {
  background-image: url("../images/product_page/Pro_Sapre_Round_side_2.jpg");
}
.cir-animation .mrf a:nth-child(3) div {
  background-image: url("../images/product_page/Pro_tyre_Round_side_2.jpg");
}
.cir-animation a:nth-child(3) p {
  left: 30%;
  bottom: 30%;
  transform: rotate(45deg);
}
.cir-animation a:nth-child(4) {
  border-radius: 0 0 40vmin 0;
  top: 52.5%;
  left: 52.5%;
  transform-origin: -10% -10%;
  transition: transform 0.4s 0.3s;
}
.cir-animation a:nth-child(4) div {
  background-image: url("../images/product_page/Pro_2W_Round_side_4.jpg");
}
.cir-animation .three-wheel a:nth-child(4) div {
  background-image: url("../images/product_page_1/Pro_3W_Round_side_4.jpg");
}
.cir-animation .electric a:nth-child(4) div {
  background-image: url("../images/product_page_1/Pro_E3W_Round_side_4.jpg");
}
.cir-animation .spares a:nth-child(4) div {
  background-image: url("../images/product_page/Pro_Sapre_Round_side_4.jpg");
}
.cir-animation .mrf a:nth-child(4) div {
  background-image: url("../images/product_page/Pro_tyre_Round_side_4.jpg");
}
.cir-animation a:nth-child(4) p {
  right: 30%;
  bottom: 30%;
  transform: rotate(-45deg);
}
.cir-animation a:nth-child(5) {
  width: 55%;
  height: 55%;
  left: 22.5%;
  top: 22.5%;
  border-radius: 50vmin;
  box-shadow: 0 0 0 5vmin #e3dfd2;
  transform: scale(1);
}
.cir-animation a:nth-child(5) div {
  background-image: url("../images/product_page/Pro_Round_center.jpg");
}
.cir-animation .three-wheel a:nth-child(5) div {
  background-image: url("../images/product_page_1/Pro_Round_center_3W.jpg");
}
.cir-animation .electric a:nth-child(5) div {
  background-image: url("../images/product_page_1/Pro_Round_center_E3W.jpg");
}
.cir-animation .spares a:nth-child(5) div {
  background-image: url("../images/product_page/Pro_Round_center_Spares.jpg");
}
.cir-animation .mrf a:nth-child(5) div {
  background-image: url("../images/product_page/Pro_Round_center_Tyre.jpg");
}
.cir-animation a:nth-child(5) p {
  left: 35%;
  top: 35%;
}
.cir-animation span {
  position: relative;
  display: block;
  margin: 0 auto;
  top: 45vmin;
  width: 15vmin;
  height: 15vmin;
  border-radius: 100%;
  background: #c1060d;
  transform: translateZ(0px);
}
.cir-animation span span {
  position: absolute;
  width: 60%;
  height: 3px;
  background: #aca696;
  left: 20%;
  top: 50%;
  border-radius: 0;
}
.cir-animation span span:after,
.cir-animation span span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1.5vmin;
  width: 100%;
  height: 100%;
  background: inherit;
}
.cir-animation span span:after {
  top: 1.5vmin;
}
.cir-animation span:hover + .wrap,
.cir-animation .wrap:hover {
  transform: scale(0.8) translateZ(0px);
  opacity: 1;
}
.cir-animation span:hover + .wrap a,
.cir-animation .wrap:hover a {
  transform: scale(1) translatez(0px);
}
.cir-animation a:hover div {
  opacity: 1;
  transform: translatez(0px);
}

.product-card.pcard:hover .imgcard {
  outline: solid 8px #fff;
}

.product-card.pcard:hover .overlay {
  opacity: 1;
  transition: all 0.35s ease;
}

.product-card.pcard:hover .content-in {
  bottom: 0px;
  transition: all 0.35s ease;
}

a.btn-sent {
  color: #fff;
  text-decoration: none;
  padding: 0px 20px;
  background-color: transparent;
  display: block;
  text-align: center;
}
a.btn-sent i {
  margin-left: 10px;
}
a.btn-sent:hover {
  color: #fff;
}

section .display-4 {
  font-size: 2.8rem;
}

.carousel-indicators .active {
  background-color: rgb(238, 28, 36);
}

.carousel-indicators li {
  background-color: rgba(251, 7, 7, 0.5);
}

#carousel .carousel-item {
  height: 100vh;
  width: 100%;
  min-height: 350px;
  background: no-repeat center center scroll;
  background-size: cover;
}

#carousel .carousel-inner .carousel-item {
  transition: transform 2s ease;
}

#carousel .carousel-item .caption {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

#carousel .caption h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

#carousel .caption p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

#carousel .caption a {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

/* Button */
.delicious-btn {
  display: inline-block;
  min-width: 160px;
  height: 60px;
  color: #ffffff;
  border: none;
  border-left: 3px solid #1c8314;
  border-radius: 0;
  padding: 0 30px;
  font-size: 16px;
  line-height: 58px;
  font-weight: 600;
  transition-duration: 500ms;
  text-transform: capitalize;
  background-color: #40ba37;
}

.delicious-btn.active,
.delicious-btn:hover,
.delicious-btn:focus {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #1c8314;
  border-color: #40ba37;
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: var(--gap);
  -webkit-mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsla(0deg, 0%, 0%, 0),
    hsl(0deg, 0%, 0%) 20%,
    hsl(0deg, 0%, 0%) 80%,
    hsla(0deg, 0%, 0%, 0)
  );
  mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsla(0deg, 0%, 0%, 0),
    hsl(0deg, 0%, 0%) 20%,
    hsl(0deg, 0%, 0%) 80%,
    hsla(0deg, 0%, 0%, 0)
  );
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  -webkit-animation: scroll-x var(--duration) linear infinite;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
}
.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  -webkit-animation-name: scroll-y;
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  -webkit-animation-delay: -3s;
  animation-delay: -3s;
}

@-webkit-keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
@-webkit-keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}
@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}
/* Element styles */
.marquee svg {
  display: grid;
  place-items: center;
  width: var(--size);
  fill: #fbfbfb;
  background: #040a4f;
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
}

.marquee--vertical svg {
  aspect-ratio: 1;
  width: calc(var(--size) / 1.5);
  padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

.wrapper--vertical {
  flex-direction: row;
  height: 100vh;
}

/* Toggle direction button */
.toggle {
  --size: 3rem;
  position: relative;
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: var(--size);
  height: var(--size);
  font: inherit;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 50%;
  color: inherit;
  background-color: var(--color-bg-accent);
  z-index: 1;
}

.toggle:focus-visible {
  box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: calc(100% + 0.4em);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  transform: translateY(-50%);
  -webkit-animation: fade 400ms 4s ease-out forwards;
  animation: fade 400ms 4s ease-out forwards;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle svg {
  --size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  fill: currentcolor;
  transform: translate(-50%, -50%);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical svg {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@-webkit-keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.product-view {
  padding-left: 10px;
  padding-right: 10px;
}

.vttext {
  max-width: 600px;
  margin: 0 auto;
}

footer {
  color: #fff;
  background: #01063c;
  padding: 50px 0px 40px;
}
footer .address li,
footer .quicklink li {
  padding: 5px 0px;
}
footer .fas {
  padding-right: 5px;
}
footer .menu {
  list-style: none;
  display: flex;
}
footer .menu li {
  padding-right: 10px;
}
footer .menu a {
  color: #fff;
}
footer ul.icon {
  margin: 0;
  padding: 0;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer ul.icon li {
  list-style: none;
  margin: 0 15px;
}
footer ul.icon li a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  background: #161241;
  border-radius: 50%;
  font-size: 30px;
  color: #666;
  transition: 0.5s;
}
footer ul.icon li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffee10;
  transition: 0.5s;
  transform: scale(0.9);
  z-index: -1;
}
footer ul.icon li a:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #ffee10;
}
footer ul.icon li a:hover {
  color: #ffee10;
  box-shadow: 0 0 5px #ffee10;
  text-shadow: 0 0 5px #ffee10;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li a {
  color: #fff;
}
footer ul li a:hover {
  color: #fff;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  /* background: #1a171700 no-repeat center center; */
  background-color: #091d41;
  border-radius: 50%;
  background-size: 40% 40%;
  background-repeat: no-repeat;
  background-position: center;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  outline: none;
}

/* owl nav */
.owl-prev span,
.owl-next span {
  color: #fff;
}

.owl-prev span:hover,
.owl-next span:hover {
  color: #8199a3;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 0;
  height: 100%;
}

.owl-prev {
  left: 7px;
}

.owl-next {
  right: 7px;
}

.banner {
  position: relative;
  margin-top: 70px;
}
.banner .mbr-section-head {
  position: absolute;
  left: 50%;
  bottom: 40%;
  transform: translate(-50%, 0px);
}
.banner .mbr-section-head h4 {
  font-weight: 400;
}

.logo-silver {
  position: absolute;
  display: block;
  right: 150px;
/*  background: #03094e;*/
  padding: 8px;
  border-radius: 5px;
}
.logo-silver img {
  width: 180px;
}
.logo-silver span {
  display: block;
  font-size: 11px;
  text-align: center;
  color: #e0a515;
  font-weight: 600;
}
.logo-silver:hover {
  text-decoration: none;
}

.bg-light,
.navbar-fixed {
  background-color: #050b4f !important;
}

.float {
  position: fixed;
  width: 44px;
  height: 44px;
  bottom: 70px;
  right: 16px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  /* text-align: center; */
  display: flex;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  justify-content: center;
  align-items: center;
}
.float:hover {
  color: #fff;
} /*# sourceMappingURL=main.css.map */

img.f-logo {
  width: 250px;
}

ul.nav.nav-tabs.twowheeler-tab {
  width: 100%;
  border-bottom: none;
  justify-content: center;
  margin-bottom: 5rem;
}

ul.nav.nav-tabs.twowheeler-tab li a {
  width: 80px;
  border-radius: 50%;
  height: 80px;
  border: none !important;
}
ul.nav.nav-tabs.twowheeler-tab li a.nav-link.active {
  background-color: transparent;
  border: none;
}
.nav-link.vespa {
  background-image: url("../images/vespa-tab.jpg");
  background-size: contain;
  margin-right: 3rem;
  position: relative;
}
.nav-link.aprilla {
  background-image: url("../images/aprilla-tab.jpg");
  background-size: contain;
  position: relative;
}

.nav-link.vespa span,
.nav-link.aprilla span {
  position: absolute;
  bottom: -55px;
  left: 20px;
  color: #fff;
}
.tab-content {
  max-height: 450px;
}