html {
    background-color: #f3f4f6;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #17284b;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.main-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    width: 100%;
}

.wrapper {
    position: relative;
    height: 225px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* Prevent inline elements from wrapping */
    border: 0;
}

h1 {
    margin: 0;
}

.logo {
    max-width: 350px;
    /* min-width: 250px; */
    width: 250px;
}

@media (min-width: 768px) {
    .logo {
        width: 80vw;
    }
}

.logo svg {
    fill: #17284b;
}

.social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 30px);
    justify-content: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .social-links ul {
        grid-template-columns: repeat(3, 45px);
    }
}

.social-links ul li {
    display: grid;
    place-items: center;
}


@media (min-width: 768px) {
    .social-links {
        margin-top: 57px;
    }
}

.social-links::before {
    content: '';
    display: block;
    background-color: #dddfe5;
    width: 196px;
    height: 3px;
    margin: 20px auto 30px;
    border: 0;
}

@media (min-width: 768px) {
    .social-links::before {
        margin: 40px auto 60px;
    }
}

.social-links ul li a {
    width: 35px;
    height: 35px;
    border: 1px solid #f22c57;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.2s ease-in-out;
}

@media (min-width: 768px) {
    .social-links ul li a {
        width: 45px;
        height: 45px;
    }
}

.social-links ul li a:hover {
    background-color: #f22c57;
}

.social-links ul li a:hover svg {
    fill: #fff;
}

.social-links svg {
    width: 15px;
    height: 15px;
    fill: #f22c57;
    transition: all 0.2s ease-in-out;
}

@media (min-width: 768px) {
    .social-links svg {
        width: 20px;
        height: 20px;
    }
}


.decoration-line-1 {
    position: absolute;
    width: 534px;
    height: 534px;
    top: -251%;
    left: -212%;
}

@media (min-width: 768px) {
    .decoration-line-1 {
        top: -251%;
        left: -150%;
    }
}


.decoration-line-2 {
    position: absolute;
    width: 534px;
    height: 534px;
    top: 110%;
    left: 82%;
}

.decoration-stamp {
    position: absolute;
    top: 30%;
    transform: translateY(-50%) scale(0.6);
    left: 80%;
}

.decoration-stamp svg {
    width: 850px;
    height: 850px;
}



.decoration-circle {
    position: absolute;
    top: -20%;
    left: calc(50% - 480px);
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
}



.decoration-dot-circle {
    position: absolute;
    bottom: -30px;
    right: -80px;
    width: 60vw;
    height: 200px;
    max-width: 400px;
    
}

@media (min-width: 768px) {
    .decoration-circle {
        position: absolute;
        bottom: -10%;
        right: -5%;
        width: 20vw;
        height: 200px;
        max-width: 400px;
    }
}


.deco-top img,
.deco-bottom img {
    width: 100%;
    height: 100%;
}
 
.deco-top {
    position: absolute;
    top: 0;
    left: 70%;
    
}


.deco-bottom {
    position: absolute;
    left: 0;
    bottom: -5%;
    max-width: 550px;
    width: 80vw;
}

@media (min-width: 768px) {
    .deco-bottom {
        width: 50vw;
    }
}





