/* 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;
  --red-color: #FF0000;
}

* {
  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 {
 line-height: 0;
}

.blue-text {
  color: #2A7CD0;
}

/* Various */

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

.content-width {
  width: min(var(--content-width), 100%);
  margin: 0 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;
}

.light-blue-button {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 7px 20px;
  background-color: #A0DDFF;
  color: #000000;
  line-height: 22px;
  border: 1px #A0DDFF solid;
  border-radius: 12px;
}

.black-button {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 7px 20px;
  background-color: #000000;
  color: #ffffff;
  line-height: 22px;
  border: 1px #000000 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;
}

.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{
  max-width: 700px;
  padding-top: 50px;
}

.hero-box-text{
  width: 60%;
  padding-bottom: 100px;
}

.hero-box-content {
  padding: 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-bottom-text{
  max-width: 509px;
  padding-top: 50px;
}

.hero-bottom-text h4{
  color: #2A7CD0;

}

.hero-background {
  background: url("../img/hero-image-bg-color.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto;
  /* background: #ffffff; */
}

.hero-background-laptop {
  background-image: url("../img/hero-image-laptop.png");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 38vw;
  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) {
  .content-width{
    overflow: auto;
  }
  .hero-background-laptop {
    background-image: unset;
  }
}

/* Hero */

/* m365-business-standard */

.m365-business-standard .flex{
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.m365-business-standard-icons img{
  padding-bottom: 20px;
  max-height: 75px;
}

.icons-block {
  width: 110px;
  text-align: center;
}

.icons-block p{
  padding-left: 15px;
  font-weight: 500;
  font-size: 18px;
}

/* m365-business-standard */

/* apps */

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

#apps h2 {
  margin-bottom: 50px;
}

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

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

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

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

@media (max-width: 767px) {
  .apps-block {
    gap: 40px 30px;
  }
  .apps-images {
    width: 107px;
    margin: auto;
  }
}

/* apps */

/* pre-footer */

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

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

.pre-footer-bottom{
  padding-top: 80px;  
}

.pre-footer-bottom p{
  font-size: 12px;
}

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

/* difference section */
.difference-section .flex{
  gap: 54px;
}

/* difference section */

/* efficient processes */
.efficient-processes .efficient-processes-flex{
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.efficient-processes .flex{
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}

.efficient-processes .box-bg-white{
  background: #ffffff;
  padding: 24px 52px;
  -webkit-box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.1); 
  box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.efficient-processes-icons-block{
  width: 110px;
  text-align: center;
}

.efficient-processes-icons-block img{
  padding-bottom: 20px;
  max-height: 75px;
}

.efficient-processes-icons-block p{
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
}

.efficient-processes-flex .flex{
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 25px;
}

@media (max-width: 768px) {
  .efficient-processes-flex{
    flex-wrap: wrap;
  }
}

/* efficient processes */

/* enhance brand */
.enhance-brand-flex{
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 25px;
  display: flex;
}

.enhance-brand-icons-block{
  width: 110px;
  text-align: center;
}

.enhance-brand-icons-block img{
  padding-bottom: 20px;
  max-height: 75px;
}

.enhance-brand-icons-block p{
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
}

.enhance-brand .flex{
  gap: 8px;
}

.enhance-brand .box-bg-white{
  background: #ffffff;
  padding: 24px 52px;
  -webkit-box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.1); 
  box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .enhance-brand-flex{
    flex-wrap: wrap;
  }
}

/* enhance brand */

/* cultivate */
.cultivate .cultivate-flex{
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.cultivate .box-bg-white{
  background: #ffffff;
  padding: 24px 52px;
  -webkit-box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.1); 
  box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.cultivate-flex .flex{
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.flex-icons{
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 25px;
  display: flex;
}

.cultivate-icons-block{
  width: 110px;
  text-align: center;
}

.cultivate-icons-block img{
  padding-bottom: 20px;
  max-height: 75px;
}

.cultivate-icons-block p{
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
}

.cultivate-flex-h{
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.cultivate-inner-flex{
  display: flex;
  gap: 15px;
  justify-content: center;
}

.cultivate-flex-h .flex{
  align-items: center;
}

@media (max-width: 768px) {
  .cultivate-flex, .cultivate-inner-flex{
    flex-wrap: wrap;
  }
}

/* cultivate */

/* defend */

.defend .flex{
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.defend .box-bg-white{
  background: #ffffff;
  padding: 24px 52px;
  -webkit-box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.1); 
  box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.defend-icons-block{
  width: 110px;
  text-align: center;
}

.defend-icons-block img{
  padding-bottom: 20px;
  max-height: 75px;
}

.defend-icons-block p{
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
}

.defend-inner-flex{
  display: flex;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 768px) {
  .defend-flex {
    flex-wrap: wrap;
  }
}

/* defend */

/* copilot */

.copilot .flex{
  gap: 40px;
}

.copilot-text-block{
  width: 75%;
}

.copilot-image-block img{
  max-width: 364px;
}

@media (max-width: 767px) {
  .copilot-text-block{
    width: 100%;
  }
}
/* copilot */

/* difference */
.difference-inner-flex{
  align-items: center;
  padding-bottom: 30px;
}

/* difference */

/* better together */
.better-together{
  background-image: url("../img/bg-img-lines.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.better-together .flex{
  gap: 100px;
}

@media (max-width: 767px) {
  .better-together .flex{
    gap: 30px;
  }
}
/* better together */

/* shop */

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

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

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

.shop-text {
  max-width: 450px;
  padding-top: 60px;
}

.shop-img{
  width: 70%;
}

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


.shop-text h2 {
  color: #fff;
  margin-bottom: 20px;
}

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

/* shop */

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

.four-columns-section .flex{
  gap: 16px;
}

.four-columns-section .four-columns{
  background: #F0F0F0;
  padding: 16px;
}

.four-columns-section .four-columns h4{
  margin-bottom: 0;
}

.w-70px{
  max-width: 70px;
}

/* footer */

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

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

.footer-text p {
  color: #FF00BB;
}

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

/* footer */