@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');

div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
}
ol, ul {
	list-style: none;
}
a{
    text-decoration: none;
    color: #000;
}
body{
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    line-height: 1;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    display: block;
}
/* HEADDER */
header{
    padding-top: 10px;
    padding-bottom: 10px;
}
.container{
    width: calc(100% - 20px) ;
    max-width: calc(1420px - 20px) ;
    margin: 0 auto;
}
.header-container{
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    align-items: center;
    gap: 15px;
}
.header-container_menu-block ul{
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
}
.header-container_menu-block ul li a{
    font-size: 18px;
    background: #F5F5F5;
    padding: 5px 8px;
    border-radius: 100px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.9s;
}
.header-container_menu-block ul li a:hover{
 background: #000;
 color: #fff;
}
.number-block{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.header-phone{
    font-size: 20px;
    font-weight: 500;
    transition: 0.8s;
}
.header-phone:hover{
    color: #FEC200;
}
.header-mailto{
    font-size: 18px;
    font-weight: 300;
    transition: 0.8s;
}
.header-mailto:hover{
    color: #FEC200;
}
.header-container_contact-block{
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}
.social-block{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.header-container_logo-block{
    display: flex;
    justify-content: center;
}
.header-button{
    background: #FEC200;
    border: none;
    font-size: 15px;
    border-radius: 100px;
    font-weight: 600;
    transition: 0.8s;
    height: 50px;
    text-transform: uppercase;
    padding: 0px 30px;
    width: fit-content;
}
.header-button:hover{
    background-color: #2E2E2E;
    color: #ffffff;
    cursor: pointer;
}
.mobile-nav{
    display: none;
}
.mobile-nav{
    display: none;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100; 
}
.hamburger {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    width: 35px;
    height: 35px;
    background: none;
    padding: 5px;
    border-radius: 8px; 
}
.btn__hamb {
    position: relative;
    display: block;
    width: 100%;
    height: 3px;
    background: #000000;
    cursor: pointer;
}
.btn__hamb div {
    width: 100%;
    height: 100%; 
}
.btn__hamb:before, .btn__hamb:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    background: #000000; 
}
.btn__hamb:before {
    top: -8px; 
}
.btn__hamb:after {
    top: 8px; 
}
h2{
    font-size: 41px;
    color: #000;
    font-weight: 700;
    text-transform:uppercase ;
    line-height: 120%;
}

/* HERRO-ACCORD */
.herro-accord{
    margin-top: 25px;
}
.two-columns{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.heero-text-block{
    background-color: #2E2E2E;
    padding: 60px 27px;
    border-radius: 39px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    font-size: 48px;
    color: #FEC200;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    line-height: 110%;
}
.heero-text-block span{
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 500;
}
#feedback-form{
    display: flex;
    flex-direction: row;
    max-width: 500px;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
    gap: 15px;
}
.form__input{
    height: 50px;
    border-radius: 100px;
    border: none;
    background: #F3F3F3;
    width: 95%;
    min-width: 210px;
    padding-left: 5%;
}
.button-sendform {
    height: 52px;
    border-radius: 100px;
    border: none;
    background: #fec200;
    width: 100%;
    min-width: 230px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-h{
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    line-height: 130%;
    max-width: 80%;
}
.heero-image-block{
    background-image: url(../images/bg-min.jpg);
    background-size: cover;
    border-radius: 39px;
    padding: 25px;
    background-position: center;
}
.buro-name {
    background-color: #20202082;
    padding: 10px;
    max-width: 306px;
    border-radius: 21px;
}
.buro-name h3{
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    line-height: 120%;
    color: #fff;
    font-weight: 500;
}
.blur {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    width: 50%;
}

/* SERVISE */
.servise-grid{
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    grid-template-rows: repeat(3, 3fr);
    gap: 40px 20px; 
}
.servise-grid__big-box{
    grid-column: span 2;
}
.servise-grid__text{
    padding-right: 25px;
}
.servise-grid__text p{
    font-size: 20px;
    line-height: 120%;
    margin-top: 25px;
}
.servise-grid__box{
    padding: 20px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    background: #2e2e2e;
}
.pulse {
    position: relative;
    text-align: center;
    padding: 5px;
    border-radius: 50%;
    background: #FEC200;
    width: 2px;
    height: 2px;
    display: block;
}
.pulse::before {
    content: '';
    position: absolute;
    border: 1px solid #FEC200;
    left: -5px;
    opacity: 0;
    right: -5px;
    top: -5px;
    bottom: -5px;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
}
  
@keyframes pulse {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.2);
      opacity: 0;
    }
}
.pulse::after,
.pulse::before {
  content: '';
  position: absolute;
  border: 1cap solid #FEC200;
  left: -5px;
  opacity: 0;
  right: -5px;
  top: -5px;
  bottom: -5px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

.pulse::after {
  animation-delay: 1.25s;
}
.header-box{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.header-box__title{
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    line-height: 128%;
}
@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.info-box{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border: 1px solid #fec200;
    max-width: fit-content;
    border-radius: 10px;
}
.info-box p{
    font-size: 14px;
    color: #FEC200;
}
.box-content p{
    color: #fff;
    line-height: 168%;
    font-weight: 400;
}
.consultation_btn {
    max-width: 260px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    height: 50px;
    border: navajowhite;
    border-radius: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.consultation_btn img{
    width: 28px;
    transition: 0.9s;
}
.consultation_btn:hover img{
    transform: rotate(50deg);
}
.servise-grid__big-box{
    padding: 20px;
    background-color: #F4F4F4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border-radius: 21px;
}
.lite{
    font-weight: 400;
    max-width: 600px;
    width: 100%;
}
.servise-grid__big-box p{
    font-size: 20px;
    line-height: 120%;
}

/* TEAM */
.after-header{
 font-size: 20px;
 margin-top: 20px;
}
.team-box{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}
.team-box__container{
    background: #F4F4F4;
    border-radius: 27px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}
.team-box__container_image {
    max-width: 380px;
    width: 100%;
    border-radius: 27px;
    background-size: cover;
    height: 100%;
    min-height: 340px;
    background-position: center;
    min-width: 320px;
}
.team-box__container_text{
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.name-team{
    font-size: 24px;
    font-weight: 600;
}
.work-team{
    font-size: 18px;
    color: #686868;
    font-weight: 600;
    line-height: 120%;
    max-width: 530px;
    width: 100%;
}
.text-team{
    font-size: 16px;
    font-weight: 300;
    line-height: 135%;
}

/* ABOUT COMPANY */
.ocord-about-company_cantainer{
    padding: 40px;
    background-color: #FEC200;
    border-radius: 25px; 
}
.contnent-about__text {
    line-height: 130%;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-right: 60px;
}
.ocord-about-company_cantainer{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap:40px;
}
.image-about{
    background-image: url(../images/about.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    border-radius: 34px;
}
.name-director{
    font-size: 30px;
    font-family: "Caveat", serif;
    margin-top: -5px;
    display: block;
}

/* PRISE */
.prise-box{
    height: 67px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #a9a9a9;
    cursor: pointer;
}
.prise-box:hover{
    background-color: #fbfbfb;
}
.name-prise{
    width: 100%;
    max-width: 700px;
    font-size: 24px;
    font-weight: 500;
}
.price{
    font-size: 24px;
    font-weight: 900;
}
.arrow-block{
    background: #F4F4F4;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #F4F4F4;
    transition: 0.9s;
}
.prise-box:hover .arrow-block{
    background:#FEC200;
    border: 1px dashed #838383;
}
.arrow-block img{
    transition: 0.6s;
}
.prise-box:hover .arrow-block img{
    transform: rotate(-50deg);
}
.prise-container{
    margin-top: 30px;
}

/* PORTFOLIO */
.swiper {
    margin-top: 30px;
}
.rewiew-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    align-items: center;
}
.lazyload{
    width: 100%;
}
.text-reiew{
    background: #FEC200;
    border-radius: 0px 20px 20px 0px;
    padding: 40px 60px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}
.name-company{
    font-size: 32px;
}
.rewiew-text {
    font-size: 20px;
    line-height: 130%;
    text-align: left;
}
.signature{
    float: right;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
}
.swiper-button-next, .swiper-button-prev {
    color: #000000!important;
}
.swiper-pagination-bullet-active {
    background: #000000!important;
}

/* FOOTER */
.okord-footer{
    margin-bottom: 15px;
}
.white-h{
    color: #fff;
}
.footer-grid-container{
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr;
}
.footer-cart-block iframe{
    border-radius: 23px!important; 
}
.map-widget-map-component{
    border-radius: 23px!important;
}
.footer-contaсt-block{
    background-color: #2E2E2E;
    border-radius: 23px;
    padding: 35px;
}
.footer-contaсt-block_top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer-contaсt-block_bottom__header{
    display: grid;
    grid-template-columns: 1.8fr 2fr;
    margin-top: 33px;
}
.footer-h{
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px; 
}
.phone{
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    transition: 0.8s;  
}
.phone:hover{
    color: #FEC200;
}
.cosial-footer{
    display: flex;
    gap: 10px;
    flex-direction: row;
}
.adress{
    border-left: 1px solid #717171;
    padding-left: 30px;
    padding-bottom: 15px;
}
.adress p{
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}
.recvizits {
    display: flex;
    gap: 15px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}
.recvizits p{
    color: #fff;
    font-size: 15px;
}
.footer-contaсt-block_bottom__footer{
    border-top: 1px solid #717171;
    padding-top: 15px;
}
.blocck-coppyright{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
    color: #B8B8B8;
}
.blocck-coppyright a{
    color: #B8B8B8;
}
.footer-cart-block{
    filter: contrast(0.5) brightness(1.35) grayscale(1);
}
.footer-cart-block:hover {
    filter: none;
}
.mt-70{
    margin-top: 70px;
}

#feedback-form-2{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
#feedback-form-2 .form__input{
    width: 100%;
    padding-left: 20px;
}
.fancybox-content {
    background: #282828!important;
    color: #fff!important;
    text-align: center!important;
}
.fancybox-content h2{
    color: #fff;
}
#feedback-form .after-form-text{
	color:#fff;
}
.fancybox-content p{
    margin-bottom:15px;
}
/* MEDIA */
@media(max-width:1440px){
    .header-container {
        grid-template-columns: 2fr 0.6fr 2fr;
    }
    .header-container_menu-block ul li a {
        font-size: 16px;
    }
}

@media(max-width:1290px){
   .header-container_logo-block img{
    width: 100%;
   }
   .header-phone {
    font-size: 18px;
    }
    .header-button {
        font-size: 16px;
    }
    .header-container_menu-block ul {
        gap: 7px;
    }
    .blocck-coppyright {
        font-size: 12px;
    }
    h1 {
        font-size: 44px;
    }
    .heero-text-block span {
        font-size: 30px;
    }
    .form__input {
        min-width: 190px;
    }
    .button-sendform {
        min-width: 236px;
        font-size: 12px;
        padding-top: 4px !important;
    }
    .hero-h {
        font-size: 22px;
        line-height: 130%;
        max-width: 90%;
    }
    .header-box__title {
        font-size: 22px;
    }
	.header-button {
    padding: 0px 22px;
}
    
}

@media(max-width:1140px){
    .header-container {
        grid-template-columns: 1fr 4fr;
        gap: 60px;
    }
    .header-container_menu-block {
        position: absolute;
        top: 125px;
        width: 98%;
    }
    .header-container_menu-block ul li a {
        font-size: 19px;
    }
    .header-phone {
        font-size: 21px;
    }
    .header-button {
        font-size: 15px;
    }
    .header-container_menu-block ul li a {
        font-size: 18px;
        padding: 10px 40px;
    }
    .header-container_menu-block ul {
        gap: 7px;
    }
    .header-container_logo-block {
        display: flex;
        justify-content: flex-start;
    }
    .header-container_logo-block img {
        max-width: 200px;
    }
    .adress p {
        font-size: 14px;
    }
    h2 {
        font-size: 35px;
    }
    .adress {
        padding-left: 20px;
    }
    .footer-contaсt-block {
        padding: 20px;
    }
    .footer-cart-block iframe{
        height: 295px;
    }
    .herro-accord {
        margin-top: 80px;
    }
    h1 {
        font-size: 35px;
    }
    .heero-text-block span {
        font-size: 25px;
    }
    #feedback-form {
        max-width: none;
        width: 100%;
        justify-content: space-around;
        gap: 10px;
    }
    .form__input {
        min-width: 150px;
    }
    .button-sendform {
        min-width: 200px;
    }
    .buro-name h3 {
        font-size: 29px;
    }
    .hero-h {
        font-size: 18px;
        line-height: 130%;
        max-width: 100%;
    }
    #feedback-form {
        flex-direction: column;
        justify-content: space-between;
    }
    .info-box p {
        font-size: 12px;
    }
    .header-box__title {
        font-size: 20px;
    }
    .box-content p {
        font-size: 14px;
    }
    .servise-grid__text p {
        font-size: 18px;
    }
    .servise-grid__big-box p {
        font-size: 18px;
    }
    .no_br br{
        display: none;
    }
    .contnent-about__text {
        line-height: 130%;
        font-size: 18px;
        padding-right: 33px;
    }
    .ocord-about-company_cantainer {
        padding: 20px;
    }
    .rewiew-text {
        font-size: 18px;
        line-height: 130%;
    }
	 .header-button {
        font-size: 15px;
	    padding: 0px 12px;
    }
}

@media(max-width:923px){
    .header-container_menu-block ul li a {
        font-size: 16px;
        padding: 10px 25px;
    }
    .header-button {
        font-size: 17px;
    }
    .header-phone {
        font-size: 18px;
    }
    .header-container {
        grid-template-columns: 200px 1fr;
        gap: 40px;
    }
    .footer-grid-container {
        grid-template-columns: 1fr;
    }
    .footer-contaсt-block{
        order: -1;
    }
    .adress p {
        font-size: 16px;
    }
    .contact{
        padding-bottom: 15px;
    }
    .blocck-coppyright {
        font-size: 14px;
    }
    h1 {
        font-size: 33px;
    }
    .heero-text-block span {
        font-size: 22px;
    }
    .buro-name h3 {
        font-size: 22px;
    }
    .header-mailto {
        font-size: 16px;
    }
    .servise-grid {
        grid-template-columns: repeat(2, 3fr);
        grid-template-rows: repeat(4, 3fr);
        gap: 20px 20px;
    }
    .servise-grid__big-box {
        grid-column: span 1;
    }
    .box-content p {
        font-size: 16px;
    }
    .header-box__title {
        font-size: 24px;
    }
    .header-button {
        font-size: 15px;
    }
    .lite {
        font-size: 29px;
    }
    .servise-grid__big-box p {
        font-size: 16px;
    }
    .team-box__container {
        gap: 20px;
    }
    .team-box__container_text {
        padding-right: 20px;
        gap: 10px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .name-team {
        font-size: 20px;
    }
    .work-team {
        font-size: 16px;
    }
    .team-box__container_image {
        min-height: 400px;
    }
    .contnent-about__text {
        line-height: 130%;
        font-size: 16px;
        padding-right: 0px;
    }
    .name-prise {
        max-width: 350px;
        font-size: 20px;
    }
    .price {
        font-size: 20px;
        font-weight: 900;
    }
    .rewiew-container {
        grid-template-columns: 2fr 2fr;
    }
    .text-reiew {
        padding: 20px 40px 20px 20px;
        gap: 15px;
    }
    .rewiew-text {
        font-size: 15px;
        line-height: 130%;
    }
    .header-container_menu-block {
        position: absolute;
        top: 125px;
        width: 98%;
    }
}
@media(max-width:740px){
    .header-container_menu-block {
        top: 135px;
    }
}
@media(max-width:690px){
    .header-container_menu-block{
        display: none;
    }
    .mobile-nav{
        display: block;
    }
    .mobile-menu {
        padding-top: 0;
    }
    .mobile-menu .mm__bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(20, 20, 20, 0.8);
        z-index: 100; 
    }
    .mobile-menu .mm__wrapper {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        transition: all .4s ease-in-out;
        overflow-y: auto;
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 200;
        touch-action: auto;
        -ms-touch-action: auto;
        background: #3a3a3a;
    }

    .mobile-menu .mm__wrapper {
        width: 100%; 
    } 
    .mobile-menu .h__logo {
        padding-left: 40px;
        font-size: 2rem;
        font-weight: 700;
        color: #333;
        line-height: 1.25;
        margin-left: 20px;
        margin-top: 15px; 
    }

    .mm__header .close-btn{
        position: absolute;
        top: 0;
        right: 0;
        margin-right: 15px;
        margin-top: 15px; 
    }
  
    .close-btn{
        position: relative;
        width: 20px;
        height: 20px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        cursor: pointer; 
    }
    .close-btn:before {
        width: 3px;
        height: 24px;
        left: 8px;
        top: -1px;
    }
    .close-btn:after {
        height: 3px;
        width: 24px;
        top: 9px;
        left: -2px;
    }
    .close-btn:before, .close-btn:after {
        content: "";
        background: #ffffff;
        position: absolute; 
    }
    .close-btn--red:before, .close-btn--red:after {
        background: #ffffff; 
    }
    .mm__header {
        padding-top: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .mob-menu{
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 20px;
    }
    .mob-menu li a {
        color: #fff;
        font-size: 20px;
        transition: 0.8s;
    }
    .mobile-contacts{
        display: flex;
        flex-direction: column;
        max-width: 250px;
        margin: 0 auto;
        gap: 15px;
        align-items: center;
        margin-top: 25px;
    }
    .mobile-contacts a{
        color: #fff;
        font-style: 24px;
    }
    .header-container_contact-block{
        display: none;
    }
    .header-container {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }
    .mobile-nav {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    .herro-accord {
        margin-top: 20px;
    }
    .two-columns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .heero-image-block{
        display: none;
    }
    h1 {
        font-size: 40px;
    }
    .hero-h {
        font-size: 24px;
    }
    .servise-grid {
        grid-template-columns: repeat(1, 3fr);
        gap: 20px 20px;
        grid-template-rows: 1fr;
    }
    .servise-grid__text {
        text-align: center;
    }
    .no_br br{
        display: none;
    }
    .team-box__container {
        flex-direction: column;
    }
    .team-box {
        display: flex;
        gap: 20px;
        margin-top: 30px;
        flex-direction: column;
    }
    .team-box__container_image {
        width: 100%;
        min-width: 100%;
        min-height: 310px;
    }
    .team-box__container_text {
        padding-right: 15px;
        gap: 10px;
        padding-left: 15px;
    }
    .header-block{
        text-align: center;
    }
    .ocord-about-company_cantainer {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .name-prise {
        max-width: 250px;
        font-size: 18px;
    }
    .price {
        font-size: 18px;
        font-weight: 900;
    }
    .arrow-block img{
        width: 22px;
    }
    .signature p{
        font-size: 14px;
    }
    .name-director {
        font-size: 24px;
    }
    .header-button {
        font-size: 12px;
    }
}
@media(max-width:520px){
    .adress p {
        font-size: 16px;
        line-height: 125%;
    }
    .footer-contaсt-block_bottom__header {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 23px;
    }
    .adress {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid #717171;
        padding-top: 15px;
    }
    .blocck-coppyright {
        flex-direction: column;
        justify-content: center;
        font-size: 12px;
        gap: 8px;
        align-items: unset;
        margin-top: 25px;
    }
    .footer-contaсt-block_top {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 25px;
    }
    h2 {
        font-size: 30px;
    }
    .recvizits {
        gap: 0px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
    }
    .recvizits p {
        color: #fff;
        font-size: 14px;
    }
    .heero-text-block {
        padding: 40px 17px;
    }
    .heero-text-block span {
        font-size: 18px;
    }
    h1 {
        font-size: 29px;
    }
    .button-sendform {
        padding-top: 2px !important;
    }
    .hero-h {
        font-size: 18px;
    }
    .buro-name {
        max-width: 170px;
    }
    .heero-image-block {
        min-height: 150px;
        border-radius: 29px;
    }
    .servise-grid__text p {
        font-size: 16px;
    }
    .header-box__title {
        font-size: 20px;
    }
    .box-content p {
        font-size: 14px;
    }
    .consultation_btn {
        max-width: 229px;
        font-size: 12px;
    }
    .no_br br{
        display: none;
    }
    .team-box__container_image {
        width: 100%;
        min-width: 100%;
        min-height: 250px;
    }
    .name-team {
        font-size: 18px;
    }
    .text-team {
        font-size: 14px;
        font-weight: 400;
        line-height: 135%;
    }
    .work-team {
        font-size: 13px;
        line-height: 126%;
    }
    .contnent-about__text {
        font-size: 14px;
    }
    .name-director {
        font-size: 24px;
        line-height: 100%;
        margin-top: 10px;
        display: block;
    }
    .name-prise {
        max-width: 191px;
        font-size: 15px;
    }
    .price {
        font-size: 15px;
        font-weight: 900;
    }
    .arrow-block img {
        width: 20px;
    }
    .rewiew-container {
        grid-template-columns: 1fr;
    }
    .text-reiew{
        display: none;
    }
}
@media(max-width:365px){
    h1 {
        font-size: 25px;
    }
    .hero-h {
        font-size: 15px;
    }
    .buro-name h3 {
        font-size: 20px;
    }
    .heero-text-block span {
        font-size: 16px;
    }
    h2 {
        font-size: 24px;
    }
    .lite {
        font-size: 24px;
    }
    .servise-grid__big-box p {
        font-size: 14px;
    }
    .header-button {
        font-size: 13px;
    }
    .consultation_btn img {
        width: 24px;
        transition: 0.9s;
    }
    .no_br br{
        display: none;
    }
    .team-box__container_image {
        min-height: 213px;
    }
    .after-header {
        font-size: 16px;
        margin-top: 5px;
    }
    .name-prise {
        max-width: 172px;
        font-size: 15px;
    }
}