@import "header.css";
@import "home.css";

@import "footer.css";

/* Common */

body {
    font-family: 'Poppins', sans-serif;
}

/* Button */
/* From Uiverse.io by gagan-gv */ 
/* From Uiverse.io by LeHuyHieu */ 
.outline-btn {
  outline: none;
  display: inline-block;
  border: 1px solid #000;
  padding: .6rem 1.5rem;
  border-radius: 5px;
  background: transparent;
  color: #000;
  font-size: 14px;
  transition: .3s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.outline-btn::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  border-top: 2px solid #0957639e;
  border-left: 2px solid #0957639e;
  width: 0px;
  height: 0px;
  opacity: 0;
  transition: .3s;
}

.outline-btn::after {
  content: '';
  position: absolute;
  right: 5px;
  bottom: 5px;
  border-bottom: 2px solid #0957639e;
  border-right: 2px solid #0957639e;
  width: 0px;
  height: 0px;
  opacity: 0;
  transition: .3s;
}

.outline-btn:hover {
  box-shadow: 4px 4px 10px rgb(184, 184, 184);
  transform: translateY(-5px);
}

.outline-btn:hover::after, .outline-btn:hover::before {
  height: 20px;
  width: 20px;
  opacity: 1;
}

/* .outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 40px;
    padding: 0 28px;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
}

.outline-btn:hover {
    background: #095763;
    color: #fff;
    border-color: #095763;
} */

.filled-btn {
    background-color: #095763;
    color: #fff;
    border-color: #095763;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
}

.filled-btn:hover {
    background-color: #0e8597;
    border-color: #0e8597;
}

/* back to top */ 
/* .back-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.back-button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: rgb(181, 160, 255);
  align-items: center;
}

.back-button:hover .svgIcon {
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.back-button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  font-size: 0px;
}

.back-button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  transition-duration: 0.3s;
} */

