@import url("normalize.css");
@import url("base.css");

body {
    position: relative;
    background: var(--bg-color);
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-color);
}
.header-row {
    gap: 25px;
    padding: 15px 0;
}
.header-logo {
    display: block;
    width: 120px;
}
.header-actions {
    gap: 5vw;
}
.header-wp-wrap {
    gap: 10px;
}
.header-wp-wrap > img {
    width: 50px;
}
.header-wp-inner {
    gap: 5px;
}
.header-wp-inner > span {
    font-size: 14px;
    gap: 5px;
    color: var(--text-light);
}
.header-wp-inner > span:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--green);
    transition: all 0.4s;
    animation: online 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.header-wp.btn {
    background: var(--green);
    font-size: 12px;
    padding: 4px 15px;
    height: auto;
}
.header-phone-wrap {
    gap: 5px;
}
.header-schedule {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.4px;
}
.header-phone {
    font-size: 24px;
    text-decoration: none;
    color: var(--theme-color);
    font-weight: 700;
}
.header-phone:hover {
    color: var(--theme-darker);
}
.hero-wrap {
    gap: 50px;
}
.hero-content {
    flex-grow: 1;
}
.hero-title {
    font-size: 54px;
}
.hero-title span {
    color: var(--theme-color);
}
.hero-text {
    font-size: 24px;
    margin: 30px 0;
}
.hero-pros {
    max-width: 660px;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-pro {
    width: calc((100% - 15px) / 2);
    gap: 10px;
    font-size: 14px;
    background: var(--bg-light);
    padding: 15px 25px;
    border-radius: var(--border-radius);
}
.hero-pro-title {
    text-align: left;
}
.hero-img {
    width: 620px;
    flex-shrink: 0;
}
.hero-img:before {
    content: '';
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, var(--bg-color), transparent);
}
.hero-form {
    width: 100%;
    max-width: 550px;
    margin-top: 40px;
}
.form-fields {
    gap: 10px;
    flex-wrap: wrap;
}
.form-field {
    flex-basis: calc((100% - 10px) / 2);
    flex-grow: 1;
}
.form-field > input {
    width: 100%;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--placeholder-color);
    transition: 0.35s all ease;
}
.form-field > input:focus {
    border-color: var(--text-color);
}
.form-field > input.error {
    border-color: var(--theme-color);
}
.form-footer {
    margin-top: 10px;
    font-size: 14px;
}
.form-footer a {
    color: var(--theme-color);
}
.form-field > span {
    font-size: 12px;
}
.section-header-text {
    gap: 10px;
    flex-basis: 50%;
    flex-shrink: 0;
}
.quiz-wrap {
    gap: 40px;
}
.quiz-img {
    width: 50%;
    flex-shrink: 0;
    border-radius: var(--border-radius);
    box-shadow: -5px 5px 7px 0 rgba(0, 0, 0, 0.12);
    overflow: hidden;
}
.quiz-img img {
    height: 100%;
    object-fit: cover;
}
.quiz-form-wrap {
    flex-grow: 1;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: -5px 5px 7px 0 rgba(0, 0, 0, 0.12);
    overflow: hidden;
}
.quiz-form {
    height: 100%;
}
.quiz-step {
    display: none;
    height: 100%;
    padding: 40px;
}
.quiz-step.active {
    display: block;
}
.quiz-step-inner {
    height: 100%;
}
.quiz-step-title {
    font-size: 22px;
    font-weight: 700;
}
.quiz-options {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.quiz-option {
    width: calc((100% - 15px) / 2);
}
.quiz-option > input {
    display: none;
}
.quiz-option-label {
    gap: 6px;
}
.quiz-option-label > span {
    transition: 0.35s all ease;
}
.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid var(--placeholder-color);
    border-radius: 3px;
    cursor: pointer;
    transition: 0.35s all ease;
}
.custom-checkbox:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--theme-color);
    border-radius: 2px;
    opacity: 0;
    transition: 0.35s all ease;
}
.custom-radio {
    width: 20px;
    height: 20px;
    border: 1px solid var(--placeholder-color);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.35s all ease;
}
.custom-radio:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--theme-color);
    border-radius: 50%;
    opacity: 0;
    transition: 0.35s all ease;
}
.quiz-option > input:checked + .quiz-option-label {
    border-color: var(--theme-color);
}
.quiz-option > input:checked + .quiz-option-label .custom-checkbox:before, 
.quiz-option > input:checked + .quiz-option-label .custom-radio:before {
    opacity: 1;
}
.quiz-option > input:checked + .quiz-option-label > span {
    color: var(--theme-color);
}
.quiz-step-actions {
    gap: 15px;
    margin-top: auto;
}
.quiz-step-prev.btn {
    background: var(--text-color);
}
.quiz-step-prev.btn:hover {
    background: var(--text-light);
}
.quiz-step-subtitle {
    margin-top: 40px;
}
.quiz-step-inner .form-fields {
    margin: 15px 0;
}
.quiz-step-inner .form-footer {
    text-align: center;
}
.pros-row {
    gap: 30px;
}
.pros-item {
    flex-basis: 0;
    flex-grow: 1;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: 106%;
    background-size: auto 90%;
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: -5px 5px 7px 0 rgba(0, 0, 0, 0.12);
}
.pros-item-ic {
    flex-basis: 0;
    flex-grow: 1;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: 95%;
    background-size: auto 90%;
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: -5px 5px 7px 0 rgba(0, 0, 0, 0.12);
}
.pros-title {
    font-size: 24px;
    font-weight: 700;
}
.pros-desc {
    margin-top: 10px;
    color: var(--text-light);
}
.review-item {
    width: 440px;
    height: auto !important;
    border-radius: var(--border-radius);
    padding: 35px;
    background: var(--white);
    overflow: hidden;
}
.review-item-top {
    gap: 20px;
}
.review-rating {
    width: 60px;
    height: 10px;
    background: url(../images/icons/rating-star.svg) repeat-x;
}
.review-item-top > img {
    width: auto;
    height: 20px;
}
.review-item-info {
    margin-top: 15px;
    margin-bottom: 15px;
}
.review-item-info-top {
    gap: 15px;
}
.review-item-author {
    font-weight: 700;
}
.review-item-date {
    color: var(--text-light);
}
.review-text-content {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
}
.read-review {
    margin-top: auto;
    color: var(--theme-color);
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}
.read-review svg {
    fill: var(--theme-color);
}
.reviews-slider-nav {
    margin-bottom: 40px;
    gap: 20px;
}
.reviews-prev, 
.reviews-next {
    position: static;
    background: var(--theme-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    margin: 0 !important;
    border-radius: var(--border-radius);
}
.reviews-prev:hover, 
.reviews-next:hover {
    background: var(--theme-darker);
}
.reviews-prev:after, .reviews-next:after {
    font-size: 22px;
}
.mfp-review-content {
    background: var(--white);
    max-width: calc(100% - 20px);
    width: 600px;
    border-radius: var(--border-radius);
    margin: 0 auto;
    padding: 35px;
}
.about-wrap {
    gap: 50px;
}
.about-team-wrap {
    width: 50%;
    flex-shrink: 0;
}
.team-item-image {
    height: 400px;
    overflow: hidden;
}
.team-item-image > img {
    height: 100%;
    width: auto;
    margin: 0 auto;
}
.team-item-image:before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--light-grey);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}
.team-item-name {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
}
.team-item-info {
    gap: 20px;
    margin-top: 15px;
}
.team-item-data {
    flex-basis: 0;
    flex-grow: 1;
    gap: 10px;
    text-align: center;
}
.team-item-data-num {
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: var(--theme-color);
}
.team-item-data-desc {
    font-size: 12px;
    color: var(--text-light);
}
.team-slider-pagination,
.brands-slider-pagination {
    position: static;
    height: 22px;
    margin-top: 25px;
}
.team-slider-pagination .swiper-pagination-bullet,
.brands-slider-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin: 0 6px !important;
    background: var(--placeholder-color);
    opacity: 1;
    box-shadow: 0 0 1px 5px rgba(221, 51, 51, 0);
}
.team-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.brands-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--theme-color);
    box-shadow: 0 0 1px 5px rgba(221, 51, 51, 0.25);
}
.about-team-wrap > h3,
.about-text-wrap > h3 {
    font-size: 22px;
    margin-bottom: 40px;
}
.about-text-wrap {
    flex-grow: 1;
}
.about-text-content {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 16px;
    letter-spacing: 1px;
}
.about-text-content > p:first-child,
.about-text-content > ul:first-child {
    margin-top: 0;
}
.about-text-content > p:last-child,
.about-text-content > ul:last-child {
    margin-bottom: 0;
}
.cta-section {
    padding-top: 160px;
    padding-bottom: 100px;
}
.cta-wrap {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: -5px 5px 7px 0 rgba(0, 0, 0, 0.12);
}
.cta-image-wrap {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 400px;
    flex-shrink: 0;
}
.cta-form-wrap {
    position: relative;
    width: 55%;
    flex-shrink: 0;
    z-index: 2;
}
.cta-form {
    margin-top: 30px;
}
.cta-form > .btn {
    width: 100%;
    margin-top: 15px;
}
.brands-row {
    width: 160px;
    gap: 10px;
}
.brand-item {
    background: var(--white);
    border-radius: 20px;
    padding: 15px;
    height: 80px;
}
.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.contacts-map {
    height: 550px;
    border-radius: var(--border-radius);
    box-shadow: -5px 5px 7px 0 rgba(0, 0, 0, 0.12);
    overflow: hidden;
}
.contacts-wrap:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.contacts-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contacts-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 15px;
    box-shadow: -5px 5px 7px 0 rgba(0, 0, 0, 0.12);
}
.contacts-badge-inner {
    padding: 25px 25px 40px 25px;
}
.contacts-badge-inner:after {
    content: '';
    display: block;
    width: 40px;
    height: 48px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    background-image: url(../images/point.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: drop-shadow(0 4px 1px rgba(0, 0, 0, 0.12));
}
.contacts-badge-data:not(:last-child) {
    margin-bottom: 25px;
}
.contacts-badge-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.contacts-badge-data > a {
    gap: 10px;
    color: var(--theme-color);
    text-decoration: none;
    margin-top: 10px;
}
.contacts-phone:before,
.contacts-wp:before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
}
.contacts-phone:before,
.contacts-wp:before {    
    background-color: var(--theme-color);
    background-image: url(../images/icons/phone.svg);
}
.contacts-wp:before {
    background-color: var(--green);
    background-image: url(../images/icons/whatsapp2.svg);
}
footer {
    background: var(--text-color);
}
.footer-row {
    padding: 40px 0;
}
.footer-copy {
    font-size: 14px;
    color: var(--white);
    margin-top: 15px;
    opacity: 0.5;
}
.footer-menu {
    gap: 4vw;
}
.footer-menu li a {
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
}
.footer-menu li a:hover {
    color: var(--theme-color);
}
.footer-right-bottom {
    gap: 10px;
    margin-top: 20px;
}
.footer-phone {
    font-size: 22px;
    text-decoration: none;
    color: var(--theme-color);
    font-weight: 700;
}
.footer-phone:hover {
    color: var(--theme-darker);
}
.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
}
.site-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    width: 650px;
    max-width: 96%;
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: -6px 6px 10px 1px rgba(0,0,0,0.12);
    transition: 0.45s ease-in-out;
    z-index: 9999;
}
.modal.shown {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.modal-close {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;    
    cursor: pointer;
    transition: 0.4s ease;
}
.modal-header {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.modal-subheader {
    text-align: center;
    color: var(--text-light);
    margin-top: 10px;
}
.modal-content {
    margin-top: 25px;
}
.modal-form {
    gap: 20px;
}
.modal-form .btn {
    width: 100%;
}
.modal-form .form-agreement {
    margin-top: 0;
    text-align: center;
}
.mobile-nav {
    display: none;
}
.inner-section-title {
    font-size: 36px;
    margin-bottom: 40px;
}
.problems-list {
    gap: 15px;
    flex-wrap: wrap;
}
.problem-item {
    width: calc((100% - 75px) / 6);
    gap: 10px;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-size: 14px;
    cursor: pointer;
    transition: 0.35s all ease;
}
.problem-item.active,
.problem-item:not(.active):hover {
    box-shadow: 0px 9px 5px 0 rgba(0, 0, 0, 0.22);
    transform: translateY(-5px);
}
.problem-item-icon {
    width: 45px;
    height: 45px;
}
.services-wrap {
    margin-top: 50px;
}
.services-item {
    display: none;
}
.services-item.active {
    display: block;
}
.services-list-header {
    border-radius: 12px 12px 0 0;
    background: var(--light-grey);
}
.services-list-header > div {
    font-weight: 700;
    padding: 15px 10px;
}
.services-list-header > div:first-child {
    padding-left: 20px;
}
.services-list-header > div:last-child {
    padding-right: 20px;
}
.services-list-header > div:first-child,
.services-list-header > div:nth-child(2),
.service-item-defect,
.service-item-solution {
    flex-basis: 30%;
}
.services-list-header > div:last-child,
.services-list-header > div:nth-child(3),
.service-item-price,
.service-item-action {
    flex-basis: 20%;
}
.services-list-items {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}
.service-item {
    font-size: 14px;
    background: var(--white);
}
.service-item:nth-child(2n) {
    background: var(--bg-color);
}
.service-item > div {
    padding: 15px 10px;
}
.service-item > div:first-child {
    padding-left: 20px;
}
.service-item > div:last-child {
    padding-right: 20px;
}
.grecaptcha-badge {
    display: none !important;
}
@media (max-width: 1360px) {
    .problem-item {
        width: calc((100% - 45px) / 4);        
    }
}
@media (max-width: 1240px) {
    .hero-wrap {
        align-items: flex-end;
    }
    .hero-img {
        position: absolute;
        right: 0;
        opacity: 0.6;
        z-index: -1;
    }
    .section-title {
        font-size: 26px;
    }
    .team-item-image {
        height: 300px;
    }
    .about-text-content {
        font-size: 14px;
    }
}
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .mobile-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--white);
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -2px 13px 0px rgba(0, 0, 0, 0.22);
        z-index: 9;
    }
    .mobile-nav-link {
        flex-basis: 0;
        flex-grow: 1;
        padding: 10px 6px;        
        text-align: center;
        font-size: 12px;
        color: var(--text-color);
        text-decoration: none;
    }
    .mobile-nav-link-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 5px;
    }
    .mobile-nav-link-icon svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mobile-nav-link-icon svg path {
        fill: var(--theme-color);
    }
    .header-callback,
    .header-wp-wrap {
        display: none;
    }
    .hero {
        padding-bottom: 0 !important;
    }
    .hero-content {
        text-align: center;
    }
    .hero-pros {
        margin: 0 auto;
    }
    .hero-form {
        margin: 40px auto 0 auto;
    }
    .hero-img {
        width: 580px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.3;      
    }
    .quiz-step {
        padding: 25px;
    }
    .quiz-step-subtitle {
        margin-top: 10px;
    }
    .quiz-option {
        font-size: 14px;
    }
    .pros-row {
        gap: 10px;
        flex-wrap: wrap;
    }
    .pros-item {
        flex-basis: 100%;        
        background-position: 104%;        
    }
    .about-wrap {
        gap: 30px;
        flex-wrap: wrap;
    }
    .about-team-wrap {
        width: 100%;
        order: 2;
    }
    .about-team-wrap > h3, 
    .about-text-wrap > h3 {
        margin-bottom: 15px;
    }    
    .team-item-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .cta-image-wrap {
        width: 340px;
    }
    footer {        
        padding-bottom: 50px;
    }
}
@media (max-width: 768px) {
    .section-header:before,
    .section-header:after {
        display: none;
    }
    .section-header-text {
        text-align: center;
        flex-basis: 100%;
    }
    .hero-img {
        width: 80%;
    }
    .problem-item {
        width: calc((100% - 30px) / 3);
    }
    .quiz-wrap {
        gap: 20px;
        flex-wrap: wrap;
    }
    .quiz-img {
        width: 100%;
    }
    .review-item {
    width: 280px;
}
    .reviews-slider-nav {
        margin-bottom: 20px;
        gap: 10px;
        justify-content: center;
    }
    .cta-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .cta-image-wrap {
        display: none;
    }
    .cta-form-wrap {
        width: 100%;        
        text-align: center;
    }
    .footer-row {
        flex-wrap: wrap;
    }
    .footer-left {
        order: 2;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }
    .footer-right {
        width: 100%;
    }
    .footer-menu li a {
        font-size: 14px;
    }
    .footer-right-bottom {
        align-items: center;
    }
    .contacts-badge {
        width: 320px;
    }
}
@media (max-width: 540px) {
    :root {
        --border-radius: 20px;
    }
    .section-subtitle {
        font-size: 16px;        
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-text {
        font-size: 22px;
    }
    .hero-title br,
    .hero-text br {
        display: none;
    }
    .form-field {
        flex-basis: 100%;
    }
    form .btn {
        width: 100%;
    }
    .problem-item {
        width: calc((100% - 15px) / 2);        
        padding: 10px;
        border-radius: 15px;
        font-size: 12px;        
    }
    .problem-item-icon {
        width: 30px;
        height: 30px;
    }
    .service-item {
        flex-wrap: wrap;
    }
    .service-item > div {
        padding: 10px;
    }
    .services-list-header {
        display: none;
    }
    .service-item-defect {
        flex-basis: 100%;
        text-align: center;
        font-weight: 700;
    }
    .service-item-solution {
        flex-basis: 100%;
        text-align: center;
        color: var(--text-light);
    }
    .service-item-price, 
    .service-item-action {
        flex-basis: 50%;
        text-align: center;
        margin: 0 auto;
    }
    .service-item-action {
        justify-content: center;
    }
    .pros-item {
        padding: 15px;
    }
    .pros-title {
        font-size: 18px;        
    }
    .reviews-prev, 
    .reviews-next {
        border-radius: 50%;
    }
    .about-text-content {
        line-height: 1.3;
        letter-spacing: normal;
    }
    .footer-menu {
        gap: 5px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-left {
        margin-top: 20px;
        justify-content: center;
        text-align: center;
    }
    .footer-left .header-logo {
        display: none;
    }
}
@media (max-width: 440px) {
    body {
        font-size: 14px;
    }
    .section {
        padding: 40px 0;
    }
    .header-logo {        
        width: 90px;
    }
    .hero-title {
        font-size: 26px;
    }
    .hero-text {
        font-size: 16px;
        margin: 15px 0;
    }
    .hero-pros {
        gap: 5px;
    }
    .hero-pro {
        width: calc((100% - 5px) / 2);
        gap: 5px;
        font-size: 12px;        
        padding: 10px;
        border-radius: 15px;
    }
    .hero-form {
        margin: 20px auto 0 auto;
    }
    .hero-img {
        display: none;
    }
    .section-title {
        font-size: 16px;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .quiz-step {
        padding: 15px;
    }
    .quiz-options {
        gap: 5px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .quiz-step-title {
        font-size: 16px;
    }
    .quiz-option {
        width: calc((100% - 5px) / 2);
        font-size: 10px;
    }
    .quiz-step-subtitle {
        font-size: 12px;
    }
    .cta-wrap {
        padding: 20px;
    }
    .mobile-nav-link-title {
        font-size: 10px;
    }
    .header-phone-wrap {
        align-items: flex-end;
    }
    .header-schedule {       
        font-size: 10px;
    }
    .header-phone {
        font-size: 16px;
    }
}