*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    padding-left: 42px; /* Adjust as needed */
    margin: 0;
}

li {
    margin: 0;
    padding: 0;
}


@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope-Regular.ttf') format('opentype');
}

@font-face {
    font-family: 'Epilogue';
    src: url('/assets/fonts/Epilogue-Black.ttf') format('opentype');
}


::selection {
    background-color: #FFF;
    color: #000;
}

/* Scrollbar width */
::-webkit-scrollbar {
    width: 8px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
    background: #000000;
}

/* Scrollbar handle */
::-webkit-scrollbar-thumb {
    background: rgba(58, 58, 58, 0.76);
}

/* Scrollbar handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(71, 71, 71, 0.76);
}

@media (max-width: 1024px) {
    ::-webkit-scrollbar {
        width: 0px;
    }
}

@media screen and (max-device-width: 1100px) {
    body {
        -webkit-text-size-adjust: 100%;
    }
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    color: white;
    font-family: 'Manrope';

    display: flex;
    justify-content: center;
}

/*Menu open*/
/*Menu open*/
.menu {
    position: fixed;
    top: 50px;
    right: 60px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    width: 420px;
    height: 50px;

    padding: 15px 30px;

    border-radius: 10px;
    border: 1px solid #3E3E3E;
    background: #161616;

    z-index: 10;

    transition: border 0.5s ease, height 0.5 ease, background 0.5 ease;
}

.menu.open {
    background: #ffffff00;
    border: none;
    height: 0;
}

.clock {
    color: #C0C0C0;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    transform: translateY(0);
    transition: transform 0.7s ease;
}

.menu.open .clock {
    transform: translateY(100%);
    font-size: 0px;
}

.open_menu {
    cursor: pointer;

    transform: translateX(0) translateY(0);
    transition: transform 0.7s ease;
}

.menu.open .open_menu {
    transform: translateX(100%) translateY(-50%);
}

.open_menu svg {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.menu.open .open_menu svg {
    opacity: 0;
}

.close_menu {
    cursor: pointer;
    transform: translateX(100%) translateY(-100%);
    transition: transform 0.5s ease;
}

.menu_container.open .close_menu {
    transform: translateX(0) translateY(0);
}


.menu_container {
    position: fixed;
    top: 50px;
    right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 420px;
    padding: 0 30px;
    border: none;
    border-radius: 10px;
    background: #ffffff00;
    z-index: 10;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease, background 0.7s ease;
}

.menu_container.open {
    max-height: 825px;
    padding: 35px 30px 25px 30px;
    border: 1px solid #3E3E3E;
    background: #ffffff;
}


.menu_container-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 40px;
}

.menu_container-time {
    color: #C0C0C0;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.menu_container.open .menu_container-time {
    transform: translateY(0);
}

.menu_items {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    padding-bottom: 60px;
}

.menu_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 15px 0;
    border-top: 1px solid #C2C2C2;

    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.menu_container.open .menu_item {
    transform: translateX(0);
}

.menu_item a {
    color: #000;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    /* text-transform: capitalize; */
    position: relative;
}

.menu_item a:nth-child(1) {
    background-color: #EBEBEB;
}

.menu_item a:nth-child(1):after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    bottom: -2px;
    left: 0;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.menu_item a:hover::after {
    transform: scaleX(1);
}


.menu_container-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.menu_container.open .menu_container-footer {
    transform: translateX(0);
}

.menu_container-footer a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.menu_container-footer_links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;

    padding: 10px 0 0 0;
    border-top: 1px solid #C2C2C2;
}

#menu_container-contacts {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* text-transform: capitalize; */
    text-decoration: none;

    background: #38F097;
    padding: 0px 2px;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    transition: max-width 1s ease-in-out;
}

.menu_container.open #menu_container-contacts {
    max-width: 100px;
}

.menu_container-footer_links a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.menu_accordion-toggle {
    cursor: pointer;
}

.menu_accordion-toggle svg {
    transition: 0.7s;
}

.menu_accordion {
    display: none;
}

.menu_accordion a {
    background-color: transparent !important;
    color: #313131;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 600px) {
    .menu {
        top: 10px;
        right: 20px;
        justify-content: flex-end;


        width: 60px;
        height: 40px;

        padding: 15px 20px 10px 20px;
    }

    .clock {
        display: none;
    }

    .menu.open .clock {
        transform: translateY(100%);
        font-size: 0px;
    }

    .menu_container {
        top: 10px;
        right: 0px;
        width: 97%;
        padding: 0 30px;
    }

    .menu_container.open {
        max-height: 98%;
        margin-right: 5px;
        height: 90%;

        padding: 25px 20px 40px 30px;
    }

    .menu_items {
        padding-bottom: 0;
    }
}

@media (min-width: 601px) and (max-width: 1300px) {
    .menu {
        top: 10px;
        right: 20px;
        justify-content: flex-end;


        width: 60px;
        height: 40px;

        padding: 15px 20px 10px 20px;
    }

    .clock {
        display: none;
    }

    .menu.open .clock {
        transform: translateY(100%);
        font-size: 0px;
    }

    .menu_container {
        top: 10px;
        right: 0px;
        width: 50%;
        padding: 0 30px;
    }

    .menu_container.open {
        max-height: 95%;
        margin-right: 5px;
        height: 100%;

        padding: 25px 20px 25px 30px;
    }

    .menu_items {
        padding-bottom: 0;
    }

    .menu_container-block {
        padding-bottom: 20px;
    }

    .menu_item {
        padding: 10px 0;
    }

    .menu_item a {
        font-size: 14px;
    }

    .menu_container-footer a {
        font-size: 14px;
    }

    .menu_container-footer_links a {
        font-size: 14px;
    }

    #menu_container-contacts {
        font-size: 14px;
    }

    .menu_container-time {
        font-size: 14px;
    }
}

#first-layer_logo {
    position: fixed;
    left: 85px;
    top: 50px;

    max-width: 108px;
    max-height: 38px;

    z-index: 10;
}

@media (max-width: 600px) {
    #first-layer_logo {
        left: 10px;
        top: 20px;
    }
}
@media (min-width: 601px) and (max-width: 1300px) {
    #first-layer_logo {
        left: 10px;
        top: 20px;
        max-width: 80px;
    }
}

/*Main cintainer*/
.main_container {
    height: 100%;
    width: 100%;
    max-width: 1920px;
    background-color: black;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding-bottom: 50px;
}



/*Showcase*/
.showcase {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    margin-top: 235px;
    padding: 0 60px 160px 60px;
}

.showcase h1 {
    color: #FFF;
    font-size: 96px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;

    padding-bottom: 120px;
}

.showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1300px) {
    .showcase {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
        margin-top: 110px;
        padding: 0 0 80px 30px;
    }

    .showcase h1 {
        font-size: 45px;
        padding-bottom: 60px;
        padding-right: 10px;
    }

    .showcase img {
        width: 100%;
        /* height: 600px; */
        object-fit: cover;
        padding-right: 30px;
    }
}

/*Detailed Overview*/
.overview {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding: 0 60px 160px 60px;
}

.overview h1 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* text-transform: capitalize; */

    padding-bottom: 20px;
}

.overview p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* text-transform: capitalize; */

    max-width: 50%;

    padding-bottom: 40px;
}

.overview_filters {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    width: 100%;

    padding: 20px 0;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.overview_filter {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.overview_filter-items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.overview_filter h6 {
    color: #CDCDCD;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* text-transform: capitalize; */
}

.overview_filter span {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* text-transform: capitalize; */

    padding: 0 5px;
    background-color: #B2B2B2;

    cursor: pointer;
}

.overview_filter span:last-child {
    background-color: #747474;
}

.anotherStyle{
    background-color: #B2B2B2!important;
}

@media (max-width: 1300px) {
    .overview {
        padding: 0 30px 75px 30px;
    }

    .overview h1 {
        font-size: 32px;
        padding-bottom: 20px;
    }

    .overview p {
        max-width: 100%;
    }

    .overview_filters {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 15px 0;
    }

    .overview_filter {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
    }

    .overview_filter-items {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }

    .overview_filter span {
        font-size: 14px;
    }
}

/*Showcase Presentation*/
.presentation {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding: 0 60px 160px 60px;
}

.presentation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presentation p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* text-transform: capitalize; */

    max-width: 85%;
    padding: 80px 0 160px 0;
}

.presntation_desc {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    background-color: #0D0D0D;
    width: 100%;
    padding: 20px 50px;
    margin-top: 80px;
}

.presentation span {
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* text-transform: lowercase; */

    background-color: #3F3F3F;
    width: fit-content;
}

.presntation_desc-mob {
    display: none;
}

@media (max-width: 1300px) {
    .presentation {
        padding: 0 30px 80px 30px;
    }

    .presentation img {
        /* height: 600px; */
    }

    .presentation p {
        max-width: 100%;
        padding: 40px 0 60px 0;
    }

    .presntation_desc {
        display: none;
    }

    .presntation_desc-mob {
        padding: 10px 30px 20px 20px;
        margin-top: 40px;

        display: inline;
    }

    .presentation span {
        font-size: 18px;
        line-height: 30px;
    }
}

/*Next Work*/
.next {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 60px 100px 60px;

}

.next_cont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.draggerBounds {
    width: 220px;
    height: 33px;
    background: #1D1D1D;

    display: flex;
    justify-content: flex-start;
    padding: 3px;
}

.dragger {
    width: 25px;
    height: 27px;
    background: #38F097;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1300px) {
    .next {
        padding: 0 30px 0 30px;
    }
}


/*Coloborate*/
.coloborate {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 135px;

    padding: 160px 190px 160px 190px;
    background-color: black;
}

.coloborate_title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;

    max-width: 450px;
}

.coloborate_title h1 {
    color: #FFF;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    /* text-transform: capitalize; */
}

.coloborate_title p {
    color: #D5D5D5;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* text-transform: lowercase; */
}

#myForm {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

#myForm input {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 10px;
    outline: none;
    background-color: #000;
    border: none;
    border-bottom: 1px solid #565656;
    width: 100%;

    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#myForm input::placeholder {
    color: #969696;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#myForm textarea {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 10px;
    outline: none;
    background-color: #000;
    border: none;
    border-bottom: 1px solid #565656;

    resize: none;

    width: 100%;

    color: #FFF;
    font-family: 'Manrope';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#myForm textarea::placeholder {
    color: #3F3F3F;
    font-family: 'Manrope';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.custom-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-select {
    padding: 10px 0;
    border-bottom: 1px solid #565656;
    width: 100%;
    cursor: pointer;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* text-transform: capitalize; */
}

.dropdown-options {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #000;
    z-index: 1;
}

.dropdown-options p {
    padding: 10px 0;
    display: block;
    text-decoration: none;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* text-transform: capitalize; */
}

.dropdown-options p:hover {
    background-color: #343434;
}

.dropdown-select svg {
    transition: 1s;
}

.rotate-180 {
    transform: rotate(180deg);
}


/* start:: new added block's css*/

/*start:: 1 add*/
.challenges_and_solutions{
    width: 100%;
    height: auto;
    padding: 0 60px 160px ;
}

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

.challenges_and_solutions_title{
    font-size: 32px;
    color: white;
    font-weight: 600;
}

.challenges_and_solutions_small_title{
    font-size: 17px;
    color: rgba(210, 210, 210, 1);
    font-weight: 500;
    align-self: flex-end;
}

.green_bg{
    background: rgba(56, 240, 151, 1);
    color: black;
    padding: 0 5px;
    font-weight: 600;
}

.challenges_and_solutions_line{
    width: 100%;
    border: 1px solid rgba(94, 94, 94, 1);
    margin: 13px 0 36px 0;
}

.challenges_and_solutions_bottom{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.challenges_and_solutions_block{
    width: 49%;
    height: auto;
    border:1px solid rgba(62, 62, 62, 1);
}

.challenges_and_solutions_block_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 21px;
    width: 100%;
    height: auto;
    padding: 13px 35px 13px 35px;
    border-bottom: 1px solid rgba(62, 62, 62, 1);
    background: rgba(13, 13, 13, 1);
    color: rgba(217, 217, 217, 1);
}

.challenges_and_solutions_block_title svg{
    width: 15px;
    height: auto;
}

.challenges_and_solutions_block_title > span {
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.challenges_and_solutions_block_info{
    padding: 25px 92px 24px 35px;

}

.challenges_and_solutions_block_info p,span,.challenges_and_solutions_block_info > ul > li
{
    font-size: 16px;
    font-weight: 500;
    color: rgba(217, 217, 217, 1);
}

.distance{
    margin-bottom: 20px;
}

@media (max-width: 1300px) {
    .challenges_and_solutions{
        padding: 0 30px 160px;
    }
}

@media (max-width: 1200px) {
    .challenges_and_solutions_bottom{
        flex-wrap: wrap;
    }

    .challenges_and_solutions_block{
        width: 100%;
        margin-bottom: 24px;
    }

}

@media (max-width: 700px) {
    .challenges_and_solutions_top {
        flex-wrap: wrap;
        align-items: start;
        flex-direction: column;
    }

    .challenges_and_solutions_title {
        margin-bottom: 5px;
    }
    .challenges_and_solutions_small_title{
        align-self: unset;
    }
    .challenges_and_solutions_block_info{
        padding: 24px 50px 44px 35px;
    }

    ul {
        padding-left: 25px;
        margin: 0;
    }

    .challenges_and_solutions{
        padding: 0 30px 19px;
    }

}

/*end:: 1 add*/


/* start:: 2 add*/
/*numbers*/

.numbers_container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 120px 60px 215px 90px;
    color: #000;
    background-color: #FFF;
}

.numbers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.count{
    font-size: 76px;
}

.numbers h1 {
    color: #000;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* text-transform: capitalize; */
}

.numbers p {
    color: #151515;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* text-transform: lowercase; */
    width: 68%;
}

.numbers_items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    margin-top: 49px;
}

.numbers_items .numbers_item:nth-child(1),
.numbers_items .numbers_item:nth-child(2) {
    border-right: 1px solid #E5E5E5;
}

.numbers_item {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    padding: 0 80px 0 80px;
}


.numbers_item-count {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    color: #000;
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    /* text-transform: lowercase; */
}

.numbers_item p {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* text-transform: lowercase; */
    max-width: 300px;
    min-width: 250px;
}

.numbers_item p span {
    background-color: #B2B2B2;
}

@media (min-width: 601px) and (max-width: 1300px) {
    .numbers_container {
        padding: 40px 30px 50px 30px;
    }

    .numbers {
        gap: 20px;
        width: 100%;
    }

    .count{
        font-size: 45px;
    }

    .numbers h1 {
        font-size: 38px;
        padding-right: 40px;
    }

    .numbers p {
        font-size: 16px;
    }

    .numbers_p {
        padding-right: 40px;
    }

    .numbers_items {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        margin-top: 80px;
    }

    .numbers_items::-webkit-scrollbar {
        display: none;
    }

    .numbers_item {
        padding: 0;
        padding-left: 40px;
        padding-right: 40px;
        /*width: 34%;*/
        flex: 0 0 auto;
    }

    .numbers_item p,
    .numbers_item p span {
        font-size: 14px;
        max-width: unset;
    }

    .numbers_p{
        width: 90%!important;
    }

}


@media (max-width: 600px) {
    .numbers_container {
        padding: 40px 0px 50px 0px;
    }

    .numbers {
        gap: 20px;
        width: 100%;
    }

    .numbers h1 {
        font-size: 32px;
        padding-left: 30px;
        padding-right: 40px;
    }

    .numbers p {
        width: 80%;
        font-size: 16px;
    }

    .numbers_p {
        padding-left: 30px;
    }

    .numbers_items {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        margin-top: 80px;
    }

    .numbers_items::-webkit-scrollbar {
        display: none;
    }

    .numbers_item {
        padding: 0;
        padding-left: 40px;
        padding-right: 40px;
        flex: 0 0 auto;
    }

    .numbers_item p,
    .numbers_item p span {
        font-size: 14px;
        max-width: unset;
    }

    .count{
        font-size: 55px;
    }
}
/* end 2 add*/

/* start:: 3 add*/
.client_reference{
    width: 100%;
    height: auto;
    padding: 113px 60px 75px;
}

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

.client_reference_title{
    font-size: 32px !important;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.client_reference_small_title{
    font-size: 17px;
    color: rgba(210, 210, 210, 1);
    font-weight: 500;
    align-self: flex-end;
}

.client_reference_line{
    width: 100%;
    border: 1px solid rgba(94, 94, 94, 1);
    margin: 13px 0 40px 0;
}

.client_reference_bottom{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.client_reference_bottom_v2{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.client_reference_bottom_v2_span{
    width: 53%;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    margin-bottom: 70px;
}

.client_reference_block_left{
    width: 804px;
    height: auto;
    display:flex;
    align-items: center;
    justify-content: center;
}

.client_reference_block_right{
    width: 997px;
    height: 100%;
    padding: 27px 77px 27px 68px;
    background: rgba(13, 13, 13, 1);
}

.client_reference_bottom span {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}


@media (max-width: 1300px) {
    .client_reference_bottom{
        flex-wrap: wrap;
    }

    .client_reference_block_left,.client_reference_block_right{
        width: 100%;
        margin-bottom: 24px;
    }


    .client_reference_bottom_v2_span{
        width: 80%;
    }

    .client_reference{
        padding: 113px 30px 75px;
    }

}

@media (max-width: 768px) {

    .client_reference_top {
        flex-wrap: wrap;
        align-items: start;
        flex-direction: column;
    }

    .client_reference_title {
        margin-bottom: 5px;
    }
    .client_reference_small_title{
        align-self: unset;
    }
    .client_reference_block_right {
        padding: 27px 20px 27px 20px;
    }
    .client_reference {
        padding: 113px 30px 19px;
    }
    .client_reference_bottom_v2_span{
        width: 100%;
    }
}

/* end:: 3 add*/

/* end:: new added block's css*/

/*AUTOFILL INPUTS WEBKIT*/

input:-webkit-autofill,
textarea:-webkit-autofill {
    box-shadow: 0 0 0 1000px rgb(0, 0, 0) inset;
    -webkit-box-shadow: 0 0 0 1000px rgb(0, 0, 0) inset;
    border: transparent;
    border-bottom: 1px solid white;
    -webkit-text-fill-color: white !important;
    -webkit-background-clip: text !important;
}

.coloborate_button {
    padding: 10px 75px 10px 12px;
    background-color: #000;
    border: 1px solid #FFF;
    width: 100%;
    max-width: 180px;

    overflow: hidden;
    position: relative;
    transition: padding 0.5s ease;

    cursor: pointer;
}

.coloborate_button p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;

    max-width: 45px;
}

.coloborate_button svg:first-child {
    position: absolute;
    top: 10px;
    right: 12px;
    transition: right 0.5s ease;
}

.coloborate_button svg:last-child {
    position: absolute;
    top: 10px;
    left: -100%;
    transition: left 0.5s ease;
}

.coloborate_button:hover {
    padding: 10px 12px 10px 120px;
}

.coloborate_button:hover svg:first-child {
    right: -100%;
}

.coloborate_button:hover svg:last-child {
    left: 12px;
}

@media (max-width: 1300px) {
    .coloborate {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;

        padding: 100px 30px 80px 30px;
    }

    .coloborate_title {
        max-width: fit-content;
    }

    .coloborate_title h1 {
        font-size: 42px;
    }

    .coloborate_title p {
        font-size: 16px;
    }

    #myForm {
        gap: 50px;
    }
}

/*Footer*/

.footer {
    background-image: url(/assets/img/background_desktop.svg);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    gap: 230px;

    margin: 0 100px;
    padding: 75px;
    border-radius: 45px;
}

.footer_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer_title-main {
    max-width: 630px;
    cursor: pointer;
}

.footer_title-main h1 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* text-transform: lowercase; */
    width: fit-content;

    background-color: #38F097;
}

.footer_title-main h1 {
    color: #000;
    background: linear-gradient(to right, #38F097 0%, #38F097 50%, white 50%, white 100%);
    background-size: 200% 100%;
    transition: background-position 0.7s ease, color 0.7s ease;
}

.footer_title-main:hover h1 {
    background-position: -100% 0;
    color: #000;
}

.footer_title p {
    color: #AEAEAE;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    max-width: 330px;
}

.footer_title p a {
    color: #E5E5E5;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.footer_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer_links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 120px;
}

.footer_link {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.footer_link h1 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* text-transform: lowercase; */
}

.footer_link-descr {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 165px;
}

.footer_link:nth-child(1) .footer_link-descr a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    /* text-transform: lowercase; */
}

.footer_link:nth-child(2) .footer_link-descr a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.footer_link:nth-child(3) .footer_link-descr a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.footer_link:nth-child(4) .footer_link-descr a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.footer_copyright {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.footer_copyright p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer_title-p-mobile {
    display: none;
}

@media (max-width: 1300px) {
    .footer {
        gap: 40px;
        margin: 0 30px;
        padding: 40px 20px;
        border-radius: 45px;
    }

    .footer_title {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .footer_title-p-desktop {
        display: none;
    }

    .footer_title-p-mobile {
        display: block;
        padding: 70px 0 10px 0;
    }

    .footer_title-main {
        max-width: 500px;
        cursor: pointer;
    }

    .footer_title-main h1 {
        display: inline;
        font-size: 21px;
    }

    .footer_title-p-mobile {
        color: #AEAEAE;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        max-width: 270px;
    }

    .footer_title-p-mobile a {
        color: #E5E5E5;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
    }

    .footer_content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footer_links {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer_link h1 {
        font-size: 21px;
    }

    .footer_link-descr {
        gap: 5px;
        max-width: 130px;
    }

    .footer_link:nth-child(1) .footer_link-descr a {
        font-size: 14px;
    }

    .footer_link:nth-child(2) .footer_link-descr a {
        font-size: 14px;
    }

    .footer_link:nth-child(3) .footer_link-descr a {
        font-size: 14px;
    }

    .footer_link:nth-child(4) .footer_link-descr a {
        font-size: 14px;
    }

    .footer_copyright {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

    .footer_copyright p {
        font-size: 12px;
    }
}