body, html {
    font-size: 24px;
    line-height: 30px;
}
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: var(--font-main);
    color: var(--txt-color);
    font-weight: 400;
    background-color: #fff;
    padding-top: 200px;
    --txt-color: #2B2E4A;
    --color-main: #BF00B8;
    --color-second: #F2F2F2;
    --color-third: #818181;
    --font-main: 'Inter', sans-serif;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
}
.color-main {
    color: var(--color-main) !important;
}
main {
    position: relative;
}
.wrapper-small {
    padding-left: 2vw;
    padding-right: 2vw;
}
.wrapper {
    padding-left: 5vw;
    padding-right: 5vw;
}
.wrapper-big {
    padding-left: 8vw;
    padding-right: 8vw;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.padds {
    padding-left: 10px;
    padding-right: 10px;
}
.padd-top {
    padding-top: 60px;
}
.marg-top-small {
    margin-top: 30px;
}
.marg-top {
    margin-top: 60px;
}
.marg-top-biggest {
    margin-top: 160px;
}
.marg-top-big {
    margin-top: 100px;
}
.marg-top-biggest {
    margin-top: 160px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.w-100 {
    width: 100%;
}

main>section {
    scroll-margin-top: 60px;
}

.bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.slick-dots {
    margin: 20px 0 0 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.slick-dots li {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-dots li button {
    border-radius: 0;
    cursor: pointer;
    background-color: var(--color-second);
    padding: 0;
    margin: 0;
    width: 14px;
    height: 17px;
    transition: .3s;
    color: transparent;
    border: none;
    font-size: 0;
}
.slick-dots li.slick-active button {
    background-color: var(--color-main);
}

.slick-lightbox .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: #fff;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    background-image: url(../assets/arrow.svg);
    cursor: pointer;
    z-index: 4;
}
.slick-lightbox .slick-prev {
    transform: translateY(-50%) rotate(180deg);
    left: 20px;
}
.slick-lightbox .slick-next {
    right: 20px;
}
.slick-lightbox-slick-caption {
    margin-top: 10px;
    display: inline-block;
}

.posrel {
    position: relative;
    z-index: 4;
}
.section-heading {
    font-size: clamp(33px, 5vw, 50px);
    line-height: 110%;
    font-weight: 400;
    color: var(--txt-color);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}
.page-heading {
    font-size: clamp(44px, 7vw, 120px);
    line-height: 110%;
    font-weight: 500;
    color: var(--txt-color);
    margin-bottom: clamp(30px, 5vw, 80px);
    letter-spacing: -0.02em;
}
.page-heading span {
    color: var(--color-main);
}

::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: var(--color-second);
}
::-webkit-scrollbar-thumb {
    background: var(--color-main);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-main);
}

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

.error-wrapper {
    margin-top: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.clink {
    padding-top: 20px;
    display: inline-block;
    background-color: var(--color-main);
    color: #fff;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 120%;
    font-weight: 500;
}
.clink:hover {
    background-color: var(--txt-color);
}

.cbtn {
    display: inline-block;
    padding: 12px 22px;
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: #fff;
    transition: .3s;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
}
.cbtn--arrow {
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: center;
}
.cbtn--arrow svg {
    width: 15px;
    height: auto;
    margin-left: 15px;
}
.cbtn:hover {
    color: #fff;
    border-color: var(--txt-color);
    background-color: var(--txt-color);
}
/* @ @ HEROTXT START @ @ */
.herotxt__content {
    margin-left: auto;
}
/* .herotxt__heading .page-heading span span {
    color: var(--txt-color);
} */
.herotxt__txt {
    position: relative;
    margin: 0;
}
.herotxt__txt:before {
    content: '';
    height: 2px;
    width: 180px;
    background-color: var(--color-main);
    position: absolute;
    right: calc(100% + 30px);
    top: 7px;
}
.herotxt__heading--rotating h1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 clamp(10px, 2vw, 30px);
}

.hero-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    text-align: left;
}
.hero-rotating {
    display: block;
}


.hero-rotating.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hero-rotating.fade-in {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}
/* @ @ HEROTXT END @ @ */
/* @ @ BANERTXT START @ @ */
.banertxt {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow-x: clip;
}
.banertxt>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: 60%;
}
.banertxt__image {
   position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: 70%;
}
.banertxt:before {
    content: '';
    background-color: var(--color-main);
    opacity: .7;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.banertxt__title {
    margin: 0;
    color: #fff;
}
.banertxt__title span {
    color: var(--color-main);
    background-color: #fff;
    display: inline;
    font-weight: 400;
}
/* @ @ BANERTXT END @ @ */
/* @ @ PBOXES START @ @ */
.pboxes__content-wrapper {
    max-width: 100%;
    width: 730px;
}
.pboxes__txt {
    margin: 40px 0;
}
.pboxes__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px 0;
}
.pboxes__list li {
    background-color: var(--color-main);
    padding: 8px 14px;
    width: 100%;
    color: #fff;
}
.pboxes__items {
    position: relative;
}
.pboxes__item:before,
.pboxes__item:after {
    content: '';
    background-color: var(--color-main);
    position: absolute;
    left: 0;
    top: -35px;
    display: inline-block;
    width: 60px;
    height: 80px;
}
.pboxes__item:after {
    left: initial;
    right: 0px;
    bottom: -90px;
    top: initial;
}
.pboxes__item {
    padding: 10px;
    max-width: 50%;
    flex: 0 0 50%;
}
.pboxes__item:nth-child(even) {
    margin-top: 60px;
    margin-bottom: -60px;
}
.pboxes__item-wrapper {
    width: 100%;
    height: 100%;
    background-color: var(--color-second);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding: 40px 40px 40px 40px;
}
.pboxes__item img {
    width: 110px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin-bottom: 15px;
    max-width: 100%;
}
.pboxes__item-title {
    display: flex;
    text-align: center;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 110%;
    margin: 0 0 20px 0;
}
.pboxes__item-symbol {
    display: inline-block;
    margin-left: 5px;
}
.pboxes__item-txt {
    margin: 0;
    color: var(--color-third);
    font-size: .8rem;
    line-height: 120%;
    font-weight: 500;
    text-align: center;
}
/* @ @ PBOXES END @ @ */
/* @ @ OFFERLIST START @ @ */
.offerlist {
    overflow-x: clip;
}
.offerlist__title span {
    display: inline;
    background-color: var(--color-main);
    color: #fff;
}
.offerlist__items {
    position: relative;
    gap: 45px 35px;
    padding: 0 15px;
}
.offerlist__item {
    max-width: calc(33.333% - 25px);
    flex: 0 0 calc(33.333% - 25px);
}
.offerlist__item-wrapper {
    position: relative;
}
.offerlist__item-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: .6;
    transition: .3s;
}
.offerlist__item-wrapper:hover:before {
    background-color: var(--color-main) !important;
} 
.offerlist__img {
    width: 100%;
    aspect-ratio: 16/10;
    position: relative;
    z-index: 1;
    filter: grayscale(100%);
}
.offerlist__icon {
    position: absolute;
    left: -15px;
    top: -20px;
    width: 40px;
    height: auto;
    z-index: 3;
}
.offerlist__name {
    display: block;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    z-index: 2;
    font-size: 1.35rem;
    line-height: 130%;
    font-weight: 500;
}
.offerlist__item-wrapper:hover .offerlist__name {
    color: #fff !important;
}
.offerlist__btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
}
.offerlist__item-wrapper:hover .offerlist__btn{
    color: #fff;
    background-color: var(--txt-color);
    border-color: var(--txt-color);
}
.offerlist__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}
/* @ @ OFFERLIST END @ @ */
/* @ @ DESCINFO START @ @ */
.descinfo {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: clip;
}
.descinfo__title span {
    display: inline;
    background-color: var(--color-main);
    color: #fff;
}
.descinfo__items {
    position: relative;
}
.descinfo__items:before {
    content: '';
    top: 70px;
    bottom: 20px;
    background-color: var(--color-second);
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
}

.descinfo .slick-track {
    padding-top: 60px;
    padding-bottom: 0;
    display: flex !important;
}
.descinfo .slick-slide {
    height: inherit !important;
}
.descinfo .slick-dots {
    position: relative;
    bottom: -70px;
    margin-bottom: 40px;
}

.descinfo__item {
    position: relative;
    display: flex !important;
    flex-wrap: wrap;
}
.descinfo__item {
    margin-top: 70px;
}
.descinfo__item>svg {
    position: absolute;
    top: -90px;
    width: 130px;
    height: auto;
    z-index: 3;
}
.descinfo__img {
    position: relative;
}
.descinfo__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
/* .descinfo__img:before,
.descinfo__img:after {
    content: '';
    background-color: var(--color-main);
    position: absolute;
    left: -15px;
    top: -35px;
    display: inline-block;
    width: 60px;
    height: 80px;
    z-index: 2;
}
.descinfo__img:after {
    left: initial;
    top: initial;
    bottom: -35px;
    right: -15px;
} */
.descinfo__txt {
    max-width: 100%;
    width: 950px;
    font-size: clamp(1rem, 1.5vw, 26px);
    line-height: 120%;
    position: relative;
}
.descinfo__txt * {
    margin-bottom: 0;
}
.descinfo__txt-sign {
    display: block;
    margin-top: 30px;
    position: relative;
    padding-left: 60px;
}
.descinfo__txt-sign:before {
    content: '';
    height: 60px;
    width: 40px;
    background-color: var(--color-main);
    position: absolute;
    left: 0;
    aspect-ratio: 5/6;
    top: 3px;
}
.descinfo__txt-sign span {
    font-weight: 600;
    color: var(--color-main);
}
/* @ @ DESCINFO END @ @ */
/* @ @ ICONSLIST START @ @ */
.iconslist {
    overflow-x: clip;
}
.iconslist__title span {
    display: inline;
    background-color: var(--color-main);
    color: #fff;
}
.iconslist__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.iconslist__img {
    width: 190px;
    height: 190px;
    max-width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: flex-end;    
}
.iconslist__img img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.iconslist__item-title {
    font-size: 1rem;
    line-height: 120%;
    text-align: center;
    display: block;
    margin-top: 25px;
    margin-bottom: 15px;
}
.iconslist__item-txt {
    font-size: .85rem;
    line-height: 120%;
    display: block;
    text-align: center;
    margin-top: auto;
    color: var(--color-third);
}
/* @ @ ICONSLIST END @ @ */
/* @ @  START @ @ */
.iconsboxes {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--color-second);
}
.iconsboxes__items {
    gap: 0 clamp(15px, 5vw, 120px);;
}
.iconsboxes__item {
    padding-right: clamp(15px, 5vw, 120px);
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    border-right: 1px solid var(--color-main);
    flex: 1 1 calc((100% - 2 * clamp(15px, 5vw, 120px)) / 3);
    max-width: calc((100% - 2 * clamp(15px, 5vw, 120px)) / 3);
    padding-left: 15px;
    position: relative;
    transition: .3s;
}
.iconsboxes__item--link:hover {
    filter: grayscale(100%);
}
.iconsboxes__link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
}
.iconsboxes__item:nth-child(3n),
.iconsboxes__item:last-child {
    border: none;
}
.iconsboxes__img {
    width: auto;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.iconsboxes__img img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
.iconsboxes__item-txt {
    font-size: .8rem;
    line-height: 120%;
    display: block;
    color: var(--color-third);
    transition: .3s;
}
.iconsboxes__item--link:hover .iconsboxes__item-txt {
    color: var(--txt-color);
}
/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ TEAMMAIN START @ @ */
.teamwrapper {
    overflow-x: clip;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.teamwrapper__title span {
    display: inline;
    background-color: var(--color-main);
    color: #fff;
}
.teammain {
    gap: 160px 0;
}
.teammain__img {
    width: 75%;
    position: relative;
    z-index: 3;
}
.teammain__item:nth-child(odd) .teammain__img:before {
    content: '';
    position: absolute;
    width: 300%;
    left: -100px;
    top: -30px;
    bottom: -30px;
    z-index: 1;
    background-color: var(--color-second);
}
.teammain__img:after {
    content: '';
    background-color: var(--color-main);
    position: absolute;
    right: -30px;
    bottom: -40px;
    display: inline-block;
    width: 60px;
    height: 80px;
    z-index: 3;
}
.teammain__img img {
    width: 100%;
    position: relative;
    z-index: 3;
    aspect-ratio: 16/13;
    object-fit: cover;
}
.teammain__content {
    background-color: var(--color-second);
    margin-left: auto;
    width: 80%;
    padding:  60px 30px 30px 30px;
    position: relative;
    z-index: 2;
}
.teammain__name {
    font-size: 1rem;
    line-height: 130%;
    display: block;
    margin-bottom: 10px;
}
.teammain__stan {
    font-size: 80%;
    line-height: 120%;
    color: var(--color-main);
    display: block;
}
.teammain__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
}
.teammain__icons a {
    width: 25px;
    display: block;
}
.teammain__icons a img {
    width: 100%;
    transition: .3s;
}
.teammain__icons a:hover img {
    filter: brightness(0);
}

.teamlist__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.teamlist__img {
    width: 100%;
    margin-bottom: 10px;
}
.teamlist__img img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
}
.teamlist__name {
    font-size: 1rem;
    line-height: 130%;
    display: block;
    margin-bottom: 5px;
}
.teamlist__stan {
    font-size: 80%;
    line-height: 120%;
    color: var(--color-main);
    display: block;
}
.teamlist__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
}
.teamlist__icons a {
    width: 25px;
    display: block;
}
.teamlist__icons a img {
    width: 100%;
    transition: .3s;
}
.teamlist__icons a:hover img {
    filter: brightness(0);
}
/* @ @ TEAMMAIN END @ @ */
/* @ @ CCODE START @ @ */
.ccode__title span {
    display: inline;
    background-color: var(--color-main);
    color: #fff;
}
.ccode .sk-ww-linkedin-page-post {
    background-color: transparent !important;
}
.ccode .sk_branding {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
.ccode .sk-posts-footer,
.ccode .sk-posts-header {
    display: none !important;
}
.ccode .sk-post-item {
    height: 500px;
}
.ccode .sk-post-item {
  display: none !important; 
}
.ccode .sk-post-body-full {
    order: 1 !important;
}
.ccode .sk-post-media {
    order: 0 !important;
}

.ccode .sk-post-item:nth-child(-n+3) {
  display: flex !important; /* pokazujemy tylko pierwsze trzy */
}
/* @ @ CCODE END @ @ */
/* @ @ LOGOS START @ @ */
.logos {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    flex-direction: row;
    width: max-content;
    animation: scroll-right var(--marquee-speed, 60s) linear infinite;
    will-change: transform;
}

.marquee-group {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-shrink: 0;
}

.marquee-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.logos__item {
    width: 210px;
    max-width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.logos__item img.logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logos__item.empty {
    visibility: hidden;
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

@media (max-width: 1280px) {
    .logos__item { width: 160px; height: 80px; }
    .marquee-group { gap: 32px; }
    .marquee-column { gap: 18px; }
}

@media (max-width: 992px) {
    .logos__item { width: 140px; height: 70px; }
    .marquee-group { gap: 28px; }
    .marquee-column { gap: 16px; }
}

@media (max-width: 767px) {
    .marquee-track {
        animation: scroll-right var(--marquee-speed, 120s) linear infinite;
    }
    .logos__item { width: 120px; height: 60px; }
    .marquee-group { gap: 24px; }
    .marquee-column { gap: 14px; }
}
/* @ @ LOGOS END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ CHESS START @ @ */
.chess {
    padding: 0 !important;
}
.chess__img {
    padding: 0 !important;
    position: relative;
}
.chess__slider {
    position: relative;
    padding: 0;
}
.chess__slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 4;
}
.chess__slider .slick-list,
.chess__slider .slick-track,
.chess__slider .chess__slick {
    height: 100%;
}
.chess__slider img {
    height: 100%;
    aspect-ratio: 32/25;
    width: 100%;
    object-fit: cover;
}
.chess__img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 32/25;
    object-fit: cover;
}
.chess__video {
    position: relative;
    padding: 0;
}
.chess__video video {
    width: 100%;
    height: 100%;
    aspect-ratio: 32/25;
    object-fit: cover;
}
.chess__videoclick {
    position: relative;
    padding: 0;
}
.chess__videoclick video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: none;
    position: relative;
    z-index: 2;
}
.chess__videoclick-btn {
    position: absolute;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 80px;
    background-color: var(--color-main);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: none;
    padding: 0;
    animation: gentle-scale 1.2s ease-in-out infinite;
    cursor: pointer;
    transition: .3s;
}
.chess__videoclick-btn:hover {
    background-color: var(--color-third);
}
@keyframes gentle-scale {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}
.chess__videoclick-btn svg {
    filter: brightness(0) invert(1);
    width: 30px;
    height: auto;
    position: relative;
    left: 4px;
}
.chess__item:nth-child(odd) {
    background-color: var(--color-second);
}
.chess__item:nth-child(even) {
    flex-direction: row-reverse;
}
.chess__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(30px, 4vw, 70px);
}
.chess__title {
    position: relative;
    padding-left: 80px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 120%;
    font-weight: 500;
}
.chess__title:before {
    content: '';
    background-color: var(--color-main);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 60px;
    height: 80px;
    z-index: 2;
}
.chess__txt * {
    margin-top: 0;
}
/* @ @ CHESS END @ @ */


/* @ @ MEDIA START @ @  */
@media(min-width: 2660px) {
    main {
        max-width: 2660px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrap {
        max-width: 2660px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper {
        padding-left: 120px;
        padding-right: 120px;
        max-width: 2660px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-big {
        padding-left: 220px;
        padding-right: 220px;
        max-width: 2660px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-small {
        padding-left: 60px;
        padding-right: 60px;
        max-width: 2660px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width: 1440px) {
    body, html {
        font-size: 18px;
        line-height: 28px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }

    /*  */
    .descinfo__txt-sign {
        padding-left: 45px;
    }
    .descinfo__txt-sign:before {
        width: 25px;
        height: 38px;
    }
    /*  */
    .iconslist__item-txt {
        font-size: .75rem;
        line-height: 120%;
    }
    /*  */
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
    .descinfo__txt-sign:before {
        top: 1px;
    }
    /*  */
    .offerlist__img {
        width: 100%;
        aspect-ratio: 16/11;
    }
}
@media(max-width: 1200px) {
    .pboxes__items {
        max-width: 50%;
        flex: 0 0 50%;
    }
    /*  */
    .teammain__img:after {
        width: 40px;
        height: 50px;
        bottom: -20px;
        right: -15px;
    }
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
    .pboxes__items {
        padding-left: 40px;
    }
    .pboxes__item:before {
        left: 20px;
    }
    /*  */
    .offerlist__item:nth-child(even) .offerlist__item-wrapper:before {
        background-color: var(--txt-color);
    }
    .offerlist__item:nth-child(odd) .offerlist__item-wrapper:before {
        background-color: white;
    }
    .offerlist__item:nth-child(even) .offerlist__name {
        color: #fff;
    }
    /*  */
    .descinfo__item:nth-child(odd)>svg {
        right: 0;
    }
    .descinfo__item:nth-child(even)>svg {
        left: 0;
    }
    .descinfo__item:nth-child(odd) .descinfo__content {
        padding-right: 180px;
        padding-left: 60px;
    }
    .descinfo__item:nth-child(even) .descinfo__content {
        padding-left: 180px;
        padding-right: 60px;
        order: 0;
    }
    .descinfo__item:nth-child(even) .descinfo__img {
        order: 1;
    }
    /* .descinfo__item:nth-child(even) .descinfo__img:before {
        display: none;
    }
    .descinfo__item:nth-child(even) .descinfo__txt:before {
        content: '';
        background-color: var(--color-main);
        position: absolute;
        left: -80px;
        bottom: 0;
        display: inline-block;
        width: 60px;
        height: 80px;
        z-index: 2;
    } */







    /*  */
    .teammain__item:nth-child(even) {
        margin-top: -100px;
        margin-bottom: 100px;
    }
    .teammain__item:nth-child(even) .teammain__img {
        order: 1;
        padding-left: 5%;
        width: 80%;
    }
    .teammain__item:nth-child(even) .teammain__img:after {
        right: initial;
        bottom: initial;
        top: -40px;
        left: 20px;
    }
    .teammain__item:nth-child(even) .teammain__content {
        order: 0;
        margin-left: initial;
        padding-left: clamp(40px, 7vw, 120px);
        width: 84%;
    }
    
}
@media(min-width: 993px) and (max-width: 1200px) {
    .teammain__item:nth-child(even) .teammain__img:after {
        top: -25px;
        left: 8px;
    }
}
@media(max-width: 992px) {
    body, html {
        font-size: 16px;
        line-height: 27px;
    }
    body {
        padding-top: 120px;
    }
    .wrap,
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    /*  */
    .herotxt__txt {
        padding-top: 20px;
    }
    .herotxt__txt:before {
        right: initial;
        left: 0;
        top: 0;
        max-width: 90%;
        height: 1px;
    }
    .herotxt__heading h1 {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }
    .hero-rotating {
        justify-content: flex-start;
        text-align: left;
    }

    /*  */
    .banertxt__title br {
        display: none;
    }

    /*  */
    .pboxes__items {
        max-width: 100%;
        flex: 0 0 100%;
        margin-top: 60px;
    }
    .pboxes__item {
        max-width: 25%;
        flex: 0 0 25%;
    }

    /*  */
    .offerlist__items {
        gap: 35px 18px;
    }
    .offerlist__item {
        max-width: calc(50% - 9px);
        flex: 0 0 calc(50% - 9px);
    }
    /*  */
    .descinfo {
        margin-bottom: 120px;
    }
    .descinfo__items {
        padding-left: 0;
        padding-right: 0;
    }
    .descinfo__items:before {
        bottom: 0;
    }
    .descinfo__slick {
        padding: 0 !important;
    }
    .descinfo .slick-track {
        padding-top: 0;
        padding-bottom: 0;
    }
    .descinfo .slick-dots {
        margin-top: -40px;
        top: 100px;
    }
    .descinfo__item>svg {
        width: 90px;
        right: 0;
        top: -60px;
    }
    .descinfo__img {
        padding: 0;
    }
    .descinfo__img:before,
    .descinfo__img:after {
        width: 40px;
        height: 50px;
    }
    .descinfo__img:after {
        display: none;
    }
    .descinfo__img:before {
        bottom: -15px;
        top: initial;
    }
    .descinfo__content {
        padding: 0 25px;
        margin-top: 20px;
        padding-bottom: 20px;
    }

    /*  */
    .iconslist__item-txt {
        font-size: .9rem;
        line-height: 120%;
    }

    /*  */
    .iconsboxes__item {
        border: none !important;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 15px;
    }
    .iconsboxes__img {
        height: auto;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .iconsboxes__img {
        height: 60px;
        width: auto;
    }

    /*  */

    /*  */
    .teammain {
        gap: 50px 0;
    }
    .teammain__item:nth-child(even) .teammain__img:before {
        content: '';
        position: absolute;
        width: 300%;
        left: -100px;
        top: -30px;
        bottom: -30px;
        z-index: 1;
        background-color: var(--color-second);
    }


    /*  */
    .chess__item:not(:first-child) {
        margin-top: 30px;
    }
    .chess__title {
        padding-left: 60px;
    }
    .chess__title:before {
        width: 40px;
        height: 50px;
    }
    .chess__img img {
        aspect-ratio: initial;
        height: initial;
    }
    .chess__slider img {
        /* aspect-ratio: 16/11; */
    }
    .chess__content {
        padding: 0 25px 0 25px;
        margin-top: 30px;
    }

}
@media(min-width: 768px) and (max-width: 991px) {
    .offerlist__item:nth-child(4n + 1) .offerlist__item-wrapper:before,
    .offerlist__item:nth-child(4n + 4) .offerlist__item-wrapper:before {
        background: white;
    }
    .offerlist__item:nth-child(4n + 2) .offerlist__item-wrapper:before,
    .offerlist__item:nth-child(4n + 3) .offerlist__item-wrapper:before {
        background: var(--txt-color);
    }
    .offerlist__item:nth-child(4n + 2) .offerlist__name,
    .offerlist__item:nth-child(4n + 3) .offerlist__name {
        color: white;
    }
}
@media(max-width: 767px) {
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 60px;
    }
    .marg-top-biggest {
        margin-top: 60px;
    }
    .cbtn  {
        font-size: 1rem;
        line-height: 120%;
    }

    /*  */
    .hero-rotating {
        display: block;
    }

    /*  */
    .banertxt {
        padding-top: 40px;
        padding-bottom: 40px;
    }


    /*  */
    .pboxes__item {
        max-width: 50%;
        flex: 0 0 50%;
    }
    .pboxes__txt {
        margin: 0 0 20px 0;
    }

    /*  */
    .offerlist__items {
        gap: 35px 0;
    }
    .offerlist__item {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .offerlist__img {
        aspect-ratio: 16/9;
    }
    .offerlist__item:nth-child(even) .offerlist__item-wrapper:before {
        background-color: var(--txt-color);
    }
    .offerlist__item:nth-child(odd) .offerlist__item-wrapper:before {
        background-color: white;
    }
    .offerlist__item:nth-child(even) .offerlist__name {
        color: #fff;
    }
    /*  */
    .descinfo__item>svg {
        width: 70px;
        top: -50px;
    }
    /*  */
    .iconslist__item:first-child {
        margin-top: 0;
    }
    .iconslist__img {
        height: auto;
        width: 100px;
        aspect-ratio: initial;
    }

    /*  */
    .ccode__title br {
        display: none;
    }
    .ccode__title span {
        display: inline;
    }
    
}
@media(max-width: 500px) {
    .slick-dots li button {
        width: 10px;
        height: 12px;
    }
    /*  */
    .pboxes__item:before {
        width: 40px;
        height: 50px;
        left: 0;
        top: -20px;
    }
    .pboxes__item:after {
        width: 40px;
        height: 50px;
        right: 0;
        bottom: -20px;
    }
    .pboxes__item {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 10px 0;
        margin: 0 !important;
    }
    .pboxes__item-txt {
        font-size: 1rem;
    }
    /*  */
    .offerlist__img {
        aspect-ratio: 16/11;
    }
    .offerlist__name {
    }

    /*  */
    .teammain__img {
        width: 100%;
    }
    .teammain__content {
        width: 89%;
        padding: 40px 20px 20px 20px;
    }
    .teamlist__icons a,
    .teammain__icons a {
        width: 20px;
    }

    /*  */
    
    .logos__item img {
        height: 50px;
        width: 120px;
    }
}
/* @ @ MEDIA END @ @  */