@font-face {
    font-family: 'DINRoundPro';
    src: url('../fonts/DINRoundPro.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DINRoundPro';
    src: url('../fonts/DINRoundPro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'DINRoundPro';
    src: url('../fonts/DINRoundPro-Light.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'DINRoundPro';
    src: url('../fonts/DINRoundPro-Medi.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

* {
    background: 0 0;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.container {
    position: relative;
    max-width: 1080px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

header {
    position: relative;
    border-bottom: 2px solid #e5e5e5;
    padding: 10px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
}

.header-menu {
    display: flex;
    align-items: center;
    grid-gap: 30px;
    color: #777;
    text-transform: uppercase;
}

.header-menu > div {
    position: relative;
    z-index: 5;
}

.header-menu > a, .header-menu > div a {
    display: flex;
    align-items: center;
    padding: 20px 0;
    grid-gap: 10px;
    color: inherit;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}

.header-menu > a:after, .header-menu > div > a:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 10px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='10' viewBox='0 0 15 10' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M0.43934 0.93934C1.02513 0.353553 1.97487 0.353553 2.56066 0.93934L7.5 5.87868L12.4393 0.93934C13.0251 0.353553 13.9749 0.353553 14.5607 0.93934C15.1464 1.52513 15.1464 2.47487 14.5607 3.06066L8.56066 9.06066C7.97487 9.64645 7.02513 9.64645 6.43934 9.06066L0.43934 3.06066C-0.146447 2.47487 -0.146447 1.52513 0.43934 0.93934Z' fill='%23AFAFAF'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header-menu > div > div {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    min-width: 300px;
    font-size: 14px;
}

.header-menu > div > div:after {
    content: "";
    position: absolute;
    top: -5px;
    left: 20%;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 2px solid #e5e5e5;
    transform: rotate(45deg);
    z-index: -1;
}

.header-menu > div:hover div {
    visibility: visible;
    opacity: 1;
}

.header-menu > div > div > a {
    padding: 20px;
    width: 100%;
}

.header-menu > div > div > a:hover {
    background: #f7f7f7;
}

.header-menu + a, .header-menu + a + a {
    background: #fff;
    border: 2px solid #e5e5e5;
    box-shadow: 0px 3px 0px #e5e5e5;
    border-radius: 12px;
    color: #1cb0f6;
    text-decoration: none;
    padding: 8px 10px;
    font-size: 20px;
    font-weight: 600;
}

.header-menu + a + a {
    background: #58cc02;
    color: #fff;
    box-shadow: 0px 3px 0px #58a700;
    border-color: #58cc02;
    margin-left: -30px;
}

.sert {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    margin-top: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 48px;
}

.sert-top {
    display: flex;
    justify-content: space-between;
    grid-gap: 25px;
    padding: 24px 36px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin: -48px -48px 0;
}

.sert-top > span {
    font-size: 18px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    margin-right: auto;
}

.sert-top > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #1cb0f6;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.sert-top > a:hover {
    color: #0087d6;
}

.sert-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    color: #777;
}

.sert-usr {
    display: grid;
    grid-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-columns: 128px 1fr;
    align-items: center;
    border-top: 3px solid #e5e5e5;
    border-bottom: 3px solid #e5e5e5;
    padding: 30px 0;
    color: #4b4b4b;
    margin-bottom: 20px;
}

.sert-usr > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

.sert-usr_name {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sert-usr ul {
    display: grid;
    grid-gap: 10px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    color: #777;
}

.sert-usr ul li span {
    font-weight: 700;
    padding-right: 4px;
    font-size: 16px;
}

.sert-title {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #4b4b4b;
    margin-bottom: 16px;
}

.sert-score {
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: 250px 1fr;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    margin-bottom: 20px;
}

.sert-score_val {
    position: relative;
    padding: 10px;
    border-right: 2px solid #e5e5e5;
    overflow: hidden;
}

.sert-score_val > svg {
    width: 230px;
}

.sert-score > ul {
    list-style: none;
    color: #777;
    padding: 20px;
}

.sert-score > ul > span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #4b4b4b;
    margin-bottom: 15px;
}

.sert-score > ul li {
    position: relative;
    margin: 10px 0;
    padding-left: 35px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.sert-score > ul li:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 21px;
    height: 24px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='21' height='24' viewBox='0 0 21 24' fill='none'><circle cx='10.2031' cy='12' r='10' fill='%2358CC02'/><path d='M6.20312 11.8571L9.51347 14.5L14.2031 9.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sert-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 100px;
    list-style: none;
    color: #777;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    margin-bottom: 30px;
    padding: 30px;
}

.sert-sub li span {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #4b4b4b;
    text-align: center;
    margin-top: 10px;
}

.sert_copy {
    display: flex;
    gap: 4px;
    color: #777;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 30px;
}

.sert_copy > a {
    font-size: 16px;
    color: #1cb0f6;
}

footer {
    background: #58cc02;
    color: #fff;
    padding: 80px 186px 96px;
}

footer .container {
    display: grid;
    grid-gap: 50px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
}

.footer-menu {
}

.footer-menu > span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-menu > a {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    margin: 10px 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column: -1/1;
    border-top: 1px solid rgb(255 255 255 / 40%);
    padding-top: 30px;
}

.footer-bottom > a {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.footer-soc {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
