/* footer css */
.mainfooter {
  border: var(--stdborder2);
  padding: 60px 6vw;
  color: var(--whitecolor);
  font-size: 1.2em;
  position: relative;
}
.mainfooter::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url("https://images.pexels.com/photos/956981/milky-way-starry-sky-night-sky-star-956981.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500");
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
  opacity: 0.2;
}
.footerpart1 {
  border: var(--stdborder1);
  display: flex;
  border-bottom: var(--bottomborder);
}
.footerpart1_1,
.footerpart1_2,
.footerpart1_3 {
  border: var(--stdborder3);
  font-size: 1.1em;
}
.footerpart1_1 {
  width: 35%;
  /* display: flex;
    justify-content: center;
    align-items: center; */
}
.thelinkpart {
  width: -webkit-fill-available;
}
.footerlogo {
  width: 100%;
  border: var(--stdborder2);
}
.footerpart1_2 {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  border-bottom: var(--bottomborder);
}
.btn:hover {
  transform: scale(1.1);
}
#email {
  padding: 4px;
  width: 300px;
  outline: none;
  border: 2px solid var(--dwhitecolor);
  background: #ffffff00;
  color: var(--whitecolor);
  font-size: 1.1em;
  border-radius: 8px;
}
.footerpart1_3 {
  display: flex;
  gap: 8vw;
  padding: 20px 4vw;
}
.footerlistheading {
  font-size: 1.2em;
}
.footerlist ul {
  list-style: none;
  padding: 20px 0px 0px 0px;
}
.footerlist li {
  padding: 5px 0px;
}
.footerlist a {
  text-decoration: none;
  color: var(--dwhitecolor);
}
.footerlist a:hover {
  text-decoration: underline;
  color: var(--cadetcolor);
}
.footerpart2 {
  display: flex;
  border: var(--stdborder1);
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
}
.footerpart2items ul {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.footerpart2items img {
  width: 25px;
}
.footerpart2items img:hover {
  opacity: 0.5;
}

/* responsiveness css */
@media screen and (max-width:908px){
  .footerpart1{
    flex-direction: column;
    align-items: center;
  }
  .footerpart2{
        flex-direction: column;
    gap: 3vw 0vw;
  }
}
@media screen and (max-width:620px){
  .footerpart1_1 {
    width: 50%;
}
.footerpart2{
  font-size: 2.8vw;
}
.footerpart2items img {
    width: 5vw;
}
}
@media screen and (max-width:400px){
  #email {
    width: 81vw;
    margin: 5px 0px;
  }
}
