.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 500;
/*    background: linear-gradient(180deg, rgba(0,86,152,1) 31%, rgba(0,86,152,0.05) 100%);*/
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 120px;
    opacity: 0;
}
.header_sns_box {
    display: flex;
    column-gap: 20px;
}
.header_sns_box_item {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background-color .3s;
}
.header_sns_box_item:hover {
    background-color: #000;
}
.insta_icon {
	width: 47%;
}
.youtube_icon{
	width: 51%;
}

.x_icon {
	width: 39%;
}
.header.active {
    animation: blur_animation 1s ease 3.2s forwards;
}
@media (max-width: 767px) {
    .header_sns_box {
        display: none;
    }
}