/*!
Theme Name: Sphere Research Corp
Theme URI: https://www.diguno.com
Description: Custom theme by diguno media.
Author: diguno media
Author URI: http://www.diguno.com/
Version: 1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
/* line 16, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_variables.scss */
:root {
  --primary-color: #4c7397;
  --secondary-color: #111;
}

/**
 * fluid-type
 * param: $min-font-value | minimum font size at and below the smallest viewport width
 * param: $mac-font-value | maximum font size at and above the widest viewport width
 * param: $min-width | minimum possible viewport width value at which the font size will stop scaling down
 * param: $max-width | maximum possible viewport width vallue at which the font size will stop scaling up
 */
/**
 * returns the ratio of the font at its largest divided by the font at it's smallest
 */
/**
 * returns the mathematical power of a value
 */
/**
 * fluidify
 * @param1: base font size at it's smallest viewport (like mobile)
 * @param2: base font size, scaled to largest viewport (like desktop)
 * @param3: scale - the ratio to use for scaling your font from :root to h6
 * 
 * You can find ratios here: https://type-scale.com/
 */
/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_default.scss */
html, body {
  -webkit-text-size-adjust: 100%;
  min-width: 350px;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 0 !important;
}

/* line 8, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_default.scss */
body {
  font-size: 14px;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 8, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_default.scss */
  body {
    font-size: calc( 14px + (17 - 14) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 8, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_default.scss */
  body {
    font-size: 17px;
  }
}

/* line 14, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_default.scss */
*, *:before, *:after {
  box-sizing: border-box;
}

/* line 18, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_default.scss */
.clear {
  clear: both;
}

/* line 20, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_default.scss */
.init {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 21, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_default.scss */
.init-top {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* line 22, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_default.scss */
.init-bottom {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* line 24, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_default.scss */
.hide {
  display: none;
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_lists.scss */
ul, ol {
  margin: 0 0 1.5em 1em;
}

/* line 5, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_lists.scss */
ul {
  list-style: disc;
}

/* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_lists.scss */
ol {
  list-style: decimal;
}

/* line 13, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_lists.scss */
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

/* line 19, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_lists.scss */
dt {
  font-weight: bold;
}

/* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_lists.scss */
dd {
  margin: 0 1.5em 1.5em;
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table {
  margin: 20px 0 30px;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

/* line 8, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table tr.table-foot,
.table tr.table-head {
  height: 4rem;
  background: rgba(59, 108, 180, 0.1);
}

/* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table tr.table-foot th,
.table tr.table-head th {
  font-size: 16px;
  vertical-align: bottom;
  border-bottom: 2px solid #aaa;
  padding: 12px 25px 9px;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table tr.table-foot th,
  .table tr.table-head th {
    font-size: calc( 16px + (19 - 16) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table tr.table-foot th,
  .table tr.table-head th {
    font-size: 19px;
  }
}

/* line 17, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table tr.table-foot th span,
.table tr.table-head th span {
  font-weight: normal;
  font-size: 14px;
  display: block;
  text-transform: none;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 17, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table tr.table-foot th span,
  .table tr.table-head th span {
    font-size: calc( 14px + (16 - 14) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 17, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table tr.table-foot th span,
  .table tr.table-head th span {
    font-size: 16px;
  }
}

/* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table tr.table-foot th strong,
.table tr.table-head th strong {
  font-size: 14px;
  text-transform: none;
  display: block;
  padding-bottom: 5px;
  font-style: italic;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table tr.table-foot th strong,
  .table tr.table-head th strong {
    font-size: calc( 14px + (16 - 14) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table tr.table-foot th strong,
  .table tr.table-head th strong {
    font-size: 16px;
  }
}

/* line 34, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table td {
  text-align: center;
  vertical-align: middle;
  padding: 10px 25px 10px 25px;
}

/* line 39, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table td strong {
  display: inline-block;
  padding: 5px 0 5px;
  font-size: 14px;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 39, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table td strong {
    font-size: calc( 14px + (17 - 14) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 39, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table td strong {
    font-size: 17px;
  }
}

/* line 47, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table tr:nth-child(even) td {
  background: #f7f7f7;
}

/* line 50, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table a.button {
  display: inline-block;
  margin-top: 1.5rem;
}

/* line 52, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table .padded-row td {
  padding: 5px !important;
}

/* line 54, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
.table *.nobg {
  background: none !important;
}

@media screen and (max-width: 660px) {
  /* line 59, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table {
    margin: 1em 0;
    min-width: 300px;
  }
  /* line 63, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table tr {
    margin: 10px 0;
  }
  /* line 64, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table tr.head, .table thead {
    display: none;
  }
  /* line 65, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table .padded-row {
    display: none;
  }
  /* line 66, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table td {
    display: block;
    text-align: center !important;
  }
  /* line 70, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table td.mobile-hide {
    display: none;
  }
  /* line 72, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table td:first-child {
    padding-top: 1em;
    margin-top: 10px;
  }
  /* line 76, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table td:last-child {
    padding-bottom: 1em;
    margin-bottom: 10px;
  }
  /* line 81, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: center;
    color: #333;
  }
  /* line 91, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table th {
    display: block;
    text-align: center !important;
  }
  /* line 95, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table th.mobile-hide {
    display: none;
  }
  /* line 97, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table th:first-child {
    padding-top: .5em;
  }
  /* line 100, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_tables.scss */
  .table th:last-child {
    padding-bottom: .5em;
  }
}

/* Make sure embeds and iframes fit their containers. */
/* line 3, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_media.scss */
embed,
iframe,
object {
  max-width: 100%;
}

/*-------------------------------------------------------------*/
/*-------------------------------------------------------------*/
/* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_media.scss */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

/* line 16, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_media.scss */
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

/* line 21, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_media.scss */
.wp-caption-text {
  font-size: 13px;
  text-align: center;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 21, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_media.scss */
  .wp-caption-text {
    font-size: calc( 13px + (15 - 13) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 21, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_media.scss */
  .wp-caption-text {
    font-size: 15px;
  }
}

/* line 26, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_media.scss */
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

/* line 31, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_media.scss */
figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

/* line 5, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_other.scss */
pre {
  background: #f4f4f4;
  font: 13px "Courier 10 Pitch", Courier, monospace;
  line-height: 1.5;
  margin-bottom: 1.625em;
  overflow: auto;
  padding: 0.75em 1.625em;
}

/* line 14, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_other.scss */
hr {
  background-color: #ddd;
  border: 0;
  height: 1px;
  margin: 35px 0 40px;
  clear: both;
}

/* line 22, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_other.scss */
code, kbd {
  font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

/* line 25, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_other.scss */
abbr, acronym, dfn {
  border-bottom: 1px dotted #666;
  cursor: help;
}

/* line 29, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_other.scss */
address {
  display: block;
  margin: 0 0 1.625rem;
}

/* line 33, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_other.scss */
sup,
sub {
  font-size: 11px;
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 33, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_other.scss */
  sup,
  sub {
    font-size: calc( 11px + (13 - 11) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 33, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_other.scss */
  sup,
  sub {
    font-size: 13px;
  }
}

/* line 41, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_other.scss */
sup {
  bottom: 2.5ex;
}

/* line 44, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/other/_other.scss */
sub {
  top: .5ex;
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
label {
  display: block;
  font-size: 14px;
  margin: 5px 0 2px;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
  label {
    font-size: calc( 14px + (16 - 14) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
  label {
    font-size: 16px;
  }
}

/* line 7, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
input, select, textarea {
  -webkit-border-radius: 0;
}

/* line 8, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
input:not([type="radio"]):not([type="checkbox"]), select {
  -webkit-appearance: none;
  border-radius: 0;
}

/* line 13, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  font-size: 14px;
  border: none;
  background: #fff;
  padding: 12px 17px !important;
  width: 100%;
  display: inline-block;
  margin: 2px 0 5px;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 13, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="number"],
  input[type="tel"],
  input[type="range"],
  input[type="date"],
  input[type="month"],
  input[type="week"],
  input[type="time"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="color"],
  textarea {
    font-size: calc( 14px + (16 - 14) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 13, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="number"],
  input[type="tel"],
  input[type="range"],
  input[type="date"],
  input[type="month"],
  input[type="week"],
  input[type="time"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="color"],
  textarea {
    font-size: 16px;
  }
}

/* line 38, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  border: 1px solid #ccc;
  background: #fbfbfb;
  color: #444;
}

/* line 44, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
input[type="number"] {
  padding: 0 !important;
  height: 3em;
  line-height: 3em;
}

/* line 46, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
button[type="submit"],
input[type="submit"] {
  display: inline-block;
  margin: 15px 0 20px;
}

/* line 52, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
select {
  border: 1px solid #eee;
  width: 100%;
  font-size: 14px;
  background: #ededee;
  padding: 8px 10px !important;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 52, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
  select {
    font-size: calc( 14px + (16 - 14) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 52, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_forms.scss */
  select {
    font-size: 16px;
  }
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
input[type="submit"], a.button {
  display: inline-block;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px 35px;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.25s ease-in-out;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
  input[type="submit"], a.button {
    font-size: calc( 14px + (15 - 14) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
  input[type="submit"], a.button {
    font-size: 15px;
  }
}

/* line 15, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
input[type="submit"]:hover, a.button:hover {
  background: var(--primary-color);
  color: #fff;
}

/* line 20, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
input[type="submit"].small, a.button.small {
  padding: 6px 18px;
  font-size: 13px;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 20, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
  input[type="submit"].small, a.button.small {
    font-size: calc( 13px + (15 - 13) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 20, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
  input[type="submit"].small, a.button.small {
    font-size: 15px;
  }
}

/* line 25, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
input[type="submit"].naked, a.button.naked {
  background: none;
  border: none;
  padding: 5px 0;
}

/* line 29, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
input[type="submit"].naked:hover, a.button.naked:hover {
  background: none;
  color: var(--primary-color-darkened);
}

/* line 33, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
input[type="submit"].icon .fa, a.button.icon .fa {
  display: inline-block;
  margin-left: 10px;
  font-weight: normal;
}

/* line 37, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
button {
  cursor: pointer;
}

/* line 39, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
body .gform_wrapper .gform_button {
  background-color: var(--primary-color) !important;
  font-weight: 700;
  font-size: 1.9rem !important;
}

/* line 44, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/_buttons.scss */
body .gform_wrapper .gform_button:hover {
  background-color: var(--secondary-color) !important;
}

/* Text meant only for screen readers. */
/* line 2, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/modules/_accessibility.scss */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/modules/_accessibility.scss */
.screen-reader-text:focus {
  background-color: #ccc;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #333;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
/* line 29, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/modules/_accessibility.scss */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/* line 3, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/modules/_alignments.scss */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.125em;
}

/* line 8, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/modules/_alignments.scss */
.alignright {
  display: inline;
  float: right;
  margin-left: 1.125em;
}

/* line 13, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/modules/_alignments.scss */
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 19, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/modules/_alignments.scss */
.text-alignleft {
  text-align: left;
}

/* line 22, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/modules/_alignments.scss */
.text-alignright {
  text-align: right;
}

/* line 25, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/elements/modules/_alignments.scss */
.text-aligncenter {
  text-align: center;
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
html {
  font-size: 62.5%;
  font-family: "Open Sans", Arial, sans-serif;
}

/* line 3, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
body {
  font-size: 1.6rem;
}

/* line 7, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
* {
  font-family: "Open Sans", Arial, sans-serif;
}

/* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
h1, .h1 {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 15px;
  color: var(--secondary-color);
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h1, .h1 {
    font-size: calc( 20px + (40 - 20) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h1, .h1 {
    font-size: 40px;
  }
}

/* line 16, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
h2, .h2 {
  font-size: 19px;
  font-weight: bold;
  margin: 20px 0 10px;
  color: var(--secondary-color);
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 16, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h2, .h2 {
    font-size: calc( 19px + (34 - 19) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 16, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h2, .h2 {
    font-size: 34px;
  }
}

/* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
h3, .h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 10px;
  color: var(--secondary-color);
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h3, .h3 {
    font-size: calc( 18px + (28 - 18) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h3, .h3 {
    font-size: 28px;
  }
}

/* line 30, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
h4, .h4 {
  font-size: 17px;
  line-height: 1.6em;
  font-weight: bold;
  margin: 15px 0 10px;
  color: var(--secondary-color);
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 30, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h4, .h4 {
    font-size: calc( 17px + (24 - 17) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 30, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h4, .h4 {
    font-size: 24px;
  }
}

/* line 38, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
h5, .h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0 10px;
  color: var(--secondary-color);
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 38, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h5, .h5 {
    font-size: calc( 16px + (22 - 16) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 38, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h5, .h5 {
    font-size: 22px;
  }
}

/* line 45, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
h6, .h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0 10px;
  color: var(--secondary-color);
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 45, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h6, .h6 {
    font-size: calc( 16px + (20 - 16) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 45, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  h6, .h6 {
    font-size: 20px;
  }
}

/* line 52, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 52, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  p {
    font-size: calc( 15px + (19 - 15) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 52, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  p {
    font-size: 19px;
  }
}

/* line 60, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
li {
  font-size: 15px;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 60, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  li {
    font-size: calc( 15px + (19 - 15) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 60, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
  li {
    font-size: 19px;
  }
}

/* line 62, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_typography.scss */
a {
  transition: all 0.3s ease-in-out;
  color: var(--primary-color);
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_layout.scss */
.hide {
  display: none;
  opacity: 0;
}

/* line 3, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_layout.scss */
.wrapper, .content-wrap, .section-wrap {
  padding: 40px 0;
  min-width: 300px;
  width: 90%;
  max-width: 1140px;
  position: relative;
  margin: 0 auto;
}

/* line 11, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_layout.scss */
.wrapper.padded, .content-wrap.padded, .section-wrap.padded {
  width: 80%;
  max-width: calc($max-width - 50px);
  margin: 0 auto;
}

/* line 18, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_layout.scss */
.section {
  position: relative;
  max-width: 100%;
}

/* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_layout.scss */
.grid-content-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 7rem;
}

@media screen and (max-width: 800px) {
  /* line 31, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_layout.scss */
  .grid-content-row {
    grid-auto-flow: unset;
  }
}

/* line 36, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_layout.scss */
.flex-content-row {
  display: flex;
  flex-direction: row;
  height: 100%;
  gap: inherit;
}

@media only screen and (max-width: 769px) {
  /* line 36, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_layout.scss */
  .flex-content-row {
    flex-wrap: wrap;
  }
}

/* line 47, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_layout.scss */
img.aligncenter {
  margin: 45px auto;
}

/* line 2, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(200deg, #4c7397, white);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4);
  padding: 25px 0 5px;
  z-index: 9999;
}

/* line 11, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#masthead .section-wrap {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 2em;
  padding: 0 !important;
}

/* line 18, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#masthead .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.9rem;
  font-weight: 700;
  color: #111;
  width: 230px;
}

/* line 19, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#masthead .logo img {
  width: 100px;
  flex: 0 0 100px;
}

/* line 33, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#sentinel {
  height: 134px;
}

/* line 35, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#site-search {
  position: fixed;
  top: 0px;
  right: calc(calc(100% - 1140px) / 2);
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 20px 5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transform: translateY(-100%);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

/* line 47, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#site-search .section-wrap {
  display: flex;
  gap: 1em;
  justify-content: flex-end;
}

/* line 49, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#site-search input[type="text"] {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 5px;
}

/* line 54, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#site-search button[type="submit"] {
  display: block;
  background: none;
  border: none;
  color: #eee;
}

/* line 62, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
.active-search-bar #site-search {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 1267px) {
  /* line 65, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
  #site-search {
    right: 5%;
  }
}

/* line 70, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#masthead.open .site-search {
  display: none !important;
}

/* line 71, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_header.scss */
#masthead.open #site-search {
  z-index: 999;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  border-radius: 0px;
  transform: none;
  opacity: 1;
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 4, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
ul.menu li {
  position: relative;
  list-style: none;
}

/* line 7, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
ul.menu li a {
  text-decoration: none;
  color: #111;
}

/* line 10, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
ul.sub-menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  z-index: 10;
  padding: 25px 5px;
  border-top: 5px solid #4c7397;
}

/* line 11, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
ul.menu li:hover > .sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* line 13, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu {
  display: flex;
  align-content: flex-end;
  justify-content: flex-end;
  align-self: flex-end;
  padding-bottom: 12px;
}

/* line 20, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu {
  display: flex;
  gap: 2em;
  justify-content: flex-end;
}

/* line 25, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu > li {
  font-size: 1.7rem;
  padding-bottom: 5px;
}

/* line 27, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu > li > a {
  color: #111;
  font-weight: 700;
}

/* line 28, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu > li > a:hover, .main-menu .menu > li:hover > a {
  color: #db545a;
}

/* line 31, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu .current_page_item > a, .main-menu .menu .current_page_item > a:hover, .main-menu .menu .current-product-cat-parent > a, .main-menu .menu .current-product-cat-parent > a:hover {
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 33, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu .sub-menu {
  background: #fff;
  left: -25px;
  margin-top: 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

/* line 40, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu .sub-menu li a {
  display: block;
  font-weight: 400;
  font-size: 1.55rem;
  white-space: nowrap;
  padding: 5px 25px;
}

/* line 41, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu .sub-menu li a:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* line 44, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu .sub-menu .sub-menu {
  display: none !important;
}

/* line 45, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu .sub-menu .current_page_item a, .main-menu .menu .sub-menu .current_page_item a:hover {
  color: #db545a;
}

/* line 48, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu .menu-switch {
  display: none;
  font-size: 2rem;
}

/* line 48, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
.main-menu .menu .menu-switch a {
  display: inline-block;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  /* line 54, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  .main-menu .menu > li {
    display: none;
  }
  /* line 55, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  .main-menu .menu .menu-switch {
    display: block !important;
  }
  /* line 58, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  #masthead.open .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    max-width: 100%;
    z-index: 999;
    padding: 10vh 10vw;
  }
  /* line 69, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  #masthead.open .main-menu ul.menu {
    display: block;
    width: 100%;
  }
  /* line 69, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  #masthead.open .main-menu ul.menu > li {
    display: block;
  }
  /* line 70, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  #masthead.open .main-menu li {
    text-align: center;
    margin-bottom: 5px;
  }
  /* line 70, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  #masthead.open .main-menu li a {
    display: block;
  }
  /* line 72, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  #masthead.open .main-menu .menu-switch {
    margin-bottom: 20px;
  }
  /* line 72, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  #masthead.open .main-menu .menu-switch .fa-bars:before {
    content: '\f00d';
  }
  /* line 74, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  #masthead.open .main-menu .current_page_item a, #masthead.open .main-menu .current_page_item a:hover {
    color: #db545a;
  }
  /* line 76, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  #masthead.open .main-menu .sub-menu {
    position: relative;
    left: 0;
    box-shadow: none;
    background: #fafafa;
    margin-bottom: 20px;
    grid-template-columns: 1fr;
    max-height: 45vh;
    overflow: scroll;
    scrollbar-color: #db545a #bbb;
    border-bottom: 3px solid #4c7397;
  }
  /* line 78, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_navigation.scss */
  #masthead.open .main-menu .current_page_item > a, #masthead.open .main-menu .current_page_item > a:hover, #masthead.open .main-menu .current-product-cat-parent > a, #masthead.open .main-menu .current-product-cat-parent > a:hover {
    text-shadow: none !important;
  }
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_footer.scss */
#footer {
  background-color: #333;
  padding: 20px 0 60px;
}

/* line 5, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_footer.scss */
#footer p.footnotes {
  color: #eee;
  text-align: center;
  font-size: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_footer.scss */
#footer p.footnotes a {
  display: inline-block;
  margin: 0 20px;
  color: #ddd;
}

/* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_footer.scss */
#footer p.footnotes a:hover {
  color: #eee;
}

/* line 2, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
.section.accordion .section-wrap {
  padding-bottom: 75px;
}

/* line 7, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
.accordion-wrapper {
  margin-top: 20px;
}

/* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
button.accordion-btn {
  width: 100%;
  background-color: #F3F5F7;
  border: none;
  outline: none;
  text-align: left;
  padding: 20px 35px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s linear;
  border-bottom: 1px solid #DEE1E5;
  font-weight: bold;
  position: relative;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
  button.accordion-btn {
    font-size: calc( 15px + (17 - 15) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
  button.accordion-btn {
    font-size: 17px;
  }
}

/* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
button.accordion-btn::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  content: "\f078";
  font-size: 16px;
  float: right;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
  button.accordion-btn::after {
    font-size: calc( 16px + (19 - 16) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
  button.accordion-btn::after {
    font-size: 19px;
  }
}

/* line 36, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
button.accordion-btn.is-open::after {
  content: "\f077";
}

/* line 41, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
button.accordion-btn:hover {
  background-color: #e4e8ed;
}

/* line 46, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
.accordion-content-wrapper {
  background-color: #F3F5F7;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
  margin-bottom: 17px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 46, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
  .accordion-content-wrapper {
    font-size: calc( 14px + (16 - 14) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 46, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
  .accordion-content-wrapper {
    font-size: 16px;
  }
}

/* line 57, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
.accordion-content-wrapper .accordion-content {
  padding: 20px 35px;
}

/* line 60, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
.accordion-content-wrapper .accordion-content p {
  font-size: 14px;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 60, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
  .accordion-content-wrapper .accordion-content p {
    font-size: calc( 14px + (15 - 14) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 60, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_accordion.scss */
  .accordion-content-wrapper .accordion-content p {
    font-size: 15px;
  }
}

/* line 3, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .section-wrap + .section-wrap {
  padding-top: 0 !important;
}

/* line 4, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .section-wrap.section-label {
  padding-bottom: 0px !important;
}

/* line 6, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content.alt {
  background-color: #f2f2f2;
}

/* line 10, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .column-content h2 {
  text-transform: none;
}

/* line 13, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .column-content p {
  line-height: 1.4;
}

/* line 18, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row {
  flex-wrap: wrap;
}

/* line 21, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content, .section.content .flex-content-row .column-content-auto {
  flex: 1 1 20%;
  padding: 0 2em;
}

/* line 22, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content-14 {
  flex: 0 0 25%;
}

/* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content-34 {
  flex: 0 0 75%;
}

/* line 25, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content-13 {
  flex: 0 0 33%;
}

/* line 26, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content-23 {
  flex: 0 0 66%;
}

/* line 28, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content-15 {
  flex: 0 0 20%;
}

/* line 29, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content-25 {
  flex: 0 0 40%;
}

/* line 30, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content-35 {
  flex: 0 0 60%;
}

/* line 32, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content-12 {
  flex: 0 0 50%;
}

/* line 34, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content:first-of-type {
  padding-left: 0;
}

/* line 35, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_content.scss */
.section.content .flex-content-row .column-content:last-of-type {
  padding-right: 0;
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_feature.scss */
.section.feature {
  text-align: center;
  padding: 10px 0;
  background-color: #F3F5F7;
}

/* line 6, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_feature.scss */
.section.feature h2 {
  margin-top: 0;
  margin-bottom: 25px;
}

/* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_feature.scss */
.section.feature .feature__content p {
  margin-top: 0;
  margin-bottom: 32px;
}

/* line 18, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_feature.scss */
.section.feature .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 23, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_feature.scss */
.section.feature .buttons a {
  display: block;
  margin: 0px 8px;
  border: 2px solid #111;
  padding: 10px 25px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

/* line 31, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_feature.scss */
.section.feature .buttons a:hover {
  background-color: #111;
  color: #FFF;
  transform: translateY(-3px);
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section {
  background-color: #F3F5F7;
  padding: 42px 0;
}

/* line 6, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .section-wrap h2 {
  margin-top: 0;
  padding: 0;
}

/* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .info-box-section-heading {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 34px;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
  .section.info-box-section .info-box-section-heading {
    font-size: calc( 24px + (30 - 24) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
  .section.info-box-section .info-box-section-heading {
    font-size: 30px;
  }
}

/* line 19, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .info-box-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 1vw;
}

/* line 26, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .info-box-wrap .info-box {
  display: flex;
  flex: 0 0 calc(33.33% - 1vw);
}

@media only screen and (max-width: 900px) {
  /* line 26, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
  .section.info-box-section .info-box-wrap .info-box {
    flex: 0 0 calc(50% - 1vw);
  }
}

@media only screen and (max-width: 600px) {
  /* line 26, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
  .section.info-box-section .info-box-wrap .info-box {
    flex: 0 0 100%;
  }
}

/* line 38, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .info-box-wrap .info-box__inner {
  background-color: #FFF;
  transition: all 0.25s ease-in-out;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 3px 9px 0 rgba(0, 0, 0, 0.06);
}

/* line 46, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .info-box-wrap .info-box__inner:hover {
  box-shadow: 0px 3px 9px 0 rgba(0, 0, 0, 0.16);
}

/* line 50, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .info-box-wrap .info-box__inner a {
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

/* line 55, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .info-box-wrap .info-box__inner img {
  width: 100%;
  height: auto;
}

/* line 61, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .info-box-wrap .info-box .info-box-info {
  padding: 21px 32px;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
}

/* line 68, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .info-box-wrap .info-box .info-box-info .info-box-label {
  margin: 0;
  text-transform: none;
}

/* line 69, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
.section.info-box-section .info-box-wrap .info-box .info-box-info .info-box-description p {
  margin-top: 0;
}

@media only screen and (max-width: 600px) {
  /* line 61, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_info-box-section.scss */
  .section.info-box-section .info-box-wrap .info-box .info-box-info {
    padding: 18px 24px;
  }
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_newsposts.scss */
.post-summary {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

/* line 7, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_newsposts.scss */
.more-link {
  text-align: center;
}

/* line 1, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_section-header.scss */
.section-header {
  background: #4c7397;
}

/* line 4, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_section-header.scss */
.section-header h1 {
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  font-size: 24px;
  margin: 0;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 4, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_section-header.scss */
  .section-header h1 {
    font-size: calc( 24px + (50 - 24) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 4, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/page-builder/_section-header.scss */
  .section-header h1 {
    font-size: 50px;
  }
}

/* line 2, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
.product-summary .section-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 4em;
}

/* line 8, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
.product-summary h2 {
  margin-bottom: 0;
}

/* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
.product-summary p.price {
  font-weight: 700;
  color: #e3212a;
  font-size: 16px;
  margin-top: 10px;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
  .product-summary p.price {
    font-size: calc( 16px + (22 - 16) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 9, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
  .product-summary p.price {
    font-size: 22px;
  }
}

/* line 10, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
.product-summary p {
  padding-left: 20px;
}

/* line 12, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
.product-summary-images .product-summary-slideshow {
  position: relative;
  max-width: 530px;
  margin: 0 auto;
}

/* line 17, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
.product-summary-images .product-summary-slideshow div.slide {
  display: block;
  aspect-ratio: 530/430;
  background: #fff;
}

/* line 21, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
.product-summary-images .product-summary-slideshow div.slide img {
  object-fit: scale-down;
  width: 100%;
  aspect-ratio: 530/430;
  display: block;
  max-width: 530px;
  width: 100%;
}

/* line 24, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
.product-summary-images .product-summary-slideshow .product-summary-slideshow-controls {
  position: absolute;
  top: 50%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
}

/* line 33, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
.product-summary-images .product-summary-slideshow .product-summary-slideshow-controls .prev, .product-summary-images .product-summary-slideshow .product-summary-slideshow-controls .next {
  padding: 8px 10px;
  background: rgba(245, 245, 245, 0.5);
  font-size: 18px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
  pointer-events: auto;
}

@media (min-width: 400px) and (max-width: 1600px) {
  /* line 33, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
  .product-summary-images .product-summary-slideshow .product-summary-slideshow-controls .prev, .product-summary-images .product-summary-slideshow .product-summary-slideshow-controls .next {
    font-size: calc( 18px + (25 - 18) * ( (100vw - 400px) / ( 1600 - 400) ));
  }
}

@media (min-width: 1600px) {
  /* line 33, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
  .product-summary-images .product-summary-slideshow .product-summary-slideshow-controls .prev, .product-summary-images .product-summary-slideshow .product-summary-slideshow-controls .next {
    font-size: 25px;
  }
}

/* line 42, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
.product-summary-images .product-summary-slideshow .product-summary-slideshow-controls .prev:hover, .product-summary-images .product-summary-slideshow .product-summary-slideshow-controls .next:hover {
  background: rgba(230, 230, 230, 0.65);
}

@media screen and (max-width: 768px) {
  /* line 50, ../../../PHP/sphere-research/wp-content/themes/sphere-research/_scss/_products.scss */
  .product-summary .section-wrap {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

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