@font-face {
    font-family: 'Product Sans';
    src: url('./fonts/product-sans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
  }

body {
    font-family: 'Product Sans';
    font-weight: 400;
    color: white;
}

button {
    cursor: pointer;
}

.top {
    width: 100%;
    height: 100%;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.726);
    background-image: url("./images/background.png");
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.top > .top-content {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

nav {
    padding: 25px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    justify-content: space-between;
    display: flex;
    align-items: center;
    transition: backdrop-filter 0.3s;
}

nav.scrolled {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid;
    border-color: rgb(29, 29, 29);
}

.nav-links {
    height: 100%;
}

.nav-links ul {
    display: flex;
    gap: 15px;
}

.nav-links li {
    list-style: none;
    transition: all 0.2s;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: rgb(190, 190, 190);
}

.title {
    /*position: relative;*/
    font-size: 48px;
    display: flex;
}

.title > .small-title {
    /*position: absolute;*/
    color: rgb(255, 77, 77);
    font-size: 25px;
    /*top: 0;*/
}

.top-content > .text {
    font-size: 20px;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgb(255, 77, 77);
    font-size: 13px;
    font-weight:600;
    margin: 10px;
    padding: 10px 20px;
    color: white;
    border-radius: 25px;
    border: none;
    transition: 0.3s;
}

.download-button:hover {
    color: rgb(221, 221, 221);
    background-color: rgb(194, 60, 60);
}

.download-tp-button {
    background-color: rgb(0, 172, 149);
    font-size: 13px;
    font-weight: 500;
    margin: 10px;
    padding: 10px 20px;
    color: white;
    border-radius: 25px;
    border: none;
    transition: 0.3s;
}

.download-tp-button:hover {
    color: rgb(221, 221, 221);
    background-color: rgb(0, 133, 115);
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: rgb(39, 39, 39);
}

#faq {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-text {
    display: none;
    padding: 20px;
    color: rgb(167, 167, 167);
}

.faq-panel {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items:start;
    padding: 15px;
    gap: 5px;
    border-bottom: 1px solid rgb(87, 87, 87);
}

.faq-button {
    width: 100%;
    background-color: transparent;
    text-align: left;
    border: none;
    color: rgb(212, 212, 212);;
    font-size: 20px;
}

.footer {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    background-color: rgb(35, 35, 35);
    color: rgba(98, 98, 98, 1);
}

.footer > .left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer > .left > .title {
    font-size: 32px;
}

.footer > .left > .text {
    width: 205px;
    height: 57px;
}

.footer .links {
    display: flex;
    gap: 15px;
}

.footer .links > .link {
    display: flex;
}

.footer .links > .link img {
    width: 30px;
}

::-webkit-scrollbar {
    width: 7px;
}
  
::-webkit-scrollbar-track {
    background: rgb(39, 39, 39);
}
   
::-webkit-scrollbar-thumb {
    background: rgb(17, 17, 17);
    border-radius: 10px;
}
  
::-webkit-scrollbar-thumb:hover {
    background: rgb(13, 13, 13); 
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
  
    to {
        opacity: 1;
    }
}