<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global &gt; Base styles */

:root {
  --section-space-100: 100px;
  --section-space-50: 50px;
  --space-1x: 40px;
  --space-05x: 20px;
  --space-2x: 80px;
  --purple-text-color: #fb2bfc;
  --dark-purple-color: #B746C0;
  --blue-color: #2b7cd0;
  --light-blue-color: #E0EDF5;
  --dark-color: #15161C;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans";
  color: #192134;
}

a {
  text-decoration: none;
  color: inherit;
  color: #2B7CD0;
}

p {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.3;
}

sup {
 font-size: 70%;
}

html {
  scroll-behavior: smooth;
}

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

.gradiant-purple-text {
  color: #5055fa;
  background-image: -webkit-linear-gradient(270deg, #5055fa 40%, #a903c9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Various */

.content-width {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  overflow: auto;
}

.content-extended-width {
  width: min(var(--content-extended-width), 100%);
  margin: 0 auto;
  overflow: auto;
}

.blue-button {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  background-color: #2E49BD;
  color: #fff;
  line-height: 22px;
  border: 1px #2E49BD solid;
  border-radius: 12px;
}

.pink-button {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  padding: 8px 40px;
  background-color: #ffffff;
  color: #242424;
  line-height: 22px;
  border: 1px #fb2bfc solid;
  border-radius: 5px;
}

/* Hero */
.hero-logos {
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}

.hero-box-text{
  width: 60%;
}

.hero-box-content {
  padding: 80px 0 30px;
}

.hero-box h1 {
  margin-bottom: 50px;
  font-weight: 400;
}

.hero-box h2 {
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-box h4 {
  font-weight: 300;
  margin-bottom: 30px;
  width: 80%;
}

.hero-background {
  background-image: url("../img/hero-image-bg-grey.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-background-laptop {
  background-image: url("../img/hero-image-laptop.png");
  background-repeat: no-repeat;
  background-position: right 20%;
  background-size: 55vw;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  color: #15161C;
}

.hero-button img{
  max-width: 40px;
}

@media (max-width: 850px) {
  .hero-background-laptop {
    background-image: unset;
  }
  .hero-box h4{
    width: 100%;
  }
}

/* Hero */

/* Section: two-blocks */

#two-blocks {
  padding: 0 0 var(--section-space-50);
  max-width: 840px;
  float: right;
}

#two-blocks &gt; p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.cards-row {
  display: flex;
  gap: 80px;
  justify-content: space-around;
}

.card-item {
  display: flex;
  flex-direction: column;
  width: 40%;
  max-width: 450px;
}

.card-image-outer {
  display: flex;
  gap: 20px;
  align-items: center;
}

.card-image-outer img{
  max-width: 64px;
  width: 100%;
}

.card-image-outer p{
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0;
}

.card-text {
  flex-grow: 1;
  padding: 10px 0 20px;
  overflow: hidden;
}

.card-text h4 {
  margin: 0 0 15px;
}

@media (max-width: 865px) {
  #two-blocks{
    float: unset;
    max-width: unset;
  }
}

@media (max-width: 767px) {
  .cards-row{
    flex-wrap: wrap;
  }
  .card-item {
    width: 100%;
  }
}

/* work-magic */

#work-magic-description {
  padding-top: var(--section-space-100);
  padding-bottom: var(--section-space-100);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  background-image: url("../img/pink-line-bg.png");
  background-color: #F3F3F3;
}

#work-magic-description h2 {
  margin-bottom: 10px;
  text-align: center;
}

#work-magic-description h4 {
  margin-bottom: 20px;
  text-align: center;
}

.work-magic-button{
  text-align: center;
}

.work-magic-text {
  text-align: center;
  padding-bottom: 10px;
  max-width: 750px;
  margin: auto;
  color: #2E49BD;
  font-weight: 700;
}

.work-magic-glass-bg {
  background: rgba(255, 255, 255, 0.60);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.4px);
  -webkit-backdrop-filter: blur(2.4px);
  border-radius: 12px;
  padding: 100px 50px;
}

@media (min-width: 1910px) {
  #work-magic-description {
    background-image: url("../img/pink-line-bg@2x.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
  }
}
@media (min-width: 1210px) {
  #work-magic-description {
    background-image: url("../img/pink-line-bg@2x.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
  }
}

@media (max-width: 767px) {
  .work-magic-text {
    width: 100%;
  }
  #work-magic-description {
    background-position: 50% 90%;
  }
}
/* work-magic */

/* productivity */

#productivity {
  padding-top: var(--section-space-50);
  padding-bottom: var(--section-space-50);
}

.productivity-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.main-description-text {
  max-width: 400px;
}

.main-description-text h2,
.main-description-text h4 {
  color: #fff;
}

.main-description-img &gt; h4 {
  display: none;
}

.main-description-img {
  text-align: end;
}

.main-description-img img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .productivity-block img {
    margin: auto;
  }
  .productivity-block {
    flex-wrap: wrap;
  }
  .main-description-text {
    max-width: 100%;
  }
  .main-description-text h4 {
    display: none;
  }
  .main-description-img {
    text-align: center;
  }
  .main-description-img &gt; h4 {
    display: block;
    color: #fff;
    margin-top: 50px;
    text-align: left;
  }
}

/* productivity */

/* security */

#security {
  padding-top: var(--section-space-50);
  padding-bottom: var(--section-space-50);
}

.security-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.security-img &gt; h4 {
  display: none;
}

.security-img {
  text-align: end;
}

.security-img img {
  max-width: 100%;
}

.security-text {
  max-width: 400px;
}

@media (max-width: 767px) {
  .security-block img {
    margin: auto;
  }
  .security-block {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .security-text h4 {
    display: none;
  }
  .security-img {
    text-align: center;
  }
  .security-img &gt; h4 {
    display: block;
    margin-top: 50px;
    text-align: left;
  }
  .security-text {
    max-width: 100%;
  }
}

/* security */

/* business-effiency */

#business-effiency {
  padding-top: var(--section-space-50);
  padding-bottom: var(--section-space-50);
}

.business-effiency-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.business-effiency-text {
  max-width: 400px;
}

.business-effiency-text h2,
.business-effiency-text h4 {
  color: #fff;
}

.business-effiency-img &gt; h4 {
  display: none;
}

.business-effiency-img {
  text-align: end;
}

.business-effiency-img img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .business-effiency-block img {
    margin: auto;
  }
  .business-effiency-block {
    flex-wrap: wrap;
  }
  .business-effiency-text {
    max-width: 100%;
  }
  .business-effiency-text h4 {
    display: none;
  }
  .business-effiency-img {
    text-align: center;
  }
  .business-effiency-img &gt; h4 {
    display: block;
    color: #fff;
    margin-top: 50px;
    text-align: left;
  }
}

/* business-effiency */

/* ebook */
#ebook {
  padding-top: var(--section-space-50);
  padding-bottom: 80px;  
  background-image: url("../img/e-book-bg-line.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  margin-bottom: 20px;
}

.ebook-text h3{
  margin-bottom: 30px;
}

.ebook-text p{
  margin-bottom: 50px;
}

.ebook-img img{
  width: 100%;
  max-width: 390px;
}

.ebook-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.ebook-glass-bg {
  background: rgba(255, 255, 255, 0.60);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.4px);
  -webkit-backdrop-filter: blur(2.4px);
  border-radius: 12px;
  padding: 50px;
}

@media (min-width: 1300px) {
  #ebook {
    padding-bottom: 150px;
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .ebook-text {
    max-width: 100%;
  }
  .ebook-block {
    flex-wrap: wrap;
  }
  #ebook {
    padding-bottom: 40px;
    margin-bottom: 0px;
  }
}
@media (max-width: 480px) {
  #ebook {
    padding-bottom: 20px;
  }
}

/* FPO */

#fpo {
  padding-top: 30px;
  padding-bottom: 100px;
  background: #F3F3F3;
}

.fpo-container{
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.fpo-block {
  width: 30%;
  color: #0a0a0a;
}

.fpo-block img{
  width: 100%;
  max-width: 400px;
}

.fpo-block h4{
  margin-bottom: 10px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .fpo-container{
    flex-wrap: wrap;
    justify-content: center;
  }
  .fpo-block {
    width: auto;
  }
}
/* FPO */

/* shop */

#shop {
  padding-top: var(--space-1x);
  padding-bottom: var(--space-1x);
}

#shop &gt; div{
   margin-top: -110px;
}

.shop-block{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.shop-text {
  max-width: 400px;
}

.shop-img{
  width: 70%;
}

.shop-img img{
  width: 100%;
}

.shop-logos{
  display: flex;
  gap: 40px;
  padding-bottom: 40px;
}

.shop-logos img{
  width: 100%;
  max-width: 150px;
}

.shop-logos .windows-logo{
  max-width: 140px;
}

.shop-logos .microsoft-365-logo{
  max-width: 175px;
}

.shop-text h3 {
  margin-bottom: 20px;
  font-size: 46px;  
}

@media (max-width: 1050px) {
  .shop-text{
    padding-top: 80px;
 }
}
@media (max-width: 767px) {
  .shop-block{
    flex-wrap: wrap;
  }
  .shop-text {
    max-width: 100%;
    padding-top: 0;
  }
  #shop &gt; div{
    margin-top: 0;
 }
}

/* shop */

/* sustainability */

#sustainability {
  padding-top: var(--section-space-50);
  padding-bottom: var(--section-space-50);
}

.sustainability-text {
  width: 70%;
}

.sustainability-text h3,
.sustainability-text p {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .sustainability-text {
    width: auto;
  }
}
/* sustainability */

/* work */
#work{
  padding-bottom: var(--section-space-50);
  background: #F8F8F8;
}

.person-with-laptop-bg{
  background-repeat: no-repeat;
  background-position: 83% -48px;
  background-size: 370px;
  background-image: url("../img/work-image.png");
}

.work-block{
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 0 50px;
}

.work-text{
  max-width: 500px;
  padding: 50px 0;
}

.work-text h3{
  margin-bottom: 20px;
}

.work-secure{
  padding: 50px 0 50px;
}

.work-img{
  display: none;
}

.work-img img{
  max-width: 500px;
}

.content-in-white-box{
  background: #ffffff;
  padding: 20px 40px;
}

.content-in-white-box p{
  margin-bottom: 0px;
}

.content-in-white-box__content{
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 1050px) {
  .person-with-laptop-bg{
    background-image: none;
  }
  .work-block{
    padding: 0;
  }
  .work-text{
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  #work{
    padding-bottom: 30px;
  }
}
/* work */

.pink-line-bg-2{
  background-image: url("../img/pink-line-bg-2@2x.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 200px;
  position: absolute;
  width: 100%;
  top: -85px;
}

/* apps */

#apps {
  padding-top: var(--section-space-50);
  padding-bottom: var(--section-space-50);
  background: #F7F6F6;
}

#apps h3 {
  line-height: 50px;
}

.apps-block {
  display: flex;
  gap: 100px;
}

.apps-block-text {
  max-width: 300px;
}

.apps-block-text &gt; p{
  font-size: 20px;
}

.card-image-outer.copilot-apps{
  padding-top: 30px;
}

.card-image-outer.copilot-apps p{
  font-weight: unset;
  font-size: unset;
}

.apps-block-apps {
  display: flex;
  gap: 40px 0;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 50px;
}

.apps-images {
  width: 18%;
  margin: auto;
  text-align: center;
}

.apps-images img {
  padding-bottom: 20px;
  max-height: 75px;
}

.apps-images p {
  padding-left: 10px;
  font-weight: 500;
  font-size: 18px;
}

@media (max-width: 1090px) {
  .apps-block-apps {
    gap: 40px 10px;
  }
  .apps-images {
    width: 107px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .apps-block {
    display: flex;
    flex-wrap: wrap;
  }
  .apps-block-apps {
    gap: 40px 30px;
  }
  .apps-images {
    width: 107px;
    margin: auto;
  }
  .apps-block-text {
    max-width: 100%;
  }
}

/* apps */

/* pre-footer */

#pre-footer{
  padding-top: var(--section-space-50);
  padding-bottom: var(--section-space-50);
  background: #FAFAFA;
}

.pre-footer-block{
  display: flex;
  gap: 30px;
}

.pre-footer-text{
  width: 50%;
}

.pre-footer-text p{
  font-size: 12px;
}
.pre-footer-text ol li::marker{
  padding-right: 10px;
}

.pre-footer-text-list{
  display: flex;
  gap: 15px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .pre-footer-block{
    flex-wrap: wrap;
    gap: 0;
  }
  .pre-footer-text{
    width: 100%;
  }
}
/* pre-footer */

/* footer */

#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #15161C;
}

.footer-text img{
  padding-bottom: 30px;
}

.footer-text p {
  color: #8bbd00;
}

.footer-text a {
  color: inherit;
  text-decoration: underline;
}

.pre-footer-text-list a{
  color: inherit;
  text-decoration: underline;
}

/* footer */

.contoso-logo {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 17px;
}

.laptop-blue-bg{
  padding-top: 60px;
  padding-bottom: 60px;
  background-repeat: no-repeat;
  background-position: 65% 100%;
  background-size: cover;
  background-image: url("../img/laptop-blue-bg.png");
}</pre></body></html>