* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

main {
  position: relative;
}

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

ul {
  list-style-type: none;
}

.custom-select {
  position: relative;
  font-family: Arial;
  width: 7.5rem;
}

.custom-select select {
  display: none;
}

.select-selected {
  display: flex;
  position: relative;

  background-color: #ffffff;
  color: #1e3451;

  border: 0.75px solid #1e3451;
  border-radius: 4px;
  -webkit-border-radius: 0.28rem;
  -moz-border-radius: 0.28rem;
  -ms-border-radius: 0.28rem;
  -o-border-radius: 0.28rem;
  cursor: pointer;

  padding: 0.52rem 0.92rem 0.52rem 0.75rem;
  gap: 0.3rem;

  font-size: 0.75rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  align-items: center;
  text-align: center;
}

.select-selected:after {
  content: none;
}

.select-items {
  display: none;

  position: absolute;
  padding: 0.52rem 0rem 0rem 0rem;
  gap: 0.3rem;
  width: 7.5rem;
  text-align: center;

  font-size: 0.75rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  align-items: center;
  text-align: center;
  background-color: #fff;
}

.select-items a {
  color: #1e3451;
  cursor: pointer;
  display: flex;
  padding: 0.52rem 0.92rem 0.52rem 0.75rem;
}

.select-items a:nth-child(1) {
  margin-bottom: 0.5rem;
}

.select-items.show {
  display: block;
}

.select-items a:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Estilo do botão de apresentação */
.presentation-button {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: none;
  background-color: #1A3E6F;
  text-transform: uppercase;
  color: #f7f9fc;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}

.custom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-overlay-content {
  width: 80%;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  
  
}


.response {
  color: var(--Primary, #4b576c);
  text-align: center;
  font-family: 'DM Serif Text';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  width: auto;
}

.custom-overlay-close {

  border-radius: 50%;
  text-align: center;
  vertical-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
}

.custom-overlay-close i {
  font-size: 24px;
}

.custom-overlay-content form {
  border-radius: 4px;
  background-color: #ffffff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.custom-overlay-content  h3 {
  color: var(--Primary, #4b576c);
  text-align: center;
  font-family: 'DM Serif Text';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  width: auto;
}

.custom-overlay-content span {
  color: var(--Primary, #009f8e);
  font-family: 'DM Serif Display';
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 26px;
}

.custom-overlay-content img {
  width: 140px;
  height: 120px;
  flex-shrink: 0;
}

.presentation-button:hover {
  background-color: #021E44;
}

.align-ebook-button {
  width: 100%;
  display: flex;
  visibility: visible; 
  align-items: center; 
  justify-content: center; 
  margin-top: 40px;

  .read-book {
    width: 100%;
  }
}



.read-book {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: none;
  background-color: #009f8e;
  text-transform: uppercase;
  color: #f7f9fc;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}

.read-book:disabled {
  cursor: not-allowed;
  background-color: #F0EFF0;
  color: #677693;
}

.read-book:hover {
  background-color: #00899B
}

.floating-label {
  position: relative;
  font-family: 'Roboto', sans-serif;
  width: 100%;
}

.floating-label input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: none;
}

.floating-label label {
  position: absolute;
  left: 10px;
  top: 40%;
  transform: translateY(-80%);
  background: white;
  padding: 0 5px;
  color: #777;
  font-size: 14px;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
  top: 5px;
  font-size: 12px;
  color: #333;
}

.floating-label .error-message {
  color: #D11936;
  font-size: 12px;
  margin-top: 4px;
  display: none;
  text-align: right;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
}

.floating-label input.invalid {
  border-color: #D11936
}

.floating-label input.invalid + label {
  color: #D11936;
}

.floating-label input.invalid ~ .error-message {
  display: block;
}

.form-input {
  width: 100%;
  display: flex;
  height: 48px;
  padding: 0rem 0.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;

  border-radius: 0.25rem;
  border: 1px solid #ccd1db;
}

.form-input::placeholder {
  color: #677693;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1rem; /* 114.286% */
}
.invalid {
  border: 2px solid #D11936; /* Borda vermelha */
}

.form-checkbox {
  display: none;
  align-items: center;
  justify-content: center;

  gap: 0.5rem;

  color: #282b3a;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
}

/* elements */
.navbar-fixed {
  position: relative;
  z-index: 998;
}

.navbar-fixed nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  height: 86px;
  width: 100%;
  justify-content: center;
  align-items: center;

  border-radius: 0px 0px 4px 4px;
  background: #fefefe;
  box-shadow: 0px 10px 16px 0px rgba(48, 92, 97, 0.12);
}

.navbar-fixed ul {
  display: none;
}

.navbar-fixed ul li a {
  border-bottom: 2px solid transparent;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
}

.navbar-fixed ul li a:hover {
  color: #171d40;
  border-bottom: 2px solid #171d40;
}

.header {
  position: relative;
}

.header-container {
  display: flex;
  flex-direction: column;
  padding: 137px 32px;
  padding-bottom: 47px;
  overflow: hidden;
}



.header-info .read-book {
  display: none
}


.header-container button {
  margin-bottom: 20px;
}

.header::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(#DAFFFB, #FBFCFC);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.bus-container {
  width: 100%;
  height: 100%;
  max-width: 600px;
  position: relative;
  margin-bottom: 0.75rem;
}

.bus-container img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: contain;
}

.header-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-info img {
  width: 100%;
  max-width: 163px;
  height: 100%;
  max-height: 46px;
  margin-bottom: 1rem;
}

.header-info h1 {
  color: #282b3a;
  font-family: 'DM Serif Text', serif;
  font-size: 24px;
  font-weight: 400;
}

.header-info h1 span {
  color: #2fb0a3;
}

.header-info p {
  color: #171d40;
  font-family: 'Open Sans', sans-serif, sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.awards {
  padding: 16px 0px 16px 0px;
  margin: 1.25rem 2rem 0rem 2rem;

  border-top: 1px solid #d2d6dc;
  border-bottom: 1px solid #d2d6dc;
}

.awards h3 {
  color: #282b3a;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
}

.awards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}

.awards-wrapper img:nth-last-child(-n + 1) {
  width: 4.5rem;
}

.awards-wrapper img {
  object-fit: contain;

  width: 5.5rem;
  height: 100%;
}

.float-form {
  display: none;
}

.solutions {
  padding: 39px 32px 0px 32px;
}

.solutions-header,  .header-container span {
  color: #009f8e;

  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24px;
  
}

.solutions-header h3 {
  margin-top: 10px;
  color: #282b3a;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  width: 274px ;
}

.solutions-header span {
   text-transform: uppercase; 
}

.solutions-header p {
  align-self: stretch;

  color: #4b576c;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-top: 1rem;

}

.solutions-header img {
  width: 565px;
}

.widgets-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;

  margin-top: 18px;
}

.widgets-wrap button {
  margin-top: 1rem;
  grid-column: 1/3;
}

.widgets-item {
  display: flex;
  width: 100%;
  height: 184px;
  padding: 12px 5px 18px 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 6px;
  background: #fdfcfd;

  box-shadow: 0px 7px 16px 0px rgba(26, 62, 110, 0.12);
}

.widgets-item img {
  width: 3.25rem;
  margin-top: -0.75rem;
}

.widgets-item:nth-last-child(-n + 6) img {
  width: 3.5rem;
  margin-top: 0.25rem;
}

.widgets-item:nth-last-child(-n + 5) img {
  width: 3.3rem;
  margin-top: -0.5rem;
  margin-bottom: -0.2rem;
}

.widgets-item:nth-last-child(-n + 4) img {
  width: 3.4rem;
  margin-bottom: 0rem;
}

.widgets-item:nth-last-child(-n + 3) img {
  width: 2.8rem;
  margin-top: -0.5rem;
  margin-bottom: 0rem;
}

.widgets-item:nth-last-child(-n + 2) img {
  width: 4rem;
}
.widgets-item:nth-last-child(-n + 1) img {
  width: 5rem;
}


.widgets-item h4 {
  color: #4b576c;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  width: 104px;
  font-style: normal;
  font-weight: 700;

  margin: 0px 0px -5px 0px;
}

.widgets-item:nth-last-child(-n + 6) h4 {
  margin: -4px 0px -6px 0px;
}

.widgets-item:nth-last-child(-n + 3) h4 {
  margin: 3px 0px -5px 0px;
}

.widgets-item:nth-last-child(-n + 2) h4 {
  margin: 0px 0px -10px 0px;
}

.widgets-item:nth-last-child(-n + 1) h4 {
  margin: -10px 0px -10px 0px;
}

.widgets-item p {
  color: var(--Dark-400, #4b576c);
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;

  height: 61px;
  margin: 12px 0px 0px 0px;
}

.our-tool {
  padding: 35px 16px 39px 16px;
  margin-top: 1rem;
  position: relative;
}

.our-tool::before {
  content: '';
  position: absolute;
  top: 0rem;
  right: 0em;
  width: 100vw;
  height: 100%;

  z-index: -1;
  background-color: #F5F5F5;
}

.our-tool-header {
  width: 90%;
}

.our-tool-header span {
  color: #009f8e;

  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}

.our-tool-header h3 {
  width: 273px;
  margin-top: 10px;
  color: #282b3a;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
}

.our-tool p {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
  line-height: 32px;
}

.our-tool-header img {
  width: 100%;

  margin: 0.75rem 0rem 0.75rem 0rem;
}

.our-tool button {
  width: 100%;
}

.our-tool-widgets-title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4b576c;
  text-align: center;
  font-family: 'DM Serif Display';
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  gap: 1rem;
  margin-bottom: 20px;
  grid-column: 1/3;
}

.our-tool-widgets-title hr {
  display: inline-block;
  width: 100%;
  height: max-content;
}

.our-tool-widgets-wrap {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 125px);
  gap: 16px;
}

.our-tool-widgets-wrap figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.our-tool-widgets-wrap figure img {
  width: 3.5rem;
}

.our-tool-widgets-wrap figure figcaption {
  color: #4b576c;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  width: 136px;
}

.media {
  padding: 40px 32px 32px 32px;
}

.media button {
  width: 100%;
  margin-top: 2rem;
}

.media-header span {
  color: #009f8e;

  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}

.media-header h3 {
  margin-top: 10px;
  color: #282b3a;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.media-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 1.25rem;

  gap: 1.25rem;
}

.media-content-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 1.25rem;
}

.media-content-card figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 1.25rem;
}

.media-content-card figure img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 4px;
}

.media-content-card figure figcaption {
  color: #4b4b4b;

  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  text-transform: uppercase;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-content-card span {
  color: #e72937;

  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}

.our-tool-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-us {
  padding: 40px 32px 32px 32px;
  background-color: #ebf5f4;
}

.about-us button {
  width: 100%;
  margin-top: 2.25rem;
}

.about-us-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 300px;
}

.about-us-content img {
  width: 183px;
  margin: 0rem auto -1rem -1rem;
}

.about-us-content h3,
.about-us-content h3 span {
  font-family: 'DM Serif Text';
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  line-height: 38px;
  width: 235px;
}

.about-us-content h3 {
  color: #1a3e6f;
}

.about-us-content h3 span {
  color: #e72937;
}

.about-us-content div {
  border-left: 3px solid #1a3e6f;
  padding-left: 1.5rem;
}

.about-us-content p {
  color: #282b3a;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.about-us-content h4 {
  width: 247px;

  color: #e72937;

  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
}

.about-us-content span {
  color: var(--text, #1e3451);
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer {
  padding: 2.63rem 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.footer-container button {
  margin-top: 2.5rem;
  grid-row: 2;
}

.footer-info {
  display: flex;
  gap: 2rem;
}

.footer-info img {
  width: 55px;
  height: 66.343px;
}

.footer-info ul {
  display: flex;
  flex-direction: column;
}

.footer-info li {
  color: #4b4b4b;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
}

.footer-social-media p {
  text-align: center;
  margin: 1.75rem 0rem 1.25rem 0rem;
  color: #ff9c52;

  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.footer-social-media div {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  align-items: center;
}

.footer-social-media div img {
  width: 2rem;
}

.footer-rights-reserved {
  height: 66px;
  width: 100%;
  margin-bottom: -1.75rem;
  background-color: #1a3e6e;
}

.footer-rights-reserved p {
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  padding: 17px 73px;
  font-size: 12px;
  font-weight: 700;
}

@media screen {
  @media (max-width: 500px) {
  
    .our-tool-widgets-wrap figure:nth-child(4) img {
      width: 4.8rem;
    }

    .our-tool-widgets-wrap figure:nth-child(5) img {
      width: 4.8rem;
    }

    .solutions img {
      width: 100%
    }

  }

  @media (min-width: 400px) {
    .widgets-item p {
      max-width: 150px;
    }

  }

  @media (min-width: 620px) {

    .header-container .presentation-button{
      display: flex;
    }
    .align-ebook-button {
      visibility: hidden;
    }

    .header-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding: 176px 40px 40px 40px;
    }

    .header::before {
      top: 0rem;
      /* background-image: url('../assets/svgs/background-green-ipad.svg'); */
    }

    .awards {
      margin-top: 3rem;
    }


    .header-info img {
      margin-top: 40px;
      width: 100%;
      max-width: 216px;
      height: 100%;
      max-height: 61px;
    }

    .header-info h1 {
      font-size: 44px;
      width: 330px;
      line-height: 3.5rem;
    }

    .header-info p {
      font-size: 20px;
      line-height: 32px;
      margin-top: 1rem;
      margin-bottom: 1.5rem;
      width: 329px;
    }

    .bus-container {
      max-width: 252px;
      max-height: 322px;

      margin-top: 90px;
    }

    .media {
      padding: 40px 40px 32px 40px;
    }

    .media button {
      display: none;
    }

    .media-header span {
      font-size: 14px;
      letter-spacing: 0.28px;
    }

    .media-header h3 {
      font-size: 40px;
      line-height: 53px;
    }

    .media-content {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 2.25rem;
      gap: 1.25rem;
      row-gap: 2rem;
    }

    .media-content-card figure {
      width: 100%;
    }

    .media-content-card figure img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .media-content-card figure figcaption {
      font-size: 14px;
      width: 100%;
      margin-right: auto;
    }

    .media-content-card span {
      text-align: left;
      margin-right: auto;
    }

    .about-us {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding: 59px 40px 32px 62px;
    }

    .about-us button {
      display: none;
    }

    .about-us-content {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
      margin-left: -1rem;
    }

    .about-us-content img {
      width: 270px;
      margin: 0rem auto -1.5rem -1.8rem;
    }

    .about-us-content h3,
    .about-us-content h3 span {
      font-size: 44px;
      line-height: 54px;
      width: 315px;
    }

    .about-us-content div {
      border-left: 4px solid #1a3e6f;
    }

    .about-us-content p {
      font-size: 16px;
    }

    .about-us-content h4 {
      width: 298px;
      font-size: 24px;
    }

    .about-us-content span {
      display: flex;
      flex-direction: column;
      font-size: 18px;
    }

    .footer {
      padding: 5.75rem 3.5rem 2.62rem 2.5rem;
    }

    .footer-container {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 2fr);
      row-gap: 4.75rem;
    }

    .footer-container button {
      margin-top: 0.75rem;
      margin-left: auto;
      height: max-content;
      grid-row: 1;
      grid-column: 2;
    }

    .footer-info {
      gap: 3.81rem;
    }

    .footer-social-media {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.12rem;

      grid-column: 1/3;
      grid-row: 2/2;
    }

    .footer-social-media p {
      margin-top: 1.25rem;
    }

    .footer-social-media div {
      display: flex;
      gap: 1.75rem;
    }

    .footer-social-media div img {
      width: 1.5rem;
    }

    .footer-rights-reserved {
      width: 100%;
      height: 3.75rem;
    }

    .footer-rights-reserved p {
      font-size: 12px;
    }

    .our-tool-content {
      display: block;
    }

    .our-tool-widgets-wrap {
      grid-template-columns: repeat(2, 170px);
    }

    .our-tool p {
      font-size: 20px;;
    }


  }

  @media (min-width: 660px) {
    .presentation-button {
      max-width: 286px;
    }

    .navbar-fixed nav {
      display: flex;
      justify-content: space-between;
      gap: 2rem;
      padding: 0px 72px 0px 36px;
    }

    .navbar-fixed ul {
      display: flex;
      list-style: none;
      align-items: center;

      gap: 2rem;
    }

    .navbar-fixed ul li {
      color: #1e3451;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      font-weight: 400;
    }

    .navbar-fixed nav ul li:nth-last-child(-n + 2) {
      display: none;
    }

    .header-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding: 176px 40px 60px 40px;
    }

    .header-container::before {
      background-image: url('../assets/svgs/background-green-ipad.svg');
    }

    .awards {
      padding: 32px 8px 32px 8px;
      margin: 2rem 40px 0px 40px;
    }

    .awards h3 {
      font-size: 32px;
    }

    .awards-wrapper {
      display: flex;
      align-items: center;

      gap: 0.25rem;
      justify-content: space-between;
    }

    .awards-wrapper img {
      width: 4.5rem;
    }

    .awards-wrapper img:nth-last-child(-n + 1) {
      width: 3.5rem;
    }

    .solutions img {
      max-width: 350px;
    }

    .solutions {
      display: flex;
      justify-content: space-between;

      gap: 77px;
      padding: 39px 40px 60px 40px;
    }

    .solutions-header {
      width: 428px;
    }

    .solutions-header span {
      font-size: 14px;
    }

   
  

    .widgets-wrap {
      width: 300px;
      margin-top: 40px;
    }

    .widgets-wrap button {
      display: none;
    }

    .widgets-item {
      padding: 0px 4px 0px 4px;
    }

    .widgets-item img {
      width: 3rem;
      margin-top: auto;
    }

    .widgets-item:nth-last-child(6) img {
      width: 4rem;
    }

    .widgets-item:nth-last-child(-n + 5) img {
      margin-top: 0.5rem;
    }

    .widgets-item:nth-last-child(-n + 4) img {
      width: 4rem;
      margin-top: -0.5rem;
    }

    .widgets-item:nth-last-child(-n + 3) img {
      width: 3rem;
      margin-top: 0.5rem;
    }

    .widgets-item:nth-last-child(-n + 2) img {
      width: 3rem;
    }

    .widgets-item:nth-last-child(-n + 2) p {
      margin-top: 1rem;
    }

    .form-wrap > div {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      flex-direction: column;
    }

    .float-form {
      position: sticky;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 16rem;
      height: max-content;
      gap: 0.87rem;

      padding: 28px 10px;
      top: 15%;
      margin-top: 1.25rem;
      margin-bottom: 3rem;
      margin-left: -1.75rem;
      border-radius: 6.321px;
      background: #fff;
      box-shadow: 0px 20.543px 25.283px 0px rgba(0, 0, 0, 0.12);
      grid-column: 2;
      grid-row: 1/-1;
    }

    .float-form h3 {
      color: var(--Primary, #4b576c);
      text-align: center;
      font-family: 'DM Serif Text';
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;
      width: auto;
    }

    .float-form span {
      color: var(--Primary, #009f8e);
      font-family: 'DM Serif Display';
      font-size: 18px;
      font-style: italic;
      font-weight: 400;
      line-height: 26px;
    }

    .float-form img {
      width: 140px;
      height: 120px;
      flex-shrink: 0;
    }

    .our-tool {
      padding: 35px 40px 39px 40px;

      grid-column: 1/3;
    }

    .our-tool-header {
      width: 327px;
    }



    .our-tool-header img {
      width: 327px;
    }

    .our-tool-header span {
      font-size: 14px;
    }

    .our-tool-header h3 {
      font-size: 36px;
    }

    .our-tool button {
      display: none;
    }

    .our-tool-widgets-wrap {
      width: 327px;
    }

    .our-tool-widgets-wrap figure {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
    }



    .our-tool-widgets-wrap figure img {
      width: 3.5rem;
    }



    .media {
      padding: 35px 40px 39px 40px;

      grid-column: 1/3;
    }

    .media-header {
      width: 328px;
    }

    .media-header span {
      font-size: 14px;
      letter-spacing: 0.28px;
    }

    .media-header h3 {
      font-size: 40px;
      line-height: 53px;
    }

    .media-content {
      width: 328px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      margin-top: 1.25rem;

      gap: 1.25rem;
    }

    .media-content-card {
      margin-bottom: auto;
    }
    .media-content-card figure img {
      width: 156px;
    }

    .about-us {
      grid-column: 1/3;
    }
  }

  @media (min-width: 768px) {
    .bus-container {
      max-width: 600px;
      max-height: 400px;
      margin-left: 0rem;
    }

    .bus-container img {
      max-width: 600px;
      object-position: right center;
    }

    .form-wrap > div {
      gap: 3rem;
    }

    .float-form {
      width: 18rem;
      height: max-content;
      padding: 28px 10px;
      margin-bottom: 1rem;
    }

    .solutions-header h3 {
      font-size: 32px;
      margin-bottom: 1.25rem;
      line-height: 40px;
    }

    .solutions-header p {
      font-size: 16px;
      line-height: 26px;
      width: 266px;
    }

    .header-container .read-book {
      display: none;
    }

    .header-info .read-book {
      display: flex;
    }

  }

  @media (min-width: 1024px) {
    .navbar-fixed nav {
      padding: 0px 92px 0px 92px;
    }

    .navbar-fixed ul {
      margin-right: -3.5rem;
    }

    .header-container {
      padding: 170px 92px 80px 92px;
    }

    .header::before {
      /* background-image: url('../assets/svgs/background-green-desktop.svg'); */
    }

    .header-container button {
      margin-top: -2rem;
      width: max-content;
    }

    .header-info img {
      width: 100%;
      max-width: 216px;
      height: 100%;
      max-height: 61px;
    }

    .header-info h1 {
      font-size: 46px;
      width: 460px;
      line-height: 4rem;
    }

    .header-info p {
      font-size: 20px;
      line-height: 32px;
      margin-bottom: 3.5rem;
    }

    .bus-container {
      max-width: 600px;
      max-height: 600px;
      margin-left: 1.8rem;
      object-fit: contain;
    }

    .awards {
      display: flex;
      padding: 10px 20px 10px 20px;
      margin: 3rem 92px 0px 92px;
      justify-content: center;
      align-items: center;
      gap: 24px;
    }

    .solutions {
      padding: 39px 92px 60px 92px;
    }

    .solutions-header {
      width: 600px;
    }

    .solutions-header h3 {
      font-size: 40px;
      line-height: 40px;
      width: 565px;
    }

    .solutions img {
      max-width: 800px;
    }

    .solutions-header p {
      width: 580px;
      font-size: 14px;
      line-height: 26px;
    }

    .widgets-wrap {
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      width: 540px;

      margin-top: 31px;
    }

    .widgets-item img {
      width: 3rem;
      margin-bottom: 0.5rem;
    }

    .widgets-item:nth-last-child(-n + 6) img {
      width: 5rem;
      margin-top: -0.5rem;
    }

    .widgets-item:nth-last-child(-n + 5) img {
      width: 5rem;
      margin-top: -0.5rem;
      margin-bottom: -0.5rem;
    }

    .widgets-item:nth-last-child(-n + 5) h4 {
      width: max-content;
      margin-top: 0.5rem;
    }

    .widgets-item:nth-last-child(-n + 5) p {
      margin-top: 1rem;
    }

    .widgets-item:nth-last-child(-n + 4) img {
      width: 4rem;
    }

    .widgets-item:nth-last-child(-n + 4) h4 {
      margin-bottom: -1rem;
    }

    .widgets-item:nth-last-child(-n + 3) img {
      width: 4rem;
      margin-top: 0rem;
    }

    .widgets-item:nth-last-child(-n + 3) h4 {
      margin-top: 1.25rem;
      margin-bottom: -1.5rem;
    }

    .widgets-item:nth-last-child(-n + 3) p {
      margin-top: 1.5rem;
    }

    .widgets-item:nth-last-child(-n + 2) img {
      width: 3.5rem;
      margin-bottom: -1.25rem;
    }

    .widgets-item:nth-last-child(-n + 1) img {
      width: 4.5rem;
      margin-bottom: -1.25rem;
    }

    .widgets-item:nth-last-child(-n + 2) p {
      width: max-content;
      margin-bottom: 0.5rem;
      margin-top: 2rem;
    }

    .our-tool {
      padding: 69px 92px 20px 92px;
    }

    .our-tool-header h3 {
      margin-top: 1.5rem;
    }

    .our-tool-header img {
      width: 327px;
      margin-top: 1.5rem;
    }

    .media {
      padding: 35px 92px 39px 92px;
      width: 100%;
    }

    .about-us-content {
      max-width: 444px;
      margin: 0rem 0rem 0rem 2rem;
    }

    .about-us-content h4 {
      width: 458px;
    }

    .about-us-content span {
      display: flex;
      flex-direction: row;
      gap: 0.5rem;
    }

    .footer {
      padding: 3.97rem 4.87rem;
    }

    .footer-container {
      max-width: 1440px;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 1fr;
      row-gap: 0rem;
      margin: 0rem auto;
    }

    .footer-container button {
      margin-top: 0.88rem;
      height: max-content;
      grid-column: 3/4;
    }

    .footer-info {
      gap: 3.81rem;
      grid-column: 1/2;
      width: max-content;
      margin: 0;
    }

    .footer-social-media {
      flex-direction: column;
      margin: 0rem auto;
      gap: 0.87rem;

      grid-column: 2/3;
      grid-row: 1/1;
      width: max-content;
    }

    .footer-social-media p {
      margin-top: 0rem;
      margin-bottom: 0rem;
    }

    .footer-social-media div {
      gap: 1.18rem;
    }

    .form-wrap > div {
      display: grid;
      grid-template-columns: repeat(2, 1fr);

      gap: 0rem;
    }

    .float-form {
      width: 19rem;
      top: 15%;
      gap: 12px;
      margin-bottom: 4rem;

      padding: 20px 10px 40px 10px;
    }

    .float-form img {
      width: 180px;
      height: 160px;
    }

    .float-form h3 {
      width: 100%;
    }
  }

  @media (min-width: 1150px) {
    .float-form {
      width: 24rem;
      height: max-content;
      top: 15%;
      flex-shrink: 0;
      margin-left: 0rem;

      padding: 10px 20px 10px 20px;
    }

    .float-form h3 {
      line-height: 32px;
      /* width: 360px; */
      font-size: 20px;
    }

    .float-form span {
      font-size: 25px;
      line-height: 32px;
    }
  }

  @media (min-width: 1280px) {
    .navbar-fixed nav ul li:nth-last-child(-n + 2) {
      display: flex;
    }

    .header-container {
      padding: 80px 92px 5rem 92px;
      margin-bottom: 5rem;
    }

    .header::before {
      top: 0rem;
     
    }

    .header-info h1 {
      width: 650px;
    }

    .header-info p {
      width: 650px;
    }

    .bus-container {
      margin-left: 4rem;
    }

    .bus-container::before {
      max-width: 12rem;
      max-height: 12.5rem;
      margin-left: 1.8rem;
      top: -2rem;
      right: -1.5rem;
    }

    .awards {
      padding: 10px 32px 10px 32px;
      margin: -1.5rem 92px 0px 92px;
    }

    .awards h3 {
      font-size: 35px;
    }

    .awards-wrapper {
      gap: 1rem;
    }

    .awards-wrapper img {
      width: 6.5rem;
    }

    .awards-wrapper img:nth-last-child(-n + 1) {
      width: 5.2rem;
    }

    .form-wrap > div {
      gap: 5rem;
    }

    .__form {
      max-width: 281px;
      margin-top: auto;
      font-size: 14px;
    }

    .our-tool-header {
      width: 680px;
    }

    .our-tool-header h3 {
      width: 660px;
    }

    .our-tool-header img {
      width: 680px;
      margin-top: 2rem;
    }

    .our-tool-widgets-wrap {
      grid-template-columns: repeat(3, 137px);
      gap: 0rem;
      row-gap: 2.5rem;
      width: 680px;
    }

    .our-tool-widgets-wrap h3 {
      grid-column: 1/4;
    }

    .our-tool-widgets-wrap h3:nth-last-child(-n + 3) {
      width: 357px;
      margin: 0px auto;
    }

    .our-tool-widgets-wrap figure {
      gap: 0.75rem;
    }

    .our-tool-widgets-wrap figure:nth-child(9) {
      margin-left: 4.5rem;
      margin-top: 0.4rem;
    } 

    .our-tool-widgets-wrap figure:nth-child(10) {
      margin-right: 3.5rem;
    } 

    .our-tool-widgets-wrap figure:nth-child(5) img {
      width: 4.8rem;
    }

    .our-tool-widgets-wrap figure img {
      width: 3.7rem;
    }

    .our-tool-widgets-wrap figure figcaption {
      font-size: 14px;
      width: 137px;
    }

    .our-tool-widgets-wrap figure:nth-child(4) figcaption {
      width: 100px;
    }

    .our-tool-widgets-wrap figure:nth-child(4) {
      margin-top: 0.5rem;
    }

    .our-tool-widgets-wrap figure:nth-child(5) figcaption {
      margin-top: 0rem;
      width: 100px;
    }

    .our-tool-widgets-wrap figure:nth-child(6) figcaption {
      width: 100px;
    }

    .our-tool-widgets-wrap figure:nth-child(7) figcaption {
      margin-top: 0.4rem;
    }

   

    

    .media {
      padding: 35px 92px 0px 92px;
      grid-column: 1/3;
      margin: 0rem;
    }

    .media-wraper {
      width: 1160px;
      margin-left: auto;
      margin-right: auto;
    }

    .media-header h3 {
      width: 520px;
    }

    .media-content {
      grid-template-columns: repeat(3, 1fr);
      row-gap: 46px;
      width: 680px;
      margin-left: auto;
      margin-right: 42rem;
    }

    .media-content-card {
      width: 190px;
    }

    .media-content-card figure img {
      width: 190px;
      height: 200px;
    }

    .media-content-card figure figcaption {
      width: 180px;
    }

    .about-us {
      padding: 80px 92px 74px 92px;
    }

    .about-us-content {
      margin: 0rem 12rem 0rem auto;
    }

    .about-us-content img {
      width: 310px;
      margin: 0rem auto -1.5rem -1.8rem;
    }

    .about-us-content h3,
    .about-us-content h3 span {
      display: inline;
      font-size: 44px;
      line-height: 54px;
      width: 385px;
    }

    .about-us-content div {
      border-left: 4px solid #1a3e6f;
    }

    .about-us-content p {
      font-size: 16px;
    }

    .about-us-content h4 {
      font-size: 24px;
    }
  }

  @media (min-width: 1440px) {
    .navbar-fixed nav {
      gap: 160px;
      justify-content: space-between;
    }

    .navbar-fixed nav ul {
      gap: 3rem;
      margin-left: auto;
      margin-right: auto;
    }

    .navbar-fixed nav a {
      margin-left: auto;
    }

    .header-container {
      max-width: 1440px;
      margin: 0px auto 0px auto;
    }

    .header-container button {
      margin-top: -3rem;
      height: max-content;
    }

    .header-info p {
      padding-top: 20px;
      padding-bottom: 40px;
    }

    .bus-container {
      margin-left: auto;
    }

    .awards {
      max-width: 1260px;
      padding: 10px 40px 10px 40px;
      margin: 3rem auto 0px auto;
    }

    .awards-wrapper {
      gap: 1.5rem;
    }

    .awards-wrapper img {
      width: 6.9rem;
    }

    .awards-wrapper img:nth-last-child(-n + 1) {
      width: 6rem;
    }

    .solutions {
      max-width: 1440px;
      margin: 0px -6.5rem 0px auto;
      padding-left: 0px;
    }

    .our-tool-content {
      max-width: 1270px;
      margin: 0px auto;
      position: relative;
    }

    .our-tool-content::before {
      bottom: -6.58rem;
      left: -16.44rem;
    }

    .about-us-content {
      margin: 0rem 12rem 0rem auto;
    }

    .float-form {
      left: auto;
      margin-left: 8rem;
      margin-top: 4rem;

      width: 28rem;
      top: 15%;

      padding: 20px
    }
  }

  @media (min-width: 1440px) and (min-height: 700px) and (max-height: 800px) {
    .float-form {
      width: 24rem;
      top: 15%;

      padding: 20px;
    }

    .float-form h3 {
      line-height: 34px;
      width: 381px;
      font-size: 25px;
    }

    .float-form span {
      font-size: 25px;
      line-height: 41px;
    }
  }
}
