@import url('https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap');

/*  scroll */

::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: #ccc;

}

::-webkit-scrollbar {
    width: 6px;
    background-color: #ccc;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #28327f;
}



body {
    font-family: "Kufam", sans-serif;
}

.page-wrapper {
    background-image: url(../images/bg.jpg);
    background-size: cover;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 0;
}

.page-wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #28327f 50%, #5870ae 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: .6;
}

.social_box {
    background-color: #ffffffb3;
    border-radius: 40px;
    margin-top: 200px;
    margin-bottom: 50px;
    text-align: center;
    padding: 25px 40px;
}

.social_box .image_logo {
    background-color: #fff;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
    top: -125px;
    box-shadow: 0px 10px 15px #58585873;
    margin-bottom: -90px;
}

.social_box .image_logo img {
    width: 100%;
    max-width: 125px;
}

.social_box h3 {
    color: #28327f;
}

.social_box p {
    font-weight: 500;
    margin-bottom: 50px;
}

.social_box h6 {
    font-weight: 600;
}

.social_box h6 a {
    color: #28327f;
    font-weight: bold;
    text-decoration: none;
    padding-right: 5px;
}

.social_box .box {
    background-color: #ffffff8f;
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0 3px 6px #5a5a5a5e;
    margin-bottom: 25px;
}

.social_box .box img {
    height: 23px;
    margin-left: 10px;
}

.social_box .box a {
    color: #212529;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
}

@media(max-width:600px) {
    .social_box {
        margin-top: 140px;
    }

    .social_box {
        padding: 25px 5px;
    }

    .social_box .image_logo {
        width: 170px;
        height: 170px;
        top: -100px;
        margin-bottom: -70px;
    }

    .social_box .image_logo img {
        max-width: 105px;
    }

    .social_box p {
        margin-bottom: 30px;
    }
}