*{
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  margin: 0px;
  padding: 0px;
}

body .container{
  position: relative;
  margin: 340px;
  }

.content{
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
}

.heading{
  font-size: 64px;
  line-height: 72px;
  font-weight: 600;
  margin-bottom: 32px;
}

.subheading{
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  width: 446px;
  margin-bottom: 48px;
}

.container-button{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
}

.mds-button-large{
  padding: 14px 22px;
  border: none;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  display: inline-block;
  border-radius: 12px;
  font-weight: 600;
  outline: none;
}

.mds-button-primary{
  background-color: #0B63F4;
  color: #fff;
}

.mds-button-primary:hover{
  background-color: #0954CD;
}

.mds-button-primary:focus{
  border: none;
  outline: none;
}

.mds-button-secondary{
  background-color: #fff;
  color: #222;
  border: 1px solid #D5D5D5;
}

.mds-button-secondary:hover{
  background-color: #F8F8F8;
}

.mds-button-secondary:focus{
  border: 1px solid #D5D5D5;
  outline: none;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
  .container {
    padding: 0px;
    width: 50%;
  }
}