@font-face {
    font-family: Calibri;
    src: url('/fonts/calibri.ttf');
}

html,
body {
    position: relative;
    height: 100%;
    background: #e8e8e8;
    font-family: Calibri, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #e8e8e8 inset;
  }

div {
    box-sizing: border-box;
}

hr {
    margin: 0;
    height: 3px;
    background-color: #fff;
    border: none;
    margin: 28px 0;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1020px;
    padding: 50px;
    margin: auto;
    text-align: center;
}

.logo {
    width: auto;
    max-width: 355px;
    margin: 0 auto 170px;
}

.swiper-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 140px;
}

.swiper {
    /* background: grey; */
    width: 825px;
    height: 100%;

}

.swiper-wrapper{
    max-height: 70px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    /* width: 150px !important; */
    /* flex-shrink: 100 !important;
    width: fit-content !important; */

}

.swiper-slide img{
    max-height: 100%;
    max-width: 110px;
}

.swiper-next,
.swiper-prev {
    margin-top: auto;
    color: #dc1d44;
    font-weight: 1000;
    margin: auto 0;
    height: 50px;
    min-width: 60px;
}


.swiper-prev {
    background: url('/img/swiper-controls/left-arrow.svg') no-repeat left center;
    cursor: pointer;
}

.swiper-next {
    background: url('/img/swiper-controls/right-arrow.svg') no-repeat right center;
    cursor: pointer;
}

.swiper-button-disabled {
    opacity: 0.5;
}

.contacts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    height: 90px;
}

.contact-btn {
    padding: 0;
    margin: auto 0;
    background: url('/img/svg-text/contact-us-text.svg') no-repeat center center;
    background-size: 80%;
    background-color: #dc1d44;
    border: none;
    width: 100%;
    max-width: 300px;
    height: 55px;
}


.vl {
    width: 3px;
    height: 90px;
    background: #fff;
    padding: 0;
}

.social-links {
    margin: auto 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;

}

.social-links div {
    width: 30px;
    height: 30px;
}

.facebook {
    background: url('/img/social-icons/facebook-icon.svg') no-repeat center center;
}

.twitter {
    background: url('/img/social-icons/twitter-icon.svg') no-repeat center center;
}

.linkedin {
    background: url('/img/social-icons/linkedin-icon.svg') no-repeat center center;
}

.instagram {
    background: url('/img/social-icons/instagram-icon.svg') no-repeat center center;
}

.logo-contact-page {
    margin-bottom: 95px;
}

.contact-form {
    margin: auto;
}

.row-wraper {
    display: flex;
    gap: 10px;
}

.column-wraper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 710px;
    margin: 0 auto 70px;
}


input,
textarea {
    border: none;
    height: 100%;
    width: 100%;
    background: none;
}

.input-placeholder {
    position: relative;
    height: 55px;
    width: 100%;
    border: 1px solid #000;
}

.input-placeholder input,
.input-placeholder textarea {
    font-family: calibri, serif;
    box-sizing: border-box;
    padding: 0 0 0 10px;
    font-size: 16px;
    font-weight: 500;
}

.input-placeholder textarea {
    resize: none;
    padding-top: 10px;
}

.input-placeholder input:valid+.placeholder,
.input-placeholder textarea:valid+.placeholder,
.input-placeholder input:focus+.placeholder,
.input-placeholder textarea:focus+.placeholder {
    display: none;
}


.placeholder {
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 0;
    height: 20px;
    font-size: 16px;
    font-weight: 500;
    left: 10px;
    margin: auto;
    color: #131111;
}

.form-message .placeholder{
    margin: 10px auto;
}

.placeholder span {
    color: red;
}

.form-message {
    height: 160px;
}

.send-btn {
    width: 100%;
    max-width: 710px;
    height: 55px;
    border: none;
    background-color: #dc1d44;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    margin: auto;
}




@media (max-width: 815px),
(max-height: 796px) {

    .logo {
        margin-bottom: 80px;
    }

    hr {
        margin: 15px 0;
    }

    .swiper-container {
        margin-bottom: 80px;
    }

    .contacts {
        flex-direction: column;
        height: auto;
    }

    .contact-btn {
        margin: auto;
    }

    .vl {
        height: 3px;
        width: auto;
    }

    .social-links {
        width: 190px;
        margin: auto;
    }

    .logo-contact-page {
        margin-bottom: 50px;
    }

    .row-wraper {
        flex-direction: column;
    }

    .column-wraper{
        margin-bottom: 30px;
    }
        
}