:root{
            --global_color: #FED876;
            --border_color: #545454;
            --email_color: #F79800;
            --whatsapp_color: #4cd360;
            --telegram_color: #50a9dd;
            --icon_link_color:#fff;
            --anim_circle_color:#d3ac49;
        }


.to-top {
  display:none;
  position: fixed;
  right: 38px;
  bottom: 110px;
  z-index: 2000;
}
.to-top .to-top-relative {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.to-top .to-top-relative a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(#b89848, #ffd875);
  cursor: pointer;
}
.to-top .to-top-relative a svg {
  pointer-events: none;
  width: 16px;
}
.to-top .to-top-relative .to-top-pulse {
  position: absolute;
  width: 55px;
  height: 55px;
  background: linear-gradient(#b89848, #ffd875);
  border-radius: 50%;
  z-index: -1;
  animation: toTop 2s infinite;
}
@keyframes toTop {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.to-top.active {
  display: block;
}

.info_button{
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index:3000;
        }
        .inf_btn_cnt{
            display: flex;
            justify-content: center;
            align-items: center;
            width: 63px;
            height: 63px;
        }
        .inf_btn_cnt .inf_btn-menu{
            position: absolute;
            width: 63px;
            height: 63px; 
            border-radius: 50%;
            background: var(--global_color);
            border:3px solid var(--border_color);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        .inf_btn_cnt .inf_btn-menu::before{
            content: '';
            position: absolute;
            width: 63px;
            height: 63px; 
            border-radius: 50%;
            background: var(--global_color);
            animation: puls 4s linear infinite;
            z-index: -1;
        }
        .inf_btn_cnt:hover .inf_label{
            display:flex;
            animation: inf-label-anim 0.5s linear;
        }
        @keyframes inf-label-anim {
            0%{
                opacity:0;
                transform:translateY(-70px);
            }
            100%{
                opacirty:1;
                transform:translateY(-50%);
            }
        }
        .inf_btn_cnt .inf_label{
            position: absolute;
            width: 150px;
            height: 35px;
            right: calc(100% + 5px);
            top: 50%;
            transform: translateY(-50%);
            background: var(--global_color);
            border: 2px solid var(--border_color);
            border-radius: 5px;
            display: none;
            justify-content: center;
            align-items: center;
            text-transform: uppercase;
            font-size: 0.8rem;
            transition:0.3s linear;
            font-family: "Oswald";
            color: #1b2d42;
            letter-spacing: 0px;
            font-weight: 500;
        }
        .inf_btn_cnt .inf_btn-menu .ico-inf{
            width: 40px;
        }
        .inf_btn_cnt .inf_btn-menu .ico-close{
            display:none;
        }
        .inf_btn_cnt .link_inf{
            position: absolute;
            width: 45px;
            height: 45px;
            border: 1px solid var(--border_color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #2b4b6d;
            transition: 0.2s linear;
        }
        .inf_btn_cnt .link_inf:hover{
            box-shadow: 2px 2px 3px #838383;
        }
        .inf_btn_cnt .link_inf svg{
            fill: var(--icon_link_color);
        }
        .inf_btn_cnt .link-email{
            background: var(--email_color);
        }
        .inf_btn_cnt .link-whatsapp{
            background: var(--whatsapp_color);
        }
        .inf_btn_cnt .link-telegram{
            background: var(--telegram_color);
        }
        .inf_btn_cnt.active .inf_btn-menu .ico-inf{
            display: none;
        }
        .inf_btn_cnt.active .inf_btn-menu .ico-close{
            display: block;
        }
        .inf_btn_cnt.active .link-email{
            animation: anim-inf-email 0.3s linear;
            animation-fill-mode: forwards;
        }
        .inf_btn_cnt.active .link-whatsapp{
            animation-delay: 500ms;
            animation: anim-inf-whatsapp 0.3s linear;
            animation-fill-mode: forwards;
        }
        .inf_btn_cnt.active .link-telegram{
            animation-delay: 500ms;
            animation: anim-inf-telegram 0.3s linear;
            animation-fill-mode: forwards;
        }
        .inf_btn_cnt.active .inf_label{
            opacity: 0;
        }
        @keyframes anim-inf-email {
            0%{
                opacity: 0;
                transform: translateY(0);
            }
            100%{
                opacity: 1;
                transform: translateY(-174px);
            }
        }
        @keyframes anim-inf-whatsapp {
            0%{
                opacity: 0;
                transform: translateY(0);
            }
            100%{
                opacity: 1;
                transform: translateY(-117px);
            }
        }
        @keyframes anim-inf-telegram {
            0%{
                opacity: 0;
                transform: translateY(0);
            }
            100%{
                opacity: 1;
                transform: translateY(-62px);
            }
        }
        @keyframes puls {
            0%,60%{
                opacity: 1;
                transform: scale(1) ;
            }
            100%{
                opacity: 0;
                transform: scale(1.7) ;
            }
        }

.contact-section{
    display:grid;
    grid-template-columns: 49% 49%;
    column-gap:2%;
    max-width:1280px;
    margin: 0 auto;
    padding: 30px 25px 0 25px;
    box-sizing:border-box;
}
.form_block{
    padding:30px 0 50px 0;
}
.form_cnt{
    background:#4f4f4f;
    border-radius:6px;
    padding:40px 25px;
}
.form_cnt .btn-all{
    width: 100%;
    height: 50px;
    border:none;
    outline:none;
    margin:0 auto 15px auto;
    background:#f0ce86;
    border-radius:6px;
    cursor:pointer;
    font-family: 'Roboto Condensed';
    font-size:16px;
}
.inp-group{
    box-sizing:border-box;
    overflow:hidden;
    width: 100%;
    height:45px;
    border:1px solid #f0ce86;
    background:#e8f0ff;
    border-radius:6px;
    margin: 0 auto 12px auto;
    display:flex;
    align-items:center;
    padding:0 17px;
}
.inp-group i{
    display:inline-block;
    margin-right: 10px;
}
.inp-group input{
    background:#e8f0ff;
    box-sizing:border-box;
    width: 100%; 
    height: 100%;
    border:none;
    outline:none;
    font-family: 'Roboto Condensed';
    font-size:16px;
}
.inp-group-txt{
    box-sizing:border-box;
    width: 100%;
    margin:0 auto;
    margin-bottom: 18px;
}
.inp-group-txt textarea{
    box-sizing:border-box;
    padding: 20px;
    display:block;
    border:1px solid #f0ce86;
    background:#e8f0ff;
    border-radius:6px;
    width: 100%;
    resize: none;
    height: 100%;
    min-height:160px;
    outline:none;
}
.dealers_confiditial label{
    font-family: 'Roboto Condensed';
    font-size:14px;
    color:#fff;
}
.map_frame iframe{
    width: 100%;
}


.link-police{
    color: #fed876;
    text-decoration: none !important;
    border-botton:0;
}
.link-police:hover{
    color:#fff;
}

.not_found_cnt{
    min-height: calc(100vh - 242px);
}

.step_itm-img img{
            width: 100% ;
            height:auto;
        }

@media screen and (max-width: 992px){
    .contact-section{
    grid-template-columns: 100%;
    column-gap:0;
    row-gap: 20px;
    margin-bottom: 25px;
}
}








