.screen-reader-text {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrap__main {
  flex-grow: 1;
}

.social {
  display: flex;
  align-items: center;
}

.social a {
  width: 20px;
  height: 20px;
  text-align: center;
}
.social a path {
  fill: #aeaeae;
}
.social a:hover path {
  fill: var(--hover-color, #0e54ab);
}

.social a:not(:last-child) {
  margin-right: 17px;
}

.social a.fb svg {
  transform: translateY(1px);
}

.social a svg {
  vertical-align: top;
  display: inline-block;
}

.main_scr .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 37%;
}
.main_scr .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wp-block-columns {
  display: flex;
  margin-bottom: 1.75em;
  flex-wrap: wrap;
  /**
  * All Columns Alignment
  */
}
@media screen and (min-width: 768px) {
  .wp-block-columns {
    flex-wrap: nowrap;
  }
}
.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}
.wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}
.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}

.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  /**
  * Individual Column Alignment
  */
}
@media screen and (max-width: 575px) {
  .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media screen and (min-width: 575px) and (max-width: 767px) {
  .wp-block-column:not(:only-child) {
    flex-basis: calc(50% - 1em) !important;
    flex-grow: 0;
  }
  .wp-block-column:nth-child(even) {
    margin-left: 2em;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
  .wp-block-column[style*=flex-basis] {
    flex-grow: 0;
  }
  .wp-block-column:not(:first-child) {
    margin-left: 2em;
  }
}
.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start;
}
.wp-block-column.is-vertically-aligned-center {
  align-self: center;
}
.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end;
}
.wp-block-column.is-vertically-aligned-top, .wp-block-column.is-vertically-aligned-center, .wp-block-column.is-vertically-aligned-bottom {
  width: 100%;
}