/* Global > 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: black;
}

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

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

sup {
  font-size: 70%;
}

.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: 7px 20px;
  background-color: #2a7cd0;
  color: #fff;
  line-height: 22px;
  border: 1px #2a7cd0 solid;
  border-radius: 5px;
}

.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;
}

.img-fill-container {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-box {
  width: 60%;
}

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

.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: 100% 35%;
  background-size: 45vw;
  min-height: 675px;
  display: flex;
  align-items: center;
}

.hero-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

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

@media (max-width: 767px) {
  .hero-box h4 {
    font-weight: 300;
    margin-bottom: 30px;
    width: auto;
  }
  .hero-box {
    width: 100%;
  }
}
/* Hero */

/* Section: three-blocks */

#three-blocks {
  --card-min-width: 240px;
  padding: var(--section-space-50) 0;
}

#three-blocks h3 {
  text-align: center;
  margin-bottom: 50px;
}

.cards-row {
  display: grid;
  gap: 100px;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.card-item {
  display: flex;
  flex-direction: column;
}

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

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

/* work-magic */

#work-magic-description {
  padding-top: var(--section-space-50);
  padding-bottom: var(--section-space-50);
  min-height: 920px;
}

#work-magic-description h3 {
  margin-bottom: 50px;
}

.work-magic-description-block {
  display: flex;
}

.work-magic-description-text {
  max-width: 530px;
  padding: 290px 0 200px;
}

.big-laptop{
  position: absolute;
  z-index: 1;
  width: 100%;
  right: 0px;
  max-width: 1600px;
}

@media (max-width: 1560px) {
  .big-laptop{
    max-width: 1150px;
  }
  .work-magic-description-text{
    padding: 290px 0 24px;
  }
  #work-magic-description {
    min-height: unset;
  }
}
@media (max-width: 1300px) {
  .big-laptop{
    max-width: 1150px;
  }
}

@media (max-width: 1200px) {
  .work-magic-description-text {
    max-width: 530px;
    padding: 50px 0;
  }
  #work-magic-description {
    min-height: unset;
    padding-top: 0;
    padding-bottom: 0;
  }
  .big-laptop{
    display: none;
  }
}

@media (max-width: 767px) {
  .work-magic-description-block {
    flex-wrap: wrap;
  }
  .work-magic-description-text {
    width: 100%;
  }
}
/* work-magic */

/* productivity */

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

.productivity-glass-bg {
  background: rgba(255, 255, 255, 0.6);
  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 25px;
}

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

.main-description-text {
  max-width: 700px;
  width: 55%;
}

.main-description-text h2{
  font-size: 52px;
}

.main-description-text h4 {
  font-weight: 400;
  font-size: 20px;
}

.main-description-under-img {
  display: none;
}

.main-description-under-img,
.main-description-under-text {
  padding: 24px;
  border-radius: 12px 12px 0px 0;
}

.main-description-under-img h4,
.main-description-under-text h4 {
  font-weight: 400;
}

.main-description-img{
  width: 45%;
}

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

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

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

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

@media (max-width: 767px) {
  .productivity-block {
    flex-wrap: wrap;
  }
  .main-description-text {
    width: 100%;
  }
  .main-description-img{
    width: 100%;
  }
}

/* productivity */

/* security */

.work-secure-bg {
  position: relative;
  overflow-x: clip;
}

.security-img{
  width: 45%;
}

.work-secure-bg img {
  position: absolute;
  left: -20%;
  top: -20vh;
  z-index: 0;
  width: 130vw;
}

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

.security-glass-bg {
  background: rgba(255, 255, 255, 0.6);
  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 25px;
  position: relative;
  z-index: 1;
}

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

.security-text h4 {
  font-weight: 400;
  font-size: 20px;
}

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

.security-text {
  max-width: 700px;
  font-weight: 400;
  width: 55%;
}

.security-text h2{
  font-size: 52px;
}

@media (max-width: 767px) {
  .security-block img {
    margin: auto;
  }
  .security-block {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .security-text {
    width: 100%;
  }
  .security-img {
    width: 100%;
  }
}

/* security */

/* business-effiency */

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

.work-fast-bg {
  position: relative;
  overflow-x: clip;
}

.work-fast-bg {
  background: #F2F2F2;
}
.work-fast-bg img {
  width: 100vw;
}

.business-effiency-glass-bg {
  background: rgba(255, 255, 255, 0.6);
  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 25px;
  position: relative;
  z-index: 1;
}

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

.business-effiency-text {
  max-width: 700px;
  width: 55%;
}

.business-effiency-text h2{
  font-size: 52px;
}

.business-effiency-text h4 {
  font-weight: 400;
}

.business-effiency-img {
  width: 45%;
}

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

@media (max-width: 767px) {
  .business-effiency-block {
    flex-wrap: wrap;
  }
  .business-effiency-text {
    width: 100%;
  }
  .business-effiency-img {
    width: 100%;
  }
}

/* business-effiency */

/* apps */

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

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

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

.apps-block-text {
  width: 60%;
}

.apps-block-apps {
  display: flex;
  gap: 40px 20px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  width: 40%;
}

.apps-images {
  width: 21%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

/* apps */

/* download-full-kit */

#download-full-kit {
  padding-top: var(--section-space-100);
  padding-bottom: var(--section-space-100);
  background: #ffffff;
}

#download-full-kit h3 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

#download-full-kit h4 {
  text-align: center;
  font-weight: 400;
}

.download-full-kit-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}

.download-full-kit-list {
  display: flex;
  gap: 60px;
  padding-bottom: 20px;
}

.download-full-kit-list ul li {
  padding-bottom: 8px;
}

.download-full-kit-image {
  width: 60%;
}

.download-full-kit-image img {
  width: 100%;
  min-width: 300px;
}

@media (max-width: 767px) {
  .download-full-kit-list {
    flex-direction: column;
    gap: 0;
  }
  .download-full-kit-list ul {
    margin: 0;
  }
  .download-full-kit-block {
    display: flex;
    flex-wrap: wrap;
  }
  .download-full-kit-image {
    width: 100%;
  }
}
/* download full kit */

/* download-assets */

#download-assets {
  position: relative;
  background: #F2F2F2;
}

.download-assets {
  max-width: 768px;
  position: absolute;
  padding: 60px 100px 60px 150px;
  border-radius: 0 0 130px;
  background: rgb(56,38,85);
  background: linear-gradient(105deg, rgba(56,38,85,1) 5%, rgba(130,63,189,1) 50%);
  z-index: 2
}

.download-assets-block {
  color: #fff;
}


@media (max-width: 1200px) {
  .download-assets {
    position: relative;
  }
  .download-assets-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .download-assets {
    padding: 60px 20px;
  }
  .download-assets-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
/* download-assets */

.ai-enhanced{
  padding-top: 20px;
}

.glass-bg-text{
  background: rgba(255, 255, 255, 0.6);
  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;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* 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 p a{
  color: inherit;
  text-decoration: underline;
}
.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: 50px;
}

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

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

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

/* Extras */

/* Extras */
