/* HOME SECTION */

.logo-container {
    width: fit-content;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 100px;
}

.logo-container img {
    width: 150px;
}

.logo-label {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    padding: 10px 0;
}

#main-vid-container {
    width: 100%;
    height: 100%;
    transform: skewY(45deg);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}

.main-vid {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#vid-1 {
    object-fit: cover;
    width: 100%;
    transform: skewY(-45deg);
    height: 100%;
}

.content #home {
    height: 100vh;
}

.home {
    text-align: center;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(../images/main-bg.jpg);
    background-size: cover;
}

.indicator-container {
    position: absolute;
    bottom: 0;
    padding-bottom: 50px;
    width: 100%;
}

.indicator-text {
    background: transparent;
    color: #fff;
    font-size: 24px;
    line-height: 1.1764805882;
    font-weight: 400;
    letter-spacing: -0.022em;
    padding: 12px 22px;
}

.indicator-icon {
    width: 1em;
    height: 1em;
    background-color: transparent;
    z-index: 80;
    position: absolute;
    border-width: 0 0.25em 0.25em 0;
    border-style: solid;
    border-color: antiquewhite;
    left: 50%;
    transform: translateY(0%) rotate(45deg);
    opacity: 0;
}

.indicator-icon-1 {
    bottom: 25px;
    animation: scrolldown 1.2s ease-in-out infinite 0.15s;
}

.indicator-icon-2 {
    bottom: 40px;
    animation: scrolldown 1.2s ease-in-out infinite;
}

@keyframes scrolldown {
    0% {
        transform: translateY(20%) rotate(45deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(0%) rotate(45deg);
        opacity: 0.2;
    }

    100% {
        transform: translateY(20%) rotate(45deg);
        opacity: 0.7;
    }
}

/* ABOUT SECTION */

.story img {
    width: 100%;
    height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.ds-textbox {
    /* box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14); */
    height: fit-content;
    overflow: hidden;
}

.ds-textbox.card {
    border: none;
}

/* .ds-story .ds-textbox {
    height: fit-content;
    margin-left: -20%;
    margin-top: 200px;
}

.ds-story .flex-row-reverse .ds-textbox {
    margin-right: -20%;
    margin-left: 0;
} */

.ds-textbox__body {
    padding: 0.75rem 1.5625rem 1.5625rem;
}

.ds-textbox.ds-textbox--simple .ds-textbox__body {
    padding: 0 1.5625rem 2.5rem;
}

.ds-textbox__title {
    color: #000;
    font-size: 2rem;
}

.ds-textbox__text {
    font-size: .875rem;
    line-height: 1.25rem;
    text-align: justify;
}

.story .gallery-container {
    width: 100%;
    height: 600px;
}

.story .gallery-cell {
    height: 600px;
    width: 100%;
}

/* SERVICES SECTION */

.service-container {
    padding: 0;
    margin-bottom: 20px;
}

.service-image-container {
    width: 90%;
    height: 250px;
    margin: 0 auto;
    overflow: hidden;
}

.service-image-container img {
    height: 100%;
}

.service-caption {
    width: 100%;
    text-align: center;
    font-size: 24px;
    padding-top: 10px;
    color: #000;
}

/* TEAM SECTION */

.director {
    width: 70%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
}

.manager {
    width: 70%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.director img, .manager img {
    width: 100%;
}

.team-info {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.name {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.position {
    color: #FFF;
    font-size: 16px;
}

.email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* CLIENTS SECTION */

.clients-container {
    width: 100%;
    height: fit-content;
    padding: 25px 0;
    margin: 0;
    display: flex;
}

.clients-container li {
    list-style: none;
    padding: 20px 50px;
}

.clients-container img {
    width: 200px;
}

/* CONTACT SECTION */

.section.contact {
    width: 100%;
    background-image: url('../images/contact.JPG');
    background-size: cover;
    background-position-x: center;
}

.contact-info-container {
    width: 50%;
    height: fit-content;
    background-color: rgba(0, 0, 0, 0.8);
}

.contact-info-text {
    padding: 50px;
    opacity: 1;
}

.section.contact .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
}

table .contact-info {
    width: 70%;
}

.section.contact .field {
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding: 5px 20px;
    width: 150px;
}

.section.contact .data {
    font-size: 15px;
    padding: 5px 20px;
    width: 350px;
    text-align: left;
}

.map-link {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    color: #2C3393;
}

.map-link a {
    text-decoration: none;
}

.map-link:hover a {
    color: #EC1B23;
}