html body{
    padding: 0;
    margin: 0;
    /* font-family: 'Arial', sans-serif; */
    font-family: 'Roboto';
    font-weight: 400;
    color: #313234;
}

.logo-wrapper {
  position: relative;
  width: 10vw;
  height: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  position: relative;
  width: 3.2vw;
  height: 3.2vw;
  z-index: 2;
}

.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-text img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


   .menu-btn {
      position: absolute;
      display: none;
      top: -100vh;
      right: -100vw;
      z-index: 1001;
      width: 12vw;
      height: 2vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .menu-btn span {
      display: none;
      height: 0.4vh;
      background: #333;
      border-radius: 2px;
      transition: 0.3s;
    }

    /* Меню */
    .slide-menu {
      position: fixed;
      top: -100%;
      left: 0;
      width: 100%;
      height: 200px;
      background: #222;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: top 0.4s ease;
      z-index: 1000;
    }

    .slide-menu.active {
      top: 0;
    }

    .slide-menu a {
      color: #fff;
      text-decoration: none;
      padding: 10px;
      font-size: 1.6vh;
    }

    .slide-menu a:hover {
      text-decoration: underline;
    }

.header{
    height: 15vh;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.header-logo{
    margin: auto 0 auto 0;
    display: flex;
    justify-content: center;
    max-height: 4vw;
    max-width: 100vw;
}

.header-logo img{
    height: 5vw;
}

.header-info{
    display: flex;
}

.header-info-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left:1vw ;
    margin-right: 1vw;
}

.header-info-container a{
    text-decoration: none;
    color: black;
}

.adress{
    max-height: 1vw;
    font-size: 1vw;
    display: flex;
    justify-content: center;

    transition: 0.3s;
}

.adress p{
    padding: 0;
    margin: 0 0 0 4px;
}

.adress:hover{
    font-size: 1.1vw;
}

.info{
    height: 84vh;
    background-color: blueviolet;
}

.phone-number{
    padding: 0;
    margin: 0 10px 0 10px;
    font-size: 1.2vw;

    transition: 0.3s;
}

.phone-number a{
    color: #000;
    text-decoration: none;
}

.phone-number:hover{
    font-size: 1.3vw;
}

.order-button{
    padding: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(90deg, rgba(101, 0, 189, 1) 0%, rgba(99, 112, 255, 1) 100%);
    border-radius: 10px;
    color: white;

    transition: 0.3s;
}

.order-button:hover{
    padding: 1.1vw;
    font-size: larger;
}


.circle-for-phone{
    height: 20px;
    width: 20px;
    margin-right: 10px;
    padding: 6px;
    font-size: 20px;
    border-radius: 100%;
    background-color: white;
    color: #6500bd;
}

.white-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.hero {
    background: url('/public/img/bg.svg') no-repeat center/cover;
    padding: 3.2vw 0;
    height: 70vh;
    color: #fff;
    border-radius:0 0 3vw 3vw;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: -1vh;
}

.hero-text {
    margin-left: 10vw;
    max-width: 53vw;
    line-height: 1.4;
    letter-spacing: 0.1rem;
}

.hero-text h1{
    margin-top: 0px;
    font-size: 2.4vw;
    font-family: 'Roboto';
    font-weight: 900;
}

.highlight {
    margin-left: -0.8vw;
    background: #fff;
    color: #5824aa;
    font-weight: bold;
    padding: 0.2vw 1vw;
    border-radius: 1.6vw;

    font-family: 'Roboto';
    font-weight: 900;
}

.hero-text ul {
    margin: 15px 0;
    list-style: none;
    font-weight: 700;
}

.hero-text li {
    margin-bottom: 5px;
    font-size: 1.5vw;
    font-weight: 500;
}

.small-title {
    max-width: 10vw;
    display: flex;
    align-items: center;
    margin-top: 1vw;
    font-size: 1.4vw;
}

.border-little-title-container{
    display: flex;
    align-items: center;
    margin: 0 4vw 0 4vw;
}

.border-small-title{
    height: 18vh;
    width: 0.4vh;
        background-color: #ffffff;
        background: linear-gradient(to top,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 50%,
        rgba(255,255,255,0) 100%);
}

.icons {
    display: flex;
    gap: 2vw;
    margin-top: 2vh;
    flex-wrap: wrap;
}

.icon-box {
    margin-right:5vw ;
    text-align: center;
    font-size: 1vw;
    width: 7vw;
    height: 4vw;
}

.icon-box img{
    height: 5vw;
    margin-bottom: 1vw;
}


.hero-form {
    max-width: 20vw;
    margin-right: 10%;
    padding: 2vw;
    padding-bottom: 1vw;
    border-radius: 1vw;
    border: 1px solid rgba(255, 255, 255, 0.377) ;
    width: 35%;
    backdrop-filter: blur(2px);
}

.hero-form input, .hero-form button {
    width: 100%;
    padding: 1vw;
    margin: 0.5vw 0;
    border-radius: 0.5vw;
}

.hero-form button {
    background: linear-gradient(90deg, rgba(101, 0, 189, 1) 0%, rgba(99, 112, 255, 1) 100%);    
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    border: 0.5px solid rgba(255, 255, 255, 0.473);
}

.hero-form input {
    border: none;
    background: #fff;
    color: #000;
}

.hero-form h3 {
    padding: 0;
    margin: 0;
    font-size: 2.2vh;
    font-weight: 400;
    margin-bottom: 0.4vw;
    display: flex;
    justify-content: center;
    align-items: center;
}




.policy {
    text-align: center;
    font-size: 0.8vw;
    font-weight: 400;
    margin: 0.5vw 0;
}

.under-hero{
    padding-top: 2vh ;
    display: flex;
    justify-content: center;
}

.hero-form button{
    font-size: 1vw;
}

.header-menu{
    display: none;
}

.open-modal-btn {
    position: relative;
    z-index: 10000000;
      display: none;
      background: linear-gradient(90deg, #6300BD, #6D4DFF);
      color: #fff;
      border: 0.01em solid white ;

      border-radius: 1.4vh;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    /* Фон модалки */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    /* Кнопка закрытия */
    .close-btn {
      display: none;
      position: absolute;
      top: 10px;
      right: 12px;
      background: none;
      border: none;
      font-size: 22px;
      color: #aaa;
      cursor: pointer;
    }
    .close-btn:hover { color: #fff; }

    /* Окно */
    .modal {
      background: rgba(40,40,60,0.95);
      padding: 4vw;
      border-radius: 3vw;
      border: 2px solid rgba(255, 255, 255, 0.541);
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      min-height: 32vh;
      width: 70vw;
      color: #fff;
      text-align: center;
      position: relative;
      animation: fadeIn 0.3s ease;
    }

    /* Анимация */
    @keyframes fadeIn {
      from { transform: translateY(-20px); opacity: 0; }
      to   { transform: translateY(0); opacity: 1; }
    }

    /* Поля */
    .modal input {
      font-size: 4vw;
      width: 100%;
      padding: 2vh;
      margin: 1vh 0;
      border-radius: 6px;
      border: none;
      outline: none;
    }

    .modal h3{
        font-size: 4vw;
    }

    /* Текст */
    .modal small {
      display: block;
      margin: 8px 0;
      font-size: 12px;
      color: #ccc;
    }

    /* Кнопка отправки */
    .submit-btn {
      width: 100%;
      padding: 2vh;
      background: linear-gradient(90deg, rgba(101, 0, 189, 1) 0%, rgba(99, 112, 255, 1) 100%);
      border: none;
      border-radius: 8px;
      color: #fff;
      font-size: 100px;
      cursor: pointer;
      margin-top: 10px;
    }
    .submit-btn:hover {
      opacity: 0.9;
    }

    .br-in-highlight{
        display: none;
    }

@media screen and (max-width: 980px) and (orientation: portrait){

    .logo-wrapper {
        width: 10vh;
        height: 10vh;
    }

    .logo {
        width: 4vh;
        height: 4vh;
    }

    .circle-text {
        width: 100%;
        height: 100%;
    }

    .circle-text img {
        width: 90%;
        height: 90%;
    }

    .br-in-highlight{
        padding: 0;
        margin: 0;
        display: block;
        width: 0;
        height: 0;
    }

    .hero{  
        height: 86vh;
        border-radius:0 0 10vw 10vw;
    }

    .hero-content{
        margin-top: 3vh;
        margin-left: 2vw;
        max-width: 95vh;
        display: grid;
        grid-template-rows: 1fr;
        justify-content: center;

    }
    .hero-text{
        min-width: 94vw;
        margin: 1.5vh;
        margin-top: 2vh;
    }

    .hero-text li {
        margin-bottom: 5px;
        font-size: 1.8vh;
        font-weight: 500;
    }

    .highlight{
        border-radius: 2vh;
        padding: 0.6vw 3vw;
    }

    .hero-text h1{
        font-size: 3vh;
    }

    .hero-form{
        display: none;
    }

    .header-info{
        display: none;
    }

    .header-info-container{
        display: none;
    }

    .header{
        grid-template-columns: 1fr 1fr;
        height: 10vh;
    }

    .header-logo{
        min-height: 6vh;
    }

    .header-logo img{
        height: 6vh;
    }

    .menu-btn{
        display:flexbox;
        top: 4vh;
        right: 10vw;
    }

    .menu-btn span{
        display: block;
    }

    .under-hero{
        margin-top: 10vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .small-title {
        margin: 0;
        margin-left: 2vh;
        margin-top: 1vw;
        min-width: 90vw;
        display: flex;
        align-items: center;
        font-size: 2.1vh;
    }

    .border-small-title{
        margin-top: -20vh;
        height: 0.2vh  ;
        width:80vw;
        background-color: #ffffff;
        background: linear-gradient(to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 50%,
        rgba(255,255,255,0) 100%);
    }

    .border-little-title-container{
        display: flex;
        justify-content: center;
        margin: 0 4vw 0 4vw;
    }

    .icons{
        gap: 0;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .icon-box {
        margin: 0 auto 0 auto;
        text-align: center;
        font-size: 1.3vh;
        width: 18vw;
        height: 12vh;
        justify-content: center;
    }

    .icon-box img{
        padding: 1vh;
        height: 5vh;
        margin-bottom: 1vw;
    }

    .white-logo{
        position: absolute;
        top: 11vh;
        left: 74vw;
        transform: none;
    }

    .white-logo img{
        width: 10vh;
    }

    .open-modal-btn{
        display: flex; 
        width: 80vw;
        height: 6vh;
        margin: 5vh auto 0 auto;
        font-size: 5vw;
        justify-content: center;
        align-items: center;
    }

    .open-modal-btn h2{
        font-size: 2.2vh;
        font-weight: 400;
        padding: 0;
        margin: 0;
    }

    .modal small{
        margin-top: 1.2vh;
        margin-bottom: 1.2vh;
        font-size: 3vw;
    }

    .modal button{
        color: #fff;
        border: 0.06em solid rgba(255, 255, 255, 0.397);
        border-radius: 1.4vh;
        font-size: 5vw;
    }
}

@media screen and (max-width: 980px) and (orientation: landscape) {
    .hero-form form{
        margin: 0;
        margin-top: 0;
    }
    .hero-form h3{
        margin: 0;
        font-size: 1.6vw;
    }

    .under-hero{
        padding-top: 0vh;
    }

    .icon-box img{
        margin-bottom: 0;

    }
}

    .blocks{
        height: 100vh;
        margin: 0;
        padding: 0;
    }

    .title-block {
        width: 100%;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 5fr 1fr;
        align-items: center; /* выравниваем по центру строки */
        margin: 0;
        margin-top: 8vh;
        margin-bottom: 8vh;
    }

    .title-block .line {
        padding-left: -16vh;
        width: 85%;
        height: 75%;
        background: #6300BD;      /* фиолетовый */
    }

    .title-block h2 {
        
        text-align: left;
        font-weight: 900;
        font-size: 3.8vh;
        font-weight: 700;
        min-width: 10vh;
        margin: 0;
        padding: 0;
        color: #3E3953;
    }

    .blocks p{
        font-size: 2.6vh;
        font-weight: 500;
        max-width: 50vw;
        margin-left: 4.6vw;
        margin-top: 3vh;
        color: #3E3953;
    }

    .blocks p span{
        color: #5824aa;
        font-size: 3.4vh;
        font-weight: 900;

    }

    .resounce{
        padding: 0 10vw 0 10vw;
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1vw;
      margin-top: 30px;
    }

    .card {
        position: relative;
        margin: 0 auto 4vh auto;
        max-width: 18vw;
        max-height: 50vh;
        background: #fff;
        border-radius: 1vw;
        overflow: hidden;
        box-shadow: 0 1vw 1vw rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
    }

    .card img {
      width: 100%;
      height: 26vh;
      object-fit: cover;
    }

    .card-content {
      padding: 1.4vw;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

      border-left: 3px solid #6300BD;
      border-bottom-left-radius: 1vw;

    }

    .card h3 {
        max-width: 28vw;
        font-size: 2.4vh;
        font-weight: 700;
        margin: 0 0 0.5vh;

    }

    .card h3 span {
      color: #6a0dad; /* фиолетовый акцент */
      white-space: nowrap;
    }

    .card p {
      font-size: 1vw;
      color: #555;
      margin: 2vh 0 1.6vh;
    }

    .card .number {
      font-weight: bold;
      color: #999;
      text-align: right;
    }

    .number p{
        font-family:'cyrveticav2extraoutline';
        font-weight: 100;
        padding: 0;
        margin: 0;
        bottom: 1vh;
        right: 1.4vw;
        position: absolute;
        font-size: 3vw;
        color: rgb(0, 0, 0);
    }
    
    .number p span{

        color: black;
        font-size: 3vw;
        font-weight: 100;
    }

@media screen and (max-width: 980px) and (orientation: portrait){
    .grid{
        grid-template-columns: 1fr 1fr;
    }

    .title-block h2 {
        font-size: 2.8vh;
    }

    .card {
        margin: 0 auto 0 auto;
        max-width: 40vw;
        height: 30vh;
        margin-bottom: 4vh;
        background: #fff;
        border-radius: 1vh;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
    }

    .title-block{
        margin-top: 4vh;
        margin-bottom:4vh ;
    }   

    .title-block h2 {
        text-align: center;
    }

    .blocks p{
        font-size: 2vh;
        font-weight: 600;
        margin: 0;
        margin-left: 1.2vh;
        margin-bottom: 5vh;
    }

    .blocks p span{
        font-size: 2.4vh;
    }

    .resounce{
        padding: 0 4vw 0 4vw;
    }

    .card{
        position: relative;
        height: 40vh;
        width: 50vw ;
        border-bottom-left-radius: 2vw;
    }

    .card img{
        height: 20vh;
        
    }

    .card-content{
        padding: 1.4vh;
        border-left: 4px solid #6300BD;
        border-bottom-left-radius: 2vw;
    }

    .card-content h3{
        font-size: 1.8vh;   
        padding-top:0.5vh ;
        padding-bottom: 0.5vh;
    }

    .card-content p{
        font-size: 1.4vh;
        margin: 0;
        padding: 0;
    }

    .number p{
        position: absolute;
        max-height: 6vh;
        right: 30vw;
        bottom: 0;
        top: 1vh;
        font-size: 6vh;
        font-weight: 400;
    }

    .number p span{
        color: white;
        font-size: 6vh;
        font-weight: 400;
    }
}


@font-face {
    font-family: 'cyrveticav2extraoutline';
    src: url('/public/fonts/cyrveticav2extraoutline_normal.otf') format('opentype');
}

@font-face {
    font-family: 'Roboto';
    src: url('/public/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Roboto';
    src: url('/public/fonts/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'Roboto';
    src: url('/public/fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto';
    src: url('/public/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
}



