/* Scaffolding */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
h1,
h2,
h3,
p,
ul,
ol {
  display: block;
}
[class*="col"] {
  float: left;
}
.col-12 {
  width: 100%;
}
.col-11 {
  width: 91.66666667%;
}
.col-10 {
  width: 83.33333333%;
}
.col-9 {
  width: 75%;
}
.col-8 {
  width: 66.66666667%;
}
.col-7 {
  width: 58.33333333%;
}
.col-6 {
  width: 50%;
}
.col-5 {
  width: 41.66666667%;
}
.col-4 {
  width: 33.33333333%;
}
.col-3 {
  width: 25%;
}
.col-2 {
  width: 16.66666667%;
}
.col-1 {
  width: 8.33333333%;
}
.container {
  width: 95%;
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}
.container:before,
.container:after {
  display: table;
  content: "";
  clear: both;
}
.row {
}
.row:after {
  display: table;
  content: "";
  clear: both;
}
body {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

/* Typography */
html {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
h1 {
  font-size: 2.5em;
  line-height: 1.3em;
  clear: both;
  margin: 30px 0 20px;
  font-weight: 600;
  color: #222;
  font-family: "Roboto Condensed", "Roboto", "Arial", sans-serif;
}
h2,
h3 {
  font-weight: 500;
  font-family: "Roboto Condensed", "Roboto", "Arial", sans-serif;
}
h2 {
  font-size: 1.75em;
  margin: 40px 0 15px;
}
h3 {
  font-size: 1.25em;
  margin: 20px 0 15px;
}
a {
  color: #5394ce;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #5394ce;
  text-decoration: underline;
}
p {
  font-size: 1em;
  margin: 20px 0;
}
ol,
ul {
  font-size: 1em;
  padding: 0 0 0 30px;
}
sub,
sup {
  position: relative;
  font-size: 70%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
  margin-left: 1px;
}
sub {
  bottom: -0.25em;
}

/* Homepage */
.homepage-div1 {
  padding: 50px 0;
  border-bottom: 2px dashed #d4d4d4;
}
.homepage-div1 h1 {
  font-size: 2em;
  margin: 0;
  clear: both;
  text-align: center;
}
.homepage-div2 {
  margin: 10px 20px;
  text-align: center;
}
.homepage-div2 img {
  margin: 20px auto;
  height: 200px;
}

/* Title */
.title-div {
  float: left;
}
.title-div img {
  margin: 0;
  width: 100%;
  max-width: 250px;
}

/* Skip to main content */
#skip a {
  position: absolute;
  top: -100px;
  left: 5px;
  color: white;
  padding: 5px;
  background-color: #bf1722;
  -webkit-transition: top 1s ease-out;
  -moz-transition: top 1s ease-out;
  -o-transition: top 1s ease-out;
  transition: top 1s ease-out;
}
#skip a:focus {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 10000;
  -webkit-transition: top 0.1s ease-in;
  -moz-transition: top 0.1s ease-in;
  -o-transition: top 0.1s ease-in;
  transition: top 0.1s ease-in;
}

/* first level */
ul.nav {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  position: relative;
  float: right;
}
ul.nav:after {
  content: "";
  clear: both;
  display: block;
}
ul.nav li {
  float: left;
  text-align: center;
}
ul.nav li a {
  display: block;
  padding: 15px 10px;
  color: #333;
  text-decoration: none;
  transition: 0.4s;
  cursor: pointer;
}
ul.nav li a:hover {
  background-color: #5394ce;
  color: #fff;
}
ul.nav span {
  display: block;
  font-size: 0.5em;
  color: #5394ce;
}
ul.nav li.icon {
  display: none;
  line-height: 1;
  font-size: 3em;
}
ul.nav li.nav-hide {
  display: none;
}
/* second level */
ul.nav ul {
  display: none;
  position: absolute;
  list-style: none outside none;
  margin: 0;
  padding: 0;
  z-index: 9000;
}
ul.nav li:hover ul {
  display: block;
}
ul.nav ul li {
  float: none;
  text-align: left;
  border-bottom: 1px solid #5394ce;
  border-left: 1px solid #5394ce;
  border-right: 1px solid #5394ce;
  background: #fff;
}
ul.nav ul li:first-of-type {
  border-top: 1px solid #5394ce;
}
ul.nav ul li a {
  font-size: 0.875em;
  padding: 10px;
}
.nav-hidden {
  display: none;
}

/* search */
.search-box {
  float: right;
  margin: 13px 5px 0;
  padding: 5px 10px;
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.search-box > svg {
  fill: #5394ce;
}

/* Buttons */
.button {
  color: #fff;
  background: #5394ce;
  font-size: 1em;
  margin: 20px 0;
  padding: 10px 20px;
  border: 1px solid #5394ce;
  border-radius: 4px;
  display: inline-block;
  transition: color 0.2s;
  transition: background 0.2s;
}
.button:hover {
  color: #5394ce;
  background: #fff;
  text-decoration: none;
  cursor: pointer;
}
.print-button {
  margin: 0 0 0 10px;
  padding: 5px;
}
.source {
  margin-top: 5px;
  font-size: 0.875em;
  color: #555;
}
.sources {
  margin: 20px auto;
  text-align: center;
}
#sources {
  display: none;
}

/* Breadcrumbs */
.breadcrumb {
  float: left;
  width: 100%;
  font-size: 0.75em;
}
.breadcrumb ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
.breadcrumb ul li {
  float: left;
  margin: 5px 0 0 4px;
}
.breadcrumb div {
  float: left;
  margin: 6px 4px 0 0;
}
.breadcrumb .home {
  margin: 5px 0 0 0;
  padding: 0;
}
.breadcrumb .last {
  color: #333;
}

/* Sidebar */
.sidebar1 {
  width: 349px;
  float: left;
  border-left: 1px solid #d4d4d4;
  margin-top: 10px;
}
#sidebar {
  padding-left: 20px;
  margin-bottom: 30px;
}
#sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar-categories {
  margin-bottom: 40px;
}
.sidebar-categories div {
  margin: 20px 0;
  padding: 10px;
  height: 80px;
}
.sidebar-categories img {
  height: 80px;
  width: 100px;
  float: left;
  margin: 0 10px 0 0;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sidebar-categories div span:nth-child(2) {
  display: block;
  color: #333;
  font-size: 1.375em;
  line-height: 1;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sidebar-categories a:hover div span:nth-child(2) {
  color: #ff553e;
}
.sidebar-categories a:hover {
  text-decoration: none;
}
.sidebar-heading {
  font-size: 1.375em;
  text-align: center;
  padding: 10px 0;
  border-top: 4px solid #5394ce;
  border-bottom: 4px solid #5394ce;
  clear: both;
}

/* Categories */
.categories {
  margin: 0 0 70px;
}
.categories p {
  line-height: 1;
  color: #333;
}
.categories div {
  margin-top: 30px;
  padding: 10px;
  height: 80px;
  border-bottom: 1px solid #d4d4d4;
  border-top: 1px solid #d4d4d4;
  border-left: 1px solid white;
  border-right: 1px solid white;
}
.categories div:hover {
  border: 1px solid #5394ce;
}
.categories img {
  height: 80px;
  width: 100px;
  float: left;
  margin: 0 10px 0 0;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.categories a:hover {
  text-decoration: none;
}
.categories a:hover .categories-span {
  color: #5394ce;
}
.categories-span {
  display: block;
  font-size: 1.375em;
  line-height: 1;
  margin-top: 10px;
  color: #111;
}

.categories-1 {
  margin: 0 0 40px;
  width: 50%;
  float: left;
}
.categories-1 div {
  margin: 30px 20px 0 0;
  padding: 10px;
  height: 81px;
  border-bottom: 1px solid #d4d4d4;
  border-top: 1px solid #d4d4d4;
  border-left: 1px solid white;
  border-right: 1px solid white;
}
.categories-1 div:hover {
  border: 1px solid #5394ce;
}
.categories-1 img {
  height: 80px;
  width: 100px;
  float: left;
  margin: 0 10px 0 0;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.categories-1 a:hover {
  text-decoration: none;
}
.categories-1 a:hover .categories-span1 {
  color: #5394ce;
}
.categories-span1 {
  display: block;
  font-size: 1.375em;
  color: #111;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.categories-2 {
  text-align: center;
}
.categories-2 img {
  height: 200px;
}

/* Sprites */
.sprite-pr-1 {
  background: transparent url("swot-analyses/img/sprite-pr.png") scroll 0 0
    no-repeat;
  height: 61px;
  width: 50px;
}
.sprite-pr-2 {
  background: transparent url("swot-analyses/img/sprite-pr.png") scroll -51px 0 no-repeat;
  height: 61px;
  width: 50px;
}
.sprite-pr-3 {
  background: transparent url("swot-analyses/img/sprite-pr.png") scroll -102px 0
    no-repeat;
  height: 61px;
  width: 63px;
}
.sprite-pr-4 {
  background: transparent url("swot-analyses/img/sprite-pr.png") scroll -166px 0
    no-repeat;
  height: 62px;
  width: 63px;
}
.sprite-pr-5 {
  background: transparent url("swot-analyses/img/sprite-pr.png") scroll -230px 0
    no-repeat;
  height: 62px;
  width: 62px;
}
.sprite-pr-6 {
  background: transparent url("swot-analyses/img/sprite-pr.png") scroll -293px 0
    no-repeat;
  height: 62px;
  width: 62px;
}
.sprite-pr-7 {
  background: transparent url("swot-analyses/img/sprite-pr.png") scroll -356px 0
    no-repeat;
  height: 62px;
  width: 62px;
}
.sprite-pr-8 {
  background: transparent url("swot-analyses/img/sprite-pr.png") scroll -419px 0
    no-repeat;
  height: 20px;
  width: 20px;
}

/* Footer */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  border-top: 4px solid #5394ce;
  margin-top: 40px;
  padding: 10px 20px 0 20px;
}
.footer > .item {
  flex: 1 1 auto;
  margin: 10px 0;
  padding: 0 10px;
  box-sizing: border-box;
}
.footer > .item > span {
  font-size: 18px;
  color: #ff553e;
}
.footer-links {
  margin: 10px 0;
}
.footer-links > a,
.footer-links > span {
  padding: 10px;
}
.footer-links > a,
.footer-links > span:first-of-type {
  padding-left: 0;
}
.footer a {
  color: #333;
}
.footer a:hover {
  color: #5394ce;
  text-decoration: none;
}
.footer-social > svg {
  display: inline-block;
  height: 30px;
  width: 30px;
  margin: 0;
  padding: 10px;
  margin-right: 5px;
}
.footer-fb,
.footer-twitter,
.footer-linkedin {
  fill: #555;
}
.footer-fb:hover {
  fill: #3b5998;
}
.footer-twitter:hover {
  fill: #1da1f2;
}
.footer-linkedin:hover {
  fill: #0077b5;
}
.copyright {
  flex-basis: 100%;
  text-align: center;
  background: #5394ce;
  color: #fff;
  padding: 10px 20px;
  margin-top: 10px;
}

/* Subscription */
.subscription-email {
  margin-top: 15px;
}
.subscription-input {
  width: 100%;
  height: 20px;
  font-size: 1em;
  margin-top: 5px;
  border: 1px solid #d4d4d4;
}

/* Next Topics */
.next-wrapper {
  margin-top: 50px;
}
.next {
  width: 100%;
  display: inline-block;
}
.next-1 {
  float: left;
  width: 50%;
}
.next-2 {
  float: right;
  width: 50%;
}
.next-1:hover p.next-p1,
.next-2:hover p.next-p2 {
  color: #5394ce;
}
.next-3,
.next-4 {
  width: 100%;
  font-size: 1.25em;
  border: 1px solid #d4d4d4;
  display: inline-block;
}
.next-3:hover,
.next-4:hover {
  border: 1px solid #5394ce;
}
.next-3 {
  text-align: right;
}
.next-4 {
  text-align: left;
  margin-left: 10px;
}
.next-5 {
  width: 50%;
  border: 1px solid #d4d4d4;
  text-align: center;
  font-size: 1.25em;
  margin: 0 auto 10px;
}
.next-5:hover {
  border: 1px solid #5394ce;
}
.next-5:hover p {
  color: #5394ce;
}
.next-5:hover p.next-p3,
.next-5:hover p.next-p4 {
  color: #333;
}
.next a {
  color: #333;
}
.next a:hover {
  text-decoration: none;
}
.next-p1,
.next-p2 {
  display: inline;
}
.next-p1 {
  margin: 5px 20px 0 0;
}
.next-p2 {
  margin: 5px 0 0 20px;
}
.next-p3,
.next-p4 {
  font-size: 0.75em;
  display: block;
}
.next-p3 {
  margin: 0 20px 5px 0;
}
.next-p4 {
  margin: 0 0 5px 20px;
}
.next-img1,
.next-img2 {
  font-size: 55px;
  line-height: 1;
  color: #d4d4d4;
}
.next-img1 {
  float: left;
  margin-left: 5px;
}
.next-img2 {
  float: right;
  margin-right: 5px;
}

/* Tables */
table {
  margin: 30px 0;
  width: 100%;
  border-collapse: collapse;
}
th,
td,
caption {
  padding: 10px;
}
th {
  font-size: 1em;
  font-weight: 500;
}
caption {
  font-size: 1.375em;
  font-weight: 500;
}
table ul,
table ol {
  margin: 0;
}
.valign {
  vertical-align: top;
}
.table-scroll {
  overflow-x: scroll;
  overflow: auto;
}

.table-simple {
  border: 1px solid #c9cacb;
}
.table-simple img {
  margin: 0;
}
.table-simple caption,
.table-simple td,
.table-simple th {
  border: 1px solid #c9cacb;
}
.table-simple caption {
  border-bottom: none;
}

.table-swot {
  border-collapse: separate;
  border-spacing: 5px 15px;
}
.table-swot caption {
  border: 2px solid #c9cacb;
  border-radius: 5px;
  margin: 0 5px;
}
.table-swot th {
  border-radius: 5px;
  font-size: 1.25em;
}
.table-swot td {
  width: 50%;
  border: 2px solid #c9cacb;
  border-top: 0;
  vertical-align: top;
  padding: 5px;
}
.table-swot td.border-none {
  border: none;
}
.table-swot ol {
  padding: 0 0 0 25px;
}
.table-swot li {
  margin: 5px 0;
}
.table-swot-blue {
  border: 2px solid #80b5f0;
}
.table-swot-orange {
  border: 2px solid #fdc86e;
}
.table-swot-green {
  border: 2px solid #8dc63f;
}
.table-swot-red {
  border: 2px solid #f57d75;
}
.table-swot-show {
  display: none;
  margin: 6px 0;
}

.table-mission {
  text-align: center;
  border-collapse: collapse;
}
.table-mission h3 {
  margin: 0;
}
.table-mission td {
  border: 1px solid #c9cacb;
}
.table-mission .blue {
  background-color: #dbe5f1;
}
.table-mission li {
  text-align: left;
}

.table-advanced {
  text-align: center;
  border-collapse: collapse;
}
.table-advanced caption,
.table-advanced th,
.table-advanced td {
  border: 1px solid #c9cacb;
  vertical-align: top;
}
.table-advanced caption {
  border-bottom: none;
}
.table-advanced ul,
.table-advanced ol {
  text-align: left;
  margin: 0;
}
.table-advanced .font1 {
  font-size: 1.25em;
}
.table-advanced .font2 {
  font-size: 1.125em;
}
.table-advanced .blue {
  background-color: #dbe5f1;
}
.table-advanced .gray {
  background-color: #f2f2f2;
}
.table-advanced-width td {
  width: 33%;
}

.table-advanced .caption-figure {
  font-size: 1em;
  border: none;
  text-align: left;
}

.table-pest caption {
  background-color: #f7f7f9;
  border: 1px solid #5394ce;
}
.table-pest caption {
  border-bottom: none;
}
.table-pest th {
  font-size: 1.25em;
  border: 1px solid #5394ce;
}
.table-pest ul li {
  text-align: left;
}
.table-pest td {
  border: 1px solid #5394ce;
  vertical-align: top;
  width: 50%;
}
.table-pest img {
  margin: 10px auto;
}
.table-pest-show {
  display: none;
}

.table-vca th {
  font-size: 1em;
}
.table-vca ul {
  list-style: none;
  padding-left: 0;
}
.table-vca ul li {
  font-size: 0.875em;
}
.table-vca td:first-of-type {
  width: auto;
}

.table-vision {
  text-align: left;
  max-width: 500px;
  margin: 30px auto;
}

.table-porters {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.table-checkout {
  border: 1px solid #d4d4d4;
  margin: 10px 0;
}
.table-checkout th {
  font-size: 1.25em;
  text-align: left;
  color: #5394ce;
}
.table-checkout td {
  border: 1px solid #d4d4d4;
}

.table-ads {
  margin: 40px 0;
}
.table-ads1 {
  margin-top: 50px;
}

/* Products */
.payment-options {
  margin-top: 40px;
}
.payment-options a {
  padding: 10px 0;
  margin: 0;
  text-align: center;
  width: 100%;
  font-size: 1.2rem;
}
.checkout-options {
  display: block;
  width: 100%;
}
.checkout-options div {
  float: left;
  width: 100%;
  margin-top: 40px;
}
.checkout-options img {
  float: left;
  margin: 5px 0 0 25px;
  height: 40px;
}
.checkout-options a {
  float: left;
  padding: 10px 25px;
  margin: 0;
}
.after-payment div {
  margin: 20px 5px 40px;
}
.after-payment-list {
  float: left;
}
.after-payment-price {
  float: right;
  border: 2px solid #06b800;
  padding: 15px;
  margin: 30px 10px;
}
.prices {
  padding: 10px;
  margin-right: 20px !important;
}
.price-first {
  font-size: 1.5rem;
  color: #5394ce;
}
.price-second {
  font-size: 1rem;
}
.what-you-get {
  width: 100%;
  clear: both;
  margin-top: 80px;
}
.what-you-get-div div {
  display: inline-block;
  padding: 10px;
}
.what-you-get-div div:first-of-type {
  margin-top: 50px;
}
.what-you-get-div div span:first-of-type {
  display: inline-block;
  height: 30px;
  width: 30px;
  vertical-align: middle;
  background: url(/img/tick.svg) no-repeat;
}
.buy-from-us {
  margin-top: 40px;
}
.buy-from-us div {
  width: 50%;
  float: left;
  margin: 20px 0;
}
.buy-from-us div span {
  display: block;
  padding: 5px;
}
.buy-from-us div span:first-of-type {
  font-size: 1.2rem;
  color: #5394ce;
}
.checkout-payments {
  display: block;
  width: 100%;
}
.checkout-payments div {
  float: left;
  width: 100%;
  margin-top: 40px;
}
.checkout-payments img {
  float: left;
  margin: 5px 0 0 25px;
  height: 40px;
}
.checkout-payments a {
  float: left;
  padding: 10px 25px;
  margin: 0;
}

.checkout-seals {
  width: 100%;
  margin-bottom: 30px;
  display: inline-block;
}
.checkout-seals p {
  float: left;
  margin: 0 10px 0 0;
}
.checkout-seals img {
  float: left;
  max-width: 150px;
  margin: 0;
}
.swot-icons {
  margin: 30px 30px 0 0;
  text-align: center;
  width: 145px;
  float: left;
}
.swot-icons p {
  margin: 5px 0 0 0;
}
.swot-icons div {
  margin: 0 auto;
  display: inline-block;
}
.swot-icons-span-1 {
  float: left;
}
.swot-icons-a {
  position: relative;
  float: left;
}
.swot-icons-a span {
  display: none;
  position: absolute;
  top: 20px;
  left: 5px;
  margin-bottom: 10px;
  border: 1px solid #d4d4d4;
  padding: 5px;
  width: 250px;
  background-color: #fff;
  color: #333;
  font-size: 1em;
}
.swot-icons-a:hover span {
  display: block;
  text-align: center;
}
.swot-h2 {
  text-align: center;
  padding: 10px;
  border: 3px solid #5394ce;
  border-radius: 4px;
  clear: both;
  margin-top: 60px;
}

/* Other */
img {
  max-width: 100%;
  margin: 40px auto;
  display: block;
}
.company-logo {
  max-height: 100px;
  width: auto;
}
figure {
  margin: 0;
}
.main-img-figure {
  position: relative;
  overflow: hidden;
}
.main-img-figure:hover figcaption {
  opacity: 1;
}
.main-img-figure img {
  margin: 20px auto 0;
}
.main-img-figure figcaption {
  font-size: 0.875em;
  background: #333;
  color: #d4d4d4;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px;
  opacity: 0;
  transition: opacity 0.5s;
}
dfn {
  font-style: normal;
  font-weight: bold;
}
.definition dt,
dd {
  display: inline;
}
.definition dd {
  margin: 0;
}
#main {
  padding-right: 50px;
  margin-right: 350px;
}
.main-margin {
  margin-right: -350px;
}
.p-header {
  font-size: 0.875em;
  font-weight: 600;
  margin: 0;
  color: #646464;
  width: 100%;
}
.p-header a {
  color: #646464;
}
.p-first {
  margin-top: 50px;
}
.no-margin-top {
  margin-top: 0;
}
.no-margin-bottom {
  margin-bottom: 0;
}
.no-margin {
  margin: 0;
}
.line {
  width: 100%;
  height: 4px;
  background-color: #5394ce;
  margin-top: -15px;
}
.passage {
  border: 1px solid #5394ce;
  background-color: #f7f7f9;
  padding: 10px;
}
.passage p {
  margin: 0;
}
.date-display-none {
  display: none;
}
.img-swot {
  float: right;
  height: 250px;
  width: 250px;
  margin: 10px 0 20px 20px;
}
.infographic {
  width: 60px;
  max-width: 60px;
  margin: 10px auto;
}
.infographic:hover {
  opacity: 0.3;
}
.vertical-integration {
  clear: both;
  display: table;
}
.about-links {
  border-top: 4px solid #5394ce;
  border-bottom: 4px solid #5394ce;
  padding: 10px;
  margin: 40px 0;
  text-align: center;
}
.about-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-links ul li {
  display: inline-block;
  margin: 5px;
}
.button.sources {
  width: 150px;
}
.button.sources .hide {
  display: none;
}

/* Ads */
.ad1 {
  margin: 30px 25%;
}
.ad2 {
  text-align: center;
}
.ad-centered {
  margin: 40px auto;
  text-align: center;
}
.adlink1 {
  margin: 0px 0px 30px 0px;
}

.ad-swot {
  margin: 60px auto 20px;
  text-align: center;
}
.ad-swot p {
  font-size: 1.75em;
  line-height: 1;
  font-weight: bold;
}

.ad-direct {
  margin: 5px auto 20px;
  padding: 10px;
  text-align: center;
  border: 1px solid #5394ce;
}
.ad-direct p {
  font-size: 1.25em;
  font-weight: 500;
}
.sponsored {
  font-size: 0.875em;
  margin-bottom: 0;
  color: #333;
}

/* Author bio */
.author-bio {
  padding: 20px;
  margin: 50px 0 20px;
  border: 1px solid #5394ce;
  clear: both;
}
.author-bio > img {
  float: left;
  margin: 0 20px 20px 0;
  border-radius: 5px;
}
.author-bio > a > p {
  margin: 0;
  font-size: 1.3em;
  color: #f95700;
}
.author-bio > p {
  font-size: 0.9em;
  margin: 10px 0 0;
}
.twitter-button {
  background: #1b95e0;
  padding: 10px;
  color: white;
  margin: 20px 0 0;
  display: inline-block;
}
.twitter-button:hover {
  background: #0c7abf;
  color: white;
  text-decoration: none;
}

.swot-main-img-block {
  clear: both;
  display: inline-block;
}
.swot-main-img {
  float: right;
  height: auto;
  width: 300px;
  margin: 50px 0 0 0;
  padding: 0 0 5px 10px;
}

/* Media queries */

@media (max-width: 1600px) {
  .footer > .item {
    flex: 1 1 50%;
  }
}

@media (max-width: 950px) {
  .categories-span {
    font-size: 1.375em;
  }
  .no-float {
    float: none;
    width: auto;
  }
  #main {
    margin-right: 0;
    padding: 0;
  }
  .main-margin {
    margin-right: 0;
  }
  .categories-span {
    font-size: 1.375em;
  }
  #sidebar {
    padding-left: 0;
  }
  .sidebar1 {
    width: 100%;
    border-left: 0;
    margin-top: 30px;
  }
  .breadcrumb {
    margin-bottom: 20px;
  }
  .copyright {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 900px) {
  .title-div {
    margin-bottom: 10px;
  }
  ul.nav li {
    display: none;
    border-bottom: 1px solid #5394ce;
    width: 100%;
  }
  ul.nav li:nth-child(1) {
    border-top: 1px solid #5394ce;
  }
  ul.nav li a {
    padding: 15px 0;
    display: block;
    text-align: center;
  }
  ul.nav ul li {
    display: none;
  }
  ul.nav span {
    display: none;
  }
  .nav-open {
    position: absolute;
    right: 0px;
    top: 6px;
    display: block;
    width: 40px;
    height: 33px;
    cursor: pointer;
    z-index: 50;
  }
  .nav-open > span {
    display: block;
    width: 40px;
    height: 7px;
    background-color: #5394ce;
  }
  .nav-open > span:nth-child(2) {
    margin-top: 6px;
    opacity: 1;
  }
  .nav-open > span:nth-child(3) {
    margin-top: 6px;
  }
  #nav:checked + .nav-open {
    transform: rotate(45deg);
  }
  #nav:checked + .nav-open > span {
    background: #5394ce;
    transition: transform 0.2s ease;
  }
  #nav:checked + .nav-open > span:nth-child(1) {
    transform: translateY(13px) rotate(180deg);
  }
  #nav:checked + .nav-open > span:nth-child(2) {
    opacity: 0;
  }
  #nav:checked + .nav-open > span:nth-child(3) {
    transform: translateY(-13px) rotate(90deg);
  }
  #nav:checked ~ ul.nav {
    z-index: 49;
    opacity: 1;
    width: 100%;
  }
  #nav:checked ~ ul.nav li {
    opacity: 1;
    transform: translateY(0);
    display: block;
  }
  #nav:checked ~ ul.nav li.nav-hide {
    display: block;
  }
  #nav:checked ~ ul.nav li.nav-show {
    display: none;
  }
  #nav:checked ~ ul.nav ul li {
    display: none;
  }
  .search-box {
    height: 25px;
    width: 25px;
    margin: 5px 50px 0 5px;
  }
  .search-box > svg {
    fill: #333;
  }
  .footer > .item {
    flex: 1 1 100%;
  }
}

@media (max-width: 805px) {
  .categories-span1 {
    width: 50%;
    float: left;
  }
  .img-products-swot {
    display: none;
  }
  .margin-products {
    margin-top: 30px;
  }
  .swot-icons {
    margin-right: 15px;
  }
}

@media (max-width: 715px) {
  .ad1 {
    margin: 10px 15%;
  }
  .swot-icons {
    margin-right: 25px;
  }
  #ss360-search-console input {
    width: auto;
  }
}

@media (max-width: 650px) {
  .homepage-no-float {
    float: none;
    width: auto;
  }
  .homepage-div2 {
    border-bottom: 2px dashed #d4d4d4;
  }
  .homepage-div2-no-border {
    border-bottom: none;
  }
  .categories-span {
    font-size: 1.1em;
    margin: 0;
  }
  .categories p {
    font-size: 0.875em;
  }
  .categories-span1 {
    font-size: 1.1em;
  }
  .categories-2-no-border {
    margin-top: 50px;
  }
  .next-5 {
    width: 75%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.5em;
  }
  h3 {
    font-size: 1.125em;
  }
  .homepage-div2 h2 {
    font-size: 1.5em;
  }
  .categories-1 {
    width: 100%;
    float: none;
  }
  .categories-1 div {
    margin-right: 0;
  }
  .table-swot th,
  .table-swot td {
    display: block;
    width: auto;
  }
  .table-swot .table-swot-hide {
    display: none;
  }
  .table-swot .table-swot-show {
    display: block;
  }
  .swot-icons {
    margin-right: 15px;
  }
  .next {
    margin-top: 10px;
  }
  .next-1,
  .next-2 {
    float: none;
    width: 100%;
  }
  .next-3 {
    text-align: center;
  }
  .next-4 {
    margin: 0 0 10px 0;
    text-align: center;
  }
  .next-5 {
    width: 100%;
  }
  .img-swot {
    display: none;
  }
  .title-div {
    max-height: 45px;
    max-width: 200px;
  }
  .about-links > div {
    margin: 0 10px;
  }
  .categories-2 h2 {
    font-size: 1.5em;
  }
}

@media (max-width: 500px) {
  .homepage-div1 h2 {
    font-size: 1.5em;
  }
  .ad1 {
    margin: 10px 10px 10px -10px;
  }
  .footer-col-1,
  .footer-col-2 {
    width: auto;
  }
  .footer-col-2 {
    margin-top: 20px;
  }
  .cpm-table td {
    display: block;
  }
  .table-pest th,
  .table-pest td,
  .table-pest-show {
    display: block;
    width: auto;
  }
  .table-pest .table-pest-hide {
    display: none;
  }
  .checkout-seals {
    display: none;
  }
  .after-payment div {
    margin: 20px 0;
  }
  .after-payment-list {
    float: none;
  }
  .after-payment-price {
    float: left;
  }
  .prices {
    padding: 0;
    margin-right: 0;
  }
  .about-link {
    width: auto;
  }
  .about-links > img {
    margin: 0 auto;
    display: block;
  }
  .about-links > div {
    margin: 15px auto 0;
    display: block;
  }
  .swot-main-img {
    width: 200px;
  }
  .buy-from-us div {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .categories-span {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .categories p {
    display: none;
  }
  .table-swot tr:first-child {
    height: auto;
  }
  .table-swot th {
    height: auto;
  }
  .swot-icons {
    margin: 20px 0 0 0;
  }
  .payment-options a {
    float: none;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  .img-swot {
    display: block;
    width: 100%;
    height: 100%;
  }
  .checkout-options img {
    float: none;
    margin: 10px auto 0;
  }
  .checkout-options a {
    float: none;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}

@media (max-width: 370px) {
  .homepage-div2 {
    margin: 50px 10px;
  }
  .title-div {
    margin-right: 0;
    max-width: 160px;
  }
}

@media print {
  nav,
  .addthis_jumbo_share,
  .main-img-figure,
  .ad-centered,
  .next-wrapper,
  .next,
  .categories,
  .categories-1,
  .categories-2,
  .sidebar1,
  .footer-col-1,
  .footer-col-2,
  .ad2,
  .swot-icons,
  #ss360-search-console {
    display: none;
  }
}
