/*about-us-section-start*/
.about-us-section .text-box {
    row-gap: 15px;
}

.about-us-section .text-box p {
    font-size: 16px;
    line-height: 25px;
    text-align: center;
}

@media (max-width: 576px) {
    .about-us-section .text-box p {
        font-size: 14px;
    }
}

.about-us-section .text-box span {
    color: var(--primary-color);
}

.about-us-section .text-box .gray-text {
    color: var(--color-text-2);
    font-weight: 700;
}

.about-us-section .text-box .black-text {
    color: var(--secondary-color);
}

.about-us-section .info-box .tel-box {
    box-shadow: 0 10px 50px #FDB913;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 800;
    min-height: 134px;
    transition: 0.3s all;
}

.about-us-section .info-box .tel-box .title {
    font-size: 28px;
}

.about-us-section .info-box .tel-box .tel {
    font-size: 48px;
}

@media (max-width: 576px) {
    .about-us-section .info-box .tel-box {
        min-height: 116px;
    }

    .about-us-section .info-box .tel-box .title {
        font-size: 24px;
    }

    .about-us-section .info-box .tel-box .tel {
        font-size: 40px;
    }
}

.about-us-section .info-box .time-box {
    box-shadow: 0 10px 50px #FDB913;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    min-height: 134px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    transition: 0.3s all;
}

.about-us-section .info-box .time-box .title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.about-us-section .info-box .time-box .caption {
    font-size: 17px;
    color: var(--color-text-2);
}

@media (max-width: 576px) {
    .about-us-section .info-box .time-box {
        min-height: 116px;
    }

    .about-us-section .info-box .time-box .title {
        font-size: 23px;
    }

    .about-us-section .info-box .time-box .caption {
        font-size: 12px;
    }
}

.about-us-section .info-box .time-box:hover,
.about-us-section .info-box .tel-box:hover {
    scale: 1.02;
}

/*about-us-section-end*/

/*form-request-section-start*/
.form-request .head-box .sub-title {
    font-size: 26px;
    font-weight: 800;
    color: #B80000;
}

.form-request .head-box h4 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .form-request .head-box .sub-title {
        font-size: 18px;
    }

    .form-request .head-box h4 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .form-request .head-box .sub-title {
        font-size: 14px;
    }

    .form-request .head-box h4 {
        font-size: 18px;
    }
}

.form-request .form-box .row {
    row-gap: 25px;
}

@media (max-width: 768px) {
    .form-request .form-box .row {
        row-gap: 15px;
    }
}

.form-request .form-box .form-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-request .form-box .form-item label {
    color: var(--color-text-1);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .form-request .form-box .form-item label {
        min-width: 136px;
        text-align: end;
    }
}

.form-request .form-box .form-item input,
.form-request .form-box .form-item select {
    flex: 1;
    background-color: #F7F7F7;
    color: var(--color-text-2);
    border-radius: 50px;
    border: none;
    height: fit-content;
    padding: 10px;
    transition: 0.3s all;
}

.form-request .form-box .form-item select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
    background-size: 16px 12px;
}

.form-request .form-box .form-item textarea {
    height: 300px;
    resize: none;
    flex: 1;
    border: none;
    border-radius: 25px;
    padding: 10px;
    background-color: #F7F7F7;
    color: var(--color-text-2);
    transition: 0.3s all;
}

@media (max-width: 768px) {
    .form-request .form-box .form-item textarea {
        height: 150px;
        border-radius: 10px;
    }
}

.form-request .form-box .form-item input:focus-visible,
.form-request .form-box .form-item select:focus-visible,
.form-request .form-box .form-item textarea:focus-visible {
    outline: 1px solid var(--primary-color);
}

.form-request .form-box .primary-btn {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

.form-request .bottom-box {
    display: flex;
    flex-direction: column;
    line-height: 40px;
}

.form-request .bottom-box .sub-title {
    font-size: 24px;
    font-weight: 800;
    color: #B80000;
}

@media (max-width: 992px) {
    .form-request .bottom-box .sub-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .form-request .bottom-box .sub-title {
        font-size: 14px;
    }
}

.form-request .bottom-box .gray-text {
    color: var(--color-text-2);
    font-weight: 700;
    font-size: 16px;
}

.form-request .bottom-box .black-text {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

@media (max-width: 768px) {
    .form-request .bottom-box .gray-text,
    .form-request .bottom-box .black-text {
        font-size: 14px;
    }
}

/*form-request-section-end*/

/*locations-section-start*/
.locations-section .row {
    row-gap: 30px;
}

.locations-section .location-card {
    background: #fff;
    box-shadow: 0 10px 50px rgba(253, 185, 19, 0.5);
    border-radius: 25px;
    padding: 10px;
}

.locations-section .location-card iframe {
    border-radius: 15px;
    aspect-ratio: 1/1;
    max-height: 180px;
    max-width: 180px;
    align-self: center;
}

@media (max-width: 992px) {
    .locations-section .location-card iframe {
        max-width: 100%;
        max-height: 200px;
    }
}

.locations-section .location-card iframe:hover {
    cursor: pointer;
}

.locations-section .location-card .content-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

.locations-section .location-card .content-box h4 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
}

.locations-section .location-card .content-box p {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text-1);
    margin: 10px 0;
}

@media (max-width: 1200px) {
    .locations-section .location-card .content-box h4 {
        font-size: 20px;
    }

    .locations-section .location-card .content-box p {
        font-size: 14px;
        margin: 10px 0;
    }
}

/*locations-section-end*/

/*contact-us-sections-start*/
.person-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    row-gap: 20px;
}

@media (max-width: 1400px) {
    .person-box {
        grid-template-columns: repeat(auto-fill, minmax(246px, 1fr));
    }
}

@media (max-width: 576px) {
    .person-box {
        grid-template-columns: 1fr 1fr;
    }
}

.direct-call {
    color: var(--color-text-2);
    text-align: center;
    font-size: 2.14em;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: -1.2px;
}

.person {
    box-shadow: 0 2px 90px -30px var(--primary-color);
    border-radius: 20px;
    background-color: var(--primary-color);
    padding: 85px 30px 45px;
    margin: 100px 20px 23px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 200px;
}

.person .avatar {
    border-radius: 50%;
    width: 148px;
    height: 148px;
    overflow: hidden;
    position: absolute;
    top: -74px;
}

@media (max-width: 768px) {
    .person {
        margin: 50px 10px 0;
        padding: 15px 15px 0;
        min-height: 190px;
    }

    .person .avatar {
        border-radius: 50%;
        width: 78px;
        height: 78px;
        top: -39px;
    }
}

.person .avatar.no-avatar {
    background-image: url("../../images/avatar/avatar.png");
    background-size: 100%;
    background-position: center;
}

.person .name {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.96px;
    height: auto !important;
}

.person .position {
    color: var(--secondary-color);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.8px;
    margin: 10px 0;
}

.person .value {
    background-color: #fff;
    color: var(--color-text-1);
    border-radius: 50px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    width: 100%;
    margin-top: 7px;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .person .name {
        font-size: 15px;
    }

    .person .position {
        font-size: 10px;
    }

    .person .value {
        font-size: 10px;
    }
}

.person .telegram:before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="18" viewBox="0 0 20 18" fill="none"><path d="M1.90891 8.0952L17.2976 1.44458C18.0212 1.13183 18.8054 1.74041 18.682 2.51906L16.5779 15.795C16.448 16.6151 15.4331 16.9287 14.8631 16.325L11.5295 12.7699C10.8523 12.0526 10.7992 10.9488 11.4045 10.1698L13.7232 6.92966C13.8626 6.75029 13.6425 6.51431 13.4538 6.64086L8.60651 9.89269C7.78393 10.4445 6.78586 10.6715 5.80554 10.5297L2.16248 10.0028C1.16449 9.8585 0.98328 8.49523 1.90891 8.0952Z" stroke="%23FDB913" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    line-height: 0;
    margin-right: 10px;
}

.person .phone:before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M16.5521 21.7521C16.0931 21.7521 15.6311 21.6901 15.1751 21.5651C9.01111 19.8731 4.12909 14.9951 2.43609 8.83414C2.05109 7.43314 2.26204 5.97313 3.03204 4.72513C3.80504 3.47113 5.0761 2.58713 6.5191 2.29813C7.4721 2.10713 8.4281 2.53314 8.9151 3.35514L10.4781 5.99411C11.2371 7.27611 10.86 8.92812 9.61896 9.75312L8.4881 10.5051C9.5451 12.6761 11.3229 14.4581 13.4839 15.5141L14.2462 14.3771C15.0752 13.1381 16.7281 12.7671 18.0091 13.5301L20.6522 15.1061C21.4702 15.5941 21.8941 16.5481 21.7071 17.4811C21.4191 18.9241 20.5341 20.1951 19.2811 20.9681C18.4391 21.4871 17.5021 21.7521 16.5521 21.7521ZM6.97809 3.75013C6.92909 3.75013 6.87911 3.75514 6.83111 3.76514C5.77711 3.97614 4.86512 4.61112 4.31012 5.51212C3.76112 6.40212 3.61009 7.44113 3.88409 8.43613C5.43709 14.0901 9.91608 18.5661 15.5721 20.1181C16.5671 20.3911 17.605 20.2391 18.493 19.6911C19.393 19.1361 20.0291 18.2221 20.2361 17.1861C20.2981 16.8751 20.1571 16.5561 19.8841 16.3941L17.241 14.8181C16.643 14.4631 15.876 14.6371 15.492 15.2121L14.377 16.8771C14.177 17.1751 13.7911 17.2891 13.4651 17.1511C10.5021 15.9131 8.09213 13.4961 6.85113 10.5221C6.71313 10.1901 6.82999 9.80813 7.12799 9.60913L8.78912 8.50412C9.36512 8.12112 9.54007 7.35413 9.18707 6.75913L7.62408 4.12012C7.48708 3.88712 7.23909 3.75013 6.97809 3.75013ZM14.869 14.7941H14.879H14.869ZM17.7501 10.0001C17.7501 7.93213 16.0671 6.25013 14.0001 6.25013C13.5861 6.25013 13.2501 6.58613 13.2501 7.00013C13.2501 7.41413 13.5861 7.75013 14.0001 7.75013C15.2401 7.75013 16.2501 8.75913 16.2501 10.0001C16.2501 10.4141 16.5861 10.7501 17.0001 10.7501C17.4141 10.7501 17.7501 10.4141 17.7501 10.0001ZM20.7501 10.0001C20.7501 6.27813 17.7221 3.25013 14.0001 3.25013C13.5861 3.25013 13.2501 3.58613 13.2501 4.00013C13.2501 4.41413 13.5861 4.75013 14.0001 4.75013C16.8951 4.75013 19.2501 7.10513 19.2501 10.0001C19.2501 10.4141 19.5861 10.7501 20.0001 10.7501C20.4141 10.7501 20.7501 10.4141 20.7501 10.0001Z" fill="%23FDB913"/></svg>');
    line-height: 0;
    margin-right: 10px;
}

.person .links {
    display: flex;
    align-content: center;
    justify-content: center;
    position: absolute;
    bottom: -23px;
}

@media (max-width: 768px) {
    .person .links {
        bottom: -11px;
    }
}

.person .links a {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFEDC0;
    margin: 0 10px;
    transition: 0.3s all;
    border: 1px solid transparent;
}

.person .links a:hover {
    box-shadow: 0 6px 25px #FDB913;
}

.person .links a.phone-link:before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M20.651 15.1061L18.0082 13.5301C16.7282 12.7671 15.0742 13.1381 14.2452 14.3771L13.483 15.5141C11.322 14.4581 9.54416 12.6761 8.48716 10.5051L9.61802 9.75312C10.859 8.92812 11.2362 7.27711 10.4772 5.99411L8.91417 3.35514C8.42717 2.53314 7.47017 2.10713 6.51817 2.29813C5.07517 2.58713 3.80411 3.47213 3.03111 4.72513C2.26111 5.97313 2.05116 7.43314 2.43516 8.83414C4.12816 14.9951 9.01018 19.8731 15.1742 21.5651C15.6302 21.6901 16.0921 21.7521 16.5511 21.7521C17.5011 21.7521 18.4391 21.4871 19.2801 20.9681C20.5331 20.1951 21.4182 18.9241 21.7062 17.4811C21.8942 16.5481 21.47 15.5941 20.651 15.1061ZM20.2352 17.1861C20.0282 18.2221 19.392 19.1351 18.492 19.6911C17.604 20.2391 16.5661 20.3911 15.5711 20.1181C9.91515 18.5661 5.43516 14.0891 3.88316 8.43613C3.60916 7.44013 3.76019 6.40212 4.30919 5.51212C4.86519 4.61112 5.77718 3.97614 6.83018 3.76514C6.87918 3.75514 6.92915 3.75013 6.97715 3.75013C7.23915 3.75013 7.48715 3.88711 7.62315 4.11911L9.18614 6.75812C9.53914 7.35312 9.36419 8.12012 8.78819 8.50312L7.12706 9.60813C6.82806 9.80713 6.7122 10.1901 6.8502 10.5211C8.0912 13.4951 10.5012 15.9121 13.4642 17.1501C13.7902 17.2871 14.1761 17.1741 14.3761 16.8761L15.4911 15.2111C15.8761 14.6361 16.6411 14.4621 17.2401 14.8171L19.8832 16.3931C20.1562 16.5571 20.2982 16.8751 20.2352 17.1861ZM14.4701 9.53012C14.1771 9.23712 14.1771 8.76212 14.4701 8.46912L18.19 4.74912H16.6681C16.2541 4.74912 15.9181 4.41312 15.9181 3.99912C15.9181 3.58512 16.2541 3.24912 16.6681 3.24912H20.0001C20.0981 3.24912 20.1952 3.26913 20.2872 3.30713C20.4702 3.38313 20.6172 3.52914 20.6932 3.71314C20.7312 3.80514 20.7511 3.90213 20.7511 4.00013V7.33313C20.7511 7.74713 20.4151 8.08313 20.0011 8.08313C19.5871 8.08313 19.2511 7.74713 19.2511 7.33313V5.81012L15.5311 9.53012C15.3851 9.67612 15.1931 9.75013 15.0011 9.75013C14.8091 9.75013 14.6161 9.67712 14.4701 9.53012Z" fill="%23FDB913"/></svg>');
    line-height: 0;
}

.person .links a.telegram-link:before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M20.4031 9.629L8.99613 2.80701C7.46713 1.89001 5.60011 2.132 4.35111 3.401C3.10911 4.664 2.90197 6.52401 3.83597 8.02801L6.30301 12L3.83597 15.972C2.90097 17.476 3.10811 19.336 4.35111 20.599C5.09411 21.354 6.05495 21.745 7.03495 21.745C7.70095 21.745 8.37713 21.564 8.99613 21.193L20.4031 14.371C21.2471 13.867 21.75 12.98 21.75 12C21.75 11.02 21.2471 10.133 20.4031 9.629ZM19.6341 13.084L8.22708 19.906C7.08808 20.586 6.00293 20.139 5.42093 19.547C4.84493 18.961 4.41714 17.88 5.11014 16.763L7.60306 12.749H13C13.414 12.749 13.75 12.413 13.75 11.999C13.75 11.585 13.414 11.249 13 11.249H7.60306L5.11014 7.23498C4.41714 6.11798 4.84393 5.03699 5.42093 4.45099C5.79493 4.07099 6.37593 3.75 7.04593 3.75C7.41893 3.75 7.81908 3.84899 8.22708 4.09299L19.6341 10.915C20.0201 11.146 20.25 11.551 20.25 11.999C20.25 12.447 20.0201 12.853 19.6341 13.084Z" fill="%23FDB913"/></svg>');
    line-height: 0;
}

@media (max-width: 768px) {
    .person .links a {
        width: 25px;
        height: 25px;
    }

    .person .links a.phone-link:before {
        content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 24 24" fill="none"><path d="M20.651 15.1061L18.0082 13.5301C16.7282 12.7671 15.0742 13.1381 14.2452 14.3771L13.483 15.5141C11.322 14.4581 9.54416 12.6761 8.48716 10.5051L9.61802 9.75312C10.859 8.92812 11.2362 7.27711 10.4772 5.99411L8.91417 3.35514C8.42717 2.53314 7.47017 2.10713 6.51817 2.29813C5.07517 2.58713 3.80411 3.47213 3.03111 4.72513C2.26111 5.97313 2.05116 7.43314 2.43516 8.83414C4.12816 14.9951 9.01018 19.8731 15.1742 21.5651C15.6302 21.6901 16.0921 21.7521 16.5511 21.7521C17.5011 21.7521 18.4391 21.4871 19.2801 20.9681C20.5331 20.1951 21.4182 18.9241 21.7062 17.4811C21.8942 16.5481 21.47 15.5941 20.651 15.1061ZM20.2352 17.1861C20.0282 18.2221 19.392 19.1351 18.492 19.6911C17.604 20.2391 16.5661 20.3911 15.5711 20.1181C9.91515 18.5661 5.43516 14.0891 3.88316 8.43613C3.60916 7.44013 3.76019 6.40212 4.30919 5.51212C4.86519 4.61112 5.77718 3.97614 6.83018 3.76514C6.87918 3.75514 6.92915 3.75013 6.97715 3.75013C7.23915 3.75013 7.48715 3.88711 7.62315 4.11911L9.18614 6.75812C9.53914 7.35312 9.36419 8.12012 8.78819 8.50312L7.12706 9.60813C6.82806 9.80713 6.7122 10.1901 6.8502 10.5211C8.0912 13.4951 10.5012 15.9121 13.4642 17.1501C13.7902 17.2871 14.1761 17.1741 14.3761 16.8761L15.4911 15.2111C15.8761 14.6361 16.6411 14.4621 17.2401 14.8171L19.8832 16.3931C20.1562 16.5571 20.2982 16.8751 20.2352 17.1861ZM14.4701 9.53012C14.1771 9.23712 14.1771 8.76212 14.4701 8.46912L18.19 4.74912H16.6681C16.2541 4.74912 15.9181 4.41312 15.9181 3.99912C15.9181 3.58512 16.2541 3.24912 16.6681 3.24912H20.0001C20.0981 3.24912 20.1952 3.26913 20.2872 3.30713C20.4702 3.38313 20.6172 3.52914 20.6932 3.71314C20.7312 3.80514 20.7511 3.90213 20.7511 4.00013V7.33313C20.7511 7.74713 20.4151 8.08313 20.0011 8.08313C19.5871 8.08313 19.2511 7.74713 19.2511 7.33313V5.81012L15.5311 9.53012C15.3851 9.67612 15.1931 9.75013 15.0011 9.75013C14.8091 9.75013 14.6161 9.67712 14.4701 9.53012Z" fill="%23FDB913"/></svg>');
    }

    .person .links a.telegram-link:before {
        content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 24 24" fill="none"><path d="M20.4031 9.629L8.99613 2.80701C7.46713 1.89001 5.60011 2.132 4.35111 3.401C3.10911 4.664 2.90197 6.52401 3.83597 8.02801L6.30301 12L3.83597 15.972C2.90097 17.476 3.10811 19.336 4.35111 20.599C5.09411 21.354 6.05495 21.745 7.03495 21.745C7.70095 21.745 8.37713 21.564 8.99613 21.193L20.4031 14.371C21.2471 13.867 21.75 12.98 21.75 12C21.75 11.02 21.2471 10.133 20.4031 9.629ZM19.6341 13.084L8.22708 19.906C7.08808 20.586 6.00293 20.139 5.42093 19.547C4.84493 18.961 4.41714 17.88 5.11014 16.763L7.60306 12.749H13C13.414 12.749 13.75 12.413 13.75 11.999C13.75 11.585 13.414 11.249 13 11.249H7.60306L5.11014 7.23498C4.41714 6.11798 4.84393 5.03699 5.42093 4.45099C5.79493 4.07099 6.37593 3.75 7.04593 3.75C7.41893 3.75 7.81908 3.84899 8.22708 4.09299L19.6341 10.915C20.0201 11.146 20.25 11.551 20.25 11.999C20.25 12.447 20.0201 12.853 19.6341 13.084Z" fill="%23FDB913"/></svg>');
    }

    .person .phone:before {
        content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 24 24" fill="none"><path d="M16.5521 21.7521C16.0931 21.7521 15.6311 21.6901 15.1751 21.5651C9.01111 19.8731 4.12909 14.9951 2.43609 8.83414C2.05109 7.43314 2.26204 5.97313 3.03204 4.72513C3.80504 3.47113 5.0761 2.58713 6.5191 2.29813C7.4721 2.10713 8.4281 2.53314 8.9151 3.35514L10.4781 5.99411C11.2371 7.27611 10.86 8.92812 9.61896 9.75312L8.4881 10.5051C9.5451 12.6761 11.3229 14.4581 13.4839 15.5141L14.2462 14.3771C15.0752 13.1381 16.7281 12.7671 18.0091 13.5301L20.6522 15.1061C21.4702 15.5941 21.8941 16.5481 21.7071 17.4811C21.4191 18.9241 20.5341 20.1951 19.2811 20.9681C18.4391 21.4871 17.5021 21.7521 16.5521 21.7521ZM6.97809 3.75013C6.92909 3.75013 6.87911 3.75514 6.83111 3.76514C5.77711 3.97614 4.86512 4.61112 4.31012 5.51212C3.76112 6.40212 3.61009 7.44113 3.88409 8.43613C5.43709 14.0901 9.91608 18.5661 15.5721 20.1181C16.5671 20.3911 17.605 20.2391 18.493 19.6911C19.393 19.1361 20.0291 18.2221 20.2361 17.1861C20.2981 16.8751 20.1571 16.5561 19.8841 16.3941L17.241 14.8181C16.643 14.4631 15.876 14.6371 15.492 15.2121L14.377 16.8771C14.177 17.1751 13.7911 17.2891 13.4651 17.1511C10.5021 15.9131 8.09213 13.4961 6.85113 10.5221C6.71313 10.1901 6.82999 9.80813 7.12799 9.60913L8.78912 8.50412C9.36512 8.12112 9.54007 7.35413 9.18707 6.75913L7.62408 4.12012C7.48708 3.88712 7.23909 3.75013 6.97809 3.75013ZM14.869 14.7941H14.879H14.869ZM17.7501 10.0001C17.7501 7.93213 16.0671 6.25013 14.0001 6.25013C13.5861 6.25013 13.2501 6.58613 13.2501 7.00013C13.2501 7.41413 13.5861 7.75013 14.0001 7.75013C15.2401 7.75013 16.2501 8.75913 16.2501 10.0001C16.2501 10.4141 16.5861 10.7501 17.0001 10.7501C17.4141 10.7501 17.7501 10.4141 17.7501 10.0001ZM20.7501 10.0001C20.7501 6.27813 17.7221 3.25013 14.0001 3.25013C13.5861 3.25013 13.2501 3.58613 13.2501 4.00013C13.2501 4.41413 13.5861 4.75013 14.0001 4.75013C16.8951 4.75013 19.2501 7.10513 19.2501 10.0001C19.2501 10.4141 19.5861 10.7501 20.0001 10.7501C20.4141 10.7501 20.7501 10.4141 20.7501 10.0001Z" fill="%23FDB913"/></svg>');
    }
}

/*contact-us-sections-end*/

.contact-us .person {
    padding-bottom: 70px;
}

    .contact-us .person .value {
        position: absolute;
        bottom: 33px;
        right: 15px;
        left: 15px;
        width: auto;
    }

.locations-section .location-card {
    height: 100%;
}