@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
  font-family: ntt_hiro_font;
  src: url(../fonts/ntt_hiro_font.ttf);
}

@font-face {
  font-family: BeastEnergyPL;
  src: url(../fonts/BeastEnergyPL.ttf);
}


:root {
    --orange-light: #F97F11;
    --orange-dark: #F84203;
    --purple-light: #FF00E5;
    --purple-dark: #AE00FF;
    --blueviolet: #6A00FF;
    --bg-purple: #2F1948;
    --ntt-blue: #0055B8;
    --ntt-lightgray: #F2F6FB;
    --ntt-gray: #DAE6F4;
}
body {
    font-family: 'Inter', sans-serif;
    color: #222;
    background-color: white;
    margin: 0;
    font-size: 1rem;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 0;
}

b {
    font-weight: 600;
}

img {
    max-width: 100%;
}

/* utilities */

.inline-block {
    display: inline-block;
}

.align-bottom {
    align-items: end;
}

.text-center {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.uppercase {
    text-transform: uppercase;
}

.text-white {
    color: white;
}

.btn {
    display: inline-block;
    position: relative;
    padding: 1.25rem 2rem;
    transition: all 200ms ease-in;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #003879;
    color: white!important;
}

.btn.bg-orange-dark:hover {
    background-color: var(--orange-light);
}

.text-orange-light {
    color: var(--orange-light);
}

.text-orange-dark {
    color: var(--orange-dark);
}

.text-purple-light {
    color: var(--purple-light);
}

.text-purple-dark {
    color: var(--purple-dark);
}

.text-blue {
    color: var(--ntt-blue);
}

.bg-orange-light {
    background-color: var(--orange-light);
}

.bg-orange-dark {
    background-color: var(--orange-dark);
}

.bg-purple-light {
    background-color: var(--purple-light);
}

.bg-purple-dark {
    background-color: var(--purple-dark);
}

.bg-blueviolet {
    background-color: var(--blueviolet);
}

.bg-blue {
    background-color: var(--ntt-blue);
}

.bg-gray {
    background-color: var(--ntt-gray);
}

.bg-lightgray {
    background-color: var(--ntt-lightgray);
}

.bg-transparent {
    background-color: transparent;
    border: 2px solid black;
    color: #222;
}

.btn-white {
    color: white;
    border-color: white;
}

.neon-border {
    box-shadow: 0px 0px 20px 3px var(--purple-light);
    border: 1px solid var(--purple-light);
    border-radius: 25px;
}

.blue-heading {
    background-color: var(--ntt-blue);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: -5rem;
    margin-bottom: 3rem;
    font-size: 1.625rem;
    border-radius: 10px;
}

.blue-heading h3 {
    font-weight: 400;
}

/* layout */

nav.container {
    max-width: 1600px;
    padding: 1rem 3rem;
    position: absolute;
    inset: 0;
    z-index: 1;
}

nav img {
    align-self: start;
}

section {
    display: flex;
    flex-direction: column;
}

section > * {
    flex: 1;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: calc(1300px + 6rem);
    padding: 0 3rem;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.container > div {
    flex: 1;
    z-index: 1;
}

/* content */

.hero {
    position: relative;
}

.hero .desktop-heading {
    align-self: stretch;
}

.hero .mobile-heading {
    display:none;
}

.hero .container {
    align-items: center;
    position: absolute;
    inset: 0;
}

.hero .container .hero-content {
    display: flex;
    flex: unset;
    flex-direction: column;
    align-items: start;
    width:50%;
    max-width: 560px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: bold;
    color: var(--ntt-blue);
}

.hero-content h2 {
    margin-top: 0;
    font-size: 2.5rem;
    font-weight: 600;
}

.hero-content div {
    display: flex;
    gap: 1rem;
}

.hero-content .logo {
    max-width: 280px;
}


.hero .container {
    height: 100%;
    max-width: 1600px;
    flex-direction: row;
}

.cards {
    display: flex;
    padding-top: 100px;
    gap: 2rem;
}

.card {
    border: 1px solid var(--ntt-blue);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 33%;
    font-size: 0.925rem;
    background: white;
    padding: 1.875rem;
    margin-bottom: -300px;
}

.card img {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    padding: 0 1rem;
    margin: 0 auto;
    margin-top: -100px;
}

.card h2 {
    margin-bottom:0;
}


.cards span {
    text-align: left;
}

.cards ul {
    padding-left: 1rem;
    text-align: left;
}

.card .btn {
    text-transform: uppercase;
    margin-top: auto;
}

section.computer-info {
    margin-top: 2rem;
}


.level {
    margin-bottom: 2rem;
}

.level-container {
    padding-bottom: 3rem;
}

.level-info {
    display: flex;
    align-items: start;
}

.level-image {
    display: flex;
    flex-shrink: 0;
    width: 50%;
    padding: 0 2rem;
    align-items: center;
}

.level:nth-child(2n) .level-description {
    order: 1;
}

.level:nth-child(2n) .level-image {
    order: 2;
}

.level-image img {
    width: 100%;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 30px;
}

.level-description {
    display: flex;
    width: 50%;
    padding: 0 2rem;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.level-description h3 {
    font-size: 2.4rem;
    margin: 0;
    font-weight: bold;
}

.level-description .feature img {
    background: var(--ntt-blue);
    padding: 0.875rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.level-container .products-container {
    overflow: auto;
}

.level-container .product-image {
    width: 220px;
    height: 220px;
}

.features {
    display: flex;
    margin: 2rem 0;
    justify-content: space-around;
    width: 100%;
}

.feature {
    font-size: 0.8125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 25%;
    word-break: break-word;
    padding: 0 0.8125rem;
}

.feature img {
    transition: all 200ms ease-in;
    height: 75px;
    width: auto;
    margin-bottom: 1rem;
}

section.partner-program .particles-container {
    background-color: var(--ntt-blue);
    color: white;
    padding-bottom: 7rem;
}

section.partner-program .particles-container h1 {
    font-size: 6rem;
    font-weight: bold;
    margin: 4rem 0 0;
}

section.partner-program h1, section.partner-program h3, section.partner-program h4 {
    margin:1rem 0;
}

section.partner-program .info-container {
    align-items: start;
}

section.partner-program .info-container > img {
    padding: 0;
    margin-top: -3rem;
}

section.partner-program .blue-heading {
    background-color: #008CFF;
}

section.partner-program .info-container > div {
    padding-left: 0;
}

section.partner-program .btn {
    margin-top: 2rem;
}

#particles-js {
    position: relative;
}

#particles-js canvas {
    position: absolute;
    top: 0;
}

section.contact {
    
}

.contact h1 {
    font-size: 3rem;
    font-weight: 400;
}

.contact h1 {
    font-size: 3rem;
    font-weight: 400;
}

.contact h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.contact form {
    margin-top: 2rem;
}

.form-item {
    display: flex;
    justify-content: start;
    gap: 2rem;
}

.form-item span:not(.checkmark) {
    text-transform: uppercase;
    padding: 0 1.875rem;
}

.form-item input, .form-item textarea {
    width: 100%;
    padding: 1.875rem;
    border: 1px solid var(--ntt-gray);
    border-radius: 10px;
    margin-bottom: 1.875rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: inherit;
}

.form-item input[type=submit] {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

/* The container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.875rem;
  line-height: 27px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: uppercase;
}

/* Hide the browser's default radio button */
.radio-container input {
  display:none;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
      background-color: transparent;
    border: 1px solid var(--ntt-blue);
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background-color: var(--ntt-blue);
}

.form-feedback {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.03em;
}

.form-feedback.alert-success {
    background: #f0f7ff;
    border: 1px solid #1a6fdb;
    color: #1a6fdb;
}

.form-feedback.alert-danger {
    background: #fff0f0;
    border: 1px solid #d93025;
    color: #d93025;
}

.form-feedback ul {
    margin: 0;
    padding-left: 18px;
}

.form-feedback ul li + li {
    margin-top: 4px;
}

.products-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 3rem;
    padding-top: 120px;
    padding-bottom: 3rem;
}

.products-container::-webkit-scrollbar {
	height: 10px;
}

.products-container::-webkit-scrollbar-thumb {
	background-color: #d9d9d9;
	border-radius: 2px;
}

.products-container::-webkit-scrollbar-track {
	background-color: #f5f5f5;
}

.promo-deals .products-container::-webkit-scrollbar-track {
    background-color: rgba(255, 0, 212, 0.2);
}

.product-wrapper {
    display: flex;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--ntt-blue);
    border-radius: 20px;
    padding: 1.5rem;
    box-sizing: border-box;
}


.product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 230px;
    margin-top: -120px;
    transition: all 200ms ease;
}


.recommended span {
    position: absolute;
    top: 0;
    right: -1rem;
    padding: 0.375rem 0.5rem;
    text-transform: uppercase;
    z-index: 1;
    transform: translate(0, -50%);
    font-size: 0.875rem;
    background-color: #DC143C;
    color: white;
}

.product:hover .product-image {
    border-color: var(--orange-dark);
}

.product-image img {
    width: 100%;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h4 {
    font-weight: 600;
    margin: 1rem 0;
}

.product-info .product-specs {
    font-size: 0.9275rem;
    color: #929292;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.product-info ul {
    padding-left: 2rem;
    font-size: 1rem;
    margin: 0;
}

.product-info ul li {
    margin: 0.5rem 0;
}

.product-info .product-price {
    display: flex;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 1;
    align-items: end;
    color: var(--ntt-blue);
}

.product-info .product-price .gross {
    color: #929292;
    font-size: 1rem;
    font-weight: 400;
}

.product-info .btn {
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    padding: 0.75rem;
    margin-top: 1rem;
}

span.promo {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    padding: 0.3125rem 0.5rem;
    margin-left: -1.5rem;
    background-color: #DC143C;
	color: white;
}

.broken-caption {
    position: absolute;
    background-color: #1a1a1a;
    bottom: -6rem;
    right: 50%;
    translate: 50%;
}

.info-container {
    display: flex;
    align-items: center;
    padding-bottom: 2rem;
}

.info-container > img {
    width: 45%;
    object-fit: cover;
    padding: 4.375rem 0;
}

.info-container > div {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 3rem;
    padding-bottom: 2rem;
}

.info-container .btn:hover {
    color:black!important;
    background:white!important;
    border-color: white;
    filter: drop-shadow(0px 0px 10px white);
}

.info-container h2 {
    margin-top: 0;
}


.footer {
    gap: 2rem;
}

.footer .partners {
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 0 5rem;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    margin: 1rem 0;
}

.author {
    font-size: 0.75rem;
    text-align: center;
}

.author a {
    color: #F8D50D;
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 5rem;
        margin: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    
    body {
        line-height: 1.5;
    }
    
    nav.container {
        position: static;
    }

    nav img {
        align-self: center;
    }
    
    .container {
        max-width: 90%;
        padding-left: 0;
        padding-right: 0;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
        margin: 0;
    }

    h2 span {
        display: block;
        font-size: 12rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    h4 {
        font-weight: 400;
    }
    
    p {
        font-size: 1;
        line-height: 2rem;
    }

    .btn {
        padding: 1.25rem 1rem;
    }
    
    
    .hero {
        margin: 0;
        padding: 0;
    }

    .hero::after {
        margin-bottom: 0;
        height: 250px;
        position: absolute;
        bottom: 0;
    }
    
    .hero .desktop-heading {
        display: none;
    }
    
    .hero .mobile-heading {
        display: block;
    }

    .hero .container {
        position: static;
        text-align: center;
    }

    .hero .container .hero-content {
        width: 100%;
        max-width: 100%;
        align-items: center;
        margin: 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content div {
        flex-direction: column;
    }
    
    .about-us .blue-heading {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        box-sizing: border-box;
        border-radius: unset;
        background-color: var(--ntt-gray);
        color: #222;
        margin-top: 2rem;
    }
    
    .cards {
        flex-wrap: wrap;
        padding-top: 80px;
    }
    
    .card {
        width: 100%;
        margin-bottom: 5rem;
    }
    
    .card .btn {
        margin-top: 2rem;
    }
    
    section.computer-info {
        padding-top: 0;
    }
    
    .computer-info .info-container {
        text-align: center;
    }

    .level {
        margin: 0;
    }
    
    .level-info {
        flex-direction: column;
        padding: 0;
    }
    
    .level-image {
        display: flex;
        justify-content: center;
    }
    
    .level-description {
        align-items: stretch;
        text-align: start;
        width: 100%;
        padding: 0;
        order: 2!important;
    }

    .level-description h3 {
        font-size: 2rem;
        margin-top: 1rem;
    }
    
    .level-image img {
        width: 100%;
        height: auto;
    }

    .level-image {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0;
        order: 1!important;
    }
    
    .broken-caption { 
        position: static;
        translate: none;
    }

    .features {
        flex-wrap: wrap;
    }

    .feature {
        box-sizing: border-box;
        width: 100%;
        padding: 1rem;
    }
    
    .feature h4 {
        font-weight: 600;
    }
    
    .level-description .feature {
        width: 50%;
    }
    
    .product-list {
        width:80%;
        margin: 0 auto;
    }
    
    .products-container {
        display: block;
        overflow: visible;
        padding-top: 0;
    }
    
    .product {
        width: 70vw;
        flex: 0 0 100%;
        align-items: center;
    }
    
    .product-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .pgh-info .container {
        max-width: 100%;
    }
    
    section.partner-program .particles-container h1 {
        font-size: 3rem;
    }
    
    .partner-program {
        margin-top: 4rem;
    }
    
    .partner-program .btn {
        align-self: center;
        margin-top: 3rem;
    }
    
    .info-container {
        flex-direction: column;
        padding-bottom: 6rem;
    }
    
    .info-container h2 {
        font-size: 3rem;
    }

    .info-container > img {
        order: 1;
        width: 100%;
    }

    .info-container > div {
        order: 2;
        padding: 0;
        align-items: stretch;
    }
    
    section.partner-program .blue-heading .feature {
        width: 50%;
    }
    
    .partner-program .info-container {
        padding-bottom: 0;
    }
    
    .form-item {
    flex-wrap: wrap;
}

.form-item span:not(.checkmark) {
    width: 100%;
    text-align: start;
    padding: 0;
}

.radio-container {
    flex-basis: 45%;
    box-sizing: border-box;
    font-size: 1.25rem;
}
    
    
    .tns-outer {
        position: relative;
    }
    
    .tns-controls button {
	position: absolute;
	top: 35%;
	background: var(--ntt-gray);
	border-radius: 50%;
	border: none;
	font-size: 0;
	width: 40px;
	height: 40px;
}

.tns-controls button::before {
	font-size: 40px;
	/* Adjust font size */
	color: white;
	font-weight: 200;
	font-family: Inter, sans-serif;
	/* Use a font that supports arrows */
	position: absolute;
	left: 50%;
	top: 40%;
	transform: translate(-50%, -50%);
}

.tns-controls button[data-controls=prev] {
	left: -12vw;
}

.tns-controls button[data-controls=next] {
	right: -12vw;
}

.tns-controls button[data-controls=prev]::before {
	content: '<';
}

.tns-controls button[data-controls=next]::before {
	content: '>';
}
}

@media (min-width: 1600px) {
    
    nav.container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .container {
        max-width: 1300px;
        padding: 0;
    }
  }
