/* Hero Section  */

/*.hero-section {
	background: url(/wp-content/uploads/2026/06/hero-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/

.hero-badge {
    margin-bottom: 20px;
    font-size: 11px;
    padding: 10px 25px;
}

section.hero-section {
    border-top: 5px solid var(--dts-secondary);
}

.hero-title {
    font-family: var(--dts-font-inter);
    font-style: normal;
    font-weight: 700;
    color: #FFFFFF;
}

.hero-title .highlight {
    color: var(--dts-secondary);
}

.hero-text {
    font-style: normal;
    font-size: var(--dts-font-large);
    line-height: 1.3em;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 20px;
    font-weight: 300;
    max-width: 500px;
}

.hero-buttons {
    margin-top: 3rem;
}

.hero-stats__item {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 16px;
    /*background: #FFFFFF;*/
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #C3C6D1;
    backdrop-filter: blur(6px);
    border-radius: 12px;
    opacity: 0;
    animation: hero-stats-item-in 0.6s ease forwards;
}

.hero-stats__item:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-stats__item:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-stats__item:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-stats__item:nth-child(4) {
    animation-delay: 0.7s;
}

@keyframes hero-stats-item-in {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-stats__item {
        animation: none;
        opacity: 1;
    }
}

.hero-stats__content h3.hero-stats__title {
    line-height: 1;
    font-size: 20px;
    /*color: #001E40;*/
    color: var(--dts-white-color);
}

.count-up {
    font-variant-numeric: tabular-nums;
}

.hero-stats__content p.hero-stats__description {
    font-size: 14px;
    /*color: var(--dts-text);*/
    color: var(--dts-white-color);
}

.hero-stats__icon {
    line-height: 1;
}

.hero-side {
    padding-block: 2rem;
    display: flex;
    justify-content: center;
}

.status-card {
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 18px;
    margin-block: 1rem;
    opacity: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    animation: status-card-in 0.6s ease forwards;
}

.status-card:hover {
    border-color: var(--dts-hover-color);
    box-shadow: 0 0 0 1px var(--dts-hover-color), 0 0 20px rgba(224, 0, 110, 0.25);
}

.status-card:nth-of-type(2) {
    animation-delay: 0.1s;
}

.status-card:nth-of-type(3) {
    animation-delay: 0.3s;
}

.status-card:nth-of-type(4) {
    animation-delay: 0.5s;
}

.status-card:nth-of-type(5) {
    animation-delay: 0.7s;
}

@keyframes status-card-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .status-card {
        animation: none;
        opacity: 1;
    }
}

.card-status-title {
    font-style: normal;
    font-weight: 400;
    font-size: 0.688rem;
    line-height: 120%;
    letter-spacing: 0.88px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.8rem;
    display: block;
}

.card-current-status {
    font-family: var(--dts-font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 120%;
    color: #FFFFFF;
}

.card-current-status--green {
    color: #4ADE80;
}

.status-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.688rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.8rem;
}

.status-badge--live {
    background: rgba(34, 197, 94, 0.15);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, 0.35);
}

.status-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ADE80;
    animation: status-dot-pulse 1.8s ease-out infinite;
}

@keyframes status-dot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.1rem;
}

.hero-content,
.hero-side {
    flex: 1 1 0;
}

.hero-side-inner {
    position: relative;
    width: 60%;
}

.hero-signal {
    position: absolute;
    top: -10px;
    right: 5px;
    display: flex;
    align-items: flex-end;
    color: #4ADE80;
}

@media (max-width:1024px) {

    .hero-content,
    .hero-side,
    .hero-side-inner {
        width: 100%;
    }
}

/* Address Checker */

.address-checker {
    /*background: url( ../../assets/images/nz-map.png );*/
/*    background: url( ../../assets/images/nz-map.png );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
    background: url(/wp-content/themes/dts/assets/images/network-connect.png);
    background-repeat: no-repeat;
    background-position: left;
    margin-top: 0;
    padding-top: 50px;
}

h2.address-checker__title {
    color: #000;
}

span.highlight {
    color: var(--dts-secondary);
}

.address-checker__header>*,
.address-checker__content-wrap>* {
    flex: 0 0 calc(45% - var(--dts-flex-gap-md));
}

.address-checker__card {
    background: var(--dts-primary);
    border: 0.5px solid #757575;
    border-radius: 33px;
    padding: 2rem 2.5rem;
}

.address-checker__field textarea {
    width: 100%;
    height: 252px;
    background: #FBF7F7;
    border: 0.5px solid #757575;
    border-radius: 12px;
    padding: 1rem;
}

.address-checker__note {
    font-family: var(--dts-font-tretiary);
    font-size: 0.781rem;
    color: var(--dts-white-color);
}

.address-checker__actions {
    margin-top: 1.875rem;
}

ul.address-checker__features {
    list-style: none;
    padding-left: 0;
}

ul.address-checker__features li {
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
}

ul.address-checker__features li:before {
    content: '';
    background-image: url(http://localhost:8080/dts/wp-content/uploads/2026/07/check-dts.png);
    height: 20px;
    width: 20px;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0px, -50%);
}

section.dts-map img {
    width: 100%;
}

/*.address-checker {
    position: relative;
}
.address-checker:before {
    content: "";
    position: absolute;
    background: url(../images/map.png);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 35%;
    opacity: 0.1;
}
.address-checker .container {
    position: relative;
    z-index: 1;
}
.dts-address-input {
    box-sizing: border-box;
    background: #F4F7FF;
    border: 1.5px solid rgba(13, 43, 110, 0.12);
    border-radius: 12px;
    padding: 1rem;
    width: 500px;
}
.address-check-form {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}*/

/* Trusted Carriers  */
.trusted-carriers__header {
    text-align: center;
}

/*.trusted-carriers__title {
	font-weight: 600;
    font-size: 0.75rem;
    line-height: 120%;
    text-align: center;
    letter-spacing: 0.075rem;
}*/
.carrier-logo {
    width: auto;

    max-width: 140px;
    object-fit: contain;
    margin: auto;
}

section.trusted-carriers {
    border-top: 1px solid rgb(13 43 110 / 12%);
    border-bottom: 1px solid rgb(13 43 110 / 12%);
    overflow-x: hidden;
}

.trusted-carriers__logos {
    max-width: 100%;
}

.trusted-carriers__item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex: 0 0 auto;
    box-sizing: border-box;
    background: var(--dts-white-color);
    border: 1px solid rgba(13, 43, 110, 0.12);
    border-radius: 14px;
    padding: 18px 28px;
    font-family: var(--dts-font-syne);
    min-height: 82px;
}

.carrier-name {
    font-family: var(--dts-font-syne);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--dts-primary);
    white-space: nowrap;
}

/* Trusted Carriers Slider  */
.trusted-carriers-slider .slick-track {
    display: flex !important;
    align-items: center;
}

.trusted-carriers-slider .slick-slide {
    padding: 0 14px;
    height: inherit !important;
    display: flex !important;
}

.trusted-carriers-slider .slick-slide>div {
    display: flex;
    width: 100%;
}

/* Business Reliability */
/*.business-reliability__title {
	font-family: var(--dts-font-secondary);
    font-weight: 700;
    font-size: 2.625rem;
    line-height: 3.125rem;
    color: var(--dts-primary-color);
}*/
p.business-reliability__description {
    color: #5A6E8C;
}

.business-reliability__grid {}

.business-reliability__card {}

.business-reliability__card {
    position: relative;
}

.reliability-badge {
    position: relative;
    text-align: center;

}

.business-reliability-inner {
    position: absolute;
    top: 0;
    text-align: center;
    top: 12%;
    padding: 0 50px;
}

.reliability-badge__icon {
    width: 36.5%;
    height: 100%;
}

.business-reliability__card>img {
    width: 100%;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/*.business-reliability__grid .business-reliability__card:nth-child(1):before {
    content: '';
    background-image: url(http://localhost:8080/dts/wp-content/uploads/2026/07/circle-arrow-1.png);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: -5px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.business-reliability__grid .business-reliability__card:nth-child(2):before {
    content: '';
    background-image: url(http://localhost:8080/dts/wp-content/uploads/2026/07/arrow-2.png);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: -5px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.business-reliability__grid .business-reliability__card:nth-child(3):before {
    content: '';
    background-image: url(http://localhost:8080/dts/wp-content/uploads/2026/07/arrow-3.png);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: -5px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.business-reliability__grid .business-reliability__card:nth-child(4):before {
    content: '';
    background-image: url(http://localhost:8080/dts/wp-content/uploads/2026/07/arrow-4.png);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: -5px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}*/


.reliability-badge__circle {
    display: block;
    text-align: center;
}

.business-reliability__card-title {
    font-family: var(--dts-font-secondary);
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #000;
}

.business-reliability__card-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #000;
    margin-top: 0.5rem;
    padding: 0 10px;
}

@media (max-width: 991px) {
    .business-reliability__card {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 560px) {
    .business-reliability__card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Services  */
/*.services-title {
    font-family: var(--dts-font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 2.625rem;
    line-height: 3.125rem;
    color: var(--dts-primary-color);
    margin-bottom: 0;
}*/
.service-features {
    list-style: none;
}

.services-title {
    color: #000;
}

p.services-description {
    max-width: 650px;
    color: var(--dts-text);
}

/*.services-description {
    font-weight: 400;
    font-size: 1.031rem;
    line-height: 1.75rem;
    color: var(--dts-font-subline-color);
    padding-block: 3rem;
}*/
.services-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-icon {
    width: 100%;
    line-height: 1;
    margin-bottom: 10px;
}

.service-card {
    box-sizing: border-box;
    background: var(--dts-white-color);
    border: 1px solid rgb(117 117 117 / 50%);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 0px;
    flex: 1 0 30%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

./*service-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;

  width: 240px;
  height: 180px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 160, 200, 0.35) 0%,
    rgba(255, 160, 200, 0.18) 35%,
    transparent 75%
  );

  filter: blur(45px);
  pointer-events: none;
}*/

.service-card>* {
    flex: 0 0 100%;
}

.service-card-content {
    width: 100%;
}

.services-check-icon {
    width: 20px;

}

.service-card-title {
    font-family: var(--dts-font-secondary);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #0F172A;
    margin-bottom: 10px;

}

p.service-card-description {
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-features li {
    font-weight: 500;
    line-height: 1.25rem;
    margin-block: 0.5rem;
    display: flex;
    align-items: start;
    gap: 0.4rem;
}

.service-link {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: var(--dts-secondary);
    margin-top: 10px;
}

/* DTS Direct  */
.dts-direct-cta__title {
    color: var(--dts-white-color);
}

.dts-direct-cta__text {
    font-weight: 400;
    font-size: var(--dts-font-small);
    line-height: 1.625rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
}

.dts-fom-btn {
    font-size: 0.844rem;
}

.dts-direct-cta-btn {
    margin-top: 50px;
}

.dts-direct-cta-btn a {
    display: inline-block;
}

.dts-direct-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px;
    border-radius: 25px;
}

.dts-direct-cta__inner>* {
    flex: 1;
}

.dts-direct-cta__logo {
    display: flex;
    justify-content: end;
}

/* Browser Mockup (DTS Direct CTA) */
.browser-mockup {
    box-sizing: border-box;
    width: 100%;
    /*max-width: 460px;*/
    max-width: 600px;
    background: linear-gradient(160deg, #0A1633 0%, #14224A 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 20px 45px rgba(3, 10, 30, 0.35);
}

.browser-mockup__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 1rem;
}

.browser-mockup__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.browser-mockup__dot--red {
    background: #FF5F56;
}

.browser-mockup__dot--yellow {
    background: #FFBD2E;
}

.browser-mockup__dot--green {
    background: #27C93F;
}

.browser-mockup__url {
    margin-left: auto;
    font-size: 0.688rem;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.45);
}

.browser-mockup__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dts-open-portal {
    border: 1px solid #fff;
    background: transparent;
}

.dts-fom:after {
    content: '';
    background: url('../../assets/images/arrow-fom.svg');
    width: 16px;
    height: 16px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: sub;
    margin-left: 5px;
}

.dts-open-portal:after {
    content: '';
    background: url('../../assets/images/eb-icon.svg');
    width: 16px;
    height: 16px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: sub;
    margin-left: 5px;
}

.portal-status-row {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    background: linear-gradient(90deg, #14224E 0%, #1E4FAF 100%);
}

.portal-status-row__title {
    font-weight: 700;
    font-size: 0.813rem;
    line-height: 130%;
    color: var(--dts-white-color);
}

.portal-status-row__uptime {
    display: block;
    margin-top: 0.2rem;
    font-weight: 400;
    font-size: 0.719rem;
    color: rgba(255, 255, 255, 0.6);
}

.portal-status-row__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.portal-status-pill {
    display: inline-block;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.594rem;
    letter-spacing: 0.4px;
    padding: 0.3rem 0.6rem;
    border-radius: 100px;
}

.portal-status-pill--active {
    background: rgba(39, 201, 63, 0.18);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, 0.35);
}

.portal-status-pill--monitoring {
    background: rgba(255, 189, 46, 0.18);
    color: #FFBD2E;
    border: 1px solid rgba(255, 189, 46, 0.35);
}

.portal-status-row__arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    line-height: 1;
}

@media (max-width: 767px) {
    .browser-mockup {
        max-width: 100%;
    }
}

/* Services Section  */
.services-section {
    background: url('../../assets/images/services-bg.png');
    background-size: 700px;
    background-position: 100% 10%;
    background-repeat: no-repeat;
}
.dts-direct-cta .portal-status-pill {
    background: rgba(34, 197, 94, 0.1) !important;
    border-radius: 4px;
    color: #fff;
    border-color: rgba(34, 197, 94, 0.1) !important;
}

/* Testimonials  */
.testimonials-title {
    font-family: var(--dts-font-secondary);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 120%;
    color: var(--dts-primary-color);
}

.testimonial-slide .testimonial-card {
    box-sizing: border-box;
    background: var(--dts-white-color);
    border: 2px solid #6a797d61;
    border-radius: 16px;
    /*    padding-inline: 1.5rem;
    padding-block: 1rem;*/
    padding: 1.5rem;
    background: #FFF8FB;
    /* box-shadow: 0px 0px 4px 1px #6a797d52; */
    border-radius: 20px;
}

.testimonial-eclipse img {
    height: 100px;
    margin: auto;
}

.testimonial-slide .testimonial-card {
    margin-top: -24px;
    position: relative;
}

.testimonial-slide .testimonial-card .company-logo {
    margin-top: -30px;
}

.testimonial-slide .testimonial-card .company-logo img {
    margin: auto;
    border-radius: 100%;
    height: 100px;
}

.testimonial-slide .testimonial-card {
    margin-top: -30px;
    position: relative;
    padding-top: 0;
}

.testimonial-author span,
.testimonial-quote {
    /*font-style: italic;*/
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5rem;
    padding-block: 1rem;
    color: #757575;
    /*color: var(--dts-link-color);*/
}

.testimonial-author span {
    text-transform: uppercase;
    display: block;
    height: 75px;
    margin-bottom: 0.5rem;
}

.testimonial-quote {
    height: 145px;
}

.testimonial-author h4 {
    font-family: var(--dts-font-tertiary);
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    margin-block-start: 1rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #222222;
}

/*.testimonial-role {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 120%;
    color: var(--dts-font-subline-color);
}*/
/* Slider  */
/* Slider wrapper */
.testimonials-section {
    overflow-x: hidden;
    /* prevents horizontal scrollbar */
}

/*.testimonials-slider{
    width:100vw;
    margin-left:calc(50% - 60vw);
}*/

.testimonials-slider .slick-list {
    /*overflow:visible;*/
}

.testimonials-slider .slick-track {
    display: flex !important;
}

.testimonials-slider .slick-slide {
    padding: 0 12px;
    height: inherit !important;
    display: flex !important;
}

.testimonials-slider .slick-slide>div {
    height: 100%;
    width: 100%;
    display: flex;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    /*height: 100%;*/
}

.testimonial-rating {
    color: #F1D61E;
    border-radius: 1px;
    border-radius: 1px;
    font-size: 26px;
}

.testimonials-slider .slick-list.draggable {}

/* CTA Business  */

.cta-business {
    background: url(../../assets/images/ready-to-connect.png);
    background-size: cover;
    background-repeat: no-repeat;
}

/*.cta-business {
    background: url( '../images/cta-business-bg.png' );
    background-size: cover;
    background-repeat: no-repeat;
}*/
.cta-business {
    border-radius: 25px;
}

/*.cta-business__title {
    font-family: var(--dts-font-secondary);
    font-weight: 700;
    font-size: 2.875rem;
    line-height: 120%;
    text-align: center;
    color: var(--dts-white-color);
}
.cta-business__subtitle {
    font-weight: 400;
    font-size: 1.063rem;
    line-height: 120%;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
}*/
.cta-business__actions {
    margin-top: 50px;
}

.cta-business__actions a {
    display: inline-block;
}

@media (min-width: 1600px) {

    .testimonial-author span,
    .testimonial-quote {
        font-size: 1.5rem;
    }

    .testimonial-quote {
        height: 185px;
    }

    .testimonial-author h4 {
        font-size: 2.250rem;
    }

    .business-reliability__card-title {
        font-size: 20px;

    }

    .business-reliability__card-text {
        font-size: 18px;

    }


}