* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #000 url('../images/bg_hero.jpg') center top / 100% auto no-repeat;
    color: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
    font-weight: 300;
}


.pt_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.pt_header-block {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pt_text-light {
    color: #fff;
}


.pt_gradient-title {
    background: linear-gradient(90deg, #fff, #9b9b9b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.1;
}


.pt_btn {
    display: inline-block;
    padding: 10px 32px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    border-radius: 34px;
    text-decoration: none;
    transition: 0.25s ease;
    cursor: pointer;
    text-align: center;
}

.pt_btn-primary {
    background: #fff;
    color: #000;
    border: 1px solid #ddd;
}

.pt_btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.pt_btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #ddd;
}

.pt_btn-outline:hover {
    background: #ddd;
    color: #000;
    border-color: #ddd;
}


.pt_card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0E0F0F;
    border-radius: 8px;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pt_card h3 {
    margin-bottom: 16px;
}

.pt_header {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.5);
}

.pt_logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.pt_logo-img {
    height: 42px;
    width: auto;
}

.pt_brand {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}


.pt_nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.pt_nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.pt_nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}

.pt_nav-links a:hover {
    color: #ccc;
}

.pt_mobile-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}


.pt_banner {
    text-align: center;
    padding: 120px 0 100px;
}

.pt_banner h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.pt_banner p {
    font-size: 1.25rem;
    max-width: 780px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

.pt_banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.pt_grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.pt_benefit-icon {
    height: 64px;
    margin-bottom: 10px;
}


.pt_about-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    margin: 80px 0;
}

.pt_about-content {
    flex: 1;
}

.pt_about-img {
    flex: 1;
    text-align: center;
    line-height: 0;
    background: url('../images/img.jpg') center no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pt_about-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
}

.pt_about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.pt_about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.5;
}


.pt_capabilities {
    margin: 80px 0;
}

.pt_section-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 56px;
}

.pt_section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pt_features-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.pt_feature-large {
    flex: 1.2;
    background: #0E0F0F;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pt_feature-large .pt_feature-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.pt_feature-large .pt_feature-icon {
    width: 56px;
}

.pt_feature-large h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

.pt_feature-large p {
    margin: 10px 0 20px;
    flex: 1;
}

.pt_feature-link {
    text-align: right;
    margin-top: 10px;
}

.pt_feature-link a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    border-bottom: 1px solid #ddd;
}

.pt_features-small-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pt_small-card {
    background: #0E0F0F;
    border-radius: 8px;
    padding: 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.2s;
}

.pt_small-card .pt_feature-icon {
    width: 44px;
    margin-bottom: 16px;
}

.pt_small-card h4 {
    line-height: 1.2;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.pt_small-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 16px;
}

.pt_small-card .pt_feature-link {
    text-align: right;
}


.pt_howitworks {
    margin: 100px 0;
}

.pt_hiw-header {
    text-align: center;
    margin-bottom: 56px;
}

.pt_hiw-header h2 {
    font-size: 2.4rem;
    flex: 1;
    margin-bottom: 20px;
}

.pt_hiw-header p {
    flex: 1;
    font-size: 1.05rem;
    opacity: 0.85;
}

.pt_steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pt_step {
    background: #0E0F0F;
    border-radius: 8px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pt_step-icon {
    height: 70px;
    margin-bottom: 20px;
}

.pt_step h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 400;
}


.pt_whyus {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin: 80px 0;
}

.pt_whyus-img {
    flex: 1;
    background: url('../images/img.jpg') center no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 20px;
}

.pt_whyus-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.pt_whyus-content {
    flex: 1;
}

.pt_whyus-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.pt_whyus-list {
    list-style: none;
    margin: 28px 0 32px;
}

.pt_whyus-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.pt_whyus-list li::before {
    content: "✓";
    color: #ddd;
    font-weight: 700;
    font-size: 1.1rem;
}


.pt_cta {
    background: url('../images/bg_cta.jpg') center/cover no-repeat;
    border-radius: 20px;
    margin: 80px 0;
    padding: 70px 40px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pt_cta h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.pt_cta p {
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
}


.pt_footer {
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 60px 0 30px;
    margin-top: 40px;
}

.pt_footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.pt_footer-col {
    min-width: 200px;
    max-width: 220px;
}

.pt_footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pt_footer-logo img {
    height: 40px;
}

.pt_footer-col p {
    max-width: 260px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.pt_footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.pt_footer-links {
    list-style: none;
}

.pt_footer-links li {
    margin-bottom: 10px;
}

.pt_footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.2s;
}

.pt_footer-links a:hover {
    color: #fff;
}

.pt_contact-item {
    margin-bottom: 10px;
    opacity: 0.85;
    font-size: 14px;
}

.pt_footer-bottom {
    border-top: 1px solid #222;
    padding-top: 28px;
    text-align: left;
    font-size: 0.85rem;
    opacity: 0.7;
}



.pt_inner-banner {
    padding: 80px 0 70px;
    text-align: center;
}

.pt_breadcrumbs {
    margin-top: 12px;
}

.pt_breadcrumbs a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.pt_breadcrumbs a:hover {
    color: #fff;
}

.pt_breadcrumbs .pt_sep {
    color: #fff;
    margin: 0 8px;
}

.pt_breadcrumbs span:last-child {
    color: #fff;
}


.pt_contact-info {
    margin-top: -40px;
}

.pt_contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pt_contact-card {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.pt_contact-card img {
    width: 50px;
    margin-bottom: 20px;
}

.pt_contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.pt_contact-card a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.2s;
}

.pt_contact-card a:hover {
    color: #fff;
}

.pt_contact-card p {
    color: #ddd;
    margin: 0;
}


.pt_contact-form-section {
    margin: 80px auto;
}

.pt_form-header {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.pt_form-header h2 {
    font-size: 2.3rem;
    margin-bottom: 16px;
}

.pt_form-header p {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 40px;
}

.pt_form-wrapper {
    max-width: 780px;
    margin: 0 auto;
    background: #0E0F0F;
    border-radius: 20px;
    padding: 48px 40px;
}

.pt_form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.pt_form-field {
    margin-bottom: 20px;
}

.pt_form-wrapper input,
.pt_form-wrapper textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 14px 18px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.pt_form-wrapper input:focus,
.pt_form-wrapper textarea:focus {
    outline: none;
    border-color: #ddd;
}

.pt_form-wrapper button[type="submit"] {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}


.pt_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.pt_modal-content {
    background: #0E0F0F;
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    max-width: 450px;
    margin: 20px;
    border: 1px solid #333;
    animation: pt_fadeIn 0.3s ease;
}

.pt_modal-content img {
    width: 70px;
    margin-bottom: 20px;
}

.pt_modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.pt_modal-content p {
    color: #ddd;
    margin-bottom: 28px;
}

@keyframes pt_fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


@media (max-width: 768px) {
    .pt_contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pt_contact-info {
        margin-top: -20px;
    }

    .pt_form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pt_form-wrapper {
        padding: 30px 24px;
    }

    .pt_modal-content {
        padding: 30px 24px;
    }

    .pt_inner-banner {
        padding: 60px 0 50px;
    }
}


.pt_inner-banner {
    padding: 80px 0 70px;
    text-align: center;
}

.pt_breadcrumbs {
    margin-top: 12px;
}

.pt_breadcrumbs a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.pt_breadcrumbs a:hover {
    color: #fff;
}

.pt_breadcrumbs .pt_sep {
    color: #fff;
    margin: 0 8px;
}

.pt_legal-content {
    margin: 60px 0 80px;
}

.pt_legal-card {
    background: #0E0F0F;
    border-radius: 20px;
    padding: 48px 56px;
}

.pt_legal-header {
    border-bottom: 1px solid #333;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.pt_update-date {
    color: #9b9b9b;
    font-size: 0.9rem;
    margin: 0;
}

.pt_legal-body {
    color: #ddd;
    line-height: 1.7;
}

.pt_legal-body h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 32px 0 16px;
    font-weight: 700;
}

.pt_legal-body h3:first-of-type {
    margin-top: 0;
}

.pt_legal-body p {
    margin-bottom: 16px;
}

.pt_legal-body ul {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.pt_legal-body li {
    margin-bottom: 10px;
}

.pt_legal-body a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.pt_legal-body a:hover {
    opacity: 0.7;
}

.pt_legal-contacts {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
}

.pt_legal-contacts p {
    margin: 8px 0;
}

.pt_cookies-note {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #333;
    font-style: italic;
    color: #9b9b9b;
}


@media (max-width: 768px) {
    .pt_legal-card {
        padding: 30px 24px;
    }

    .pt_legal-body h3 {
        font-size: 1.3rem;
    }

    .pt_inner-banner {
        padding: 60px 0 50px;
    }
}



.pt_inner-banner {
    padding: 80px 0 70px;
    text-align: center;
}

.pt_breadcrumbs {
    margin-top: 12px;
}

.pt_breadcrumbs a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.pt_breadcrumbs a:hover {
    color: #fff;
}

.pt_breadcrumbs .pt_sep {
    color: #fff;
    margin: 0 8px;
}

.pt_breadcrumbs span:last-child {
    color: #fff;
}


.pt_about-main {
    margin: 0px 0 60px;
}

.pt_about-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pt_about-text {
    flex: 1.2;
}

.pt_about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: #fff;
    line-height: 1.2;
}

.pt_about-text p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.pt_about-image {
    flex: 0.9;
}

.pt_about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
}


.pt_stats-section {
    background: #0E0F0F;
    padding: 60px 0;
    margin: 40px 0;
}

.pt_stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pt_stat-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.pt_stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #9b9b9b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 8px;
}

.pt_stat-label {
    color: #aaa;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.pt_stat-divider {
    width: 1px;
    height: 50px;
    background: #333;
}


.pt_values-section {
    margin: 80px 0;
}

.pt_section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.pt_section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.pt_section-head p {
    color: #ccc;
    font-size: 1.1rem;
}

.pt_values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pt_value-card {
    text-align: center;
    padding: 36px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pt_value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pt_value-card img {
    height: 64px;
    margin-bottom: 24px;
}

.pt_value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #fff;
}

.pt_value-card p {
    color: #bbb;
    line-height: 1.6;
}


@media (max-width: 992px) {
    .pt_about-grid {
        flex-direction: column;
        gap: 40px;
    }

    .pt_about-text h2 {
        font-size: 2rem;
    }

    .pt_stats-grid {
        flex-direction: column;
    }

    .pt_stat-divider {
        width: 80%;
        height: 1px;
    }

    .pt_values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pt_value-card {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .pt_inner-banner {
        padding: 60px 0 50px;
    }

    .pt_about-main {
        margin: 50px 0 40px;
    }

    .pt_stat-number {
        font-size: 2.5rem;
    }
}



.pt_inner-banner {
    background: url('images/bg_bread.jpg') center/cover fixed;
    padding: 80px 0 70px;
    text-align: center;
}

.pt_breadcrumbs {
    margin-top: 12px;
}

.pt_breadcrumbs a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.pt_breadcrumbs a:hover {
    color: #fff;
}

.pt_breadcrumbs .pt_sep {
    color: #fff;
    margin: 0 8px;
}

.pt_services-section {
    margin: 70px 0 90px;
}

.pt_section-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 56px;
}

.pt_section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.pt_section-head p {
    color: #ccc;
    font-size: 1.1rem;
}


.pt_services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pt_service-card {
    padding: 32px 28px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.pt_service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pt_service-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.pt_service-header img {
    width: 52px;
}

.pt_service-header h3 {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

.pt_service-card p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pt_service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt_service-list li {
    color: #ccc;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.pt_service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 600;
}


.pt_service-full {
    grid-column: span 2;
}

.pt_service-full-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pt_service-full-content {
    flex: 2;
}

.pt_service-full-link {
    flex: 1;
    text-align: right;
}

.pt_service-full-link .pt_btn {
    white-space: nowrap;
}


@media (max-width: 992px) {
    .pt_services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pt_service-full {
        grid-column: span 1;
    }

    .pt_service-full-inner {
        flex-direction: column;
        text-align: center;
    }

    .pt_service-full-link {
        text-align: center;
        width: 100%;
    }

    .pt_service-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .pt_service-list li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .pt_inner-banner {
        padding: 60px 0 50px;
    }

    .pt_section-head h2 {
        font-size: 1.8rem;
    }

    .pt_service-card {
        padding: 24px 20px;
    }

    .pt_service-header h3 {
        font-size: 1.2rem;
    }

    .pt_service-header img {
        width: 44px;
    }
}




































@media (max-width: 992px) {

    .pt_grid-3,
    .pt_steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pt_features-layout {
        flex-direction: column;
    }

    .pt_features-small-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pt_banner h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .pt_mobile-toggle {
        display: block;
    }

    .pt_nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        background: #0E0F0F;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 32px;
        z-index: 1000;
        transition: 0.3s;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.8);
    }

    .pt_nav.open {
        left: 0;
    }

    .pt_nav-links {
        flex-direction: column;
        gap: 28px;
        margin-bottom: 40px;
    }

    .pt_nav .pt_btn {
        margin-top: 10px;
    }

    .pt_about-wrap,
    .pt_whyus {
        flex-direction: column;
    }

    .pt_features-small-grid {
        grid-template-columns: 1fr;
    }

    .pt_hiw-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pt_footer-inner {
        flex-direction: column;
        gap: 32px;
    }
}

@media(max-width: 520px) {
    .pt_cta h2 {
        font-size: 2rem;
    }

    .pt_whyus-content h2,
    .pt_about-content h2,
    .pt_section-head h2 {
        font-size: 2rem;
    }

    body {
        background-size: inherit;
        background-position: right top;
    }

    .pt_banner {
        padding: 70px 0 70px 0;
    }

    .pt_about-img,
    .pt_whyus-img {
        padding: 25px;
    }

    .pt_banner p {
        font-size: 1rem;
    }

    .pt_banner-buttons {
        gap: 10px;
    }

    .pt_banner h1 {
        font-size: 2.3rem;
    }

    .pt_cta {
        padding: 40px 25px;
    }
}