@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --body: Inter, Arial, sans-serif;
  --bodycolor: #1f1f1f;
  --heading: Gilroy, Verdana, sans-serif;
  --dark-blue: #192c4b;
  --borderradius: .3125rem;
  --orange: #ef620f;
  --white: white;
  --sectiongray: #fafafa;
  --bordercolor: #c7c7c7;
  --ctasectionbg: #fdfdfe;
}

body {
  font-family: var(--body);
  color: var(--bodycolor);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

h1, h2 {
  font-family: var(--heading);
  color: var(--dark-blue);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
}

p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

label {
  margin-bottom: 5px;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.3;
  display: block;
}

.header {
  border-radius: var(--borderradius);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #ffffffd9;
  max-width: 1203px;
  padding-left: 15px;
  padding-right: 15px;
  position: fixed;
  bottom: auto;
  left: 0%;
  right: 0%;
  box-shadow: 0 4px 4px #0000000f;
}

.nav_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  display: flex;
}

.brand {
  margin-right: auto;
}

.nav_link {
  padding-left: 15px;
  padding-right: 15px;
  transition: color .2s;
}

.nav_link:hover {
  color: var(--orange);
}

.nav_link.w--current {
  color: var(--bodycolor);
}

.nav_link.w--current:hover {
  color: var(--orange);
}

.cta {
  border-radius: var(--borderradius);
  background-color: var(--orange);
  color: var(--white);
  padding: 15px 24px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s;
  box-shadow: 0 4px 10px #ef620f61;
}

.cta:hover {
  background-color: #d1560d;
}

.cta.nav_cta {
  margin-left: 20px;
}

.cta.hero_cta {
  margin-top: 20px;
}

.cta.hero_cta.aboutus {
  margin-top: 0;
}

.cta.hero_cta.calorimeter {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  box-shadow: none;
  color: var(--dark-blue);
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
}

.cta.transparent {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  box-shadow: none;
  color: var(--bodycolor);
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cta.transparent:hover {
  background-color: var(--sectiongray);
}

.cta.toc {
  text-align: center;
  width: 100%;
}

.cta.contact {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  border: 1px solid var(--dark-blue);
  background-color: var(--white);
  box-shadow: none;
  color: var(--dark-blue);
  justify-content: flex-start;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.cta.form_submit {
  margin-left: auto;
  display: block;
}

.nav-menu {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero_section {
  min-height: 100svh;
  max-height: 756px;
  padding-top: 0;
  display: flex;
}

.hero_presentation {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100svh;
  min-height: 100%;
  max-height: 756px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.hero_bg_video {
  width: 50%;
  position: relative;
}

.hero_bg_video2 {
  object-fit: cover;
  height: 100svh;
  max-height: 756px;
}

.presentation_wrapper {
  margin-top: 60px;
}

.presentation_wrapper.aboutus {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding-top: 64px;
  display: flex;
}

.kalorimetar_section {
  background-image: url('../images/kvadratna_pozadina.webp');
  background-position: 50%;
  background-size: cover;
  max-height: 804px;
  padding-top: 50px;
}

.container {
  max-width: 1203px;
  margin-left: auto;
  margin-right: auto;
}

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

.container.aboutus {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.benefits_wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.benefit_block {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  border: 1px solid var(--bordercolor);
  border-radius: var(--borderradius);
  background-color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 352px;
  padding: 22px 20px;
  display: flex;
  position: absolute;
  box-shadow: 0 10px 50px #00000014;
}

.benefit_block.topleft {
  z-index: -1;
  left: 20px;
}

.benefit_block.bottomright {
  bottom: 56px;
  right: 109px;
}

.benefit_block.bottomleft {
  z-index: -1;
  bottom: 83px;
  left: 20px;
}

.benefit_block.topright {
  z-index: -1;
  top: 36px;
  right: 0;
}

.benefit_heading {
  margin-top: 15px;
  font-size: 1.57rem;
}

.benefit_paragraph {
  font-size: .875rem;
}

.calorimeter_image {
  pointer-events: none;
  max-width: 642px;
}

.calorimeter_part {
  z-index: 2;
  max-width: 38px;
  position: absolute;
  bottom: 52px;
  left: 369px;
}

.calorimeter_beneift_wrapper {
  position: relative;
}

.services_section {
  margin-top: 50px;
}

.service_wrapper {
  height: 100svh;
  max-height: 635px;
  display: flex;
}

.service_wrapper.reverse {
  flex-flow: row-reverse;
}

.service_wrapper_image {
  max-width: 50%;
}

.service_block_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service_wrapper_presentation {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 50%;
  height: 100svh;
  max-height: 635px;
  padding-left: 30px;
  padding-right: 20px;
  display: flex;
}

.service_cta_wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 43px;
  display: flex;
}

.why_us {
  background-image: linear-gradient(180deg, var(--sectiongray), #fff0 59%);
  padding-top: 100px;
  padding-bottom: 100px;
}

.why_us_heading {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.bks_rate {
  margin-top: 39px;
}

.bks_rate_p {
  max-width: 54ch;
}

.bks_rate_p.faq {
  max-width: 63ch;
}

.bks_reviews {
  margin-top: 67px;
}

.faq {
  background-image: url('../images/kvadratna_pozadina.webp');
  background-position: 50%;
  background-size: cover;
}

.faq1_answer {
  padding-top: 0;
  overflow: hidden;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.max-width-large.align-center {
  max-width: 1120px;
}

.faq1_component {
  justify-content: center;
  align-items: center;
  display: flex;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.container-large {
  width: 100%;
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.faq1_accordion {
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq1_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.heading-2 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #e8bd67, #fff 72%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 17px;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.2;
}

.heading-2.h3 {
  max-width: 17ch;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.heading-2.h3.faq {
  max-width: none;
  font-family: var(--heading);
  color: var(--dark-blue);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.padding-global {
  margin-top: 20px;
  padding-left: 5%;
  padding-right: 5%;
}

.faq1_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border: 1px solid var(--bordercolor);
  border-radius: var(--borderradius);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  display: flex;
}

.paragraph {
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
}

.faq1_list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom-style: none;
  flex-flow: column;
  display: flex;
}

.faq_wrapper {
  margin-top: 40px;
}

.faq_section {
  padding: 44px 20px;
}

.cta_section {
  background-color: var(--ctasectionbg);
  padding: 100px 20px;
}

.car_image {
  max-width: 1054px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 75px 20px;
}

.footer_main {
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 55px;
  display: flex;
}

.footer_aside {
  border-top: 1px solid #ffffff80;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 22px;
  display: flex;
}

.footer_logo {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  max-width: 289px;
  display: flex;
}

.footer_sm_wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer_logo_image {
  max-width: 211px;
}

.footer_list {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  flex-flow: column;
  margin-top: 19px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: "";
  display: flex;
}

.footer_heading {
  font-family: var(--heading);
  text-transform: uppercase;
  font-size: 1.355rem;
  font-weight: 700;
  line-height: 1;
}

.footer_link {
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

.footer_link:hover {
  color: var(--orange);
}

.footer_nav_wrapper {
  grid-column-gap: 107px;
  grid-row-gap: 107px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.terms_wrap {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  display: flex;
}

.about_us_hero_wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-top: 58px;
  display: flex;
}

.partners_wrapper {
  grid-column-gap: 33px;
  grid-row-gap: 33px;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.partner_logo {
  max-width: 151px;
}

.content_wrapper {
  background-image: url('../images/kvadrati_pozadina_usluga.webp');
  background-position: 50%;
  background-size: cover;
  padding: 109px 20px;
}

.table_of_contents {
  border: 1px solid var(--bordercolor);
  border-radius: var(--borderradius);
  background-color: var(--white);
  min-width: 383px;
  padding: 35px;
  position: sticky;
  top: 100px;
}

.table_of_contents_list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  padding-left: 17px;
  list-style-image: url('../images/lista_custom_ikonica.svg');
  display: flex;
}

.table_of_contents_list_link {
  color: var(--bodycolor);
  font-size: .9375rem;
  line-height: 1;
  text-decoration: none;
}

.separator {
  background-color: var(--bordercolor);
  width: 100%;
  height: 1px;
  margin-top: 23px;
  margin-bottom: 23px;
}

.aboutus_content {
  margin-top: -152px;
}

.aboutus_content h1 {
  display: none;
}

.aboutus_content p {
  margin-top: 20px;
}

.aboutus_content h2 {
  margin-top: 152px;
}

.aboutus_content ul {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  flex-flow: column;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.4;
  display: flex;
}

.content_left_column {
  max-width: 522px;
}

.toc_heading {
  font-family: var(--heading);
  font-size: 1.179rem;
  line-height: 1;
}

.toc_image {
  max-width: 314px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.conact_ctas {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  margin-top: 51px;
  display: flex;
}

.form_wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  margin-bottom: 22px;
  display: flex;
}

.form_wrapper.textarea {
  display: block;
}

.form_policy {
  margin-top: 22px;
}

.form-block {
  border-top-left-radius: var(--borderradius);
  border-top-right-radius: var(--borderradius);
  border-bottom-left-radius: var(--borderradius);
  border-bottom-right-radius: var(--borderradius);
  background-color: var(--white);
  max-width: 551px;
  padding: 23px;
  position: absolute;
  top: calc(50% + 75px);
  left: 50px;
  transform: translate(0, -50%);
}

.form-block.mobile {
  display: none;
}

.form-block.success {
  color: var(--white);
  background-color: #088525;
}

.form_field {
  border: 1px solid var(--bordercolor);
  border-radius: var(--borderradius);
  color: var(--bodycolor);
  margin-bottom: 0;
}

.form_field.textarea {
  min-width: 100%;
  min-height: 132px;
}

.map {
  margin-top: 46px;
}

.fixed_cta {
  z-index: 6;
  aspect-ratio: 1;
  background-color: var(--orange);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 61px;
  height: 61px;
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 8px 10px #0000002e;
}

.fixed_cta:hover {
  background-color: #f18d53;
}

@media screen and (min-width: 1280px) {
  h1, h2 {
    font-size: 4rem;
  }

  .header {
    width: 100%;
    max-width: 1203px;
    padding-left: 14px;
    padding-right: 6px;
    top: 16px;
    left: 50%;
    transform: translate(-50%);
  }

  .nav_container {
    width: 100%;
    max-width: 100%;
  }

  .cta.nav_cta {
    margin-left: 142px;
  }

  .cta.hero_cta {
    margin-top: 41px;
  }

  .hero_presentation {
    justify-content: center;
    align-items: flex-end;
    padding-right: 52px;
  }

  .presentation_wrapper {
    max-width: 551px;
  }

  .presentation_wrapper.aboutus {
    padding-top: 121px;
  }

  .hero_p {
    max-width: 50ch;
  }

  .benefits_wrapper {
    z-index: 0;
  }

  .benefit_block.topleft {
    z-index: -1;
    padding-left: 23px;
    padding-right: 23px;
    top: 58px;
    left: 0;
  }

  .benefit_block.bottomright {
    bottom: 42px;
    right: 189px;
  }

  .benefit_block.bottomleft {
    bottom: 61px;
    left: 128px;
  }

  .benefit_block.topright {
    top: 104px;
    right: 38px;
  }

  .calorimeter_image {
    pointer-events: none;
  }

  .calorimeter_part {
    z-index: 2;
    max-width: 41px;
    position: absolute;
    bottom: 47px;
    left: 370px;
  }

  .calorimeter_beneift_wrapper {
    position: relative;
  }

  .service_wrapper_presentation {
    max-width: 607px;
    padding-right: 0;
  }

  .service_wrapper_presentation.reversed {
    max-width: 607px;
    padding-left: 0;
  }

  .why_us {
    padding-top: 149px;
    padding-bottom: 149px;
  }

  .bks_rate {
    margin-bottom: 0;
  }

  .bks_reviews {
    margin-top: 50px;
    margin-bottom: 0;
  }

  .heading-2 {
    font-size: 3.2rem;
  }

  .heading-2.h3 {
    font-size: 1.35rem;
  }

  .footer_nav_wrapper {
    grid-column-gap: 107px;
    grid-row-gap: 107px;
  }

  .content_wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .form-block {
    top: calc(50% + 45px);
  }
}

@media screen and (min-width: 1440px) {
  h2 {
    font-size: 4rem;
  }

  .presentation_wrapper.aboutus {
    padding-top: 161px;
  }

  .service_wrapper_presentation {
    padding-left: 65px;
  }

  .service_wrapper_presentation.reversed {
    max-width: 600px;
    padding-left: 0;
    padding-right: 65px;
  }

  .why_us {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .heading-2 {
    font-size: 3.6rem;
  }

  .heading-2.h3 {
    max-width: 17ch;
  }

  .footer {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 1920px) {
  .hero_section {
    height: 100svh;
    min-height: 0;
  }

  .hero_bg_video {
    max-height: 756px;
  }

  .kalorimetar_section {
    padding-top: 45px;
  }

  .services_section {
    margin-top: 100px;
  }

  .service_wrapper_image {
    width: 52%;
  }

  .service_wrapper_presentation {
    max-width: 612px;
  }

  .service_wrapper_presentation.reversed {
    max-width: 601px;
  }
}

@media screen and (max-width: 991px) {
  .header {
    width: calc(100% - 32px);
    padding-right: 0;
    top: 16px;
    left: 50%;
    transform: translate(-50%);
  }

  .cta.nav_cta {
    margin-top: 20px;
  }

  .nav-menu {
    border: 1px solid var(--bordercolor);
    border-radius: var(--borderradius);
    background-color: var(--white);
    text-align: left;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 16px;
    padding-bottom: 15px;
    box-shadow: 0 4px 10px #00000014;
  }

  .menu-button.w--open {
    background-color: var(--dark-blue);
  }

  .hero_section {
    flex-flow: column-reverse;
    min-height: 0;
    max-height: none;
  }

  .hero_presentation {
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
    padding-top: 36px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero_bg_video {
    width: 100%;
    height: 319px;
    overflow: hidden;
  }

  .hero_bg_video2 {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .presentation_wrapper {
    margin-top: 0;
  }

  .kalorimetar_section {
    background-image: none;
    max-height: none;
    padding-top: 0;
  }

  .container.aboutus {
    flex-flow: column;
  }

  .benefits_wrapper {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .benefit_block {
    position: static;
  }

  .services_section {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
    display: flex;
  }

  .service_wrapper {
    flex-flow: column;
    height: auto;
    max-height: none;
  }

  .service_wrapper.reverse {
    flex-flow: column;
  }

  .service_wrapper_image {
    max-width: 100%;
    max-height: 269px;
    overflow: hidden;
  }

  .service_block_image {
    object-fit: cover;
    max-height: 269px;
  }

  .service_wrapper_presentation {
    max-width: 100%;
    height: auto;
    max-height: none;
    padding-top: 33px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .service_cta_wrapper {
    margin-top: 27px;
  }

  .bks_reviews {
    margin-top: 57px;
  }

  .padding-section-large {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .faq_section, .cta_section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .car_image {
    max-width: 100%;
  }

  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer_main {
    grid-column-gap: 62px;
    grid-row-gap: 62px;
    flex-flow: column;
  }

  .content_wrapper {
    background-image: none;
  }

  .second_column.service {
    margin-top: 40px;
  }

  .form-block {
    display: none;
  }

  .form-block.mobile {
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: var(--bordercolor);
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: var(--bordercolor);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: var(--bordercolor);
    border-left-style: solid;
    border-left-width: 1px;
    border-left-color: var(--bordercolor);
    max-width: 100%;
    margin-top: 36px;
    display: block;
    position: static;
    top: 0;
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding-left: 20px;
  }

  .brand {
    padding-left: 0;
  }

  .nav_link {
    padding-left: 20px;
  }

  .hero_section {
    min-height: auto;
    max-height: none;
  }

  .calorimeter_image {
    max-width: 100%;
  }

  .calorimeter_part {
    display: none;
  }

  .calorimeter_beneift_wrapper {
    margin-bottom: -134px;
  }

  .bks_reviews {
    margin-top: 30px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .faq1_icon-wrapper {
    width: 1.75rem;
  }

  .heading-2 {
    font-size: 2.4rem;
  }

  .padding-global {
    padding-left: 0%;
    padding-right: 0%;
  }

  .faq1_question {
    border-style: solid;
    border-color: var(--bordercolor);
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .cta_section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer_aside {
    grid-column-gap: 37px;
    grid-row-gap: 37px;
    flex-flow: column;
  }

  .footer_nav_wrapper {
    grid-column-gap: 63px;
    grid-row-gap: 63px;
    flex-flow: column;
  }

  .partners_wrapper {
    margin-top: 86px;
  }
}

@media screen and (max-width: 479px) {
  h1, h2 {
    font-size: 10vw;
  }

  .cta {
    text-align: center;
  }

  .cta.transparent {
    border: 1px solid var(--bordercolor);
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .cta.transparent.aboutus {
    max-width: 175px;
    max-height: 49px;
  }

  .cta.contact {
    font-size: 1rem;
  }

  .cta.form_submit {
    width: 100%;
  }

  .nav-menu {
    padding-bottom: 15px;
  }

  .presentation_wrapper.aboutus {
    padding-top: 0;
  }

  .hero_p {
    font-size: .9375rem;
  }

  .container.aboutus {
    flex-flow: column;
  }

  .benefits_wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .benefit_block.bottomright {
    min-width: 0;
  }

  .calorimeter_beneift_wrapper {
    margin-bottom: -110px;
  }

  .services_section {
    margin-top: 70px;
  }

  .service_cta_wrapper {
    flex-flow: column-reverse;
    width: 100%;
  }

  .heading {
    font-size: 10vw;
  }

  .why_us {
    padding-bottom: 50px;
  }

  .bks_rate {
    margin-top: 37px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .faq1_accordion {
    padding: 0;
  }

  .heading-2 {
    font-size: 6.5vw;
  }

  .heading-2.h3 {
    font-size: 1.1rem;
  }

  .heading-2.h3.faq {
    font-size: 1.25rem;
  }

  .padding-global {
    padding-left: 0%;
    padding-right: 0%;
  }

  .faq1_list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .about_us_hero_wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .content_wrapper {
    padding-bottom: 80px;
  }

  .table_of_contents {
    min-width: 0;
  }

  .aboutus_content {
    margin-top: -72px;
  }

  .aboutus_content h2 {
    margin-top: 72px;
  }

  .aboutus_content ul {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    flex-flow: column;
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
  }

  .second_column {
    display: none;
  }

  .second_column.service {
    margin-top: 40px;
    display: block;
  }

  .form_wrapper {
    flex-flow: column;
    min-width: 0;
    max-width: 100%;
  }

  .form-block.success {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    left: 0;
    transform: none;
  }

  .form_field {
    min-width: 0;
    max-width: 100%;
  }

  .fixed_cta {
    bottom: 20px;
    right: 20px;
  }
}


@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}