@font-face {
    font-family: 'Assistant';
    src: url('../font/Assistant.ttf') format("truetype");
    font-weight: normal;
}

html,
body,
ul,
ul li {
    font-family: 'Assistant', sans-serif;
    margin: 0;
    padding: 0;
    color: #002e59;
}

h1 {
    font-size: 58px;
}

.mb {
    margin-bottom: 30px;
}

.logo {
    max-width: 200px;
}

.d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.item_form {
    margin-bottom: 20px;
}

.item_form a {
    display: flex;
    align-items: center;
    border: 1px solid #002e59;
    padding: 40px 30px 40px 30px;
    /* transition: all 0.3s ease-out; */
    color: #002e59;
    height: 100%;
    text-decoration: none;
}

svg,
svg g {
    fill: #002e59;
    transition: fill 0.3s ease-out;
}

.item_form a:hover p {
    color: #1f5e8c;
    transition: all 0.3s ease-out;
}

.item_form a:hover {
    border: 1px solid #1f5e8c;
    transition: all 0.3s ease-out;
}

.item_form a:hover svg,
.item_form a:hover svg g {
    fill: #1f5e8c;
    transition: fill 0.3s ease-out;
}

.img_form {
    margin-left: 30px;
}

.img_form svg {
    width: 70px;
    height: auto;
}

.name_form {
    font-size: 24px;
    line-height: inherit;
}

@media screen and (max-width: 560px) {
    .item_form a {
        padding: 20px 10px 20px 10px;
    }

    .name_form {
        font-size: 22px;
    }

    .d-flex {
        flex-direction: column-reverse;
    }

    h1 {
        font-size: 48px;
        margin: 20px 0 0;
    }

    .logo {
        margin-top: 30px;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    h1 {
        font-size: 56px;
        margin-bottom: 0px;
        margin-top: 20px;
    }

    .img_form {
        margin-left: 0;
        margin-bottom: 0;
    }

    .item_form a {
        flex-direction: column;
    }

    .name_form {
        font-size: 22px;
        text-align: center;
    }

    .item_form a {
        padding: 15px;
    }
}