.main {
    background: #f5e6c5;
    padding: 20px 10vw;

    display: flex;

    .img_container {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: calc(100% - 10%) center;
        position: relative;
        min-height: 100%;
        width: 45%;
        justify-content: end;
        overflow: hidden;

    }


    .policy_details {
        background: white;
        width: 100%;
        padding: 5%;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        h0 {
            margin-top: 0;
        }

    }

    .details_container {
        display: flex;
        flex-direction: column;

        display: flex;
        flex-direction: column;
    }
}

.contact {
    background: #e8e6e6;
    padding: 20px 10vw;
    display: flex;


    .contact_container {
        padding: 30px 20%;
        background: #fff;
        width: 100%;

        display: flex;
        flex-wrap: wrap;
        align-items: end;

        p {
            width: 80%;
        }

        >* {
            margin: 20px;
        }

        :nth-child(2) {
            a {
                text-decoration: underline;
                transition: 150ms ease-in-out;
            }

            a:hover {
                cursor: pointer;
                color: #dc5059;
            }
        }

    }


}