﻿/* CONTACTS WITH MEDIA MODULE */
.contacts-with-media {
    width: 100%;
    position: relative;
    padding-top: min(370px, calc((154 / 375) * 100vw));
    z-index: 1;
}

    .contacts-with-media .media-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        max-height: 671px;
        max-width: 671px;
    }

        .contacts-with-media .media-wrapper video {
            width: 100%;
            min-height: 375px;
            object-fit: cover;
        }

        .contacts-with-media .media-wrapper .sound-icon {
            position: absolute;
            bottom: 15px;
            left: 15px;
            width: 25px;
            height: 25px;
        }

            .contacts-with-media .media-wrapper .sound-icon svg {
                width: 100%;
                height: 100%;
                fill: none;
                stroke: white;
                stroke-width: 1px;
                cursor: pointer;
            }

            .contacts-with-media .media-wrapper .sound-icon:hover svg {
                fill: white;
            }

    .contacts-with-media .contacts-wrapper {
        width: 100%;
        min-height: 579px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        background-color: #c30000;
    }

        .contacts-with-media .contacts-wrapper .contacts-inner-wrapper {
            padding: 0 calc((14 / 375) * 100vw) 60px;
            font-family: 'Roboto', sans-serif !important;
            color: white !important;
        }

            .contacts-with-media .contacts-wrapper .contacts-inner-wrapper h2 {
                font-size: 36px;
                font-weight: 500;
                line-height: 42px;
                color: white;
                margin: 0;
                margin-bottom: 9px;
                padding: 0;
            }

            .contacts-with-media .contacts-wrapper .contacts-inner-wrapper .contacts-body-text {
                font-size: 20px;
                font-weight: 400;
                line-height: 26px;
                color: white;
                margin: 0;
                margin-bottom: 30px;
                padding: 0;
            }

                .contacts-with-media .contacts-wrapper .contacts-inner-wrapper .contacts-body-text a,
                .contacts-with-media .contacts-wrapper .contacts-inner-wrapper .contacts-body-text a:hover {
                    color: white;
                    font-weight: bold;
                }

            .contacts-with-media .contacts-wrapper .contacts-inner-wrapper .link a {
                font-size: 18px;
                font-weight: bold;
                line-height: 22px;
                color: white;
                margin: 0;
                padding: 0;
            }

                .contacts-with-media .contacts-wrapper .contacts-inner-wrapper .link a:hover {
                    text-decoration: none;
                }

            .contacts-with-media .contacts-wrapper .contacts-inner-wrapper .apps{
                display:flex;
                gap:30px;
            }

                .contacts-with-media .contacts-wrapper .contacts-inner-wrapper .apps img {
                    margin: 0;
                }

            /* END of CONTACTS WITH MEDIA MODULE */
            @media screen and (min-width: 1100px) {
                /* CONTACTS WITH MEDIA MODULE */
                .contacts-with-media {
        padding-top: 236px;
    }

        .contacts-with-media .media-wrapper video {
            min-height: 671px;
        }

        .contacts-with-media .contacts-wrapper {
            min-height: 435px;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
        }

            .contacts-with-media .contacts-wrapper .contacts-inner-wrapper {
                max-width: calc((516 / 1366) * 100vw);
                margin-left: clamp(680px, calc((715 / 1366) * 100vw), 715px);
                padding: 0;
            }
    /* END of CONTACTS WITH MEDIA MODULE */
}

@media screen and (min-width: 1366px){
    /* CONTACTS WITH MEDIA MODULE */

    .contacts-with-media .contacts-wrapper .contacts-inner-wrapper {
        margin-right: calc((135 / 1366) * 100vw);
    }
    /* END of CONTACTS WITH MEDIA MODULE */
}