/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

:root {
  --color-background: #f4f5e2;
  --color-primary: #0a0b0a;
  --color-secondary: #fafaf1;
  --color-button: #4b97ff;
  --color-white: #ffffff;
  --color-border: #b2b4a5;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

#hs_cos_wrapper_menu-item-1 {
  grid-column: span 2;
}

.body {
  padding: 0;
  background-color: var(--color-white); !important;
}

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

.row-fluid-wrapper {
  border-radius: 20px;
}

.main {
  padding: 0 20px;
  margin-top: 150px;
}

@media (max-width: 1200px) {
  .main {
    margin-top: 100px;
  }
}

.logo {
  width: 190px;
  height: 87px;
}

.nav__list {
  display: flex;
  list-style: none;
  align-items: center;
  font-size: 18px;
}

.nav__list--item {
  display: inline-flex;
  border-radius: 25px;
  padding: 6px 20px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.3s ease-out;
}

.nav__list--dropdown {
  padding: 6px 25px 6px 10px;
  position: relative;
}

.nav__list--link {
  color: var(--color-primary);
  text-decoration: none;
}

.button--animation {
  transition: 0.3s;
  transform: translateY(0%);
  position: relative;
}

.button--animation::before {
  content: attr(aria-valuetext);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(150%);
  transition: 0.5s all;
}

.button--animation:hover {
  animation: moveUpAndRotate 0.2s forwards;
}

.button--animation:not(:hover) {
  animation: moveDownAndRotateBack 0.2s forwards;
}

.nav__list--item:hover {
  border: 1px solid var(--color-primary);
  background: rgba(0, 0, 0, 0.1);
}

.nav__list--item:hover .button--animation {
  animation: moveUpAndRotate 0.2s forwards;
}

.nav__list--item:not(:hover) .button--animation {
  animation: moveDownAndRotateBack 0.2s forwards;
}

.nav__list--icon {
  position: absolute;
  bottom: 13px;
  right: 8px;
}

.dropdown__item {
  margin-top: 14px;
}

.dropdown__item:first-child {
  margin: 0;
}

.arrow-down {
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-radius: 3px;
  border-top: 5px solid var(--color-primary);
}

.arrow-up {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-radius: 3px;
  border-bottom: 5px solid var(--color-primary);
}

.menu {
  display: none;
  grid-template: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  width: 96%;
  z-index: 9999;
  background: white;
}

.menu__nav {
  grid-column: span 2;
}

.menu__list {
  padding: 28px 13px;
  list-style: none;
}

.menu__list--dropdown:hover {
  cursor: pointer;
}

.menu__dropdown {
  display: none;
  padding: 10px;
  list-style: none;
}

.menu__dropdown--item:not(:first-child) {
  margin-top: 6px;
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  z-index: 2;
  list-style: none;
  border: none;
  background-color: var(--color-white);
  border-left: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  margin: 0;
  left: -0.5px;
  min-width: 200px;
  padding: 6px 10px 10px;
  border-radius: 0 15px 15px 15px;
  overflow: hidden;
}

#hs_cos_wrapper_footer {
    display: contents;
}

.dropdown__menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--color-secondary) 50%,
    var(--color-primary) 50%
  );
  z-index: 1;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px; 
}

.menu__list--item {
  position: relative;
  justify-content: space-between;
  margin-top: 5px;
  border-bottom: 1px solid var(--color-primary);
}

.menu__icon {
  position: absolute;
  top: 5px;
  right: 0;
}

.menu__icon--hidden {
  display: none;
}

.menu__list--link {
  padding-bottom: 5px;
  color: var(--color-primary);
  text-decoration: none;
}

.menu__image {
  grid-column: 1 / 2;
}

.menu__hamburger {
  grid-column: 2 / 3;
}

.hamburger {
  display: none;
}

.hamburger > span {
  display: block;
  width: 25px;
  background-color: var(--color-primary);
  height: 3px;
}

.hamburger--close {
  display: none;
  justify-self: end;
}

.hamburger--close:hover {
  cursor: pointer;
}

.hamburger--close > .hamburger__item:nth-child(1) {
  transform: rotate(45deg) translate(3px, 5px);
}

.hamburger--close > .hamburger__item:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -5px);
}

.hamburger--close .hamburger__item {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
}

.hamburger__item {
  margin-top: 8px;
}

.hamburger__item:first-child {
  margin: 0;
}

.hamburger:hover {
  cursor: pointer;
}

@keyframes moveUpAndRotate {
  0% {
    transform: translateY(0%) rotate(0deg);
  }
  10% {
    transform: translateY(-15%) rotate(1deg);
  }
  20% {
    transform: translateY(-30%) rotate(2deg);
  }
  30% {
    transform: translateY(-45%) rotate(3deg);
  }
  40% {
    transform: translateY(-60%) rotate(4deg);
  }
  50% {
    transform: translateY(-75%) rotate(5deg);
  }
  60% {
    transform: translateY(-90%) rotate(4deg);
  }
  70% {
    transform: translateY(-105%) rotate(3deg);
  }
  80% {
    transform: translateY(-120%) rotate(2deg);
  }
  90% {
    transform: translateY(-135%) rotate(1deg);
  }
  100% {
    transform: translateY(-150%) rotate(0deg);
  }
}

@keyframes moveDownAndRotateBack {
  0% {
    transform: translateY(-150%) rotate(0deg);
  }
  100% {
    transform: translateY(0%) rotate(0deg);
  }
}

@media (max-width: 1200px) {
  .header {
    align-items: center;
  }

  .logo {
    width: 111px;
    height: 51px;
  }

  .menu {
    background-color: var(--color-white);
    margin: calc(18px - 0.8px) calc(10px - 0.8px);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--color-primary);
  }

  .hamburger {
    display: block;
  }

  .hamburger--close {
    display: block;
  }

  .nav__list {
    display: none;
  }
}


.main__hero {
  margin-top: 28px;
}

.hero {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
}

.hero-2 {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 14px; 
}

.main__entry {
  margin: 40px auto 0;
}

.entry {
  max-width: 844px;
}

.entry--description {
  font-size: 40px;
}

.entry__description {
  margin-top: 14px;
}

.filter {
  font-size: 12px;
  color: var(--color-primary);
  line-height: 14px;
  text-decoration: none;
  border-radius: 4px;
  padding: 6px 9px;
  background-color: (--color-white);
  border: 0.5px solid var(--color-border);
  outline: none;
}

.filter:hover {
  cursor: pointer;
}

.info {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 28px;
}

.main__info {
  margin-top: 58px;
}

.info__author {
  grid-column: 1 / 4;
}

.author__container {
  margin-top: 28px;
}

.image__container {
  margin-top: 14px;
}

.author__name {
  font-size: 13px;
}

.author__name--bold {
  font-weight: bold;
}

.author__facts {
  padding: 25px 28px;
  border-radius: 14px;
  background-color: var(--color-secondary);
}

.facts {
  padding: 24px 24px 0;
}

.author__list {
  margin-left: 16px;
}

.author__container--spacing {
  margin-top: 20px;
}

.info__image {
  margin-top: 80px;
}

.info__image--description {
  display: flex;
  gap: 12px;
}

.info__image--description > span {
  font-size: 12px;
  display: inline;
}

.info__description {
  grid-column: 4 / 10;
}

.info__headline {
  margin-top: 80px;
}

.quotes {
  padding-left: 28px;
}

.info__quotes {
  margin: 56px 0;
}

.info__topic {
  font-size: 18px;
  font-weight: bold;
}

.info__list--headline {
  font-size: 18px;
  font-size: bold;
}

.info__list--item {
  margin-top: 24px;
}

.info__button {
  margin-top: 24px;
}

.info__contact {
  margin-top: 14px;
}

.contact {
  display: inline-flex;
  gap: 28px;
}

.contact__name {
  font-size: 28px;
}

.contact--bold {
  font-weight: bold;
}

.contact__position {
  margin-top: 20px;
}

.contact__image {
  border-radius: 7px;
  max-width: 81px;
}

.cards {
  display: flex;
  margin-top: 80px;
  gap: 28px;
}

.widget-span {
  border-radius: 14px;
}

.main__cards {
  margin-bottom: 120px;
}

  
  #hs_cos_wrapper_aqc-blog-related-posts {
    display: flex;
    gap: 28px;
  }

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Responsive grid */

.row-fluid {
  width: 100%;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: '';
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*='span'] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 2.127659574%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*='span']:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 99.99999998999999%;
}

.row-fluid .span11 {
  width: 91.489361693%;
}

.row-fluid .span10 {
  width: 82.97872339599999%;
}

.row-fluid .span9 {
  width: 74.468085099%;
}

.row-fluid .span8 {
  width: 65.95744680199999%;
}

.row-fluid .span7 {
  width: 57.446808505%;
}

.row-fluid .span6 {
  width: 48.93617020799999%;
}

.row-fluid .span5 {
  width: 40.425531911%;
}

.row-fluid .span4 {
  width: 31.914893614%;
}

.row-fluid .span3 {
  width: 23.404255317%;
}

.row-fluid .span2 {
  width: 14.89361702%;
}

.row-fluid .span1 {
  width: 6.382978723%;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: '';
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    border-radius: 14px;
    margin-left: 2.762430939%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 99.999999993%;
  }

  .row-fluid .span11 {
    width: 91.436464082%;
  }

  .row-fluid .span10 {
    width: 82.87292817100001%;
  }

  .row-fluid .span9 {
    width: 74.30939226%;
  }

  .row-fluid .span8 {
    width: 65.74585634900001%;
  }

  .row-fluid .span7 {
    width: 57.182320438000005%;
  }

  .row-fluid .span6 {
    width: 48.618784527%;
  }

  .row-fluid .span5 {
    width: 40.055248616%;
  }

  .row-fluid .span4 {
    width: 31.491712705%;
  }

  .row-fluid .span3 {
    width: 22.928176794%;
  }

  .row-fluid .span2 {
    width: 14.364640883%;
  }

  .row-fluid .span1 {
    width: 5.801104972%;
  }
}

@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.564102564%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }

  .row-fluid .span11 {
    width: 91.45299145300001%;
  }

  .row-fluid .span10 {
    width: 82.905982906%;
  }

  .row-fluid .span9 {
    width: 74.358974359%;
  }

  .row-fluid .span8 {
    width: 65.81196581200001%;
  }

  .row-fluid .span7 {
    width: 57.264957265%;
  }

  .row-fluid .span6 {
    width: 48.717948718%;
  }

  .row-fluid .span5 {
    width: 40.170940171000005%;
  }

  .row-fluid .span4 {
    width: 31.623931624%;
  }

  .row-fluid .span3 {
    width: 23.076923077%;
  }

  .row-fluid .span2 {
    width: 14.529914530000001%;
  }

  .row-fluid .span1 {
    width: 5.982905983%;
  }
}

/* Clearfix */

.clearfix:before, .clearfix:after {
  display: table;
  content: '';
}

.clearfix:after {
  clear: both;
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

.menu > [data-hs-cos-type="module"] {
  grid-column: span 2;
}


/* 
.hs-form input[type="email"],
.hs-form input[type="number"],
.hs-form input[type="password"],
.hs-form input[type="search"],
.hs-form input[type="tel"],
.hs-form input[type="text"],
.hs-form select,
.hs-form textarea,
.hs-form .hs-input {
  background-color: transparent;
  border: 1px solid #707070;
  padding: 8px 20px;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.18px;
  font-weight: 500;
}

.hs-input::placeholder {
  color: #707070;
  opacity: 0.5;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.18px;
  font-weight: 500;
}

form label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.13px;
  line-height: 17px;
  margin-bottom: 2px;
}

.form-title {
  font-size: 40px !important; 
  font-weight: 500 !important;
  letter-spacing: -0.40px !important;
  line-height: 40px !important;
  padding: 0 !important;
  margin-bottom: 25px !important;
  background-color: transparent !important;
}

span > h3 > .form-title {
  padding: 0;
}

.in-form--form {
  padding: 28px 20px !important;
  background-color: var(--color-background);
  border-radius: 14px;
}

.in-form .submitted-message, form {
  background-color: transparent !important;
}

.in-form .submitted-message, form {
  padding: 0 !important;
}

form .hs-button.primary:hover, form .hs-button:hover, form input[type=submit]:hover {
  background: var(--color-tertiary) !important;
  background-color: var(--color-tertiary) !important;
  border: 1px solid var(--color-tertiary) !important;
}

body form .hs-button:focus, body form input[type=submit]:focus, form .hs-button:active, form input[type=submit]:active {
  background: var(--color-tertiary) !important;
  background-color: var(--color-tertiary) !important;
  border: 1px solid var(--color-tertiary) !important;
}

body form .hs-button:focus, body form input[type=submit]:focus, form .hs-button:active, form input[type=submit]:active {
  background: var(--color-tertiary) !important;
  background-color: var(--color-tertiary) !important;
  border: 1px solid var(--color-tertiary) !important;
}

.hs-form .hs-input[type=checkbox] {
  width: 14px !important;
  height: 14px !important;
  padding: 0;
} */