@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    padding: 0px;
    margin: 0px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    height: 100%;
    color: #656565;
    background: #F7F7F7;
}

img, form {
    padding: 0px;
    margin: 0px;
}
a {
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #656565;
    text-decoration: none;
}
.link_style {
    font-size:14px;
    color: #111D28;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}
* {
    box-sizing: border-box;
}

h1, h2, h3 {
    color: #000;
    margin:0px;
    padding:0px;
}
.page {
    width:100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.container {
    width:100%;
    max-width:1240px;
    margin:0px auto;
    padding:0px 15px;
}
.page-header {
    padding-top:50px;
}
.page-body {

}
.page-footer {
    margin-top: auto;
    background: #404A4D;
    color: #fff;
    padding: 30px 0px;
}
.logo {
    color:#f17000;
    font-weight: 700;
    font-size: 50px;
    display: flex;
    align-items: center;
}
.logo span {
    color:#404A4D;
}
.box_cont {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding-top: 15px;
}
.box_cont .box {
    display: flex;
    flex-direction: column;
    width: 300px;
    background: #fff;
    box-shadow: 0px 1px 1px rgba(113, 112, 118, 0.2), 0px 0px 4px rgba(0, 0, 0, 0.06), 0px 0px 0px #758892;
    border-radius: 2px;
}
.box_cont .box:hover .descr {
    color: #000000;
}

.box_cont .box .title {
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #E3E3E3;
    padding:15px;
    color: #f17000;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
}
.box_cont .box .descr {
    padding: 30px 15px;
    padding-top: 15px;
    text-align: center;
}
.box_cont .box .buttons {
    padding:30px;
    margin-top: auto;
}



