/* 1. Header */
/* 2. banner */
/* 3. about */
/* 4. services */
/* 5. portfolio */
/* 6. reviews */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

/* :root {
    scroll-behavior: smooth;
} */

body {
    background: #17181C;
    font-family: 'Gotham Pro';
    overflow-x: hidden;
    cursor: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

/* Header */
.navbar-expand-lg .navbar-nav .menu-item a {
    font-size: 22px;
    line-height: 21px;
    color: #a2a3a4;
    padding-left: 50px;
    text-decoration: none;
}

.navbar {
    padding-top: 30px;
}

/* Header end */

/* Banner */
.banner_item {
    padding-bottom: 90px;
}

.banner_item .banner_item_title {
    font-style: normal;
    font-weight: bold;
    font-size: 190px;
    line-height: 226px;
    text-transform: uppercase;
    color: #FFFFFF;
    position: relative;
    top: 65px;
}

.banner_item {
    margin-top: 90px;
    text-align: center;
}

.banner_item h1 span {
    color: black;
    -webkit-text-fill-color: transparent;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 3.5px;
    -webkit-text-stroke-color: #FCD02F;
}

.banner_item_img {
    justify-content: center;
    display: flex;
}

.banner_item_img img {
    position: absolute;
    z-index: -1;
}

.banner_detail {
    position: relative;
	display: block;
    top: 109px;
    font-weight: 300;
    font-size: 16px;
    line-height: 15px;
    align-items: center;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    transition: 1.5s;

}

.banner_detail_round {
    width: 60px;
    height: 60px;
    border: 5px solid #FBCF31;
    border-radius: 50%;
    display: flex;
    margin: auto;
    position: relative;
    top: 28px;
}

.banner_detail_round::after {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    background: #FBCF31;
    border-radius: 50%;
    margin: auto;
}

.title {
    font-weight: bold;
    font-size: 50px;
    line-height: 48px;
    color: #FFFFFF;
    text-transform: uppercase;
}

#circ {
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    font-weight: 300;
    text-transform: inherit;
    animation: spin 14s linear infinite;
    line-height: 10px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Banner end */

/* About */
.about_title {
    text-align: center;
    margin-bottom: 65px;
}

.about_title h3 {
    font-size: 50px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    line-height: 48px;
    text-transform: uppercase;
    font-weight: bold;
}

.about_title h3 {
    padding: 8px 16px;
    border: none;
    background: none;
    outline: none;
}

.about_title h3 span,
.portfolio_item_first .title span {
    margin-left: 20px;
    top: -10px;
    position: relative;
}

.about_title svg,
.portfolio_item_first .title svg {
    position: absolute;
    top: -25%;
    left: -11%;
    pointer-events: none;
    z-index: 999;
}

.portfolio_item_first .title svg {
    top: -49%;
    left: -3%;
    transform: scale(1.1);
}

.about_title path,
.portfolio_item_first .title {
    z-index: 999;
    stroke: #FCCF31;
    stroke-width: 0.5px;
    stroke-dasharray: 0 1500;
    /* background: #FCCF31; */
}

.about_title span path {
    animation: draw 8s forwards;
}

.portfolio_item_first .title span path {
    animation: draw 6s forwards;
}

.services_title .title path {
    /* animation: textDraw 20s cubic-bezier(.56, -0.04, .32, .7) forwards; */
    /* animation-delay: 1s; */
/*     stroke-width: 1px;
    stroke: #FCCF31;
    stroke-linecap: round;
    stroke-linejoin: round;
    -webkit-animation: textDraw 10s infinite;
    animation: textDraw 10s infinite; */
}

.services_title .title path {
	fill: #FCCF31;
}

@keyframes textDraw {
    0% {
        stroke-width: 0.5px;
        stroke-dasharray: 0 1500;
    }

    50% {
        stroke-width: 1px;
        stroke-dasharray: 1500;
        fill: #FCCF31;
    }

    100% {
        stroke-width: 1px;
        stroke-dasharray: 1500;
        fill: #FCCF31;
    }
}

@keyframes draw {
    from {
        stroke-dasharray: 0 1500;
        stroke-width: 0.8px;
    }

    to {
        stroke-dasharray: 1500;
        fill: #FCCF31;
        stroke-width: 1px;
    }
}

.about {
    margin-top: -170px;
}

.about_item_text_name {
    font-weight: bold;
    font-size: 28px;
    line-height: 27px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.about_item_text p {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    text-transform: none;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    width: 440px;
}

.about_item {
    display: flex;
    margin-bottom: 30px;
}


.about_item img {
    margin-right: 30px;
    height: 100%;
}

/* About end */


/* Services */
.services {
    margin-top: -40px;
    margin-bottom: 120px;
}

.services_item__info {
    display: none;
}

.services_item_icon_img {
    transition: 1s ease-in-out;
}

.services_item:hover .services_item_icon_img {
    display: none;
}

.services_item:hover .services_item__info {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.services_item:hover .services_item_text_name {
    -webkit-text-fill-color: #FCCF31;
    -webkit-text-stroke-color: transparent;
}

.services_item__info_price {
    color: #FFFFFF;
    opacity: 0.75;
    text-align: right;
    font-weight: 600;
    font-size: 50px;
    line-height: 61px;
}

.services_item__info_des {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: right;
    color: #FFFFFF;
    opacity: 0.75;
}

.services_title .title {
    text-transform: unset;
}

.services_des {
    font-weight: 400;
    font-size: 22px;
    line-height: 180%;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    margin-bottom: 50px;
}

.services_item_text_name {
    font-weight: 700;
    font-size: 70px;
    line-height: 60px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    margin-bottom: 15px;
    transition: 1s;
}

.services_item_text_des {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
    opacity: 0.75;
    width: 646px;
}

.page-id-52 .portfolio_item_first .title svg {
	display: none;
}

/* #hov {
    display: none;
    position: absolute;
    backdrop-filter: blur(21px);
    background: rgba(23, 24, 28, 0.2);
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50%;
    width: 118px;
    text-align: center;
    height: 118px;
    align-items: center;
    font-weight: 300;
    justify-content: center;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

#services_item_cursor:hover>#hov {
    display: flex;
    backdrop-filter: blur(21px);
    background: rgba(23, 24, 28, 0.2);
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50%;
    width: 118px;
    text-align: center;
    height: 118px;
    display: flex;
    align-items: center;
    font-weight: 300;
    justify-content: center;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;

} */

/* .cursor {
    display: none;
    position: absolute;
    backdrop-filter: blur(21px);
    background: rgba(23, 24, 28, 0.2);
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50%;
    width: 118px;
    text-align: center;
    height: 118px;
    align-items: center;
    font-weight: 300;
    justify-content: center;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    user-select: none;
    pointer-events: none;
    transform: scale(0.8);
}

#services_item_cursor:hover>.cursor {
    position: absolute;
    display: flex;
    backdrop-filter: blur(21px);
    background: rgba(23, 24, 28, 0.2);
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50%;
    width: 118px;
    text-align: center;
    height: 118px;
    display: flex;
    align-items: center;
    font-weight: 300;
    justify-content: center;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;

} */

.cursor {
    position: absolute;
    background: white;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    user-select: none;
    pointer-events: none;
    transform: scale(0.8);
}

.cursor::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-image: url("http://mirkozeppieri.emanuelepapale.com/wp-content/uploads/2018/07/project-hover-cursor.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    opacity: 0;
}

.cursor.active {
    opacity: 1;
    transform: scale(12);
}

.cursor.active::before {
    opacity: 1;
}

.cursor-follower {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    user-select: none;
    pointer-events: none;
    transform: translate(4px, 4px);
}

.cursor-follower.active {
    opacity: 0.3;
    transform: scale(0);
}

#services_item_cursor {
    height: 100%;
    cursor: none;
}


.services_item_icon {
    margin-left: auto;
}

.services_item {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 50px;
    padding-bottom: 40px;
    transition: 1s ease-in;
    cursor: none;
}

.services_item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Services end */

/* Portfolio */
.portfolio {
    position: relative;
}

.portfolio_item .title {
    font-style: italic;
    font-weight: 500;
    font-size: 82px;
    line-height: 82px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.portfolio_item_des {
    font-weight: 400;
    font-size: 30px;
    line-height: 29px;
    color: #FFFFFF;
    text-transform: uppercase;
}


.portfolio_item .title {
    animation: draw 1s forwards;
}

.slider_dot_nav {
    margin-left: 35%;
    margin-bottom: 10px;
}

.slider_dot_nav span {
    font-size: 20px;
    line-height: 19px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 400;
    padding: 3px;
}

.oop {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100vh;
    letter-spacing: 4px;
    overflow: hidden;
    clip: rect(0, auto, auto, 0);
}

.portfolio_item_first {
    background: #1F2023;
}

.none {
	display: none;
}

.portfolio_item,
.portfolio_item_first {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100vh;
    letter-spacing: 4px;
    overflow: hidden;
    clip: rect(0, auto, auto, 0);
    background-size: cover !important;
}

.portfolio_item .fixed,
.portfolio_item_first .fixed {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
}

.portfolio_item .white {
    color: #fff;
}

.portfolio_item_first .fixed {
    transform: translate(-50%, -50%);
    height: inherit;
    align-items: center;
    display: flex;
    margin: auto;
    justify-content: center;
}

.portfolio_item {
    /*background-color: #fff;*/
    color: #000;
    top: 0;
    z-index: 1;
}

.portfolio_item .fixed {
    transform: translate(-50%, -50%);
}

.portfolio_item:nth-child(2) {
    box-shadow: inset 0 1px 80px rgba(0, 0, 0, 0.14);
    background-color: #c2850a;
    color: #fff;
    top: 100vh;
    z-index: 2;
}

.portfolio_item:nth-child(2) .fixed {
    transform: translate(-50%, -50%);
}

.portfolio_item:nth-child(3) {
    box-shadow: inset 0 1px 80px rgba(0, 0, 0, 0.14);
    background-color: #0a0ac2;
    color: #fff;
    top: 200vh;
    z-index: 3;
}

.portfolio_item:nth-child(3) .fixed {
    transform: translate(-50%, -50%);
}

.portfolio_item:nth-child(4) {
    box-shadow: inset 0 1px 80px rgba(0, 0, 0, 0.14);
    background-color: #85c20a;
    color: #fff;
    top: 300vh;
    z-index: 4;
}

.portfolio_item:nth-child(4) .fixed {
    transform: translate(-50%, -50%);
}

.portfolio_item:nth-child(5) {
    box-shadow: inset 0 1px 80px rgba(0, 0, 0, 0.14);
    background-color: #850ac2;
    color: #fff;
    top: 400vh;
    z-index: 5;
}

.portfolio_item:nth-child(5) .fixed {
    transform: translate(-50%, -50%);
}

.portfolio_item:nth-child(6) {
    box-shadow: inset 0 1px 80px rgba(0, 0, 0, 0.14);
    background-color: #0ac20a;
    color: #fff;
    top: 500vh;
    z-index: 6;
}

.portfolio_item:nth-child(6) .fixed {
    transform: translate(-50%, -50%);
}

.portfolio_item:nth-child(7) {
    box-shadow: inset 0 1px 80px rgba(0, 0, 0, 0.14);
    background-color: #c20a85;
    color: #fff;
    top: 600vh;
    z-index: 7;
}

.portfolio_item:nth-child(7) .fixed {
    transform: translate(-50%, -50%);
}

.portfolio_item:nth-child(8) {
    box-shadow: inset 0 1px 80px rgba(0, 0, 0, 0.14);
    background-color: #0ac285;
    color: #fff;
    top: 700vh;
    z-index: 8;
}

.portfolio_item:nth-child(8) .fixed {
    transform: translate(-50%, -50%);
}

.portfolio_item:nth-child(9) {
    box-shadow: inset 0 1px 80px rgba(0, 0, 0, 0.14);
    background-color: #c20a0a;
    color: #fff;
    top: 800vh;
    z-index: 9;
}

.portfolio_item:nth-child(9) .fixed {
    transform: translate(-50%, -50%);
}

.portfolio_item:nth-child(10) {
    background-color: #000;
    color: #fff;
    top: 900vh;
    z-index: 10;
}

.portfolio_item:nth-child(10) .fixed {
    transform: translate(-50%, -50%);
}

.oop {
    position: relative;
    z-index: auto;
    height: 10px;
    background: linear-gradient(141deg, #48ded4 0%, #a026bf 51%, #e82c75 75%);
}

section {
    position: relative;
}

.asdad {
    position: relative;
    height: 100vh;
}

.view_more_item {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 29px;
    font-weight: 400;
    text-decoration: none;
}

.view_more {
    text-align: center;
    margin-top: 80px;
}

.view_more_item img {
    margin-top: 17px;
}

/* .portfolio ul {
    list-style: none;
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    padding: 0;
    margin: 0;
}

.portfolio ul::-webkit-scrollbar {
    display: none;
}

.portfolio ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    scroll-snap-align: center;
    font-variant: small-caps;
    perspective: 1000px;
    transition: 0.1s;
}

.portfolio ul li img {
    --rotation-x: 66deg;
    --rotation-y: 33deg;
    max-width: 80vw;
    max-height: 80vh;
    margin-bottom: 5vh;
    border-radius: 24px;
    opacity: var(--panel-activation);
    transform: rotateX(calc(var(--rotation-x) - var(--panel-activation) * var(--rotation-x))) rotateY(calc(var(--rotation-y) - var(--panel-activation) * var(--rotation-y))) scale(calc(.5 + var(--panel-activation) / 2), calc(.5 + var(--panel-activation) /2)) translateZ(0);
    transform-style: preserve-3d;
    will-change: transform opacity;
}

.portfolio ul li:nth-child(1) {
    background: #fae6d1;
}

.portfolio ul li:nth-child(2) {
    background: #e7e6e4;
}

.portfolio ul li:nth-child(3) {
    background: #c4c4d4;
}

.portfolio ul li:nth-child(4) {
    background: #dbd9d7;
}

.portfolio ul li:nth-child(5) {
    background: #d9bfc8;
}

.portfolio ul li:nth-child(6) {
    background: #bfd9d9;
}

.portfolio ul li:nth-child(7) {
    background: #fbe6a2;
}

.portfolio ul li:nth-child(8) {
    background: #f0cec1;
}

.portfolio ul li:nth-child(9) {
    background: #ecdfc6;
}

.portfolio ul li:nth-child(10) {
    background: #f6bcce;
}

.portfolio ul li:nth-child(11) {
    background: #d8e7cb;
}

.portfolio ul li:nth-child(12) {
    background: white;
}

.portfolio ul li:nth-child(13) {
    background: #fee44d;
}

.portfolio ul li:nth-child(14) {
    background: #ccac9e;
}

.portfolio ul li:nth-child(15) {
    background: #ded9d3;
}

.portfolio ul li:nth-child(16) {
    background: #adbda8;
} */

/* Portfolio end */





/* svg path {
    stroke: #FCCF31;
    stroke-width: 5;
    fill: none;
    stroke-dasharray: 1500;
    -webkit-animation: elementor-headline-dash 2s infinite;
    animation: elementor-headline-dash 20s infinite;
} */

/* @-webkit-keyframes elementor-headline-dash {
    0% {
     stroke-dasharray:0 1500
    }
    15% {
     stroke-dasharray:1500 1500
    }
    85% {
     opacity:1
    }
    90% {
     stroke-dasharray:1500 1500;
     opacity:0
    }
    to {
     stroke-dasharray:0 1500;
     opacity:0
    }
   } */
/* @keyframes elementor-headline-dash {
    0% {
        stroke-dasharray: 0 1500
    }

    15% {
        stroke-dasharray: 1500 1500
    }

    85% {
        opacity: 0
    }

    90% {
        stroke-dasharray: 1500 1500;
        opacity: 0
    }

    to {
        stroke-dasharray: 0;
        opacity: 0
    }
} */


/* reviews */
.reviews {
    padding-top: 120px;
    padding-bottom: 160px;
}

.reviews_item .reviews_item_des {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 64px;
    color: #E6E6E6;
    margin-bottom: 45px;
}

.owl-carousel .owl-item .reviews_item_text_img img {
    margin-bottom: 25px;
    margin-left: 25px;
    height: 100%;
    width: auto;
}

.reviews_item_name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #E6E6E6;
}

.reviews_item_job {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #E6E6E6;
    opacity: 0.75;
}

.reviews_item_img_icon {
    display: flex;
    margin-top: -12%;
    margin-left: 3%;
}

.reviews_owl .owl-item .reviews_item_img_icon img {
    width: 140px;
    height: 140px;
}

.reviews_owl .owl-item .reviews_item_img_main img {
    width: 451px;
    height: 451px;
}

.reviews_owl .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    background: #F2F2F2;
    border-radius: 50%;
    display: block;
}

.reviews_owl .owl-dots .owl-dot.active {
    border: 1px solid #FCCF31;
    padding: 12px !important;
    border-radius: 50%;
}

.reviews_owl .owl-dots .owl-dot {
    margin-right: 15px;
	padding: 5px !important;
}

.reviews_owl .owl-dots {
    margin-top: -5%;
    position: relative;
}

.partners_owl .owl-stage {
    display: flex;
    align-items: center;
}

.partners_owl .owl-stage .partners_item img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    width: 60%;
    margin: auto;
    transition: 0.4s ease-out;
}

.partners_owl .owl-stage .partners_item img:hover {
    filter: none;
}

/* reviews end */

/* footer */
footer {
    /* background: #1F2023 url(/assets/img/footer_bg.jpg) no-repeat center; */
    background: #1F2023;
    /* padding-top: 240px; */
    padding-bottom: 160px;
    /* animation: pulse 5s infinite linear; */
}

.form_footer_rr {
    padding-top: 240px;
}

.footer_bg_img {
    display: flex;
    justify-content: center;
    position: relative;
    top: 125px;
}

.footer_bg_img img {
    position: absolute;
    animation: pulse 3s infinite linear;
}

.footer_contact_title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 61px;
    color: #FFFFFF;
}

.footer_contact {
    display: flex;
    padding-bottom: 90px;
}

.footer_contact ul {
    padding-left: 0;
}

.footer_contact ul li a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #FFFFFF;
    opacity: 0.7;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    padding-top: 30px;
    display: block;
}

.footer_contact img {
    height: 100%;
    margin-right: 30px;
}

.partners {
    padding-bottom: 40px;
}

.footer_form .footer_contact_title {
    font-family: 'Gotham Pro';
    line-height: 48px;
}

.footer_form_des {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    opacity: 0.7;
    padding-top: 30px;
}

.footer_form .wpcf7-form-control {
    background: transparent;
    border: none;
    width: 86%;
    border-bottom: 3px solid #fff;
    opacity: 0.75;
    opacity: 0.4;
    color: #FFFFFF;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    line-height: 31px;
    padding-bottom: 10px;
    margin-top: 55px;
}

.footer_form input:focus {
    outline: none;
}

.submit_form_center_span::before {
    content: "";
    display: inline-block;
    color: #FFFFFF;
    background: url(https://digital.vades.uz/wp-content/uploads/2022/03/Ellipse-5-1.png) no-repeat;
    border: none;
    font-size: 24px;
    line-height: 29px;
    font-weight: 400;
    width: 135px;
    height: 97px;
   margin-top: 59px;
    margin-left: 24px;
}
.submit_form_center_span::after {
    content: "";
    display: inline-block;
    color: #FFFFFF;
    background: url(https://digital.vades.uz/wp-content/uploads/2022/03/Arrow-8-2.png) no-repeat;
    border: none;
    font-size: 24px;
    line-height: 29px;
    font-weight: 400;
    width: 135px;
    height: 97px;
    margin-top: 130px;
    margin-left: -21px;
	position: absolute;
	 animation: top-bottom2 1s infinite;
  -webkit-animation: top-bottom2 1s infinite;
}

@keyframes top-bottom2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }

  50% {
    -webkit-transform: translateX(8%);
            transform: translateX(8%);
  }

  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes top-bottom2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }

  50% {
    -webkit-transform: translateX(8%);
            transform: translateX(8%);
  }

  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.submit_form_center_span {
    position: absolute;
    margin-left: 12%;
	display: flex;
	align-items: center;
}

.wpcf7-submit {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.footer_form .wpcf7-submit {
	    color: #FFFFFF;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    opacity: 1;
        z-index: 999;
}

.submit_form_center {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.wpcf7-response-output {
	color: #fff;
}


/* bg_ell */
.bg_ell {
    display: flex;
    justify-content: end;
    left: 8%;
    position: relative;
}

.bg_ell_elll {
    overflow-x: clip;
}

/*.bg_ell_border {*/
/*    position: absolute;*/
/*}*/

/*.bg_ell_4 svg {*/
/*	position: absolute;*/
/*}*/

.bg_ell svg {
    animation: rotate 5s infinite linear;
}

.bg_ell_2 {
    justify-content: flex-start;
    left: -6%;
    top: -50px;
}

.bg_ell_3 {
    left: 7%;
    top: -140px;
}

.bg_ell_4 {
    left: 6%;
    top: -160px;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

/* bg_ell end */

.cursor {
    position: absolute;
    background: white;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    z-index: 999;
    transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    user-select: none;
    pointer-events: none;
    transform: scale(0.8);
}

.cursor::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-image: url("http://mirkozeppieri.emanuelepapale.com/wp-content/uploads/2018/07/project-hover-cursor.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    opacity: 0;
}

.cursor.active {
    opacity: 1;
    transform: scale(1);
    background: transparent;
}

.cursor.active .cursor_text {
    display: flex;
}

.cursor.active::before {
    opacity: 1;
}

.cursor-follower {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    z-index: 999;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    user-select: none;
    pointer-events: none;
    transform: translate(4px, 4px);
}

.cursor-follower.active {
    opacity: 0;
    transform: scale(0);
}

.cursor_text {
    color: #FFFFFF;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    width: 118px;
    height: 118px;
    border-radius: 125px;
    backdrop-filter: blur(21px);
    border: 3px solid #FFFFFF;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    display: none;
}

.modal_first .modal-content {
    border-radius: 113.31px;
    border: 2.71945px solid #FFFFFF;
    /* background: rgba(23, 24, 28, 0.2); */
    height: 600px;
    /* filter: blur(49.8566px); */
    background: rgba(23, 24, 28, 0.2);
    backdrop-filter: blur(10px);
    width: 709px;
    padding: 10px 60px;
}

.modal_first .modal-dialog {
    height: 100%;
    max-width: 709px;
    display: flex;
    align-items: center;
}

.modal_first .footer_form .footer_contact_title {
    font-size: 30px;
    line-height: 29px;
    font-weight: 700;
}

.modal_first .footer_form_des {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding-top: 15px;
    margin-bottom: 0;
}

.modal_first .footer_form .wpcf7-form-control {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
}

.modal_first .submit_form_center_span {
    position: absolute;
    margin-left: 35%;
}

.modal_first .submit_form_center {
    margin-top: 10px;
}

.modal_first .btn-close {
    background: transparent url(https://digital.vades.uz/wp-content/uploads/2022/01/close.png) center/30px auto no-repeat;
    margin-left: auto;
    display: block;
    position: relative;
    top: 35px;
}

/*.modal {*/
/*	display: flex !important;*/
/*	align-items: center;*/
/*	z-index: -1;*/
/*}*/

/*.modal.show {*/
/*	z-index: 999;*/
/*}*/
.modal_first .footer_form input:focus {
    opacity: 1;
}

.services a {
    text-decoration: none;
}

.view_more {
    overflow-x: hidden;
}

.p_about_mobi {
    display: none;
}

.footer_form input:focus {
    opacity: 1;
}

.view_more_item:hover {
    color: #FCD02F;
	cursor: none;
}

.view_more_item:hover .cursor-followerr {
	width: 60px !important;
    height: 60px !important;
}

/* Icon 1 */

.animated-icon1,
.animated-icon2,
.animated-icon3 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.animated-icon1 span,
.animated-icon2 span,
.animated-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.animated-icon1 span {
    background: #fff;
}

.animated-icon2 span {
    background: #e3f2fd;
}

.animated-icon3 span {
    background: #f3e5f5;
}

.animated-icon1 span:nth-child(1) {
    top: 0px;
}

.animated-icon1 span:nth-child(2) {
    top: 10px;
    left: -10px;
}

.animated-icon1 span:nth-child(3) {
    top: 20px;
}

.animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/* Icon 3*/

.animated-icon2 span:nth-child(1) {
    top: 0px;
}

.animated-icon2 span:nth-child(2),
.animated-icon2 span:nth-child(3) {
    top: 10px;
}

.animated-icon2 span:nth-child(4) {
    top: 20px;
}

.animated-icon2.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
}

.animated-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
}

/* Icon 4 */

.animated-icon3 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.animated-icon3 span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.animated-icon3 span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.animated-icon3.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
}

.animated-icon3.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.animated-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
}

button:focus:not(:focus-visible) {
    box-shadow: none;
}

.footer_cop_site {
    display: none;
}


.page-id-52 .about_title svg {
	display: none;
}

.wpcf7-not-valid-tip {
	    position: absolute;
    display: flex;
}

.fbdfbgnyt .bg_ell  {
	    top: -332px;
    left: 17%;
        justify-content: end;
}


.page-id-52 .services_title svg {
	display: none;
}

.asdasdds  {
	transform: none !important;
    transition: none !important;
}

/* .banner_detail_text span {
	letter-spacing: 5px;
}
 */

.menu_item_custom_count {
	background: #FFFFFF;
    border-radius: 12.5px 12.5px 12.5px 1.38889px;
    width: 25px;
    height: 25px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	font-size: 17px;
    font-weight: bold;
    color: #17181C;
}

.asdasdcvcvweqew {
	position: absolute;
    width: 100%;
}

.asdasdxcvgviki {
	position: absolute;
    width: 100%;
}

h1.asdasdcvr{
	--fluid-type-min-size: calc(30 / var(--char-total));
  --fluid-type-max-size: calc(60 / var(--char-total));
  --fluid-type-min-screen: 20;
  --fluid-type-max-screen: 60;
  font-size: calc( (var(--fluid-type-min-size) * 1rem) + (var(--fluid-type-max-size) - var(--fluid-type-min-size)) * (100vw - (var(--fluid-type-min-screen) * 1rem)) / (var(--fluid-type-max-screen) - var(--fluid-type-min-screen)) );
  background: radial-gradient(orchid, slateBlue);
  color: white;
  letter-spacing: 1rem;
  width: var(--size);
  height: var(--size);
  max-width: 45rem;
  max-height: 45rem;
  position: relative;
  border-radius: 50%;
  text-transform: uppercase;
}

.char {
  --units: 1;
  --l: calc(var(--char-total) + 1);
  --rotationUnit: calc((1turn / var(--l)) * var(--char-index, 1));
  transform: rotate(var(--rotationUnit));
  transform-origin: center;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  top: 1rem;
  left: 1rem;
  text-align: center;
  display: block !important;
  position: absolute !important;
}
.char::before, .char::after {
  display: none;
}

.portfolio_item .fixed a {
	text-decoration: none;
}

.hoverrrr {
	transform: translate(4px, 4px) scale(2.8);
}

.asdasdasdasdxzcq {
	height: 100%;
    width: 15%;
    margin: auto;
	transition: 1s;
}

.hoverrrrrrr {
	width: 15px;
    height: 15px;
	transform: scale(1.1);
}

.black_effect_portfolio {
	position: absolute;
    z-index: 0;
    width: 100%;
    height: 115%;
/*     background-color: #fff; */
    opacity: 1;
	will-change: transform;
    transform: translate3d(0px, -3.70965%, 0px) scale3d(1.02968, 1.02968, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
	transition: 0.8s ease-in-out;
}

.effectt_portfolioo {
     opacity: 0.5 !important;
    background-color: #000;
}

.black_effect_portfolio:hover{
	transition: 0.8s ease-in-out;
}

.portfolio_item .fixed a:hover {
	cursor: none;
}

.lang-item a {
	    color: #fff;
    opacity: 0.3;
}

.submit_form_center.asdasdasdasdxzcq {
	    width: 100%;
}


.button_custommm::before {
	content: "";
	display: block;
	background: url(https://digital.vades.uz/wp-content/uploads/2022/03/Arrow-8-1.png) no-repeat;
	height: 90px;
    margin: auto;
    justify-content: center;
    position: absolute;
    width: 26px;
    z-index: 2;
	margin-top: -85px;
	animation: top-bottom 1s infinite;
    -webkit-animation: top-bottom 1s infinite;
}

.button_custommm {
	 z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adcvxcbbvmnyuk6 {
	color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
	margin-bottom: 50px;
    display: block;
}

.adcvxcbbvmnyuk6:hover {
	color: #fff;
}

/* .button_custommm:hover:before {
	 animation: top-bottom 1s infinite;
  -webkit-animation: top-bottom 1s infinite;
} */
@keyframes top-bottom {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  50% {
    -webkit-transform: translateY(8%);
            transform: translateY(8%);
  }

  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-webkit-keyframes top-bottom {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  50% {
    -webkit-transform: translateY(8%);
            transform: translateY(8%);
  }

  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@media (max-width: 1790px) {
    .bg_ell_11 {
        top: -175px;
        left: 10%;
    }

    .bg_ell_2 {
        left: -8%;
    }

    .bg_ell_3 {
        left: 10%;
    }

    .bg_ell_4 {
        left: 9%;
        top: -141px;
    }

    .submit_form_center_span {
        margin-left: 15%;
    }
}

@media (max-width: 1400px) {
	.services_item__info_des{
		font-size: 15px;
	}
	
	.services_item__info_price {
		font-size: 35px;
	}
	
	.services_item_text_name {
		font-size: 55px;
	}
	
    .banner_item .banner_item_title {
        font-size: 155px;
    }

    .bg_ell_11 {
        top: -175px;
        left: 12%;
    }

    .reviews_owl .owl-dots {
        margin-top: -3%;
        position: relative;
    }
}

@media (max-width: 1200px) {
    .banner_item .banner_item_title {
        font-size: 114px;
        line-height: 155px;
    }

    .banner_iconnn {
        position: relative;
        top: 116px;
    }

    .about {
        padding-top: 155px;
    }

    .bg_ell_11 {
        top: -175px;
        left: 14%;
    }

    .bg_ell_2 {
        left: -10%;
    }

    .title {
        font-size: 40px;
    }

    .services_des {
        font-size: 17px;
        margin-left: 80px;
    }

    .services_item_text_name {
        font-size: 40px;
        line-height: 40px;
    }

    .services_item_text_des {
        width: 420px;
        font-size: 16px;
    }

    .services_item__info_price {
        font-size: 35px;
        line-height: 55px;
    }

    .services_item__info_des {
        font-size: 18px;
    }

    .reviews_owl .owl-dots {
        margin-top: -4%;
    }

    .reviews_item .reviews_item_des {
        font-size: 30px;
        line-height: 50px;
    }

    .reviews_owl .owl-item .reviews_item_img_main img {
        width: 350px;
        height: 350px;
    }

    .submit_form_center_span {
        margin-left: 18%;
    }

    .portfolio_item_first .title svg {
        top: -72%;
        left: -13%;
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .asdasfewfew {
        display: none;
        overflow-x: inherit;
    }

    .banner_item .banner_item_title {
        font-size: 85px;
        line-height: 109px;
        position: relative;
        top: 155px;
    }

    .banner_iconnn {
        position: relative;
        top: 220px;
    }

    .bg_ell_11 {
        top: 130px;
        left: -20%;
        justify-content: start;
    }

    .about {
        padding-top: 400px;
    }

    .p_about_mobi {
        display: block;
        font-weight: 300;
        font-size: 16px;
        line-height: 30px;
        color: #fff;
    }

    .p_about_des {
        display: none;
    }

    .about_item {
        margin-bottom: 10px;
    }

    .asdasdds {
        margin-bottom: 60px;
    }

    .bg_ell_2 {
        justify-content: end;
    }

    .bg_ell_2 {
        top: 0;
        left: 11%;
    }

    .services {
        padding-top: 50px;
    }

    .services svg {
        display: block;
        margin-top: 10px;
    }

    .services_des {
        font-size: 17px;
        margin-left: 0;
        margin-top: 20px;
    }

    .services_item {
        padding-top: 30px;
        padding-bottom: 20px;
        display: block;
    }

    .services_item_icon_img {
        display: none;
    }

    .services_item__info {
        display: block;
    }

    .services_item_text_des {
        width: 100%;
    }

    .services_item__info_price {
        font-size: 30px;
        line-height: 40px;
        text-align: left;
    }

    .services_item__info_des {
        font-size: 16px;
        text-align: left;
    }

    .bg_ell_3 {
        display: none;
    }

    .portfolio_item_des {
        font-weight: 400;
        font-size: 25px;
        line-height: 18px;
    }

    .reviews_item {
        display: flex;
        position: relative;
        flex-direction: column-reverse;
        text-align: center;
        margin-top: 3%;
    }

    .reviews_owl .owl-item .reviews_item_img_main img {
        width: 235px;
        height: 235px;
        margin: auto;
    }

    .reviews_item_img_icon {
        margin-top: -4%;
        margin-left: 35%;
    }

    .reviews_owl .owl-item .reviews_item_img_icon img {
        width: 50px;
        height: 50px;
    }

    .reviews_item_name {
        font-size: 22px;
        line-height: 20px;
    }

    .reviews_item_job {
        font-size: 18px;
    }

    .reviews_item .reviews_item_des {
        font-size: 26px;
        line-height: 35px;
    }

    .reviews_owl .owl-dots {
        margin-top: -3%;
        text-align: center;
    }

    .footer_contact_title {
        font-size: 40px;
        line-height: 48px;
    }

    .footer_mobile_class {
        display: flex;
        justify-content: space-between;
    }

    .footer_contact img {
        width: 45px;
        height: 45px;
    }

    .form_footer_rr {
        padding-top: 80px;
    }

    .footer_contact_title {
        font-size: 30px;
        line-height: 29px;
    }

    .footer_form_des {
        font-size: 16px;
        line-height: 19px;
        padding-top: 0px;
    }

    .footer_form .wpcf7-form-control {
        margin-top: 45px;
    }

    .submit_form_center_span {
        margin-left: 22%;
    }

    .footer_contact {
        padding-bottom: 50px;
    }

    .reviews_item_text_img img {
        display: none !important;
    }

    .bg_ell_4 {
        left: 18%;
        top: -193px;
    }

    .collapse:not(.show) {
        display: flex;
    }

    .navbar-light .navbar-toggler {
        display: none;
    }

    .navbar {
        flex-wrap: inherit;
    }

    .navbar-nav {
        display: flex;
        flex-direction: inherit;
    }

    .navbar-expand-lg .navbar-nav .menu-item a {
        font-size: 18px;
        line-height: 17px;
        padding-left: 20px;
    }

    .navbar-brand img {
        width: 150px;
        height: 26px;
    }


}


@media (max-width: 769px) {
	.asdasdasdasdxzcq {
		    width: 100%;
	}
	.submit_form_center_span {
    margin-left: 31%;
    margin-top: -12px;
}
}

@media (max-width: 576px) {
	.modal_first .submit_form_center_span {
    margin-left: 36%;
}
	.submit_form_center_span::after {
		background-size: 100%;
		    width: 65px;
    height: 100px;
		margin-left: 21px;
	}
	.reviews {
	 padding-top: 80px;
    padding-bottom: 80px;
	}
	
	.menu_item_custom_count {
	position: absolute;	
	right: 15px;
	-webkit-text-stroke-color: black;
	}
	
	.submit_form_center_span::before {
    margin-top: 47px;
   margin-left: 29px;
    transform: scale(0.5);
}
	.none {
	display: block;
}
	.modal_first .modal-content {
	width: 100%;
	padding: 10px 10px;
	height: 100%;
	padding-bottom: 30px;
	}
	.modal_first .footer_form .footer_contact_title {
    font-size: 24px;
    line-height: 20px;
	}
	
	.modal_first .footer_form_des {
    font-size: 14px;
    line-height: 19px;
    padding-top: 5px;
}

.modal_first .btn-close {
    background: transparent url(https://digital.vades.uz/wp-content/uploads/2022/01/close.png) center/15px auto no-repeat;
}

.modal_first .footer_form .wpcf7-form-control {
    font-size: 18px;
    line-height: 20px;
}

.modal_first .submit_form_center {
    margin-top: 35px;
}

.wpcf7-submit {
    font-size: 20px;
}
	
	.modal_first .modal-dialog {
		max-width: 100%;
		height: auto;
	}
	.wpcf7-submit+span::before {
		transform: scale(0.5);
	}
    .services {
        overflow: hidden;
    }

    footer {
        padding-bottom: 0;
    }

    .footer_cop_site {
        display: block;
    }

    .footer_cop_site {
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        color: #FFFFFF;
        opacity: 0.5;
        border-top: 1px solid #fff;
        padding: 13px;
        margin-top: 60px;
    }

    .asdad {
        overflow-x: hidden;
    }

    .cursor {
        display: none;
    }

    .cursor-follower {
        display: none;
    }

    .navbar-expand-lg .navbar-nav .menu-item a {
        font-weight: 700;
        font-size: 40px;
        line-height: 150%;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #fff;
        color: transparent;
        opacity: 1;
        border-top: 1px solid #C4C4C4;
        padding: 28px;
        text-align: center;
        display: block;
    }

    .portfolio {
        overflow-x: hidden;
    }

    .slider_dot_nav span {
        font-size: 14px;
        line-height: 13px;
        padding: 0px;
    }

    .navbar-light .navbar-toggler {
        display: block;
    }

    .collapse:not(.show) {
        display: none;
    }

    .navbar-nav {
        flex-direction: column;
        height: 100vh;
        margin-top: 60px;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .banner_item_img img {
        width: 250px;
        height: 315px;
    }

    .banner_item .banner_item_title {
        font-size: 50px;
        line-height: 47px;
        top: 98px;
    }

    .banner_item h1 span {
        -webkit-text-stroke-width: 1px;
    }

    .banner_iconnn {
        top: 53px;
    }

    .bg_ell_11 svg {
        width: 122px;
        height: 122px;
    }

    .bg_ell_11 {
        top: -40px;
        left: -14%;
        justify-content: start;
    }

    .about {
        padding-top: 150px;
    }

    .about_title h3 {
        font-size: 26px;
        line-height: 25px;
    }

    .about_title svg,
    .portfolio_item_first .title svg {
        position: absolute;
        top: -96%;
        left: -69%;
        pointer-events: none;
        z-index: 999;
        transform: scale(0.6);
    }

    .about_item_text_name {
        font-size: 22px;
        line-height: 125%;
        width: 180px;
        margin-bottom: 0;
    }

    .p_about_mobi {
        display: block;
        font-weight: 300;
        font-size: 14px;
        width: 260px;
        line-height: 150%;
        margin: auto;
    }

    .about_item img {
        margin-right: 20px;
    }

    .about_item {
        align-items: center;
        justify-content: center;
    }

    .bg_ell_2 {
        display: none;
    }

    .services svg {
        width: 253px;
        height: 23px;
        margin: auto;
        margin-top: 10px;
    }

    .services_des {
        font-size: 14px;
        width: 280px;
        margin-top: 20px;
        text-align: center;
        margin: auto;
        margin-bottom: 40px;
    }

    .services_title {
        text-align: center;
    }

    .services_item_text_name {
        line-height: 60px;
    }

    .services_item_text_des {
        font-size: 14px;
        width: 280px;
    }

    .services_item__info_price {
        font-size: 26px;
        line-height: 31px;
    }

    .services_item__info_des {
        line-height: 19px;
    }

    .title {
        font-size: 26px;
        line-height: 25px;
    }

    .portfolio_item_first .fixed {
        justify-content: flex-start;
        left: 55%;
    }

    .portfolio_item_first .title span {
        margin-left: -50px;
        top: 83px;
        position: relative;
    }

    .portfolio_item_first .title svg {
        position: absolute;
        top: -78%;
        height: 79px;
        width: 202px;
        left: -12%;
        pointer-events: none;
        z-index: 999;
        transform: scale(1);
    }

    .portfolio_item .title {
        font-size: 26px;
        line-height: 26px;
    }

    .portfolio_item {
        width: 100%;
    }

    .portfolio_item_des {
        font-weight: 400;
        font-size: 18px;
        /* width: 321px; */
        width: 320px;
        margin: auto;
        line-height: 23px;
    }

    .portfolio_item:nth-child(1) .fixed {
        /* transform: translate(0%, 50%); */
        transform: translate(0%, 0%);
    }

    .portfolio_item .fixed {
        left: 0;
    }

    .reviews_item_name {
        font-size: 18px;
        line-height: 22px;
    }

    .reviews_item_job {
        font-size: 16px;
        line-height: 19px;
    }

    .submit_form_center {
        margin-top: 40px;
    }

    .reviews_item .reviews_item_des {
        font-size: 16px;
        line-height: 150%;
            margin: auto;
    }

    .owl-carousel .owl-item .reviews_item_text_img img {
        width: 35px;
    }

    .reviews_item_text_img {
        display: flex;
    }

    .reviews_item_text_img img {
        display: none !important;
    }

    .bg_ell_4 {
           left: 11%;
    top: -299px;
    }
    
    /*.asd_4 {*/
    /*	overflow-x: hidden;*/
    /*}*/

    .bg_ell_4 svg {
        width: 100px;
        height: 100px;
    }


    .footer_mobile_class {
        display: block;
        justify-content: space-between;
    }

    .footer_contact img {
        width: 25px;
        height: 25px;
    }

    .footer_contact_title {
        font-size: 22px;
        line-height: 27px;
    }

    .footer_contact ul li a {
        font-size: 14px;
        line-height: 17px;
    }

    .footer_contact {
        padding-bottom: 20px;
        padding-left: 40px;
    }

    .footer_form_des {
        font-size: 14px;
        line-height: 17px;
        padding-top: 0px;
        width: 246px;
    }

    .footer_form .wpcf7-form-control {
        font-size: 18px;
        line-height: 21px;
        width: 100%;
    }

    .submit_form_center_span {
        margin-left: 35%;
        /* transform: scale(0.5); */
    }

    footer {
        overflow: hidden;
    }

    .asdasdds {
        margin-bottom: 40px;
    }
}

@media (max-width: 360px) {
    .bg_ell_11 {
        top: -40px;
        left: -21%;
    }

    .banner_item .banner_item_title {
        font-size: 42px;
        line-height: 47px;
        top: 98px;
    }

    .portfolio_item_first .title span {
        margin-left: -135px;
    }

    .wpcf7-submit {
        font-size: 18px;
        line-height: 22px;
    }

    .wpcf7-submit+.submit_form_center_span::before {
        transform: scale(0.5);
    }
}

@media (max-width: 340px) {
	.navbar-expand-lg .navbar-nav .menu-item a {
		padding: 6px;
	}
	.footer_contact {
    padding-left: 5px;
}

}

::-webkit-scrollbar {
    -webkit-appearance: none !important;
}

::-webkit-scrollbar {
    width: 10px !important;
}

::-webkit-scrollbar-thumb:vertical {
    height: 50px;
    background-color: #999;
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-track {
    /* border: 3px solid #232943 !important; */
    box-shadow: inset 0 0 2.5px 2px rgba(0, 0, 0, 0.5) !important;
    /* background: #182227 !important; */
}

::-webkit-scrollbar-thumb {
    background: #FCCF31 !important;
    height: 10px !important;
    border-radius: 15px !important;
    width: 20px !important;
    min-height: 10px;
    height: 10px;
}