*{
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background: #FBFBFB;  
    margin: 0;
}

a {
    color: #000;
    text-decoration: none;
    margin: 0;
}

p,
ul,
h1, h2, h3, h4, h5, h6{
    margin: 0;
}

ul{
    padding: 0;
}

ul li {
    list-style: none;
}

.container {
    max-width: 375px;
    margin: 0 auto;
    padding: 0px 30px;
}

.banner{
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
    height: 566px;
    position: relative;
    background-image: url('img/daniel.webp') ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 43px;
    padding-bottom: 46px;
    margin-bottom: 40px;
}

.banner::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(50px);
}

.banner_inner{
    width: 100%;
    height: 477px;
    position: relative;
    z-index: 10;
}

.banner_inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}


.content h1{
    font-size: 50px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: -0.06em;
    text-align: left;
    margin-bottom: 40px;
}

.content p{
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: -0.03em;
    text-align: left;
    margin-bottom: 50px;
}

.content_inner > a{
    padding: 29px;
    border-radius: 8px;
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 19.8px;
    letter-spacing: -0.06em;
    text-align: center;
    margin-bottom: 13px;
    color: #36302D;
    transition: all 0.3s ease;
    box-shadow: 0px 24px 34px -10px #3726111A;
}

.content_inner > a:hover{
    background-color: #F7F7F7;
    color: #36302D;
    transition: all 0.3s ease;
}

.content_inner > a:last-of-type{
    margin-bottom: 0px;
}

.content_inner > a.special_button{
    background: linear-gradient(93.19deg, #E0686A -0.81%, #A34142 100%);
    color: #FFFFFF;
    background-size:1px 200px;  
    transition: all 0.3s ease;
}

.content_inner > a.special_button:hover{
    background-position:300px;  
    transition: all 0.3s ease;
}

.social_icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-bottom: 49px;
    margin-top: 40px;
}

.social_icons a{
    padding: 15px;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: #F1EDED;
    margin: 0;
    transition: all 0.3s ease;
}

.social_icons a:hover{
    transition: all 0.3s ease;
    background-color: #E7E7E7;
}

.social_icons a svg{
    max-width: 21px;
    max-height: 21px;
}

.footer_inner{
    padding-top: 49px;
    border-top: 1px solid #1D1D1D1A;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_inner p{
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.04em;
    text-align: center;
    color: #1d1d1d3d;
}   

@media only screen and (max-width: 768px) {
    .content_inner > a:hover{
        background: #fff;
        color: #36302D;
    }

    .social_icons a:hover{
        background-color: #F1EDED;
    }
}

@media only screen and (max-width: 450px){
    .banner{
        max-width: unset;
    }
}


