.contacts {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 70px;
  background-image: none;
}
.contacts-inner {
  display: flex;
  width: 80%;
  max-width: 1600px;
  margin: 0 auto;
}
.contacts-left {
  position: relative;
  width: 50%;
  height: 500px;
  align-content: center;
}
.contacts-circle {
  position: absolute;
  right: 0;
  top: 0;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  /* удаляем обычный border */
  border: none;
  /* добавляем псевдо-бордер через before */
  cursor: pointer;
}

.contacts-circle span {
  position: relative;
  z-index: 2;
}
.contacts-circle span:nth-child(1) {
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}
.contacts-circle-plus {
  margin-right: 60px;
}
.contacts-title {
  font-size: 64px;
  line-height: 64px;
  font-weight: 200;
  letter-spacing: -0.012em;
  color: #000;
}
.contacts-right {
  position: absolute;
  top: 30%;
  right: 0;
  width: 45%;
  transform: translateY(-50%);
}
.contacts-right img {
  height: auto;
  width: 100%;
}
.contacts-info {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1600px;
  padding-top: 100px;
}
.contacts-info-col {
  display: flex;
  flex-direction: column;
}
.contacts-info-title {
  text-transform: uppercase;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.16em;
  color: #999999;
  padding-bottom: 24px;
}
.contacts-info-link {
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
  text-decoration: underline;
  color: #000000;
  text-underline-offset: 6px;
  max-width: 190px;
}
.contacts-info-social {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 16px;
  font-weight: 500;
}
.contacts-info-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 1460px){
    .contacts-inner {
        width: 95%;
    }
    .contacts-circle {
        right: 10%;
    }
    .contacts-right {
        width: 50%;
        top: 40%;
    }
    .contacts-info {
        width: 95%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 992px){
    .contacts {
        background-image: var(--bg-mobile);
        background-repeat: no-repeat;
        background-size: cover;
        align-items: flex-start;
        padding-top: 50px;
        padding-bottom: 50px;
        height: auto;
    }
    .contacts-left {
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }
    .contacts-circle {
        position: relative;
        width: 154px;
        height: 154px;
    }
    .contacts-circle::before {
        background: conic-gradient(#fff 0deg 90deg, rgba(255, 255, 255, 0.337254902) 90deg 360deg);
        -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 1px));
                mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 1px));
    }
    .contacts-circle span:nth-child(1) {
        color: #fff;
    }
    .contacts-circle-plus {
        margin-right: 45px;
        margin-top: 8px;
        position: relative;
        z-index: 555;
    }
    .contacts-circle-plus img{
      filter: invert();
    }
    .drop_request_button svg path{
      stroke: #ffffff;
    }
    .drop_request_button svg{
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(20px);
      background: rgb(98 98 98 / 10%);
      border-radius: 50%;
    }
    .contacts-right {
        display: none;
    }
    .contacts-title {
        color: #fff;
        font-size: 40px;
        line-height: 100%;
    }
    .contacts-info {
        flex-direction: column;
        gap: 50px;
        padding-top: 40px;
    }
    .contacts-info-title {
        color: #fff;
        opacity: 0.7;
        font-size: 10px;
        line-height: 12px;
        letter-spacing: 0.16em;
    }
    .contacts-info-link {
        color: #fff;
    }
    .contacts-info-social {
        color: #fff;
    }
    .contacts-info-social-wrap {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px;
    }

    .contacts-info-social{
      flex-basis: 25%;
    }

}

.drop_request_button svg,.ipad_drop_request_button svg{ 
  position: absolute; 
  transform: rotate(90deg); 
  top: 0;
  left: 0;
} 
.drop_request_button svg .dark_path,.ipad_drop_request_button svg .dark_path{ 
  stroke-dasharray: 578; 
  stroke-dashoffset: 710; 
  transition: stroke-dashoffset 1s ease 
} 
.drop_request_button svg:hover .dark_path,.ipad_drop_request_button svg:hover .dark_path { 
  stroke-dashoffset: 1156 
} 
.drop_request_button img,.ipad_drop_request_button img { 
  margin-top: 20px 
} 
.drop_request_button p,.ipad_drop_request_button p{ 
  width: 50% 
}

.popup_container {
  align-items: center;
  background: #fff;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: .98;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  transition: all .5s ease;
  width: 100%;
  z-index: 33333;
}

            .close_button {
                cursor: pointer;
                position: absolute;
                right: 40px;
                top: 40px;
            }

            .isOpen {
                transform: translateX(0);
            }

            form {
                position: relative;
                max-width: 480px;
            }

            .next_step {
                bottom: 32px;
                cursor: pointer;
                margin-bottom: -4px;
                padding: 4px;
                position: absolute;
                right: 6px;
                z-index: 5;
            }

             .popup_container .wpcf7 form p br{
              display: none;
             }

            .popup_container .wpcf7 form input {
                border: none;
                border-bottom: 1px solid rgba(0,0,0,.2);
                color: #000;
                display: block;
                font-family: "GraphikLCG", sans-serif;
                font-size: 10px;
                font-style: normal;
                font-weight: 400;
                letter-spacing: .15em;
                line-height: 19px;
                margin-top: 40px;
                opacity: .8;
                outline: none;
                padding: 32px 10px;
                text-transform: uppercase;
                width: 480px;
                border-radius: 0;
            }

            .popup_container .wpcf7 form input.wpcf7-submit{
              color: #181616;
              font-size: 10px !important;
              font-style: normal;
              font-weight: 400;
              letter-spacing: .15em;
              line-height: 19px;
              text-transform: uppercase;
              padding: 0;
              background-color: transparent;
              border-bottom: none;
              opacity: 1;
            }

            input:first-of-type {
                margin-top: 0;
            }

            .thank_you_message {
                color: #000;
                font-family: GraphikLCG-Regular;
                font-size: 17px;
                font-style: normal;
                font-weight: 400;
                letter-spacing: 1px;
                line-height: 164%;
                text-align: center;
                text-transform: uppercase;
                width: 389px;
            }

            .step_number {
                margin-top: 72px;
            }

            .step_number .h_four {
                opacity: .3;
                text-align: center;
            }

            .step_number .send_request_button {
                cursor: pointer;
                opacity: 1;
            }



.wpcf7-not-valid-tip{
  font-size: 12px;
  position: absolute;
      font-family: "GraphikLCG", sans-serif;
       font-size: 10px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .15em;
    opacity: .8;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
  position: absolute;
}

 .popup_container .wpcf7 form .wpcf7-checkbox input{
    width: auto;
    margin: -2px 15px 0 0;
 }

 .popup_container .wpcf7 .wpcf7-checkbox label{
    display: flex;
    align-items: center;
 }


 .popup_container .wpcf7-checkbox .wpcf7-list-item{
  margin: 0;
 }

 .popup_container .policy-checkbox{
  margin-top: 30px;
 }

 .popup_container .policy-checkbox .wpcf7-form-control-wrap{
  margin-right: 10px;
 }

 .policy-checkbox .wpcf7-list-item-label, .policy-checkbox a{
      font-family: "GraphikLCG", sans-serif;
      font-size: 10px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .15em;
    opacity: .8;
    text-transform: uppercase;
    line-height: 22px;
 }

 .policy-checkbox p{
    display: flex;
    align-items: center;
 }

 .wpcf7 form .wpcf7-response-output{
   font-family: "GraphikLCG", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .15em;
    opacity: .8;
 }

 @media screen and (max-width: 650px){
  .popup_container .wpcf7 form input{
    width: 300px;
  }

  .popup_container .wpcf7 form{
    max-width: 300px;
  }

  .policy-checkbox .wpcf7-list-item-label, .policy-checkbox a{
    font-size: 6.5px;
  }

  .policy-checkbox .wpcf7-list-item-label, .policy-checkbox a{
    line-height: 20px;
  }

  .popup_container .policy-checkbox .wpcf7-form-control-wrap{
    margin-right: 7px;
  }

  .popup_container .wpcf7 form .wpcf7-checkbox input{
    margin-right: 10px;
  }
}