@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Regular.woff2') format('woff2'),
        url('../fonts/Barlow-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Medium.woff2') format('woff2'),
        url('../fonts/Barlow-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-SemiBold.woff2') format('woff2'),
        url('../fonts/Barlow-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Bold.woff2') format('woff2'),
        url('../fonts/Barlow-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}




*, *::before, *::after {
    box-sizing: border-box;
}
::selection {
  background-color: #fdaa7d;
}

main > :where(:not(.alignleft):not(.alignright):not(.alignfull)), .container {
    max-width: 1288px;
    margin-left: auto;
    margin-right: auto;
}
.alignfull {
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}
.alignfull .container {

}

html {
    scroll-behavior: smooth;
}
body {
    background: #F5F5F5 url('../svg/bg.svg') no-repeat;
    background-size: 100% auto;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    color: #2C2C2C;
    line-height: 1.5;
    color: #0a0b0c;
    margin: 0;
}

main {
    padding: 0 2rem;
    overflow-x: hidden;
}
@media screen and (max-width: 480px) {
    main {
        padding: 0 1.5rem;
    }
}
section {
    scroll-margin-top: 6.5rem; /* висота хедера */
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: .25rem;
    font-weight: 500;
}

input:not( [type="checkbox"], [type="radio"], [type="file"] ) {
    width: 100%;
    height: 48px;
    border-radius: .5rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0 1rem;
    font-size: 1rem;
    font-family: inherit;
}
input:not( [type="checkbox"], [type="radio"] ):focus {
    outline: none;
    border-color: #F46F25;
}
input[type="checkbox"] {
    margin: 0;
    padding: 0;
    width: 1rem;
    height: 1rem;
}
textarea {
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    border-radius: .5rem;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    resize: none;
    overflow-y: hidden;
}
textarea:focus {
    outline: none;
    border-color: #F46F25;
}
button {
    padding: 0;
    margin: 0;
    border: 0 none;
    cursor: pointer;
}
input {

}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}
h3 {
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    font-weight: 500;
}
ul {
    margin-top: .5rem;
}
strong {
    font-weight: 600;
}
img {
    vertical-align: top;
}
.header {
    width: 100%;
    top: 0;
    z-index: 1000;
    position: sticky;
    transition: all .5s ease-out;
}
.header.scroll {
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 40px 0 rgba(0,0,0,.06);
}

.header {
    padding: 0 2rem;
}    
.admin-bar .header {
    top: 32px;
}
.header__container  {
    min-height: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}
.header__start {
    display: flex;
    justify-content: flex-start;
} 
.header__nav {
    display: flex;
    justify-content: center;
}
.header__end {
    display: flex;
    justify-content: flex-end;
}

.primary__nav {
    margin: 0;
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    white-space: nowrap;
}
.primary__nav a {
    color: inherit;
    text-decoration: none;
}
.primary__nav a:hover,
.primary__nav a:focus {
    color: #F46F25;
}

@media screen and (max-width: 768px) {
    .primary__nav {
        display: none;
    }
}


.btn {
    text-decoration: none;
}
.btn--sm {
    padding: 0 1.5rem;
    height: 44px;
    border-radius: 2rem;
    font-size: 14px;
}
.btn--lg {
    padding: 0 2rem;
    height: 3.5rem;
    font-size: 1rem;
    border-radius: 2rem;
}
.btn--primary {
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: #F46F25;
    font-weight: 500;
    background: linear-gradient(135deg, #F4902C 0%, #F4592C 100%);
    transition: all 0.125s;
    white-space: nowrap;
    justify-content: center;
}
.btn--secondary {
    color: #040404;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.125s;
    background: #fff;
    margin-left: 16px;
    box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.1);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244, 89, 44, 0.3);
}




.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0;
    height: 60vh;
}
.hero__title {
    font-size: 3.75rem;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    font-weight: 400;
}
.hero__title strong {
    font-weight: 600;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin: 0 0 2rem;
}

.hero__cta {
    margin-top: 3rem;
}
.hero__list {
    display: flex;
    gap: 1rem;
    padding: 0;
    list-style-position: inside;
    list-style-image: url('../svg/bullet.svg');
    margin-top: 2rem;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .hero {
        height: auto;
    }
    .hero__list {
        flex-direction: column;
        gap: .5rem;
    }
    .hero__cta .btn--secondary {
        display: none;
    }
}

.custom-bullets {
    padding: 0;
        list-style-position: inside;

    list-style-image: url('../svg/bullet.svg');
}

.hero__media {
    position: relative;
    height: 100%;
    margin-right: -108px;
}
.hero__media img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 0;
        grid-template-columns: 1fr;
    }
    .hero__media {
        display: none;
    }
    
}





.section__header {
    text-align: center;
    margin-bottom: 3rem;
}
.section__header--start {
    text-align: start;
}
.section__subtitle {
    margin: 0;
    text-transform: uppercase;
    color: #F4592C;
    font-weight: 600;
    font-size: 14px;
}

.section__title {
    margin: 0;
    font-size: 2rem;
    font-weight:600;
    line-height: 1;
}
.section__title--sm {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.section__title--start {
    text-align: start;
}

.statistics {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.statistics__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.statistics__item {
    padding: 2rem;
    border-radius: 1rem;
    border: 1.4px dashed rgba(0, 0, 0, 0.15);
    text-align: center;
}
.statistics__number {
    font-size: 4rem;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}
.statistics__label {
    margin: 0;
    font-size: 1.125rem;
    color: #5d5d5d;
    margin-top: .25rem;
}


@media screen and (max-width: 768px) {
    .statistics__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .statistics__list {
        grid-template-columns: 1fr;
    }
    
}



.services {
    position: relative;
    padding: 4rem 0;
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.services::after {
    content: '';
    position: absolute;
    inset: 0 -3rem;
    background: #fff;
    z-index: -1;
    border-radius: 1rem;
    box-shadow:  1px 2px 0px #00000008, 0px 15px 30px 0px #00000012;
}


.services__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.services__item {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    padding-right: 1rem;
}
.services__icon {
    margin-bottom: 1rem;
}
.services__title {
    margin: 0 0 .5rem;
}
.services__description {
    margin: 0;
}
.services__link {
    color: inherit;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}



@media screen and (max-width: 768px) {
    .services__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .services__list {
        grid-template-columns: 1fr;
    }
    
}



.cta {
    color: #fff;
    background: #000;
    padding: 4rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
    gap: 2rem;
}
.cta__title {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 1rem;
}
.cta__description {
    opacity: .9;
    font-size: 1.125rem;
}
.cta__description p {
    margin: 0;
}
.cta__contant {
    max-width: 640px;
}
@media screen and (max-width: 768px) {
    .cta {
        flex-direction: column;
        align-items: start;
        padding: 3rem;
    }
    .cta__content {
        max-width: none;
    }
}
@media screen and (max-width: 480px) {
    .cta {
        padding: 2rem;
    }
    
}





.projects {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.projects__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.projects__item {
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
}
.projects__list img {
    width: 100%;
}


@media screen and (max-width: 768px) {
    .projects__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .projects__list {
        grid-template-columns: 1fr;
    }
    
}   

.projects__content {
    padding: 1rem 2rem;
}
.projects__title {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    gap: 6px;
}
.projects__title small {
    font-weight: 500;
    text-transform: none;
    opacity: .8;
    font-size: 14px;
    font-weight: 300;
}





.logos {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.logos__list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.logos__list img {
    filter: grayscale(1);
}
.logos__list a {
    transition: all 0.125s;
}
.logos__list a:hover {
    transform: translateY(-1px);
}
.logos__list a:hover img {
    filter: grayscale(0);
}

@media screen and (max-width: 768px) {
    .logos__list {
        justify-content: center;
    }
    
}


.process {
    background: #fff;
    padding: 6rem 0;
}

.process__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}



.process__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}
.process__step {
    margin: 0 0 .5rem;
}
.process__description {
    margin: 0;
}


@media screen and (max-width: 768px) {
    .process__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .process__list {
        grid-template-columns: 1fr;
    }
    
}




.testimonials {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.testimonials__list {
    display: grid;
    gap: 2rem;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 2);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    box-sizing: border-box;
    scrollbar-width: none;
}
.testimonials__item {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
}


.testimonials__quote {
    margin: 1rem 0 1rem;
}
.testimonials__author {
    margin: 0;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .testimonials__list {
        grid-auto-columns: 100%;
    }
    
}




.contact {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding: 6rem 0;
}

.contact__content {
    padding-top: 2rem;
}
.contact__form {
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 1px 2px 0px #00000008, 0px 15px 30px 0px #00000012;    
}

@media screen and (max-width: 768px) {
    .contact {
        grid-template-columns: 1fr;
    }
    .contact__form {
        order: 2;
        padding: 1.5rem;
    }
}








.ud-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}   

.ud-form__notice {
    padding: 1rem 1.25rem;
    border-radius: .75rem;
    font-size: .95rem;
    line-height: 1.5;
}

.ud-form__notice--success {
    background: #edf8ef;
    border: 1px solid #bfdcc4;
    color: #1f5c2d;
}

.ud-form__notice--error {
    background: #fff1ee;
    border: 1px solid #f1c1b7;
    color: #8f2d1d;
}

.ud-form__row {
    display: flex;
    gap: 2rem;
}
.ud-form__field {
    flex: 1;
}

.up-form__label--file {
    font-weight: 400;
}
.ud-form__file-upload {
    position: relative;
    border: 1.4px dashed rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: .5rem;
    text-align: center;
    background: #fbfbfb;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
}
.ud-form__file-upload:hover,
.ud-form__file-upload:focus {
    background: #fff;
}
.ud-form__input--file {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.ud-form__file-info {
    font-size: 14px;
}

.ud-form__field--checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ud-form__description {
    margin: 0 0 .5rem;
    font-size: 14px;
    opacity: .7;
}

.ud-form__row--agreement {
    margin: 1rem 0;
}
.ud-form__label--checkbox {
   margin: 0;
   font-weight: 400;
}

.founder-photo {
    max-width: 60px;
    border-radius: 50%;
}
.ud-contact-person {
    display: flex;
    gap: 1rem;
    align-items: start;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #00000036;
}
.ud-contact-person strong {
    font-weight: 600;
}
.ud-contact-person p {
    margin: 0;
    margin: .25rem 0;
}
.ud-contact-person a {
    color: #F46F25;
}
@media screen and (max-width: 480px) {
    .ud-form__row {
        flex-direction: column;
        gap: 1rem
    }
}



.site-footer {
    background: #000;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    margin-top: 6rem;
}


