/** @format */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 800px;
  height: 100svh;
  margin: 0 auto;
  padding: 4rem 4rem;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
}

body {
  font-family: "Inter", sans serif;
  color: #4f4d4d;
  background-color: #fdfcfc;
  overflow: hidden;
}

a,
p {
  font-size: 1rem;
  line-height: 1.7;
}

:root {
  --linkcolor: #d04e59;
  --textcolor: #4f4d4d;
  --grey: #a6a6a6;
  --orange: rgb(255, 128, 0);
  --orangeCursor: rgba(255, 128, 0, 0);
  --green: rgb(68, 231, 68);
}

.cont{
  z-index: -2;
  position: absolute;
  height: 100svh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.bg_d{
  opacity: .5;
  position: absolute;
  z-index: -2;
  
  height: 90em;
  overflow: hidden;
  transform: rotate(20deg);
}

.contact {
  width: 100%;
  margin: 1em 0;
  padding: 2em 0;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.contact p {
  border-bottom: 1px dotted #e5e5e5;
}

.svg-swap {
  position: absolute;
  pointer-events: none;
  display: flex;
  height: 100%;
  width: 100%;
  padding: 3em 3em;
  justify-content: flex-end;
  align-items: flex-end;
}

.svg {
  position: absolute;
  object-fit: contain;
  height: 5em;
  fill: var(--linkcolor);
  filter: drop-shadow(1px 1px 30px #d04e59);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  z-index: 1;
  cursor: pointer;
  pointer-events: visible;
  border: none;
  transition: all 0.5s ease-in-out;
}

.svg:hover {
  filter: drop-shadow(1px 1px 30px rgb(4, 105, 25));
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  fill: rgb(38, 185, 111);
  transform: rotate(150deg);
}

.mobile {
  display: none;
}

a {
  text-decoration: none;
  color: #4f4d4da2;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--linkcolor);
}

.choose {
  max-width: 50rem;
  height: 100svh;
  margin: 0 auto;
  padding: 3rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2em;
  z-index: 1;
  
}

.eng {
  font-size: large;
  font-weight: 700;
}

.language-buttons {
  object-fit: contain;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  column-gap: 4em;
}

button {
  background: none;
  border: none;
  color: var(--textcolor);
  outline: none;
  position: relative;
  cursor: pointer;
  height: 3em;
  width: 5em;
  font-size: large;
  font-weight: 600;
}



button::after {
  border: 0 solid transparent;
  transition: all 0.3s ease-in-out;
  content: "";
  height: 0;
  position: absolute;
  width: 0px;
}

button::after {
  border-bottom: 2px solid rgb(190, 42, 42);
  filter: drop-shadow(1px 1px 10px rgb(190, 42, 42));
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  bottom: -1px;
  left: 0;
}

button:hover::before,
button:hover::after {
  width: 100%;
  
}

.cont-title{
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: .5em;
}

.ul__circle {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  color: var(--grey);
  background-color: var(--grey);
  border: var(--grey);
}
/* Navbar Pulse Circle */

.nav__circle__pulse {
  column-gap: 0rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px #0000001a;
  color: var(--grey);
  background: var(--green);
  z-index: 9999999;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px var(--green);
  }
  100% {
    box-shadow: 0 0 0 0.5rem rgba(0, 0, 0, 0);
  }
}

@media (max-width: 970px) {
  button::after, button::before{
    transition: none;
    display: none;
  }

  button{

    width: 6em;
  }

  .pc {
    display: none;
  }

  .mobile {
    display: flex;
  }

  .svg {
    cursor: none;
    height: 3em;
  }
  .container {
    max-width: 700px;
  }
  a,
  p {
    font-size: 0.8rem;
  }

  p {
    color: var(--textcolor);
  }

  a {
    color: var(--linkcolor);
  }
}
