* {
  scrollbar-width: none;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: "Nuckle", Sans-serif;
  font-family: "Zalando Sans", sans-serif;
  font-weight: 500;
}

body {
  /* background-color: blue; */
  background-color: #FCE6E6;
  height: 100vh;
  width: 100vw;
  font-size: 1rem;
  user-select: none;
}

.wht {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  position: fixed;
  bottom: 90px;
  right: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  z-index: 2;

  &:hover {
    box-shadow: 1px 1px 10px #00ff15;
    scale: 1.2;
  }
}

.wht a {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #00ff15;
  color: #FCE6E6;
  text-decoration: none;
}

.wht a i {
  color: gainsboro;
  background-color: #00ff15;
  font-size: 1.5rem;
}

header {
  overflow: hidden;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0rem;
  z-index: 2;
  backdrop-filter: blur(50px);
}

@keyframes navAni {
  from {
    margin-bottom: 20rem;
    opacity: 0;
  }

  to {
    margin-bottom: 0rem;
    opacity: 1;
  }
}

nav {
  height: 80%;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #310F11;
  border-radius: 0.7rem;
  box-shadow: 0.1px 0.1px 10px #310F11;
  overflow: hidden;

  animation: navAni 1.5s ease-in-out 0s 1 alternate;
}

nav>a {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 150px;
  background-color: #310F11;
}

nav>a img {
  height: 100%;
  width: 65px;
}

.navBar-options {
  height: 100%;
  /* background-color: #00ff15; */
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navBar-options a {
  /* background-color: blueviolet; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FCE6E6;
  padding: 0rem 1.5rem;
  /* margin: 0rem 0.05rem; */
  font-weight: 600;
  z-index: 1;
}

.clr1 {
  background-color: #EE0100;
  height: 100%;
  left: 52.43%;
  width: 21.95%;
  top: 0;
  position: absolute;
  border-radius: 0.5rem;
  transition: 0.5s;
  box-shadow: 0.1px 0.1px 10px #EE0100;
}

#clr1 {
  left: 52.43%;
  width: 21.95%;
  top: 0;
}

.navBar-options a:nth-child(1):hover~.clr1 {
  left: 0rem;
  width: 17.70%;
}

.navBar-options a:nth-child(2):hover~.clr1 {
  left: 17.70%;
  width: 17.33%;
}

.navBar-options a:nth-child(3):hover~.clr1 {
  left: 35.03%;
  width: 17.40%;
}

.navBar-options a:nth-child(4):hover~.clr1 {
  left: 52.43%;
  width: 21.95%;
}

.navBar-options a:nth-child(5):hover~.clr1 {
  left: 74.38%;
  width: 25.62%;
}

.contain {
  /* background-color: #0165E1; */
  width: 1400px;
  height: auto;
  display: flex;
  margin: 0.5rem auto;
  margin-top: 100px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.contain>div {
  background-color: #310F11;
  height: 500px;
  width: 650px;
  margin: 1.3rem 0rem;
  border-radius: 1rem;
  cursor: pointer;
  overflow: hidden;
}

.contain>div a {
  height: 100%;
  width: 100%;
}


.vertical-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000;
  text-align: center;
  font-family: "Caveat Brush", cursive;

}

.contain>div a div {
  height: 100%;
  width: 100%;
  position: relative;
}


.contain div:hover img {
  box-shadow: 0.1px 0.1px 20px #FFDC80;
  transform: scale(1.5);
  filter: blur(3px);
}

.contain img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: 0.5s ease-in-out;
}

@keyframes serviceAni {
  from {
    margin-top: 20rem;
    opacity: 0;
  }

  to {
    margin-bottom: 0rem;
    opacity: 1;
  }
}


.service-one {
  animation-name: serviceAni;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
}

.service-two {
  animation-name: serviceAni;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: alternate;
}

.service-three {
  animation-name: serviceAni;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: alternate;
}

.service-four {
  animation-name: serviceAni;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
}

.service-five {
  animation-name: serviceAni;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: alternate;
}

.service-six {
  animation-name: serviceAni;
  animation-duration: 2.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: alternate;
}

.textDisplayy {
  font-size: 1rem;
  ;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0rem;
  margin: auto;
  overflow: hidden;
  position: relative;
  margin: 2rem 0rem;
}

.textDisplayy a {
  text-decoration: none;
  background-color: #EE0100;
  height: 55px;
  width: 400px;
  border-radius: 0.7rem;
  box-shadow: 1px 1px 10px #EE0100;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FCE6E6;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}

.textDisplayy a:hover {
  box-shadow: 2px 2px 15px #EE0100;
  transform: scale(1.02);
}

footer {
  background-color: #310F11;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
}

.connect {
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.txt7 {
  font-family: "Caveat Brush", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  margin: 0rem;
  color: #FCE6E6;
}

.socialMedia {
  width: 50rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.socialMedia i {
  font-size: 1.5rem;
  padding: 1.5rem;
  cursor: pointer;
  border-radius: 1rem;
  border: none;
  color: #FCE6E6;
}

.socialMedia a {
  transition: 0.5s;
  border: 1px solid white;
  opacity: 0.5;
  border-radius: 1rem;

  &:nth-child(1):hover {
    background: linear-gradient(#17A9FD, #0165E1);
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #0165E1;
  }

  &:nth-child(2):hover {
    background-color: #00ff15;
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #00ff15;
  }

  &:nth-child(3):hover {
    background-color: #e1002d;
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #e1002d;
  }

  &:nth-child(4):hover {
    background: linear-gradient(#405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #E1306C;
  }

  &:nth-child(5):hover {
    background-color: #0a66c2;
    box-shadow: 2px 2px 10px #0a66c2;
    opacity: 1;
    border: none;
  }

  &:nth-child(6):hover {
    background-color: #000000;
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #000000;
  }

  &:nth-child(7):hover {
    background-color: #d93025;
    opacity: 1;
    border: none;
    box-shadow: 2px 2px 10px #d93025;
  }
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #FCE6E6;
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 1500px) {
  .contain {
    width: 1000px;
  }

  .contain>div {
    width: 450px;
    height: 350px;
  }

  .textDisplayy a {
    width: 300px;
  }

  .socialMedia {
    width: 30rem;
    gap: 1rem;
  }
}

@media (max-width: 1000px) {
  .contain {
    width: 100%;
    /* flex-wrap: wrap; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #00ff15; */
    /* padding: 0rem 1rem; */
  }

  .contain>div {
    min-width: 100px;
    height: 300px;
    width: 420px;
    margin: 0.5rem;
  }

  .textDisplayy a {
    width: 250px;
    font-size: 0.9rem;
  }

  .socialMedia {
    width: 100%;
    gap: 0.5rem;
    padding: 0rem 1rem;
    flex-wrap: wrap;
  }

  .vertical-text {
    font-size: 2.5rem;
  }
}

@media(max-width: 900px) {
  #clr1 {
    /* background-color: #00ff15; */
    top: 210px;
    height: 65px;
    width: 100%;
    left: 0rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input[type="email"],
  .newsletter button {
    width: 100%;
    border-radius: 5px;
  }

  .newsletter button {
    margin-top: 10px;
  }
}