/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@font-face {
  font-family: 'PPEditorialNew';
  src: url('font/Editorial\ New\ Ultralight\ 200.ttf');
}

* {
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.first-section {
  font-family: 'PPEditorialNew', sans-serif;
  font-size: calc(120px + (480 - 120) * ((100vw - 300px) / (1920 - 300)));
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.small-header {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: sticky;
  z-index: 1;
}

body.is-open .small-header {
  position: fixed;
}

body.is-open #bfflogo path {
  fill: white;
}

body.is-open {
  overflow: hidden;
}

.bff-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33%;
  z-index: 1;
}

.bff {
  width: 100px;
}

li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a {
  text-decoration: none;
  color: black;
}

.primary-text-container {
  background-image: url('./images/Group\ 1\ \(2\).png');
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.primary-text {
  text-align: center;
  line-height: 330px;
}

.header-menu {
  font-family: 'Inter';
  font-size: calc(20px + (24 - 20) * ((100vw - 1200px) / (1920 - 1200)));
}

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  max-width: 40%;
  margin-left: 60%;
}

.container-burger {
  display: none;
}

.mobile-menu {
  display: none;
}

.button-container {
  width: 33%;
  display: none;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.button-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  border-radius: 50px;
  max-width: 280px;
  height: 60px;
  font-family: 'Inter';
  font-size: calc(16px + (24 - 16) * ((100vw - 300px) / (1920 - 300)));
  background-color: #E8FDC5;
  border: none;
  padding: 35px 20px;
  cursor: pointer;
}

.toggler {
  /* ALWAYS KEEPING THE TOGGLER OR THE CHECKBOX ON TOP OF EVERYTHING :  */
  z-index: 2;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 10px;
  right: 0;
  cursor: pointer;
  opacity: 0;
  display: none;
}

.hamburger {
  position: absolute;
  top: 20px;
  right: 10px;
  height: 40px;
  width: 40px;
  padding: 0.6rem;

  /* FOR DISPLAYING EVERY ELEMENT IN THE CENTER : */

  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* CREATING THE MIDDLE LINE OF THE HAMBURGER : */

.hamburger>div {
  position: relative;
  top: 0px;
  right: 0;
  background: white;
  height: 2px;
  width: 60%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
}

/* CREATING THE TOP AND BOTTOM LINES : 
TOP AT -10PX ABOVE THE MIDDLE ONE AND BOTTOM ONE IS 10PX BELOW THE MIDDLE: */

.hamburger>div::before,
.hamburger>div::after {
  content: '';
  position: absolute;
  top: -10px;
  background: white;
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
}

.hamburger>div::after {
  top: 10px;
}

/* IF THE TOGGLER IS IN ITS CHECKED STATE, THEN SETTING THE BACKGROUND OF THE MIDDLE LAYER TO COMPLETE BLACK AND OPAQUE :  */

.toggler:checked+.hamburger>div {
  background: rgba(0, 0, 0, 0);
}

.toggler:checked+.hamburger>div::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: black;
}

/* AND ROTATING THE TOP AND BOTTOM LINES :  */

.toggler:checked+.hamburger>div::after {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  background: black;
}


/* MAIN MENU WITH THE WHITE BACKGROUND AND THE TEXT :  */

.menu {
  width: 0%;
  height: 100vh;
  display: none;

  /* APPLYING TRANSITION TO THE MENU :  */

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;
}

/* IF THE TOGGLER IS CHECKED, THEN INCREASE THE WIDTH OF THE MENU TO 30% , CREATING A SMOOTH EFFECT :  */

.toggler:checked~.menu {
  width: 30%;
}


/* STYLING THE LIST :  */

.menu>div>ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 70px;
  padding-left: 10px;

  /* HIDDEN INITIALLY  :  */

  visibility: hidden;
}

.menu>div>ul>li {
  list-style: none;
  padding: 0.5rem;
}

.menu>div>ul>li>a {
  color: black;
  text-decoration: none;
  font-size: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* WHEN THE TOGGLER IS CHECKED, CHANGE THE VISIBILITY TO VISIBLE :  */

.toggler:checked~.menu>div>ul {
  -webkit-transition: visibility 0.4s ease;
  -o-transition: visibility 0.4s ease;
  transition: visibility 0.4s ease;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  visibility: visible;
}

.toggler:checked~.menu>div>ul>li>a:hover {
  color: orange;
}

.blog-section2 {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(132, 206, 113, 0.60);
}

.titulo2-blog {
  font-family: 'PPEditorialNew', sans-serif;
  font-size: calc(40px + (64 - 40) * ((100vw - 1200px) / (1920 - 1200)));
  letter-spacing: -2.56px;
}

.text-blog {
  padding: 3%;
}

.date {
  font-family: 'Inter';
  font-size: calc(16px + (24 - 16) * ((100vw - 1200px) / (1920 - 1200)));
  letter-spacing: -0.96px;
  margin-bottom: 6%;
}

.par2-blog {
  font-family: 'Inter';
  font-size: calc(20px + (32 - 20) * ((100vw - 1200px) / (1920 - 1200)));
  letter-spacing: -1.28px;
  max-width: 95%;
}

.blog2-button-container {
  height: 15%;
  margin-top: 10%
}

.blog2-button {
  max-width: 18%;
  height: 50%;
  font-size: calc(16px + (20 - 16) * ((100vw - 1200px) / (1920 - 1200)));
  background-color: #E8FDC5;
  border: none;
  border-radius: 50px;
  letter-spacing: -0.4px;
  cursor: pointer;
}

.blog2-img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog2-image {
  background-image: url('./images/andysautu_modern_oil_painting_video_video_conference_meeting__i_3c4b093e-4425-4246-8b1a-0c09e1bd853f\ \(2\).png');
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: top;
  margin-top: 5.5%;
  min-height: 90%;
}

.blog2-image-text {
  font-family: 'Inter';
  font-size: calc(11px + (20 - 11) * ((100vw - 1200px) / (1920 - 1200)));
  margin-left: 5%;
  letter-spacing: -0.8px;
}

.blog-section3 {
  height: 100vh;
  margin-bottom: 10%;
}

.blog3-title {
  font-family: 'PPEditorialNew', sans-serif;
  font-size: calc(40px + (64 - 40) * ((100vw - 1200px) / (1920 - 1200)));
  margin-top: 2%;
  padding-left: 2%;
  letter-spacing: -2.56px;
}

.blog3-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (1fr)[3];
  grid-template-rows: repeat(3, 1fr);
}

.blog3-grid>*:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.blog3-grid>*:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.blog3-grid>*:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.blog3-grid>*:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}

.blog3-grid>*:nth-child(5) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

.blog3-grid>*:nth-child(6) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

.blog3-grid>*:nth-child(7) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}

.blog3-grid>*:nth-child(8) {
  -ms-grid-row: 2;
  -ms-grid-column: 4;
}

.blog3-grid>*:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.blog3-grid>*:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}

.blog3-grid>*:nth-child(11) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.blog3-grid>*:nth-child(12) {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
}

.bgrid {
  padding: 8%;
  border-radius: 3%;
  margin-bottom: 5%;
}

.bgrid:hover {
  background-color: #E8FDC5;

}

.bgrid-title {
  font-family: 'PPEditorialNew', sans-serif;
  font-size: calc(20px + (32 - 20) * ((100vw - 1200px) / (1920 - 1200)));
  margin-bottom: 3%;
  letter-spacing: -1.28px;
}

.bgrid-date {
  font-family: 'Inter';
  font-size: calc(12px + (16 - 12) * ((100vw - 1200px) / (1920 - 1200)));
  margin-bottom: 5%;
}

.bgrid-text {
  font-family: 'Inter';
  font-size: calc(12px + (16 - 12) * ((100vw - 1200px) / (1920 - 1200)));
  max-width: 100%;
  letter-spacing: -0.64px;
}

.blog-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 15%;
}

.blog-button {
  font-family: 'Inter';
  letter-spacing: -0.4px;
  font-size: calc(16px + (20 - 16) * ((100vw - 1200px) / (1920 - 1200)));
  max-width: 8%;
  height: 50%;
  border-radius: 50px;
  border: none;
  background-color: #E8FDC5;
  margin-bottom: 2%;
  cursor: pointer;
}

footer {
  background-color: #E8FDC5;
}

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Inter';
  height: 400px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

}

.footer-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-list1 {
  font-size: calc(12px + (20 - 12) * ((100vw - 300px) / (1920 - 300)));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 30px;
  line-height: 163%;
}

.footer-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.footer-list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: calc(12px + (20 - 12) * ((100vw - 300px) / (1920 - 300)));
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: right;
  margin-right: 30px;
  line-height: 163%;
}

.San-francisco {
  font-size: calc(7px + (11 - 7) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
}

.Best-friend {
  margin-top: 10px;
  font-family: 'PPEditorialNew', sans-serif;
  font-size: calc(26px + (42 - 26) * ((100vw - 300px) / (1920 - 300)));
  line-height: 40px;
  line-height: 93.5%;
  letter-spacing: 0.419px;
}

a {
  text-decoration: none;
  color: black;
}

.footer-last {
  font-family: 'Inter';
  font-size: calc(10px + (15 - 10) * ((100vw - 300px) / (1920 - 300)));
  text-align: center;
  padding-bottom: 20px;
}

.footer2-container {
  height: 100vh;
  background-color: #E8FDC5;
  display: none;
}

footer, .footer2-container {
  background-color: black !important;
}

footer *, .footer2-container * {
  color: #E8FDC5 !important;
}

/*----------------TABLETS-------------------*/
/*------------------------------------------*/
@media (min-width: 576px) and (max-width: 1199px) {

  .primary-text-container {
    background-image: url('./images/Group\ 2\ \(2\).png');
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .header-menu {
    font-family: 'Inter';
    font-size: calc(15px + (24 - 15) * ((100vw - 576px) / (1200 - 576)));
  }

  .header-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    max-width: 55%;
    margin-left: 45%;
  }

  .button-header {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    border-radius: 50px;
    max-width: 190px;
    height: 40px;
    font-family: 'Inter';
    font-size: 16px;
    background-color: #E8FDC5;
    border: none;
    padding: 25px 20px;
    cursor: pointer;
  }

  .button-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    border-radius: 50px;
    max-width: 190px;
    height: 40px;
    font-family: 'Inter';
    font-size: 16px;
    background-color: #E8FDC5;
    border: none;
    padding: 25px 20px;
    cursor: pointer;
  }

  .blog-section2 {
    background-color: white;
    border-bottom: 1px solid black;
    padding-top: 5%;
  }

  .titulo2-blog {
    font-size: calc(32px + (40 - 32) * ((100vw - 576px) / (1200 - 576)));
    letter-spacing: -1.6px;
  }

  .date {
    font-size: calc(12px + (16 - 12) * ((100vw - 576px) / (1200 - 576)));
    letter-spacing: -0.32px;
  }

  .par2-blog {
    font-size: calc(16px + (20 - 16) * ((100vw - 576px) / (1200 - 576)));
    letter-spacing: -0.8px;
  }

  .blog2-button-container {
    height: 12%;
    margin-top: 8%
  }

  .blog2-button {
    max-width: 30%;
    height: 40%;
    font-size: calc(12px + (16 - 12) * ((100vw - 576px) / (1200 - 576)));
    background-color: #E8FDC5;
    border: none;
    border-radius: 50px;
    letter-spacing: -0.32px;
    cursor: pointer;
  }

  .blog2-image {
    background-image: url('./images/andysautu_modern_oil_painting_video_video_conference_meeting__i_3c4b093e-4425-4246-8b1a-0c09e1bd853f\ \(1\).png');
    background-repeat: no-repeat;
    background-size: 90% 98%;
    background-position: top;
    margin-top: 5.5%;
  }

  .blog2-image-text {
    font-family: 'Inter';
    font-size: calc(8px + (11 - 11) * ((100vw - 576px) / (1200 - 576)));
    font-size: 11px;
    margin-left: 5%;
    margin-top: -1.5%;
    letter-spacing: -0.475px;
  }

  .blog-section3 {
    min-height: 100vh;
    margin-bottom: 5%;
  }

  .blog3-title {
    font-size: calc(32px + (40 - 32) * ((100vw - 576px) / (1200 - 576)));
    margin-top: 3%;
    padding-left: 2%;
    margin-bottom: 3%;
    letter-spacing: -1.6px;
  }

  .bgrid-title {
    font-size: 20px;
    margin-bottom: 3%;
    letter-spacing: -0.8px;
  }

  .bgrid-date {
    font-family: 'Inter';
    font-size: calc(8px + (12 - 8) * ((100vw - 576px) / (1200 - 576)));
    letter-spacing: -0.48px;
    margin-bottom: 0;
  }

  .bgrid-text {
    font-family: 'Inter';
    font-size: calc(8px + (12 - 8) * ((100vw - 576px) / (1200 - 576)));
    max-width: 100%;
    letter-spacing: -0.48px;
  }

  .blog-button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 15%;
  }

  .blog-button {
    font-family: 'Inter';
    letter-spacing: -0.32px;
    font-size: calc(12px + (16 - 12) * ((100vw - 576px) / (1200 - 576)));
    max-width: 15%;
    height: 40%;
    border-radius: 50px;
    border: none;
    background-color: #E8FDC5;
    margin-bottom: 2%;
    cursor: pointer;
  }

  footer {
    background-color: #E8FDC5;
  }

  .footer-list1 {
    font-size: calc(8px + (12 - 8) * ((100vw - 576px) / (1200 - 576)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 30px;
    line-height: 163%;
  }

  .footer-list2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .footer-list3 {
    font-size: calc(8px + (12 - 8) * ((100vw - 576px) / (1200 - 576)));
    margin-right: 30px;
    line-height: 163%;
  }

  .San-francisco {
    font-size: calc(5px + (7 - 5) * ((100vw - 576px) / (1200 - 576)));
    font-weight: 500;
  }

  .Best-friend {
    margin-top: 5px;
    font-size: calc(20px + (26 - 20) * ((100vw - 576px) / (1200 - 576)));
    line-height: 93.5%;
    letter-spacing: 0.261px;
  }

  a {
    text-decoration: none;
    color: black;
  }

  .footer-last {
    font-size: calc(7px + (10 - 7) * ((100vw - 576px) / (1200 - 576)));
  }
}


/*----------------MOBILE-------------------*/
/*------------------------------------------*/

@media only screen and (max-width: 575px) {

  .first-section {
    font-size: calc(100px + (120 - 100) * ((100vw - 320px) / (576 - 320)));
    letter-spacing: -4.8px;
  }

  .bff-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20%;
  }


  .header-list {
    display: none;
  }

  .primary-text-container {
    background-image: url('./images/image\ 3.png');
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

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

  .button-header {
    display: none;
  }

  .container-burger {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    z-index: 1;
    position: absolute;
    right: 30px;
    background-color: #E8FDC5;
    border-radius: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hamburger {
    position: relative;
    display: block;
    width: 22px;
    cursor: pointer;
    top: 0;
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;

    -webkit-appearance: none;

    -moz-appearance: none;

    appearance: none;
    background: none;
    outline: none;
    border: none;
  }

  .hamburger .bar,
  .hamburger:after,
  .hamburger:before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background-color: #000;
    margin: 6px 0px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }

  .mobile-menu[data-open='false'] {
    pointer-events: none;
    opacity: 0;
  }

  .mobile-menu[data-open='true'] {
    pointer-events: auto;
    opacity: 1;
  }

  .mobile-menu {
    height: 100vh;
    min-height: 580px;
    background-color: black;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 78px;
    display: block;
  }

  .mobile-menu .content {
    height: 100%;
    width: 100%;
    background-color: black;
  }

  .burger-list {
    font-family: 'PPEditorialNew', sans-serif;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 64px;
    padding: 6%;
    border-top: 1px solid white;
  }

  .burger-list1 {
    font-family: 'PPEditorialNew', sans-serif;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 64px;
    padding: 8%;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
  }

  .hamburger.is-active:before {
    -webkit-transform: rotate(-45deg) translate(-4px, 4px);
    -ms-transform: rotate(-45deg) translate(-4px, 4px);
    transform: rotate(-45deg) translate(-4px, 4px);
  }

  .hamburger.is-active {
    top: 1px;
  }

  .hamburger.is-active:after {
    -webkit-transform: rotate(45deg) translate(-6px, -6px);
    -ms-transform: rotate(45deg) translate(-6px, -6px);
    transform: rotate(45deg) translate(-6px, -6px);
  }

  .hamburger.is-active .bar {
    opacity: 0;
  }

  .blog-section2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .titulo2-blog {
    font-size: calc(40px + (48 - 40) * ((100vw - 320px) / (576 - 320)));
    letter-spacing: -1.92px;
  }

  .text-blog {
    padding: 6%;
  }

  .date {
    font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (576 - 320)));
    letter-spacing: -0.32px;
    margin-bottom: 5%;
  }

  .par2-blog {
    font-family: 'Inter';
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (576 - 320)));
    letter-spacing: -0.4px;
    max-width: 95%;
  }

  .blog2-button-container {
    height: 25%;
    margin-top: 5%
  }

  .blog2-button {
    max-width: 30%;
    height: 30px;
    font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (576 - 320)));
    background-color: #E8FDC5;
    border: none;
    border-radius: 50px;
    letter-spacing: -0.4px;
    cursor: pointer;
  }

  .blog2-img-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .blog2-image {
    background-image: url('./images/andysautu_modern_oil_painting_video_video_conference_meeting__i_3c4b093e-4425-4246-8b1a-0c09e1bd853f\ \(2\).png');
    background-repeat: no-repeat;
    background-size: 85%;
    background-position: top;
    margin-top: 5.5%;
    padding-bottom: 90%;
    height: 100%;
  }

  .blog2-image-text {
    font-family: 'Inter';
    font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (576 - 320)));
    margin-left: 7%;
    margin-top: 1%;
    letter-spacing: -0.8px;
    margin-bottom: 2%;
  }

  .blog2-button-container {
    height: 12%;
    margin-top: 8%
  }

  .blog2-button {
    max-width: 90px;
    height: 45px;
    font-size: calc(12px + (16 - 12) * ((100vw - 576px) / (1200 - 576)));
    background-color: #E8FDC5;
    border: none;
    border-radius: 50px;
    letter-spacing: -0.32px;
    cursor: pointer;
  }

  .blog-section3 {
    margin-bottom: 5%;
    height: auto;
  }

  .blog3-title {
    font-family: 'PPEditorialNew', sans-serif;
    font-size: calc(48px + (64 - 48) * ((100vw - 320px) / (576 - 320)));
    margin-top: 5%;
    padding-left: 6%;
    letter-spacing: -2.56px;
  }

  .blog3-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .bgrid {
    padding: 6%;
    border-radius: 3%;
    padding-bottom: -10%;
  }

  .bgrid:hover {
    background-color: #E8FDC5;

  }

  .bgrid-title {
    font-family: 'PPEditorialNew', sans-serif;
    font-size: calc(24px + (32 - 24) * ((100vw - 320px) / (576 - 320)));
    margin-bottom: 3%;
    letter-spacing: -1.28px;
  }

  .bgrid-date {
    font-family: 'Inter';
    font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (576 - 320)));
    letter-spacing: -0.64px;
    margin-bottom: 5%;
  }

  .bgrid-text {
    font-family: 'Inter';
    font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (576 - 320)));
    max-width: 100%;
    letter-spacing: -0.64px;
  }

  .blog-button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    margin-top: 10%;
  }

  .blog-button {
    font-family: 'Inter';
    letter-spacing: -0.4px;
    font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (576 - 320)));
    max-width: 120px;
    height: 45px;
    border-radius: 30px;
    border: none;
    background-color: #E8FDC5;
    margin-bottom: 0;
    cursor: pointer;
  }

  footer {
    background-color: #E8FDC5;
    display: none;
  }

  .footer-container {
    display: none;
  }

  .footer2-container {
    height: 100vh;
    background-color: #E8FDC5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer2-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    margin-top: 30px;
  }

  .San-francisco2 {
    font-size: calc(5px + (7 - 5) * ((100vw - 320px) / (576 - 320)));
    font-family: 'Inter';
    margin-bottom: 1%;
  }

  .Best-friend2 {
    font-size: calc(20px + (29 - 20) * ((100vw - 320px) / (576 - 320)));
    font-family: 'PPEditorialNew', sans-serif;
    line-height: 93.5%;
    /* 27.159px */
    letter-spacing: 0.29px;
  }

  .footer2-list1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    font-family: 'PPEditorialNew', sans-serif;
    font-size: calc(30px + (38 - 30) * ((100vw - 320px) / (576 - 320)));
    letter-spacing: -1.6px;
  }

  .email {
    text-decoration: underline;
  }

  .footer2-list3 {
    font-family: 'Inter';
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (576 - 320)));
  }

  .footer2-last {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: 'Inter';
    font-size: calc(10px + (16 - 10) * ((100vw - 320px) / (576 - 320)));
    margin-bottom: 20px;
  }
}