* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Poetson One", "Roboto", "Segoe UI", Tahoma, Verdana,
    sans-serif;
}

.mp-0 {
  margin: 0;
  padding: 0;
}

.dobtn a {
  width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  font-style: italic;
  padding: 0.5rem 1rem;
  text-decoration: none;
  background-color: red;
  transform: translateX(0px);
  transition: all ease-in-out 0.5s;
}

.dobtn a:hover {
  color: #f8e266;
  transform: translateX(4px);
  background-color: rgb(249, 62, 62);
}

.shadow-l {
  box-shadow: -8px 8px 4px gray;
}

.shadow-b {
  box-shadow: 2px 4px 10px gray;
}

.shadow-r {
  box-shadow: 8px 8px 4px gray;
}

.br-f a {
  border-radius: 1rem;
}

/* Text-Hovering Start */
.marque-section {
  color: #fff;
  background-color: #2c2c2c;
}
/* Text-Hovering End */

/* Header Start */
.nav-logo img {
  width: 35%;
}

.image-links-container {
  display: flex;
  align-items: center;
}

.nav-brands {
  margin-right: auto;
}

.navbs {
  display: flex;
  align-items: center;
}

.fstyle {
  font-weight: 700;
  font-style: italic;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: red;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.dropdown-menu li {
  position: relative;
  font-size: 1rem;
}

.dropdown a {
  font-size: 1rem;
}

.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

.dropdown-hover:hover > .dropdown-menu {
  display: inline-block;
}

.dropdown-hover > .dropdown-toggle:active {
  pointer-events: none;
}

.animation-D {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}
/* Header End */

/* Modal Start */
.mmain{
  color: #fff;
  font-weight: 600;
  background-color: #2c2c2c;
}

.mheader h1{
  color: red;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 1px 1px 4px red;
}

.mclose{
  background-color: #fff;
}

.mleft img{
  width: 100%;
  height: 30vh;
  border-radius: 1rem;
}

.mright h4{
  text-align: center;
}
/* Modal End */

/* Hero Section Start */
.hero-section {
  width: 100%;
  height: 55vh;
  background-size: cover;
  background-position: 0px;
  background-repeat: no-repeat;
  background-image: url("../image/media.webp");
}

.hero-inner {
  width: 30%;
  height: 20vh;
  display: flex;
  user-select: none;
  align-items: center;
  border-radius: 1rem;
  justify-content: center;
  background-color: #fff;
}

.hero-inner h1{
  color: red;
  font-weight: 700;
  font-style: italic;
  text-align: center;
}
/* Hero Section End */

/* Recent-Project Start */
.recent-header h1 {
  color: red;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  position: relative;
  padding: 1.5rem 0rem;
  background-color: #2c2c2c;
  /* text-shadow: 1px 1px 4px #f8e266; */
}

.recent-header h1::after {
  width: 18%;
  content: "";
  margin-top: 3.5%;
  margin-left: -18%;
  position: absolute;
  transform: scaleX(0);
  border: 4px solid yellow;
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
}

.recent-header h1:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.hei {
  height: 100%;
}

.rp-img {
  height: 35vh;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 3px 3px 4px rgb(62, 34, 34);
}

.rp-img img {
  width: 100%;
  border-radius: 1rem;
  transition: all ease-in-out 0.5s;
}

.rp-img:hover img {
  transform: scale(1.1);
}
/* Recent-Project End */

/* Footer Start */
footer a {
  color: #fff;
  text-decoration: none;
}

.f1 h5 {
  font-style: italic;
  font-size: 1.5rem;
}

.f1 li,a {
  transform: translateX(0px);
  font-size: 1.1rem;
  transition: transform linear 0.5s;
}

.f1 li:hover{
  transform: translateX(4px);
}

.f1 li:hover a{
  text-decoration: underline;
  font-weight: 600;
}

.f1 input{
  padding-left: 1rem;
}

.f1 button{
  color: #fff;
  font-weight: 700;
  background-color: #2c2c2c;
  transform: translateX(0px);
  box-shadow: 2px 4px 5px #000;
  transition: all ease-in-out 0.5s;
}

.f1 button:hover{
  transform: translateX(4px);
  box-shadow: -3px 4px 5px #000;
  background-color: #3a3939d5;
}
/* Footer End */
