/* base css */
:root {
  font-size: 10px;
}

html, body {
  height: 100%;
}

body {
  color: #212121;
  font-size: 10px;
  line-height: 1.6;
  font-family: GothamProRegular, "Helvetica Neue", Helvetica, arial, sans-serif;
  font-weight: 400;
}

a,
button,
p,
span,
li {
  font-size: 1.8rem;
  letter-spacing: 0.05rem;
}

p a,
p span,
a i,
a span,
li span,
li a {
  font-size: 1em;
}

a {
  color: #0dbfef;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}

p {
  margin-bottom: 2rem;
  letter-spacing: 0.05rem;
}

p:last-child {
  margin-bottom: 0;
}

hr {
  margin: 5rem 0;
  border: 0;
  border-top: 1px solid #e8e7e7;
}

/* lists */
ul {
  margin: 0 0 3rem;
  padding: 0 0 0 1.7rem;
}

ul:last-child {
  margin-bottom: 0;
}

.img-fluid {
  width: 100%;
  max-width: 100%;
}

/* headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05rem;
  font-family: GothamProMedium, "Helvetica Neue", Helvetica, arial, sans-serif;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  font-size: 1em;
  color: inherit;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
  margin-top: 0;
}

h1, .h1 {
  font-size: 3.6rem;
}

h2, .h2 {
  font-size: 3.2rem;
}

h3, .h3 {
  font-size: 2.8rem;
}

h4, .h4 {
  font-size: 2.4rem;
}

h5, .h5 {
  font-size: 2rem;
}

h6, .h6 {
  font-size: 1.8rem;
}

/* buttons */
.btn {
  font-size: 1.5rem;
  padding: 1.4rem 2rem 1.3rem;
  border-radius: 5rem;
  letter-spacing: 0.05rem;
  transition-duration: 0.3s;
  min-width: 18rem;
  height: 4.5rem;
  line-height: 1;
  font-family: GothamProMedium, "Helvetica Neue", Helvetica, arial, sans-serif;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn .icon {
  line-height: 1;
  display: inline-block;
}

.btn i {
  font-size: 1.6rem;
  width: 1.6rem;
  height: auto;
  position: relative;
  left: 0;
  transition: left 0.2s ease-in-out;
}

.btn.with-icon-right .icon {
  margin-left: 0.5rem;
}

.btn.with-icon-right.with-hover:hover i {
  left: 0.5rem;
}

.btn.with-icon-left .icon {
  margin-right: 0.5rem;
}

.btn.with-icon-left.with-hover:hover i {
  left: -0.5rem;
}

.btn-20 {
  min-width: 20rem;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 1.1rem 1.5rem;
  height: 4rem;
  font-size: 1.4rem;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 1.7rem 2.5rem;
  height: 5rem;
  font-size: 1.6rem;
}

.btn-lg i,
.btn-group-lg > .btn i {
  font-size: 1.8rem;
}

/* text link */
.text-link {
  white-space: nowrap;
  display: inline-block;
  font-size: 1.6rem;
  color: #0dbfef;
}

.text-link.with-underline {
  text-decoration: underline;
}

.text-link .icon {
  line-height: 1;
  display: inline-block;
  margin-left: 0.5rem;
}

.text-link i {
  font-size: 1.8rem;
  vertical-align: middle;
  position: relative;
  left: 0;
  top: -0.1rem;
  transition: left 0.2s ease-in-out;
}

.text-link svg {
  height: 2.5rem;
  width: 2.5rem;
  position: relative;
  top: -1px;
}

.text-link.with-icon-right .icon {
  margin-left: 0.5rem;
}

.text-link.with-icon-right.with-hover:hover i {
  left: 0.5rem;
}

.text-link.with-icon-left .icon {
  margin-right: 0.5rem;
}

.text-link.with-icon-left.with-hover:hover i {
  left: -0.5rem;
}

.text-link-lg {
  font-size: 1.8rem;
  white-space: normal;
  line-height: 1.4;
  height: auto;
  margin-top: 2rem;
}

.with-long-arrow .icon {
  display: inline-block;
  padding-left: 0.5rem;
  position: relative;
  left: 0;
  transition: left 0.2s ease-in-out;
}

.with-long-arrow svg {
  height: 1.4rem;
  width: 5.8rem;
  stroke: #0dbfef;
  transition: stroke 0.2s ease-in-out;
}

.with-long-arrow:hover .icon {
  left: 0.5rem;
}

.with-long-arrow:hover svg {
  stroke: #212121;
}

/* button container */
.btn-container {
  margin-left: -1.2rem;
}

.btn-container .text-link,
.btn-container .btn {
  margin: 1.2rem;
}

/* blue button */
.btn-blue:hover {
  background: #212121;
  border-color: #212121;
  color: #fff;
}

/* darkgrey button */
.btn-darkgrey:hover {
  background: #0dbfef;
  border-color: #0dbfef;
  color: #fff;
}

/* font css */
@font-face {
  font-family: 'GothamProLight';
  src: url("../fonts/GothamProLight.woff2") format("woff2"), url("../fonts/GothamProLight.woff") format("woff"), url("../fonts/GothamProLight.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: 'GothamProRegular';
  src: url("../fonts/GothamProRegular.woff2") format("woff2"), url("../fonts/GothamProRegular.woff") format("woff"), url("../fonts/GothamProRegular.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: 'GothamProMedium';
  src: url("../fonts/GothamProMedium.woff2") format("woff2"), url("../fonts/GothamProMedium.woff") format("woff"), url("../fonts/GothamProMedium.ttf") format("truetype");
  font-style: normal;
}

/* form css */
.form-block,
.form-group {
  margin-bottom: 3rem;
}

.form-block h4, .form-block h5,
.form-group h4,
.form-group h5 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.form-block h4 span:not(.info-tooltip-icon), .form-block h5 span:not(.info-tooltip-icon),
.form-group h4 span:not(.info-tooltip-icon),
.form-group h5 span:not(.info-tooltip-icon) {
  font-size: 1.5rem;
  color: #64686b;
  -webkit-font-smoothing: initial;
  -moz-osx-font-smoothing: initial;
  display: block;
}

.form-block:last-child {
  margin-bottom: 0;
}

label {
  letter-spacing: 0.1rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  color: #999;
}

label .accent {
  font-style: normal;
  color: #ff0000;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

textarea.form-control {
  padding: 2rem 1.8rem;
}

form button[type='submit'] {
  margin-top: 1rem;
}

.form-control {
  font-size: 1.8rem;
  height: 6rem;
  padding: 1rem 1.8rem 1rem;
  border-radius: 1.2rem;
  color: #212121;
  letter-spacing: 0.05rem;
  border: 1px solid #ddd;
  font-family: GothamProMedium, "Helvetica Neue", Helvetica, arial, sans-serif;
}

.form-control::-webkit-input-placeholder {
  letter-spacing: 0.05rem;
  color: #9b9b9b;
  font-size: 1.8rem;
  font-family: GothamProRegular, "Helvetica Neue", Helvetica, arial, sans-serif;
}

.form-control::-moz-placeholder {
  letter-spacing: 0.05rem;
  color: #9b9b9b;
  font-size: 1.8rem;
  font-family: GothamProRegular, "Helvetica Neue", Helvetica, arial, sans-serif;
}

.form-control:-ms-input-placeholder {
  letter-spacing: 0.05rem;
  color: #9b9b9b;
  font-size: 1.8rem;
  font-family: GothamProRegular, "Helvetica Neue", Helvetica, arial, sans-serif;
}

.form-control:-moz-placeholder {
  letter-spacing: 0.05rem;
  color: #9b9b9b;
  font-size: 1.8rem;
  font-family: GothamProRegular, "Helvetica Neue", Helvetica, arial, sans-serif;
}

.form-control:focus {
  color: #212121;
  border-color: #eb2d57 !important;
  box-shadow: none;
}

select.noValue {
  letter-spacing: 0.05rem;
  color: #999;
  font-size: 1.65rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

select,
select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff url(../images/arrow-down.svg) right 15px top 55% no-repeat;
  background-size: 1.3rem;
}

/* header css */
.site-header {
  padding: 5rem 0;
  width: 100%;
}

.site-header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.site-header .btn {
  min-width: 0;
  padding: 1.1rem 0 0;
  text-align: center;
  height: 4.5rem;
  width: 4.5rem;
}

.site-header .btn .text {
  display: none;
}

.site-header .btn .icon {
  line-height: 1;
}

.site-header .btn .icon svg {
  height: 21px;
  width: 21px;
}

.logo-container {
  display: inline-block;
}

.header-logo {
  width: 15rem;
}

/* footer */
/* homepage */
.info-block-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-block-hero .blob {
  position: absolute;
  bottom: -8rem;
  left: -28rem;
  height: 50rem;
  width: 50rem;
  z-index: -1;
  display: none;
}

.hero {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.hero .row {
  align-items: center;
}

.hero .title {
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.hero .text {
  margin-bottom: 4rem;
}

.hero img {
  margin-bottom: 3rem;
  width: 100%;
}

.hero-content {
  text-align: center;
}

/* info block */
.info-block {
  padding: 3rem 0;
  text-align: center;
}

.info-block .image-container {
  position: relative;
  max-width: 35rem;
  margin: 0 auto 4rem;
}

.info-block .image-container picture img {
  position: relative;
  height: auto;
  max-width: 70rem;
  width: 100%;
  z-index: 1;
}

.info-block .blob {
  width: 100%;
}

.info-block .row {
  align-items: center;
}

.info-block:nth-child(odd) .image-container picture img {
  left: 0;
}

.info-block:nth-child(even) .image-container picture img {
  right: 0;
}

.info-block-outer {
  border-radius: 1rem;
  transition: background-color 0.2s ease-in-out;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}

.info-block-content .icon-header {
  margin: 0 auto 3rem;
  max-width: 9.5rem;
  height: 6rem;
}

.info-block-content .icon-header path,
.info-block-content .icon-header polygon,
.info-block-content .icon-header rect,
.info-block-content .icon-header line,
.info-block-content .icon-header circle,
.info-block-content .icon-header polyline {
  transition: fill 0.2s ease-in-out, stroke 0.2s ease-in-out;
}

.info-block-content .title {
  font-size: 2.4rem;
}

.info-block-content .title,
.info-block-content p, .info-block-content span {
  transition: color 0.2s ease-in-out;
}

.blob svg path {
  fill: #f4fcff;
  opacity: 1;
  transition: fill 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.next-link {
  margin-top: 3rem;
  font-size: 1.5rem;
  padding: 14px 2rem 11px;
  border-radius: 5rem;
  letter-spacing: 0.05rem;
  transition-duration: 0.3s;
  text-align: center;
  min-width: 18rem;
  height: 5rem;
  line-height: 1;
  font-family: GothamProMedium, "Helvetica Neue", Helvetica, arial, sans-serif;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  background: #fff;
  color: #333333;
}

.next-link svg {
  transition: fill 0.2s ease-in-out;
}

.next-link .icon {
  position: relative;
  left: 0;
  transition: left 0.2s ease-in-out;
}

.next-link:hover .icon {
  left: 0.8rem;
}

/* info block 1 */
.ib1 .blob {
  position: absolute;
  top: 55%;
  left: 52.5%;
  transform: translate(-50%, -50%) rotate(-53deg);
}

.ib1.shown .info-block-outer {
  background: #0dbfef;
}

.ib1.shown .info-block-outer .info-block-content .title, .ib1.shown .info-block-outer .info-block-content p, .ib1.shown .info-block-outer .info-block-content span {
  color: #fff;
}

.ib1.shown .info-block-outer .blob svg path {
  fill: #0d8db0 !important;
  opacity: 0.23;
}

.ib1.shown .info-block-outer .icon-header .i-fill {
  fill: #fff !important;
}

.ib1.shown .info-block-outer .icon-header .i-stroke {
  stroke: #fff !important;
}

.ib1.shown .info-block-outer .next-link {
  color: #212121;
}

.ib1.shown .info-block-outer .next-link svg {
  fill: #212121;
}

/* info block 2 */
.ib2 .blob {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-53deg);
}

.ib2.shown .info-block-outer {
  background: #072538;
}

.ib2.shown .info-block-outer .info-block-content .title, .ib2.shown .info-block-outer .info-block-content p, .ib2.shown .info-block-outer .info-block-content span {
  color: #fff;
}

.ib2.shown .info-block-outer .blob svg path {
  fill: #0c1e29 !important;
  opacity: 0.46;
}

.ib2.shown .info-block-outer .icon-header .i-stroke {
  stroke: #fff !important;
}

.ib2.shown .info-block-outer .next-link {
  color: #212121;
}

.ib2.shown .info-block-outer .next-link svg {
  fill: #212121;
}

/* info block 3 */
.ib3 .blob {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-53deg);
}

.ib3.shown .info-block-outer {
  background: #ff3c53;
}

.ib3.shown .info-block-outer .info-block-content .title, .ib3.shown .info-block-outer .info-block-content p, .ib3.shown .info-block-outer .info-block-content span {
  color: #fff;
}

.ib3.shown .info-block-outer .blob svg path {
  fill: #d62136 !important;
  opacity: 0.5;
}

.ib3.shown .info-block-outer .icon-header .i-stroke {
  stroke: #fff !important;
}

.ib3.shown .info-block-outer .next-link {
  color: #212121;
}

.ib3.shown .info-block-outer .next-link svg {
  fill: #212121;
}

/* info block 4 */
.ib4 .blob {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-53deg);
}

.ib4.shown .info-block-outer {
  background: #a4c244;
}

.ib4.shown .info-block-outer .info-block-content .title, .ib4.shown .info-block-outer .info-block-content p, .ib4.shown .info-block-outer .info-block-content span {
  color: #fff;
}

.ib4.shown .info-block-outer .blob svg path {
  fill: #859e35 !important;
  opacity: 0.33;
}

.ib4.shown .info-block-outer .icon-header .i-stroke {
  stroke: #fff !important;
}

.ib4.shown .info-block-outer .next-link {
  color: #212121;
}

.ib4.shown .info-block-outer .next-link svg {
  fill: #212121;
}

/* info block 5 */
.ib5 .blob {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-53deg);
}

.ib5.shown .info-block-outer {
  background: #fec233;
}

.ib5.shown .info-block-outer .info-block-content .title, .ib5.shown .info-block-outer .info-block-content p, .ib5.shown .info-block-outer .info-block-content span {
  color: #212121;
}

.ib5.shown .info-block-outer .blob svg path {
  fill: #e6ac23 !important;
  opacity: 0.43;
}

.ib5.shown .info-block-outer .icon-header .i-stroke {
  stroke: #212121 !important;
}

.ib5.shown .info-block-outer .next-link {
  color: #212121;
}

.ib5.shown .info-block-outer .next-link svg {
  fill: #212121;
}

/* contact */
.contact {
  padding: 5rem 0;
}

.contact .row {
  align-items: center;
}

.contact .image-container {
  position: relative;
  max-width: 35rem;
  margin: 0 auto 3rem;
}

.contact .image-container picture img {
  height: auto;
  max-width: 60rem;
  width: 100%;
}

.contact-form-content {
  text-align: center;
}

.contact-form-content .title {
  font-size: 2.4rem;
}

.contact-form {
  margin-top: 5rem;
}

.contact-form .form-control {
  text-align: center;
}

.contact-form button.btn {
  width: 25rem;
}

/* full website */
.full-website {
  padding: 8rem 0;
  margin-bottom: 5rem;
  text-align: center;
}

.full-website-content {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 0.1rem solid #ecedee;
  padding: 4rem 2rem;
  transition: background-color 0.2s ease-in-out;
  background: #ecedee;
}

.full-website-content .logo-with-text {
  max-width: 25rem;
  margin: 0 auto;
}

.full-website-content .text {
  font-size: 2rem;
  font-family: GothamProMedium, "Helvetica Neue", Helvetica, arial, sans-serif;
  position: relative;
  top: 0.2rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.full-website-content .arrow svg {
  transition: fill 0.2s ease-in-out, left 0.2s ease-in-out;
  position: relative;
  left: 0;
  width: 4rem;
}

.creatio-o-logo {
  height: 6rem;
  width: 6rem;
  display: block;
  margin: 0 auto 2.5rem;
}

/* footer */
.site-footer {
  padding: 5rem 0;
  border-top: 0.1rem solid #ecedee;
  text-align: center;
}

.site-footer .row {
  align-items: center;
}

.site-footer .footer-right {
  margin-bottom: 5rem;
}

.site-footer .copyright span {
  font-size: 1.6rem;
  color: #a7a7a7;
  position: relative;
  top: 0.1rem;
}

.site-footer a {
  display: inline-block;
  color: #3c3c3b;
  font-size: 1.6rem;
}

.site-footer a {
  position: relative;
  padding: 1rem;
  font-weight: 400;
  line-height: 1;
  margin: 0.5rem auto;
  display: block;
  max-width: 30rem;
}

.site-footer a .icon {
  display: inline-block;
  margin-right: 0.8rem;
  position: relative;
  top: -0.1rem;
  color: #3c3c3b;
  transition: color 0.2s ease-in-out;
}

.site-footer a svg {
  height: 1.8rem;
  width: 1.8rem;
}

.site-footer a:hover {
  color: #0dbfef;
}

.site-footer a:hover .icon {
  color: #0dbfef;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 375px) {
  .info-block-outer {
    padding: 7rem 3rem 5rem;
  }
}

@media (min-width: 505px) {
  .info-block-outer {
    overflow: visible;
  }
}

@media (min-width: 576px) {
  .info-block-outer {
    padding: 7rem 7rem 5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero .title {
    font-size: 3.6rem;
  }
  .info-block-hero .image-container {
    max-width: 55rem;
    margin: 0 auto;
  }
  .info-block-hero .blob {
    display: block;
  }
  .site-header .btn {
    width: auto;
    height: 5rem;
    min-width: 18rem;
    padding: 1.7rem 2.5rem;
  }
  .site-header .btn .text {
    display: block;
  }
  .site-header .btn .icon {
    display: none;
  }
  .info-block-outer {
    padding: 7rem;
  }
  .info-block {
    padding: 5rem 0;
  }
  .info-block .image-container {
    max-width: none;
  }
  .info-block .blob {
    width: 83%;
  }
  .info-block-content .title,
  .contact-form-content .title {
    font-size: 2.8rem;
  }
  /* contact */
  .contact .image-container {
    max-width: 40rem;
  }
  /* visit full website */
  .full-website-content {
    border-radius: 10rem;
    padding: 2.5rem 7rem 2.5rem 4rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #fff;
  }
  .full-website-content .logo-with-text {
    display: flex;
    align-items: center;
    max-width: none;
    margin: 0;
  }
  .full-website-content:hover {
    background: #ecedee;
  }
  .creatio-o-logo {
    margin: 0 2rem 0 0;
  }
  .full-website-content .text {
    margin: 0;
  }
  .full-website-content:hover .arrow svg {
    fill: #212121;
    left: 2rem;
  }
  /* footer */
  .site-footer {
    padding: 5rem 0 4rem;
  }
  .site-footer a {
    padding: 0.5rem 1rem;
    margin: 0 1.5rem;
    display: inline-block;
    max-width: none;
  }
  .site-footer .footer-right {
    margin-bottom: 3rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content {
    width: 60rem;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .info-block {
    text-align: left;
  }
  .info-block:nth-child(odd) .info-block-outer {
    padding: 6rem 2rem 6rem 6rem;
  }
  .info-block:nth-child(odd) .info-block-content {
    padding-right: 2rem;
  }
  .info-block:nth-child(even) .info-block-outer {
    padding: 6rem 6rem 6rem 2rem;
  }
  .info-block:nth-child(even) .info-block-content {
    padding-left: 2rem;
  }
  .info-block-content .icon-header {
    margin: 0 0 3rem;
  }
  .info-block .image-container {
    margin: 0;
  }
  .creatio-o-logo {
    margin: 0 3rem 0 0;
  }
  /* contact */
  .contact {
    padding: 8rem 0;
  }
  .contact .image-container {
    max-width: none;
    margin: 0;
  }
  .contact .image-container picture img {
    width: auto;
    max-width: 50rem;
    position: relative;
    left: -7rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (min-height: 850px) {
  html, body {
    height: 100%;
  }
  .info-block-hero {
    height: 100%;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    text-align: left;
  }
  .info-block-hero .blob {
    bottom: -22rem;
  }
  .hero {
    padding: 0 0 5rem;
  }
  .hero img {
    margin: 0;
  }
  .info-block-content .title {
    font-size: 3.2rem;
  }
  .info-block-hero .image-container {
    max-width: none;
    margin: 0;
  }
  .info-block:nth-child(odd) .info-block-outer {
    padding: 10rem 4rem 10rem 10rem;
  }
  .info-block:nth-child(odd) .info-block-content {
    padding-right: 4rem;
  }
  .info-block:nth-child(even) .info-block-outer {
    padding: 10rem 10rem 10rem 4rem;
  }
  .info-block:nth-child(even) .info-block-content {
    padding-left: 4rem;
  }
  /* info block 2 */
  .info-block.ib2 .blob {
    top: 47%;
    transform: translate(-50%, -50%) rotate(230deg);
  }
  /* info block 4 */
  .info-block.ib4 .blob {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  /* contact */
  .contact .image-container picture img {
    width: 100%;
    max-width: none;
  }
  /* visit full website */
  .creatio-o-logo {
    height: 7.5rem;
    width: 7.5rem;
  }
  .full-website-content .text {
    font-size: 2.2rem;
  }
  .full-website-content .arrow svg {
    width: 4.5rem;
  }
  .creatio-o-logo {
    margin: 0 5rem 0 0;
  }
  /* footer */
  .site-footer {
    text-align: left;
  }
  .site-footer a:last-child {
    margin-right: 0;
  }
  .site-footer .footer-right {
    margin: 0;
    justify-content: flex-end;
    display: flex;
  }
}

@media (min-width: 1300px) {
  .container {
    max-width: 125rem;
  }
}

/* Extra extra large devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {
  .info-block .image-container {
    height: 50rem;
    display: flex;
    align-items: center;
  }
  .info-block:nth-child(odd) .info-block-outer {
    padding: 10rem 0rem 10rem 10rem;
  }
  .info-block:nth-child(odd) .image-container picture img {
    left: 2rem;
    width: auto;
  }
  .info-block:nth-child(even) .info-block-outer {
    padding: 10rem 10rem 10rem 0;
  }
  .info-block:nth-child(even) .image-container picture img {
    right: 5rem;
    width: auto;
  }
  .info-block.ib4 .image-container picture img {
    right: 7rem;
  }
}

.swal2-popup {
  font-size: 1.8rem !important;
}
.grecaptcha-badge {
  display:none !important;
}
