@import url(/fonts/fonts.css);

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

:focus {
    outline: none;
}

.wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.content{
    width: 100%;
    border:1px solid pink;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap:160px;


}
@media(max-width:1000px){
.content {
    padding: 0 20px;
}
}
@media(max-width:700px){
.content {
    padding: 0 10px;
}
}
.section-wrapper{
    width: 100%;
    /*height: 1060px;*/
    /*border:1px solid blue;*/
    position: relative;
    gap:44px;
    display: flex;
    flex-direction: column;

}


.section-wrapper__header {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    padding-top: 130px;
    gap: 0px; 
}
.img-block-header{
    display: flex;
    justify-content: center;
    align-items:center;
    width: 74px;
    height: 67px;
}
.img-block-header img{
    width: 100%;
    height: 100%;
}
@media(max-width:1024px){
    .img-block-header{
        display: flex;
        justify-content: center;
        align-items:center;
        width: 54px;
        height: 47px;
    }
    
}
@media(max-width:768px){
    .section-wrapper__header {
        padding-top: 0px;
    }
}




.site-btn{
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.01px;
    padding: 20px 50px;
    width: 247px;
    height: 55px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 25px;
    background-image: linear-gradient(20deg, #ed1b23 0%, #b31117 100%);
    transition: all 0.6s ease;
}
.btn-s{
    width: 247px;
    height: 55px;
    border-radius: 25px;
    font-size: 12px;
    color: #ffffff;
    font-family: "Verdana";
    text-align: center;
    transition: all 0.6s ease;
    
}
.btn-s:hover{
    transform: translateY(-3px);
    filter: drop-shadow(0px 7px 10.5px rgba(0,0,0,0.35));
}


.btn-group{
    display: block;
    position: relative;
}
.group-img{
    display:block;
    position: absolute;
    bottom:-28px;
    left:40%
}