/*
Theme Name: Kassett
*/

/*
=================================== Table of contents ================================ 

1. Fonts
2. General css Reset code


*/

/* ================================ Fonts ============================================ */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../kassett/assets/fonts/Roboto-Regular.woff2') format('woff2'), url('../kassett/assets/fonts/Roboto-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../kassett/assets/fonts/Roboto-Medium.woff2') format('woff2'), url('../kassett/assets/fonts/Roboto-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../kassett/assets/fonts/Roboto-Bold.woff2') format('woff2'), url('../kassett/assets/fonts/Roboto-Bold.woff') format('woff');
}

@font-face {
    font-family: 'RobotoCondensed';
    font-style: normal;
    font-weight: 400;
    src: url('../kassett/assets/fonts/RobotoCondensed-Regular.woff2') format('woff2'), url('../kassett/assets/fonts/RobotoCondensed-Regular.woff') format('woff');
}

@font-face {
    font-family: 'RobotoCondensed';
    font-style: normal;
    font-weight: 500;
    src: url('../kassett/assets/fonts/RobotoCondensed-Medium.woff2') format('woff2'), url('../kassett/assets/fonts/RobotoCondensed-Medium.woff') format('woff');
}

@font-face {
    font-family: 'RobotoCondensed';
    font-style: normal;
    font-weight: 700;
    src: url('../kassett/assets/fonts/RobotoCondensed-Bold.woff2') format('woff2'), url('../kassett/assets/fonts/RobotoCondensed-Bold.woff') format('woff');
}

/* ================================ General css Reset code =========================== */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border: 0;
    padding: 0;
    margin: 0
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background: #FCFCFC;
}
body.overlay {
    position: relative;
}
body.lock {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
}
body.overlay:before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.40);
    z-index: 101;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
    margin: 0;
    padding: 0;
}
ul, ol {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: none;
    border: none;
}
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}
img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================== Container settings ==============================  */

main.main {
    border-radius: 0px 0px 40px 40px;
    overflow: hidden;
    z-index: 2;
    position: relative;
    background: #FCFCFC;
}
.container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========================================= General Classes ============================= */

.section-el {
    padding: 100px 0;
}
.h1-title {
    color: #1F2027;
    font-family: 'RobotoCondensed';
    font-size: 102px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 102px */
}
.h2-title {
    color: #040610;
    font-family: 'RobotoCondensed';
    font-size: 84px;
    font-style: normal;
    font-weight: 500;
    line-height: 102%; /* 85.68px */
}
.sctn-subtitle {
    color: #040610;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 24px;
    line-height: 100%; /* 24px */
    margin-bottom: 16px;
    display: block;
}
.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: 20px;
    border: 1px solid #040610;
    background: #FFF;
}
.btn-light span {
    color: #040610;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
}
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 25px;
    background: #040610;
}
.btn-dark span {
    color: #FFF;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
}


/* ========================================= Header ====================================== */

header.header {
    background: #FCFCFC;
}
.header__content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}
.header__nav-menu-info {
    display: flex;
    align-items: center;
    gap: 48px;
}
.header__nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header__nav-link {
    color: #040610;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 120%; /* 19.2px */
    transition: .5s ease;
}
.header__burger {
    display: none;
}
.header__btn.btn-light svg {
    fill: #040610;
}


/* ======================================= Home Page ================================== */

/* hero screen start */
.hero {
    padding: 120px 0 100px;
}
.hero__content {
    margin-bottom: 120px;
}
.hero__title {
    margin-bottom: 48px;
}
.hero__color-word1 {
    background: linear-gradient(92deg, #C3EEDB 5.17%, #ABA5FA 38.34%, #EDC5F1 47.84%, #F7DDCD 85.98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__color-word2 {
    color: #B0BAC4;
}
.hero__flex-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero__text {
    color: #040610;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    max-width: 628px;
}


/* effect */

/* .slider {
    display: grid;
    grid-template-columns: var(--persent, 50%) 1fr;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
}
  
.slide {
    grid-row: 1/2;
    object-fit: cover;
}
  
.before {
    grid-column: 1/2;
    object-position: left;
}
  
.after {
    grid-column: 2/3;
    object-position: right;
}
  
.range {
    grid-column: 1/-1;
    grid-row: 1/2;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
  
.button-line {
    grid-column: 1/2;
    grid-row: 1/2;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4px;
    transform: translateX(50%);
    background: #fff;
    pointer-events: none;
}
  
.button-line::after {
    content: "❮ ❯";
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    box-sizing: border-box;
    line-height: 1;
    font-size: 20px;
    color: #000;
    background: #fff;
    cursor: pointer;
}
  
.range:focus-visible + .button-line::after {
    color: red;
    background: #fff;
}
  
.slider img {
    width: 100%;
    height: 800px;
    background: #FFF;
}
.slider img::after {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.8em;
}  
.slider-mega-btn {
    border: none;
    color: #fff;
    background: none;
}

.slider-mega-btn:hover {
    color: deeppink;
} */

/* effect end */

/* slider effect test start */

div#comparison { 
    width: 100%;
    height: 63vw;
    max-width: 100%;
    max-height: 800px;
    overflow: hidden;
    border-radius: 28px;
}
div#comparison figure { 
    /* background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/photoshop-face-before.jpg);  */
    background-image: url('../kassett/assets/img/slider-before.webp');
    background-size: cover;
    position: relative;
    font-size: 0;
    width: 100%; 
    height: 100%;
    margin: 0; 
}
div#comparison figure > img { 
    position: relative;
    width: 100%;
}
div#comparison figure div { 
    /* background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/photoshop-face-after.jpg); */
    background-image: url('../kassett/assets/img/slider-after.webp');
    
    background-size: cover;
    position: absolute;
    width: 50%; 
    box-shadow: 0 5px 10px -2px rgba(0,0,0,0.3);
    overflow: hidden;
    bottom: 0;
    height: 100%;
}
.comparison__input-wrapper {
    position: relative;
    top: -50%;
    left: -2%;
    background-color: transparent;
    width: 102%;
    transform: translateY(-50%); 
}
  
input[type=range]{
    -webkit-appearance:none;
    -moz-appearance:none;
    /* position: relative;
    top: -50%;
    left: 0; */
    background-color: transparent;
    width: 102%; 
    cursor: pointer;
}
input[type=range]:focus { 
    outline: none; 
}
input[type=range]:active { 
    outline: none;  
}
  
input[type=range]::-moz-range-track { 
    -moz-appearance:none;
      height:15px;
      width: 102%;
      background-color: rgba(255,255,255,0.1); 
      position: relative;
      outline: none;    
}
input[type=range]::active { 
    border: none; 
    outline: none;
}
input[type=range]::-webkit-slider-thumb {
      -webkit-appearance:none;
      width: 62px;
    height: 62px;
      background: #fff;
      border-radius: 50%;
}
input[type=range]::-moz-range-thumb {
    -moz-appearance: none;
    width: 62px;
    height: 62px;
    background: #fff;
    border-radius: 50%;
}   

  


/* slider effect test end */


/* hero screen end */

/* about us start */

.about-us__title {
    margin-bottom: 24px;
}
.about-us__content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 86px;
}
.about-us__content-main,
.about-us__content-advantages {
    flex-basis: 48%;
}
.about-us__text {
    color: #040610;
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
    margin-bottom: 44px;
    opacity: .7;
}
.numbers-block {
    padding: 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 24px;
    background-image: image-set(
        url('../kassett/assets/img/service-item-gradient.webp') 1x,
        url('../kassett/assets/img/service-item-gradient.png') 1x
    );
    max-width: 430px;
}
.numbers__num {
    color: #212121;
    font-family: 'Roboto';
    font-size: 59px;
    font-style: italic;
    font-weight: 700;
    line-height: 100%; /* 59px */
    text-transform: uppercase;
}
.numbers__text {
    color: #040610;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 600;
    line-height: 150%; /* 24px */
    text-wrap: pretty;
}
.about-us__content-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 60px;
    align-items: center;
    justify-content: center;
}
.about-us__advantages-item {
    flex-basis: calc(50% - 30px);
}
.about-us__advantages-item-image {
    display: inline-flex;
    width: 65px;
    height: 65px;
    align-items: center;
    justify-content: center;
    background: #EAEDF1;
    border-radius: 50%;
    margin-bottom: 16px;
}
.about-us__advantages-item-text {
    color: #040610;
    font-family: 'Roboto';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

/* about us end */

/* services start */

.services__title {
    margin-bottom: 32px;
}
.services__items-wrap {
    height: 520px;
    display: flex;
    gap: 12px;
}
.services__item {
    height: 100%;
    flex-basis: 132px;
    overflow: hidden;
    cursor: pointer;
    transition: all .7s;
    border-radius: 18px;
    background-image: image-set(
        url('../kassett/assets/img/service-item-bg.webp') 1x,
        url('../kassett/assets/img/service-item-bg.png') 1x
    );
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 27px 44px;
    position: relative;
}
.services__item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #EAEDF1;
    opacity: .8;
}
.services__item:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: image-set(
        url('../kassett/assets/img/service-item-gradient.webp') 1x,
        url('../kassett/assets/img/service-item-gradient.png') 1x
    );
    background-size: cover;
    background-repeat: no-repeat;
    display: none;
}
.services__item-arrow {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F3F3;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 5;
}
.services__item-arrow svg {
    transition: all .5s ease;
}
.services__item-text-wrap {
    z-index: 5;
    min-width: 446px;
    transform: rotate(-90deg);
    transition: .5s ease;

}
.services__item-title {
    /* min-width: 446px; */
    text-align: left;
    /* transform: rotate(-90deg); */
    transition: all .7s;
    color: #040610;
    font-family: 'Roboto';
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 36px */
    letter-spacing: 0.24px;
    text-wrap: nowrap;
}
.services__item-text {
    max-height: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    width: 355px;
    transform: translate(0px, 40px);
    /* margin-top: 6px; */
    color: #040610;
    font-family: 'Roboto';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

@media(min-width: 992px) {
    .services__item:hover {
        flex-basis: 520px;
        align-items: flex-start;
        justify-content: flex-end;
    }
    .services__item:hover::before {
        display: none;
    }
    .services__item:hover:after {
        display: block;
    } 
    .services__item:hover .services__item-arrow svg {
        transform: rotate(90deg);
    }
    .services__item:hover .services__item-text-wrap {
        transform: rotate(0deg);
        min-width: 100%;
    }
    /* .services__item:hover .services__item-title {
        transform: rotate(0);
        min-width: 100%;
    } */
    .services__item:hover .services__item-text {
        margin-top: 6px;
        transition-delay: .5s;
        opacity: 1;
        visibility: visible;
        height: auto;
        max-height: none;
        transform: translate(0px, 0px);
    }
}


/* services end */


/* portfolio start */

.portfolio__title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.portfolio__title-text {
    color: #040610;
    font-family: 'Roboto';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    max-width: 380px;
}
.portfolio__items-wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 20px;
}
.portfolio__item {
    flex-basis: calc(50% - 10px);
    width: calc(50% - 10px);
    position: relative;
}
.swiper.portfolio__swiper {
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
}
.swiper-pagination.portfolio__swiper-pagination {
    bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-pagination.portfolio__swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #BDBDBD;
    opacity: 1;
}
.swiper-pagination.portfolio__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: #FFFFFF;
}
.portfolio__swiper-slide-img {
    height: 440px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.portfolio__item-tags-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.portfolio__item-tag {
    border-radius: 20px;
    background: #EAEDF1;
    padding: 6px 16px;
    color: #040610;
    font-family: 'Roboto';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}
.portfolio__item-descr-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 0 12px;
}
.portfolio__item-title {
    color: #040610;
    font-family: 'Roboto';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
}
.portfolio__item-location {
    display: flex;
    align-items: center;
    gap: 4px;
}
.portfolio__item-location span {
    color: #3D3D3D;
    font-family: 'Roboto';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

/* portfolio end */

/* partners start */

.partners__title {
    margin-bottom: 45px;
}
.partners__items-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}
.partners__item {
    flex-basis: calc(33.333% - 10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 18px;
    background: #E6EAEF;
    padding: 22px 24px 22px 32px;
    position: relative;
    overflow: hidden;
}
.partners__item:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .5s ease;
    background-image: image-set(
        url('../kassett/assets/img/service-item-gradient.webp') 1x,
        url('../kassett/assets/img/service-item-gradient.png') 1x
    );
    background-size: cover;
    background-repeat: no-repeat;
}
.partner-logo {
    max-width: calc(100% - 80px);
    z-index: 2;
}
.partners__item-arrow {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
    background: #D4D8DE;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

/* partners end */

/* contact form start */

.contacts.section-el {
    border-radius: 0 0 40px 40px;
}

.contacts__content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}
.contacts__info,
.contacts__form-wrap {
    flex-basis: 50%;
}
.contacts__title {
    text-wrap: balance;
}
.form legend {
    color: #040610;
    font-family: 'Roboto';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 24px */
    margin-bottom: 32px;
}
.form__interest-btns-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px; 
}
.form__interest-btn {
    border-radius: 20px;
    border: 1px solid #040610;
    background: #FFF;
    padding: 10px 24px;
    color: #040610;
    font-family: 'Roboto';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    transition: .5s ease;
}
.form__interest-btn:hover {
    background: #E6EAEF;
}
.form__interest-btn.active {
    color: #FCFCFC;
    background: #040610;
}

.form__input-item {
    margin-bottom: 32px;
}
.form__input {
    width: 100%;
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 8px;
    color: #999;
    font-family: 'Roboto';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 130% */
    background-color: #FCFCFC;
}
.form__input.invalid {
    border-bottom: 1px solid #EB5757;
}
textarea#formMessage {
    resize: vertical;
    min-height: 35px;
}

.form__agreement_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}
.form__agree-text {
    color: #999;
    font-family: 'Roboto';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    background-color: #FCFCFC;
}
.form__privacy-link {
    text-decoration: underline;
}
.form__button.inactive {
    cursor: not-allowed;
    background-color: #999;
}
.form__error-msg {
    font-family: 'Roboto';
    display: none;
    align-items: center;
    color: #EB5757;
    font-size: 12px;
    margin: 10px 0;
    gap: 6px;
}
.form__error-msg.active {
    display: flex;
}



/* contact form end */


/* footer start */

.footer {
    padding: 107px 0 28px;
    background-image: url('../kassett/assets/img/footer-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -35px;
}
.copyrights-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
.copyrights-text,
.privacy-link {
    color: #242424;
    font-family: 'Roboto';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    opacity: .6;
}
.privacy-link:hover {
    text-decoration: underline;
}


.footer__content-wrap {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(36, 36, 36, .2);
}
.footer__logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer__logo-link {
    display: inline-block;
}
.footer__logo-link img {
    width: 210px;
}
.footer__logo-text {
    color: #242424;
    font-family: 'Roboto';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: 0.18px;
    max-width: 280px;
}

.footer__info-wrap {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}
.footer__nav-title,
.footer__contacts-title,
.footer__address-title {
    color: #000;
    font-family: 'Roboto';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
    margin-bottom: 20px;
}

.footer__contacts-link {
    color: #242424;
    font-family: 'Roboto';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    display: block;
    margin-bottom: 16px;
}
.footer__contacts-link:nth-last-child(1) {
    margin-bottom: 0;
}
.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 48px;
    max-width: 180px;
}
.footer__nav-list-item {
    flex-basis: calc(50% - 24px);
}

.footer__address-wrap {
    max-width: 202px;
}
.footer__address {
    color: #242424;
    font-family: 'Roboto';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    letter-spacing: 0.16px;
}


/* footer end */

/* ================================= Thank You Page Start ========================== */

body.page-template-page-thank-you {
    background-image: image-set(
        url('../kassett/assets/img/thank-you-bg.webp') 1x,
        url('../kassett/assets/img/thank-you-bg.png') 1x
    );
    background-size: cover;
    background-repeat: no-repeat;
}
body.page-template-page-thank-you header.header {
    background-color: transparent;
}
.thank-you {
    height: calc(100dvh - 70px);
}
.thank-you .container {
    height: 100%;
}
.thank-you__content-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.thank-you__message-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
}
.thank-you__message {
    padding: 32px;
    max-width: 420px;
    text-wrap: balance;
    color: #040610;
    font-family: 'Roboto';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 36px */
    background-image: image-set(
        url('../kassett/assets/img/service-item-gradient.webp') 1x,
        url('../kassett/assets/img/service-item-gradient.png') 1x
    );
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 18px;
}



/* ================================= Thank You Page End ========================== */

/* ================================= Privacy Policy Page Start ================================ */

.privacy {
    padding: 80px 0 120px;
}
.privacy-content {
    max-width: 793px;
}
.privacy h1 {
    color: #040610;
    font-family: 'RobotoCondensed';
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 95%; /* 49.4px */
    letter-spacing: -1.56px;
    margin-bottom: 24px;
}
.privacy h2 {
    color: #191A23;
    font-family: 'Roboto';
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 38.4px */
    margin-bottom: 24px;
}
.privacy p {
    color: #383838;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 192.857% */
    margin-bottom: 16px;
}
.privacy ul li,
.privacy ol li {
    color: #383838;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 192.857% */
    margin: 0 0 16px 20px;
}
.privacy ul li {
    list-style: disc;
}
.privacy ol li {
    list-style: numeric;
}


/* ================================= Privacy Policy Page End ================================ */

/* ============================================ Hover start =================================== */

@media(hover:hover) {

    .partners__item-arrow svg {
        transition: .5s ease;
    }
    .partners__item:hover .partners__item-arrow svg {
        transform: rotate(45deg);
    }
    .partners__item:hover:after {
        opacity: 1;
    }

}

/* ============================================ Hover end =================================== */


/* ================================= Adaptive Start ================================ */

@media(max-width: 1200px) {
    
    /* general classes 1200 start */

    .h1-title {
        font-size: 80px;
    }
    .h2-title {
        font-size: 64px;
    }

    /* general classes 1200 end */


    /* hero screen 1200 start */

    .hero__text {
        max-width: 487px;
    }

    /* hero screen 1200 end */

    /* about us 1200 start */

    .about-us__content-advantages {
        gap: 60px 40px;
    }

    /* about us 1200 end */

    /* our services 1023 start  */

    .services__item-arrow {
        left: 50%;
        transform: translateX(-50%);
    }

    .services__item:hover .services__item-arrow {
        left: 30px;
        transform: translateX(0);
    } 

    .services__item-title {
        font-size: 22px;
    }

    .services__item-text {
        width: 300px;
    }

    /* our services 1023 end  */

    /* portfolio 1200 start */

    .portfolio__swiper-slide-img {
        height: 350px;
    }

    /* portfolio 1200 end */

    /* footer 1200 start */

    .footer__info-wrap {
        gap: 50px;
    }

    /* footer 1200 end */

}

@media(max-width: 1023px) {
    
    /* footer 1023 start */

    .footer__info-wrap {
        gap: 40px;
    }

    /* footer 1023 end */

}

@media(max-width: 991px) {

    /* general classes 991 start */

    .h1-title {
        font-size: 60px;
    }

    .h2-title {
        font-size: 56px;
    }

    .section-el {
        padding: 70px 0;
    }

    /* general classes 991 end */


    /* hero screen 991 start */

    .hero {
        padding: 70px 0;
    }

    .hero__text {
        font-size: 18px;
        max-width: 410px;
    }

    /* hero screen 991 end */

    /* about us 991 start */

    .about-us__content-wrap {
        flex-direction: column;
    }

    .numbers-block {
        margin: auto;
    }

    .about-us__advantages-item {
        text-align: center;
    }

    .about-us__advantages-item-text {
        text-wrap: balance;
    }

    /* about us 991 end */

    /* our services 991 start */

    .services__items-wrap {
        flex-wrap: wrap;
        gap: 24px;
        height: auto;
    }
    
    .services__item {
        flex-basis: calc(50% - 12px);
        height: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .services__item-text-wrap {
        transform: none;
        min-width: auto;
    }
    .services__item-title {
        transform: none;
        min-width: auto;
        text-wrap: wrap;
    }

    .services__item-text {
        display: block;
        max-height: none;
        height: auto;
        opacity: 1;
        visibility: visible;
        width: 100%;
        transform: none;
    }

    .services__item-arrow {
        display: none;
    }

    .services__item:hover .services__item-arrow {
        left: auto;
    }

    /* our services 991 end */

    /* portfolio 991 start */

    .portfolio__swiper-slide-img {
        height: 250px;
    }
    .portfolio__item-location span {
        font-size: 16px;
    }

    /* portfolio 991 end */

    /* partners 991 start */
    
    .partners__item {
        padding: 20px;
    }
    .partner-logo {
        flex-basis: calc(100% - 60px);
    }
    .partners__item-arrow {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
    .partners__item-arrow svg {
        width: 15px;
    }
    
    /* partners 991 start */
  
    /* contacts 991 start */

    .contacts__content {
        flex-direction: column;
        gap: 60px;
    }

    /* contacts 991 end */

    /* footer 991 start */

    .footer__content-wrap {
        flex-direction: column;
    }
    .footer__logo-wrap {
        align-items: center;
    }
    .footer__logo-text {
        max-width: none;
    }
    .footer__info-wrap {
        justify-content: space-between;
    }

    /* footer 991 end */

    /* thank you page 991 start */

    .thank-you__message {
        max-width: 360px;
        font-size: 20px;
    }

    /* thank you page 991 end */

}


@media(max-width: 767px) {

    /* general classes 767 start */

    .h1-title {
        font-size: 52px;
    }
    .h2-title {
        font-size: 52px;
    }
    .section-el {
        padding: 50px 0;
    }

    /* general classes 767 end */

    /* header 767 start */
    header.header {
        margin: 0;
    }
    .header__content-wrapper {
        min-height: 64px;
    }
    .header__logo-wrapper {
        position: relative;
        z-index: 101;
    }
    .header__burger {
        display: block;
        position: relative;
        z-index: 101;
        width: 24px;
        height: 16px;
    }
    .header__burger span {
        position: absolute;
        left: 0;
        width: 100%;
        background: #1F2029;
        height: 2px;
        top: 7px;
        transition: .4s;
        border-radius: 1px;
    }
    .header__burger::before,
    .header__burger::after {
        content: '';
        background: #1F2029;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: .4s;
        border-radius: 1px;
    }
    .header__burger::before {
        top: 0;
    }
    .header__burger::after {
        bottom: 0;
    }
    .header__burger.active span {
        transform: scale(0);
    }
    .header__burger.active::before {
        transform: rotate(45deg);
        top: 7px;
    }
    .header__burger.active::after {
        transform: rotate(-45deg);
        bottom: 7px;
    }
    .header__nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #fff;
        transform: translateX(100%);
        transition: all .5s ease;
        overflow: hidden auto;
        z-index: 0;
    }
    .header__nav-wrapper.active {
        transform: translateX(0);
        z-index: 100;
    }
    .header__nav-menu-info {
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 5;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        padding: 64px 16px;
        background-image: image-set(
            url('../kassett/assets/img/mob-menu-bg.webp') 1x,
            url('../kassett/assets/img/mob-menu-bg.png') 1x
        );
        background-size: cover;
        background-repeat: no-repeat;
    }
    .header__nav {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header__nav-list {
        display: flex;
        flex-direction: column;
        gap: 32px;
        justify-content: center;
        align-items: center;
    }
    .header__nav-link {
        font-size: 20px;
    }
    .header__btn.btn-light {
        border-radius: 25px;
        background: #040610;
        width: 100%;
        padding: 16px 28px;
        justify-content: center;
    }
    .header__btn.btn-light span {
        color: #fff;
    }
    .header__btn.btn-light svg {
        fill: #fff;
    }
    
    /* header 767 end */

    /* hero screen 767 start */

    .hero {
        padding: 64px 0 50px;
    }
    .sctn-subtitle {
        font-size: 20px;
    }
    .hero__title {
        margin-bottom: 40px;
    }
    .hero__flex-wrap {
        flex-direction: column-reverse;
        gap: 24px;
        align-items: flex-start;
    }
    .hero__text {
        font-size: 16px;
        max-width: 100%;
    }

    /* hero screen 767 end */

    /* about us 767 start */

    .about-us__text {
        margin-bottom: 24px;
    }
    .numbers__num {
        font-size: 40px;
    }
    .numbers__text {
        font-size: 14px;
    }
    .about-us__content-wrap {
        gap: 40px;
    }
    .about-us__content-advantages {
        justify-content: space-between;
        align-items: flex-start;
        gap: 32px 20px;
    }
    .about-us__advantages-item {
        flex-basis: calc(50% - 10px);
    }
    .about-us__advantages-item-text {
        font-size: 14px;
    }

    /* about us 767 end */

    /* our services 767 start */

    .services__item {
        flex-basis: 100%;
        padding: 24px;
        transition: all .5s ease;
        min-height: 108px;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    .services__item:hover {
        height: auto;
        align-items: flex-start;
    }
    .services__item:hover:before {
        display: none;
    } 
    .services__item:hover:after {
        display: block;
    } 
    .services__item-arrow {
        position: initial;
        display: flex;
        transform: none;
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }
    .services__item:hover .services__item-arrow svg {
        transform: rotate(90deg);
    }
    .services__item-text-wrap {
        flex-basis: calc(100% - 74px);
        width: calc(100% - 74px);
    }
    .services__item-title {
        font-size: 21px;
        transition: .5s ease;
        min-height: 60px;
        display: flex;
        align-items: center;
    }
    .services__item-text {
        max-height: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transform: translate(0px, 40px);
        font-size: 14px;
        margin: 0;
    }
    .services__item:hover .services__item-text {
        opacity: 1;
        visibility: visible;
        height: auto;
        max-height: none;
        transform: translate(0px, 0px);
        margin-top: 6px;
    }

    /* our services 767 end */

    /* portfolio 767 start */

    .portfolio__title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 24px;
    }
    .portfolio__title-text {
        font-size: 14px;
    }
    .portfolio__items-wrap {
        gap: 24px;
    }
    .portfolio__item {
        flex-basis: 100%;
    }
    .portfolio__item-tags-wrap {
        margin-bottom: 24px;
    }
    .portfolio__item-tag {
        padding: 4px 12px;
    }

    /* portfolio 767 end */

    /* partners 767 start */

    .partners__title {
        margin-bottom: 24px;
    }
    .partners__items-wrap {
        flex-direction: column;
    }
    .partners__item {
        width: 100%;
        padding: 20px 24px;
        gap: 24px;
    }
    .partner-logo {
        max-width: calc(100% - 84px);
        width: auto;
        flex-basis: auto;
    }
    .partners__item:nth-child(1) .partner-logo {
        width: 175px;
    }
    .partners__item:nth-child(3) .partner-logo {
        width: 145px;
    }
    .partners__item-arrow {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }
    .partners__item-arrow svg {
        width: 20px;
    }

    /* partners 767 end */

    /* contact us 767 start */

    .contacts__content {
        gap: 40px;
    }
    .form__interest-btns-wrap {
        gap: 8px;
    }
    .form__interest-btn {
        padding: 8px 16px;
    }
    .form__agreement_wrap {
        flex-direction: column;
        align-items: end;
        gap: 24px;
    }
    .form__privacy-block {
        width: 100%;
    }
    
    
    /* contact us 767 end */

    /* footer 767 start */

    .footer__content-wrap {
        gap: 24px;
        padding-bottom: 24px;
    }
    .footer__logo-wrap {
        text-align: center;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(36, 36, 36, .2);
    }
    .footer__logo-text {
        text-wrap: balance;
    }
    .footer__info-wrap {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 40px;
    }
    .copyrights-wrap {
        flex-direction: column;
        gap: 12px;
    }

    /* footer 767 end */

    /* thank you page 767 start */

    .thank-you__content-wrap {
        align-items: center;
    }
    .thank-you__title {
        font-size: 48px;
        text-align: center;
        margin-bottom: 20px;
    }
    .thank-you__message-wrap {
        flex-direction: column-reverse;
        align-items: center;
        gap: 100px;
    }
    .thank-you__message {
        padding: 32px 20px;
    }

    /* thank you page 767 end */

    /* privacy policy page 767 start */

    .privacy {
        padding: 48px 0;
    }
    .privacy h2 {
        font-size: 24px;
    }

    /* privacy policy page 767 end */




}