@import "../fonts/stylesheet.css";
html {
    font-size: 24px;
}
body {
    background: #fcfcfc;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: url(../img/bg.png) no-repeat center top;
    font: 24px/1.4 "SF Pro Display", sans-serif;
    color: #2f2e2d;
}

html, body {
    overflow-x: hidden;
}

a, button {
    outline: none!important;
}

body.no-bg {
    background: white;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }
}

.wrap {
    flex: 1;
}

.logo__img {
    width: 323px;
}

.site-nav {
    padding: 130px 0;
}

.site-nav__container {
    display: flex;
    align-items: center;
    position: relative;
}

.main-menu {
    display: flex;
    list-style: none;
    flex: 1;
    justify-content: space-between;
    margin: 0;
    margin-left: 150px;
}

a.main-menu__link {
    color: #2f2e2d;
    text-decoration: none;
    position: relative;
    transition: all .35s ease;
    font-weight: 500;
}

a.main-menu__link:after  {
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    bottom: -8px;
    height: 2px;
    background-color: #9ebe41;
    opacity: 0;
    width: 0;
    transition: all .35s ease;
}

.main-menu__item:hover a.main-menu__link {
    color: #9ebe41;
}

.main-menu__item:hover a.main-menu__link:after  {
    opacity: 1;
    width: 100%;
    left: 0;
    right: auto;
}

.main-menu__item.active a.main-menu__link {
    color: #e93b81;
}

.main-menu__item.active a.main-menu__link:after  {
    background-color: #e93b81;
}

.lang-switcher {
    position: absolute;
    right: 53px;
    top: -55px;
    display: flex;
    margin: 0;
    list-style: none;
}

a.lang-switcher__link {
    padding: 7px;
    font-weight: bold;
    color: #2f2e2d;
    text-decoration: none;
    transition: .15s ease;
}

.lang-switcher__item span {
    padding: 7px;
    font-weight: bold;
    color: #2f2e2d;
    text-decoration: none;
    transition: .15s ease;
}

.lang-switcher__item:hover a.lang-switcher__link {
    color: #e93b81;
}

.lang-switcher__item span {
    color: #9ebe41;
}

@media (max-width: 1770px) {
    body {
        font-size: 18px;
    }
    .main-menu {
        margin-left: 60px;
    }

    .site-nav {
        padding: 50px 0;
    }

    .lang-switcher {
        top: -15px;
        right: 80px;
    }

    .logo__img {
        width: 253px;
    }

    .container {
        max-width: 1600px;
        padding: 0 90px;
    }
}

.slider1__slide {
    height: 734px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider1__heading {
    display: table;
    font-weight: 600;
    font-size: 70px;
    background: linear-gradient(140deg, #f7276b 20%, #9ebe41 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
}

a.slider1__link {
    display: inline-block;
    color: #4b4b4b;
    font-size: 25px;
    font-weight: 400;
    text-decoration: underline;
    margin-top: 40px;
}


.slider__prev, .slider__next {
    position: absolute;
    top: calc(50% - 33px);
    z-index: 5;
    transition: .15s ease;
}

.slider__prev {
    left: 70px;
}

.slider__next {
    right: 70px;
}

.slider__prev:hover {
    transform: translateX(-2px);
}

.slider__next:hover {
    transform: translateX(2px);
}

.slider__prev:active {
    transform: translateX(-4px);
}

.slider__next:active {
    transform: translateX(4px);
}

@media (max-width: 1770px) {
    .slider__prev, .slider__next {
        transform: scale(.7)
    }

    .slider__prev {
        left: 7px;
    }

    .slider__next {
        right: 7px;
    }

    .slider__prev:hover {
        transform: translateX(-2px) scale(.7);
    }

    .slider__next:hover {
        transform: translateX(2px) scale(.7);
    }

    .slider__prev:active {
        transform: translateX(-4px) scale(.7);
    }

    .slider__next:active {
        transform: translateX(4px) scale(.7);
    }
}

.home-heading {
    display: table;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    padding-bottom: 16px;
    padding-top: 128px;
    border-bottom: 5px solid #f7276b;
    margin-bottom: 55px;
}

.home-heading--secondary {
    border-color: #9ebe41;
    padding-top: 64px;
}


.slider2-image__img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: .3s ease;
}

.slider2-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 30px;
    height: 300px;
}

.slider__prev.slider2__prev, .slider__next.slider2__next {
    top: 370px;
}

.slider2-date {
    padding: 40px 0;
    background: url(../img/icon_clock.png) no-repeat left center;
    background-size: 18px 18px;
    padding-left: 28px;
    font-weight: 400;
    color: #4d4d4d;
}

a.slider2__slide-content {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #4d4d4d;
}

.slider2-title {
    color: #4d4d4d;
    text-decoration: underline;
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 24px;
}

a.slider2__slide-content:hover .slider2-image__img {
    transform: scale(1.1);
}

a.slider2__slide-content:hover .slider2-title {
    color: #f7276b;
}

.partners {
    display: flex;
    flex-wrap: wrap;
    margin-left: -60px;
    margin-right: -60px;
    align-items: center;
    justify-content: center;
}

.partner-item {
    justify-self: center;
    padding: 60px;
    width: calc(100% / 5);
    text-align: center;
}

.partner-item__image {
    width: 100%;
    max-width: 200px;
}

@media (max-width: 1365px) {
    .partner-item {
        width: calc(100% / 3);
    }
}

@media (max-width: 767px) {
    .partners {
        margin-left: -30px;
        margin-right: -30px;
    }

    .partner-item {
        width: calc(100% / 2);
        padding: 30px;
    }
}

@media (max-width: 991px) {


    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .slider__prev {
        display: none;
    }

    .slider__next {
        display: none;
    }
}

.home-partners {
    background: white;
}

.home-news {
    margin-bottom: 35px;
}

.site-footer {
    background: #fcfcfc;
    padding: 40px 0;
    margin-top: 100px;
}

.site-footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer a {
    color: #2f2e2d;
    text-decoration: none;
}

.footer-col {
    padding: 30px;
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-col:last-child {
    padding-right: 0;
}

@media (max-width: 767px) {
    .site-footer__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-col {
        padding: 0;
        margin-bottom: 20px;
    }

    .footer-col:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .slider1__slide {
        height: 480px;
    }

    .slider1__heading {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .slider1__slide {
        height: 600px;
    }

    .slider1__heading {
        font-size: 36px;
    }

    a.slider1__link {
        font-size: 20px;
    }

    .logo__img {
        width: 200px;
    }

    .home-heading {
        padding-top: 64px;
    }

    .home-news {
        margin-bottom: 0;
    }

    .site-footer {
        margin-top: 32px;
    }
}

@media (max-width: 1191px) {
    .main-menu {
        display: none;
    }

    .lang-switcher {
        display: none;
    }
}

.btn {
    height: auto;
}

.page-h1 {
    display: table;
    font-size: 60px;
    background: linear-gradient(140deg, #f7276b 20%, #9ebe41 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 100px;
}

@media (max-width: 1770px) {
    .page-h1 {
        font-size: 40px;
        padding: 0;
        margin: 0;
        margin-bottom: 60px;
    }
}

.news-date {
    padding: 10px 0;
    margin-bottom: 30px;
    background: url(../img/icon_clock.png) no-repeat left center;
    background-size: 18px 18px;
    padding-left: 28px;
    font-weight: 400;
    color: #4d4d4d;
}

.btn1 {
    padding: 0 60px;
    position: relative;
    border: none;
    overflow: hidden;
    background: #f7276b;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    line-height: 56px;
    border-radius: 12px;
    transition: .5s ease;
    font-size: 22px;
    height: 56px;
}

a.btn1, button.btn1 {
    text-decoration: none;
    color: white;
}

.btn1 > span {
    position: relative;
    z-index: 2;
}

.btn1:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, transparent 20%, #9ebe41 60%);
    z-index: 1;
    transition: .5s ease;
}

.btn1:hover:after {
    left: 100%;
    opacity: 0;
}

.btn1:active {
    background-color: #9ebe41;
    transform: scale(0.9);
}


.paginator {
    margin: 15px 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.paginator li {
    display: inline-block;
}

.paginator li a {
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 31px;
    color: #83b504;
    text-decoration: none;
    border-radius: 32px;
    margin: 0 3px;
    transition: .2s ease;
}

.paginator .last a, .paginator .first a {
    width: auto;
}

.paginator li:hover a {
    background: #efefef;
}

.paginator li.first:hover a, .paginator li.last:hover a {
    background: transparent;
}

.paginator li.active a {
    background: #83b504;
    color: #fff;
}

.paginator .disabled {
    opacity: .25;
}

.paginator li.first {
    margin-right: 15px;
}

.paginator li.last {
    margin-left: 15px;
}

.news-wrap {
    display: grid;
    grid-gap: 100px;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1700px) {
    .news-wrap {
        grid-gap: 60px;
    }
}

@media (max-width: 1280px) {
    .news-wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}

@media (max-width: 767px) {
    .news-wrap {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }
}

.products {
    display: grid;
    grid-gap: 100px;
    grid-template-columns: repeat(2, 1fr);
}

a.product {
    color: #2f2e2d;
    text-decoration: none;
}

.product-title {
    font-size: 25px;
    padding: 40px 0;
    text-decoration: underline;
    font-weight: normal;
    transition: .15s ease;
}

a.product:hover .product-title {
    color: #f7276b;
}

.products-h2 {
    font-size: 86px;
    color: #83b504;
    margin-bottom: 115px;
}

@media (max-width: 1700px) {
    .products-h2 {
        font-size: 66px;
    }
}




.product-image {
    text-align: center;
}

.product-image img {
    width: 100%;
    max-width: 600px;
}

.products-wrap {
    background: white;
    padding: 150px 0;
}

.product-modal__h3 {
    margin-bottom: 40px;
    font-size: 30px;
}

@media (max-width: 700px) {
    .products-h2 {
        font-size: 32px;
        margin: 40px 0;
    }

    .product-modal__h3 {
        font-size: 24px;
    }

    .products {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
    }

    .products-wrap {
        background: white;
        padding: 40px 0;
    }
}

.product-modal {
    display: none;
    max-width: 1300px;
    margin: 80px auto;
    border-radius: 32px;
    border: 3px solid #f7276b;
    min-width: 300px;
}

@media (min-width: 1700px) {
    .product-modal {
        min-width: 1300px;
    }
}

.fancybox-bg {
    background: rgba(255,255,255,.55);
}

.fancybox-button.fancybox-close-small svg {
    width: 60px;
    height: 60px;
}

.fancybox-button.fancybox-close-small svg path {
    fill: #f7276b;
}

.fancybox-button.fancybox-close-small {
    width: auto;
    height: auto;
    opacity: 1;
}

.products-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products-heading .btn1 {
    margin-bottom: 40px;
}

.products-heading .btn1 {
    padding-left: 20px;
    padding-right: 20px;
}

.products-heading .btn1 img {
    max-width: 35px;
    width: 100%;
}

@media (max-width: 767px) {
    .products-heading {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .products-heading .btn1 {
        margin-bottom: 0;
    }
}

.list1 {
    font-size: 30px;
    font-weight: bold;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 20px;
}

.list1 li {
    margin-bottom: 40px;
    position: relative;
    line-height: 1;
}

.list1 li:before {
    position: absolute;
    content: '';
    left: -20px;
    top: 0;
    width: 5px;
    height: 100%;
    background: #f7276b;
}

.list1 li:nth-child(even):before {
    background: #84b506;
}

@media (max-width: 991px) {
    .list1 li {
        padding-left: 30px;
    }

    .list1 li:before {
        left: 0;
    }
}

.technologies {
    display: grid;
    grid-gap: 100px;
    grid-template-columns: repeat(3, 1fr);
}

.technology {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.technology .btn1 {
    max-width: 236px;
}

.technology-image {
    margin-bottom: 60px;
}

@media (max-width: 1700px) {
    .technology-image {
        text-align: center;
    }
}

.technology-image img {
    width: 100%;
    max-width: 346px;
}

.technology-description {
    flex: 1;
    margin-bottom: 40px;
}

.technology-title {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 40px;
    position: relative;
}

.technology-title:before {
    position: absolute;
    content: '';
    left: -20px;
    top: 0;
    width: 5px;
    height: 100%;
    background: #f7276b;
}

.technology-title--secondary:before {
    background: #84b506;
}

@media (max-width: 1455px) {
    .technology-title {
        font-size: 30px;
    }
}

@media (max-width: 1191px) {
    .technologies {
        display: grid;
        grid-gap: 100px;
        grid-template-columns: repeat(1, 1fr);
    }
}







.list2 {
    font-size: 30px;
    font-weight: bold;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 640px;
}

.list2 li {
    margin-bottom: 40px;
    position: relative;
    line-height: 1;
}

.list2 li:before {
    position: absolute;
    content: '';
    left: -20px;
    top: 0;
    width: 5px;
    height: 100%;
    background: #f7276b;
}

.list2 li:nth-child(even):before {
    background: #84b506;
}

@media (max-width: 991px) {
    .list2 li {
        padding-left: 30px;
    }

    .list2 li:before {
        left: 0;
    }
}

.slider__prev.slider3__prev, .slider__next.slider3__next {
    top: -270px;
}

.slider3__slide {
    text-align: center;
}

.slider3__slide img {
    max-width: 335px;
    width: 100%;
}

.swiper-pagination {
    display: none;
    position: static;
    margin-top: 20px;
}

@media(max-width: 991px) {
    .swiper-pagination {
        display: block;
    }
}

.swiper-pagination-bullet-active {
    background: #f7276b;
}



















.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 600px;
    background: white;
    height: 100%;
    z-index: 1000;
    /*display: none;*/
    padding: 0 100px;
    padding-top: 150px;
    padding-bottom: 30px;
    transition: .5s ease;
}


.mobile-nav.active {
    right: 0;
    /*display: block;*/
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-name: SlideRight;
}

.mobile-nav-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, .35);
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-name: FadeIn;
}

@keyframes FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes FadeInDown {
    from {
        transform: translateY(-20%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes SlideInUp {
    from {
        transform: translateY(10%);
    }

    to {
        transform: translateY(0);
    }
}


@keyframes SlideRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.mobile-nav__close {
    position: absolute;
    right: 100px;
    top: 34px;
}


@media (max-width: 767px) {
    .mobile-nav {
        width: 300px;
        padding: 0 30px;
        padding-top: 60px;
    }

    .mobile-nav__close {
        position: absolute;
        right: 15px;
        top: 15px;
    }
}

button.hamburger {
    position: fixed;
    right: 60px;
    top: 60px;
    background: none;
    border: none;
    padding: 15px;
    line-height: 1;
    outline: none;
    transform: scale(1.25);
    display: none;
    z-index: 500;
    transition: .15s ease;
}

button.hamburger.fixed {
    top: 15px;
}

@media (max-width: 991px) {
    button.hamburger {
        right: 15px;
        display: block;
    }
}

@media (max-width: 1191px) {
    button.hamburger {
        display: block;
    }
}


.mobile-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 60px;
}

a.mobile-menu__link {
    color: black;
    font-weight: 600;
}

.mobile-menu__item {
    margin-bottom: 30px;
}

.mobile-menu__item.active a {
    color: #f7276b;
}

.mobile-nav .lang-switcher {
    display: flex;
    padding: 0;
    position: relative;
    left: -7px;
}

.contacts-content {
    margin-top: 40px;
}

.product-modal {
    padding-top: 70px;
    padding-bottom: 40px;
}

.city-wrap {
    display: none;
}

.city-select-wrap {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.city-select-wrap label {
    color: #f7276b;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0;
}

.city-select {
    flex: 1;
    max-width: 212px;
    border: 1px solid #84b506;
    height: 60px;
    border-radius: 16px;
    color: #f7276b;
    padding-left: 15px;
    padding-right: 15px;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}