@import url("https://fonts.googleapis.com/css2?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");

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
footer {
  margin-top: auto;
  background-color: var(--black-color);
}
:root {
  --light-color: rgb(125, 162, 169);
  --whitish-color: #f7f7f7;
  --hero-color: rgba(0, 0, 0, 0.763);

  --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
  --black-color: black;
}
.logo {
  /* max-width: 160px; */
  max-height: 85px;
  margin-top: 0;
}

@media (min-width: 1020px) {
  .home-info {
    margin-left: 40px;
  }
  .hero-header {
    font-size: 100px;
  }
}
@media (min-width: 300px) and (max-width: 1019px) {
  .sheesh {
    display: flex;
    justify-content: center;
  }
  .home-info {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-header {
    font-size: 70px;
  }
}

.hero-home {
  background-image: url(/img/new_hero.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}
.hero-home::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}

.hero-why {
  background-image: url(/img/about_us_art.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.hero-why::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.hero-art {
  background-image: url(/img/eagle.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.hero-art::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.hero-carve {
  background-image: url(/img/eagle.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.hero-carve::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.hero-frost {
  background-image: url(/img/dumbo.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.hero-frost::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.hero-mirror {
  background-image: url(/img/ball_mirror.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.hero-mirror::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.hero-trophy {
  background-image: url(/img/grad.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  max-height: 700px;
}
.hero-trophy::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
@media (min-width: 350px) and (max-width: 575.98px) {
  .nav-link {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .nav-link {
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .nav-link {
    font-size: 16px;
    margin-left: 6px;
    margin-right: 6px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-link {
    font-size: 20px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 1200px) {
  .nav-link {
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.hover-btn:hover {
  background-color: grey;
  color: white;
  transform: scale(1.05);
}
.hover-btn {
  color: white;
  background-color: #dc3545;
  border-radius: 0;
  padding: 15px;
  transition: transform 0.3s;
}
.background1 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.background2 {
  background-color: #f3f3f3;
  padding-top: 60px;
  padding-bottom: 60px;
}
.card-effect {
  box-shadow: var(--box-shadow);
  background-color: white;
  padding: 25px;
  /* transition: all 0.65s ease; */
}
.card-effect-slider {
  box-shadow: var(--box-shadow);
  background-color: white;
  padding: 25px;
  /* transition: all 0.65s ease; */
}
.iconbox {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black-color);
  color: rgb(255, 255, 255);
  font-size: 28px;
  border-radius: 100px;
  flex: none;
}
/* .menu-item:hover {
  color: #dc3545;
} */

.line {
  /* width: 30%; */
  width: 480px;
  height: 4px; /* Adjust the line thickness as needed */
  background-color: var(--black-color); /* Adjust the line color as needed */
  margin: 10px auto; /* Adjust the margin as needed the auto will make the line go to the center*/
}
.line-two {
  /* width: 40%; */
  width: 480px;
  height: 4px; /* Adjust the line thickness as needed */
  background-color: var(--black-color); /* Adjust the line color as needed */
  margin: 10px 0; /* Adjust the margin as needed the auto will make the line go to the center*/
}
@media (min-width: 200px) and (max-width: 991px) {
  .line-two {
    /* width: 30%; */
    width: 80%;
    height: 4px; /* Adjust the line thickness as needed */
    background-color: var(--black-color); /* Adjust the line color as needed */
    margin: 10px 0; /* Adjust the margin as needed the auto will make the line go to the center*/
  }
}
@media (max-width: 500px) {
  .line {
    /* width: 30%; */
    width: 70%;
    height: 4px; /* Adjust the line thickness as needed */
    background-color: var(--black-color); /* Adjust the line color as needed */
    margin: 10px auto; /* Adjust the margin as needed the auto will make the line go to the center*/
  }
}
@media (max-width: 500px) {
  .line-two {
    /* width: 40%; */
    width: 80%;
    height: 4px; /* Adjust the line thickness as needed */
    background-color: var(--black-color); /* Adjust the line color as needed */
    margin: 10px 0; /* Adjust the margin as needed the auto will make the line go to the center*/
  }
}
.section-line {
  /* width: 30%; */
  width: 90%;
  height: 4px; /* Adjust the line thickness as needed */
  background-color: black; /* Adjust the line color as needed */
  margin: 10px auto; /* Adjust the margin as needed the auto will make the line go to the center*/
}
.box-box {
  background-color: #ffffff;
  padding: 5px;

  box-shadow: var(--box-shadow);
}
.navbar {
  background-color: transparent;
  transition: all 0.3s ease;
}
.navbar-collapse {
  transition: all 0.3s ease;
}
.navbar.scrolled {
  transition: all 0.3s ease;
  background-color: black;
  box-shadow: var(--box-shadow);
}

/* .nav-link.clicked {
  color: white;
} */
/* .menu-item.clicked:hover {
  color: red;
} */
.navbar-collapse.clicked {
  background-color: black;
}
.nav-link {
  color: white;
}
/* .nav-link.scrolled {
  color: white;
} */
.nav-link:hover {
  color: #dc3545;
}

.dropdown-toggle {
  color: white;
}
.dropdown-item:hover {
  color: #dc3545;
}
.dropdown-toggle:active,
.dropdown-toggle:focus {
  color: white !important;
}
.logo-footer {
  max-height: 180px;
}
.footer-top {
  padding-bottom: 90px;
  padding: 50px;
}

.footer-margin {
  margin-top: 10px;
  margin: 7px;
}
.footer-bg {
  background-color: var(--black-color);
}
.underline-hover {
  font-size: 20px;
  margin: 0;
  padding: 2px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Add the default line underlay */
.underline-hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.3s ease, background-color 0.3s ease; /* Added background-color transition */
}

/* Add the hover effect to reveal the line underlay */
.underline-hover:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
  background-color: #dc3545; /* You can change the color as per your preference */
}

/* Add the retraction effect when not hovered */
.underline-hover:not(:hover)::before {
  transform-origin: bottom left;
  transform: scaleX(0);
}
.underline-hover-list {
  font-size: 15px;
  margin: 0;
  padding: 2px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Add the default line underlay */
.underline-hover-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.3s ease, background-color 0.3s ease; /* Added background-color transition */
}
.underline-hover-list:hover {
  color: #dc3545;
}
/* Add the hover effect to reveal the line underlay */
.underline-hover-list:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
  background-color: #dc3545; /* You can change the color as per your preference */
}

/* Add the retraction effect when not hovered */
.underline-hover-list:not(:hover)::before {
  transform-origin: bottom left;
  transform: scaleX(0);
}
.dropdown-item:hover {
  color: black;
}
.dropdown-menu {
  background-color: black;
}
.dropdown-menu .dropdown-item:hover {
  background-color: transparent; /* Set hover background to transparent */
}
.navbar-toggler {
  border-color: white;
  color: transparent;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.social-buttons {
  border: none;
}
.social-media-icons {
  font-size: 30px;
  padding: 10px 20px;
  border: none;
  margin-right: 7px; /* Add margin to the right */
}

.ig {
  background-color: #ac2bac;
}

.fb {
  background-color: #3b5998;
}
.yt {
  background-color: #ed302f;
}
.tt {
  background-color: black;
}
.ig:hover {
  background-color: grey;
}
.fb:hover {
  background-color: grey;
}
.yt:hover {
  background-color: grey;
}
.tt:hover {
  background-color: grey;
}
.carousel-control-prev-icon {
  background-color: black;
  border-radius: 100px;
}

.carousel-control-next-icon {
  background-color: black;
  border-radius: 100px;
}
@media (max-width: 575px) {
  .carousel-control-prev,
  .carousel-control-next {
    position: absolute;
    bottom: 0;
    transform: translateY(45%);
  }

  .carousel-inner.service-card {
    position: relative; /* Ensure the parent has relative positioning */
  }
}
.review-icon {
  color: orange;
}
.service-card {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  padding: 25px;
}
.padding-project {
  margin-top: 100px;
}
.shadow-nav {
  box-shadow: var(--box-shadow);
}
.img-hover {
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);

  background-color: #ffffff;
  padding: 5px;
  margin-left: 10px;
  margin-right: 10px;
}
.active-link {
  color: #dc3545;
}

@media (min-width: 992px) {
  .contact-formation {
    justify-content: start;
  }
}

@media (min-width: 200px) and (max-width: 991px) {
  .contact-formation {
    justify-content: center;
  }
}
.contact-form-bg {
  background-color: #f3f3f3;
}
.padding-botton-contact {
  padding-bottom: 60px;
}
.padding-top-contact {
  padding-top: 60px;
}

@media (min-width: 200px) and (max-width: 991px) {
  .map-margin {
    margin-top: 30px;
  }
}
video {
  max-width: 100%;
}
.styled-video {
  border: 5px solid white;
  box-shadow: var(--box-shadow);

  transition: transform 0.3s;
}

.styled-video:hover {
  transform: scale(1.05);
}

.map {
  box-shadow: var(--box-shadow);
}
.art-hover {
  transition: transform 0.3s;
}
.art-hover:hover {
  transform: scale(1.05);
}
.word-box {
  box-shadow: var(--box-shadow);
  transition: transform 0.3s;
}
.word-box:hover {
  transform: scale(1.05);
}
.review-photo {
  text-align: center;
}

.review-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--box-shadow);
}
