/*----------DESIGN PAGE----------*/
@import url('https://fonts.googleapis.com/css2?family=Amaranth&display=swap');

body {
    background: linear-gradient(45deg, #FC466B, #3F5EFB) fixed;
    font-family: 'Amaranth', sans-serif;
    padding: 0px;
    margin: 0px;
    margin-top: 0px;
}

.box {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .3);
    box-sizing: border-box;
    padding: 15px;
    border-radius: 20px;
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, .2);
    align-items: center;
    color: white;
}

.btn {
    margin: 10px;
    background: rgba(255, 255, 255, .3);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    padding: 1rem;
    box-shadow: 4px 4px 60px rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.icon {
    width: 50px;
    height: 50px;
}

.bold {
    font-weight: bold;
}

/*----------NAV BAR----------*/
header {
    z-index: 99;
    background: rgba(255, 255, 255, .3);
    left: 0px;
    padding-left: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 99%;
    box-sizing: border-box;
    border-radius: 20px;
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, .2);
}

header a {
    color: white;
    text-decoration: none;
}

header h1 {
    font-size: 2em;
    font-weight: bold;
}

header img {
    width: 100px;
    cursor: pointer;
}

header ul {
    margin-right: 30px;
}

header  ul {
    display: flex;
    list-style: none;
}

header ul li {
    margin: 10px;
    background: rgba(255, 255, 255, .3);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    padding: 1rem;
    box-shadow: 4px 4px 60px rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

header ul li a.active {
    color: #FC466B;
    font-weight: 600;
}

header .menu-hamburger {
    position: absolute;
    top: 35px;
    right: 50px;
    width: 35px;
    display: none;
}

/*----FOOTER----*/
footer {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    margin: 10px;
    width: inherit;
}

footer .footer-left {
    display: flex;
}

footer .footer-left img {
    margin-right: 10px;
}

/*----MAIN----*/
.discoverCallibot {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 100px;
}

.discoverCallibot .box {
    width: 55%;
}

.discoverCallibot .box h2 {
    margin-bottom: 10px;
}

.discoverCallibot img {
    height: 150px;
    margin-right: 15px;
}

.keyFeatures {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.keyFeatures .box {
    margin-right: 15px;
    width: 300px;
    text-align: center;
}

.keyFeatures .box:last-child {
    margin-right: 0px;
}

.langage {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.langage .box {
    width: max-content;
}
.langage .box .flag {
    display: flex;
    justify-content: center;
    align-items: center;
}

.langage .box .flag img {
    margin-right: 25px;
}

.commands {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.commands a {
    width: max-content;
}

.ToS, .privacyPolicy {
    align-items: flex-start;
    width: 50%;
    margin-bottom: 9px;
}

.ToS h3, .privacyPolicy h3 {
    margin-bottom: -5px;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container h1 {
    color: white;
}

.cmd {
    height: calc(100vh - 270px);
}

.allCommands ul {
    list-style: none;
}

.noBottom {
    margin-bottom: 0px;
}

.lastUpdate {
    font-style: italic;
}