html {
    font-size: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --main: #0F1123;
    --blue: #3C8FFF;
    --white: #FFFFFF;
    --light-blue: #ECF4FF;
    --grey: #393E46;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: #121212;
    background: #ffffff;

}

body.scrolling {
    overflow-y: hidden;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {
    a,
    button {
        cursor: default !important;
        border: none;
        outline: none;
    }
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.container {
    max-width: 1310px;
    width: 100%;
    height: auto;
    padding: 0 15px;
    margin: 0 auto;
}

.container-inn {
    max-width: 1196px;
    width: 100%;
    height: auto;
    padding: 0 15px;
    margin: 0 auto;
}

.container-blog {
    max-width: 1054px;
    width: 100%;
    height: auto;
    padding: 0 15px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
        margin: 0 auto;
    }
}


.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    border: none;
    outline: none;
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
    height: auto;
    padding: 0.75rem 0;
}

.header .navbar {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.header .menu > .menu-item {
    position: relative;
    display: inline-block;
    margin: 0 0.75rem;
}

.header .menu > .menu-item > a {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: inherit;
    padding: 1rem 0;
    border: none;
    outline: none;
    color: var(--main);
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .menu > .menu-item > a .expand {
    position: relative;
    display: inline-block;
    height: 0.75rem;
    width: 0.75rem;
    margin-left: 0.35rem;
    border: none;
    outline: none;
    pointer-events: none;
}

.header .menu > .menu-item i {
    font-size: 12px;
}

.header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after {
    position: absolute;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: '';
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #121212;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .menu > .menu-item:hover > a {
    color: var(--blue);
}

.header .menu > .menu-item > a i {
    transition: all 0.35s ease;
}

.header .menu > .menu-item:hover > a i {
    transform: rotate(90deg);
    transition: all 0.35s ease;
}

.header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after {
    background: var(--blue);
}

.header .menu > .menu-item > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
    color: var(--blue);
}

.header .menu > .menu-item > .sub-menu {
    position: absolute;
    left: -1rem;
    top: 100%;
    width: 17rem;
    height: auto;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    border-top: 3px solid var(--blue);
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem);
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
display: block;
    transform-origin: 50% 0;
    transform: scaleY(0) translateZ(0);
}

.header .menu > .menu-item > .sub-menu > .menu-item {
    display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a {
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: inherit;
    padding: 0.5rem 1.25rem;
    color: #121212;
    text-transform: normal;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .opened-menu {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .opened-menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #121212;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.header .opened-menu span:nth-child(1) {
    top: 0;
}

.header .opened-menu span:nth-child(2), .header .opened-menu span:nth-child(3) {
    top: 0.5rem;
}

.header .opened-menu span:nth-child(4) {
    top: 1rem;
}

.header .closed-menu {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    outline: none;
    background: none;
}

.header .closed-menu img.closed-icon {
    display: block;
    width: 1rem;
    height: auto;
}

.header .overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

@media only screen and (min-width: 993px) {
    .header .menu > .menu-item-has-children:hover > .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    	transform: scaleY(1) translateZ(0);
    }
    .header .menu > .menu-item-has-children:hover > a .expand::after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@media only screen and (max-width: 992px) {
    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .navbar {
        position: fixed;
        top: 0;
        left: -18rem;
        width: 18rem;
        height: 100%;
        padding: 1rem 0;
        z-index: 999;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background: #ffffff;
        -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .header .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
    .header .navbar::-webkit-scrollbar {
        width: 5px;
    }
    .header .navbar::-webkit-scrollbar-thumb {
        border-radius: 1rem;
        background: #e6e6e6;
        -webkit-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
    }
    .header .menu {
        width: 100%;
        height: auto;
        margin-top: 3.5rem;
    }
    .header .menu > .menu-item {
        display: block;
        margin: 0;
    }
    .header .menu > .menu-item-has-children > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header .menu > .menu-item > a {
        padding: 0.75rem 1rem;
        color: #121212;
        border-bottom: 1px solid #f2f2f2;
    }
    .header .menu > .menu-item:first-child > a {
        border-top: 1px solid #f2f2f2;
    }
    .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after {
        background: #121212;
    }
    .header .menu > .menu-item-has-children.active > a .expand:after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    .header .menu > .menu-item > .sub-menu {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a {
        padding: 0.75rem 2rem;
        color: #121212;
        border-bottom: 1px solid #f2f2f2;
    }
    .header .opened-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .closed-menu {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        top: 1rem;
        right: 0.5rem;
    }
}

.brand-img {
    max-width: 180px;
    margin-right: 100px;
}

.main {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 6rem 0 0;
}

.intro-wrapper img {
    max-width: 100%;
    width: 100%;
    max-height: 590px;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.intro-inner {
    max-width: 1160px;
    margin: 0 auto;
    background: #0F68FE;
    border-radius: 20px;
    padding: 30px;
    margin-top: -120px;
    position: relative;
    margin-bottom: 50px;
}

.intro-header {
    color: #fff;
    text-align: center;
}

.intro-header h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    text-align: center;
    margin-bottom: 16px;
}

.intro-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.intro-header {
    margin-bottom: 50px;
}

.intro-form__inner select {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #CDD5E0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #97A3B6;
-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
background-color: white;
}

.wpcf7 select {
	appearance: none;   
  	-webkit-appearance: none;
  	-moz-appearance: none;
  	
}

.intro-form__inner select:placeholder,
.intro-form__inner select:required:invalid,
.intro-form__inner select option[disabled],
.intro-form__inner select option:first-child  {
	color: #97A3B6;
}

.intro-form__inner select.has-value {
	color: #0F1123;
}

.intro-form__inner input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #CDD5E0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0F1123;
-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.intro-form__inner input:placeholder {
     color: #97A3B6;
}

.intro-form__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}

.button-send {
    display: inline-block;
    background: var(--white);
    color: var(--blue);
    padding: 16px 32px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    border: 1px solid var(--white);
    cursor: pointer;
    transition: all .3s ease;
}

.button-send:hover {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    transition: all .3s ease;
}

.intro-form__send {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.industry-header {
    text-align: center;
    color: var(--grey);
    margin-bottom: 32px;
}

.industry-header h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--main);
    margin-bottom: 32px;
}

.industry-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.industry-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--blue);
    border-radius: 50%;
    margin-bottom: 24px;
}

.industry-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60px;
}

.industry-content h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    margin-bottom: 24px;
}

.industry-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
    margin-bottom: 8px;
}

.industry-content a {
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    color: var(--blue);
    text-transform: uppercase;
}

.industry-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}



.order-item:nth-child(odd) {
    background: var(--light-blue);
}

.order-item:nth-child(odd) .order-item__right {
    max-width: 578px;
    width: 100%;
}

.order-item:nth-child(even) .order-item__right {
    max-width: 518px;
    width: 100%;
}

.order-item__inner {
    display: flex;
    align-items: center;
}

.order-item:nth-child(odd) .order-item__right h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--blue);
    margin-bottom: 16px;
}

.order-item:nth-child(even) .order-item__right h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--main);
    margin-bottom: 16px;
}

.order-item__right p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
    margin-bottom: 16px;
}

.order-item__right a {
    display: inline-block;
    border: 1px solid var(--blue);
    background: var(--blue);
    color: var(--white);
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
}

.order-item__right a:hover {
    background: transparent;
    color: var(--blue);
    transition: all .3s ease;
}

.order-item:nth-child(odd) .order-item__left {
    margin-right: 40px;
}

.order-item {
    margin-bottom: 75px;
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-item:nth-child(even) .order-item__left {
    order: 1;
}

.order-item__block {
    width: 100%;
    height: 320px;
    background: var(--light-blue);
}

.order-item:nth-child(odd) .order-item__left .order-item__block {
    display: none;
}

.order-item:nth-child(even) .order-item__left {
    position: relative;
    min-height: 640px;
    margin-left: 40px;
}


.order-item:nth-child(even) .order-item__left img {
    max-width: 450px;
    width: 100%;
    border-radius: 8px;
    margin: 0 auto;
}

.order-item:nth-child(even) .order-item__left {
    max-width: 608px;
    width: 100%;
}

.order-item:nth-child(even) .order-item__left .order-item__block {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.mb-75 {
    margin-bottom: 75px;
}

.title {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--main);
    text-align: center;
    margin-bottom: 32px;
}

.content p,
.benefits-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.benefits-header {
    margin-bottom: 16px;
    display: flex;
}

.benefits-header h4 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
}

.benefits-header img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 16px;
}

.benefits-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.recruit-item {
    border: 1px solid var(--blue);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.recruit-item img {
    max-width: 200px;
    width: 100%;
    margin: 0 auto 16px;
}

.recruit-content h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
    margin-bottom: 16px;
}

.recruit-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.recruit-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
}

.nubmers {
    background: var(--light-blue);
    padding: 120px 0;
}

.titleblue {
    color: var(--blue);
    margin-bottom: 50px;
}

.numbers__item-head {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--blue);
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
}

.numbers__item-head span {
    margin-left: 15px;
}

.numbers-content {
    text-align: center;
}

.numbers-content h4 {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    margin-bottom: 5px;
}

.numbers-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.numbers-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}

.tal {
    text-align: left;
    margin-bottom: 48px;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 32px;
}

.trust {
    padding: 100px 0;
}

.opinions {
    background: var(--light-blue);
    padding: 64px 0 35px;
}

.mb-20 {
    margin-bottom: 20px;
}

.opinions-inner {
    position: relative;
}

.quote {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 140px;
}

.opinions-wrapper {
    max-width: 1008px;
    margin: 0 auto;
    padding-top: 70px;
    position: relative;
    z-index: 2;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: calc((100% - 30px) / 2) !important;

    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.opinions-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
}

.opinions-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    box-shadow: 0px 4px 8px #1118270F;
    padding: 32px;
}

.opinions-item img {
    max-width: 16px;
    margin-right: 16px;
}

.opinions-item:nth-child(odd) {
    position: relative;
    top: 80px;
}

.blogmain-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 41px;
    margin-bottom: 48px;
}

.blogmain-item img {
    border-radius: 24px;
    margin-bottom: 16px;
    object-fit: cover;
}

.blogmain-content {
    padding: 8px 32px 16px;
}

.blogmain-item__category {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #C95848;
    margin-bottom: 8px;
}

.blogmain-content h4 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
    margin-bottom: 20px;
}

.blogmain-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--grey);
}

.loadmore {
    display: inline-block;
    background: var(--blue);
    border-radius: 10px;
    color: #fff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--blue);
    transition: all .3s ease;
}

.loadmore:hover {
    background: transparent;
    color: var(--blue);
    transition: all .3s ease;
}

.loadmore__container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.footer {
    border-top: 0.5px solid var(--blue);
    padding: 50px 0 0;
    background: #0F68FE;
}

.footer-wrapper {
    display: flex;
    align-items: flex-start;
}

.footer-wrapper .footer-logo {
    max-width: 113px;
    width: 100%;
    margin-right: 48px;
}

.footer-items {
    /*display: grid;*/
    /*grid-template-columns: repeat(5, 1fr);*/
    /*grid-gap: 24px;*/
    display: flex;
}

.footer-item {
    max-width: fit-content;
    margin-right: 29px;
}

.footer-item:last-child {
    margin-right: 0;
}

.footer-item h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--white);
    margin-bottom: 26px;
}

.footer-menu a,
.footer-link a {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--white);
    transition: all .3s ease;
}

.footer-menu a:hover,
.footer-link a:hover {
    color: var(--light-blue);
    text-decoration: underline;
    transition: all .3s ease;
}

.footer-menu li {
    margin-bottom: 5px;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-link:last-child {
    margin-bottom: 0;
}

.footer-link img {
    max-width: 16px;
    width: 100%;
    margin-right: 8px;
    filter: brightness(0) invert(1);
}

.footer-link a {
    /*text-wrap: nowrap;*/
}

.footer-bottom {
    margin-top: 50px;
    border-top: 0.5px solid var(--blue);
    padding: 32px;
}

.footer-bottom__wrapper {
    display: flex;
    justify-content: space-between;
}

.footer-bottom_l {
    display: flex;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: var(--white);
}

.footer-copy {
    margin-right: 24px;
}

.footer-bottom_l ul {
    display: flex;
}

.footer-bottom_l ul li {
    margin-right: 24px;
}

.footer-bottom_l ul li a {
    color: var(--white);
    transition: all .3s ease;
}

.footer-bottom_l ul li a:hover {
    color: var(--light-blue);
    text-decoration: underline;
    transition: all .3s ease;
}

.footer-bottom_r {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: var(--white);
}

.footer-bottom_r a {
    color: var(--white);
    transition: all .3s ease;
}

.footer-bottom_r a:hover {
    color: var(--light-blue);
    text-decoration: underline;
    transition: all .3s ease;
}

.about {
    height: 50vh;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top -50px center;
    border-radius: 20px;
    position: relative;
}

.about-title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.indust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}

.work-left {
    max-width: 526px;
    width: 100%;
    margin-right: 40px;
}

.work-right {
   max-width: 600px;
    width: 100%;
}

.work-right img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.work-left h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    margin-bottom: 24px;
}

.work-head {
    display: flex;
    margin-bottom: 8px;
}

.work-head img {
    max-width: 32px;
    width: 100%;
    margin-right: 8px;
}

.work-head h4 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
}

.work-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.work-item {
    margin-bottom: 24px;
}

.work-item:last-child {
    margin-bottom: 0;
}

.work-items {
    display: flex;
    flex-direction: column;
}

.work-wrapper {
    display: flex;
    align-items: center;
}

.fits-item {
    display: flex;
}


.fits-right {
    max-width: 650px;
    width: 100%;
    height: 515px;
}

.fits-right img {
    object-fit: cover;
    height: 100%;
}

.fits-left {
    max-width: 600px;
    width: 100%;
}

.fits-item {
    display: flex;
    align-items: center;
}

.fits-head {
    display: flex;
}

.fits-head img {
    max-width: 45px;
    width: 100%;
    max-height: 45px;
    margin-right: 24px;
}

.fits-head h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
}

.fits-item:nth-child(odd) .fits-left:after {
    position: absolute;
    content: "";
    height: 100vh;
    max-height: 515px;
    width: 100vw;
    right: -20px;
    top: 0;
    background-color: var(--light-blue);
    z-index: -1;
}

.fits-left {
    position: relative;
    height: 515px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.fits-item:nth-child(even) .fits-left {
    order: 1;
    margin-right: 0;
}

.fits-item:nth-child(even) .fits-right {
    margin-right: 40px;
}

.mb-15 {
    margin-bottom: 15px;
}

.expert-text,
.expert-text p {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.expert-text p {
    margin-bottom: 15px;
}

.expert-text {
    margin-bottom: 40px;
}

.expert-text a {
    display: inline-block;
    border: 1px solid var(--blue);
    background: var(--blue);
    color: var(--white);
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
}

.expert-text a:hover {
    background: transparent;
    color: var(--blue);
    transition: all .3s ease;
}

.expert-item {
    max-width: 608px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.expert-item img {
    max-width: 450px;
    width: 100%;
    border-radius: 8px;
    margin: 0 auto;
}

.expert-item__block {
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 320px;
    background: var(--light-blue);
}

.howwe-wrapper {
    display: flex;
}

.howwe-left {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    margin-right: 40px;
}

.howwe-left img {
    margin-bottom: 40px;
    max-width: 100%;
    border-radius: 8px;
    height: 100%;
}

.howwe-left img:last-child {
    margin-bottom: 0;
}

.howwe-right {
    max-width: 526px;
    width: 100%;
}

.howwe-right h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--main);
    margin-bottom: 24px;
}

.howwe-right h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
    margin-bottom: 8px;
}

.howwe-right p,
.howwe-right {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.howwe-right ul li {
    list-style: disc;
}

.howwe-right ul {
    padding-left: 18px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.process {
    background-color: var(--light-blue);
    padding: 100px 0;
}

.process-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    text-align: center;
    margin-bottom: 64px;
}

.process-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--blue);
    border-radius: 10px;
    position: relative;
    margin-bottom: 24px;
}

.process-icon img {
    max-width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-text h5 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
}

.variants-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
}

.faq-left {
    max-width: 608px;
    width: 100%;
    margin-right: 40px;
    position: relative;
}

.faq-left img {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.faq-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 75px;
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
}

.faq-item {
    border: 1px solid var(--blue);
    border-radius: 10px;
}

.faq-content {
    padding: 24px;
}

.faq-content h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    color: var(--main);
    margin-bottom: 16px;
}

.faq-content,
.faq-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.reference {
    background-color: var(--light-blue);
    padding: 50px 0;
}

.reference-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px;
}

.reference-item img {
    width: 100%;
}

.faq-form {
    border: 1px solid var(--blue);
    border-radius: 10px;
    padding: 24px;
    max-width: 624px;
    width: 100%;
}

.form-inner label {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
    margin-bottom: 4px;
    display: block;
}

.form-inner select {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #CDD5E0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #97A3B6;
}

.form-inner input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #CDD5E0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #393E46;
}

.form-inner textarea {
    width: 100%;
    min-height: 120px;
    max-height: 160px;
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #CDD5E0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #393E46;
    resize: vertical;
}

.form-inner input::placeholder,
.form-inner textarea::placeholder {
    color: #97A3B6;
}

.form-inner input:focus,
.form-inner textarea:focus {
    border: 1px solid #46208F;
}

.form-inner {
    margin-bottom: 22px;
}

.form-sendd {
    display: inline-block;
    border: 1px solid var(--blue);
    background: var(--blue);
    color: var(--white);
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
    width: 100%;
    text-align: center;
}

.form-sendd:hover {
    background: transparent;
    color: var(--blue);
    transition: all .3s ease;
}

.ct-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 38px;
    color: var(--main);
    margin-bottom: 35px;
}

.ct-wrapper {
    border: 1px solid var(--blue);
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0px 1px 10px rgba(0,0,0, 0.15);
}

.ct-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.ct-item__icon {
    width: 80px;
    height: 80px;
    background-color: var(--blue);
    border-radius: 10px;
    position: relative;
    margin-bottom: 21px;
}

.ct-item__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60px;
}

.ct-content {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
    font-family: 'Lato', sans-serif;
}

.ct-content a {
    color: var(--main);
    transition: all .3s ease;
}

.ct-content a:hover {
    color: var(--blue);
    transition: all .3s ease;
}

.what {
    background-color: var(--light-blue);
    padding: 100px 0;
}

.what-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    text-align: center;
    margin-bottom: 64px;
}

.what-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 36px;
}

.what-item__icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-color: var(--blue);
    position: relative;
    margin-bottom: 21px;
}

.what-item__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60px;
}

.what-content h5 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
}

.whywe-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.whywe-item {
    display: flex;
}

.whywe-item img {
    width: 32px;
    height: 32px;
    margin-right: 16px;
}

.whywe-item h5 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
}

.recruit-left {
    max-width: 518px;
    width: 100%;
    margin-right: 40px;
    margin-top: 80px;
}

.recruit-left h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--main);
    margin-bottom: 16px;
}

.recruit-left,
.recruit-left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.recruit-right {
    max-width: 608px;
    width: 100%;
    position: relative;
}

.recruit-right img {
    max-width: 450px;
    object-fit: cover;
    margin: 0 auto;
    width: 100%;
}

.recruit-wrapper {
    display: flex;
}

.offer-item {
    box-shadow: 0px 1px 10px rgba(0,0,0,0.15);
    border-radius: 20px;
}

.offer-inner {
    padding: 16px 30px;
}

.offer-item__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--blue);
    margin-right: 30px;
    transition: all .3s ease;
}

.offer-address {
    display: flex;
    align-items: center;
}

.offer-address img {
    margin-right: 16px;
}

.offer-address {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.offer-link {
    border: 1px solid #fff;
    background-color: #fff;
    color: var(--blue);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    display: inline-block;
    transition: all .3s ease;
}

.offer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
}

.offer-item {
    margin-bottom: 32px;
}

.offers-text,
.offers-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.offers-icon {
    width: 100px;
    height: 100px;
    background-color: var(--blue);
    border-radius: 50%;
    position: relative;
}

.offers-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.offers-item__title {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    padding-bottom: 24px;
}

.offers-item__more {
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    color: var(--blue);
    text-transform: uppercase;
}

.offers-text {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);

}

.offers-items {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.singleoff-item {
    display: flex;
    margin-bottom: 32px;
}

.singleoff-item .offer-address {
    margin-right: 48px;
}

.singleoff-item .offer-address:last-child {
    margin-right: 0;
}

.singleoff-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #5C5D5F;
}

.singleoff {
    background-color: var(--light-blue);
    padding: 48px 0;
}

.onct-item__icon {
    width: 80px;
    height: 80px;
    background-color: var(--blue);
    border-radius: 10px;
    position: relative;
    margin-bottom: 21px;
}

.onct-item__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.onct-item__text {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
}

.onct-item__text a {
    color: var(--main);
    transition: all .3s ease;
}

.onct-item__text a:hover {
    color: var(--blue);
    transition: all .3s ease;
}

.onct-item {
    border: 1px solid var(--blue);
    border-radius: 10px;
    padding: 32px;
}

.off-item {
    display: flex;
    margin-bottom: 24px;
}

.off-item__icon {
    max-width: 32px;
    width: 100%;
    height: 32px;
    background-color: var(--light-blue);
    border-radius: 50%;
    border: 1px solid var(--blue);
    position: relative;
    margin-right: 8px;
}

.off-item__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.off-item__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
}

.off-left .expert-text {
    text-align: left;
}

.off-left {
    max-width: 526px;
    width: 100%;
    margin-right: 40px;
}

.off-wrapper {
    display: flex;
    align-items: center;
}

.off-right {
    max-width: 600px;
    width: 100%;
}
.off-right img {
    border-radius: 8px;
}

.propose {
    background-color: var(--light-blue);
    padding: 120px 0;
}

.propose-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.propose-wrapper h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    margin-bottom: 24px;
}

.propose-wrapper p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.propose-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px;
    margin-bottom: 50px;
}

.propose-item__num {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--blue);
    margin-bottom: 5px;
    text-align: center;
}

.propose-content {
    text-align: center;
}

.propose-content h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    margin-bottom: 5px;
}

.propose-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.dov {
    padding: 77px 0;
}

.dov-left {
    max-width: 550px;
    width: 100%;
    margin-right: 40px;
}

.dov-left h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    margin-bottom: 16px;
}

.dov-left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.dov-right {
    max-width: 580px;
    width: 100%;
}

.dov-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}

.dov-wrapper {
    display: flex;
    align-items: center;
}

.per-content h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    margin-bottom: 24px;
    margin-top: 24px;
}

.per-content,
.per-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.per-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 28px;
}

.ctform .ct-items {
    grid-template-columns: repeat(2, 1fr);
}

.ab {
    background-color: var(--light-blue);
}

.ab-left {
    max-width: 565px;
    width: 100%;
    margin-right: 40px;
}

.ab-right {
    max-width: 565px;
    width: 100%;
}

.ab-right h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--main);
    margin-bottom: 16px;
}

.ab-right img {
    max-width: 100%;
    margin-bottom: 16px;
}

.ab-right,
.ab-right p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.ab-wrapper {
    display: flex;
    align-items: center;
}

.services-item {
    border: 1px solid var(--blue);
    border-radius: 10px;
}

.services-inner {
    padding: 32px;
}

.services-content h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
    margin-bottom: 21px;
}

.services-content,
.services-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.services-content a {
    background-color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    padding: 16px 32px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    transition: all .3s ease;
    margin-top: 21px;
}

.services-content a:hover {
    color: var(--white);
    background-color: var(--blue);
}

.services-items,
.warto-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.warto-content,
.warto-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.speak-left {
    max-width: 518px;
    width: 100%;
    margin-right: 40px;
}

.speak-left h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--main);
    margin-bottom: 16px;
}

.speak-left,
.speak-left p {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    color: var(--grey);
}

.speak-left a {
    color: var(--blue);
}

.speak-wrapper {
    display: flex;
    align-items: center;
}

.blogpage {
    padding-top: 50px;
}

.singleblog-content h1{
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--main);
    margin-bottom: 24px;
}

.singleblog-content h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    margin-bottom: 20px;
}

.singleblog-content h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
    margin-bottom: 20px;
}

.singleblog-content h4 {
    font-size: 22px;
    font-weight: 800;
    line-height: 30px;
    color: var(--main);
    margin-bottom: 20px;
}

.singleblog-content h5 {
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    color: var(--main);
    margin-bottom: 15px;
}

.singleblog-content h6 {
    font-size: 18px;
    font-weight: 800;
    line-height: 26px;
    color: var(--main);
    margin-bottom: 10px;
}

.singleblog-img,
.wp-post-image {
    max-width: 100%;
    margin: 45px 0;
}

.singleblog-content,
.singleblog-content p {
    color: var(--grey);
}

.fsingle-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    margin-bottom: 48px;
}

.fsignle-content,
.fsignle-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.fsignle-content {
    margin-top: 48px;
}

.fsignle-content h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 48px;
    color: var(--main);
    margin-bottom: 48px;
}

.calculate-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: var(--main);
    margin-bottom: 32px;
}

.fieldset {
    display: flex;
    border: none;
    padding: 0;
}

.fieldset .calculate-inn {
    margin-right: 32px;
}

.fieldset .calculate-inn:last-child {
    margin-right: 0;
}

.inline-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.inline-container input[type="radio"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    transition: all .3s ease;
}

.inline-container input[type="radio"]:checked {
    border-color: var(--blue);
    background-color: rgba(59, 130, 246, 0.1);
}

.inline-container input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--blue);
}

.inline-container input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.inline-container label {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
}

.inline-container label span {
    margin-left: 8px;
}

.inline-container input[type="radio"]:checked + label {
    color: var(--blue);
}

.inline-container {
    margin-bottom: 32px;
}

.calculate-wrapper {
    display: flex;
    flex-direction: column;
}

.calculate-wrapper label {
    display: block;
    margin-bottom: 8px;
}

.ct-cont,
.ct-cont p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.ct-cont {
    margin-bottom: 32px;
}

.politics {
    background-color: var(--light-blue);
    padding: 50px 0;
}

.politics-inn h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 64px;
    color: var(--grey);
    margin-bottom: 32px;
}

.politics-inn {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
}

.rodo {
    padding: 35px 0 0;
}

.files-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 64px;
    color: var(--main);
    margin-bottom: 32px;
}

.files-items {
    display: flex;
    flex-direction: column;
}

.files-item {
    box-shadow: 0 1px 10px rgba(0,0,0,0.15);
    margin-bottom: 24px;
    border-radius: 20px;
}

.files-item:last-child {
    margin-bottom: 0;
}

.files-item a {
    text-decoration: none;
    color: var(--grey);
}

.files-inner {
    padding: 16px 32px;
    display: flex;
    align-items: center;
}

.files-inner img {
    max-width: 24px;
    margin-right: 16px;
}

.files-ct {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    color: var(--grey);
    flex: 1;
}

.files-text {
    margin-bottom: 8px;
}

.files-size {
    font-size: 10px;
    font-weight: 400;
    line-height: 100%;
    color: var(--grey);
}

@media (max-width: 993px) {
    .footer-items {
        flex-wrap: wrap;
    }
    .footer-item {
        margin-bottom: 20px;
        margin-right: 20px;
    }
    .industry-header h1,
    .work-left h2,
    .recruit-left h1,
    .propose-wrapper h2,
    .propose-item__num,
    .dov-left h2,
    .ab-right h1,
    .singleblog-content h1 {
        font-size: 35px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    .singleblog-img,
    .wp-post-image {
        margin: 30px 0;
    }
    .industry-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-content h3,
    .propose-content h2,
    .per-content h2,
    .singleblog-content h2,
    .fsingle-title,
    .fsignle-content h3 {
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 15px;
    }
    .propose {
        background-color: var(--light-blue);
        padding: 60px 0;
    }
    .off-item__title {
        font-size: 20px;
    }
    .order-item .order-item__right h2,
    .order-item:nth-child(odd) .order-item__right h2,
    .order-item:nth-child(even) .order-item__right h2 {
        font-size: 35px;
        line-height: 48px;
        margin-bottom: 15px;
    }
    .benefits-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-inner {
        margin-bottom: 50px;
    }
    .title,
    .howwe-right h2 {
        font-size: 35px;
        line-height: 48px;
        margin-bottom: 25px;
    }
    .recruit-item {
        padding: 15px;
    }
    .recruit-items {
        grid-template-columns: repeat(3, 1fr);
    }
    .nubmers {
        padding: 35px 0;
    }
    .numbers__item-head {
        font-size: 35px;
        line-height: 48px;
    }
    .numbers-content h4 {
        font-size: 25px;
        line-height: 35px;
    }
    .numbers-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
    .trust-items {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }
    .trust {
        padding: 50px 0;
    }
    .opinions {
        padding: 34px 0 140px;
    }
    .blogmain-content {
        padding: 8px 8px 8px;
    }
    .blogmain-items {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        margin-bottom: 20px;
    }
    .blogmain-content h4 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .about {
        height: 450px;
    }
    .indust-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-items {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-text h5 {
        font-size: 20px;
        line-height: 28px;
    }
    .propose-items {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 30px;
    }
    .per-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-items, .warto-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .whywe-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-items,
    .footer-wrapper {
        flex-direction: column;
    }
    .footer-wrapper .footer-logo{
        margin-bottom: 20px;
        margin-right: 0;
    }
    .footer-item h6 {
        margin-bottom: 15px;
    }
    .footer {
        padding: 25px 0;
    }
    .footer-bottom {
        margin-top: 10px;
        padding: 15px 0px 0px;
    }
    .footer-bottom_l,
    .footer-bottom__wrapper {
        flex-direction: column;
    }
    .footer-copy,
    .footer-bottom_l {
        margin-bottom: 15px;
    }
    .footer-item {
        margin-right: 0;
    }
    .intro-form__inner {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
    .intro-inner {
        margin-bottom: 50px;
    }
    .mb-75,
    .order-item,
    .faq-wrapper {
        margin-bottom: 50px;
    }
    .order-item__inner {
        flex-direction: column;
    }
    .order-item:nth-child(odd) .order-item__left {
        margin-right: 0px;
        order: 1;
    }
    .order-item:nth-child(odd) .order-item__right,
    .order-item:nth-child(even) .order-item__right {
        max-width: 800px;
        padding: 15px 0;
    }
    .order-item:nth-child(even) .order-item__left {
        margin-left: 0;
    }
    .order-item:nth-child(even) .order-item__left .order-item__block {
        display: none;
    }
    .order-item:nth-child(even) .order-item__left {
        min-height: auto;
    }
    .recruit-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }
    .trust {
        padding: 10px 0;
    }
    .opinions-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .opinions-item:nth-child(odd) {
        top: 0;
    }
    .quote {
        max-width: 60px;
    }
    .opinions-wrapper {
        padding-top: 15px;
    }
    .opinions-item {
        padding: 15px;
    }
    .opinions {
        padding: 30px 0 30px;
    }
    .blogmain-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        margin-bottom: 20px;
    }
    .about {
        height: 400px;
    }
    .work-wrapper {
        flex-direction: column;
    }
    .work-left {
        max-width: 800px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .work-head h4,
    .howwe-right h3 {
        font-size: 20px;
        font-weight: 800;
        line-height: 28px;
        color: var(--main);
    }
    .fits-head h3 {
        font-size: 25px;
        line-height: 36px;
    }
    .howwe-wrapper {
        flex-direction: column;
    }
    .howwe-left {
        max-width: 800px;
        margin-right: 0;
        order: 1;
    }
    .howwe-right {
        max-width: 800px;
        margin-bottom: 20px;
    }
    .process-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .process {
        padding: 50px 0;
    }
    .process-title {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 20px;
    }
    .faq-wrapper {
        flex-direction: column;
    }
    .faq-left {
        order: 1;
        margin-right: 0;
    }
    .expert-item__block {
        display: none;
    }
    .faq-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .faq-content {
        padding: 15px;
    }
    .reference-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .faq-form {
        margin-bottom: 20px;
    }
    .ct-items {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .ct-content {
        font-size: 20px;
        line-height: 28px;
    }
    .recruit-wrapper {
        flex-direction: column;
    }
    .recruit-left {
        max-width: 800px;
        margin-top: 20px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .offer-inner {
        grid-template-columns: repeat(4, 1fr);
    }
    .offer-item__title {
        font-size: 20px;
        line-height: 25px;
        margin-right: 10px;
    }
    .offer-address img {
        margin-right: 5px;
    }
    .offer-link {
        border: 1px solid #fff;
        background-color: #fff;
        color: var(--blue);
        padding: 6px 14px;
        font-size: 14px;
        font-weight: 600;
        line-height: 24px;
        text-align: center;
        display: inline-block;
        transition: all .3s ease;
    }
    .offers-item__title {
        font-size: 25px;
        line-height: 35px;
        padding-bottom: 15px;
    }
    .offers-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .singleoff-item {
        flex-direction: column;
    }
    .singleoff-item .offer-address {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .singleoff-item .offer-address:last-child {
        margin-bottom: 0;
    }
    .off-wrapper,
    .dov-wrapper {
        flex-direction: column;
    }
    .off-left,
    .dov-left {
        max-width: 800px;
        margin-right: 0;
    }
    .dov {
        padding: 30px 0;
    }
    .ab-wrapper {
        flex-direction: column;
    }
    .ab-left {
        order: 1;
        margin-right: 0;
    }
    .ab-right {
        max-width: 800px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .politics-inn p,
    .politics-inn  {
        word-break: break-word;
    }
    .rodo {
        padding: 0px 0 0;
    }
}

@media (max-width: 577px) {
    .footer-bottom_l ul {
        flex-direction: column;
    }
    .footer-bottom_l ul li {
        margin-bottom: 10px;
    }
    .footer-bottom_l ul li:last-child {
        margin-bottom: 0;
    }
    .brand-img {
        max-width: 130px;
    }
    .intro-form__inner {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .intro-header h2 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .intro-header p {
        font-size: 14px;
        line-height: 18px;
    }
    .intro-header {
        margin-bottom: 15px;
    }
    .intro-inner {
        margin-bottom: 30px;
        padding: 15px;
        margin-top: 20px;
    }
    .button-send {
        width: 100%;
        text-align: center;
    }
    .industry-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .industry-header h1,
    .order-item .order-item__right h2, .order-item:nth-child(odd) .order-item__right h2, .order-item:nth-child(even) .order-item__right h2,
    .title,
    .work-left h2,
    .howwe-right h2,
    .recruit-left h1,
    .ab-right h1,
    .singleblog-content h1 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 15px;
    }
    .benefits-header h4 {
        font-size: 20px;
        line-height: 28px;
    }
    .industry-content h3 {
        font-size: 25px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    .mb-75,
    .order-item,
    .faq-wrapper {
        margin-bottom: 30px;
    }
    .content p, .benefits-content p {
        font-size: 14px;
    }
    .benefits-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }
    .benefits-header img {
        width: 26px;
        height: 26px;
        margin-right: 8px;
    }
    .recruit-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .recruit-content h4 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .work-head h4,
    .numbers-content h4 {
        font-size: 18px;
        line-height: 25px;
    }
    .numbers-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }
    .numbers__item-head,
    .propose-wrapper h2, .propose-item__num, .dov-left h2,
    .industry-content h3, .propose-content h2, .per-content h2, .singleblog-content h2, .fsingle-title, .fsignle-content h3 {
        font-size: 25px;
        line-height: 32px;
    }
    .numbers-content h4,
    .singleblog-content h3,
    .singleblog-content h4 {
        font-size: 20px;
        line-height: 30px;
    }
    .numbers-content p,
    .industry-header p,
    .opinions-content,
    .work-text,
    .howwe-right p,
    .howwe-right,
    .howwe-right ul,
    .faq-content,
    .faq-content p,
    .recruit-left,
    .recruit-left p,
    .singleoff-content,
    .propose-wrapper p,
    .dov-left p,
    .propose-content p,
    .ab-right,
    .ab-right p,
    .services-content,
    .services-content p,
    .warto-content,
    .warto-content p,
    .blogmain-item__category,
    .blogmain-date,
    .singleblog-content,
    .singleblog-content p,
    .fsignle-content,
    .fsignle-content p,
    .form-inner label,
    .form-inner input,
    .ct-cont, .ct-cont p {
        font-size: 14px;
        line-height: 22px;
    }
    .opinions-item img {
        max-width: 16px;
        margin-right: 8px;
    }
    .blogmain-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
        margin-bottom: 20px;
    }
    .about {
        height: 300px;
    }
    .indust-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .industry-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    .fits-item {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .fits-item:last-child {
        margin-bottom: 0;
    }
    .fits-left {
        height: auto;
        padding: 20px 0;
    }
    .fits-item:nth-child(odd) .fits-left:after {
        display: none;
    }
    .fits-head h3,
    .what-title,
    .files-title {
        font-size: 20px;
        line-height: 28px;
    }
    .what-title,
    .files-title {
        margin-bottom: 15px;
    }
    .fits-head img {
        max-width: 45px;
        width: 100%;
        max-height: auto;
        margin-right: 10px;
    }
    .fits-item:nth-child(even) .fits-right {
        margin-right: 0;
    }
    .fits-item:nth-child(even) .fits-left {
        order: 0;
    }
    .process-items,
    .variants-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .process-text h5,
    .what-content h5,
    .whywe-item h5 {
        font-size: 18px;
        line-height: 24px;
    }
    .process-icon,
    .offers-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .process-icon img,
    .industry-icon img,
    .ct-item__icon img,
    .offers-icon img,
    .onct-item__icon img,
    .what-item__icon img {
        max-width: 30px;
    }
    .process {
        padding: 30px 0;
    }
    .industry-icon,
    .ct-item__icon,
    .onct-item__icon,
    .what-item__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .reference {
        background-color: var(--light-blue);
        padding: 20px 0;
    }
    .ctform .ct-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .offer-inner {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }
    .offer-item__title {
        margin-right: 0;
    }
    .offer-link {
        max-width: fit-content;
        padding: 0;
    }
    .offers-item__title {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 10px;
    }
    .singleoff {
        padding: 20px 0;
    }
    .onct-item__text {
        font-size: 20px;
        line-height: 28px;
    }
    .onct-item {
        padding: 15px;
    }
    .propose-items {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 20px;
    }
    .propose-wrapper {
        margin-bottom: 30px;
    }
    .propose {
        padding: 20px 0;
    }
    .per-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .industry-content h3, .propose-content h2, .per-content h2 {
        font-size: 25px;
        line-height: 30px;
    }
    .dov {
        padding: 0px 0;
    }
    .services-items, .warto-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .services-content a {
        padding: 5px 0px;
        font-size: 14px;
        line-height: 22px;
        margin-top: 5px;
    }
    .services-content h3 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .services-inner {
        padding: 15px;
    }
    .off-item {
        margin-bottom: 10px;
    }
    .blogpage {
        padding-top: 0px;
    }
    .whywe-items,
    .what-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .what {
        padding: 20px 0;
    }
    .ct-items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .files-inner {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    .files-inner img {
        margin-bottom: 10px;
    }
    .files-ct {
        margin-bottom: 10px;
    }
}

.header .menu > .menu-item.active > a i  {
    transform: rotate(90deg);
}

div.rsfcf_circles-slider {
    margin: 0!important;
    margin-top: 5px!important; ;
}

.comment-form-cookies-consent {
    margin-bottom: 24px;
}

.comment-form-cookies-consent label:hover {
    cursor: pointer;
}

.comment-form-cookies-consent input[type="checkbox"] {
    position: relative;
    border: 1px solid #3C8FFF;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 !important;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 18px;
    width: 18px;
    max-width: 100%;
    -webkit-appearance: none;
    opacity: 0.5;
    margin-right: 10px;
}

.comment-form-cookies-consent input[type="checkbox"]:hover {
    opacity: 1;
}

.comment-form-cookies-consent input[type="checkbox"]:checked {
    background-color: #3C8FFF;
    opacity: 1;
}

.comment-form-cookies-consent input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.comment-form-cookies-consent-label {
    display: flex;
}

.wpcf7-list-item-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: var(--grey);
    margin-left: 10px;
}

.form-upload .box {
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-upload .box:hover {
    background-color: rgba(21, 24, 65, 0.15);
    transition: all 0.3s ease;
}

.form-upload input {
    font-weight: 400;
    font-size: 16px;
    color: #00838f;
    width: 100%;
    padding: 11px 11px 11px 0;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

.form-wrapper__text {
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    color: #00838f;
}

/* style 4 */

.inputfile-4 + label {
    color: #00838f;
}

.inputfile-4:focus + label,
.inputfile-4.has-focus + label,
.inputfile-4 + label:hover {
    color: #722040;
}

.inputfile-4 + label figure {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d3394c;
    display: block;
    padding: 20px;
    margin: 0 auto 10px;
}

.inputfile-4:focus + label figure,
.inputfile-4.has-focus + label figure,
.inputfile-4 + label:hover figure {
    background-color: #722040;
}

.inputfile-4 + label svg {
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}

.form-upload {
    margin-top: 30px;
    margin-bottom: 28px;
}

.form-upload .box .form-upload__span {
    color: #000;

    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: flex;
}

.form-upload .box .form-upload__span > div {
    margin-left: 5px;
}

.form-upload .box .form-upload__span::after {
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
    width: 20px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.remove {
    color: #000;
}

.form-upload #file-4 {
    display: none;
}

.form-upload label[for="file-input"] * {
    vertical-align: middle;
    cursor: pointer;
}

.form-upload label[for="file-input"] span {
    margin-left: 10px;
}

.form-upload i.remove {
    vertical-align: middle;
    margin-left: 5px;
    cursor: pointer;
    display: none;
}

.form-upload label {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-upload label svg {
    margin-right: 14px;
}

.singleblog-content ol li,
.singleblog-content ul li {
    list-style: auto;
    margin-bottom: 10px;
}

.singleblog-content ol,
.singleblog-content ul {
    padding-left: 15px;
}

.blogmain-item__category a {
    color: #C95848;
}

.post-link-wrapper {
    position: relative;
}

.full-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    text-indent: -9999px;
    background: rgba(0,0,0,0);
}

.blogmain-item__category a {
    position: relative;
    z-index: 2;
}

.fsignle-content {
    margin-bottom: 40px;
}

@media (max-width: 577px) {
    .fsignle-content {
        margin-bottom: 25px;
    }
}

.blogmain-item img {
    margin-top: 0;
}

.post-navigation {
    display: none;
}

/* --- Tabela wyników --- */

.results ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.results li {
    margin-bottom: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    position: relative;
    font-weight: 500;
}

.results li > div {
    float: right;
    font-weight: 600;
    color: #111;
}

.results .toggle {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.results .toggle::after {
    content: "▶";
    position: absolute;
    right: 10px;
    top: 14px;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
}

.results .toggle.active::after {
    transform: rotate(90deg);
}

.results .nested {
    display: none;
    margin-top: 10px;
    padding-left: 15px;
    background: #fff;
    border-left: 3px solid #ccc;
    border-radius: 0 0 8px 8px;
}

.opinions {
    position: relative;
}

.opinions-wrapper {
    position: relative;
}

.opinions-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.opinions-content {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.swiper-pagination-bullet {
    background: transparent;
    color: #000;
    font-weight: bold;
    border: 1px solid #ccc;
    width: auto;
    padding: 4px 8px;
    border-radius: 4px;
    margin: 0 4px;
    transition: background 0.3s;
}

.swiper-pagination-bullet-active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

/* Ukryj na mobile */
.desktop-only {
    display: grid;
}

.mobile-only {
    display: none;
}

/* Media query dla mobile */
@media (max-width: 768px) {
    .opinions-items.desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
    .opinions-pagination-container {
        display: none!important;
    }
}

.opinions-pagination-container {
    margin-top: 120px;
}

.opinions-pagination {
    display: flex;
    justify-content: center;
}

.opinions-page-btn {
    font-size: 20px;
    font-weight: 800;
    margin: 0 12px;
    color: var(--main);
}

.opinions-page-btn.active {
    background-color: var(--blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    padding: 9px;
    border-radius: 10px;
}

.mobile-only .swiper-wrapper {
    box-sizing: border-box!important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next,
.swiper-button-next {
    display: none!important;
}

.file-upload {
    display: flex;
    align-items: center;
    border: 2px dashed #2684FF;
    border-radius: 10px;
    padding: 20px;
    background-color: #f6f9fe;
    position: relative;
    cursor: pointer;
    gap: 10px;
    flex-wrap: wrap;
}

.file-upload:hover {
    background-color: #e8f1fd;
}

.file-upload .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.file-upload .text {
    color: #757575;
    font-size: 16px;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload .remove-file {
    background: none;
    border: none;
    color: #d32f2f;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    z-index: 3;
}

.range-container {
    margin-top: -22px;
    border-radius: 12px;
    color: white;
    width: fit-content;
}

.range-container label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.range-wrapper {
    gap: 16px;
}

.range-wrapper span {
    font-size: 16px;
    font-weight: 500;
    min-width: 40px;
    display: flex;
    justify-content: flex-end;
}

.range-wrapper input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 250px;
    max-width: 100%;
    height: 8px;
    border-radius: 10px;
    outline: none;
    background: rgba(255, 255, 255, 0.3); /* fallback, JS nadpisze */
    transition: background 0.2s ease-in-out;
    padding: 0;
}

.range-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background-color: #3C8FFF;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -2px; /* center thumb vertically on 8px track */
}

.range-wrapper input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background-color: #3C8FFF;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 577px) {
    .range-container {
        margin-top: 0;
        width: 100%;
    }
    .range-wrapper input[type="range"] {
        width: 100%;
    }
}

.form-upload p {
    margin-bottom: 5px;
}

.mwrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-item a {
    display: flex;
    align-items: center;
    color: var(--main);
}

.lang-item {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 993px) {
    .mwrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .lang-item {
        padding: 0.75rem 1rem;
    }
    .brand-img {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
	.speak-wrapper {
		flex-direction: column;
	}
	.speak-left {
		max-width: 800px;
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.speak-left h2 {
		font-size: 35px;
        	line-height: 48px;
        	margin-bottom: 20px;
	}
}

@media (max-width: 577px) {
	.speak-left h2 {
		font-size: 25px;
        	line-height: 35px;
        	margin-bottom: 15px;
	}
	.speak-left, .speak-left p {
		font-size: 14px;
		line-height: 22px;
	}
	.button-send {
		width: 100%;
}
	.intro-form__send {
	display: block;
}
.order-item__right a,
.loadmore,
.expert-text a   {
	width: 100%;
	text-align: center;
}
.about {
background-attachment: scroll;
}
}

.container-max {
	max-width: 90vw;
	margin: 0 auto;
	position: relative;
}

.over {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, rgba(255,255,255, 0.7), rgba(255,255,255, 0.01));
}

.newitem {
	border: 1px solid #3C8FFF;
	border-radius: 10px;
	padding: 32px;
}

.newitem h1,
.newitem h2 {
	font-size: 24px;
	font-weight: 800;
	line-height: 32px;
	color: #010205;
	margin-bottom: 24px;
}

.newitem,
.newitem p {
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
	color: #5C5D5F;
}

.newitem__content a {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 32px;
	color: #052A44;
	text-decoration: none;
	transition: all .3s ease;
	display: flex;
	align-items: center;
}
.newitem__content a:hover {
	color: var(--blue);
	transition: all .3s ease;
}

.newitem__content a img {
	margin-right: 8px;
}

.newitems {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 16px;
}

.mt-75 {
	margin-top: 75px;
}

.mb-35 {
	margin-bottom: 35px;
}

@media (max-width: 768px) {
	.newitems {
		grid-template-columns: repeat(1, 1fr);
		
	}
}

@media (max-width: 576px) {
	.newitem h1, .newitem h2 {
    		font-size: 20px;
    		font-weight: 800;
    		line-height: 26px;
    		margin-bottom: 14px;
	}
	.newitem, .newitem p {
    		font-size: 14px;
       		line-height: 24px;
	}
	.newitem__content a {
		font-size: 14px;
	}
	.mt-75 {
		margin-top: 30px;
	}
	.newitem {
		padding: 16px;
	}
}

.faq-leftwrapp {
	margin-top: 40px;
}


.faq-leftwrapp h3 {
	font-size: 24px;
	font-weight: 800;
	line-height: 32px;
	color: #010205;
	margin-bottom: 24px;
}

.faq-leftt__icon {
	max-width: 24px;
	width: 100%;
	height: 24px;
	background-color: #3C8FFF;
	border-radius: 8px;
	position: relative;
	margin-right: 8px;
}

.faq-leftt__icon img {
	max-width: 13px;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.faq-leftinn {
	position: relative;
}

.faq-leftt {
	display: flex;
	align-items: center;
}

.faq-leftt__content a {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 32px;
	color: #052A44;
	text-decoration: none;
	transition: all .3s ease;
}

.faq-leftt__content a:hover {
	color: #3C8FFF;
	transition: all .3s ease;
}

.intro-wrapper {
	height: 500px;
    background-size: contain;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top center;
    border-radius: 20px;
    position: relative;
}

@media (max-width: 992px) {
	.intro-wrapper {
		height: 450px;
		background-attachment: scroll;
		background-size: cover;
	}
}

@media (max-width: 577px) {
    .intro-wrapper {
        height: 300px;
	background-position: top center;
	background-size: cover;
    }
	.about {
		background-position: top center;
	}
}

.page-id-948 section.blogmain {
	display: none;
}