:root {
  --padding-header: 24px 48px;
  --padding-footer: 64px 48px;
  --padding-section: 48px;
  --padding-section-big: 96px;
  --gap-main: 48px;
  --gap-block: 24px;
  --margin-bottom-main: 64px;
  --border-radius-block: 16px;
  --titleXL: 64px;
  --titleL: 48px;
  --titleM: 32px;
  --textL: 24px;
  --textM: 18px;
}

@media (max-width: calc(1200px - 1px)) {
  :root {
    --padding-header: 24px 48px;
    --padding-footer: 64px 48px;
    --padding-section: 48px;
    --padding-section-big: 64px;
    --titleXL: 48px;
    --titleL: 32px;
    --titleM: 24px;
    --textL: 16px;
    --textM: 16px;
  }
}
@media (max-width: calc(900px - 1px)) {
  :root {
    --padding-header: 24px 32px;
    --padding-footer: 32px;
    --padding-section: 32px;
    --gap-main: 32px;
    --margin-bottom-main: 48px;
  }
}
@media (max-width: 599px) {
  :root {
    --padding-header: 22px 24px;
    --padding-footer: 32px 24px;
    --padding-section: 24px;
    --padding-section-big: 64px;
    --gap-main: 24px;
    --gap-block: 16px;
    --margin-bottom-main: 32px;
    --border-radius-block: 16px;
    --titleXL: 32px;
    --titleL: 24px;
    --titleM: 18px;
    --textL: 16px;
    --textM: 14px;
  }
}
body {
  font-family: Gotham, Roboto, SF, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0;
  line-height: 1.3;
}

.section, .section-front {
  max-width: 1440px;
  padding: var(--padding-section);
  margin-inline: auto;
  color: #032A50;
  margin-bottom: var(--margin-bottom-main);
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

.display-0 {
  font-size: var(--titleXL);
}

.display-1 {
  font-size: var(--titleL);
  margin: 0;
}

.display-3 {
  font-size: var(--titleM);
}

.hero-lead, .button {
  font-size: var(--textL);
  margin: 0;
}

.lead {
  font-size: var(--textM);
}

.text-block {
  margin: 0.5em 0;
}

.button {
  background-color: #3EB5E6;
  border-radius: 8px;
  width: max-content;
  padding: 16px 48px;
  color: white !important;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-sizing: border-box;
  font-weight: bolder;
}
.button:hover {
  background-color: #1c9fd5;
}

.partners-section {
  background-color: #F2F5F8;
  padding: 64px var(--padding-section);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--gap-block);
  border-radius: 10px;
}
@media (max-width: 599px) {
  .partners-section {
    flex-direction: column;
  }
}

.container-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-name: smooth;
  animation-duration: 0.5s;
}
.container-modal.for-img {
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: flex-start;
  flex-direction: column;
  cursor: zoom-out;
}
.container-modal .close-img {
  min-height: var(--titleL);
  width: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.4);
}
@media (max-width: calc(900px - 1px)) {
  .container-modal .close-img {
    min-height: calc(var(--titleL) * 2);
  }
}
.container-modal .close-img img {
  cursor: pointer;
}
.container-modal .close-img img:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
.container-modal .close-img img:not(:hover) {
  transition: 0.3s;
}
.container-modal .img-container {
  width: 95%;
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
}
.container-modal .img-container > div {
  max-height: calc(100vh - var(--titleL));
}
@media (max-width: calc(900px - 1px)) {
  .container-modal .img-container > div {
    min-height: calc(var(--titleL) * 2);
  }
}
.container-modal .img-container #click-img {
  cursor: auto;
}

@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sub-menu_active {
  display: block !important;
  animation-name: opacity;
  animation-duration: 0.2s;
}

#header-button {
  background-color: #69d040;
  padding: 10px 16px;
  color: white;
  cursor: pointer;
  font-weight: bolder;
  text-decoration: none;
}
#header-button:hover {
  background-color: #5cc12d;
}

header {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: white;
  transition: background-color 0.5s;
  z-index: 5;
}
header img {
  max-width: 200px;
  vertical-align: middle;
  width: 100%;
}
header nav {
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  margin: auto;
  padding: var(--padding-header);
  gap: 10px;
}
header nav .header-right {
  display: flex;
  align-items: center;
  gap: 5px;
}
header nav .header-right .header-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
header nav .header-right .header-list li {
  list-style: none;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
header nav .header-right .header-list li:hover {
  border-bottom-color: inherit;
}
header nav .header-right .header-list li:hover > a {
  color: #3EB5E6;
}
header nav .header-right .header-list li a {
  text-align: center;
  text-decoration: none;
  color: rgba(3, 42, 80, 0.75);
}
header nav .header-right .header-list li .sub-menu {
  display: none;
  position: fixed;
  background-color: white;
  box-shadow: 10px 10px 25px 20px rgba(0, 0, 0, 0.03);
  cursor: auto;
  padding: 0;
  border-radius: 8px;
}
header nav .header-right .header-list li .sub-menu li {
  border-bottom: none;
}

.header-burger {
  display: none;
  cursor: pointer;
  background-color: transparent !important;
}

.sub-menu-toggle {
  display: none;
}

@media (max-width: calc(900px - 1px)) {
  header .header--logo {
    z-index: 3;
    position: relative;
  }
  header nav .header-right {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
  }
  header nav .header-right .header-list {
    display: block;
    overflow: auto;
    height: 75%;
    position: relative;
    top: 5%;
  }
  header nav .header-right .header-list li {
    font-weight: bold;
    border: none;
  }
  header nav .header-right .header-list li:hover {
    box-shadow: none;
    background-color: white;
  }
  header nav .header-right .header-list li .sub-menu {
    display: block;
    position: initial;
    box-shadow: none;
    font-weight: normal;
    padding: 4px;
  }
  header nav .header-right .header-list li .sub-menu li {
    font-weight: normal;
  }
  header nav .header-right .header-list li .sub-menu .refactor-ul {
    grid-template-columns: 1fr !important;
  }
  header nav .header-right #header-button {
    display: none;
  }
  .header-burger {
    width: 36px;
    min-width: 36px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background: transparent;
    padding: 0;
  }
  .header-burger span {
    width: 100%;
    height: 2px;
    background: #1c1c1c;
  }
  .header__menu-open .header-right {
    visibility: visible;
    opacity: 1;
  }
  .header__menu-open .header-burger {
    position: relative;
    z-index: 3;
  }
  .header__menu-open .header-burger span {
    transition: transform 0.3s ease;
    position: absolute;
  }
  .header__menu-open .header-burger span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .header__menu-open .header-burger span:nth-child(2) {
    opacity: 0;
  }
  .header__menu-open .header-burger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
}
@keyframes smooth {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes forms {
  from {
    max-height: 0;
  }
  to {
    max-height: 95%;
  }
}
.container-forms {
  background: white;
  min-width: 50%;
  position: fixed;
  border-radius: 5px;
  max-height: 95%;
  display: flex;
  flex-direction: column;
  animation-name: forms;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
.container-forms .close-form {
  height: 5vh;
  text-align: end;
}
.container-forms .close-form img {
  height: 100%;
  vertical-align: baseline;
  cursor: pointer;
}
.container-forms .close-form img:hover {
  transform: rotateZ(180deg);
  transition: 1s;
}
.container-forms #forms {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  max-height: calc(100% - 5vh);
}
.container-forms #forms .submitted-message {
  text-align: center;
}

@media (max-width: calc(900px - 1px)) {
  .container-forms {
    min-width: 75%;
  }
}
@media (max-width: 599px) {
  .container-forms {
    min-width: 100%;
  }
}
.example-section {
  display: flex;
  justify-content: space-between;
  gap: var(--gap-main);
  align-items: center;
}

.screenshot-wrapper {
  position: relative;
  background: #fff;
  width: 100%;
}
.screenshot-wrapper.no-shadow:before {
  box-shadow: none;
}
.screenshot-wrapper.no-shadow .screenshot {
  border: 0;
}
.screenshot-wrapper:before {
  content: "";
  position: absolute;
  z-index: -1;
  box-shadow: 0 0 50px rgba(3, 42, 80, 0.25);
  top: 50%;
  bottom: 0;
  left: 30px;
  right: 30px;
  border-radius: 100px/10px;
}
@media (max-width: calc(900px - 1px)) {
  .screenshot-wrapper {
    width: 100%;
  }
}

.hero-section video {
  width: 100%;
  max-width: 50%;
}

.home--content-block {
  display: flex;
  flex-direction: column;
  gap: var(--gap-block);
}

@media (max-width: calc(900px - 1px)) {
  .hero-section {
    flex-direction: column;
  }
  .hero-section video {
    max-width: 100%;
  }
  .home--content-block {
    text-align: center;
    align-items: center;
  }
  .home--content-block .button {
    margin: 16px 0 24px;
  }
}
.main-points {
  background-color: #F2F5F8;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--gap-main);
}
.main-points .main-points--blocks {
  position: relative;
}
.main-points .main-points--blocks img {
  position: absolute;
  top: -5.5em;
}
.main-points .main-points--blocks p:not(:last-child) {
  margin-bottom: 1em;
}

@media (max-width: calc(900px - 1px)) {
  .main-points {
    grid-template-columns: 100%;
  }
  .main-points .main-points--blocks img {
    position: initial;
  }
}
.screenshot {
  width: 100%;
  border-radius: 0.6rem;
  border: 4px solid rgba(237, 240, 244, 0.4);
  display: block;
}

.image-section-white {
  padding: 0 var(--padding-section);
}
.image-section-white .pic--content {
  width: 100%;
}
.image-section-white .pic--content .display-1 {
  margin-bottom: var(--gap-block);
}

@media (max-width: calc(900px - 1px)) {
  .image-section-white {
    flex-direction: column !important;
  }
}
.dark-section {
  color: white;
  background-color: #032A50;
  text-align: center;
  border-radius: 10px;
}
.dark-section h3 {
  color: #3EB5E6;
  font-style: italic;
}
.dark-section .use-cases-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 599px) {
  .dark-section .use-cases-container {
    display: block;
  }
  .dark-section .use-cases-container div {
    padding-inline-start: 40px;
  }
  .dark-section .use-cases-container div img {
    display: none;
  }
  .dark-section .use-cases-container div p {
    text-align: left;
    display: list-item;
    list-style-type: square;
    font-weight: 600;
  }
}
.quote-section {
  padding: 0 var(--padding-section);
  text-align: center;
  text-wrap: balance;
  max-width: 820px;
}
.quote-section p {
  color: #3EB5E6;
  font-style: italic;
}

.centered-section {
  text-align: center;
  padding: 0 var(--padding-section);
}
.centered-section h2 {
  margin-bottom: var(--gap-block);
}
.centered-section span {
  text-wrap: balance;
}
.centered-section .partner-logos {
  margin-top: var(--margin-bottom-main);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: var(--gap-block);
}
.centered-section .partner-logos img {
  width: 100%;
}

@media (max-width: 599px) {
  .centered-section .partner-logos {
    gap: var(--margin-bottom-main);
    grid-template-columns: 100%;
  }
  .centered-section .partner-logos img {
    max-width: 204px;
  }
}
.front-page_background {
  background-color: #E4F4FF;
}

.section-front {
  padding: var(--padding-section-big) var(--padding-section);
  margin-bottom: 0;
}

.min--height {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.min--height-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-height: 1000px) {
  .min--height-child {
    min-height: auto !important;
  }
}

#click-img {
  cursor: pointer;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main--background {
  background-image: url("../img/front-page/main-block.png"), linear-gradient(#E4F4FF, #E3FEFC);
  background-position: 50% 10%;
  background-repeat: repeat-x;
  text-align: center;
  text-wrap: balance;
}

.front-main-section .section-front {
  padding: 0 var(--padding-section);
}
.front-main-section h1 {
  color: #29277F;
  margin: 0 0 1em;
  width: 60%;
}
.front-main-section #header-button {
  padding: 24px;
  font-size: var(--textM);
}
@media (max-width: calc(900px - 1px)) {
  .front-main-section h1 {
    width: 100%;
  }
}

.section-quote .section-front {
  display: flex;
  flex-direction: column;
  max-width: 50%;
  margin: auto;
}
.section-quote p {
  color: #123C7A;
  line-height: 1.2;
  font-weight: bolder;
  margin: 1em 0;
}
.section-quote p span {
  color: #3E95E6;
}
.section-quote img {
  margin-left: auto;
}
@media (max-width: calc(900px - 1px)) {
  .section-quote .section-front {
    max-width: 90%;
  }
}
@media (max-width: 599px) {
  .section-quote .min--height {
    min-height: auto !important;
  }
}

.img-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.front-partners-section {
  background-color: #123C7A;
}
.front-partners-section .section-front {
  padding-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.front-partners-section h2 {
  color: white;
  text-align: center;
  text-wrap: balance;
  margin-bottom: 2em;
}
.front-partners-section #click-img {
  max-width: 100%;
  height: 100%;
}
.front-partners-section #header-button {
  margin: 64px auto 0;
  padding: 24px;
  font-size: var(--textM);
}

.our-innovative {
  background-image: url("../img/front-page/our-innovative-backhround.png");
  background-color: #E4F4FF;
  background-position: 50% 100%;
  background-repeat: repeat-x;
}
.our-innovative .section-front {
  padding-bottom: calc(var(--padding-section-big) + 32px);
}
.our-innovative h2 {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 1.33em;
  color: #3496BE;
}
.our-innovative img {
  width: 100%;
}
@media (max-width: 599px) {
  .our-innovative .section-front {
    padding-bottom: var(--padding-section-big);
  }
}

.usual-section {
  background-color: #3E95E6;
  margin-bottom: -64px;
  align-items: stretch;
}
.usual-section > .section-front {
  padding: calc(var(--padding-section-big) + 32px) var(--padding-section);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.usual-section h2 {
  max-width: 70%;
  color: white;
  text-align: center;
  text-wrap: balance;
  margin: auto;
}
.usual-section #header-button {
  padding: 24px;
  font-size: var(--textM);
  margin-top: 64px;
}
@media (max-width: calc(900px - 1px)) {
  .usual-section .section-front {
    padding: var(--padding-section-big) var(--padding-section);
  }
  .usual-section h2 {
    max-width: 100%;
  }
}
@media (max-width: 599px) {
  .usual-section.min--height {
    min-height: auto !important;
  }
}

.partners-banner {
  width: 100%;
  padding: var(--padding-section) 0 0 0;
  max-width: none;
}
.partners-banner img {
  width: 100%;
}
.partners-banner .flex-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 25%;
  text-align: center;
  width: 50%;
}
.partners-banner .flex-centered h1 {
  margin-bottom: 0;
}
.partners-banner .flex-centered p {
  margin: 1em 0;
}
.partners-banner img {
  margin-top: 7%;
}
@media (max-width: calc(900px - 1px)) {
  .partners-banner img {
    margin-top: 20%;
  }
}
@media (max-width: 599px) {
  .partners-banner img {
    margin-top: 3%;
  }
}

@media (max-width: calc(1200px - 1px)) {
  .partners-banner .flex-centered {
    width: 60%;
    left: 20%;
  }
}
@media (max-width: 599px) {
  .partners-banner .flex-centered {
    position: initial;
    width: auto;
    padding-inline: var(--padding-section);
  }
}
.section-back-partner {
  background-color: #F2F5F8;
  padding: var(--padding-section);
  border-radius: 2em;
  width: 100%;
  box-sizing: border-box;
}

.partners-type {
  padding: 0 var(--padding-section);
}
.partners-type h3 {
  width: 45%;
  margin-top: 4vh;
  margin-bottom: 2vh;
}
.partners-type .type-block {
  display: flex;
  flex-direction: row;
  gap: var(--gap-main);
}
.partners-type .type-block p {
  width: 100%;
  margin: 0;
}
.partners-type .type-block .section-back-partner p {
  margin-top: 1em;
}
@media (max-width: calc(900px - 1px)) {
  .partners-type .type-block {
    flex-direction: column;
    gap: 0;
  }
  .partners-type .type-block .section-back-partner {
    margin-top: 2vh;
  }
}
@media (max-width: calc(900px - 1px)) {
  .partners-type h2 {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .partners-type h1 {
    margin-top: 0.2em;
  }
}

.partners {
  padding-top: 0;
}
@media (max-width: 599px) {
  .partners {
    padding-top: 0 !important;
  }
}
.partners h2 {
  width: 55%;
}
@media (max-width: calc(900px - 1px)) {
  .partners h2 {
    width: 100%;
    margin-bottom: 1.1em;
    margin-top: 0.2em;
  }
}
.partners .three-partners {
  display: flex;
  gap: var(--gap-block);
  flex-direction: row;
}
@media (max-width: calc(900px - 1px)) {
  .partners .three-partners {
    flex-direction: column;
  }
  .partners .three-partners .section-back-partner {
    width: 100% !important;
  }
}
.partners .three-partners .block-partnering {
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media (max-width: calc(900px - 1px)) {
  .partners .three-partners .block-partnering {
    flex-direction: row;
    gap: 8vw;
  }
  .partners .three-partners .block-partnering p {
    width: fit-content;
    padding-right: 3vw;
  }
}
.partners .three-partners .block-partnering .img-container {
  display: flex;
  width: 35%;
  align-items: center;
  padding: 4vh 0 2vh 0;
}
@media (max-width: calc(900px - 1px)) {
  .partners .three-partners .block-partnering .img-container {
    align-items: baseline;
    width: 25%;
    padding: 0;
  }
}
.partners .three-partners .block-partnering p {
  margin: 0;
}

.thanks {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thanks h1 {
  margin: 0 0 64px;
  font-size: 64px;
}
.thanks h1 span {
  color: #0C1FFF;
}
.thanks p {
  font-size: 24px;
  margin-bottom: 64px;
}
.thanks div {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
.thanks div img {
  max-width: 400px;
  width: 100%;
}

@media (max-width: 599px) {
  .thanks h1 {
    font-size: 24px;
    margin: 0 0 16px;
  }
  .thanks p {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .thanks div {
    flex-direction: column-reverse;
    gap: 32px;
  }
  .thanks div a {
    width: 100%;
  }
}
.contact-section {
  background-color: #F2F5F8;
  padding: 64px var(--padding-section);
  border-radius: 10px;
}
.contact-section h2 {
  text-align: center;
  margin-bottom: 0.5em;
}
.contact-section .contact-section--form {
  max-width: 480px;
  width: 100%;
  margin-inline: auto;
}
.contact-section .g-recaptcha {
  margin-top: 1em;
}
.contact-section .button-form-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1em;
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
textarea,
select {
  appearance: none;
  background-color: white;
  border: 1px solid #EDF0F4;
  border-radius: 0.4rem;
  box-shadow: none;
  box-sizing: inherit;
  height: 3.8rem;
  padding: 0.6rem 1rem;
  width: 100%;
}
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  border-color: #3EB5E6;
  outline: 0;
}
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=url]::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(3, 42, 80, 0.6);
}

select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#d1d1d1" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
  padding-right: 3rem;
}
select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#9b4dca" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>');
}

textarea {
  min-height: 6.5rem;
}

label,
legend {
  display: block;
  font-weight: normal;
  margin-bottom: 0.3rem;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: rgba(3, 42, 80, 0.75);
}

fieldset {
  border-width: 0;
  padding: 0;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

.label-inline {
  display: inline-block;
  font-weight: normal;
  margin-left: 0.5rem;
}

.section-form {
  min-height: 700px;
}
.section-form .container-forms {
  position: inherit;
  max-width: 480px;
  width: 100%;
  margin-inline: auto;
  max-height: 100%;
  animation: none;
}
.section-form .container-forms #forms {
  padding: 0;
}

footer {
  padding: var(--padding-footer);
  margin-top: 64px;
  color: #17425D;
  background-color: #F5F5F5;
  font-size: 16px;
  line-height: 1.3;
}
footer > div {
  max-width: 1440px;
  margin-inline: auto;
}
footer .header--logo {
  margin: 0;
  max-width: 272px;
  width: 100%;
}
footer a {
  text-decoration: underline !important;
}
footer a:hover {
  color: #3EB5E6 !important;
}
footer > div a {
  display: flex;
  width: fit-content;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 3fr;
  align-items: center;
  gap: 32px;
}
.footer-grid .footer_contacts {
  display: flex;
  gap: 16px;
}
.footer-grid .footer_contacts a {
  border-radius: 100%;
  transition: 0.2s;
}
.footer-grid .footer_contacts a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
.footer-grid .container-pages {
  display: flex;
}
.footer-grid .container-pages .footer_pages {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin-left: auto;
}
.footer-grid .container-pages .footer_pages li {
  list-style: none;
}
.footer-grid .container-pages .footer_pages a {
  color: inherit;
  width: max-content;
}

.footer_info {
  margin-top: 1em;
}
.footer_info > *:not(:first-child) {
  margin-top: 48px;
}

@media (max-width: calc(900px - 1px)) {
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 599px) {
  footer {
    font-size: 14px;
  }
  .footer-grid {
    margin-top: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid .footer_info {
    flex-direction: column-reverse;
  }
  .footer-grid .footer_info > *:not(:last-child) {
    margin-top: 32px;
  }
  .footer-grid .footer_info > *:last-child {
    margin-top: 0;
  }
  .footer-grid .footer_info .footer_contacts {
    margin-top: 16px;
    gap: 8px;
  }
  .footer-grid .footer_info .footer_contacts img {
    max-width: 32px;
  }
  .footer-grid .footer_info .footer_legal {
    gap: 16px;
  }
  .footer-grid .footer_pages {
    gap: 8px;
  }
}
.related-container {
  display: flex;
  justify-content: center;
}
.related-container .related-item {
  width: 100%;
}
.related-container .related-item:first-child {
  margin-right: 2rem;
}
.related-container .related-item:last-child {
  margin-left: 2rem;
}
.related-container .related-item .related-image {
  width: 100%;
}
.related-container .related-info h3 a {
  color: #3EB5E6;
  font-size: 16px;
  font-style: italic;
}

@media screen and (max-width: 1024px) {
  .related-container {
    flex-direction: column;
  }
  .related-container .related-item {
    width: 100%;
  }
  .related-container .related-item:first-child {
    margin-right: 0;
  }
  .related-container .related-item:last-child {
    margin-left: 0;
  }
  .related-container .related-image {
    width: 100%;
  }
}
#search-2 {
  display: none;
}

#sidebar1 ul {
  list-style-type: none;
  padding-left: 0;
}
#sidebar1 ul li {
  padding-bottom: 1rem;
}

.pagination {
  margin-top: 2rem;
  padding: 0 10px;
  flex-wrap: wrap;
}
.pagination a {
  color: #3EB5E6 !important;
}

.container {
  z-index: 0;
}

/*
Theme Name: AdoptoMedium
Theme URI: http://adoptomedia.com/blog
Author:
Author URI: http://adoptomedia.com
Text Domain: checkmedia
Domain Path: /library/translation
Description: Checkmedia theme based on Bohaute
Version: 1.0
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-menu, sticky-post, microformats, translation-ready, full-width-template, post-formats, one-column, two-columns, right-sidebar, custom-background, custom-colors, custom-logo, featured-images

*/
/*******************************************************************************************/
/*globals*/
/* font-family: "LatoBold"; */
/* font-family: "LatoItalic"; */
/* font-family: "LatoLight"; */
/* font-family: "LatoBoldItalic"; */
/* font-family: "LatoLightItalic"; */
body {
  /* font-family: "LatoLight", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; */
  background-color: white;
}

a {
  color: #3ea2cb;
  text-decoration: none;
  font-family: inherit;
}

a:hover {
  text-decoration: underline;
}

iframe {
  width: 100%;
}

.comment_content ol,
.entry-content ol {
  counter-reset: my-counter;
}

.comment_content ul,
.comment_content ol,
.entry-content ul,
.entry-content ol {
  margin: 0 30px 1em;
}

.widget li:before,
nav[role=navigation] li:before {
  content: "";
}

.clear {
  clear: both;
  display: block;
}

.front-wrapper #content {
  margin-top: 0;
}

.table {
  display: table;
  height: 100%;
  margin: 0 auto;
  width: 100%;
}

.table-cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

.tagcloud a {
  border: 1px solid #ddd;
  font-size: 14px !important;
  padding: 10px;
  display: inline-block;
  margin-bottom: 5px;
}

.full.d-5of7 {
  width: 100%;
}

.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  text-transform: uppercase;
  color: #ff9f02;
  display: inline-block;
  width: auto;
}

.footer-social a span {
  display: none;
}

.social-icons a:hover {
  border-bottom: 1px solid #aaa;
}

.left-area {
  float: left;
}

.right-area {
  float: right;
}

/*required css*/
#logo {
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  width: auto;
}

#logo a {
  font-family: inherit;
  color: #3ea2cb;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
}

#logo a:hover,
#logo a:focus {
  text-decoration: none;
}

#logo a span {
  display: block;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  text-transform: none;
}

.nav-show {
  display: block !important;
}

#top-area {
  background-color: #3ea2cb;
  color: #fff;
}

.top-search-form {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.top-search-form input[type=text] {
  background-position: 5px center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  position: relative;
  -webkit-transition: width 400ms ease, background 400ms ease;
  transition: width 400ms ease, background 400ms ease;
  width: 0;
}

.top-search-form input[type=text]:focus {
  width: 300px;
}

#top-area a.social-tw {
  color: #fff;
  display: inline-block;
  margin: 4px 2px;
}

.top-search-form input[type=text] {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 0 0 0 30px;
  margin: 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.top-search-form button[type=submit] {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  display: none;
}

#top-area::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

#top-area:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
  opacity: 1;
}

#top-area::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  opacity: 1;
}

#top-area:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

/*blog list*/
#blog {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.widget-area-wrap {
  position: absolute;
  right: 5px;
  top: 0;
}

.gutter-sizer {
  width: 1.7%;
}

.blog-list {
  margin-bottom: 140px;
}

.blog-list .item,
.blog-list .widget-item {
  /* width: 47.4%;
      float: left; */
  margin-top: 2rem !important;
  list-style: none;
  box-sizing: border-box;
  background: #fff;
  margin-right: 9px;
  display: flex;
  padding-bottom: 2rem;
}

.item-info {
  flex-grow: 1;
  height: 215px;
  display: flex;
  flex-direction: column;
}

.item-info > p {
  overflow: hidden;
  bottom: 0;
}

.item-img {
  flex: 0 0 auto;
  width: 300px;
  height: 215px;
  margin-left: 50px;
  margin-right: 3rem;
}

.blog-list .item.masonry-brick,
.blog-list .widget-item.masonry-brick {
  margin-left: 0;
  margin-right: 0;
}

.blog-list .widget-item {
  float: none;
}

.blog-list li:before {
  content: "";
}

.blog-list .item h2,
.blog-list .widget-item h2,
article.post h2.post-title,
h2.post-title {
  font-size: 1.5rem;
  margin: 0;
  font-family: inherit;
  color: #444;
  text-align: left;
  font-weight: 600;
}

article.post h2.post-title,
h2.post-title {
  text-align: center;
}

.blog-list .item a,
.blog-list .widget-item a,
article.post h2.post-title a,
h2.post-title {
  text-decoration: none;
  position: relative;
  color: #444;
  font-size: 1.5rem;
  font-weight: 600;
}

.blog-list .item p,
.blog-list .widget-item p {
  margin: 20px 0;
}

.blog-list .item .meta-cat,
.blog-list .widget-item .meta-cat,
article.post .meta-cat {
  text-align: center;
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.blog-list .item .meta-cat a,
.blog-list .widget-item .meta-cat a,
article.post .meta-cat a {
  color: #3EB5E6 !important;
  font-size: 16px !important;
}

.blog-list .item .meta-cat a,
article.post .meta-cat a {
  color: #3ea2cb;
  font-size: 14px;
  font-family: inherit;
  font-style: italic;
  font-weight: 300;
  text-decoration: none;
}

.blog-list .item blockquote,
.blog-list .widget-item blockquote {
  margin: 0;
}

.blog-list .item .excerpt {
  padding: 0 15px;
}

.blog-list .item a.excerpt-read-more {
  display: none;
}

.read-more {
  font-size: 14px;
  font-weight: 400;
}

p.format-link a {
  display: block !important;
  text-align: center;
  color: #fff;
}

p.format-link a:hover {
  text-decoration: underline;
}

.blog-list .item img,
.blog-list .widget-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.title-page-info {
  align-items: center;
  vertical-align: center;
}

/*formats*/
#quote-item {
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  position: relative;
  text-align: center;
}

#quote-item.has-bg {
  background-position: center center;
  background-size: cover;
}

#quote-item .fa-quote-left {
  color: #d0d0d0;
  left: 20px;
  position: absolute;
  top: 20px;
}

#quote-item .fa-quote-right {
  color: #d0d0d0;
  right: 20px;
  position: absolute;
  bottom: 20px;
  z-index: 2;
}

.quote-item-content {
  position: relative;
  padding: 40px;
  z-index: 2;
}

.quote-overlay {
  background-color: rgba(255, 255, 255, 0.8);
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-list .item a:hover span.fa,
.blog-list .widget-item a:hover span.fa {
  color: #adadad;
}

.blog-list .item.format span.fa,
.blog-list .widget-item.format span.fa {
  bottom: 20px;
  color: #fff;
  display: block;
  font-size: 30px;
  left: 0;
  padding-right: 20px;
  position: absolute;
  text-align: right;
  text-shadow: 1px 2px 4px #aaa;
  width: 100%;
}

.quote-content {
  font-style: italic;
}

.quote-source {
  font-weight: bold;
}

.chat-content .wp-smiley {
  margin: 0;
}

body .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: #fff;
}

body .mejs-controls .mejs-time-rail .mejs-time-current {
  background: #ddd;
}

body .mejs-container {
  margin: 20px 0;
}

body .audio-format-wrap {
  position: relative;
  min-height: 36px;
}

body .audio-format .mejs-container {
  margin: 0;
}

body .audio-format {
  position: relative;
  width: 100%;
  bottom: 0;
}

.chat-link-quote-format {
  background: #3ea2cb;
  padding: 10px;
  color: #fff;
  text-align: center;
  font-family: inherit;
  font-size: 22px;
}

.audiojs {
  width: 100%;
  background: #222;
}

.audiojs .play-pause {
  width: 40px;
}

.audiojs .play-pause p {
  margin: 0;
}

.audiojs .scrubber {
  width: 40%;
}

.audiojs .loaded {
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.33);
  width: 100% !important;
}

.audiojs .progress {
  background: none repeat scroll 0 0 #ddd;
}

.audiojs .error-message {
  width: auto;
}

/*load more*/
.ias-trigger {
  text-align: center;
  margin: 40px 0;
}

.ias-trigger a {
  border: 1px solid #fdfdfd !important;
  color: #fff !important;
  font-family: inherit;
  text-decoration: none;
  padding: 15px 30px;
  text-transform: uppercase;
}

.ias-noneleft,
.ias-spinner {
  position: absolute;
  bottom: -100px;
  width: 100%;
}

.ias-trigger-next {
  position: absolute;
  bottom: -130px;
  width: 100%;
}

/*single-post*/
.main-content-area {
  background: #fff;
  padding: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.entry-content {
  padding: 0;
}

.entry-content p {
  margin: 0;
  margin-bottom: 1rem;
}

.entry-content li {
  padding-bottom: 1rem;
}
.entry-content li:last-child {
  padding-bottom: 0;
}

.entry-content a {
  font-family: inherit;
  padding: 20px 0 0;
}

.header[role=banner] {
  background: #fff;
}

.hentry .article-header {
  padding: 0;
}

.article-header h1 {
  font-size: 28px;
  font-family: inherit;
  color: inherit;
}

h1.archive-title {
  background-color: #fff;
  color: #3EB5E6 !important;
  font-family: inherit;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  margin-top: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  word-wrap: break-word;
}

.tag-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  text-align: left;
  padding-left: 10px;
  white-space: nowrap;
  margin-top: 2rem;
}

.tag-links a {
  margin: 5px;
  font-family: inherit;
  background-color: #F2F5F8;
  padding: 10px 10px;
  border-radius: 3px;
  align-items: center;
  color: #444;
}

.wp-block-table tr td {
  border: 1px solid #eaeaea;
  border-radius: 2px;
}

.next-prev-post {
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 2px solid #fff444;
}

.next-prev-post .prev {
  float: left;
  width: 50%;
}

.next-prev-post .prev,
.next-prev-post .next {
  font-family: inherit;
}

.next-prev-post .prev p,
.next-prev-post .next p {
  margin-bottom: 0;
}

.next-prev-post .next {
  float: right;
  width: 50%;
  text-align: right;
}

.next-prev-post .next a,
.next-prev-post .prev a {
  font-size: 24px;
  text-decoration: none;
}

.next-prev-post .next p span,
.next-prev-post .prev p span {
  font-weight: bold;
}

footer.below-content-area {
  border: none;
  margin-top: 15px;
}

.author-info {
  text-align: center;
  font-size: 14px;
}

.author-info .author-name {
  margin-top: 10px;
  color: #444;
  font-size: 1rem;
}

.author-info .author-desc {
  text-align: left;
}

body .byline {
  margin-top: 0;
  font-style: normal;
  color: #aaa;
  font-family: inherit;
}

body.page-template-full-width-php .byline {
  display: none;
}

body .hentry footer {
  padding: 0;
}

body #comments-title {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 20px;
}

body .comment-respond {
  padding: 0 0 20px;
  margin-top: 30px;
}

body .comment {
  margin-bottom: 30px;
}

body .comment .comment-author {
  margin: 0;
  width: auto;
  padding: 0;
}

body .comment_content {
  box-sizing: border-box;
  margin-bottom: 5px;
  margin-left: 75px;
}

body .comment:not(.depth-1) {
  padding: 0;
}

body .comment.depth-3 {
  margin-bottom: 20px;
}

body .comment_content p {
  margin-bottom: 0;
}

body .comment .vcard {
  margin-left: 0;
  margin-right: 10px;
}

body .comment .vcard .avatar {
  position: static;
  float: left;
}

body cite.fn {
  font-style: normal;
  font-family: inherit;
  font-size: 20px;
}

body .comment_content time {
  display: block;
}

body .comment_content time a {
  color: #aaa;
  font-size: 14px;
  text-decoration: none;
}

body .comment-reply-link {
  margin: 0;
}

body .comment-inner {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

body.page #comments-title {
  border-top: 1px solid #ddd;
}

.video-container {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.video-container iframe,
.video-container embed {
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
}

.comment-notes {
  text-align: center;
  font-size: 14px;
  font-style: italic;
}

/*comments*/
nav.comment-navigation[role=navigation] {
  float: none;
  width: 100%;
  border: 1px solid #ddd;
  padding: 15px;
  box-sizing: border-box;
}

/*widgets*/
body .sidebar {
  margin-top: 1.6rem;
}

body .sidebar a {
  text-decoration: none;
}

body .sidebar a:hover {
  text-decoration: underline;
}

body .sidebar .widget {
  border-radius: 3px;
  margin-bottom: 28px;
}

body .sidebar .widget .widgettitle,
.item.widget .widgettitle {
  margin-bottom: 2rem;
  font-family: inherit;
  color: #3EB5E6;
  font-size: 1.2rem;
  font-weight: 500;
}

body .sidebar img {
  width: 100%;
  height: auto;
}

body .rsswidget img,
.blog-list .item .rsswidget img,
.blog-list .widget-item .rsswidget img {
  width: auto;
}

.widget:first-child {
  margin-top: 0;
}

.widget:first-child h4 {
  margin-top: 0;
}

/* .widget ul li {
      border-bottom: 1px solid #444;
      padding-bottom: 10px;
  } */
.widget ul li.menu-item-has-children ul,
.widget ul li.page_item_has_children ul {
  margin-bottom: 0;
}

.widget ul li.menu-item-has-children li,
.widget ul li.page_item_has_children li {
  border-bottom: none;
  margin-bottom: 0;
}

.searchform .screen-reader-text {
  display: none;
}

.searchform {
  min-height: 40px;
  position: relative;
}

.searchform input[type=text] {
  background: none;
  border-bottom: 1px solid rgb(148, 145, 145);
  width: 100%;
  position: absolute;
  z-index: 1;
  max-width: 100%;
}

.searchform #s:placeholder-shown + input[type=submit] {
  display: block;
}

.searchform input[type=submit] {
  padding-left: 0;
  display: none;
  /* float: right; */
  border-radius: 0 3px 3px 0;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translate(-0.75rem, -50%);
  transition: transform 0.2s ease-out;
}

.searchform input[type=text]:focus + input[type=submit] {
  transform: translate(0, -50%);
}

.widget #wp-calendar {
  width: 100%;
}

.widget #wp-calendar td {
  text-align: center;
  font-family: inherit;
}

.widget #wp-calendar td#today {
  font-weight: bold;
}

.widget #wp-calendar caption {
  background: #3ea2cb;
  color: #fff;
  text-transform: uppercase;
  padding: 8px 0;
  font-family: inherit;
}

.widget #wp-calendar thead {
  border: 1px solid #aaa;
}

.related-posts {
  text-align: center;
}

.related-posts .section-title,
#reply-title,
body #comments-title {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: #444;
}

#reply-title {
  padding-bottom: 1rem;
}

.logged-in-as {
  display: flex;
  justify-content: center;
}

.logged-in-as > * {
  margin-right: 0.33rem;
  color: #444;
}

/*footer*/
footer.footer[role=contentinfo] {
  background: #3ea2cb;
  /*padding: 40px 0;*/
  text-align: center;
}

footer.footer[role=contentinfo] p {
  color: #fff;
}

footer .copyright,
footer .footer-social {
  float: left;
  width: 50%;
}

footer .copyright a,
footer .footer-social a {
  color: #fff;
}

footer .copyright {
  text-align: left;
  font-size: 14px;
  font-style: italic;
}

footer .footer-social {
  text-align: right;
}

footer .footer-site-dec #logo {
  margin: 0;
}

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

footer .footer-social a:last-child {
  margin-right: 0;
}

footer .widget {
  width: 32.1%;
  display: inline-block;
  vertical-align: top;
  margin: 20px 20px 20px 0 !important;
  padding: 0;
}

footer .widget:nth-child(3n+3) {
  margin-right: 0 !important;
}

footer .widget img {
  width: 100%;
  height: auto;
}

footer .widget .rsswidget img {
  width: auto;
  height: auto;
}

footer .widget .widgettitle {
  margin-top: 0;
  font-family: inherit;
  color: #ff9f02;
  font-size: 28px;
  border-bottom: none;
  font-weight: normal;
}

footer .widget a,
footer.footer[role=contentinfo] p.copyright a {
  color: #ff9f02;
  font-size: 18px;
}

footer .widget ul li {
  border-bottom: none;
  padding: 0;
}

body.paged footer .copyright span {
  display: none;
}

footer button,
footer html input[type=button],
footer input[type=reset],
footer input[type=submit] {
  background-color: #ffb53c;
}

/*scroll to top*/
.scrollToTop {
  /*background-color: #fff;*/
  border: none !important;
  bottom: 0;
  display: none;
  font-size: 12px;
  height: 35px;
  padding: 1px 5px;
  position: fixed;
  right: 0;
  text-align: center;
  text-decoration: none;
  width: 50px;
}

.scrollToTop:focus {
  outline: none;
}

.scrollToTop span {
  color: white !important;
  display: block;
  font-size: 40px;
}

.scrollToTop:hover {
  text-decoration: none;
}

/*responsive nav*/
#responsive-nav,
.no-display {
  display: none;
}

/*gallery*/
.gallery {
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.gallery:after {
  display: table;
  content: "";
  clear: both;
}

.gallery-item {
  margin: 0;
  float: left;
  padding: 0.5em;
  text-align: center;
}

.gallery-item img {
  margin: 0;
  vertical-align: bottom;
  width: auto;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
  float: none;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.3333%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.6667%;
}

.gallery-columns-7 .gallery-item {
  width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
  clear: left;
}

.gallery .gallery-caption {
  background: #ddd;
  padding: 10px;
  color: #aaa;
  line-height: 1.5em;
  margin-bottom: 0;
}

.pagination a:focus,
.pagination a:hover,
.pagination span:focus,
.pagination span:hover {
  background-color: transparent;
  color: inherit;
}

blockquote:before {
  display: inline-block;
  content: "";
  background-image: url("../../../library/images/quote.svg");
  height: 3.5rem;
  width: 3.5rem;
  position: absolute;
  top: 0;
  left: -5rem;
}

blockquote {
  position: relative;
  margin: 2.5rem 10rem 2.5rem 13rem;
}

/*media queries*/
@media screen and (max-width: 1279px) {
  body #logo {
    margin: 28px 0;
    font-size: 30px;
  }
}
@media screen and (max-width: 1039px) {
  .gutter-sizer {
    width: 3.5%;
  }
  body .wrap {
    width: 660px;
  }
  .blog-list .item,
  .blog-list .widget-item {
    width: 48%;
  }
  .widget-area-wrap {
    right: 1px;
  }
  body #logo {
    font-size: 30px;
    margin: 12px 0;
  }
  .no-display {
    display: block;
  }
  body nav[role=navigation] {
    margin: 0;
  }
  nav[role=navigation] .nav li {
    padding: 10px 0;
  }
  nav[role=navigation] .nav li ul {
    height: auto;
  }
  #main-navigation ul li {
    padding: 0;
  }
  #responsive-nav {
    display: block;
    cursor: pointer;
    width: auto;
    text-align: center;
    height: 50px;
  }
  #responsive-nav h4 {
    margin: 0;
    color: #fff;
  }
  #responsive-nav .nav-icon {
    font-size: 30px;
    margin: 15px 0;
    color: #3ea2cb;
    display: block;
  }
  #main-navigation {
    display: none;
    float: none;
    width: 100%;
    position: absolute;
    z-index: 999;
    left: 0;
    background: #3ea2cb;
    min-height: 320px;
    height: auto;
    overflow: auto;
  }
  #main-navigation ul {
    width: 70%;
    margin: 0 auto;
    float: none;
  }
  #main-navigation ul li {
    display: block;
    text-align: center;
    margin: 0;
    float: none;
  }
  #main-navigation ul li a {
    border-left: 0;
    border-right: none;
    border-top: none;
    display: block;
    padding: 10px 0;
    text-align: left;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    font-size: 15px;
    color: #fff;
  }
  #main-navigation ul li a:hover {
    color: #ddd;
  }
  #main-navigation ul li ul.sub-menu,
  #main-navigation ul li ul.children {
    background: none;
    border: none !important;
    max-width: 100%;
    min-width: 100%;
  }
  #main-navigation ul li ul.sub-menu,
  #main-navigation ul li ul.children {
    display: block;
    margin-top: 5px !important;
    padding: 0;
    position: relative;
    width: 90%;
    visibility: visible;
  }
  #main-navigation ul li ul.sub-menu li,
  #main-navigation ul li ul.children li {
    width: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: block;
    padding: 0;
  }
  nav[role=navigation] .nav li ul li a:hover,
  nav[role=navigation] .nav li ul li a:focus,
  nav[role=navigation] .nav li ul li a,
  nav[role=navigation] .nav li ul {
    background: none !important;
  }
  #main-navigation ul li ul.sub-menu li a,
  #main-navigation ul li ul.children li a {
    padding: 10px;
  }
  #main-navigation ul li ul.sub-menu ul.sub-menu,
  #main-navigation ul li ul.children ul.children {
    width: 100%;
    left: 20px;
    max-width: 100%;
    min-width: 100%;
  }
  .blog-list .widget-item {
    width: 100%;
  }
  .blog-list .widget-item:nth-child(2n+2) {
    margin-right: 0;
  }
  .widget-area-wrap {
    width: 48%;
  }
  .t-2of3,
  .t-1of3 {
    padding: 0;
  }
  .main-content-area {
    margin: 1rem 0 0;
  }
  .hentry {
    margin-bottom: 0;
  }
  .related-item {
    width: 32%;
  }
  footer .widget {
    width: 48%;
  }
  footer .widget:nth-child(3n+3) {
    margin-right: 20px !important;
  }
  footer .widget:nth-child(2n+2) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 839px) {
  footer .footer-social {
    float: none;
  }
  article.archive .entry-content {
    margin: 0;
  }
  article.archive img {
    margin-right: 30px;
  }
  body .avatar {
    float: none;
  }
  body .avatar img {
    display: block;
    margin: 0 auto;
  }
  #top-area .left-area {
    display: none;
  }
  #top-area .right-area {
    float: none;
    text-align: center;
  }
  footer .copyright,
  footer .footer-social {
    text-align: left;
    width: 100%;
  }
  blockquote {
    text-align: center;
    margin-left: 3rem;
    margin-right: 2rem;
  }
  blockquote:before {
    width: 2rem;
    height: 2rem;
    left: -2rem;
  }
}
@media screen and (max-width: 699px) {
  body .wrap {
    width: 100%;
  }
  .blog-list .item,
  .widget-area-wrap {
    width: 47.4%;
  }
  .widget-area-wrap {
    right: 0;
  }
  .audiojs .scrubber {
    display: none;
  }
  .entry-content ul {
    padding-left: 0;
  }
}
@media screen and (max-width: 539px) {
  .blog-list .item,
  .widget-area-wrap {
    width: 47%;
  }
  .related-item {
    width: 100%;
  }
  .related-item img {
    height: 200px;
  }
  footer .widget {
    width: 100%;
    margin: 0 0 30px !important;
  }
}
@media screen and (max-width: 499px) {
  .blog-list .item,
  .blog-list .widget-item,
  .widget-area-wrap {
    width: 100%;
  }
  .widget-area-wrap {
    position: absolute;
  }
  body #logo img {
    width: 250px;
  }
  body #logo {
    font-size: 22px;
  }
  body .comment article.cf {
    margin-bottom: 20px;
  }
}
/*Custom*/
.footer {
  background-color: rgba(0, 20, 56, 0.7) !important;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-size: 16px;
}

#footer {
  max-width: 1140px;
  margin: 0 auto;
  height: 24px;
  padding: 0 15px 0 15px;
}

#footer div {
  float: left;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

#footer .small {
  float: right;
  line-height: 1.8;
}

.below-content-area {
  background-color: rgb(255, 255, 255) !important;
  padding: 20px !important;
}

.excerpt,
.entry-content {
  color: #444;
}

.sidebar {
  color: #3ea2cb !important;
}

#searchsubmit {
  background: rgba(0, 0, 0, 0);
}

#commentform {
  color: #444;
}

#comment,
#author,
#email,
#url {
  border: solid 1px rgb(141, 140, 140) !important;
  border-radius: 3px;
}

.author-info {
  border-radius: 3px;
}

#submit {
  background: #3ea2cb !important;
  color: white !important;
}

.form-submit {
  padding-top: 1rem;
}

#submit,
.blue-btn,
.comment-reply-link {
  border-radius: 3px;
  padding: 0 16px;
}

.logged-in-as a {
  color: #444 !important;
}

.comment_content {
  color: black;
}

.container {
  margin-top: 100px;
}

#container {
  min-height: 100vh;
}

#sidebar1 {
  background: rgba(0, 0, 0, 0);
}

@media screen and (max-width: 1024px) {
  #sidebar1 {
    margin-top: 150px;
  }
}
#sidebar1 a {
  color: #444 !important;
}

#inner-content {
  margin: 0;
}

.front-wrapper {
  min-height: calc(100vh - 46px);
}

.article-header {
  width: 100%;
}

.ias-noneleft {
  color: white;
}

#searchform input {
  color: #444 !important;
}

#categories-2 {
  padding-top: 10px;
}

#masonry {
  margin: 0;
}

.footer-flex {
  display: flex;
  flex-wrap: nowrap;
}

.footer-flex-item {
  flex-grow: 1;
  text-align: center;
  padding-right: 50px;
}

.footer-flex-item:first-of-type {
  text-align: left;
  padding-right: 0;
}

.footer-flex-item:last-of-type {
  text-align: right;
  padding-right: 0;
}

#overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

#languageDropdown {
  position: absolute;
  z-index: 9999;
}

.language-option {
  padding: 10px 40px 10px 40px;
  cursor: pointer;
  border-top: solid 1px #dadada;
  transition: linear 0.1s;
  border-radius: 0.25rem;
}

.language-option:hover {
  background: #f3f3f3;
  transition: linear 0.1s;
}

.language-option:first-of-type {
  border-top: 0;
  transition: linear 0.1s;
}

.language-option:hover {
  background: #dfdfdf;
}

.menu-nose {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
  margin: 0 auto;
}

.language-options {
  background: white;
  border-radius: 0.25rem;
}

#container {
  width: 100vw;
  padding: 3vh 3vw;
}

.navbar--link,
.navbar--link:hover,
.navbar--link:visited {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

#optimize {
  text-decoration: none;
}

.navbar {
  background: #001438;
}

.has-ok:before {
  display: inline-block;
  content: "\f00c";
  color: green;
  font-family: FontAwesome;
  padding-right: 0.5rem;
}

.has-ok-blue:before {
  display: inline-block;
  content: "\f00c";
  color: #3ea2cb;
  font-family: FontAwesome;
  padding-right: 0.5rem;
}

.has-close::before {
  display: inline-block;
  content: "\f00d";
  color: rgb(172, 72, 72);
  font-family: FontAwesome;
  padding-right: 0.5rem;
}

.main-table {
  border: solid 1px rgb(58, 58, 58);
  border-collapse: collapse;
}

.rtl {
  padding: 0.8rem;
}

.stripe {
  border-bottom: solid 1px rgb(58, 58, 58);
}

.name-table {
  text-align: center;
  background-color: rgb(229, 229, 229);
}

.stripe-right {
  border-right: solid 1px rgb(58, 58, 58);
}

@media screen and (max-width: 1039px) {
  .desktop-table {
    display: none;
  }
}
@media screen and (min-width: 1039px) {
  .mobile-table {
    display: none;
  }
}
.flex {
  display: flex;
}

.entry-content tr:nth-child(2n+2) {
  background-color: inherit;
}

.entry-content tr {
  border: none;
}

.entry-content td {
  vertical-align: top;
}

.entry-content .main-table {
  border: solid 1px #666;
  margin-bottom: 1rem;
}

.related-item img {
  max-height: 300px;
  object-fit: cover;
  width: 100%;
}

.excerpt.read-more {
  overflow: auto;
}

@media screen and (min-width: 1025px) {
  #blog,
  #inner-content {
    display: flex;
    /* flex-wrap: wrap; */
    margin: 0 auto;
    width: 100%;
  }
  #main {
    margin: 0 auto;
    float: none;
  }
  #masonry {
    flex-grow: 1;
    margin-top: 0 !important;
  }
  #sidebar1 {
    display: inline-block;
    max-width: 20rem;
    min-width: 15rem;
  }
}
@media screen and (max-width: 1024px) {
  #container {
    padding-top: 0;
  }
  .blog-list .item, .blog-list .widget-item {
    padding-bottom: 0;
  }
  .blog-list .item .meta-cat, .blog-list .widget-item .meta-cat, article.post .meta-cat {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .main-content-area {
    padding-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  #masonry {
    padding: 0;
    margin-top: 0;
  }
  #masonry article {
    width: 100%;
    flex-direction: column-reverse;
    margin-left: 0;
    margin-right: 0;
  }
  #blog,
  #inner-content {
    flex-direction: column;
    margin: 0 auto;
  }
  p img {
    margin-bottom: 1rem;
    margin-top: 1rem;
    width: unset;
    height: unset;
    object-fit: contain;
  }
  #masonry article .item-img {
    width: 100%;
    margin: 0;
    height: unset;
    margin-bottom: 20px;
  }
  #masonry article .item-img:empty {
    display: none;
  }
  #masonry article .item-img img {
    width: 100%;
    height: auto;
    max-height: 200px;
  }
  h1.archive-title {
    margin-bottom: 1rem;
  }
  .item-info {
    height: auto;
  }
  .item-info > p {
    height: 150px;
    padding: 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
  .blog-list .item h2, .blog-list .widget-item h2, article.post h2.post-title, h2.post-title {
    padding-left: 0;
    padding-right: 0;
  }
  #masonry .search-block {
    padding-right: 0;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    box-sizing: border-box;
  }
  #sidebar1 {
    margin-top: 2rem !important;
  }
  .category-list {
    bottom: unset;
    right: unset;
    top: 100%;
    left: 15px;
  }
  .read-more-container {
    flex-direction: column;
  }
  .read-more-container a {
    padding-left: 0;
  }
  .read-more-link {
    padding-left: 0;
  }
}
.request-demo {
  background-color: #3EB5E6;
  border: 0.1rem solid #3EB5E6;
  border-radius: 0.2rem;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  height: 3.8rem;
  line-height: 3.8rem;
  padding: 0 3rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  margin-top: 2rem;
}

.request-demo:hover {
  background-color: #1c9fd5;
  border-color: #1c9fd5;
  color: #ffffff;
  outline: 0;
}

.request-demo,
.request-demo:focus {
  outline: none;
}

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

.big-title {
  font-size: 2rem !important;
}

.read-more-link {
  text-decoration: none;
  font-size: 14px !important;
  color: #3EB5E6 !important;
  position: relative;
  font-weight: 400 !important;
  margin-top: 20px;
}

.read-more-container {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.read-more-container > .category-list {
  bottom: 0;
  right: 20px;
}

.read-more-container > .category-list > * {
  color: #3EB5E6 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.flex-center {
  display: flex;
  justify-content: space-around;
}

.prev-page::before {
  content: "\f177";
  font-family: FontAwesome;
  margin-right: 10px;
}

.prev-page {
  text-decoration: none !important;
}

.next-page {
  font-family: FontAwesome;
}

.header a {
  color: rgba(3, 42, 80, 0.75) !important;
  font-size: 1rem !important;
}

table {
  border: #eaeaea;
}
table tbody > tr > td {
  padding: 10px;
}

.search-block {
  position: relative;
  padding-right: 60px;
  margin-bottom: 3rem;
}
.search-block .search-blog {
  border: none;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  height: 4rem;
}

.search-blog::placeholder {
  color: rgba(0, 40, 65, 0.5);
  font-weight: 400;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
  display: block;
}

.g-recaptcha > * {
  margin: 0 auto;
}

.window-gdpr {
  padding-bottom: 1rem;
  position: sticky;
  bottom: 10%;
  background-color: #fff;
  padding-top: 1rem;
  z-index: 2;
  box-shadow: 0 5px 10px rgba(64, 113, 160, 0.1);
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
.window-gdpr.hidden {
  display: none;
}
.window-gdpr .window-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  padding-top: 0;
}
.window-gdpr .window-container .blue-button {
  font-size: 1em;
  height: 3em;
  line-height: 3em;
  padding: 0 1.3em;
  margin-left: 2rem;
}
.window-gdpr .window-container .bordered-button {
  background-color: transparent;
  color: #3EB5E6;
  font-size: 1em;
  height: 3em;
  line-height: 3em;
  padding: 0 1.3em;
}
.window-gdpr .window-container .title-window {
  font-size: calc(1.125rem + (1vw - 4.8px) * 1.1111);
  font-weight: 600;
  margin-top: 0.2em;
}
.window-gdpr .text-window {
  padding: 0 1rem;
}

.section-info .home--hero::before {
  background-image: none;
  display: none;
}

.section-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
@media (max-width: 599px) {
  .section-legal {
    font-size: 14px;
    min-height: calc(100vh - 15rem);
    padding-top: 0;
  }
}
.section-legal .section-legal-content {
  max-width: 60rem;
  min-width: 50vw;
  position: relative;
  z-index: 1;
}
.section-legal .hero-lead, .section-legal .button {
  text-align: left;
  font-size: 20px;
}
.section-legal .hero-lead a, .section-legal .button a {
  color: #3EB5E6;
  text-decoration: none;
}
@media (max-width: 599px) {
  .section-legal .hero-lead, .section-legal .button {
    font-size: 14px;
  }
}
.section-legal .note {
  font-size: calc(1rem + (1vw - 4.8px) * 0.2778);
  line-height: 1.78;
}
.section-legal .display-1 {
  margin-bottom: 1rem;
}

.section-legal-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--padding-section);
  position: relative;
}
.section-legal-info .section-legal-content {
  max-width: 60rem;
  min-width: 50vw;
  position: relative;
  z-index: 1;
  width: 100%;
}
.section-legal-info .section-legal-content .section-legal-title {
  margin-top: 0;
  text-align: left;
  color: #3EB5E6;
  cursor: pointer;
}
.section-legal-info .section-legal-content .section-legal-title:hover {
  color: #1c9fd5;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-title {
    font-size: 16px;
  }
}
.section-legal-info .section-legal-content .section-legal-text {
  display: none;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text {
    font-size: 14px;
  }
}
.section-legal-info .section-legal-content .section-legal-text .section-legal-subtitle {
  font-size: 20px;
  text-align: left;
  padding-top: 2rem;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .section-legal-subtitle {
    font-size: 14px;
    padding-top: 1rem;
  }
}
.section-legal-info .section-legal-content .section-legal-text .section-legal-subtitle div {
  padding-bottom: 2rem;
  padding-top: 0.5rem;
  font-size: 20px;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .section-legal-subtitle div {
    font-size: 14px;
    padding-bottom: 1rem;
  }
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .hero-lead, .section-legal-info .section-legal-content .section-legal-text .button {
    font-size: 14px;
  }
}
.section-legal-info .section-legal-content .section-legal-text .hero-lead.special-lead, .section-legal-info .section-legal-content .section-legal-text .special-lead.button {
  margin: 0;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .hero-lead.special-lead, .section-legal-info .section-legal-content .section-legal-text .special-lead.button {
    font-size: 14px;
  }
}
.section-legal-info .section-legal-content .section-legal-text .hero-sublead {
  font-style: italic;
  padding-top: 1rem;
  padding-bottom: 2rem;
  margin: 0;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .hero-sublead {
    font-size: 14px;
    padding-bottom: 1rem;
    padding-top: 0.5rem;
  }
}
.section-legal-info .section-legal-content .section-legal-text .hero-paragraph {
  margin-top: 0;
  margin-bottom: 0;
}
.section-legal-info .section-legal-content .section-legal-text .hero-paragraph:last-child {
  margin-bottom: 2rem;
}
.section-legal-info .section-legal-content .section-legal-text .paragraph {
  padding-bottom: 2rem;
  margin: 0;
  font-size: 20px;
  text-align: left;
  line-height: 1.78;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .paragraph {
    font-size: 14px;
    padding-bottom: 1rem;
  }
}
.section-legal-info .section-legal-content .section-legal-text .paragraph a {
  color: #3EB5E6;
  text-decoration: none;
}
.section-legal-info .section-legal-content .section-legal-text .paragraph.special {
  padding-top: 2rem;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .paragraph.special {
    padding-top: 0.5rem;
  }
}
.section-legal-info .section-legal-content .section-legal-text .section-legal-list {
  padding-top: 2rem;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .section-legal-list {
    font-size: 14px;
    padding-top: 1rem;
  }
}
.section-legal-info .section-legal-content .section-legal-text .section-legal-list li {
  line-height: 1.78;
  font-size: 20px;
  padding-bottom: 1rem;
  text-align: left;
}
.section-legal-info .section-legal-content .section-legal-text .section-legal-list li:last-child {
  padding-bottom: 2rem;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .section-legal-list li:last-child {
    padding-bottom: 1rem;
  }
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .section-legal-list li {
    font-size: 14px;
    padding-bottom: 0.5rem;
  }
}
.section-legal-info .section-legal-content .section-legal-text .list-lead {
  text-align: left;
  line-height: 1.78;
  font-size: 20px;
  padding-bottom: 2rem;
}
@media (max-width: 599px) {
  .section-legal-info .section-legal-content .section-legal-text .list-lead {
    font-size: 14px;
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
.section-legal-info .hero-lead, .section-legal-info .button {
  text-align: left;
  font-size: 20px;
}
@media (max-width: 599px) {
  .section-legal-info .hero-lead, .section-legal-info .button {
    font-size: 14px;
  }
}
.section-legal-info .hero-lead a, .section-legal-info .button a {
  color: #3EB5E6;
  text-decoration: none;
}

.last-legal-info {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
@media (max-width: 599px) {
  .last-legal-info {
    font-size: 14px;
    padding-top: 0;
  }
}
.last-legal-info h2 {
  margin-top: 0;
  text-align: left;
  color: #3EB5E6;
}
@media (max-width: 599px) {
  .last-legal-info h2 {
    font-size: 16px;
  }
}

.main-points.partners {
  max-width: 85rem;
}
@media (max-width: calc(900px - 1px)) {
  .main-points.partners br {
    display: none;
  }
}
.main-points.partners .main-points--icon {
  top: -5rem;
}
@media (min-width: 1200px) {
  .main-points.partners {
    max-width: 100rem;
    width: calc(100% - 6vw);
  }
}
.main-points.partners .partners-logos {
  display: inline-block;
  padding-left: 1.5rem;
}
.main-points.partners .partners-logos .button {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding: 0.8rem 3rem;
  border-radius: 0.4rem;
}
@media (min-width: 734px) {
  .main-points.partners .partners-logos .button {
    top: -15px;
    position: relative;
    margin-top: 0;
  }
}
@media (min-width: 784px) {
  .main-points.partners .partners-logos .button {
    margin-left: 50px;
  }
}
.main-points.partners .partners-logos img {
  padding-right: 2rem;
  max-width: 200px;
  display: inline-block;
}

.sense-partners-section {
  padding-top: 90px;
}
.sense-partners-section ul {
  text-align: left;
  line-height: 1em;
  padding-left: 20px;
}

#optimize {
  transform: scale(0.75) translate(-20%, -18%);
}
@media (max-width: calc(900px - 1px)) {
  #optimize {
    display: none;
  }
}

/*# sourceMappingURL=bundle.css.map */
