* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size: 17px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 16px;
    }
}


/* SLIDER */
.swiper-homepage img {
    width: 100%;
    max-height: 100dvh;
    aspect-ratio: 1900 / 1000;
}

/* LAYOUT, PAGES */
.container {
    width: 1180px;
    margin: 35px auto;
    position: relative;
    max-width: 100%;
    padding: 0 20px;
}

.container.two-col,
.container.three-col,
.container.four-col {
    display: grid;
    gap: 20px;
}

.container.vcentered {
    align-items: center;
}

.inside-article {
    padding: 0 !important;
}

.container.two-col {
    grid-template-columns: 1fr 1fr;
}

.container.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.container.four-col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 767px) {
    .container.four-col,
    .container.two-col,
    .container.three-col {
       grid-template-columns: 100%;
    }

    .subfooter .wintechButton.light {
        float: left;
    }

    .about-us.container .column.with-text {
        order: -1;
        padding: 50px 0 !important;
    }
}

.about-us.container {
    margin: 0 auto;
    gap: 0;
    align-items: stretch;
}

.about-us.container img {
    display: block;
    aspect-ratio: 16 / 9;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-us.container .column.with-text {
    padding: 50px;
}

.wintechHeading {
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    display: block;
}

.o-nas .wintechHeading {
    margin-bottom: 40px;
}

.wintechMediumHeading {
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
}

.wintechButton {
    color: #333;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    display: table;
    position: relative;
    margin: 50px auto 0;
    padding: 15px 30px;
    border: 1px #9e9e9e solid;
    cursor: pointer;
    z-index: 1;
    text-decoration: none;
}

.wintechButton.light {
    color: #fff;
    float: right;
    margin: 10px auto;
}

.wintechButton:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #37474f;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.wintechButton.light:before {
    background: #fff;
}

.wintechButton:hover {
    color: #fff;
    text-decoration: none;
}

.wintechButton.light:hover {
    color: #333;
}

.wintechButton:hover:before {
    background: #030304;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.wintechButton.light:hover:before {
    background: #fff;
}

.squareContainer {
    padding: 20px;
}

.smallSquare {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    box-shadow: 0px 0px 3px #002e52;
}

.bigSquare {
    width: 500px;
    height: 500px;
    margin: 0 auto;
    box-shadow: 0px 0px 3px #002e52;
}

.blend {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute
}

.separator {
    background: url(../images/separator2.png);
    width: 48px;
    height: 9px;
    margin: 0 auto 50px;
}

/* KATALOG */
.mac_mockup {
    margin: 40px auto;
    position: relative;
    width: 75%;
    background: var(--mockup-url);
    background-size: contain;
    background-repeat: no-repeat;
}
.mac_mockup > div {
    position: absolute;
    width: 746px;
    height: 443px;
    overflow: hidden;
    left: 84px;
    top: 49px;
}
.mac_mockup > div img {
    display: block;
    width: 100%;
    margin-top: 0;
}
