/* normalize */
* {
    box-sizing: border-box;
}
html {
    line-height: 1.3; 
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;    
}
body {
    margin: 0;
}
main {
    display: block;
}
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    margin: 0;
}
a {
    text-decoration: none;
}
b, 
strong {
    font-weight: bolder;
}
img {
    display: block;
    max-width: 100%;
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    outline: none;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit; 
}
/* fonts */
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Regular.woff") format('woff');
    font-weight: 400;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Bold.woff") format('woff');
    font-weight: 700;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'CodecPro';
    src: url("../fonts/Codec-Pro-News.woff") format('woff');
    font-weight: 400;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'CodecPro';
    src: url("../fonts/Codec-Pro-Bold.woff") format('woff');
    font-weight: 700;
    font-style: normal; 
    font-display: swap;
}
/* main styles */
::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: 10px;
    border: 4px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--theme-color);
}
@keyframes stickyReveal {
    0% {
        transform: translateY(-137px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes zoomInOut {
    0% {
        transform: translate(-50%,-50%) scale(1);
    }
    50% {
        transform: translate(-50%,-50%) scale(1.2);
    }
    100% {
        transform: translate(-50%,-50%) scale(1);
    }
}
html {
    overflow-x: hidden;
}
body {
    position: relative;
    background: #fff;
    font-family: 'Gilroy';
    font-size: 16px;
    color: #2B2A29;
    overflow-x: hidden;
}
body.locked {
    overflow-y: hidden;
}
.container {
    width: 100%;
    max-width: 1160px;
    padding: 0 20px;
    margin: 0 auto;
}
.pt25 {
    padding-top:25px;
    text-align: center;
}
.wa-plan {
    width: 18px;
    display: inline-block;
    padding-right: 5px;
}
.d-flex {
    display: flex;
}
.bg-light {
    background: #f8f8f8;
}
.bg-theme {
    background: var(--alter-color);
}
.section {
    padding: 90px 0;
}
.section-title {
    font-size: 40px;    
    margin-bottom: 40px;
}
.section-title > span {
    color: var(--title-color);
}
.bg-theme .section-title {
    color: #fff;
}
.btn {
    display: block;
    border: none;
    padding: 15px 25px;
    background: var(--theme-color);
    color: #fff;
    font-family: 'Gilroy';
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s opacity ease;
}
.btn.btn-dark {
    background: #2B2A29;
}
.btn:hover {
    opacity: 0.8;
}
.hidden {
    display: none;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
    border: 1px solid #ebebeb;
    border-radius: 5px;
    transition: 0.3s all ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    border-color: var(--theme-color);
}
header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    width: 100%;
    perspective: 1000px;
    z-index: 4;
}
header.sticky {
    position: fixed;  
    background: var(--theme-color);
    animation: 1s forwards stickyReveal;
    transition: 0.5s all ease;
    box-shadow: 0px 10px 20px 0 rgba(0,0,0,0.22);  
    backdrop-filter: blur(3px);  
    z-index: 99;
}
.header-row {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
}
.logo {
    font-family: 'CodecPro';
    font-weight: 400;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
}
.logo span {
    font-size: 16px;
    font-weight: 700;
}
.header-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
    font-size: 15px;
}
.header-menu li a {
    color: #fff;
    border-bottom: 2px solid transparent;
    transition: 0.3s border-color ease;
}
.header-menu li a:hover,
.header-menu li a.active {
    border-color: #fff;
}
.header-contacts {
    gap: 15px;
    align-items: center;
    min-width: 149px;
}
.header-wp {
    width: 28px;
    height: 28px;
}
.header-contacts > div {
    flex-direction: column;
    gap: 5px;
}
.header-phone {
    font-size: 17px;
    font-weight: 700;
    color: #fff;    
}
.header-callback {
    color: #fff;
    font-size: 13px;
}
.header-callback:hover {
    text-decoration: underline;
}
.burger-toggler {
    display: none;
}
.hero {
    position: relative;
    height: 770px;
    overflow: hidden;
}
.hero-img {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 0;
    background-size: cover;
    background-position: center;
    height: 769px;
}
.hero-img:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(96deg, rgba(18, 24, 30, 0.8), rgba(16, 32, 46, 0.38) 61%, rgba(17, 35, 48, 0.38));
    z-index: 2;
}
.hero-crop {
    position: absolute;
    left: -3px;
    right: -3px;
    top: 0px;
    bottom: -1px;
    z-index: 2;
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}
.hero > .container {
    position: relative;    
    height: 100%;
    z-index: 3;
}
.hero-content {
    height: 100%;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 170px;
}
.hero-text {
    width: 100%;
    color: #fff;
}
.hero-text h1 {
    color: var(--title-color);
    font-size: 74px;
}
.hero-subtitle {
    font-size: 24px;
    line-height: 1;
}
.hero-sales {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}
.hero-sales li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}
.hero-sales li:last-child {
    margin-bottom: 0;
}
.hero-sales li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-color);
    flex-shrink: 0;
}
.hero-about {
    width: 100%;
    padding: 25px;
    gap: 15px;
    background: var(--theme-color);
    border-radius: 5px; 
}
.hero-about-item {
    flex-basis: 0;
    flex-grow: 1;
    color: #fff;
    text-align: center;
    border-right: 2px solid rgba(255,255,255,0.2);
}
.hero-about-item:last-child {
    border-right: none;
}
.hero-about-item__icon {
    display: block;
    height: 32px;    
}
.hero-about-item__icon img {
    width: auto;
    height: 100%;
    margin: 0 auto;
}
.hero-about-item p {
    margin: 10px 0 0;
}
.offer-wrap {
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.offer-img {
    position: relative;
    height: 300px;
    width: auto;
}
.offer-img:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--theme-color);
    opacity: 0.26;
    z-index: -1;
    left: -15px;
    top: 15px;
    filter: blur(5px);
}
.offer-img img {
    height: 100%;
}
.offer-info {
    width: 50%;
}
.offer-title .section-title {
    margin-bottom: 0;
}
.offer-title > span {
    font-weight: 700;
    font-size: 32px;
}
.offer-title > span b {
    font-size: 80px;
}
.offer-description {
    margin: 0;
    line-height: 1.5;
}
.offer-form {
    width: 100%;
    margin-top: 30px;
}
.offer-form > input {
    flex-grow: 1;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px 0 0 5px;
}
.offer-form .btn {
    height: 100%;
    border-radius: 0 5px 5px 0;
}
.form-action {
    position: relative;
}
.form-action > span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    font-size: 9px;
    text-align: center;
    margin-top: 3px;
}
.masonry {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    height: 800px;
}
.masonry-item {
    position: relative;
    width: calc((100% - 60px) / 4);
    border-radius: 20px;
    overflow: hidden;
}
.masonry-item:nth-child(6n-5) {
    height: 25%;
}
.masonry-item:nth-child(6n-4) {
    flex-grow: 1;
    min-height: 70%;
    max-height: 75%;
}
.masonry-item:nth-child(6n-3) {
    height: 50%;
}
.masonry-item:nth-child(6n-2) {
    flex-grow: 1;
    min-height: 45%;
    max-height: 50%;
}
.masonry-item:nth-child(6n-1) {
    height: 65%;
}
.masonry-item:nth-child(6n) {
    flex-grow: 1;
    min-height: 30%;
    max-height: 35%;
}
.masonry-item:before {
    content: '';
    display: block;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    position: absolute;
    top: 10px;
    left: 10px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 20px;
    transition: 0.3s all ease;
}
.masonry-item img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;    
}
.masonry-item:hover:before {
    width: 100%;
    height: 100%;
    top: -2px;
    left: 0;
}
.planning-wrap {
    align-items: flex-start;
    gap: 50px;
}
.planning-filters {
    width: 270px;
    flex-shrink: 0;
}
.filter-block {
    margin-bottom: 30px;
}
.filter-block-title {
    font-weight: 700;
}
.filters-row {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.filter-item {
    width: calc((100% - 10px) / 2);
    flex-grow: 1;
}
.filter-item > label {
    display: block;
    padding: 12px;
    font-size: 14px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--theme-color);
    border-radius: 5px;
    cursor: pointer;
    box-shadow: -4px 4px 5px 0 rgba(22,22,22,0.12);
    transition: 0.3s all ease;
}
.filter-item > input:checked + label,
.filter-item > label:hover {
    background: var(--theme-color);
    color: #fff;
}
.filter-item > input:disabled + label {
    opacity: 0.85;
    background: #efefef;
    border-color: #efefef;
    color: #bdbdbd;
    box-shadow: none;
    pointer-events: none;
}
.planning-filters .btn {
    width: 100%;
}
.planning-row {
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}
.planning-row.loading:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(5px);
}
.planning-item {
    width: calc((100% - 20px) / 2);
    gap: 15px;
    padding: 15px;
    border: 1px solid #ebebeb;
    border-radius: 5px;  
    cursor: pointer;  
    transition: 0.3s all ease;    
}
.planning-item:hover {
    box-shadow: -4px 4px 5px 0 rgba(22,22,22,0.12);
}
.planning-item > img{
    width: 50%;
    height: fit-content;
}
.planning-item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.planning-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color);
    text-transform: uppercase;
}
.planning-item-info > div span {
    display: block;
    font-size: 14px;
    line-height: 18px;
}
.planning-item-info > div p {
    align-items: center;
    gap: 8px;
    margin: 5px 0 0;
    font-weight: 700;
    color: var(--theme-color);
}
.planning-item-info > div p:before {
   /* content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(../images/icons/icon-square.svg) no-repeat;*/
    background-size: cover;
    flex-shrink: 0;
    color: var(--theme-color);
}
.planning-item-info .btn {
    font-size: 14px;
    padding: 12px;
}
.pricelist-offer {
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.pricelist-offer-info {
    width: 55%;
    max-width: 55%;
}
.pricelist-offer-info .section-title {
    margin-bottom: 10px;
    line-height: 1.12;
}
.pricelist-offer-info .section-title span {
    display: block;
}
.pricelist-offer-subtitle {
    margin: 0;
}
.pricelist-offer-form {
    margin-top: 40px;
}
.pricelist-offer-form > span {
    display: block;
    margin-bottom: 10px;
}
.msg-list {
    gap: 10px;
    margin-bottom: 10px;
}
.msg-list-item {
    flex-basis: 0;
    flex-grow: 1;
}
.msg-list-item > label {
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff;
    background: #333;
    border-radius: 5px;
    cursor: pointer;
    filter: grayscale(1);
    transition: 0.3s all ease;
}
.msg-list-item > label:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.msg-list-item > label.wp-label:before {    
    background-image: url(../images/icons/icon-whatsapp2.svg);
}
.msg-list-item > label.tg-label:before {
    background-image: url(../images/icons/icon-telegram.svg);
}
.msg-list-item > label.sms-label:before {
    background-image: url(../images/icons/icon-sms.svg);
}
.msg-list-item > label.phone-label:before {
    background-image: url(../images/icons/icon-phone.svg);
}
.msg-list-item > label.wp-label:hover,
.msg-list-item > input:checked + label.wp-label {
    filter: none;
    background: #25D366;
}
.msg-list-item > label.tg-label:hover,
.msg-list-item > input:checked + label.tg-label {
    filter: none;
    background: #0088cc;
}
.msg-list-item > label.sms-label:hover,
.msg-list-item > input:checked + label.sms-label {
    filter: none;
    background: #345e62;
}
.msg-list-item > label.phone-label:hover,
.msg-list-item > input:checked + label.phone-label {
    filter: none;
    background: #006699;
}
.pricelist-offer-form-fields {
    gap: 10px;
}
.pricelist-offer-form-fields input {
    flex-grow: 1;
    padding: 12px 15px;
}
.pricelist-offer-form-fields .form-action {
    width: calc((100% - 20px) / 3);
}
.pricelist-offer-form-fields .btn {
    width: 100%;
}
.pricelist-offer-img {
    position: relative;
    height: 400px;
}
.pricelist-offer-img:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--theme-color);
    opacity: 0.26;
    border-radius: 15px;
    z-index: -1;
    left: -10px;
    top: 10px;
    filter: blur(5px);
}
.pricelist-offer-img img {
    height: 100%;
    max-height: 100%;
    width: auto;
}
.section#pros {
    padding-bottom: 0;
}
.pros-top-row {
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}
.pros-top-text {
    width: 50%;
    color: #fff;
}
.pros-top-text p:first-child {
    margin-top: 0;
}
.pros-top-text p:last-child {
    margin-bottom: 0;
}
.pros-row {
    flex-wrap: wrap;
    margin-top: 90px;
}
.pros-item {
    width: 100%;
    background: #fff;
}
.pros-item:nth-child(2n) {
    background: #f8f8f8;
}
.pros-item-img {
    width: 50%;
    height: 350px;
    position: relative;
    flex-shrink: 0;
}
.pros-item-img:before {
    content: '';
    display: block;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    position: absolute;
    top: 10px;
    left: 10px;
    background: transparent;
    border: 2px solid #fff;
    transition: 0.3s all ease;
}
.pros-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pros-item:nth-child(2n) .pros-item-img {
    order: 2;
}
.pros-item-info {
    padding: 20px 50px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-width: 50%;
}
.pros-item-info h3 {
    font-size: 40px;
    line-height: 1.2;
}
.video-section {
    align-items: center;
    gap: 50px;
}
.popup-video {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    border-radius: 5px;
    box-shadow: -15px 15px 9px 1px rgba(255,255,255,0.25);
    overflow: hidden;
}
.popup-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup-video:before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;    
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: url(../images/icons/icon-play.svg) no-repeat;
    background-size: contain;
    background-position: center center;    
    background-color: #fff;
    cursor: pointer;
    animation: zoomInOut 2s infinite;
    animation-timing-function: linear;  
    z-index: 2;
}
.popup-video:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(22,22,22,0.2);
    z-index: 1;
}
.video-description {
    color: #fff;
}
.video-description p:first-child {
    margin-top: 0;
}
.video-description p:last-child {
    margin-bottom: 0;
}
.sales-slider-wraper {
    padding-left: calc((100% - 1120px) / 2);
}
.sales-slider {
    padding-bottom: 40px;
}
.swiper-scrollbar-drag {
    background: var(--theme-color);
    opacity: 0.75;
}
.sales-slide {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 5px;
    overflow: hidden;
}
.sales-slide:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--theme-color);
    opacity: 0.3;
    z-index: 1;
}
.sales-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sales-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}
.section#location {
    padding-bottom: 0;
}
.location-row {
    align-items: center;
    gap: 50px;
}
.location-row-left {
    width: 50%;
    flex-shrink: 0;
}
.location-address {
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #fff;
}
.location-address:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url(/assets/images/icon-location.svg) no-repeat;
    background-size: contain;
    background-position: center center;
}
.location-row-text {
    color: #fff;
    line-height: 1.5;
}
.location-row-text p:first-child {
    margin-top: 0;
}
.location-row-text p:last-child {
    margin-bottom: 0;
}
.map {
    width: 100%;
    height: 550px;
    margin-top: 90px;
}
.ymaps-layers-pane {
    -webkit-filter: grayscale(100%);
}
.section.section-consultation  {
    padding-bottom: 0;
}
.consultation-wrap {
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}
.consultation-info {
    position: relative;    
    width: 45%;
    flex-shrink: 0;
    margin-bottom: 80px;
}
.consultation-info:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 15px;
    left: -15px;
    background: transparent;
    border: 2px solid var(--title-color);
    border-radius: 5px;
    z-index: 1;
}
.consultation-info-inner {
    position: relative;
    background: #fff;
    padding: 40px 50px 70px;
    border-radius: 5px;
    z-index: 2;
}
.consultation-info .section-title {
    margin-bottom: 10px;
    line-height: 1.2;
}
.consultation-info-subtitle {
    margin-bottom: 10px;
    line-height: 1.2;
}
.consultation-form {
    margin-top: 40px;
}
.consultation-form > span {
    display: block;
    margin-bottom: 5px;
}
.consultation-form-fields {
    gap: 10px;
}
.consultation-form-fields > input {
    flex-grow: 1;
    padding: 12px 15px;
}
.consultation-form-fields .btn {
    width: 100%;
}
.consultation-img {
    position: relative;
    height: 480px;
}
.consultation-img img {
    height: 100%;
    max-height: 100%;
    width: auto;
}
.infrastructure-container {
    padding-left: calc((100% - 1120px) / 2);
}
.infrastructure-wrap {    
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.infrastructure-info > p {
    margin: 0;
    line-height: 1.5;
}
.infrastructure-slider-wrap {
    position: relative;
    width: 60%;
    flex-shrink: 0;
}
.infrastructure-slider-wrap:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--theme-color);
    opacity: 0.26;
    z-index: -1;
    left: -12px;
    top: 15px;
    filter: blur(5px);
}
.infrastructure-slider {
    height: 420px;
}
.infrastructure-slide {
    position: relative;
    border-radius: 5px 0 0 5px;
    overflow: hidden;
}
.infrastructure-slide:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--theme-color);
    opacity: 0.3;
    z-index: 1;
}
.infrastructure-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.infrastructure-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}
.infrastructure-slider-btn {
    color: #fff;
    z-index: 2;
}
.payments-row {
    gap: 20px;
    padding-top: 20px;
}
.payment-item {
    flex-direction: column;
    align-items: flex-start;
    flex-basis: 0;
    flex-grow: 1;
    padding: 25px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: -4px 4px 5px 0 rgba(22,22,22,0.12);
    transition: 0.3s all ease;
}
.payment-item:hover {
    border-color: var(--alter-color);
    box-shadow: none;
}
.payment-item-icon {
    height: 40px;
}
.payment-item-icon svg {
    height: 100%;
    width: auto;
}
.payment-item-icon svg,
.payment-item-icon svg path {
    fill: var(--title-color);
}
.payment-item-info {
    flex-direction: column;
    flex-grow: 1;
    margin-top: 20px;
}
.payment-item-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.payment-item-info > span {
    font-size: 14px;
    margin-bottom: 20px;
}
.payment-item-info > .btn {
    font-size: 14px;
    margin-top: auto;
}
.calc-wrap {
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}
.calc-wrap-img {
    height: 320px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -10px 10px 10px 0 rgba(22,22,22,0.12);
}
.calc-wrap-img img {
    height: 100%;
    max-height: 100%;
    width: auto;
}
.calc-form-desc {
    display: block;
    font-size: 18px;
    margin-bottom: 30px;
}
.calc-form-wrap {
    position: relative;
    width: 60%;
    flex-shrink: 0;
}
.calc-form {   
    position: relative;    
    background: #fff;
    padding: 25px;
    border-radius: 5px;
}
.calc-form-fields {
    flex-wrap: wrap;
    gap: 30px;
}
.calc-form-field {
    width: calc((100% - 30px) / 2);
}
.calc-form-field > label {
    font-size: 14px;
    font-weight: 700;
}
.range-wrap {
    margin-top: 10px;
}
.range-wrap > input {
    padding: 8px 10px;
    width: 100%;
}
.irs--round {
    margin-top: -5px;
}
.irs--round .irs-min,
.irs--round .irs-max {
    top: 40px;
    background: var(--theme-color);
    color: #fff;
}
.irs--round .irs-line {
    top: 20px;
    background-color: #ebebeb;
    border-radius: 5px;
}
.irs--round .irs-bar {
    top: 20px;
    border-radius: 5px 0 0 5px;
    background-color: var(--title-color);
}
.irs--round .irs-handle {
    top: 10px;
    border-color: var(--theme-color);
}
.calc-form-types {
    margin-top: 40px;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.cal-form-type {
    flex-basis: 0;
    flex-grow: 1;
}
.cal-form-type > label {
    align-items: center;
    gap: 5px;
    font-size: 13px;
    padding: 5px 10px;
    background: #ebebeb;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s all ease;
}
.radio-custom {
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    transition: 0.3s all ease;
}
.radio-custom:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--title-color);
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s all ease;
}
.cal-form-type > input:checked + label {
    color: #fff;
    background: var(--title-color);
}
.cal-form-type > input:checked + label .radio-custom {
    border-color: var(--title-color);
}
.cal-form-type > input:checked + label .radio-custom:before {
    opacity: 1;
}
.calc-total {
    position: relative;
    margin-top: 50px;    
}
.calc-total:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 15px;
    left: -15px;
    background: transparent;
    border: 2px solid var(--title-color);
    border-radius: 5px;
}
.calc-total-inner {
    position: relative;
    border-radius: 5px;
    padding: 25px 25px 40px;
    background: #fff;
}
.calc-total-inner > h3 {
    color: var(--title-color);
    font-size: 24px;
}
.calc-total-info {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.calc-total-item {
    flex-basis: 0;
    flex-grow: 1;
    background: var(--theme-color);
    color: #fff;
    border-radius: 5px;
    padding: 10px;
}
.calc-total-item > span {
    font-weight: 700;
}
.calc-total-item p {
    margin: 5px 0 0;
}
.calc-total-form {
    margin-top: 20px;
    border-top: 1px solid #ebebeb;
    padding-top: 20px;
    gap: 10px;
}
.calc-total-form > input {
    flex-grow: 1;
    padding: 12px 15px;
}
.banks-slider {
    padding-bottom: 20px;
}
.banks-slide {
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    overflow: hidden;
}
.banks-slide img {
    width: 100%;
    height: auto;
    max-height: 100%;
}
.cert-wrap {
    justify-content: space-between;
    align-items: center;
    gap: 50px;    
}
.cert-img {
    width: auto;
    height: 325px;
    flex-shrink: 0;
    border-radius: 5px;
    box-shadow: -15px 15px 9px 1px rgba(255,255,255,0.25);
    overflow: hidden;
}
.cert-img img {
    height: 100%;
    width: auto;
}
.cert-form > input {
    flex-grow: 1;
    padding: 12px 15px;
    border-radius: 5px 0 0 5px;
}
.cert-form > .form-action {
    width: 180px;
}
.cert-form .btn {
    width: 100%;
    border-radius: 0 5px 5px 0;
}
.cert-form > .form-action span {
    color: #fff;
}
.section#description {
    padding: 50px 0;
}
.description-text {
    font-size: 18px;
    line-height: 1.5;
}
.description-text p:first-child {
    margin-top: 0;
}
.description-text p:last-child {
    margin-bottom: 0;
}
footer {
    padding: 50px 0;
    background: #333;
}
.footer-row {
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}
.footer-menu li a {
    color: #fff;
}
.footer-phone {
    color: #fff;
    font-weight: 700;
}
.footer-menu li a:hover,
.footer-phone:hover {
    text-decoration: underline;
}
.modal {
    visibility: hidden;
    display: block;
    opacity: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    padding: 30px;
    overflow-y: auto;
    transition: opacity .4s;
}
.modal:before {
    content: '';
    display: none;
    background: rgba(0,0,0,0.6);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.modal,
.modal:before {
    position: fixed;
    top: 0;
}
.modal-dialog {
    position: static;
    width: 400px;
    max-width: 95%;
    padding: 40px 40px 60px;
    margin: 50px auto;
    background: #fff;
    z-index: 11;
    border-radius: 5px;
    transform: translate(0,-500%);
    transition: transform .3s ease-out;
}
.modal-dialog.dialog-wide {
    width: 800px;
}
.modal-header {
    text-align: center;
}
.modal-header .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    padding: 0;
    width: 25px;
    height: 25px;
    line-height: 0;
    cursor: pointer;
}
.modal-close svg {
    width: 100%;
    height: 100%;
}
.modal-close svg rect {
    transition: 0.3s ease;
}
.modal-close:hover svg rect {
    fill: var(--theme-color);
}
.modal-body {
    margin-top: 30px;
    text-align: center;
}
.modal.opened {
    visibility: visible;
    opacity: 1;
    left: 0;
}
.modal.opened .modal-dialog {
    transform: translate(0,0);
}
.modal.opened:before {
    display: block;
}
.callback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.callback-form > input {
    padding: 15px;
}
.callback-form .btn {
    width: 100%;
}
.modal-dialog.dialog-wide .modal-body {
    margin-top: 0;
    text-align: left;
}
.planmodal-wrap {
    gap: 40px;
}
.planmodal-img {
    width: auto;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.planmodal-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
}
.planmodal-info {
    display: flex;
    flex-direction: column;
}
.planmodal-wp-write {
    display: block;
    margin-top: 40px;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    background: #46a746;
    color: #fff;
    transition: 0.3s background ease;
}
.planmodal-wp-write:hover {
    background: #3a8d3a;
}
.planning-specs {
    margin: 20px 0;
}
.planning-specs-item {
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.planning-specs-item__title {
    display: flex;
    flex-grow: 1;
    opacity: 0.7;
    line-height: 1;
}
.planning-specs-item__title:after {
    content: '';
    display: block;
    border-bottom: 1px dotted #333;
    flex-grow: 1;
    margin: 0 10px;
}
.planning-specs-item__val {
    flex-shrink: 0;
    width: auto;
    font-weight: 700;
    color: var(--title-color);
    line-height: 1;
}
.planmodal-form {
    margin-top: auto;
}
.planmodal-form > span {
    display: block;
    margin-bottom: 10px;
}
.planmodal-form .msg-list {
    flex-wrap: wrap;
}
.planmodal-form-fields {
    flex-direction: column;
    gap: 10px;
}
.planmodal-form-fields {
    flex-direction: column;
    gap: 10px;
}
.planmodal-form-fields > input {
    padding: 15px;
}
.planmodal-form-fields .btn {
    width: 100%;
}
.jGrowl.center {
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999;
}
.jGrowl-notification {
    text-align: center !important;
    padding: 25px 40px !important;
    font-size: 14px !important;
    position: relative !important;
}
.jGrowl-notification .jGrowl-close {
    position: absolute !important;
    top: 5px !important;
    right: 5px !important;
}
.af-message-error {
    background-color: #ff534e !important;
    opacity: 1;
}
.af-message-error {
    background-color: #ff534e !important;
    opacity: 1 !important;
}
.af-message-success {
    background-color: #149946 !important;
    opacity: 1 !important;
}

input.phone-mask.error {
    border: 1px solid red;
}

.header-callback {
    cursor: pointer;
}

.error + .help-block {
    display: block !important;
    color: red;
    position: absolute;
    bottom: -25px;
}

#callback .help-block {
    position: relative !important;
    bottom: initial !important;
    text-align: left;
    font-size: 12px;
    margin-top: -9px;
}

form {
    position: relative;
}


/* Media */
@media (max-width: 1160px) {
    .sales-slider-wraper {
        padding-left: 20px;
    }
    .infrastructure-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 992px) {
    .section {
        padding: 40px 0;
    }
    .section br {
        display: none;
    }
    .header-row {
        padding: 10px 0;
        gap: 30px;
    }
    .header-menu {        
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        background: var(--theme-color);       
        width: auto; 
        max-width: 100%;
        font-size: 18px;
        transform: translateX(-110%);
        transition: 0.4s all ease;
    }  
    .header-menu.shown {
        transform: translateX(0);
    }  
    .header-contacts {
        margin-left: auto;
    }
    .header-callback {
        display: none;
    }
    .burger-toggler {
        display: block;
        background: rgba(0,0,0,0);
        border: none;
        width: 24px;
        height: auto;
        padding: 0;
        font-size: 0;
        line-height: 0;
        cursor: pointer;
    }
    .burger-toggler span {
        display: block;
        width: 24px;
        height: 2px;
        background:  #fff;
        margin: 4px auto;
        transition: all 0.3s ease-in-out;
    }
    .burger-toggler.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-toggler.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-toggler.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .offer-wrap {
        flex-direction: column;
        gap: 30px;
    }
    .masonry {
        gap: 10px;
    }
    .masonry-item {
        width: calc((100% - 30px) / 4);
    }
    .planning-wrap {
        align-items: stretch;
        gap: 30px;
        flex-direction: column;
    }
    .planning-filters {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .filter-block {
        width: 100%;
    }
    .filter-item {
        width: auto;
        flex-grow: 1;
    }
    .pricelist-offer-img {
        display: none;
    }
    .pros-top-row {
        align-items: flex-start;
        gap: 0;
        flex-direction: column;
    }
    .pros-top-text {
        width: 100%;;
    }
    .pros-item-info {
        padding: 20px;
    }
    .video-section {
        align-items: flex-start;
        gap: 30px;
        flex-direction: column;
    }
    .popup-video {
        width: 100%;
        height: 320px;
        box-shadow: none;
    }
    .location-row {
        align-items: flex-start;
        gap: 30px;
        flex-direction: column;
    }
    .location-row-left {
        width: 100%;
    }
    .location-row-left .section-title {
        margin-bottom: 10px;
    }
    .map {
        height: 400px;
        margin-top: 50px;
    }
    .consultation-wrap {
        justify-content: center;
    }
    .consultation-img {
        display: none;
    }
    .consultation-info {
        width: 420px;
        max-width: 100%;
        margin-bottom: 55px;
    }
    .infrastructure-wrap {
        align-items: stretch;
        gap: 30px;
        flex-direction: column;
    }
    .infrastructure-slider-wrap {
        width: 100%;
    }
    .infrastructure-slider-wrap:before {
        display: none;
    }
    .payments-row {
        flex-wrap: wrap;
    }
    .payment-item {
        flex-basis: calc((100% - 20px) / 2);
    }
    .calc-form-wrap {
        width: 100%;
    }
    .calc-wrap-img {
        display: none;
    }
    .calc-total-item {
        flex-basis: calc((100% - 20px) / 2);
    }
    .cert-wrap {
        gap: 30px;
        flex-direction: column;
    }
    .cert-img {
        height: 270px;
    }
}   
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .hero {
        min-height: 500px;
        height: 100%;
    }
    .hero-img {
        height: 100%;
    }
    .hero-crop {
        display: none;
    }
    .hero-content {
        padding-bottom: 50px;
    }
    .hero-text h1 {
        font-size: 54px;
    }
    .hero-subtitle {
        font-size: 20px;
    }    
    .hero-about {
        flex-wrap: wrap;
        padding: 0;
        margin-top: 50px;
        background: transparent;
    }
    .hero-about-item {
        flex-basis: auto;
        flex-grow: 0;
        text-align: left;
        border-right: none;        
        flex: 50%;
        max-width: 47%;
    }
    .hero-about-item__icon {
        height: 25px;
    }
    .hero-about-item__icon img {
        margin: 0;
    }
    .pricelist-offer-info {
        width: 100%;
        max-width: 100%;
    }
    .offer-info {
        width: 100%;
    }
    .offer-title > span {
        font-size: 28px;
    }
    .offer-title > span b {
        font-size: 60px;
    }
    .masonry {
        gap: 10px;
        height: 550px;
    }
    .pros-row {
        margin-top: 50px;
    }
    .pros-item-info h3 {
        font-size: 24px;
    }    
    .planning-item {
        width: 100%;
    }
    .consultation-info:before {
        display: none;
    }
    .calc-total-form,
    .pricelist-offer-form-fields {
        flex-wrap: wrap;
    }
    .calc-total:before {
        display: none;
    }
    footer {
        padding: 30px 0;
    }
    .footer-row {
        align-items: center;
        gap: 30px;
        flex-direction: column;
    }
    .footer-menu {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    .modal-dialog {
        padding: 20px;
    }
    .modal-header .modal-close {
        top: 5px;
        right: 5px;
    }
    .planmodal-wrap {
        gap: 30px;
        flex-direction: column;
    }
    .planmodal-img {
        width: 100%;
        height: 300px;
    }
    .planmodal-img img {
        width: auto;
        height: 100%;
    }

}
@media (max-width: 540px) {
    .pros-item-info {
        min-width: 100%;
    }
    .header-phone {
        font-size: 16px;
        line-height: 1;
    }
    .header-wp {
        width: 20px;
        height: 20px;
    }
    .hero-text h1 {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-sales {
        margin-top: 20px;
        font-size: 14px;
    }
    .hero-about-item {
        font-size: 14px;
    }
    .offer-img {
        height: auto;
        width: 100%;
    }
    .offer-img:before {
        display: none;
    }
    .offer-img img {
        width: 100%;
        height: auto;
    }
    .offer-form,
    .msg-list,
    .consultation-form-fields,
    .cert-form {
        flex-wrap: wrap;
        gap: 10px;
    }
    .form-action {
        width: 100% !important;
    }
    .form-action .btn {
        width: 100% !important;
    }
    .masonry-item {
        border-radius: 10px;
    }
    .masonry-item:before {
        width: calc(100% - 12px);
        height: calc(100% - 12px);
        top: 5px;
        left: 5px;
        border: 2px solid #fff;
        border-radius: 10px;
    }
    .planning-item > img {
        width: 40%;
    }
    .planning-item-info > div {
        margin-top: auto;
        margin-bottom: 15px;
    }
    .pros-item {
        flex-wrap: wrap;
    }
    .pros-item-img {
        width: 100%;
        height: 220px;
    }
    .pros-item:nth-child(2n) .pros-item-img {
        order: 0;
    }
    .popup-video {
        height: 220px;
    }
    .popup-video:before {
        width: 60px;
        height: 60px;
    }
    .sales-slide {
        width: 200px;
        height: 200px;
    }
    .sales-slide-text {
        font-size: 14px;
    }
    .map {
        height: 300px;
    }
    .infrastructure-slider {
        height: 270px;
    }
    .infrastructure-slide-text {
        padding: 15px;
        font-size: 14px;
    }
    .infrastructure-slider-btn:after {
        font-size: 30px;
    }
    .payment-item {
        flex-basis: 100%;
    }
    .calc-form {
        padding: 20px;
    }
    .calc-form-field {
        width: 100%;
    }
    .calc-form-types {
        gap: 10px;
    }
    .cal-form-type {
        flex-basis: auto;
        width: auto;
    }
    .calc-total {
        margin-top: 30px;
    }
    .calc-total-info {
        gap: 10px;
    }
    .calc-total-item {
        flex-basis: auto;
    }
    .cert-img {
        width: 100%;
        height: auto;
        box-shadow: none;
    }
    .cert-img img {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 460px) {
    .hero-about-item {
        flex: 33%;
        max-width: 30%;
    }
}
@media (max-width: 360px) {
    body {
        font-size: 14px;
    }
    .logo {
        font-size: 12px;
        line-height: 16px;
    }
    .logo br {
        display: none;
    }    
    .logo span {
        font-size: 12px;
    }    
    .header-wp {
        display: none;
    }
    .header-phone {
        font-size: 14px;
        white-space: nowrap;
    }
    .header-menu {
        width: 100%;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-sales li {
        line-height: 1.3;
    }
    .section-title {
        font-size: 24px;
    }
    .masonry {
        gap: 5px;
        height: 350px;
    }
    .masonry-item {
        width: calc((100% - 15px) / 4);
        border-radius: 5px;
    }
    .masonry-item:before {
        display: none;
    }
    .planning-item {
        flex-direction: column;
    }
    .planning-item > img {
        width: auto;
        height: 120px;
        margin: 0 auto;
    }
    .planning-item-info > div {
        margin-top: 15px;
    }
    .location-address {
        font-size: 12px;
    }
    .consultation-info-inner {
        padding: 15px 15px 40px;
    }
}

.btn.loading {
        position:relative;
	color: transparent;
}
.btn.loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	height: 16px;
	width: 16px;
	transform: translate(-50%,-50%);
	border: 1px solid #fff;
	border-color: #fff transparent;
	border-radius: 50%;
	animation: load 1.5s linear infinite;
}

@keyframes load {
    0% {
        -webkit-transform: translate(-50%,-50%) rotate(0);
        transform: translate(-50%,-50%) rotate(0)
    }

    100% {
        -webkit-transform: translate(-50%,-50%) rotate(360deg);
        transform: translate(-50%,-50%) rotate(360deg)
    }
}
.show-terms {
	text-decoration: underline;
	cursor: pointer;
}

.header-row-mobile {
   display: none;
}

@media (max-width: 500px) {
   .header-row-mobile {
      display: block;
      padding-top: 0;
   }
   .header-row .header-contacts {
      display: none;
   }
   .header-row-mobile .header-contacts {
      margin-left: -5px;
      display: inline-flex;
   }
    .header-row {
        padding-bottom: 0;
    }
}

.quiz-header-link {
    background: #e50e0e;
    padding: 10px;
}
.quiz-header-link a {
    color: white;
}

@media (max-width: 988px) {
   .quiz-header-link.header-row-mobile {
       display: block;
   }
}

@media (max-width: 568px) {
    .quiz-header-link.header-row-mobile {
        position: absolute;
        right: 0;
        top: 60px;
    }
}
@media (max-width: 690px) {
    .quiz-header-link {
        font-size: 13px;
        padding: 5px;
    }
}

@media (max-width: 850px) {
.header-phone {
    font-size: 15px;
}
.header-row {
        gap: 10px;
}
.header-contacts {
    gap: 5px;
}
.logo {
    max-width: 200px;
}
}

/* ===== Base container ===== */
.chatra-extra-btns {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 9998;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;

  gap: 8px;
  opacity: 0.85;
}

/* ===== Buttons ===== */
.chatra-extra-btns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  width: 70px;
  height: 70px;
  max-width: 70px;
  max-height: 70px;

  border-radius: 50%;
  text-decoration: none;

  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
          box-shadow: 0 2px 6px rgba(0, 0, 0, .25);

  -webkit-transition: -webkit-transform .15s ease;
  transition: -webkit-transform .15s ease;
  transition: transform .15s ease;
  transition: transform .15s ease, -webkit-transform .15s ease;
}

/* Hover */
.chatra-extra-btns a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
}

/* ===== SVG ===== */
.chatra-extra-btns svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;

  -webkit-transform-origin: center;
          transform-origin: center;

  will-change: transform;
}

/* ===== Button colors ===== */
.chatra-extra-btns .wa {
  background: #25D366;
}

.chatra-extra-btns .tg {
  background: #0088cc;
}

/* ===== Icon sizes ===== */
.chatra-extra-btns .wa svg {
  width: 60px;
  height: 60px;
}

.chatra-extra-btns .max svg {
  width: 50px;
  height: 50px;
}

/* ===== Responsive ===== */
@media (max-width: 944px) {
  .chatra-extra-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .chatra-extra-btns a {
    width: 60px;
    height: 60px;
  }

  .chatra-extra-btns .wa svg {
    width: 52px;
    height: 52px;
  }

  .chatra-extra-btns .max svg {
    width: 45px;
    height: 45px;
  }
}

/* ===== Animation ===== */
@-webkit-keyframes pulse-icon {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse-icon {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* ===== Animation apply ===== */
.chatra-extra-btns .wa svg {
  -webkit-animation: pulse-icon 1.8s ease-in-out infinite;
          animation: pulse-icon 1.8s ease-in-out infinite;
}

.chatra-extra-btns .max svg {
  -webkit-animation: pulse-icon 1.8s ease-in-out infinite;
          animation: pulse-icon 1.8s ease-in-out infinite;

  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
