body{
    background: #111111;
}
body,*{
    font-family: Gilroy,sans-serif;
    font-weight: 400;
}












.loader {
    position: relative;
    width: 200px;
    height: 200px;
    border: 4px solid #240229;
    border-radius: 100px;
    -webkit-box-shadow: -5px -5px 5px rgba(255, 255, 255, 0.1), 10px 10px 10px rgba(0, 0, 0, 0.4), inset -5px -5px 5px rgba(255, 255, 255, 0.2), inset 10px 10px 10px rgba(0, 0, 0, 0.4);
            box-shadow: -5px -5px 5px rgba(255, 255, 255, 0.1), 10px 10px 10px rgba(0, 0, 0, 0.4), inset -5px -5px 5px rgba(255, 255, 255, 0.2), inset 10px 10px 10px rgba(0, 0, 0, 0.4);
  }
  
  .loader:before {
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 10;
    background: #282828;
    border-radius: 100px;
    border: 2px solid #240229;
    -webkit-box-shadow: inset -2px -2px 5px rgba(255, 255, 255, 0.2), inset 3px 3px 5px rgba(0, 0, 0, 0.5);
            box-shadow: inset -2px -2px 5px rgba(255, 255, 255, 0.2), inset 3px 3px 5px rgba(0, 0, 0, 0.5);
  }
  
  .loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background-image: -o-linear-gradient(315deg, #4E4AFF 0%, #D560DF 33%, #FF829A 66%, #FFE299 100%);
    background-image: linear-gradient(-225deg, #4E4AFF 0%, #D560DF 33%, #FF829A 66%, #FFE299 100%);
    -webkit-filter: blur(20px);
            filter: blur(20px);
    z-index: -1;
    -webkit-animation: animate 0.5s linear infinite;
            animation: animate 0.5s linear infinite;
  }
  @keyframes animate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }



.preloader {
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #222;
}
.preloader.done {
	animation: 500ms opa;
}


@keyframes opa {
	0%{opacity: 1;}
	100%{opacity: 0;}
}























header{
    height: 100px;
    background: #111111;
    display: flex;
    align-items: center;
    z-index: 99;
    position: relative;
}

.container-fluid{
    max-width: 1920px;
    padding: 0 50px;
}

.nav_open_btn{
    border: none;
    background: none;
    transition: 300ms;
}
.nav_open_btn:hover{
    transform: scale(1.1);
}
.nav_window{
    z-index: 100;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 1;
    transition: 300ms;
}
.nav_window.active{
    display: block;
}
.nav_bg{
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.01);
    -webkit-backdrop-filter: blur(15px);backdrop-filter: blur(15px);
    opacity: 0;
    transition: 300ms;
}
.nav_window.active .nav_bg{
    opacity: 1;
}
.nav_block{
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    background: #111;
    right: -100vw;
    transform-origin: right;
    transition: 600ms;
    padding: 33px 60px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.nav_window.active .nav_block{
    right: 0;
}
.nav_pages{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 53px;
}
.nav_pages a{
    font-weight: 400;
    font-size: 40px;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    position: relative;
    transition: color 300ms;
}

.nav_pages a.active::after,.nav_pages a::after{
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(98.14deg, #4E4AFF 0%, #D560DF 35.68%, #FF829A 59.99%, #FFE299 98.45%);
    position: absolute;
    left: 0;
    transform: scaleX(0);
    bottom: 0;
    transform-origin: left;
    transition: transform .25s ease;
}
.nav_pages a.active, .nav_pages a:hover{
    color: rgba(255, 255, 255, 1);
}
.nav_pages a.active::after, .nav_pages a:hover:after{
    transform: scaleX(1);
}

.nav_footer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.nav_link{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.nav_link span{
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
}

.nav_link a{
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    transition: color 300ms;
}


.nav_link a::after{
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(98.14deg, #4E4AFF 0%, #D560DF 35.68%, #FF829A 59.99%, #FFE299 98.45%);
    position: absolute;
    left: 0;
    transform: scaleX(0);
    bottom: 0;
    transform-origin: left;
    transition: transform .25s ease;
}

.nav_link a:hover:after{
    transform: scaleX(1);
}
.nav_acc{
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav_acc a{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(98.14deg, #4E4AFF 0%, #D560DF 35.68%, #FF829A 59.99%, #FFE299 98.45%);
    border-radius: 50%;
    position: relative;
}
.nav_acc a::after{
    content: none;
}
.nav_acc a svg{
    z-index: 2;
    position: relative;
}
.nav_acc a::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: #7851F6;
    z-index: 1;
    opacity: 1;
    transition: 300ms;
}
.nav_acc a:hover::before{
    opacity: 0;
}


@media (max-width: 1920px){
    .nav_footer{
        gap: 10px;
    }
    .nav_link{
        gap: 10px;
    }
    .nav_pages{
        gap: 35px;
    }
    .nav_link span{
        font-size: 20px;
    }
    .nav_link a{
        font-size: 30px;
    }    
    .nav_pages a{
        font-size: 30px;
    }
    .nav_block{
        width: 40%;
        padding: 33px 60px 25px 50px;
    }
    .nav_acc a{
        width: 35px;
        height: 35px;
    }
    .nav_acc a svg{
        transform: scale(0.9);
    }
}

@media (max-width: 1400px){
    .nav_footer{
        gap: 0;
    }
    .nav_link{
        gap: 5px;
    }
    .nav_pages{
        gap: 20px;
    }
    .nav_link span{
        font-size: 18px;
    }
    .nav_link a{
        margin-top: -10px;
        font-size: 24px;
    }    
    .nav_pages a{
        font-size: 24px;
    }
    .nav_block{
        width: 50%;
        padding: 25px 50px 25px 40px;
    }
    .nav_acc a{
        width: 35px;
        height: 35px;
        margin-top: 0px;
    }
    .nav_acc a svg{
        transform: scale(0.9);
    }
}
@media (max-width: 1000px){
    .nav_footer{
        gap: 5px;
    }
    .nav_link{
        gap: 5px;
    }
    .nav_pages{
        gap: 20px;
    }
    .nav_link span{
        font-size: 18px;
    }
    .nav_link a{
        margin-top: -10px;
        font-size: 24px;
    }    
    .nav_pages a{
        font-size: 24px;
    }
    .nav_block{
        width: 70%;
        padding: 25px 50px 25px 40px;
    }
    .nav_acc a{
        width: 35px;
        height: 35px;
        margin-top: 0px;
    }
    .nav_acc a svg{
        transform: scale(0.9);
    }
    .header_logo svg{
        width: 70px;
        height: auto;
    }
    #nav_open_btn svg{
        width: 70px;
        height: auto;
    }
    #nav_close_btn svg{
        width: 30px;
        height: auto;
    }
    header {
        height: 70px;
    }
    .container-fluid{
        padding: 0 20px;
    }
}
@media (max-width: 700px){
    .nav_footer{
        gap: 5px;
    }
    .nav_link{
        gap: 5px;
    }
    .nav_pages{
        gap: 18px;
    }
    .nav_link span{
        font-size: 16px;
    }
    .nav_link a{
        margin-top: -10px;
        font-size: 20px;
    }    
    .nav_pages a{
        font-size: 20px;
    }
    .nav_block{
        width: 95%;
        padding: 25px 10px 25px 40px;
    }
    .nav_acc a{
        width: 35px;
        height: 35px;
        margin-top: 0px;
    }
    .nav_acc a svg{
        transform: scale(0.9);
    }
}






                /* MAIN */



                
.main_left_block{
    padding: 80px 150px 0 0;
    position: relative;
}

.main_left_block::after{
    content: '';
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 2000px;
    background: linear-gradient(270deg, #7851F6 0%, #5025DD 100%);
}
.main_title{
    padding-top: 100px;
    position: relative;
}
.main_title h1{
    font-weight: 700;
    font-size: 150px;
    line-height: 81.5%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    max-width: 740px;
}

.main_title .quotes{
    content: url('../img/“.svg');
    width: 275.4px;
    height: 207.52px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.main_subtitle{
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    max-width: 510px;
    margin-top: 20px;
}
.main_right_block{
    height: 100%;
}
.main_right_block img{
    height: 180px;
    width: auto;
}

.main_sircle{
    width: 230px;
    height: 230px;
    background: #FFFFFF;
    border-radius: 50%;
    margin: 0 -115px 50px -115px;
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.main_sircle .play_svg{
    transition: 250ms;
}
.main_sircle:hover .play_svg{
    transform: scale(1.1);
}
.main_sircle_text{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_sircle_text svg{
    animation: rotating 15s linear infinite;
}

@keyframes rotating {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}
.main_right_wrapper{
    position: relative;
    display: inline-block;
}
.main_right_img{
    opacity: 0;
    transition: 300ms;
}
.main_right_opacity{
    position: absolute;
    left: 0;
    opacity: 1;
    transition: 300ms;
}

.marquee:hover .main_right_img,.marquee2:hover .main_right_img,.marquee3:hover .main_right_img,.marquee4:hover .main_right_img{
    opacity: 1;
}
.marquee:hover .main_right_opacity,.marquee2:hover .main_right_opacity,.marquee3:hover .main_right_opacity,.marquee4:hover .main_right_opacity{
    opacity: 0;
}



@media (max-width:1600px) {
    .main_title h1{
        font-size: 109.693px;
        max-width: 540px;
    }
    .main_right_block img{
        height: 135px;
        width: auto;
    }
    .main_subtitle{
        font-size: 16px;
    }
}
@media (max-width:1000px) {
    .main_title h1{
        font-size: 80px;
        max-width: 540px;
    }
    .main_right_block img{
        height: 110px;
        width: auto;
    }
    .main_left_block {
        padding: 80px 50px 0 0;
        position: relative;
    }
    .main_title {
        padding-top: 60px;
    }
    .main_subtitle {
        font-size: 16px;
        max-width: 350px;
    }
    .main_sircle_text svg {
        padding: 5px;
    }
    .main_sircle {  
        width: 150px;
        height: 150px;
        margin: 0 -75px 20px -75px;
    }
}
@media (max-width: 768px){
    .main .container-fluid{
        padding: 0;
    }
    .main_left_block {
        padding: 30px 20px 100px 20px;
        position: relative;
    }
    .main_title {
        padding-top: 70px;
    }
    .main_title h1{
        font-size: 67px;
    }
    .main_title .quotes{
        width: 246px;
        height: 185px;
    }
    .main_subtitle {
        font-size: 14px;
        max-width: 350px;
    }
    .main_sircle {  
        width: 150px;
        height: 150px;
        margin: -75px auto -75px;
    }
    .main_sircle>svg{
        transform: scale(0.8);
    }
    .main_right_block img{
        height: 65px;
        width: auto;
    }
    .main_right_img{
        opacity: 1;
    }
    .marquee .main_right_opacity,.marquee2 .main_right_opacity,.marquee3 .main_right_opacity,.marquee4 .main_right_opacity{
        opacity: 0;
    }
    
}






/* PARTNERS */


.partners{
    background: rgba(34, 34, 34, .5);
    backdrop-filter: blur(50px);
    padding: 50px 0;    
    overflow: hidden;
}

.partners img{
    transition: 300ms;
    transform: scale(0.9);
}
.partners img:hover{
    transform: scale(1);
}

@media (max-width: 768px){
    .partners{
        padding: 25px 0;    
    }
    
    .partners img{
        transition: 300ms;
        transform: scale(0.7);
    }
    
    .partners img:hover{
        cursor: pointer;
        transform: scale(0.8);
    }
}





/* CONTENT */


.about_us h2{
    font-style: italic;
    font-weight: 600;
    font-size: 48px;
    line-height: 81.5%;
    letter-spacing: 0.1em;
    color: #7851F6;
}

.about_us h3{
    font-style: italic;
    font-weight: 700;
    font-size: 36px;
    color: #FFFFFF;
}

.about_us p{
    font-weight: 300;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
}

.about_left{
    max-width: 637px;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 15px;
    padding: 100px 160px 130px 0;
    
}
.about_left>*,.about_right>*{
    z-index: 2;
    position: relative;
}
.about_left::before{
    content: '';
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 2000px;
    background: rgba(34, 34, 34, 1);
    opacity: 0.5;
    backdrop-filter: blur(50px);
}

.about_right{
    display: flex;
    flex-direction: column;
    position: relative;
    flex-grow: 1;
    gap: 15px;
    padding: 100px 0 130px 50px;
}

.about_right::before{
    content: '';
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 2000px;
    background: rgba(34, 34, 34, 1);
    opacity: 0.5;
    backdrop-filter: blur(50px);
}


@media (max-width: 1600px){
    .about_us h2{
        font-size: 40px;
    }
    
    .about_us h3{
        font-size: 30px;
    }
    
    .about_us p{
        font-size: 20px;
    }
    .about_left{
        max-width: 483px;
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 10px;
        padding: 50px 43px 63px 0;
    }
    .about_right{
        display: flex;
        flex-direction: column;
        position: relative;
        flex-grow: 1;
        gap: 25px;
        padding: 50px 0 43px 50px;
    }
}
@media (max-width: 1300px){
    .about_us h2{
        font-size: 40px;
    }
    
    .about_us h3{
        font-size: 24px;
    }
    
    .about_us p{
        font-size: 16px;
    }
    .about_left{
        max-width: 483px;
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 10px;
        padding: 50px 43px 63px 0;
    }
    .about_right{
        display: flex;
        flex-direction: column;
        position: relative;
        flex-grow: 1;
        gap: 15px;
        padding: 50px 0 43px 50px;
    }
}
@media (max-width: 769px){
    .about_left{
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 0;
        padding: 50px 43px 63px 20px;
    }
    .about_right{
        display: flex;
        flex-direction: column;
        position: relative;
        flex-grow: 1;
        gap: 15px;
        padding: 50px 0 43px 20px;
    }
    .about_us .container-fluid{
        padding: 0;
    }
    .about_us .about_right h3{
        font-size: 20px;
        max-width: 300px;
    }
}







/* Services */
.services{
    overflow: hidden;
}
.services_left{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.services_left_block{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 100px 50px 140px 0;
    position: relative;
    text-decoration: none;
    flex-grow: 1;
}
.services_left_block>*, .services_right_block>*{
    z-index: 2;
    position: relative;
}
.services_left_block::before{
    content: '';
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 2000px;
    background: rgba(34, 34, 34, 1);
    opacity: 0.5;
    backdrop-filter: blur(50px);
}
.services h2{
    font-weight: 400;
    font-size: 32px;
    line-height: 81.5%;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    opacity: 0.5;
    margin-bottom: 50px;
}
.services h3 {
    height: 172px;
}
.services h3 span{
    font-weight: 600;
    font-size: 96px;
    line-height: 110%;
    letter-spacing: -0.03em;
    background: linear-gradient(98.14deg, #4E4AFF 0%, #D560DF 35.68%, #FF829A 59.99%, #FFE299 98.45%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-fill-color: transparent !important;
    transition: 250ms;
    position: absolute;
    opacity: 0;
}

.services h3 span.bg{
    background: linear-gradient(98.14deg, #4E4AFF 0%, #4E4AFF 35.68%, #4E4AFF 59.99%, #4E4AFF 98.45%);
    opacity: 1;
}

.services .services_block:hover h3 span{
   opacity: 1;
}
.services .services_block:hover h3 span.bg{
   opacity: 0;
}


.services p{
    font-weight: 300;
    font-size: 20px;
    color: #FFFFFF;
    opacity: 0.8;
    transition: 250ms;
}

.services .services_block:hover p{
    opacity: 1;
 }


 .services .second h2{
    margin-bottom: 0;
}

.services_left_block.second{
    padding: 100px 50px 50px 0;
}
.services_right{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    gap: 30px;
}

.services_right_block{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 100px 0 50px 50px;
    position: relative;
    text-decoration: none;
    flex-grow: 1;
}

.services_right_block::before{
    content: '';
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 2000px;
    background: rgba(34, 34, 34, 1);
    opacity: 0.5;
    backdrop-filter: blur(50px);
}


@media (max-width:1600px){
    .services_left_block{
        padding: 50px 50px 75px 0;
    }
    .services h2{
        font-size: 24px;
    }
    .services h3 {
        height: 144px;
    }
    .services h3 span{
        font-size: 80px;
    }
    .services p{
        font-size: 20px;
    }
}

@media (max-width:1300px){
    .services_left_block{
        padding: 50px 50px 75px 0;
    }
    .services h2{
        font-size: 20px;
    }
    .services h3 {
        height: 108px;
    }
    .services h3 span{
        font-size: 60px;
    }
    .services p{
        font-size: 16px;
    }
}
@media (max-width:1000px){
    .services_left_block{
        padding: 50px 50px 0 0;
    }
    .services_right_block{
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 100px 0 50px 50px;
    }
    .services h2{
        font-size: 20px;
        margin-bottom: 50px;
    }
    .services h3 {
        height: 86.4px;
    }
    .services h3 span{
        font-size: 48px;
    }
    .services p{
        font-size: 16px;
    }
}

@media (max-width: 768px){
    .services .container-fluid{
        padding: 0;
    }
    .services_right_block,.services_left_block,.services_left_block.second{
        padding: 50px 0 43px 20px;
    }
    .services .second h2,.services h2{
        margin-bottom: 80px !important;
    }
    .services h3 span.bg{
        background: linear-gradient(98.14deg, #4E4AFF 0%, #4E4AFF 35.68%, #4E4AFF 59.99%, #4E4AFF 98.45%);
        opacity: 0;
    }
    
    .services .services_block h3 span{
       opacity: 1;
    }
}



/* FORM */



.form{
    background: rgba(34, 34, 34, .5);
    backdrop-filter: blur(90px);
    padding: 120px 0;
}

.form h2{
    font-weight: 700;
    font-size: 96px;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    line-height: 90%;
}

.form_input{
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(90px) !important;
    border-radius: 100px;
    padding: 0 40px;
    border: none;
    max-width: 432px;
    width: 100%;
    color: white;
    height: 100px;
    outline: none !important;
    box-shadow: none !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
}
input:-webkit-autofill {
    transition: all 5000s ease-in-out 0s;
}
.form_input::placeholder{
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}

.form_btn{
    
    border-radius: 100px;
    padding: 0 87px;
    height: 100px;
    display: flex;
    align-items: center;
    border: none;
    position: relative;
    background: linear-gradient(98.14deg, #4E4AFF 0%, #D560DF 35.68%, #FF829A 59.99%, #FFE299 98.45%);
}
.form_btn span{
    z-index: 2;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
}
.form_btn::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100px;
    background: #7851F6;
    z-index: 1;
    opacity: 1;
    transition: 300ms;
}
.form_btn:hover::before{
    opacity: 0;
}
@media (max-width:1600px) {
    .form h2{
        font-size: 80px;
    }
    .form{
        padding: 80px 0;
        z-index: 2;
    }
    .form_input{
        padding: 0 28px;
        height: 70px;
    }
    
    .form_input::placeholder{
        font-weight: 400;
        font-size: 18px;
        color: #FFFFFF;
    }
    
    .form_btn{
        padding: 0 45px;
        height: 70px;
    }
}
@media (max-width:1400px) {
    .form h2{
        font-size: 70px;
    }
}
@media (max-width:1200px) {
    .form h2{
        font-size: 56px;
    }
}





/* FOOTER */

.footer_name{
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
}

.footer_value{
    color: #FFFFFF;
    font-weight: 700;
    font-size: 36px;
    line-height: 119%;
    text-decoration: none;
    position: relative;
    transition: color 300ms;
}

.footer_value::after{
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(98.14deg, #4E4AFF 0%, #D560DF 35.68%, #FF829A 59.99%, #FFE299 98.45%);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.footer_value:hover{
    color: rgba(255, 255, 255, 1);
}
.footer_value:hover:after{
    transform: scaleX(1);
}
footer{
    background:rgba(34, 34, 34, .5);
    backdrop-filter: blur(90px);
    padding: 50px 0;
}

.footer_text{
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    opacity: 0.5;
}


@media (max-width:1600px) {
    .footer_name{
        font-size: 24px;
    }
    .footer_value{
        font-size: 30px;
    }
    footer .nav_acc a{
        width: 50px;
        height: 50px;
    }
    footer .nav_acc svg{
        transform: scale(1);
    }
}

@media (max-width:768px) {
    .footer_name{
        font-size: 24px;
    }
    .footer_value{
        font-size: 24px;
    }
    footer .nav_acc a{
        width: 50px;
        height: 50px;
    }
    footer .nav_acc svg{
        transform: scale(1);
    }
    .footer_text{
        font-size: 14px;
    }
}



/* BACKGROUND */


.circle {
	border-radius: 50%;
    position: absolute;
    width: 735.39px;
    height: 735.39px;
    background: linear-gradient(143.15deg, #6100FF 8.37%, rgba(0, 255, 255, 0) 91.49%);
    filter: blur(150px);
}

.angle {
    background: linear-gradient(98.14deg, #4E4AFF 0%, #D560DF 35.68%, #FF829A 59.99%, #FFE299 98.45%), linear-gradient(180deg, #0075FF 0%, rgba(0, 163, 255, 0) 100%) !important;
}

.circle:nth-child(1){
    left: 138px;
    top: 403px;
}
.circle:nth-child(2) {
    left: 309.9px;
    top: 444px;
}
.circle:nth-child(3){
    left: 19.319999999999993px;
    top: 1976.46px;
    display: none;
}
.circle:nth-child(4) {
    left: -153.18px;
top: 1908px;
display: none;
}
.circle:nth-child(5){
    left: 1504.95px;
top: 2317.95px;
}
.circle:nth-child(6) {
    left: 1460px;
top: 2816px;

}
.circle:nth-child(7){
    left: 305px;
top: 2849px;
}
.circle:nth-child(8) {
    left: 20%;
top: 90%;
}

@media (max-width:768px){
    .circle{
        display: none;
    }
    .bg {
        display: none;
    }
}


/* PORTFOLIO */

.portfolio{
    overflow-x: hidden;
}

.portfolio h1{
    font-weight: 700;
    font-size: 96px;
    line-height: 81.5%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}
.portfolio h3{
    font-style: italic;
    font-weight: 500;
    font-size: 32px;
    line-height: 81.5%;
    /* identical to box height, or 26px */
    letter-spacing: 0.1em;
    color: #FFFFFF;
    opacity: 0.5;
}

.porftolio_filter{
    margin: 0 15px;
    white-space: nowrap;
    font-weight: 400;
    font-size: 28px;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.porftolio_filter::after{
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(98.14deg, #4E4AFF 0%, #D560DF 35.68%, #FF829A 59.99%, #FFE299 98.45%);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.porftolio_filter.active::after{
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(98.14deg, #4E4AFF 0%, #D560DF 35.68%, #FF829A 59.99%, #FFE299 98.45%);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform .25s ease;
}
.porftolio_filter:hover{
    color: rgba(255, 255, 255, 1);
}
.porftolio_filter:hover:after{
    transform: scaleX(1);
}
.porftolio_filter.disabled{
    opacity: 0.5;
    cursor: default;
}
.porftolio_filter.disabled::after{
    content: none;
}
.portfolio_image{
    height: 500px;
    overflow: hidden;
    transition: 600ms;
    position: relative;
}

.portfolio_image img{
    margin-right: -15px;
    transition: 600ms;
    object-fit: cover;
}
.portfolio_image:hover img{
    transform: scale(1.1);
}
.portfolio_image_link{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: 600ms;
}

.portfolio_image:hover .portfolio_image_link{
    opacity: 1;
}
a.portfolio_image_link{
    font-weight: 400;
    font-size: 32px;
    line-height: 81.5%;
    color: #FFFFFF;
    text-decoration: none;
}

.portfolio__container:nth-child(odd) .portfolio__block{
    position: relative;
    padding: 50px 50px 50px 0;
}
.portfolio__container:nth-child(odd) .portfolio__block>*{
    position: relative;
}
.portfolio__container:nth-child(odd) .portfolio__block::before{
    content: '';
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 50vw;
    background: rgba(34, 34, 34, 1);
    opacity: 0.5;
    backdrop-filter: blur(50px);
    z-index: 0;
}

.portfolio__container:nth-child(2n) .portfolio__block{
    position: relative;
    padding: 50px 0 50px 50px;
}
.portfolio__container:nth-child(2n) .portfolio__block>*{
    position: relative;
}
.portfolio__container:nth-child(2n) .portfolio__block::before{
    content: '';
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 50vw;
    background: rgba(34, 34, 34, 1);
    opacity: 0.5;
    backdrop-filter: blur(50px);
    z-index: 0;
}

h4{
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    color: #FFFFFF;
    opacity: 0.8;
}

p{
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
    opacity: 0.8;
    max-width: 560px;
}


.portfolio_link{
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    position: relative;
    text-decoration: none;
}
.portfolio_link::after{
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(98.14deg, #4E4AFF 0%, #D560DF 35.68%, #FF829A 59.99%, #FFE299 98.45%);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.portfolio_link:hover{
    color: rgba(255, 255, 255, 1);
}
.portfolio_link:hover:after{
    transform: scaleX(1);
}
.portfolio_block{
    background: rgba(34, 34, 34, .5);
    backdrop-filter: blur(90px);
    border-radius: 30px;
    padding: 50px 90px 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    height: 100%;
}
#tab-smm .col-xl-6{
    margin-top: 100px;
}
.phone_img{
    margin-top: -130px;
}

.portfolio_tab{
    display: none;
    transition: 300ms;
    opacity: 0;
}
.portfolio_tab.default{
    display: flex;
    opacity: 1;
}
.portfolio_tab:target{
    display: flex;
    opacity: 1;
}

.video_block{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    justify-content: center;
    align-items: center;
    z-index: 999;
    display: none;
    opacity: 0;
    transition: 600ms;
}
.video_block.active{
    opacity: 1;
}
.video_block #player{
    width: 100%;
    height: 100%;
}
.video_block .nav_open_btn{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 2;
}
@media (max-width:1600px){
    .portfolio_image {
        height: 400px;
    }
    .portfolio h3 {
        font-size: 24px;
    }
    .portfolio h1 {
        font-size: 80px;
    }
    .porftolio_filter {
        font-size: 24px;
    }
    .portfolio_image_link a{
        font-size: 24px;
    }
    .portfolio_block{
        padding: 50px 50px 0 50px;
    }
}
@media (max-width:1400px){
    .portfolio_image {
        height: 320px;
    }
    .portfolio h3 {
        font-size: 22px;
    }
    .portfolio h1 {
        font-size: 70px;
    }
    .porftolio_filter {
        font-size: 20px;
    }
}

@media (max-width:1000px){
    .portfolio h1 {
        font-size: 66px;
    }
    .portfolio h3 {
        font-size: 18px;
    }
    .portfolio .container-fluid{
        padding: 0;
    }
    .portfolio__container:nth-child(even) .portfolio__block::before{
        width: 100vw;
    }
    .portfolio__container:nth-child(odd) .portfolio__block::before{
        width: 100vw;
    }
    .portfolio__container:nth-child(odd) .portfolio__block{
        padding: 40px 20px;
    }
    .portfolio__container:nth-child(even) .portfolio__block{
        padding: 40px 20px;
    }
    .portfolio_image {
        height: 190px;
    }
}


@media (max-width: 767px) {
    .portfolio .row {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .portfolio .col-12 {
        width: 100%;
        text-align: left !important;
    }

    .portfolio .scrollable-container {
        flex-direction: column;
        align-items: flex-start !important;
        margin-right: 0;
        margin-left: 15px;
    }

    .porftolio_filter {
        margin: 10px 0;
        text-align: left !important;
    }

    .portfolio h1 {
        font-size: 48px; /* Уменьшенный размер для мобильных устройств */
    }

    .portfolio h3 {
        font-size: 16px; /* Уменьшенный размер для мобильных устройств */
    }

    .porftolio_filter {
        font-size: 18px; /* Уменьшенный размер для мобильных устройств */
    }
}