* {
  box-sizing: border-box;
}


* {
    scrollbar-color: #555 transparent;
    scrollbar-width: thin
}

::-webkit-scrollbar {
    -webkit-appearance: none
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border: none;
    border-radius: 10px
}

::-webkit-scrollbar {
    background-color: transparent;
    height: 0;
    width: 4px
}

::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 15px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3)
}

body,html {
    font-family: Roboto,sans-serif
}


:root {
  /* colors */
  --background-color: white;
  --light-color: #f8f8f8;
  --dark-color: #505050;
  --text-color: #131313;
  --link-color: #3b63fb;
  --link-hover-color: #1d3ecf;
  --orange-color: #f24b26;
  --dark-black : #000;

  /* fonts */
  --body-font-family: roboto, roboto-fallback, sans-serif;
  --heading-font-family: 'Roboto', sans-serif;

  /* body sizes */
  --body-font-size-m: 22px;
  --body-font-size-s: 19px;
  --body-font-size-xs: 17px;

  /* heading sizes */
  --heading-font-size-xxl: 55px;
  --heading-font-size-xl: 44px;
  --heading-font-size-l: 34px;
  --heading-font-size-m: 27px;
  --heading-font-size-s: 24px;
  --heading-font-size-xs: 22px;

  /* nav height */
  --nav-height: 64px;
}


/* fallback fonts */
@font-face {
  font-family: roboto-condensed-fallback;
  size-adjust: 88.82%;
  src: local('Arial');
}

@font-face {
  font-family: roboto-fallback;
  size-adjust: 99.529%;
  src: local('Arial');
}

@media (width >=900px) {
  :root {
    /* body sizes */
    --body-font-size-m: 18px;
    --body-font-size-s: 16px;
    --body-font-size-xs: 14px;

    /* heading sizes */
    --heading-font-size-xxl: 45px;
    --heading-font-size-xl: 36px;
    --heading-font-size-l: 28px;
    --heading-font-size-m: 22px;
    --heading-font-size-s: 20px;
    --heading-font-size-xs: 18px;
  }
}

body {
  display: none;
  margin: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--body-font-family);
  font-size: var(--body-font-size-m);
  line-height: 1.6;
}

body.appear {
  display: block;
}

header .header,
footer .footer {
  visibility: hidden;
}

header .header[data-block-status="loaded"],
footer .footer[data-block-status="loaded"] {
  visibility: visible;
}
main > .section {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0.8em;
  margin-bottom: 0.25em;
  font-family: var(--heading-font-family);
  font-weight: 600;
  line-height: 1.25;
  scroll-margin: 40px;
}

h1 {
  font-size: var(--heading-font-size-xxl);
}

h2 {
  font-size: var(--heading-font-size-xl);
}

h3 {
  font-size: var(--heading-font-size-l);
}

h4 {
  font-size: var(--heading-font-size-m);
}

h5 {
  font-size: var(--heading-font-size-s);
}

h6 {
  font-size: var(--heading-font-size-xs);
}

p,
dl,
ol,
ul,
pre,
blockquote {
  margin: 0;
  padding: 0;
}

input,
textarea,
select,
button {
  font: inherit;
}

main img {
  max-width: 100%;
  /* width: auto; */
  height: auto;
  width: 100%;
}

.icon img {
  height: 100%;
  width: 100%;
}

/* Section heading - shared across blocks */
.section-heading {
  font-size: 29px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 41px;
  text-align: center;
  color: #fff;
}

.section-heading strong {
  color: #f04c23;
  font-weight: 700;
}

html, body{
  overflow-x: hidden;
}

@media (max-width: 600px) {
  main > .section{
    padding: 0;
  }
  .section-heading {
    font-size: 21px;
    line-height: 30px;
    font-weight: 500;
  }
}