:root {
  --red-match-gif: rgb(79, 62, 155);
  --tripple-ccc: #ccc;
  --dark-green: rgb(16, 54, 8);
  --grey-dark: #686868;
  --light-blue: rgb(110, 104, 196);
  --violet: #6d5783;
  --dark: #383838;
  --dark-2: #707070;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  z-index: 1;
  scroll-behavior: smooth;
  font-family: Arial, sans-serif;
}

p.p-i i {
  color: var(--dark-2);
  margin-right: 10px;
}

p {
  font-size: 14pt;
  line-height: 30px;
}

li {
  list-style: none;
  margin: 0;
}

a {
  text-decoration: none;
}

section {
  padding: 70px 40px;
  z-index:0;
}

.hero {
  padding-top: 80px;
  min-height: fit-content;
  background:
    linear-gradient(
      40deg,
      rgba(92, 43, 43, 0.7) 40%,
      rgba(38, 22, 48, 0.9) 60%
    ),
    url("../img/hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
  padding-bottom: 200px;
  z-index:0;
}

.identity img {
  width: 100%;
  margin-bottom: 30px;
}

.identity {
  padding-top: 0;
  padding-bottom: 0;
}

.hero.other {
  padding-bottom: 0;
}

.hero a {
  color: #fff;
}

.hero nav {
  width: 100%;
  position: absolute;
  top: 77px;
  left: 0;
  padding: 0 80px;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
  border-bottom: 1px solid var(--red-match-gif);
  border-top: 1px solid var(--red-match-gif);
  background-color: #fff;
}

.hero nav a {
  color: var(--violet);
  text-decoration: none;
}

.hero nav li.active a,
.hero nav li:hover a {
  color: violet;
}

.hero nav li,
.hero nav a,
.hero nav .ahr {
  transition: all ease-in-out 0.3s;
}

.hero nav li.active .ahr,
.hero nav li:hover .ahr {
  width: 70%;
  height: 1px;
  margin-left: 30%;
  background-color: var(--violet);
}

.hero nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 80px;
  padding-right: 40px;
  background-color: #fff);
  position: relative;
}

.hero nav .logo h4 {
  margin-top: 10px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  font-size: 17px;
}

.hero nav .logo img {
  width: 70px;
}

.hero nav .ul-links ul li a {
  font-size: 15px;
  font-weight: 600;
}

.hero nav .ul-links {
  display: flex;
  align-items: center;
  margin-top: 15px;
  z-index:999;
}

.hero nav .ul-links ul {
  display: flex;
  gap: 25px;
  align-items: center;
  height: 100%;
  position:relative;
  z-index:999;
}

.hero .hero-content {
  margin: 0 auto;
  margin-top: 100px;
  width: 90%;
  text-align: center;
}

.hero .hero-content h1 {
  margin-bottom: 40px;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.hero .hero-content p {
  line-height: 37px;
  font-weight: 100;
}

.learn-more {
  margin-top: 60px;
}

.learn-more.other {
  margin-top: 0;
}

.learn-more a {
  background-color: transparent;
  padding: 10px 40px;
  border: 3px solid #fff;
  color: #fff;
  border-radius: 10px;
  transition: all ease-in-out 0.1s;
}

.learn-more a:hover {
  background-color: var(--red-match-gif);
  color: #fff;
}

.about-us {
  background: #fff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 40px;
}

.about-us.other{
  padding-top: 100px;
}

.about-us .learn-more a{
    border: 3px solid var(--dark);
  color: var(--dark);
}

.about-us .learn-more a:hover{
  color: #fff;
}

.margin-neg {
  margin-top: -170px;
  z-index: 1;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  height: fit-content;
  border-radius: 10px;
  overflow: hidden;
}

.margin-neg .item {
  border-right: 1px solid #ccc;
  padding: 20px;
  height: 100%;
  text-align: center;
  background-color: rgb(250, 250, 255);
}

.margin-neg .item .icon{
  width: fit-content;
  margin: 0 auto;
}

.margin-neg .item .icon i{
  font-size: 40px;
  color: teal;
}

.margin-neg .item h3{
  font-weight: 800;
  color: rgb(59, 59, 59);
  margin: 15px 0;
  font-size: 20px;
}

.margin-neg .item p{
  font-weight: 100;
  color: var(--dark);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  110% {
    background-position: 0% 50%;
  }
}

.sect-title {
  text-align: center;
  color: var(--dark);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.section-header {
  position: relative;
  width: 100%;
  margin-bottom: 80px;
}

.section-header.other {
  margin-bottom: 30px;
  width: fit-content;
}

.section-header .hr {
  width: 100px;
  height: 2px;
  background-color: #ccc;
  margin: 0 auto;
}

.card-top {
  color: #fff;
  width: 100%;
  background-color: var(--light-blue);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  text-align: center;
}

.card-top.c-1 {
  background-color: rgb(201, 185, 185);
}

.card-top.c-2 {
  background-color: rgb(207, 207, 172);
}

.card-top.c-3 {
  background-color: rgb(166, 219, 166);
}

.about-card {
  padding: 0 30px;
}

.about-card.img {
  padding: 20px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #ffffff;
}

.img-cont {
  width: 100%;
  background-color: rgb(123, 123, 146);
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 100px 0 100px;
  position: relative;
}

.img-cont .img {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  overflow: hidden;
  border: 4px solid rgb(255, 255, 255);
}

.about-card img {
  width: 60%;
}

.img-cont .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-top i {
  font-size: 40px;
  margin: 30px 0;
  margin-bottom: 10px;
  color: var(--dark);
}

.card-top h2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--dark);
}

.featured-services {
  background-color: #f1f1f1;
}

.card.service {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all ease-in-out 0.5s;
  background-color: #fff;
  border: none;
}

.card.service:hover {
  scale: 1.01;
}

.featured-products {
  background: #fff;
  animation: gradientMove 10s ease infinite;
}

.learn-more.other.r a {
  border: 1px solid var(--dark);
  color: var(--dark);
}

.learn-more.other.r a:hover {
  color: #fff;
}

.card.service.other {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  cursor: auto;
  overflow: visible;
  border-radius: 0;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
}

.card.service.other .top-card {
  width: 100%;
  padding: 20px 0;
  background-color: #96caca;
  border-radius: 0 0 0 25px;
  position: relative;
}

.card.service.other .top-card::before,
.card.service.other .top-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: 0;
  width: 60px;
  height: 60px;
  background: #96caca;
}

.card.service.other .top-card::after {
  border-radius: 0 25px 0 0;
  background: #fff;
}

.card.service.other .icon {
  width: fit-content;
  margin: 20px auto;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
}

.card.service.other:hover {
  scale: 1;
}

.card.service.other .icon i {
  font-size: 35px;
}

.card.service.other h2 {
  font-size: 17px;
  font-weight: 800;
}

.card.service.other p {
  margin-top: 10px;
}

.card.service.other .icon.icon-1 {
  background-color: rgb(255, 255, 163);
}

.card.service.other .icon.icon-1 i {
  color: rgb(94, 94, 16);
}

.card.service.other .icon.icon-2 {
  background-color: rgb(190, 255, 177);
}

.card.service.other .icon.icon-2 i {
  color: rgb(29, 94, 16);
}

.card.service.other .icon.icon-3 {
  background-color: rgb(255, 184, 166);
}

.card.service.other .icon.icon-3 i {
  color: rgb(104, 23, 8);
}

.card.service.other .icon.icon-4 {
  background-color: rgb(255, 255, 255);
}

.card.service.other .icon.icon-4 i {
  color: rgb(59, 59, 59);
}

.contact {
  background: #f7f7f7;
}

.contact .col-md-12 {
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
}

.contact .row .col-md-6 .row {
  display: block;
  align-items: center;
}

.contact form {
  padding: 10px;
  background-color: #fff;
}

.contact form h5 {
  text-align: center;
  font-weight: 700;
  font-size: 25px;
  margin: 10px 0;
  margin-bottom: 20px;
  color: #494949;
}

.contact form button {
  background-color: var(--light-blue);
  color: #fff;
}

.contact .col-md-12 .items {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact .col-md-12 .items a,
.contact .col-md-12 .items p {
  color: var(--dark);
}

.contact .col-md-12 .items h5 {
  font-size: 20px;
  color: var(--dark);
}

.contact .col-md-12 .items .icon {
  background-color: var(--light-blue);
  padding: 10px;
  border-radius: 10px;
}

.contact .col-md-12 .items .icon i {
  font-size: 50px;
}

.toggle {
  display: none;
}

.footer {
  background-color: #000;
  color: var(--grey-dark);
  padding-bottom: 20px;
}

.footer .socials i {
  font-size: 20px;
}

.footer .row a {
  color: var(--grey-dark);
  font-size: 14pt;
}

.footer .title {
  color: #e4e4e4;
  margin-bottom: 20px;
}

.whatsapp {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background-color: rgb(31, 158, 31);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  color: #fff;
  position: fixed;
  right: 40px;
  bottom: 40px;
  transition: all ease 0.3s;
  font-size: 60px;
  box-shadow: 0 0 10px rgba(253, 60, 60, 0.9);
}

.whatsapp:hover {
  scale: 1.1;
  color: #fff;
}

.bi.bi-facebook{
  color: rgb(41, 41, 211);
}

.bi.bi-instagram{
  color: rgb(192, 13, 88);
}

.bi.bi-linkedin{
  color: rgb(89, 89, 241);
}

.bi.bi-youtube{
  color: rgb(255, 33, 33);
}

.we-rent-img {
  height: 400px;
}

.items-g .col-md-6{
  height: 400px;
  margin-bottom: 8px;
}

.items-g .col-md-6 img{
  height: 100%;
  object-fit: cover;
}

.we-rent-item{
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.we-rent-item .condition{
  position: absolute;
  top: 0;
  left: 0;
  rotate: -45deg;
  z-index: 999;
  background-color: rgb(22, 82, 17);
  border: 3px solid rgb(0, 255, 76);
  color: #fff;
  width: 100%;
  transform: translate(-150px,-100px);
  padding: 10px;
  text-align: center;
}

.we-rent-img img{
  height: 100%;
  object-fit: cover;
}


@media (max-width: 960px) {
  .hero nav .logo {
    padding: 10px 10px;
    padding-right: 20px;
  }

  .ahr {
    display: none;
  }
  .hero nav .ul-links {
    display: none;
    z-index:9999;
  }

  .hero nav .ul-links.active {
    display: block;
    position: absolute;
    width: 100%;
    padding: 10px 0px;
    left: 0;
    top: 85%;
    background-color: #ffffff;
    box-shadow:0 10px 10px 0 rgba(0,0,0,0.4);
    z-index:999999;
  }

  .hero nav .ul-links.active ul {
    display: block;
    width: 100%;
  }

  .hero nav .ul-links.active ul li {
    width: 100%;
  }

  .hero nav .ul-links.active ul li a {
    display: inline-block;
    width: 95%;
    padding: 10px;
    border-radius: 10px;
    border-bottom: 1px solid #ccc;
  }

  section {
    padding: 80px 10px;
    z-index:0;
  }

  .toggle {
    display: block;
    cursor: pointer;
    margin-right: 20px;
  }

  .toggle .bar {
    display: block;
    width: 25px;
    height: 1px;
    background-color: #333333;
    margin-bottom: 5px;
    transition: all ease 0.3s;
  }

  .toggle.active :nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 5px);
  }
  .toggle.active :nth-child(2) {
    opacity: 0;
  }
  .toggle.active :nth-child(3) {
    transform: rotate(45deg) translate(-5px, -4px);
  }

  .hero nav {
    padding: 0;
    padding-right: 10px;
  }

  .hero nav .logo img {
    width: 80px;
  }

  .hero nav .logo h4 {
    font-size: 15px;
    margin-top: 8px;
  }

  .hero .hero-content {
    width: 100%;
    margin-top: 80px;
  }

  .card-top {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .hero .hero-content h1 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 800;
  }

  .hero .hero-content p {
    line-height: 27px;
    font-size: 16px;
    font-weight: 300;
    text-align: start;
  }

  .hero .hero-content h1 {
    text-align: center;
    font-weight: 600;
    line-height: 40px;
  }

  p {
    line-height: 30px;
    font-size: 16px;
  }

  .about-card.img {
    padding: 20px 5px;
  }

  .about-card {
    padding: 0;
  }

  .footer .title {
  margin-bottom: 10px;
  margin-top: 40px;
}

.footer .title.f{
  margin-top: 0;
}
}
