@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&family=Pacifico&family=Poppins&display=swap');

*,
html {

  scroll-behavior: smooth !important;
}

body {
  background-color: rgb(223, 249, 250);
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.converter-container {
  width: 80%;
  margin: 50px auto 0 auto;
}

.container-flex-box {
  display: flex;
}

.container-flex-box>div {
  box-shadow: 0 15px 30px rgba(76, 164, 171, 0.2), 0 5px 15px rgba(76, 164, 171, 0.1);
}

.flexbox-list {
  width: 30%;
  margin: 10px;
  border-radius: 16px;
  background-color: white;
}

.flexbox-list h3 {
  margin-top: 0;
}

.flexbox-list ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.flexbox-list-header {
  margin: 1.5em;
  padding: 1.5em 0 0 0;
}


.list-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 1.5em 10px 1.5em;
}



.list-button>div {
  display: flex;
  align-items: center;
}

.list-button>div p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  text-align: left;
  -webkit-text-fill-color: rgb(116, 116, 116);
  display: inline-block;

}

.star {
  padding: 2px;
  background-color: rgb(148, 235, 239);
  border-radius: 10px;
  margin-right: 5px;
}

.flexbox-textarea {
  width: 66%;
  background-color: white;
  border-radius: 16px;
  position: relative;
  margin: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  flex-basis: 0;
}

#conversionType {
  margin: 0 0 1.5em 0
}

.flexbox-textarea-header {
  background-color: rgb(148, 235, 239);
  height: 15%;
  display: flex;
  padding: 0 20px;
  border-radius: 16PX 16PX 0 0;
}

.flexbox-textarea-header h3 {
  display: flex;
  align-items: center;
  color: #454757;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #446F78;
  border-radius: 50%;
  display: inline-block;
  border: 5px solid white;
  margin-block-start: auto;
  margin-block-end: auto;
  margin-right: 15px;
}

.flexbox-textarea-input {
  height: 100%;
  margin: 4% 4.5%;
  resize: none;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: rgb(223, 249, 250);
  padding: 3%;
  flex: 1;
  flex-basis: 0;
}

.clear-button {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 15%;
  right: 10%;
  border: 0;
  background-color: white;
  border-radius: 16px;
  cursor: pointer;
}

.clear-button:active {
  filter: invert(70%) sepia(4%) saturate(4667%) hue-rotate(143deg) brightness(108%) contrast(74%);
}

.counter-list-header {
  margin: 1em;
  padding: 1em 0 0 1.5em;
}

.counter-list-header-p {
  margin: 1em;
  padding: 0.2em 0 0 0.7em;
}
.counter-list {
  margin: 10px;
  border-radius: 16px;
  background-color: white;
  width: 30%;
  padding: 0;
}

.counter-list ul {
  padding: 0 1em 0 1.5em;
  list-style: none;
  margin: 0 0 1em 0;
}

.counter-list h3 {
  margin: 0 auto;
}

.counter-list>p {
  margin-block-start: 0.5em;
  color: rgb(113, 128, 150);
}

.counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 13px;
}

.counter span {
  min-width: 25px;
}

.counter:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.093);
  border-radius: 12px 0 0 12px;
}

.register-list ul {
  list-style: none;
  display: flex;
  width: 98%;
  padding: 1%;
  margin: 0;
  gap: 1%;
  background-color: rgb(242, 245, 245);
  border-radius: 0 0 30px 30px;
}

.register-list ul li {
  width: 19.5%;

}

.underline {
  /* width: 100%; */
  border-bottom: 1px solid #E5E7EB;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  padding: 0;
  margin: 0 1.5em 0 1.5em;
}

.register-button {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  border: 0;
  background: 0;
  cursor: pointer;
}

.register-button p {
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #718096;
}

.register-button-t {
  min-width: 17px;
  height: 17px;
  font-weight: 800;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: solid #718096 2px;
  color: #718096;
  border-radius: 50%;
}

.register-button.focused {
  background-color: white;
}


.register-button.focused .register-button-t {
  background-color: #446F78;
  color: white;
}

.list-button.focused {
  background-color: rgb(223, 249, 250);
  border-radius: 0px;
  width: 100%
}

.arrow.focused {
  fill: #3ED2D9;
}

.arrow {
  fill: #718096;
}

.description-container {
  width: 80%;
  margin: 50px auto 150px auto;
  display: grid;
  grid-template-columns: 48% 48%;
  grid-gap: 2.5%;

}

.description-item {
  background-color: rgb(255, 255, 255);
  padding: 15px 24px 28px 0;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(76, 164, 171, 0.2), 0 5px 15px rgba(76, 164, 171, 0.1);

}

.description-header {
  padding: 0 0 6px 20px;
  border-left: solid rgb(70, 72, 88) 4px;
  border-radius: 3px;
  margin: 0 0 20px 0;
}

.description-header>h4 {
  margin-bottom: 0;
  color: #4DA3AB;
}


.description-content {
  margin: 10px 0 0 24px;
}


.example-1,
.example-2 {
  padding: 10px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-block;
}

.example-1 {
  margin: 0 6px 5px 0;
  background-color: rgb(148, 235, 239);

}

.example-2 {
  background-color: rgb(211, 243, 251);
}

::-webkit-scrollbar {
  width: 10px;

}

/* Track */
::-webkit-scrollbar-track {
  background: none;

}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 16px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.title {
  background-color: #0D121F;
  padding: 70px 0;
  overflow-x: hidden;
  position: relative;
}

.title-content {
  width: 70%;
  margin: auto;
  position: relative;
  margin-top: 150px;
}

.title-content h1 {
  color: white;
  font-size: 72px;
  text-align: center;
}

.title-content p {
  font-size: 24px;
  color: rgba(108, 111, 118, 0.5);
  text-align: center;
  padding: 0 10%;
}

.title-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.title-button {
  background-color: white;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.5s;
  text-decoration: none;
}

.title-button.button-1 {
  background-color: #53C9D0;
  color: white;
  clear: both;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;

}

.tryconverter {
  visibility: visible;
}

.title-button:hover {
  background-color: white;
  color: black;
  transition: 0.5s;
}

.title-button.button-2 {
  background-color: #1A202C;
  color: #C3D4E9;
}

.title-button.button-2:hover {
  background: #C3D4E9;
  color: #000000;
  transition: 0.5s;
}

.title-cards {
  display: flex;
  width: 80%;
  margin: 100px auto;
  gap: 2%;
}

.title-card {
  background-color: white;
  width: 35%;
  display: flex;
  padding: 28px;
  align-items: center;
  gap: 4%;
  border-radius: 16px;
  transition: 0.5s;
  justify-content: space-between;

}

.title-card:hover {
  background-color: #D1FDFF;
  transition: 0.5s;
}

.title-card:hover img {
  background-color: #94EBEF;
  transition: 0.5s;
}

.title-card>img {
  background-color: rgba(191, 251, 255, 0.50);
  width: 32px;
  height: 32px;
  margin: auto;
  padding: 16px;
  border-radius: 25px;
  max-width: 30%;
}

.card-content {
  min-width: 80%;
}

.card-content p {
  margin: 0;
  color: #4E5A6F;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.232px;
}

.card-content h4 {
  margin: 0;
  font-weight: 600;
}

.footer-container {
  background-color: #0D121F;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 45px;
  padding: 60px 0;
  bottom: 0;
}

.footer-logo {
  display: flex;
  gap: 10px;
}

.footer-logo>img {
  object-fit: contain;
}

.footer-logo>h1 {
  text-align: center;
  font-family: Oswald;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.218px;
  margin: 0;
  color: white;
}

.footer-description {
  text-align: center;
  font-family: Poppins;
  font-size: 17px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.232px;
  color: rgb(108, 113, 121);
  margin: 0;
  max-width: 700px;
}

.footer-hrefs {
  display: flex;
  gap: 69px;
  flex-wrap: wrap;
}

.footer-href {
  font-size: 15px;
  color: white;
  text-decoration: none;
}

.footer-href:hover {
  filter: brightness(0) saturate(100%) invert(97%) sepia(93%) saturate(3598%) hue-rotate(158deg) brightness(114%) contrast(87%);
}

.footer-socmedias {
  display: flex;
  gap: 24px;
}

.footer-socmedia>img {

  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socmedia:hover img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(93%) saturate(3598%) hue-rotate(158deg) brightness(114%) contrast(87%);
}

.navbar {
  position: absolute;
  z-index: 1000;
  backdrop-filter: blur(75px);
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);

  -webkit-backdrop-filter: blur(75px);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 40px;

}

.navbar-links>a {
  text-decoration: none;
  color: white;
}

.navbar-links>a:hover {
  filter: brightness(0) saturate(100%) invert(97%) sepia(93%) saturate(3598%) hue-rotate(158deg) brightness(114%) contrast(87%);
}

.our-team {
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}


.our-team svg {
  transform: rotate(180deg);
  transition: 1s;
}

.team {
  padding: 150px 0 0 0;
  position: fixed;
  display: flex;
  width: 100%;
  justify-content: center;
  z-index: 999;
  gap: 5%;
  background-color: #404A58;
  padding-bottom: 42px;
  transform: translateY(-100%);
  transition: 1s .3s;
  border-radius: 0 0 16px 16px;

}

.team-move-up {
  transform: translateY(0);
  transition: 1s;
}

.team-card {

  position: relative;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: white;
  padding: 40px;
  gap: 16px;
}

.team-image {
  position: relative;
  width: 220px;
  border-radius: 16px;
}

.team-header {
  display: flex;
  gap: 16px;
}

.team-person {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.team-person p {
  margin: 0;
  color: #4E5A6F;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 25.2px */
  letter-spacing: -0.232px;
}

.team-person h4 {
  margin: 0;
  font-size: 14px;
}

.team-resps {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.team-resps span {
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 500;
  color: #4DA3AB;
  background-color: #DFF9FA;
  border-radius: 8px;
  width:fit-content;
  
}

.linkedin-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-elipse-1 {
  z-index: 0;
  left: -500px;
  top: -300px;
  position: absolute;
  border: solid rgba(255, 255, 255, 0.081) 100px;
  border-radius: 50%;
  width: 700px;
  height: 700px;
}

.back-elipse-2 {
  z-index: 0;
  right: -500px;
  top: -500px;
  position: absolute;
  border: solid rgba(255, 255, 255, 0.081) 100px;
  border-radius: 50%;
  width: 700px;
  height: 700px;
}

.our-team:hover svg {
  transform: rotate(360deg);

}

.our-team:hover {
  filter: brightness(0) saturate(100%) invert(97%) sepia(93%) saturate(3598%) hue-rotate(158deg) brightness(114%) contrast(87%);
}

.team:hover {
  transform: translateY(0);
}

.registermenu {
  display: none;
  padding: 0;
  position: relative;
}

.register-popup {
  display: none;
  list-style: none;
  position: relative;
  background-color: white;
  border-radius: 16px 16px 0 0;

}

.register-popup ul {
  list-style: none;
  position: absolute;
  width: 100%;
  background-color: white;
  border-radius: 0 0 16px 16px;
  margin: 0;
  padding-bottom: 10px;
  box-shadow: 0 15px 15px rgba(76, 164, 171, 0.2), 0 5px 15px rgba(76, 164, 171, 0.1);
}

.register-popup ul li {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hamburger {
  display: none;
}

.hamburger_menu {
  position: fixed;
  display: none;
  flex-direction: column;
  z-index: 999;
  padding: 120px 50px 100px 50px;
  width: 100%;
  height: 100%;
  font-size: 30px;
  box-sizing: border-box;
  gap: 20px;
  background-color: #141b28;
}

.hamburger_menu a {
  text-decoration: none;
  color: white;

}



.close {
  display: none;

}




.change_tool {
  justify-content: center !important;
  margin-left: 0 !important;
}

.change_tool svg{
  transform: rotate(180deg);
  transition: 0.5s;
  filter: invert(35%) sepia(7%) saturate(1236%) hue-rotate(177deg) brightness(82%) contrast(83%)
}



@media only screen and (max-device-width: 900px) {
  .description-container {
    grid-template-columns: 100%;
    grid-gap: 20px;
  }

  .footer-hrefs {
    gap: 19px;
    width: 80%;
    margin: auto;
    justify-content: center;
  }

  .footer-description {
    padding: 0 20px;
  }

  .container-flex-box {
    flex-direction: column;

  }

  .sec {
    flex-direction: column-reverse;
  }

  .flexbox-textarea {
    width: 100%;
  }
  .flexbox-textarea-header {
    height: auto;
  }
  .counter-list {
    box-sizing: border-box;
    width: 100%;
    flex: 1;
  }

  .flexbox-list {
    width: 100%;
    box-sizing: border-box;
    flex: 1;
  }
  .flexbox-textarea-input {
    min-height: 200px;
  }
  .title-cards {
    flex-direction: column;
    gap: 20px;
  }

  .title-card {
    width: auto;

  }

  .title-button {
    width: 100%;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    align-items: center;
    justify-content: center;

  }

  .title-buttons {
    gap: 10px;
    width: auto;
  }

  .title-content {
    width: 90%;
  }

  .title-content>h1 {
    font-size: 24px;
    margin-top: 100px;
  }

  .title-content>p {
    font-size: 16px;
  }

  .back-elipse-1 {
    left: -700px;
    top: -100px;
  }

  .back-elipse-2 {
    right: -700px;
  }

  .navbar-links {
    display: none;
  }

  .navbar {
    gap: 60px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .register-list {
    display: none;
  }

  .visitor-counter {
    display: none;
  }

  .list-button>div p {
    font-size: 12px;

  }

  .flexbox-list {
    margin: 10px 0;
  }

  .flexbox-textarea {
    margin: 10px 0;
  }

  .counter-list {
    margin: 10px 0;
  }

  .title-content p {
    color: rgba(108, 111, 118, 0.9);
  }

  .register-popup {
    display: block !important;
  }

  .hamburger {
    display: block;
  }

  .our-team {
    margin: 0;
    justify-content: space-between;
  }

  .our-team svg {
    width: 30px;
    height: 30px;
  }

  .team {
    position: fixed;
    transform: translateY(300px);
    padding: 20px 0 50px 0;
    flex-direction: column;
    width: 103%;
    gap: 20px;
    display: none;
    background-color: #141b28;
    max-height: 60vh;
    overflow: scroll;
    box-sizing: content-box;

  }

  .team-card {
    margin: auto;
    justify-content: center;
  }

  .team:hover {
    transform: translateY(300px);
  }

  .register-button {
    justify-content: center;
    flex-basis: 120px;
    margin-left: 25px;
  }

  .register-button p {
    text-align: start;
    width: 215px;
  }

  .register-button-t {
    width: auto !important;
  }

  .title-button {
    font-size: 10px;
  }

  .our-team:hover {
    filter: none;
  }

  .our-team:hover svg {
    transform: rotate(180deg);
  }
}