html,
body {
    font-family: "CiscoSansTT", Arial, sans-serif;
}

.industry-ai-infrastructure-considerations-guide-main-wrapper {
    position: relative;
    overflow: hidden;
    color: #1B1C1D;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 90px;
    background-color: #fff;
}

.page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

a[href],
a[href]:hover,
a[href]:active,
a[href]:visited {
    color: #0070D2;
}

a[href] {
    text-decoration: none !important;
}

a[href]:hover {
    text-decoration: underline !important;
}

a:hover img {
    transform: translate3d(.1em, 0, 0);
    transition: .2s ease;
}

a.primary-cta,
a.primary-cta:link,
a.primary-cta:visited,
a.primary-cta:active {
    background-color: #0070d2;
    border: 1px solid #0070d2;
    border-radius: 99px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 23px 30px;
    text-decoration: none;
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
    cursor: pointer;
    display: inline-block;
}

a.primary-cta:hover {
    background-color: #0060AD;
}

a.secondary-cta,
a.secondary-cta:link,
a.secondary-cta:visited,
a.secondary-cta:active {
    border: 1px solid #0070d2;
    border-radius: 99px;
    color: #0070d2;
    width: 335px;
    height: 56px;
    font-size: 16px;
    font-weight: 500;
    padding-left: 8px;
    padding-right: 8px;
    align-items: center;
    display: flex;
    justify-content: center;
    text-decoration: none;
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
    cursor: pointer;
}

a.secondary-cta:hover {
    color: #0060AD;
    border-color: #0060AD;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 75px;
    background-color: #FFF;
    padding: 0 0 80px 0;
}

.hero-section .content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    text-align: center;
}

.hero-section .content-container h1 {
    color: #1B1C1D;
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 350;
    line-height: 77px;
    letter-spacing: -1px;
}

.hero-section .hero-subtitle-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.hero-section .hero-subtitle-container span {
    color: #00BCEB;
    font-size: 127px;
    font-style: normal;
    font-weight: 100;
    line-height: 86.682px;
    letter-spacing: -1.126px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hero-section .hero-subtitle-container img {
    height: 140px;
}

.hero-section .hero-subtitle-container p {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: .2px;
    text-align: left;
}

.tabbed-component-section {
    padding-bottom: 100px;
    background-color: #FFF;
}

.tabbed-component-section h3 {
    color: #333;
    font-size: 32px;
    font-style: normal;
    font-weight: 350;
    line-height: 42px;
    letter-spacing: .2px;
}

.tabbed-component-section p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 24px;
}

.tabbed-component {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    min-height: 760px;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    box-shadow: 0 2px 16px 0 rgba(27, 28, 29, .08);
}

.tabbed-component .sidebar {
    background: #F4F5F6;
    padding: 0;
    width: 285px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.tabbed-component .sidebar .tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tab-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    width: 100%;
}

.tab-btn {
    width: 285px;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    background-color: #F4F5F6;
    color: #1B1C1D;
    border-left: 4px solid;
    border-left-color: #F4F5F6;
    cursor: pointer;
    transition: background-color .2s ease;
    position: relative;
    z-index: 2;
}

.tab-btn img {
    width: 34px;
    height: 34px;
    margin-left: 50px;
    margin-right: 10px;
}

.tab-btn.active,
.tab-btn:hover {
    opacity: 1;
    transition: background-color .2s ease;
    background-color: #FFF;
    border-left-color: #0070D2;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.separator {
    width: 2px;
    background: #D6D6D6;
    height: 55px;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: opacity .3s;
}

.tab-element:has(.tab-btn.active) .separator {
    opacity: 0;
}

.tab-element:has(.tab-btn.active)~.tab-element {
    opacity: 1;
}

.tab-element .separator {
    opacity: 1;
    visibility: hidden
}

.tab-element:last-child .separator {
    display: none;
}

.content-area {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    background-color: #fff;
    max-height: 760px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box {
    background: #f0f0f0;
    padding: 25px 60px;
    border-radius: 4px;
    min-height: 100px;
}

.box .box-title {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
}

.tabbed-content-icon img {
    width: 34px;
    height: 34px;
}

.title-text {
    font-size: 19px;
    font-weight: 300;
    color: #333;
}

.description {
    font-size: 16px;
    color: #666;
}

.nav-buttons {
    display: none;
    align-items: center;
    padding-top: 20px;
    position: relative;
}

#back {
    padding: 10px 20px;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

#back:hover {
    text-decoration: underline;
}

#back .chevron-icon {
    margin-right: 5px;
}

#next {
    padding: 10px 20px;
    border: none;
    background: #3498db;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#next:hover {
    background: #2980b9;
}

.mobile-chevron {
    display: none;
    width: 12px;
    height: 12px;
    transition: transform .3s ease;
}

@media (max-width:768px) {
    .tabbed-component {
        width: 100%;
        flex-direction: column;
        min-height: unset
    }

    .tabbed-component .sidebar {
        width: 100%;
        padding: 0;
        background: none
    }

    .tabbed-component .sidebar .line,
    .separator {
        display: none
    }

    .tabbed-component .sidebar .tabs {
        width: 100%;
        gap: 0
    }

    .tab-element {
        margin-bottom: 0;
        gap: 0;
        width: 100%;
        position: relative
    }

    .tab-element .tab-content {
        position: relative;
        width: 100%;
        margin-top: 1px
    }

    .tab-btn {
        width: 100%;
        height: 100px;
        background: #FFF;
        border-radius: 0;
        padding: 15px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        opacity: 1;
        position: relative;
        border-top: 1px solid #D6D6D6;
        border-bottom: 1px solid #D6D6D6;
        border-left: none
    }

    .tab-btn::before {
        display: none
    }

    .tab-btn::after {
        content: attr(data-title);
        position: static;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        margin: 0 auto
    }

    .tab-btn img {
        margin-left: 25px
    }

    .mobile-chevron {
        display: block;
        position: absolute;
        right: 15px;
        top: calc(50% - 10px);
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
        transition: transform .3s ease
    }

    .tab-btn .mobile-chevron {
        transform: rotate(0deg)
    }

    .tab-btn.active .mobile-chevron {
        transform: rotate(90deg)
    }

    .content-area {
        padding: 0
    }

    .tab-content {
        display: none;
        overflow: hidden;
        max-height: 0;
        transition: max-height .3s ease-out
    }

    .tab-content.active {
        display: block;
        max-height: 2000px
    }

    .boxes {
        padding: 20px 15px
    }

    .boxes .box-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .box-title,
    .description {
        padding: 0 20px
    }

    .nav-buttons {
        position: sticky;
        bottom: 0;
        padding: 10px;
        display: none !important
    }

    .mobile-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        margin-bottom: 20px
    }

    .mobile-nav #back,
    .mobile-nav [id^="back-"] {
        color: #3498db;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 4px
    }

    .mobile-nav #next,
    .mobile-nav [id^="next-"] {
        background: #3498db;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer
    }

    .mobile-nav #next:hover,
    .mobile-nav [id^="next-"]:hover {
        background: #2980b9
    }
}

.outcomeInnerTab {
    padding: 35px 60px;
    min-width: 850px;
}

.outcomeInnerTab-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
    min-width: 850px;
}

.outcomeInnerTab-button {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.outcomeInnerTab-button-active {
    border-bottom: 2px solid #007bff;
    color: #007bff;
}

.outcomeInnerTab-panel {
    display: none;
}

.outcomeInnerTab-panel-active {
    display: block;
}

.outcomeInnerTab-panel .tiles-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 45px;
}

.outcomeInnerTab-panel .tile {
    max-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
}

.outcomeInnerTab-panel .tile img {
    padding: 90px 0 45px 0;
    margin-bottom: 40px;
    border-bottom: 2px solid #D6D6D6;
    width: 270px;
    height: 277px;
}

.outcomeInnerTab-panel .tile span {
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.outcomeInnerTab-panel .tile p {
    color: #1B1C1D;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 24px;
}

.outcomeInnerTab-panel-active .single-tile {
    display: block;
}

.outcomeInnerTab-panel-active .single-tile .tile {
    max-width: 100%;
}

.outcomeInnerTab-panel-active .single-tile .tile img {
    width: 100%;
    height: 500px;
}

.outcomeInnerTab-panel-active .double-tile .tile {
    max-width: unset;
    width: 50%;
}

.outcomeInnerTab-panel-active .double-tile .tile img {
    width: 100%;
    height: 430px;
}

@media (max-width:768px) {
    .outcomeInnerTab {
        padding: 50px 0;
        min-width: unset
    }

    .outcomeInnerTab-nav {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        min-width: unset
    }

    .outcomeInnerTab-nav::-webkit-scrollbar {
        display: none
    }

    .outcomeInnerTab-button {
        display: inline-block;
        white-space: nowrap
    }

    .outcomeInnerTab-panel .tiles-container {
        flex-direction: column;
        align-items: center;
        gap: 30px
    }

    .outcomeInnerTab-panel .tile {
        max-width: unset;
        width: 100%
    }

    .outcomeInnerTab-panel-active .double-tile .tile {
        max-width: unset;
        width: 100%
    }

    .outcomeInnerTab-panel .tile img {
        margin: 0 auto;
        border-bottom: none;
        padding: 45px 0;
        width: 100%;
        height: 277px
    }

    .outcomeInnerTab-content {
        padding: 50px 30px
    }
}

.comparison-guide-section {
    padding: 120px 0;
    background-color: #051427;
    color: #FFF;
    background-image: url(../images/comparison-bg-img.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-guide-section .content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    width: 60%;
    margin: auto 0;
}

.comparison-guide-section .content-container h3 {
    color: #FFF;
    font-size: 52px;
    font-style: normal;
    font-weight: 350;
    line-height: 62px
}

.comparison-guide-section .content-container p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 350;
    line-height: 28px;
    width: 90%;
}

.data-center-customer-section {
    padding: 100px 0;
}

.customer-card-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4%;
    margin-top: 50px;
}

.data-center-customer-section h3 {
    color: #333;
    text-align: center;
    font-size: 53px;
    font-style: normal;
    font-weight: 350;
    line-height: 72px;
    letter-spacing: -1px;
}

.customer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.customer-card .card-image {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
}

.customer-card .card-image img {
    max-width: 200px;
}

.customer-card .card-content span {
    color: #1B1C1D;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.customer-card .card-content p {
    color: #1B1C1D;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    margin-top: 15px;
}

.guidance-section .page-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 80px;
}

.guidance-section .page-wrapper .content-container,
.guidance-section .page-wrapper .image-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    margin-right: 100px;
}

.guidance-section .page-wrapper .image-container img {
    max-width: 235px;
}

.guidance-section .page-wrapper .content-container .row-one,
.guidance-section .page-wrapper .content-container .row-two {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: start;
    gap: 75px;
    border-left: 1px solid #D6D6D6;
    padding-left: 65px;
}

.guidance-section .page-wrapper .content-container .row-one .content-wrapper,
.guidance-section .page-wrapper .content-container .row-two .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 370px;
}

.guidance-section .page-wrapper .content-container .row-one .content-wrapper span,
.guidance-section .page-wrapper .content-container .row-two .content-wrapper span {
    color: #1B1C1D;
    font-size: 20px;
    font-style: normal;
    font-weight: 350;
    line-height: 28px;
}

.guidance-section .page-wrapper .content-container .row-one .content-wrapper p,
.guidance-section .page-wrapper .content-container .row-two .content-wrapper p {
    color: #1B1C1D;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 24px;
    margin-top: 25px;
}

.guidance-section .page-wrapper .image-container span {
    color: #1B1C1D;
    font-size: 32px;
    font-style: normal;
    font-weight: 350;
    line-height: 40px;
    max-width: 234px;
}

.tn_reveal {
    opacity: 0;
    transition: all 1000ms 100ms;
}

.tn_reveal.tn_active {
    opacity: 1;
    transform: translate(0, 0);
}

.tn_fade-bottom {
    transform: translateY(80px);
}

.tn_fade-left {
    transform: translateX(-80px);
}

.tn_fade-right {
    transform: translateX(80px);
}

.tn_animation-delay-100 {
    transition: all 1000ms 100ms;
}

.tn_animation-delay-200 {
    transition: all 1000ms 200ms;
}

.tn_animation-delay-300 {
    transition: all 1000ms 300ms;
}

.tn_animation-delay-400 {
    transition: all 1000ms 400ms;
}

.tn_animation-delay-500 {
    transition: all 1000ms 500ms;
}

.tn_animation-delay-700 {
    transition: all 1000ms 700ms;
}

.tn_animation-delay-1100 {
    transition: all 1000ms 1100ms;
}

@media (max-width:1300px) {
    .customer-card-container {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin: 0 auto
    }

    .customer-card .card-image {
        align-items: flex-end
    }
}

@media (max-width:1200px) {
    .page-wrapper {
        padding-left: 5%;
        padding-right: 5%
    }

    .hero-section .img-container img {
        margin-left: 0
    }

    .comparison-guide-section .content-container {
        width: 60%
    }

    .guidance-section .page-wrapper {
        flex-direction: column;
        gap: 70px;
        padding-top: 0
    }

    .guidance-section .page-wrapper .image-container {
        width: 350px
    }

    .guidance-section .page-wrapper .content-container,
    .guidance-section .page-wrapper .image-container {
        margin-right: 0
    }

    .guidance-section .page-wrapper .content-container .row-one,
    .guidance-section .page-wrapper .content-container .row-two {
        flex-direction: column;
        border-left: unset;
        padding-left: 0
    }
}

@media (max-width:1024px) {
    .features-card-container h3 {
        text-align: center
    }

    .features-card-container .cards-container {
        padding: 0 30px
    }

    .features-card-container .cards-container .row-one,
    .features-card-container .cards-container .row-two {
        flex-direction: column;
        align-items: center
    }

    .features-card-container .cards-container .row-one .card-one,
    .features-card-container .cards-container .row-one .card-two,
    .features-card-container .cards-container .row-two .card-one,
    .features-card-container .cards-container .row-two .card-two {
        width: 100%
    }

    .features-card-card .title-container {
        flex-direction: column;
        align-items: center
    }

    .features-card-card .card-content {
        text-align: center
    }
}

@media (max-width:992px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-bottom: unset;
        padding-left: 0;
        padding-right: 0;
        gap: 25px;
        padding-bottom: 45px
    }

    .hero-section .img-container {
        width: 100%;
        text-align: center
    }

    .hero-section .img-container img {
        width: 100%
    }

    .hero-section .content-container {
        padding-left: 5%;
        padding-right: 5%;
        align-items: center;
        text-align: center;
        margin-top: 0
    }

    .hero-card-container {
        flex-direction: column;
        padding: 0 30px
    }

    .hero-card {
        margin-bottom: 30px
    }

    .hero-card span:first-child {
        font-size: 60px
    }

    .hero-card-container {
        gap: 10%
    }

    .hero-section .hero-subtitle-container {
        flex-direction: column;
        align-items: center;
        gap: 30px
    }

    .hero-section .hero-subtitle-container p {
        text-align: center
    }

    .separator-section {
        display: none
    }

    .comparison-guide-section {
        background-image: unset
    }

    .comparison-guide-section .content-container {
        align-items: center;
        width: unset;
        margin: 0 auto
    }

    .comparison-guide-section .content-container h3 {
        text-align: center
    }

    .comparison-guide-section .content-container p {
        width: 100%;
        text-align: center
    }

    .guidance-section .page-wrapper {
        flex-direction: column;
        gap: 50px
    }

    .guidance-section .page-wrapper .content-container .row-one,
    .guidance-section .page-wrapper .content-container .row-two {
        flex-direction: column;
        gap: 35px
    }

    .guidance-section .page-wrapper .image-container {
        gap: 25px
    }
}

@media (max-width:768px) {

    .tn_animation-delay-100,
    .tn_animation-delay-200,
    .tn_animation-delay-300,
    .tn_animation-delay-400,
    .tn_animation-delay-500,
    .tn_animation-delay-700,
    .tn_animation-delay-1100 {
        transition: all 1000ms 100ms
    }

    .industry-ai-infrastructure-considerations-guide-main-wrapper {
        padding-top: 35px
    }

    .hero-section .content-container h1 {
        color: #1B1C1D;
        text-align: center;
        font-size: 32px;
        font-style: normal;
        font-weight: 350;
        line-height: 40px
    }

    .hero-section .hero-subtitle-container img {
        max-width: 45px;
        margin-right: 15px;
        height: 90px
    }

    .hero-section .hero-subtitle-container span {
        color: #00BCEB;
        font-size: 67px;
        font-style: normal;
        font-weight: 250;
        line-height: 86.682px;
        letter-spacing: -1.126px
    }

    .hero-section .hero-subtitle-container p {
        color: #1B1C1D;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 350;
        line-height: 24px
    }

    .features-card-container .cards-container .row-one .card-one,
    .features-card-container .cards-container .row-one .card-two,
    .features-card-container .cards-container .row-two .card-one,
    .features-card-container .cards-container .row-two .card-two {
        height: auto
    }

    .transform-content h3 {
        font-size: 32px;
        font-style: normal;
        font-weight: 350;
        line-height: 40px
    }

    .transform-content p {
        font-size: 20px;
        font-style: normal;
        font-weight: 350;
        line-height: 28px
    }

    .routed-content-container .row-one,
    .routed-content-container .row-two {
        flex-direction: column-reverse;
        gap: 50px
    }

    .routed-content-container .row-one .content h3,
    .routed-content-container .row-two .content h3 {
        font-size: 20px;
        font-style: normal;
        font-weight: 350;
        line-height: 28px
    }

    .routed-content-container .row-one .content p,
    .routed-content-container .row-two .content p {
        font-size: 16px;
        font-style: normal;
        font-weight: 350;
        line-height: 24px
    }

    .routed-content-container .row-one img,
    .routed-content-container .row-two img {
        max-width: unset;
        width: 100%
    }

    .routed-section {
        padding: 70px 0 100px 0
    }

    .routed-content-container .row-three h3 {
        font-size: 32px;
        font-style: normal;
        font-weight: 350;
        line-height: 40px
    }

    .routed-content-container .row-three span {
        font-size: 16px;
        font-style: normal;
        font-weight: 350;
        line-height: 24px
    }

    @media (max-width:390px) {
        .guidance-section .page-wrapper .image-container {
            width: 100%
        }
    }
}