@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
*,
*:before,
*:after {
  margin: 0;
  font-size: 18px;

  font-family: "Nunito", "sans-serif";
  color: #42576a;
  box-sizing: border-box;
}
body {
  overflow: hidden;
  background: #f8fbfe;
  position: relative;
}
ul,
li {
  list-style-type: none;
  padding: 0;
}
a {
  text-decoration: none;
}

.container {
  width: min(94.29%, 1320px);
  margin: 0 auto;
}

.get-started-button {
  background: #63c4fa;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #ffffff;
  width: 161px;
  height: 54px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.get-started-button:hover {
  transform: scale(1.1);
}
.toggle-btn {
  display: none;
}
.footer-section {
  margin-top: 19px;
  background: #fbfbfb;
  margin-bottom: 23px;
}
.footer {
  display: flex;
  justify-content: space-between;
  padding: 25px 90px;
}
.footer-rights {
  color: #afbcc8;
}
.back-to-top {
  display: flex;
}
.back-to-top-icon {
  margin-left: 14px;
}
.menu-text.back{
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0px;
    justify-content: space-between;
    height: 46px;
    width: 46px;
    border: none;
    background: #ddf6ff;
    border-radius: 10px;
    cursor: pointer;
  }
  .toggle-line {
    width: 18px;
    height: 2px;
    background: #41576a;
    border: 1px solid #41576a;
    border-radius: 5px;
  }
  .container {
    width: 94.9%;
  }
  .back-to-top {
    display: none;
  }
  .footer {
    flex-direction: column;
    padding: 0;
    text-align: center;
  }
  .footer-text.menu-text {
    font-size: 14px;
  }
  .footer-rights.menu-text {
    font-size: 14px;
    margin-top: 16px;
  }
}
