@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.img1 {
    width: 9%;
    height: 4.5%;
    margin-bottom: 1%;
}

.first {
    height: 15%;
}

.bank {
    color: black;
}

.firstpart {
    display: flex;
    justify-content: space-between;
    padding-top: 1%;
    padding-left: 10%;
    padding-right: 10%;
    background-color: #F5F5F6;
}

.navbar {
    display: flex;
    list-style-type: none;
    font-size: 92%;
    width: 140%;
    margin-left: -20%;
    margin-top: 4.5%;
    justify-content: space-between;
    color: #959BA4;
}

.button {
    background-color: white;
    color: black;
    border: transparent;
    font-weight: 600;
    width: 10%;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 1%;
    border-radius: 12%;
}

.button:hover {
    background-color: black;
    color: white;
}

.text {
    color: #9F9F9F;
}

.h1text {
    margin-top: 5%;
    margin-bottom: 3%;
    font-size: 300%;
}

.flexvalyuta {
    display: flex;
    gap: 10%;
}

.currencyflex {
    display: flex;
    width: 400px;
    height: 55px;
    justify-content: space-between;
    margin-top: 4%;
    margin-bottom: 4%;
}

.money {
    border: 1px solid #E5E5E5;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #C6C6C6;
    cursor: pointer;
    border-radius: 5%;
}

.money:hover {
    background-color: #85BB65;
    color: white;
}

.input {
    width: 100%;
    height: 100%;
    font-size: 200%;
    color: black;
    border: 1px solid #E5E5E5;
    padding-left: 3%;
    padding-right: 3%;
}

.mezenne {
    color: #C6C6C6;
    margin-top: 3%;
}

.second {
    margin-left: 16%;
}

.active {
    background-color: #85BB65;
    color: white;
}

@media (min-width:320px) and (max-width:820px) {
    .h1text {
        font-size: 150%;
    }

    .navbar {
        display: none;
    }

    .button {
        width: fit-content;
        margin-left: 48%;
        height: 30px;
        margin-top: 2.5%;
        margin-right: 9%;
    }

    .flexvalyuta {
        display: flex;
        flex-direction: column;
    }

    .currencyflex {
        width: 90%;
        height: 35px;
    }

    .second {
        margin-left: 9%;
    }

    .input {
        width: 90%;
        height: 100px;
    }

    .text {
        margin-top: 4%
    }

    .img1 {
        /* margin-top: 1.3%; */
        width: 90px;
        height: 52px;
        /* margin: 1%; */
    }

    .first {
        height: 10%;
    }

    .firstpart {
        padding-right: 0%;
        padding-top: 1%;
    }

    .mezenne {
        margin-bottom: 10%;
    }
}

@media (min-width:440px) and (max-width:820px) {
    .firstpart {
        padding-top: 0px;
    }

    .img1 {
        margin-top: 1%;
    }
}

;