﻿@media (min-width: 768px) {
    .company-profile-container {
        width: 768px;
    }
}

@media (min-width: 1000px) {
    .company-profile-container {
        width: 1000px;
    }
}

body {
    background: url("/images/web-pictures/landing-page.jpg");
    background-size: cover;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.company-profile-container {
    position: relative;
    height: auto;
    padding-top: 56.2500%;
    padding-bottom: 0;
    box-shadow: 0 2px 8px 0 rgba(63,69,81,0.16);
    margin-top: 26.6em;
    margin-bottom: 0.9em;
    overflow: hidden;
    border-radius: 8px;
    width: 140vh;
    will-change: transform;
}
.company-profile-iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    padding: 0;
    margin: 0;
}
