@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

:root {
  --primary-blue: #0c3c6a;
  --primary-orange: #feb237;
  --secondary-red: #f55353;
  --secondary-yellow: #f6f54c;
}

.dysania-blue {
  color: var(--primary-blue) !important;
}
.dysania-orange {
  color: var(--primary-orange) !important;
}
.dysania-red {
  color: var(--secondary-red) !important;
}
.dysania-yellow {
  color: var(--secondary-yellow) !important;
}

.color-inherit {
  color: inherit !important;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  opacity: 0.4;
}

* {
  font-family: "Poppins", sans-serif;
}

.btn-dys {
  position: relative;
  /* background-color: #212529; */
  background-color: var(--primary-blue);
  color: rgba(255, 255, 255, 0);
  display: flex;
  border: none;
  overflow: hidden;
}

.btn-dys,
.btn-dys::after {
  border-radius: 30px;
}

.btn-dys::after {
  color: var(--primary-blue);
  background-color: #fff;
  border: var(--primary-blue) 2px solid;
  transform: translateY(100%);
  transition-duration: 0.5s;
}
.btn-dys::before {
  color: #fff;
  background: none;
  transform: translateY(0%);
  transition-duration: 0.5s;
}
.btn-dys::after,
.btn-dys::before {
  position: absolute;
  content: attr(data-content);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  z-index: 1;
}

.btn-dys:hover:after {
  transform: translateY(0%);
  transition-duration: 0.5s;
}
.btn-dys:hover::before {
  transform: translateY(-100%);
  transition-duration: 0.5s;
}

#dysaniaNavbar {
  top: 0;
  z-index: 9;
}

#dysaniaNavbar > div > .nav-bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(2px);
}

#dysaniaNavbar > div > *:not(.nav-bg) {
  z-index: 2;
}

.cursor-pointer {
  cursor: pointer;
}

#imgAbout {
  /* top: 0; */
  width: 100%;
  height: 500px;
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0)
    ),
    url("/assets/img/people-work.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.imgServiceExmp {
  height: 75vh;
  object-fit: cover;
}

.tagServiceItem:hover > img {
  animation: imageTagServiceItem 1.5s both ease-in-out;
}
.tagServiceItem:hover > .tagContent {
  animation: contentTagServiceItem 1s both ease-in-out;
}

@keyframes imageTagServiceItem {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes contentTagServiceItem {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.section-footer {
  background-color: #eaeaea;
  margin-top: 110px;
  border-radius: 100px 0 0 0;
}
footer {
  padding: 5rem 0px;
}

.wrapper-col-1 h1 {
  font-weight: 900;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.wrapper-col-1 p {
  font-size: 14px;
  font-weight: 90%;
}

.wrapper-col-2 {
  display: flex;
  flex-direction: column;
}
.wrapper-col-2 h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.wrapper-col-2 a {
  font-size: 16px;
  color: black;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.wrapper-col-3 {
  display: flex;
  flex-direction: column;
}
.wrapper-col-3 h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.wrapper-col-3 a {
  font-size: 16px;
  color: black;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.wrapper-col-4 {
  display: flex;
  flex-direction: column;
}
.wrapper-col-4 h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.wrapper-col-4 a {
  font-size: 16px;
  color: black;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.wrapper-last-footer {
  padding: 1rem 0;
  border-top: 2px solid #bdbdbd;
}

.text-xl {
  font-size: 3rem;
}

.btn-sosmed {
  background: var(--primary-blue);
  width: 30px;
  height: 30px;
}

.btn-sosmed:hover {
  background: var(--primary-orange);
}
