@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/gothampro.ttf');
    src: local('Gotham Pro'), local('Gotham Pro'),
        url('../fonts/gothampro.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --color-grey: #F6F6F6;
    --color-white: #ffffff;
    --color-violet: #5B41F5;
    --color-violet-hover: #876fff;
    --color-dark-grey: #3E3E3D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--color-grey);
    min-width: 390px;
}

.main__container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 390px;
    margin: 0 auto;
    padding: 32px 10px;
}

.header__container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 40px;
}

.header__logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 68px;
}

.logo {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.header__title-block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 16px;
    width: 100%;
    padding-top: 2px;
}

.header__title {
    font-family: Roboto;
    font-size: 33.93px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: -0.01em;
    text-align: left;
}

.header__subtitle {
    font-family: Roboto;
    font-size: 22.62px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: -0.01em;
    text-align: left;
}

.visa-select__list {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 15px;
    gap: 16px;
}

.visa-select__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px;
    padding: 8px 24px;
    border-radius: 10px;
    background: var(--color-violet);
    border: none;
    box-shadow: 0px 0px 5px 0px #0000001A;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    text-decoration: none;
}

.visa-select__btn:hover,
.visa-select__btn:active {
    background: var(--color-violet-hover);
}

.visa-select__btn-text {
    color: var(--color-white);
    font-family: 'Gotham Pro', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: -0.025em;
    text-align: center;
}

.notice__policy {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 400;
    line-height: 16.77px;
    letter-spacing: -0.01em;
    text-align: left;
    color: var(--color-dark-grey);
    margin-top: 32px;
    padding: 0 15px;
}
