#policy{
	height: 85vh;
    width: calc(85vh + 400px + 45px);
    margin: 0 auto;
    overflow-y: scroll;
    max-width: 100%;

    .policy{
    	margin-bottom: 40px;

    	&__title{
    		font-size: 22px;
    		font-weight: bold;
    		margin-bottom: 40px;

    		&--logo{
    			max-height: 60px;
    			margin-right: 20px;
    		}
    	}
    	&__topic{
    		font-weight: bold;
    	}
    	&__detail{
    		margin-bottom: 20px;
    		font-weight: 100;
    	}
    }
    .back{
    	padding: 0.5em 2em;
	    border-radius: 3px;
	    font-weight: bold;
	    font-size: 18px;
    }

    @media (max-width: 992px){
    	height: unset;
    	overflow: unset;
	    padding: 0 25px;

    	.policy{
    		&__title{
    			margin: 40px 0;
    		}
    		&__detail{
	    		font-size: 12px;
	    	}
    	}
    	.back{
    		display: block;
    		text-align: center;
    		margin-bottom: 40px;
    	}
    }
    @media (min-width: 400px) and (max-width: 992px){
    	max-width: 450px;
    }
}