﻿/*
Theme Name: Twenty Twenty
Text Domain: twentytwenty
Version: 1.5
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries
----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------- */
html,
body {
	border: none;
	margin: 0;
	padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}
blockquote::before,
blockquote::after {
	content: "";
}
/* -------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------- */
html {
	font-size: 62.5%; /* 1rem = 10px */
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
body {
	background: #f5efe0;
	box-sizing: border-box;
	color: #2B2E34 !important;
	font-family: "BrandonText Regular", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 18px;
	letter-spacing: -0.015em;
	text-align: left;
	width: 80%;
	margin: 0 auto;
	box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
  				0 6.7px 5.3px rgba(0, 0, 0, 0.048),
  				0 12.5px 10px rgba(0, 0, 0, 0.06),
				0 22.3px 17.9px rgba(0, 0, 0, 0.072),
				0 41.8px 33.4px rgba(0, 0, 0, 0.086),
  				0 100px 80px rgba(0, 0, 0, 0.12)
}
@supports ( font-variation-settings: normal ) {
	body {
		/*font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;*/
		font-family: "BrandonText Regular", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}
*,
*::before,
*::after {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
	word-break: break-word;
	word-wrap: break-word;
}
#site-content {
	overflow: hidden;
	position: relative;
	/*top: 100px;*/
}
/* Clearing ---------------------------------- */
.group::after,
.entry-content::after {
	clear: both;
	content: "";
	display: block;
}
/* sticky header */
header#site-header{
	/*position: fixed !important;
	width: 80%;
	top: 0;
	display: flex;*/
}
.search-results header{
	position: relative !important;
}
#site-header.sticky{
	position:fixed;
      -webkit-animation: slide-down 0.7s;
    -moz-animation: slide-down 0.7s;
    animation: slide-down 0.7s;
    width: 80%;
}
@-webkit-keyframes slide-down { 0% { opacity:0; transform:translateY(-100%);}100% { opacity:0.9; transform:translateY(0);}}
@-moz-keyframes slide-down { 0% { opacity:0; transform:translateY(-100%);}100% { opacity:0.9; transform:translateY(0);}}
@keyframes slide-down { 0% { opacity:0; transform:translateY(-100%);}100% { opacity:0.9; transform:translateY(0);}}
/* sticky header */
.entry-header.header-footer-group {
    width: 100%;
}
/* Base Transitions -------------------------- */
a,
path {
	transition: all 0.15s linear;
}
@-webkit-keyframes move{
  	0% {
      	background-position: 0 0;
  	}
  	100% {
    	background-position: 28px 0;
  	}
}
@keyframes move {
  	0% {
    	background-position: 0 0;
  	}
  	100% {
  		background-position: 28px 0;
  	}
}
/* Screen Reader Text ------------------------ */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	word-break: normal;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	right: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
/* Skip Link --------------------------------- */
.skip-link {
	left: -9999rem;
	top: 2.5rem;
	z-index: 999999999;
	text-decoration: underline;
}
.skip-link:focus {
	display: block;
	left: 6px;
	top: 7px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: normal;
	padding: 15px 23px 14px;
	z-index: 100000;
	right: auto;
}
/* Fonts ------------------------------------- */
/*
 * Chrome renders extra-wide &nbsp; characters for the Hoefler Text font.
 * This results in a jumping cursor when typing in both the classic editor and
 * block editor. The following font-face override fixes the issue by manually
 * inserting a custom font that includes just a Hoefler Text space replacement
 * for that character instead.
 */
@font-face {
	font-family: NonBreakingSpaceOverride;
	src: url(data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAAMoAA0AAAAACDQAAALTAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCahEICjx3CywAATYCJANUBCAFhiEHgWwbXQfILgpsY+rQRRARwyAs6uL7pxzYhxEE+32b3aeHmifR6tklkS9hiZA0ewkqGRJE+H7/+6378ASViK/PGeavqJyOzsceKi1s3BCiQsiOdn1r/RBgIJYEgCUhbm/8/8/h4saPssnTNkkiWUBrTRtjmQSajw3Ui3pZ3LYDPD+XG2C3JA/yKAS8/rU5eNfuGqRf4eNNgV4YAlIIgxglEkWe6FYpq10+wi3g+/nUgvgPFczNrz/RsTgVm/zfbPuHZlsuQECxuyqBcQwKFBjFgKO8AqP4bAN9tFJtnM9xPcbNjeXS/x1wY/xU52f5W/X1+9cnH4YwKIaoRRAkUkj/YlAAeF/624foiIDBgBmgQBeGAyhBljUPZUm/l2dTvmpqcBDUOHdbPZWd8JsBAsGr4w8/EDn82/bUPx4eh0YNrQTBuHO2FjQEAGBwK0DeI37DpQVqdERS4gZBhpeUhWCfLFz7J99aEBgsJCHvUGAdAPp4IADDCAPCEFMGpMZ9AQpTfQtQGhLbGVBZFV8BaqNyP68oTZgHNj3M8kBPfXTTC9t90UuzYhy9ciH0grVlOcqyCytisvbsERsEYztiznR0WCrmTksJwbSNK6fd1Rvr25I9oLvctUoEbNOmXJbqgYgPXEHJ82IUsrCnpkxh23F1rfZ2zcRnJYoXtauB3VTFkFXQg3uoZYD5qE0kdjDtoDoF1h2bulGmev5HbYhbrjtohQSRI4aNOkffIcT+d3v6atpaYh3JvPoQsztCcqvaBkppDSPcQ3bw3KaCBo1f5CJWTZEgW3LjLofYg51MaVezrx8xZitYbQ9KYeoRaqQdVLwSEfrKXLK1otCWOKNdR/YwYAfon5Yk8O2MJfSD10dPGA5PIJJQMkah0ugMJiv6x4Dm7LEa8xnrRGGGLAg4sAlbsA07sAt76DOsXKO3hIjtIlpnnFrt1qW4kh6NhS83P/6HB/fl1SMAAA==) format("woff2"), url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAUQAA0AAAAACDQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAE9AAAABwAAAAchf5yU0dERUYAAATYAAAAHAAAAB4AJwAbT1MvMgAAAaAAAABJAAAAYJAcgU5jbWFwAAACIAAAAF4AAAFqUUxBZ2dhc3AAAATQAAAACAAAAAgAAAAQZ2x5ZgAAApAAAAAyAAAAPL0n8y9oZWFkAAABMAAAADAAAAA2Fi93Z2hoZWEAAAFgAAAAHQAAACQOSgWaaG10eAAAAewAAAAzAAAAVC7TAQBsb2NhAAACgAAAABAAAAAsAOQBAm1heHAAAAGAAAAAHQAAACAAWQALbmFtZQAAAsQAAAF6AAADIYvD/Adwb3N0AAAEQAAAAI4AAADsapk2o3jaY2BkYGAA4ov5mwzj+W2+MnCzXwCKMNzgCBSB0LfbQDQ7AxuI4mBgAlEAFKQIRHjaY2BkYGD3+NvCwMDBAALsDAyMDKhAFAA3+wH3AAAAeNpjYGRgYBBl4GBgYgABEMnIABJzAPMZAAVmAGUAAAB42mNgZlJhnMDAysDCKsKygYGBYRqEZtrDYMT4D8gHSmEHjgUFOQwODAqqf9g9/rYwMLB7MNUAhRlBcsxBrMlASoGBEQAj8QtyAAAAeNrjYGBkAAGmWQwMjO8gmBnIZ2NA0ExAzNjAAFYJVn0ASBsD6VAIDZb7AtELAgANIgb9AHjaY2BgYGaAYBkGRgYQSAHyGMF8FgYPIM3HwMHAxMDGoMCwQIFLQV8hXvXP//9AcRCfAcb///h/ygPW+w/vb7olBjUHCTCyMcAFGZmABBO6AogThgZgIUsXAEDcEzcAAHjaY2BgECMCyoEgACZaAed42mNgYmRgYGBnYGNgYAZSDJqMgorCgoqCjECRXwwNrCAKSP5mAAFGBiRgyAAAi/YFBQAAeNqtkc1OwkAUhU/5M25cEhcsZick0AwlBJq6MWwgJkAgYV/KAA2lJeUn+hY+gktXvpKv4dLTMqKycGHsTZNv7px7z50ZAFd4hYHjdw1Ls4EiHjVncIFnzVnc4F1zDkWjrzmPW+NNcwGlzIRKI3fJlUyrEjZQxb3mDH2fNGfRx4vmHKqG0JzHg6E0F9DOlFBGBxUI1GEzLNT4S0aLuTtsGAEUuYcQHkyg3KmIum1bNUvKlrjbbAIleqHHnS4iSudpQcySMYtdFiXlAxzSbAwfMxK6kZoHKhbjjespMTioOPZnzI+4ucCeTVyKMVKLfeAS6vSWaTinuZwzyy/Dc7vaed+6KaV0kukdPUk6yOcctZPvvxxqksq2lEW8RvHjMEO2FCl/zy6p3NEm0R9OFSafJdldc4QVeyaaObMBO0/5cCaa6d9Ggyubxire+lEojscdjoWUR1xGOy8KD8mG2ZLO2l2paDc3A39qmU2z2W5YNv5+u79e6QfGJY/hAAB42m3NywrCMBQE0DupWp/1AYI7/6DEaLQu66Mrd35BKUWKJSlFv1+rue4cGM7shgR981qSon+ZNwUJ8iDgoYU2OvDRRQ99DDDECAHGmGCKmf80hZSx/Kik/LliFbtmN6xmt+yOjdg9GztV4tROnRwX/Bsaaw51nt4Lc7tWaZYHp/MlzKx51LZs5htNri+2AAAAAQAB//8AD3jaY2BkYGDgAWIxIGZiYARCESBmAfMYAAR6AEMAAAABAAAAANXtRbgAAAAA2AhRFAAAAADYCNuG) format("woff");
}
/* ----------------------------------------------
Inter variable font. Usage:
@supports (font-variation-settings: normal) {
	html { font-family: 'Inter var', sans-serif; }
}
@supports (font-variation-settings: normal) {
	html { font-family: 'BrandonText', sans-serif; }
}
---------------------------------------------- */
/*@font-face {
	font-family: "Inter var";
	font-weight: 100 900; 
	font-style: normal;
	font-display: swap;
	src: url(./assets/fonts/inter/Inter-upright-var.woff2) format("woff2");
}
@font-face {
	font-family: "Inter var";
	font-weight: 100 900; 
	font-style: italic;
	font-display: swap;
	src: url(./assets/fonts/inter/Inter-italic-var.woff2) format("woff2");
}*/
@font-face {
	font-family: "BrandonText Medium";
	font-style: normal;
	font-display: swap;
	src: url(./assets/fonts/brandon/BrandonText-Medium.woff2) format("woff2");
}
@font-face {
	font-family: "BrandonText Regular";
	font-style: normal;
	font-display: swap;
	src: url(./assets/fonts/brandon/BrandonText-Regular.woff2) format("woff2");
}
@font-face {
	font-family: "Gotham Bold";
	font-style: normal;
	font-display: swap;
	src: url(./assets/fonts/gotham/gotham-bold.woff2) format("woff2");
}
@font-face {
	font-family: "BrandonText Bold";
	font-style: normal;
	font-display: swap;
	src: url(./assets/fonts/brandon/BrandonText-Bold.woff2) format("woff2");
}
@font-face {
	font-family: "BrandonText Light";
	font-style: normal;
	font-display: swap;
	src: url(./assets/fonts/brandon/BrandonText-Light.woff2) format("woff2");
}
/* Accessibility Settings -------------------- */
@media ( prefers-reduced-motion: reduce ) {
	* {
		animation-duration: 0s !important;
		transition-duration: 0s !important;
	}
}
/* -------------------------------------------------------------------------- */
/*	2. Element Base
/* ---------------------------------------------*---------------------------- */
main {
	display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
.faux-heading {
	/*font-feature-settings: "lnum";*/
	/*font-variant-numeric: lining-nums;*/
	font-weight: 700;
	/*letter-spacing: -0.0415625em;*/
	line-height: 1.25;
	margin: 3.5rem 0 2rem;
}
h1,
.heading-size-1 {
	font-size: 3.6rem;
	font-weight: 800;
	line-height: 1.138888889;
}
h2,
.heading-size-2 {
	font-size: 3.2rem;
	font-family: "Gotham Bold";
	color: #112952;
}
h3,
.heading-size-3 {
	font-size: 2.8rem;
	font-family: "Gotham Bold";
	color: #112952;
}
h4,
.heading-size-4 {
	font-size: 2.4rem;
	font-family: "Gotham Bold";
	color: #112952;
}
h5,
.heading-size-5 {
	font-size: 2.1rem;
	color: #112952;
	font-family: "Gotham Bold";
	margin-bottom: 0.5em !important;
}
h6,
.heading-size-6 {
	font-size: 1.6rem;
	letter-spacing: 0.03125em;
	text-transform: uppercase;
}
p {
	line-height: 1.5;
	margin: 0 0 1em 0;
}
em,
i,
q,
dfn {
	font-style: italic;
}
em em,
em i,
i em,
i i,
cite em,
cite i {
	font-weight: bolder;
}
big {
	font-size: 1.2em;
	font-family: "BrandonText Medium";
}
small {
	font-size: 0.75em;
	font-family: "BrandonText Medium";
}
b,
strong {
	font-weight: 700;
}
ins {
	text-decoration: underline;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
abbr,
acronym {
	cursor: help;
}
address {
	line-height: 1.5;
	margin: 0 0 2rem 0;
}
hr {
	border-style: solid;
	border-width: 0.1rem 0 0 0;
	border-color: #dcd7ca;
	margin: 4rem 0;
}
/* FAQ Line */
hr.faqline {
    border: 1px dashed #112952;
    background: none;
    height: 0;
}	
/* FAQ Line */
.entry-content hr,
hr.styled-separator {
	/*background: linear-gradient(to left, currentColor calc(50% - 16px), transparent calc(50% - 16px), transparent calc(50% + 16px), currentColor calc(50% + 16px));
	background-color: transparent !important;
	border: none;
	height: 0.1rem;
	overflow: visible;
	position: relative;*/
}
.entry-content hr:not(.has-background),
hr.styled-separator {
	/*color: #6d6d6d;*/
}
.entry-content hr::before,
.entry-content hr::after,
hr.styled-separator::before,
hr.styled-separator::after {
	/*background: currentColor;
	content: "";
	display: block;
	height: 1.6rem;
	position: absolute;
	top: calc(50% - 0.8rem);
	transform: rotate(22.5deg);
	width: 0.1rem;*/
}
.entry-content hr::before,
hr.styled-separator::before {
	/*left: calc(50% - 0.5rem);*/
}
.entry-content hr::after,
hr.styled-separator::after {
	/*right: calc(50% - 0.5rem);*/
}
a {
	/*color: #cd2653;*/
	color: #3dc0ee;
	text-decoration: underline;
}
a:hover,
a:focus {
	text-decoration: none;
}
/* Lists ------------------------------------- */
ul,
ol {
	margin: 0 0 3rem 3rem;
}
ul {
	list-style: disc;
	/*list-style: none;*/
}
ul ul {
	list-style: circle;
}
ul ul ul {
	list-style: square;
}
ol {
	list-style: decimal;
}
ol ol {
	list-style: lower-alpha;
}
ol ol ol {
	list-style: lower-roman;
}
li {
	line-height: 1.5;
	margin: 0.5rem 0 0 1rem;
	/*list-style-image: url("assets/images/pros-li-halfpill.png");*/
}
li > ul,
li > ol {
	margin: 1rem 0 0 2rem;
}
.reset-list-style,
.reset-list-style ul,
.reset-list-style ol {
	list-style: none;
	margin: 0;
}
.reset-list-style li {
	margin: 0;
}
dt,
dd {
	line-height: 1.5;
}
dt {
	font-weight: 700;
}
dt + dd {
	margin-top: 0.5rem;
}
dd + dt {
	margin-top: 1.5rem;
}
/* Quotes ------------------------------------ */
blockquote {
	border-color: #cd2653;
	border-style: solid;
	/*rtl:ignore*/
	border-width: 0 0 0 0.2rem;
	color: inherit;
	font-size: 1em;
	margin: 4rem 0;
	/*rtl:ignore*/
	padding: 0.5rem 0 0.5rem 2rem;
}
cite {
	color: #6d6d6d;
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.25;
}
blockquote cite {
	display: block;
	margin: 2rem 0 0 0;
}
blockquote p:last-child {
	margin: 0;
}
/* Code -------------------------------------- */
code,
kbd,
pre,
samp {
	font-family: monospace;
	font-size: 0.9em;
	padding: 0.4rem 0.6rem;
}
code,
kbd,
samp {
	background: rgba(0, 0, 0, 0.075);
	border-radius: 0.2rem;
}
pre {
	border: 0.1rem solid #dcd7ca;
	line-height: 1.5;
	margin: 4rem 0;
	overflow: auto;
	padding: 3rem 2rem;
	text-align: left;
}
pre code {
	background: transparent;
	padding: 0;
}
/* Media ------------------------------------- */
figure {
	display: block;
	margin: 0;
}
iframe {
	display: block;
	max-width: 100%;
}
video {
	display: block;
}
svg,
img,
embed,
object {
	display: block;
	height: auto;
	max-width: 100%;
}
figcaption,
.wp-caption-text {
	color: #6d6d6d;
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
	margin-top: 1.5rem;
}
figcaption a,
.wp-caption-text a {
	color: inherit;
}
blockquote.instagram-media,
iframe.instagram-media {
	margin: auto !important;
}
/* GALLERIES */
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 3em 0 3em -0.8em;
	width: calc(100% + 1.6em);
}
.gallery-item {
	margin: 0.8em 0;
	padding: 0 0.8em;
	width: 100%;
}
.gallery-caption {
	display: block;
	margin-top: 0.8em;
}
/* Inputs ------------------------------------ */
fieldset {
	border: 0.2rem solid #dcd7ca;
	padding: 2rem;
}
legend {
	font-size: 0.85em;
	font-weight: 700;
	padding: 0 1rem;
}
label {
	display: block;
	font-size: 1.6rem;
	font-weight: 400;
	margin: 0 0 0.5rem 0;
}
label.inline,
input[type="checkbox"] + label {
	display: inline;
	font-weight: 400;
	margin-left: 0.5rem;
}
input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	top: 2px;
	display: inline-block;
	margin: 0;
	width: 1.5rem;
	min-width: 1.5rem;
	height: 1.5rem;
	background: #fff;
	border-radius: 0;
	border-style: solid;
	border-width: 0.1rem;
	border-color: #dcd7ca;
	box-shadow: none;
	cursor: pointer;
}
input[type="checkbox"]:checked::before {
	/* Use the "Yes" SVG Dashicon */
	content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E");
	position: absolute;
	display: inline-block;
	margin: -0.1875rem 0 0 -0.25rem;
	height: 1.75rem;
	width: 1.75rem;
}
input,
textarea,
button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file__button {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	line-height: 1;
}
@supports ( font-variation-settings: normal ) {
	input,
	textarea,
	button,
	.button,
	.faux-button,
	.faux-button.more-link,
	.wp-block-button__link,
	.wp-block-file__button {
		font-family: "BrandonText Regular", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}
input,
textarea {
	border-color: #dcd7ca;
	color: #000;
}
code,
input[type="url"],
input[type="email"],
input[type="tel"] {
	/*rtl:ignore*/
	direction: ltr;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff;
	border-radius: 0;
	border-style: solid;
	border-width: 0.1rem;
	box-shadow: none;
	display: block;
	font-size: 1.6rem;
	letter-spacing: -0.015em;
	margin: 0;
	max-width: 100%;
	padding: 1.5rem 1.8rem;
	width: 100%;
}
select {
	font-size: 1em;
}
textarea {
	height: 12rem;
	line-height: 1.5;
	width: 100%;
}
input::-webkit-input-placeholder {
	line-height: normal;
}
input:-ms-input-placeholder {
	line-height: normal;
}
input::-moz-placeholder {
	line-height: revert; /* Reset to the value from the user-agent stylesheet. */
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}
button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #cd2653;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.0333em;
	line-height: 1.25;
	margin: 0;
	opacity: 1;
	padding: 1.1em 1.44em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity 0.15s linear;
	outline: none;
}
button:focus,
button:hover,
.button:focus,
.button:hover,
.faux-button:focus,
.faux-button:hover,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:focus,
.wp-block-file .wp-block-file__button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
	text-decoration: underline;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]: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-color: currentColor;
	outline: none;
}
input[type="search"]:focus {
	outline: thin dotted;
	outline-offset: -4px;
}
.archive .faux-button{
	text-decoration: none;
	color: #3dc0ee;
	border: 2px solid #3dc0ee;
	padding: 8px 20px;
	line-height: 2em;
	font-family: "BrandonText Bold";
	background-color: transparent;
}
.archive .faux-button:hover{
	background-color: #3dc0ee;
	text-decoration: none;
	color: #fff;
}
.archive a, .search a{
	color: #3dc0ee;
	text-decoration: none;
}
/* Tables ------------------------------------ */
table {
	border: 0.0rem solid #dcd7ca;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: 1.7rem;
	margin: 0rem 0;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}
.alignleft > table {
	margin: 0;
}
.alignright > table {
	margin: 0;
}
th,
td {
	border: 0.0rem solid #dcd7ca !important;
	line-height: 1.8;
	margin: 0;
	overflow: visible;
	padding: 0.5em;
	table-layout: fixed;
	white-space: nowrap;
}
caption {
	background: #dcd7ca;
	font-weight: 600;
	padding: 0.5em;
	text-align: center;
}
thead {
	vertical-align: bottom;
	white-space: nowrap;
	color:#fff;
	background-color: #112952;
}
.home thead{
	background-color: transparent;
}
th {
	font-weight: 700;
}
/* -------------------------------------------------------------------------- */
/*	3. Helper Classes
/* -------------------------------------------------------------------------- */
/* Layout ------------------------------------ */
.no-margin {
	margin: 0;
}
.no-padding {
	padding: 0;
}
.screen-height {
	min-height: 100vh;
}
.admin-bar .screen-height {
	min-height: calc(100vh - 32px);
}
@media (max-width: 782px) {
	.admin-bar .screen-height {
		min-height: calc(100vh - 46px);
	}
}
.screen-width {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}
/* Sections ---------------------------------- */
section {
	padding: 5rem 0;
	width: 100%;
}
.section-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 120rem;
	width: calc(100% - 4rem);
	/*width: 100%;*/
}
.section-inner.max-percentage {
	width: 100%;
}
.section-inner.thin {
	max-width: 58rem;
}
.section-inner.small {
	max-width: 80rem;
}
.section-inner.medium {
	max-width: 100rem;
}
.section-inner.no-margin {
	margin: 0;
}
/*.archive .featured-media-inner.section-inner.medium {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}*/
/* Toggles ----------------------------------- */
.toggle {
	-moz-appearance: none;
	-webkit-appearance: none;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	position: relative;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	text-align: inherit;
	user-select: none;
}
button.toggle {
	background: none;
	border: none;
	box-shadow: none;
	border-radius: 0;
	font-size: inherit;
	font-weight: 400;
	letter-spacing: inherit;
	padding: 0;
	text-transform: none;
}
/* Hiding and Showing ------------------------ */
.js .show-js {
	display: block !important;
}
.js .hide-js {
	display: none !important;
}
.no-js .show-no-js {
	display: block !important;
}
.no-js .hide-no-js {
	display: none !important;
}
/* Typography -------------------------------- */
.font-size-xl {
	font-size: 1.25em;
}
.font-size-xs {
	font-size: 0.8em;
}
.no-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/* Colors ------------------------------------ */
/* COLOR */
.color-accent,
.color-accent-hover:focus,
.color-accent-hover:hover {
	color: #cd2653;
}
/* BACKGROUND COLOR */
.bg-accent,
.bg-accent-hover:focus,
.bg-accent-hover:hover {
	background-color: #cd2653;
}
/* BORDER COLOR */
.border-color-accent,
.border-color-accent-hover:focus,
.border-color-accent-hover:hover {
	border-color: #cd2653;
}
/* FILL COLOR */
.fill-children-accent,
.fill-children-accent * {
	fill: #cd2653;
}
.fill-children-current-color,
.fill-children-current-color * {
	fill: currentColor;
}
/* Opacity ----------------------------------- */
.opacity-0 {
	opacity: 0;
}
.opacity-5 {
	opacity: 0.05;
}
.opacity-10 {
	opacity: 0.1;
}
.opacity-15 {
	opacity: 0.15;
}
.opacity-20 {
	opacity: 0.2;
}
.opacity-25 {
	opacity: 0.25;
}
.opacity-30 {
	opacity: 0.3;
}
.opacity-35 {
	opacity: 0.35;
}
.opacity-40 {
	opacity: 0.4;
}
.opacity-45 {
	opacity: 0.45;
}
.opacity-50 {
	opacity: 0.5;
}
.opacity-55 {
	opacity: 0.55;
}
.opacity-60 {
	opacity: 0.6;
}
.opacity-65 {
	opacity: 0.65;
}
.opacity-70 {
	opacity: 0.7;
}
.opacity-75 {
	opacity: 0.75;
}
.opacity-80 {
	opacity: 0.8;
}
.opacity-85 {
	opacity: 0.85;
}
.opacity-90 {
	opacity: 0.9;
}
.blend-mode-exclusion {
	mix-blend-mode: exclusion;
}
.blend-mode-hue {
	mix-blend-mode: hue;
}
.blend-mode-saturation {
	mix-blend-mode: saturation;
}
.blend-mode-color {
	mix-blend-mode: color;
}
.blend-mode-luminosity {
	mix-blend-mode: luminosity;
}
/* Image Classes ----------------------------- */
.bg-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bg-attachment-fixed {
	background-attachment: fixed;
}
@supports ( -webkit-overflow-scrolling: touch ) {
	.bg-attachment-fixed {
		background-attachment: scroll;
	}
}
@media ( prefers-reduced-motion: reduce ) {
	.bg-attachment-fixed {
		background-attachment: scroll;
	}
}
.wp-block-image.is-resized {
	margin-left: auto;
	margin-right: auto;
}
/* Search Form ------------------------------- */
.search-form {
	align-items: stretch;
	display: flex;
	flex-wrap: nowrap;
	margin: 0 0 -0.8rem -0.8rem;
}
.search-form .search-field,
.search-form .search-submit {
	margin: 0 0 0.8rem 0.8rem;
}
.search-form label {
	align-items: stretch;
	display: flex;
	font-size: inherit;
	margin: 0;
	width: 100%;
}
.search-form .search-field {
	width: 100%;
}
.search-form .search-submit {
	flex-shrink: 0;
}
.search-form .search-submit:focus,
.search-form .search-submit:hover {
	text-decoration: none;
}
/* Social Icons ------------------------------ */
ul.social-icons {
	display: flex;
	flex-wrap: wrap;
	margin: -0.9rem 0 0 -0.9rem;
	width: calc(100% + 0.9rem);
}
ul.social-icons li {
	margin: 0.9rem 0 0 0.9rem;
}
.social-icons a {
	align-items: center;
	background: #cd2653;
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 4.4rem;
	justify-content: center;
	padding: 0;
	text-decoration: none;
	transition: transform 0.15s ease-in-out;
	width: 4.4rem;
}
.social-icons a:focus,
.social-icons a:hover {
	transform: scale(1.1);
	text-decoration: none;
}
/* Cover Modals ------------------------------ */
.cover-modal {
	display: none;
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}
.cover-modal::-webkit-scrollbar {
	display: none !important;
}
.cover-modal.show-modal {
	display: block;
	cursor: pointer;
}
.cover-modal.show-modal > * {
	cursor: default;
}
/* -------------------------------------------------------------------------- */
/*	4.	Site Header
/* -------------------------------------------------------------------------- */
#site-header {
	background: #fff;
	position: relative;
}
.header-inner {
	max-width: 168rem;
	padding: 3.15rem 0;
	z-index: 100;
}
.sticky .header-inner {
    padding: 1rem 0;
}
/* Header Titles ----------------------------- */
.header-titles-wrapper {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 0 4rem;
	text-align: center;
}
body:not(.enable-search-modal) .header-titles-wrapper {
	justify-content: flex-start;
	padding-left: 0;
	text-align: left;
}
.site-title,
.site-logo,
.site-description {
	margin: 0;
}
.site-title {
	font-size: 2.1rem;
	font-weight: 600;
	line-height: 1;
}
.site-title a {
	color: inherit;
	display: block;
	text-decoration: none;
}
.site-title a:hover,
.site-title a:focus {
	text-decoration: underline;
}
.site-description {
	margin-top: 1rem;
	color: #6d6d6d;
	font-size: 1.8rem;
	font-weight: 500;
	display: none;
	letter-spacing: -0.0311em;
	transition: all 0.15s linear;
}
.site-logo a,
.site-logo img {
	display: block;
}
.header-titles .site-logo .site-logo {
	margin: 0;
}
.site-logo img {
	max-height: 6rem;
	margin: 0 auto;
	width: auto;
}
.sticky .site-logo img{
	margin-left: 10rem;
	margin-right: 10rem;
	height: 40px;
}
.sticky .site-logo {
    margin-top: 0 !important;
}
body:not(.enable-search-modal) .site-logo img {
	margin: 0;
}
/* Overlay Header ---------------------------- */
.overlay-header #site-header {
	background: transparent;
	margin: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 2;
}
.overlay-header .header-inner {
	color: #fff;
}
.overlay-header .site-description,
.overlay-header .toggle {
	color: inherit;
}
.overlay-header .header-inner .toggle-wrapper::before {
	background-color: currentColor;
	opacity: 0.25;
}
.admin-bar.overlay-header #site-header {
	top: 32px;
}
@media (max-width: 782px) {
	.admin-bar.overlay-header #site-header {
		top: 46px;
	}
}
/* Header Navigation ------------------------- */
/*.header-navigation-wrapper {
	display: none;
}*/
@media (min-width:767px){
	.toggle.search-toggle.mobile-search-toggle {
		display: none;
	}
	.toggle.nav-toggle.mobile-nav-toggle {
		display: none;
	}
}
/* Header Toggles ---------------------------- */
/*.header-toggles {
	display: none;
}*/
.header-inner .toggle {
	align-items: center;
	display: flex;
	overflow: visible;
	padding: 0 2rem;
}
.header-inner .toggle svg {
	display: block;
	position: relative;
	z-index: 1;
}
.header-inner .toggle path {
	fill: currentColor;
}
.toggle-inner {
	display: flex;
	justify-content: center;
	height: 2.3rem;
	position: relative;
}
.toggle-icon {
	display: block;
	overflow: hidden;
}
.toggle-inner .toggle-text {
	color: #6d6d6d;
	font-size: 1rem;
	font-weight: 600;
	position: absolute;
	top: calc(100% + 0.5rem);
	width: auto;
	white-space: nowrap;
	word-break: break-all;
}
.overlay-header .toggle-text {
	color: inherit;
}
.header-inner .toggle:focus .toggle-text,
.header-inner .toggle:hover .toggle-text {
	text-decoration: underline;
}
/* Search Toggle ----------------------------- */
.search-toggle {
	position: absolute;
	bottom: 0;
	/*left: 0;*/
	top: 0;
	z-index: 99999;
	right: 0;
}
.search-toggle .toggle-icon,
.search-toggle svg {
	height: 1.5rem;
	max-width: 2.3rem;
	width: 2.3rem;
	transform: rotate(90deg);
}
/* Navigation Toggle ------------------------- */
.nav-toggle {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 0;
	width: 6.6rem;
}
.nav-toggle .toggle-icon,
.nav-toggle svg {
	height: 0.8rem;
	width: 2.6rem;
}
.nav-toggle .toggle-inner {
	padding-top: 0.8rem;
}
/* Primary Menu ---------------------------- */
.primary-menu-wrapper {
	display: none;
}
ul.primary-menu {
	display: flex;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: -0.0277em;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin: -0.8rem 0 0 -1.6rem;
}
.primary-menu .icon {
	display: block;
	height: 0.7rem;
	position: absolute;
	pointer-events: none;
	transform: rotate(-45deg);
	width: 1.3rem;
}
.primary-menu .icon::before,
.primary-menu .icon::after {
	content: "";
	display: block;
	background-color: currentColor;
	position: absolute;
	bottom: calc(50% - 0.1rem);
	left: 0;
}
.primary-menu .icon::before {
	height: 0.9rem;
	width: 0.2rem;
	color: #fff;
}
.primary-menu .icon::after {
	height: 0.2rem;
	width: 0.9rem;
	color: #fff;
}
.primary-menu li {
	font-size: inherit;
	line-height: 1.25;
	position: relative;
}
.primary-menu > li {
	margin: 0.8rem 0 0 1.6rem;
}
.primary-menu > li.menu-item-has-children > a {
	padding-right: 2rem;
}
.primary-menu > li > .icon {
	right: -0.5rem;
	top: calc(50% - 0.4rem);
}
.primary-menu a {
	color: #ffffff !important;
	display: block;
	line-height: 1.2;
	text-decoration: none;
	font-family: "BrandonText Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}
.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current_page_ancestor {
	text-decoration: none;
}
.primary-menu li.current-menu-item > a,
.primary-menu li.current-menu-item > .link-icon-wrapper > a {
	text-decoration: none;
}
.primary-menu li.current-menu-item > a:hover,
.primary-menu li.current-menu-item > .link-icon-wrapper > a:hover,
.primary-menu li.current-menu-item > a:focus,
.primary-menu li.current-menu-item > .link-icon-wrapper > a:focus {
	text-decoration: none;
}
/* SUB MENU */
.primary-menu ul {
	background: #000;
	border-radius: 0.4rem;
	color: #fff;
	font-size: 1.7rem;
	opacity: 0;
	padding: 1rem 0;
	position: absolute;
	right: 9999rem;
	top: calc(100% + 2rem);
	transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s;
	transform: translateY(0.6rem);
	width: 20rem;
	z-index: 1;
}
.primary-menu li.menu-item-has-children:hover > ul,
.primary-menu li.menu-item-has-children:focus > ul,
.primary-menu li.menu-item-has-children.focus > ul {
	right: 0;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.15s linear, transform 0.15s linear;
}
.primary-menu ul::before,
.primary-menu ul::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 100%;
}
.primary-menu ul::before {
	height: 2rem;
	left: 0;
	right: 0;
}
.primary-menu ul::after {
	border: 0.8rem solid transparent;
	border-bottom-color: #000;
	right: 1.8rem;
}
.primary-menu ul a {
	background: transparent;
	border: none;
	color: inherit;
	display: block;
	padding: 1rem 2rem;
	transition: background-color 0.15s linear;
	width: 100%;
}
.primary-menu ul li.menu-item-has-children > a {
	padding-right: 4.5rem;
}
.primary-menu ul li.menu-item-has-children .icon {
	position: absolute;
	right: 1.5rem;
	top: calc(50% - 0.5rem);
}
/* DEEP DOWN */
.primary-menu ul ul {
	top: -1rem;
}
.primary-menu ul li.menu-item-has-children:hover > ul,
.primary-menu ul li.menu-item-has-children:focus > ul,
.primary-menu ul li.menu-item-has-children.focus > ul {
	right: calc(100% + 2rem);
}
.primary-menu ul ul::before {
	bottom: 0;
	height: auto;
	left: auto;
	right: -2rem;
	top: 0;
	width: 2rem;
}
.primary-menu ul ul::after {
	border-bottom-color: transparent;
	/*rtl:ignore*/
	border-left-color: #000;
	bottom: auto;
	right: -1.6rem;
	top: 2rem;
}
.rtl .primary-menu ul ul::after {
	transform: rotate(180deg);
}
/*
 * Enable nav submenu expansion with tapping on arrows on large-viewport
 * touch interfaces (e.g. tablets or laptops with touch screens).
 * These rules are supported by all browsers (>IE11) and when JS is disabled.
 */
@media (any-pointer: coarse) {
	.primary-menu > li.menu-item-has-children > a {
		padding-right: 0;
		margin-right: 2rem;
	}
	.primary-menu ul li.menu-item-has-children > a {
		margin-right: 4.5rem;
		padding-right: 0;
		width: unset;
	}
}
/* Repeat previous rules for IE11 (when JS enabled for polyfill). */
body.touch-enabled .primary-menu > li.menu-item-has-children > a {
	padding-right: 0;
	margin-right: 2rem;
}
body.touch-enabled .primary-menu ul li.menu-item-has-children > a {
	margin-right: 4.5rem;
	padding-right: 0;
	width: unset;
}
/* -------------------------------------------------------------------------- */
/*	5. Menu Modal
/* -------------------------------------------------------------------------- */
.menu-modal {
	background: #fff;
	display: none;
	opacity: 0;
	overflow-y: auto;
	overflow-x: hidden;
	position: fixed;
	bottom: 0;
	left: -99999rem;
	right: 99999rem;
	top: 0;
	transition: opacity 0.25s ease-in, left 0s 0.25s, right 0s 0.25s;
	z-index: 99;
}
.admin-bar .menu-modal {
	top: 32px;
}
@media (max-width: 782px) {
	.admin-bar .menu-modal {
		top: 46px;
	}
}
.menu-modal.show-modal {
	display: flex;
}
.menu-modal.active {
	left: 0;
	opacity: 1;
	right: 0;
	transition: opacity 0.25s ease-out;
}
.menu-modal-inner {
	background: #fff;
	display: flex;
	justify-content: stretch;
	overflow: auto;
	-ms-overflow-style: auto;
	width: 100%;
}
.menu-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}
button.close-nav-toggle {
	align-items: center;
	display: flex;
	font-size: 1.6rem;
	font-weight: 500;
	justify-content: flex-end;
	padding: 3.1rem 0;
	width: 100%;
}
button.close-nav-toggle svg {
	height: 1.6rem;
	width: 1.6rem;
}
button.close-nav-toggle .toggle-text {
	margin-right: 1.6rem;
}
.menu-modal .menu-top {
	flex-shrink: 0;
}
/* Main Menu --------------------------------- */
.modal-menu {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}
.modal-menu li {
	border-color: #dedfdf;
	border-style: solid;
	border-width: 0.1rem 0 0 0;
	display: flex;
	flex-wrap: wrap;
	line-height: 1;
	justify-content: flex-start;
	margin: 0;
}
.modal-menu > li > a,
.modal-menu > li > .ancestor-wrapper > a {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.0375em;
}
.modal-menu > li:last-child {
	border-bottom-width: 0.1rem;
}
.modal-menu .ancestor-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.modal-menu a {
	display: block;
	padding: 2rem 2.5rem;
	text-decoration: none;
	width: 100%;
}
.modal-menu a:focus,
.modal-menu a:hover,
.modal-menu li.current-menu-item > .ancestor-wrapper > a,
.modal-menu li.current_page_ancestor > .ancestor-wrapper > a {
	text-decoration: underline;
}
button.sub-menu-toggle {
	border-left: 0.1rem solid #dedfdf;
	flex-shrink: 0;
	margin: 1rem 0;
	padding: 0 2.5rem;
}
button.sub-menu-toggle svg {
	height: 0.9rem;
	transition: transform 0.15s linear;
	width: 1.5rem;
}
button.sub-menu-toggle.active svg {
	transform: rotate(180deg);
}
.modal-menu ul {
	display: none;
	margin: 0;
	width: 100%;
}
.modal-menu ul li {
	border-left-width: 1rem;
}
.modal-menu ul li a {
	color: inherit;
	font-weight: 500;
}
/* Main menu animation ----------------------- */
.menu-wrapper .menu-item {
	position: relative;
}
.menu-wrapper .active {
	display: block;
}
.menu-wrapper.is-toggling {
	pointer-events: none;
}
.menu-wrapper.is-toggling .menu-item {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
}
.menu-wrapper.is-toggling .menu-bottom .social-menu .menu-item {
	width: auto;
}
.menu-wrapper.is-animating .menu-item,
.menu-wrapper.is-animating .toggling-target {
	transition-duration: 250ms;
}
.menu-wrapper.is-animating .menu-item {
	transition-property: transform;
}
.menu-wrapper.is-toggling .toggling-target {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}
.menu-wrapper.is-toggling .toggling-target.active {
	opacity: 0;
}
.menu-wrapper.is-animating.is-toggling .toggling-target {
	display: block;
	transition-property: opacity;
	opacity: 0;
}
.menu-wrapper.is-animating.is-toggling .toggling-target.active {
	opacity: 1;
}
.menu-wrapper.is-toggling .modal-menu > li:last-child li {
	border-top-color: transparent;
	border-bottom-width: 0.1rem;
}
@media (prefers-reduced-motion: reduce) {
	.menu-wrapper.is-animating .menu-item,
	.menu-wrapper.is-animating .toggling-target {
		transition-duration: 1ms !important;
	}
}
/* Expanded Menu ----------------------------- */
.expanded-menu {
	display: none;
}
.mobile-menu {
	display: block;
}
/* Menu Bottom ------------------------------- */
.menu-bottom {
	flex-shrink: 0;
	padding: 4rem 0;
}
.menu-bottom nav {
	width: 100%;
}
.menu-copyright {
	display: none;
	font-size: 1.6rem;
	font-weight: 500;
	margin: 0;
}
.menu-copyright a:focus,
.menu-copyright a:hover {
	text-decoration: underline;
}
.menu-bottom .social-menu {
	justify-content: center;
}
/* -------------------------------------------------------------------------- */
/*	6. Search Modal
/* -------------------------------------------------------------------------- */
.search-modal {
	background: rgba(0, 0, 0, 0.2);
	display: none;
	opacity: 0;
	position: fixed;
	bottom: 0;
	left: -9999rem;
	top: 0;
	transition: opacity 0.2s linear, left 0s 0.2s linear;
	width: 100%;
	z-index: 99999999;
}
.admin-bar .search-modal.active {
	top: 32px;
}
@media (max-width: 782px) {
	.admin-bar .search-modal.active {
		top: 46px;
	}
}
.search-modal-inner {
	background: #fff;
	transform: translateY(-100%);
	transition: transform 0.15s linear, box-shadow 0.15s linear;
	width: 80% !important;
	margin: 0 auto !important;
}
.search-modal-inner .section-inner {
	display: flex;
	justify-content: space-between;
	max-width: 168rem;
}
.search-modal.active {
	left: 0;
	opacity: 1;
	transition: opacity 0.2s linear;
}
.search-modal.active .search-modal-inner {
	box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.08);
	transform: translateY(0);
	transition: transform 0.25s ease-in-out, box-shadow 0.1s 0.25s linear;
	width: 80%;
	margin: 0 auto;
}
button.search-untoggle {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	margin-right: -2.5rem;
	padding: 0 2.5rem;
}
.search-modal button.search-untoggle {
	color: inherit;
}
.search-modal.active .search-untoggle {
	animation: popIn both 0.3s 0.2s;
}
.search-untoggle svg {
	height: 1.5rem;
	transition: transform 0.15s ease-in-out;
	width: 1.5rem;
}
.search-untoggle:focus svg,
.search-untoggle:hover svg {
	transform: scale(1.15);
}
/* Modal Search Form ------------------------- */
.search-modal form {
	margin: 0;
	position: relative;
	width: 100%;
}
.search-modal .search-field {
	background: none;
	border: none;
	border-radius: 0;
	color: inherit;
	font-size: 2rem;
	letter-spacing: -0.0277em;
	height: 8.4rem;
	margin: 0 0 0 -2rem;
	max-width: calc(100% + 2rem);
	padding: 0 0 0 2rem;
	width: calc(100% + 2rem);
}
.search-modal .search-field::-webkit-input-placeholder {
	color: inherit;
}
.search-modal .search-field:-ms-input-placeholder {
	color: inherit;
}
.search-modal .search-field::-moz-placeholder {
	color: inherit;
	line-height: 4;
}
.search-modal .search-submit {
	position: absolute;
	right: -9999rem;
	top: 50%;
	transform: translateY(-50%);
}
.search-modal .search-submit:focus {
	right: 0;
}
/* -------------------------------------------------------------------------- */
/*	7a. Template: Cover Template
/* -------------------------------------------------------------------------- */
.cover-header {
	display: flex;
	overflow: hidden;
}
.cover-header-inner-wrapper {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
}
.cover-header-inner {
	padding: 10rem 0 5rem 0;
	width: 100%;
}
.cover-color-overlay,
.cover-color-overlay::before {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
}
.cover-color-overlay::before {
	background: currentColor;
	content: "";
	display: block;
}
.cover-header .entry-header {
	position: relative;
	width: 100%;
	z-index: 1;
}
.cover-header .entry-header * {
	color: #fff;
}
body.template-cover .entry-header {
	background: transparent;
	padding: 0;
}
.cover-header h1,
.cover-header h2,
.cover-header h3,
.cover-header h4,
.cover-header h5,
.cover-header h6,
.cover-header .faux-heading {
	color: inherit;
}
.cover-header .entry-header a {
	color: inherit;
}
/* To The Content ---------------------------- */
.to-the-content-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 0.5rem);
}
.to-the-content {
	align-items: center;
	display: flex;
	justify-content: center;
	height: 4rem;
	text-decoration: none;
}
.to-the-content svg {
	height: 2rem;
	transition: transform 0.15s linear;
	transform: translateY(0);
	width: 1.767rem;
}
.to-the-content:focus svg,
.to-the-content:hover svg {
	transform: translateY(20%);
}
/* -------------------------------------------------------------------------- */
/*	7c. Template: Full Width
/* -------------------------------------------------------------------------- */
body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
body.template-full-width [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 120rem;
}
body.template-full-width .entry-content .alignleft,
body.template-full-width .entry-content .alignright {
	position: static;
}
body.template-full-width .entry-content .alignleft,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .alignleft,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignleft,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignleft {
	/*rtl:ignore*/
	margin-left: 0;
	position: static;
}
body.template-full-width .entry-content > .alignleft,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
	/*rtl:ignore*/
	margin-left: 2rem;
	position: static;
}
body.template-full-width .entry-content .alignright,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .alignright,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignright,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignright {
	/*rtl:ignore*/
	margin-right: 0;
	position: static;
}
body.template-full-width .entry-content > .alignright,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
	/*rtl:ignore*/
	margin-right: 2rem;
	position: static;
}
/* -------------------------------------------------------------------------- */
/*	8. Post: Archive
/* -------------------------------------------------------------------------- */
/* Archive Header ---------------------------- */
.archive-header {
	background-color: #fff !important;
	padding: 4rem 0;
}
.reduced-spacing .archive-header {
	padding-bottom: 2rem;
}
.archive-title {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: -0.026666667em;
	margin: 0;
	color: #112952;
}
.archive-subtitle p:last-child {
	margin-bottom: 0;
	color: #000;
}
/* Posts ------------------------------------- */
body:not(.singular) main > article:first-of-type {
	padding: 0rem 0 0;
}
/* Search Results ---------------------------- */
.no-search-results-form {
	padding-top: 5rem;
}
/* -------------------------------------------------------------------------- */
/*	9. Post: Single
/* -------------------------------------------------------------------------- */
/* Post Header ------------------------------- */
.singular .entry-header, .archive .entry-header {
	background-color: #fff !important;
	padding: 4rem 0;
	color: #1b2c52;
	display: flex;
	position: relative !important;
}
.entry-categories {
	line-height: 1.25;
	margin-bottom: 2rem;
}
.entry-categories-inner {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	margin: -0.5rem 0 0 -1rem;
}
.entry-categories a {
	border-bottom: 0.15rem solid currentColor;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.036666667em;
	margin: 0.5rem 0 0 1rem;
	text-decoration: none;
	text-transform: uppercase;
}
.entry-categories a:focus,
.entry-categories a:hover {
	border-bottom-color: transparent;
}
h1.entry-title,
h2.entry-title {
	margin: 0;
}
.entry-title a {
	color: inherit !important;
	text-decoration: none;
}
.entry-title a:focus,
.entry-title a:hover {
	text-decoration: underline;
}
.archive .entry-title a:focus,
.archive .entry-title a:hover {
	text-decoration: none;
}
.search .entry-title a:focus,
.search .entry-title a:hover{
	text-decoration: none;
}
.intro-text {
	margin-top: 2rem;
}
.singular .intro-text {
	font-size: 2rem;
	letter-spacing: -0.0315em;
	line-height: 1.4;
}
/* POST META */
.post-meta-single-top .post-meta {
	justify-content: center;
}
.post-meta-wrapper {
	margin-top: 2rem;
	margin-right: auto;
	margin-left: auto;
	max-width: 58rem;
	width: 100%;
}
.post-meta {
	color: #6d6d6d;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.5rem;
	font-weight: 500;
	list-style: none;
	margin: -1rem 0 0 -2rem;
}
.post-meta li {
	flex-shrink: 0;
	letter-spacing: -0.016875em;
	margin: 1rem 0 0 2rem;
	max-width: calc(100% - 2rem);
}
.post-meta a {
	color: inherit;
	text-decoration: none;
}
.post-meta a:focus,
.post-meta a:hover {
	text-decoration: underline;
}
.post-meta .meta-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}
.post-meta .meta-icon {
	flex-shrink: 0;
	margin-right: 1rem;
}
.sticky .post-sticky {
	color: inherit;
}
.post-meta .post-author .meta-icon svg {
	width: 1.6rem;
	height: 1.8rem;
}
.post-meta .post-categories .meta-icon svg {
	width: 1.8rem;
	height: 1.7rem;
}
.post-meta .post-comment-link .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}
.post-meta .post-date .meta-icon svg {
	width: 1.7rem;
	height: 1.8rem;
}
.post-meta .post-edit .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}
.post-meta .post-sticky .meta-icon svg {
	width: 1.5rem;
	height: 1.8rem;
}
.post-meta .post-tags .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}
.post-meta svg * {
	fill: currentColor;
}
/* Featured Media ---------------------------- */
.featured-media {
	margin-top: 5rem;
	position: relative;
}
.singular .featured-media, .archive .featured-media {
	margin-top: 0;
	padding: 0;
}
.col-sm-6.post-title-right{
	padding-left: 3em;
	margin-top: 2.5em;
	margin-bottom: 1em;
}
.singular .featured-media-inner {
	/*position: relative;
	left: calc(50% - 50vw);
	width: 100vw;*/
	width: 100%;
}
.singular .featured-media::before {
	/*background: #fff;
	content: "";
	display: block;
	position: absolute;
	bottom: 50%;
	left: 0;
	right: 0;
	top: 0;*/
}
.featured-media img {
	margin: 0 auto;
}
.featured-media figcaption {
	margin: 1.5rem auto 0 auto;
	text-align: center;
	width: calc(100% - 5rem);
}
.post-inner {
	/*padding-top: 5rem;*/
}
.reduced-spacing.missing-post-thumbnail .post-inner {
	padding-top: 0;
}
/* Post Footer ------------------------------- */
/* POST NAV LINKS */
.post-nav-links {
	border-radius: 0.4rem;
	display: flex;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1;
	margin-top: 3em;
	padding: 0 0.25em;
}
.post-nav-links > * {
	padding: 1em 0.75em;
}
/* POST META BOTTOM */
.post-meta-wrapper.post-meta-single-bottom {
	margin-top: 3rem;
}
/* Author Bio -------------------------------- */
.author-bio {
	margin-top: 4rem;
	margin-right: auto;
	margin-left: auto;
	max-width: 58rem;
	width: 100%;
}
.hide-avatars .author-bio {
	padding-left: 0;
}
.author-bio .author-title-wrapper {
	align-items: center;
	display: flex;
	margin: 0 0 1rem 0;
}
.author-bio .avatar {
	border-radius: 50%;
	margin-right: 1.5rem;
	height: 5rem;
	width: 5rem;
}
.hide-avatars img.avatar {
	display: none;
}
.author-bio p:last-child {
	margin-bottom: 0;
}
.author-bio .author-title {
	margin: 0;
}
.author-bio .author-link {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 1em;
	text-decoration: none;
}
.author-bio .author-link:focus,
.author-bio .author-link:hover {
	text-decoration: underline;
}
/* Single Pagination ------------------------- */
.pagination-single {
	font-size: 1.8rem;
	margin-top: 5rem;
}
.pagination-single-inner {
	display: flex;
	flex-direction: column;
}
.pagination-single hr:first-child {
	margin: 0 0 2.8rem 0;
}
.pagination-single hr:last-child {
	margin: 2.8rem 0 0.8rem 0;
}
.pagination-single a {
	align-items: baseline;
	display: flex;
	font-weight: 600;
	letter-spacing: -0.0275em;
	text-decoration: none;
	flex: 1;
}
.pagination-single a + a {
	margin-top: 1rem;
}
.pagination-single a .arrow {
	margin-right: 1rem;
}
.pagination-single a:focus .title,
.pagination-single a:hover .title {
	text-decoration: underline;
}
/* -------------------------------------------------------------------------- */
/*	10. Blocks
/* -------------------------------------------------------------------------- */
/* Block Colors ------------------------------ */
.has-text-color a {
	color: inherit;
}
/* CUSTOM COLORS */
:root .has-accent-color {
	color: #cd2653;
}
:root .has-accent-background-color {
	background-color: #cd2653;
	color: #fff;
}
:root .has-primary-color {
	color: #000;
}
:root .has-primary-background-color {
	background-color: #000;
	color: #f5efe0;
}
:root .has-secondary-color {
	color: #6d6d6d;
}
:root .has-secondary-background-color {
	background-color: #6d6d6d;
	color: #fff;
}
:root .has-subtle-background-color {
	color: #dcd7ca;
}
:root .has-subtle-background-background-color {
	background-color: #dcd7ca;
	color: #000;
}
:root .has-background-color {
	color: #f5efe0;
}
:root .has-background-background-color {
	background-color: #f5efe0;
	color: #000;
}
/* Block Typography Classes ------------------ */
.has-text-align-left {
	/*rtl:ignore*/
	text-align: left;
}
.has-text-align-center {
	text-align: center;
}
.has-text-align-right {
	text-align: right;
}
.has-drop-cap:not(:focus)::first-letter {
	color: #cd2653;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 5.1em;
	font-weight: 800;
	margin: 0.05em 0.1em 0 0;
}
.has-drop-cap:not(:focus)::first-letter::after {
	content: "";
	display: table;
	clear: both;
}
.has-drop-cap:not(:focus)::after {
	padding: 0;
}
/* Block Font Families ----------------------- */
.has-drop-cap:not(:focus)::first-letter,
.entry-content .wp-block-archives,
.entry-content .wp-block-categories,
.entry-content .wp-block-cover-image,
.entry-content .wp-block-latest-comments,
.entry-content .wp-block-latest-posts,
.entry-content .wp-block-pullquote,
.entry-content .wp-block-quote.is-large,
.entry-content .wp-block-quote.is-style-large {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}
@supports ( font-variation-settings: normal ) {
	.has-drop-cap:not(:focus)::first-letter,
	.entry-content .wp-block-archives,
	.entry-content .wp-block-categories,
	.entry-content .wp-block-latest-posts,
	.entry-content .wp-block-latest-comments,
	.entry-content .wp-block-cover-image p,
	.entry-content .wp-block-pullquote {
		font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}
/* Block Font Sizes -------------------------- */
.entry-content .has-small-font-size {
	font-size: 0.842em;
}
.entry-content .has-normal-font-size,
.entry-content .has-regular-font-size {
	font-size: 1em;
}
.entry-content .has-medium-font-size {
	font-size: 1.1em;
	line-height: 1.45;
}
.entry-content .has-large-font-size {
	font-size: 1.25em;
	line-height: 1.4;
}
.entry-content .has-larger-font-size {
	font-size: 1.5em;
	line-height: 1.3;
}
/* Block: Base Margins ----------------------- */
*[class*="_inner-container"] > *:first-child {
	margin-top: 0;
}
*[class*="_inner-container"] > *:last-child {
	margin-bottom: 0;
}
.wp-block-archives:not(.alignwide):not(.alignfull),
.wp-block-categories:not(.alignwide):not(.alignfull),
.wp-block-code,
.wp-block-columns:not(.alignwide):not(.alignfull),
.wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
.wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
.wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
.wp-block-media-text:not(.alignwide):not(.alignfull),
.wp-block-preformatted,
.wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
.wp-block-quote,
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-verse,
.wp-block-video:not(.alignwide):not(.alignfull) {
	margin-bottom: 3rem;
	margin-top: 3rem;
}
/* Block: Shared Nesting Alignment Resets ---- */
[class*="__inner-container"] .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
[class*="__inner-container"] .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
	margin-left: auto;
	margin-right: auto;
	max-width: 58rem;
}
/* Block: Shared Widget Styles --------------- */
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-latest-comments {
	list-style: none;
	margin-left: 0;
}
.wp-block-archives ul,
.wp-block-categories ul,
.wp-block-latest-posts ul,
.wp-block-latest-comments ul {
	list-style: none;
}
.entry-content .wp-block-archives > li,
.entry-content .wp-block-categories > li,
.entry-content .wp-block-latest-posts > li,
.entry-content .wp-block-latest-comment > li {
	margin-left: 0;
}
.entry-content .wp-block-archives > li:last-child,
.entry-content .wp-block-categories > li:last-child,
.entry-content .wp-block-latest-posts > li:last-child,
.entry-content .wp-block-latest-comment > li:last-child {
	margin-bottom: 0;
}
.entry-content .wp-block-archives *,
.entry-content .wp-block-categories *,
.entry-content .wp-block-latest-posts *,
.entry-content .wp-block-latest-comments * {
	font-family: inherit;
}
.entry-content .wp-block-archives li,
.entry-content .wp-block-categories li,
.entry-content .wp-block-latest-posts li {
	color: #6d6d6d;
}
.wp-block-archives a,
.wp-block-categories a,
.wp-block-latest-posts a,
.wp-block-latest-comments a {
	font-weight: 700;
	text-decoration: none;
}
.wp-block-archives a:hover,
.wp-block-categories a:hover,
.wp-block-latest-posts a:hover,
.wp-block-latest-comments a:hover,
.wp-block-archives a:focus,
.wp-block-categories a:focus,
.wp-block-latest-posts a:focus,
.wp-block-latest-comments a:focus {
	text-decoration: underline;
}
.wp-block-latest-posts a,
.wp-block-latest-comments__comment-meta {
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.25;
}
.wp-block-latest-comments__comment-date,
.wp-block-latest-posts__post-date {
	color: #6d6d6d;
	font-size: 0.7em;
	font-weight: 600;
	letter-spacing: normal;
	margin-top: 0.15em;
}
/* Block: Shared Media Styles ---------------- */
.wp-block-embed figcaption,
.wp-block-image figcaption {
	color: #6d6d6d;
	font-size: 1.4rem;
	margin-bottom: 0;
	margin-top: 1.5rem;
}
/* Block: Audio ------------------------------ */
.wp-block-audio audio {
	width: 100%;
}
/* Block: Button ----------------------------- */
.wp-block-button {
	margin: 3rem 0;
}
.wp-block-button.is-style-outline {
	color: #cd2653;
}
.is-style-outline .wp-block-button__link:not(.has-text-color) {
	color: inherit;
}
.is-style-outline .wp-block-button__link {
	padding: calc(1.1em - 0.2rem) calc(1.44em - 0.2rem);
}
/* Block: Columns ---------------------------- */
.wp-block-columns.alignfull,
.alignfull:not(.has-background) .wp-block-columns {
	padding-left: 2rem;
	padding-right: 2rem;
}
.wp-block-column {
	margin-bottom: 3.2rem;
}
.wp-block-column > *:first-child {
	margin-top: 0;
}
.wp-block-column > *:last-child {
	margin-bottom: 0;
}
/* Block: Cover ------------------------------ */
.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
	width: calc(100% - 4rem);
	padding: 2rem 0;
}
.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text,
.wp-block-cover-image h2,
.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover h2 {
	max-width: 100%;
	padding: 0;
}
.wp-block-cover-image h2,
.wp-block-cover h2 {
	font-size: 3.2rem;
}
/* Block: Embed ------------------------------ */
/* Block: File ------------------------------- */
.wp-block-file {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.wp-block-file a:not(.wp-block-file__button) {
	font-weight: 700;
	text-decoration: none;
}
.wp-block-file a:not(.wp-block-file__button):not(:last-child) {
	margin-right: 1rem;
}
.wp-block-file a:not(.wp-block-file__button):focus,
.wp-block-file a:not(.wp-block-file__button):hover {
	text-decoration: underline;
}
.wp-block-file .wp-block-file__button {
	font-size: 1.5rem;
	padding: 1em 1.25em;
}
.wp-block-file a.wp-block-file__button:visited {
	opacity: 1;
}
.wp-block-file a.wp-block-file__button:active,
.wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:hover {
	opacity: 1;
	text-decoration: underline;
}
/* Block: Gallery ---------------------------- */
.wp-block-gallery ul {
	list-style: none;
	margin: 0 0 -1.6rem 0;
}
figure.wp-block-gallery.alignnone,
figure.wp-block-gallery.aligncenter {
	margin-bottom: 3rem;
	margin-top: 3rem;
}
figure.wp-block-gallery.alignleft {
	margin: 0.3rem 2rem 2rem 0;
}
figure.wp-block-gallery.alignright {
	margin: 0.3rem 0 2rem 2rem;
}
figure.wp-block-gallery.alignwide {
	margin-bottom: 4rem;
	margin-top: 4rem;
}
figure.wp-block-gallery.alignfull {
	margin-bottom: 5rem;
	margin-top: 5rem;
}
/* Block: Group ------------------------------ */
.wp-block-group.has-background {
	padding: 2rem;
	margin-bottom: 0;
	margin-top: 0;
}
.wp-block-group__inner-container {
	margin: 0 auto;
}
.wp-block-group__inner-container,
.entry-content .wp-block-group p {
	max-width: 100%;
}
.alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
	padding-left: 2rem;
	padding-right: 2rem;
}
/* Block: Image ------------------------------ */
/* Block: Media And Text --------------------- */
.wp-block-media-text .wp-block-media-text__content {
	padding: 3rem 2rem;
}
.wp-block-media-text .wp-block-media-text__content p {
	max-width: none;
}
.wp-block-media-text__content > *:first-child {
	margin-top: 0;
}
.wp-block-media-text__content > *:last-child {
	margin-bottom: 0;
}
/* Block: Pullquote -------------------------- */
/* STYLE: DEFAULT */
.wp-block-pullquote {
	padding: 0;
	position: relative;
}
.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
	max-width: calc(100% - 4rem);
}
.wp-block-pullquote::before {
	background: #fff;
	border-radius: 50%;
	color: #cd2653;
	content: "â€";
	display: block;
	font-size: 6.2rem;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 auto 1.5rem auto;
	text-align: center;
	height: 4.4rem;
	width: 4.4rem;
}
.reduced-spacing .wp-block-pullquote::before {
	border: 0.1rem solid currentColor;
	font-size: 5.9rem;
}
.wp-block-pullquote blockquote {
	border: none;
	margin: 0;
	padding: 0;
}
.wp-block-pullquote blockquote p {
	font-family: inherit;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.178571429;
	letter-spacing: -0.041785714em;
	max-width: 100%;
}
.wp-block-pullquote p:last-of-type {
	margin-bottom: 0;
}
.wp-block-pullquote cite {
	color: #6d6d6d;
	font-size: 1.6rem;
	font-weight: 500;
	margin-top: 1.2rem;
}
.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p {
	font-size: 2.8rem;
}
.wp-block-pullquote.alignleft {
	text-align: left;
}
.wp-block-pullquote.alignright {
	text-align: right;
}
.wp-block-pullquote.alignleft::before {
	margin-left: 0;
}
.wp-block-pullquote.alignright::before {
	margin-right: 0;
}
/* STYLE: SOLID BACKGROUND COLOR */
.wp-block-pullquote.is-style-solid-color {
	padding: 3rem 2rem;
}
.wp-block-pullquote.is-style-solid-color::before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}
.wp-block-pullquote.is-style-solid-color.alignleft::before,
.wp-block-pullquote.is-style-solid-color.alignright::before {
	transform: translateY(-50%);
}
.wp-block-pullquote.is-style-solid-color.alignleft::before {
	left: 2rem;
}
.wp-block-pullquote.is-style-solid-color.alignright::before {
	left: auto;
	right: 2rem;
}
.wp-block-pullquote.is-style-solid-color blockquote {
	max-width: 100%;
	text-align: inherit;
}
.wp-block-pullquote.is-style-solid-color cite {
	color: inherit;
}
/* Block: Separator  ------------------------- */
hr.wp-block-separator {
	margin: 3rem 0;
}
/* STYLE: WIDE */
.wp-block-separator.is-style-wide {
	max-width: calc(100vw - 4rem);
	position: relative;
	width: 100%;
}
/* STYLE: DOTS */
.wp-block-separator.is-style-dots::before {
	background: none;
	color: inherit;
	font-size: 3.2rem;
	font-weight: 700;
	height: auto;
	letter-spacing: 1em;
	padding-left: 1em;
	position: static;
	transform: none;
	width: auto;
}
.wp-block-separator.is-style-dots::after {
	content: none;
}
/* Block: Search ----------------------------- */
.wp-block-search .wp-block-search__input {
	width: auto;
}
/* Block: Table ------------------------------ */
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background: #dcd7ca;
}
figure.wp-block-table.is-style-stripes {
	border-bottom: none;
}
.wp-block-table.is-style-stripes table {
	border-collapse: inherit;
}
/* Block: Quote ------------------------------ */
.wp-block-quote p,
.wp-block-quote cite {
	text-align: inherit;
}
.wp-block-quote[style="text-align:center"] {
	border-width: 0;
	padding: 0;
}
.wp-block-quote[style="text-align:right"] {
	/*rtl:begin:ignore*/
	border-width: 0 0.2rem 0 0;
	padding: 0 2rem 0 0;
	/*rtl:end:ignore*/
}
/* STYLE: LARGE */
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
	border: none;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
}
.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
	font-family: inherit;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.285;
}
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
	font-size: 1.6rem;
	text-align: inherit;
}
/* Block: Widget Latest Comments ------------- */
.entry-content .wp-block-latest-comments li {
	margin: 2rem 0;
}
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
	margin-left: 5.5rem;
}
.entry-content .wp-block-latest-comments a {
	text-decoration: none;
}
.entry-content .wp-block-latest-comments a:hover,
.entry-content .wp-block-latest-comments a:focus {
	text-decoration: underline;
}
.wp-block-latest-comments__comment {
	font-size: inherit;
}
.wp-block-latest-comments__comment-date {
	margin-top: 0.4em;
}
.wp-block-latest-comments__comment-excerpt p {
	font-size: 0.7em;
	margin: 0.9rem 0 2rem 0;
}
/* Block: Widget Latest Posts ---------------- */
.wp-block-latest-posts.is-grid li {
	border-top: 0.2rem solid #dcd7ca;
	margin-top: 2rem;
	padding-top: 1rem;
}
.wp-block-latest-posts.has-dates {
	list-style: none;
}
.wp-block-latest-posts.has-dates:not(.is-grid) li {
	margin-top: 1.5rem;
}
.wp-block-latest-posts.has-dates:not(.is-grid) li:first-child {
	margin-top: 0;
}
/* -------------------------------------------------------------------------- */
/*	11. Entry Content
/* -------------------------------------------------------------------------- */
.entry-content {
	line-height: 1.5;
}
.entry-content > * {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.25em;
}
.entry-content > *:first-child {
	margin-top: 0;
}
.entry-content > *:last-child {
	margin-bottom: 0;
}
.read-more-button-wrap {
	margin-top: 1em;
	text-align: center;
}
.entry-content a:hover{
	text-decoration: none;
	outline: none;
}
.entry-content p,
.entry-content li {
	line-height: 1.4;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin: 3.5rem auto 2rem;
}
.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
	margin-bottom: 1rem;
}
.entry-content hr {
	margin: 4rem auto;
}
/* Font Families ----------------------------- */
.entry-content p,
.entry-content ol,
.entry-content ul,
.entry-content dl,
.entry-content dt {
	font-family: "BrandonText Regular" NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
	letter-spacing: normal;
}
.entry-content cite,
.entry-content figcaption,
.entry-content .wp-caption-text {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}
@supports ( font-variation-settings: normal ) {
	.entry-content cite,
	.entry-content figcaption,
	.entry-content .wp-caption-text {
		font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}
/* Alignment Classes ------------------------- */
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	/*max-width: 58rem;*/
	max-width: 72rem;
	width: calc(100% - 4rem);
}
[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 58rem;
	width: 100%;
}
.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
	margin-top: 4rem;
	margin-right: auto;
	margin-bottom: 4rem;
	margin-left: auto;
}
[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
	margin-left: auto;
	margin-right: auto;
}
/* Full */
.alignfull {
	margin-top: 5rem;
	margin-right: auto;
	margin-bottom: 5rem;
	margin-left: auto;
	max-width: 100vw;
	position: relative;
	width: 100%;
}
[class*="__inner-container"] > .alignfull {
	max-width: 100%;
}
/* Wide */
.alignwide {
	max-width: 120rem;
	position: relative;
	width: calc(100% - 4rem);
}
[class*="__inner-container"] > .alignwide {
	width: 100%;
}
/* Center */
.aligncenter,
.aligncenter img {
	margin-left: auto;
	margin-right: auto;
}
/* Left and right */
.alignleft,
.alignright {
	max-width: 50%;
}
.alignleft {
	/*rtl:ignore*/
	float: left;
	margin: 0.3rem 2rem 2rem 2rem;
}
.alignright {
	/*rtl:ignore*/
	float: right;
	margin: 0.3rem 2rem 2rem 2rem;
}
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
	/*rtl:ignore*/
	margin-left: 2rem;
}
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
	/*rtl:ignore*/
	margin-right: 2rem;
}
/* Entry Media ------------------------------- */
.alignfull > figcaption,
.alignfull > .wp-caption-text {
	margin-left: auto;
	margin-right: auto;
	max-width: 58rem;
	width: calc(100% - 4rem);
}
/* -------------------------------------------------------------------------- */
/*	12. Comments
/* -------------------------------------------------------------------------- */
/* Comment Headers ----------------------------- */
.comments-wrapper {
	margin-top: 5rem;
}
.comment-reply-title {
	margin: 0 0 4rem 0;
	text-align: center;
}
/* Comment Item ----------------------------- */
/* COMMENT HEADER */
.comments .comment,
.comments .pingback,
.comments .trackback,
.comments .review {
	padding-top: 3.5rem;
}
div.comment:first-of-type {
	margin-top: 3.5rem;
	padding-top: 0;
}
.comments .comments-header + div {
	margin-top: 0;
	padding-top: 0;
}
.comment-body {
	position: relative;
}
.comment .comment {
	padding-left: 5%;
}
.comment-meta {
	line-height: 1.1;
	margin-bottom: 1.5rem;
	min-height: 5rem;
	padding-left: 5rem;
	position: relative;
}
.hide-avatars .comment-meta {
	min-height: 0;
	padding-left: 0;
}
.comment-meta a {
	color: inherit;
}
.comment-author {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -0.027777778em;
}
.comment-author a {
	text-decoration: underline;
}
.comment-author a:hover,
.comment-author a:focus {
	text-decoration: none;
}
.comment-meta .avatar {
	height: 4rem;
	position: absolute;
	left: 0;
	top: 0;
	width: 4rem;
}
.comment-author .url {
	text-decoration: underline;
}
.comment-metadata {
	color: #6d6d6d;
	font-size: 1.4rem;
	font-weight: 500;
	margin-top: 0.6rem;
}
.comment-metadata a {
	text-decoration: none;
}
.comment-metadata a:focus,
.comment-metadata a:hover {
	text-decoration: underline;
}
/* COMMENT CONTENT */
.comment-content.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	width: 100%;
}
.comment-content.entry-content .alignleft {
	/*rtl:ignore*/
	margin-left: 0;
}
.comment-content.entry-content .alignright {
	/*rtl:ignore*/
	margin-right: 0;
}
/* COMMENT FOOTER */
.comment-footer-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.2rem;
	font-weight: 600;
	justify-content: flex-start;
	letter-spacing: 0.030833333em;
	line-height: 1;
	margin: 1.5rem 0 -1rem -1.5rem;
	text-transform: uppercase;
}
.comment-footer-meta > * {
	margin: 0 0 1rem 1.5rem;
}
.comment-reply-link {
	background-color: #cd2653;
	color: #fff;
	display: block;
	padding: 0.7rem;
}
.bypostauthor .comment-footer-meta .by-post-author {
	display: block;
}
.comment-footer-meta a {
	text-decoration: none;
}
.comment-footer-meta a:focus,
.comment-footer-meta a:hover {
	text-decoration: underline;
}
/* Pingbacks & Trackbacks ------------------------- */
.pingback .comment-meta,
.trackback .comment-meta {
	padding-left: 0;
}
/* Comments Pagination ---------------------------- */
.comments-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 6rem;
	text-align: center;
}
.comments-pagination.only-next {
	justify-content: flex-end;
}
.comments-pagination .page-numbers {
	display: none;
	text-decoration: none;
}
.comments-pagination .page-numbers:focus,
.comments-pagination .page-numbers:hover {
	text-decoration: underline;
}
.comments-pagination .prev,
.comments-pagination .next {
	display: block;
}
.comments-pagination .prev {
	left: 0;
}
.comments-pagination .next {
	right: 0;
	text-align: right;
}
/* Comment Respond ---------------------------- */
.comment-respond::after {
	clear: both;
	content: "";
	display: block;
}
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
	color: #6d6d6d;
	font-size: 1.6rem;
	line-height: 1.4;
	margin: -3rem 0 4rem 0;
	text-align: center;
}
.comment-respond .comment-notes a,
.comment-respond .logged-in-as a {
	color: inherit;
	text-decoration: none;
}
.comment-respond .comment-notes a:focus,
.comment-respond .comment-notes a:hover,
.comment-respond .logged-in-as a:focus,
.comment-respond .logged-in-as a:hover {
	text-decoration: underline;
}
.comment-respond p {
	line-height: 1.1;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
}
.comment-respond p:not(.comment-notes) {
	max-width: 58rem;
}
.comment-form-cookies-consent {
	align-items: baseline;
	display: flex;
}
.comment-respond > p:last-of-type {
	margin-bottom: 0;
	display: none;
}
.comment-respond label {
	display: block;
}
.comment-respond input[type="checkbox"] + label {
	font-size: 1.5rem;
	line-height: 1.25;
}
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea {
	margin-bottom: 0;
}
.comment-respond textarea {
	height: 15rem;
}
.comment-respond #submit {
	display: block;
}
.comment-respond .comments-closed {
	text-align: center;
}
/* Reply Respond ---------------------------- */
.comments .comment-respond {
	padding: 3rem 0 0;
}
.comments .comment-respond .comment-reply-title,
.comments .comment-respond .comment-notes,
.comments .comment-respond .logged-in-as {
	text-align: left;
}
.comment-reply-title small {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -0.0277em;
	margin: 0.5rem 0 0 0;
	white-space: nowrap;
}
.comment-reply-title small a {
	text-decoration: none;
}
.comment-reply-title small a:focus,
.comment-reply-title small a:hover {
	text-decoration: underline;
}
/* -------------------------------------------------------------------------- */
/*	13. Site Pagination
/* -------------------------------------------------------------------------- */
.pagination .nav-links {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.8rem;
	font-weight: 600;
	margin: -1.5rem 0 0 -2.5rem;
	width: calc(100% + 2.5rem);
}
.pagination-separator {
	margin: 5rem 0;
}
.nav-links > * {
	margin: 1.5rem 0 0 2.5rem;
}
.nav-links .placeholder {
	display: none;
	visibility: hidden;
}
.pagination a {
	text-decoration: none;
}
.pagination a:focus,
.pagination a:hover {
	text-decoration: underline;
}
.pagination .dots {
	transform: translateY(-0.3em);
	color: #6d6d6d;
}
.nav-short {
	display: none;
}
/* -------------------------------------------------------------------------- */
/*	14. Error 404
/* -------------------------------------------------------------------------- */
.error404 #site-content {
	padding-top: 4rem;
}
.error404-content {
	text-align: center;
}
.error404 #site-content .search-form {
	justify-content: center;
	margin-top: 3rem;
}
/* -------------------------------------------------------------------------- */
/*	15.	Widgets
/* -------------------------------------------------------------------------- */
/* Widget Base ------------------------------- */
.widget {
	margin-top: 3rem;
}
.widget:first-child {
	margin-top: 0;
}
.widget-content > div > *:first-child {
	margin-top: 0;
}
.widget-content > div > *:last-child {
	margin-bottom: 0;
}
.widget .widget-title {
	margin: 0 0 2rem;
}
.widget li {
	margin: 2rem 0 0 0;
}
.widget li:first-child,
.widget li > ul,
.widget li > ol {
	margin-top: 0;
}
.widget table,
.widget table * {
	border-color: #dedfdf;
}
.widget table caption {
	background-color: #dedfdf;
}
.widget .post-date,
.widget .rss-date {
	color: #6d6d6d;
	display: block;
	font-size: 0.85em;
	font-weight: 500;
	margin-top: 0.2rem;
}
.widget select {
	max-width: 100%;
}
/* Font Families ----------------------------- */
.widget_text p,
.widget_text ol,
.widget_text ul,
.widget_text dl,
.widget_text dt,
.widget-content .rssSummary {
	/*font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;*/
	/*font-family: "BrandonText Regular", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;*/
	letter-spacing: normal;
	font-size: 15px;
}
.widget-content cite,
.widget-content figcaption,
.widget-content .wp-caption-text {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}
@supports ( font-variation-settings: normal ) {
	.widget-content cite,
	.widget-content figcaption,
	.widget-content .wp-caption-text {
		font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}
/* Base List Widget -------------------------- */
.widget_archive ul,
.widget_categories ul,
.widget_pages ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget_rss ul {
	list-style: none;
	margin: 0;
}
.widget_archive li,
.widget_categories li,
.widget_pages li,
.widget_meta li,
.widget_nav_menu li {
	color: #6d6d6d;
	margin: 0.3rem 0;
}
.widget_archive li li,
.widget_categories li li,
.widget_pages li li,
.widget_meta li li,
.widget_nav_menu li li {
	margin-left: 2rem;
}
.widget_archive a,
.widget_categories a,
.widget_pages a,
.widget_meta a,
.widget_nav_menu a {
	font-weight: 700;
	text-decoration: none;
}
.widget_archive a:focus,
.widget_archive a:hover,
.widget_categories a:focus,
.widget_categories a:hover,
.widget_pages a:focus,
.widget_pages a:hover,
.widget_meta a:focus,
.widget_meta a:hover,
.widget_nav_menu a:focus,
.widget_nav_menu a:hover {
	text-decoration: underline;
}
/* Widget: Calendar -------------------------- */
.calendar_wrap {
	font-size: 2.4rem;
}
.calendar_wrap th,
.calendar_wrap td {
	font-size: 1em;
	font-weight: 500;
	line-height: 1;
	padding: 2.5% 2.5% 1.75% 2.5%;
	text-align: center;
}
.calendar_wrap tfoot td {
	border-bottom: none;
}
.calendar_wrap tfoot a {
	text-decoration: none;
}
.calendar_wrap tfoot #prev {
	text-align: left;
}
.calendar_wrap tfoot #next {
	text-align: right;
}
/* Widget: Image ----------------------------- */
/* Widget: Gallery --------------------------- */
.widget_media_gallery .gallery {
	margin: 0 -0.4em -0.8em -0.4em;
	width: calc(100% + 0.8em);
}
.widget_media_gallery .gallery-item {
	margin: 0 0 0.8em 0;
	padding: 0 0.4em;
}
/* Widget: Nav Menu -------------------------- */
.widget_nav_menu .widget-content > div > ul {
	margin-left: 0;
	padding: 2em 0;
}
/* Widget: Recent Comments ------------------- */
.widget_recent_comments li {
	font-weight: 700;
}
.widget_recent_comments a {
	text-decoration: none;
}
.widget_recent_comments a:focus,
.widget_recent_comments a:hover {
	text-decoration: underline;
}
/* Widget: Recent Entries -------------------- */
.widget_recent_entries a {
	font-weight: 700;
	text-decoration: none;
}
.widget_recent_entries a:focus,
.widget_recent_entries a:hover {
	text-decoration: underline;
}
/* Widget: RSS ------------------------------- */
.widget_rss .widget-title a.rsswidget:first-of-type {
	display: none;
}
.widget_rss .rsswidget {
	font-weight: 700;
}
.widget_rss a {
	text-decoration: none;
}
.widget_rss a:focus,
.widget_rss a:hover {
	text-decoration: underline;
}
.widget_rss .rssSummary {
	margin-top: 0.5rem;
}
.widget_rss cite::before {
	content: "â€” ";
}
/* Widget: Search ---------------------------- */
.widget_search .search-field {
	border-color: #dedfdf;
}
/* Widget: Tag Cloud ------------------------- */
.widget_tag_cloud a {
	font-weight: 700;
	margin-right: 0.5rem;
	text-decoration: none;
	white-space: nowrap;
}
.widget_tag_cloud a:focus,
.widget_tag_cloud a:hover {
	text-decoration: underline;
}
/* Widget: Text ------------------------------ */
/* -------------------------------------------------------------------------- */
/*	16. Site Footer
/* -------------------------------------------------------------------------- */
.footer-nav-widgets-wrapper,
#site-footer {
	background-color: #fff;
	border-color: #dedfdf;
	border-style: solid;
	border-width: 0;
}
.footer-top-visible .footer-nav-widgets-wrapper,
.footer-top-hidden #site-footer {
	margin-top: 5rem;
}
.reduced-spacing.footer-top-visible .footer-nav-widgets-wrapper,
.reduced-spacing.footer-top-hidden #site-footer {
	border-top-width: 0.1rem;
}
.footer-top,
.footer-widgets-outer-wrapper,
#site-footer {
	padding: 3rem 0;
}
/* Footer Top -------------------------------- */
.footer-top {
	display: flex;
	border-bottom: 0.1rem solid #dedfdf;
	justify-content: space-between;
}
/* FOOTER MENU */
.footer-menu {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -0.0277em;
}
.footer-menu li {
	line-height: 1.25;
	margin: 0.25em 0 0 0;
}
.footer-menu a {
	text-decoration: none;
}
.footer-menu a:hover,
.footer-menu a:focus {
	text-decoration: underline;
}
/* FOOTER SOCIAL */
.footer-social-wrapper {
	margin: 0;
	width: 100%;
}
.has-footer-menu .footer-social-wrapper {
	flex-shrink: 0;
	margin-left: 1rem;
	width: 50%;
}
ul.footer-social {
	margin: -0.5rem 0 0 -0.5rem;
}
.has-footer-menu .footer-social {
	justify-content: flex-end;
}
ul.footer-social li {
	margin: 0.5rem 0 0 0.5rem;
}
.footer-social a {
	background-color: #cd2653;
	height: 3.6rem;
	width: 3.6rem;
}
.footer-social a::before {
	font-size: 1.6rem;
}
/* Footer Widgets ---------------------------- */
.footer-widgets-outer-wrapper {
	border-bottom: 0.1rem solid #dedfdf;
}
.footer-widgets + .footer-widgets {
	margin-top: 3rem;
}
/* Footer Bottom ----------------------------- */
#site-footer {
	font-size: 1.6rem;
	display: none;
}
#site-footer .section-inner {
	align-items: baseline;
	display: flex;
	justify-content: space-between;
}
#site-footer a {
	text-decoration: none;
}
#site-footer a:focus,
#site-footer a:hover {
	text-decoration: underline;
}
.footer-copyright a,
.powered-by-wordpress a {
	color: inherit;
}
.powered-by-wordpress,
.to-the-top {
	color: #6d6d6d;
}
a.to-the-top > * {
	pointer-events: none;
}
.footer-copyright {
	font-weight: 600;
	margin: 0;
}
.powered-by-wordpress {
	display: none;
	margin: 0 0 0 2.4rem;
}
.to-the-top-long {
	display: none;
}
/* -------------------------------------------------------------------------- */
/*	17. Media Queries
/* -------------------------------------------------------------------------- */
@media ( max-width: 479px ) {
	/* Blocks -------------------------------- */
	.wp-block-pullquote.alignleft,
	.wp-block-pullquote.alignright {
		float: none;
	}
	/* Entry Content ------------------------- */
	/* LISTS */
	ul,
	ol {
		margin: 0 0 3rem 2rem;
	}
	li {
		margin: 0.5rem 0 0 1rem;
	}
}
@media ( min-width: 480px ) {
	/* Blocks -------------------------------- */
	/* BLOCK: BASE ALIGNMENT WIDTH */
	.wp-block-pullquote.alignleft,
	.wp-block-pullquote.alignright,
	.wp-block-cover-image.alignleft,
	.wp-block-cover-image.alignright,
	.wp-block-cover.alignleft,
	.wp-block-cover.alignright,
	.wp-block-embed.alignleft,
	.wp-block-embed.alignright,
	.wp-block-gallery.alignleft,
	.wp-block-gallery.alignright {
		max-width: 26rem;
	}
	/* BLOCK: TABLE WIDTH */
	.wp-block-table.alignleft,
	.wp-block-table.alignright {
		max-width: 100%;
	}
	/* Entry Content ------------------------- */
	/* ALIGNMENT CLASSES */
	.alignleft,
	.alignright {
		max-width: 26rem;
	}
}
@media ( max-width: 599px ) {
	/* Blocks -------------------------------- */
	/* BLOCK: COLUMNS */
	/* While columns are stacked */
	.wp-block-column:last-child {
		margin-bottom: 0;
	}
	.wp-block-columns + .wp-block-columns {
		margin-top: 0.2rem;
	}
	.wp-block-columns.alignwide + .wp-block-columns.alignwide {
		margin-top: -0.8rem;
	}
	.wp-block-columns.alignfull + .wp-block-columns.alignfull {
		margin-top: -1.8rem;
	}
}
@media ( min-width: 600px ) {
	/* Blocks -------------------------------- */
	/* BLOCK: COLUMNS */
	.wp-block-columns.alignwide + .wp-block-columns.alignwide,
	.wp-block-columns.alignfull + .wp-block-columns.alignfull {
		margin-top: -4rem;
	}
}
@media ( min-width: 660px ) {
	/* Blocks -------------------------------- */
	/* BLOCK: GALLERY */
	figure.wp-block-gallery.alignleft {
		/*rtl:ignore*/
		margin-left: calc(( 100vw - 58rem - 8rem ) / -2);
	}
	figure.wp-block-gallery.alignright {
		/*rtl:ignore*/
		margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
	}
	/* Entry Content ------------------------- */
	/* ALIGNMENT CLASSES */
	.entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: 4rem;
	}
	.entry-content > p .alignleft,
	.entry-content > .wp-block-image .alignleft {
		/*rtl:ignore*/
		margin-left: calc(( 100vw - 58rem - 8rem ) / -2);
	}
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignleft,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignleft {
		/*rtl:ignore*/
		margin-left: 0;
	}
	.entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: 4rem;
	}
	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright {
		/*rtl:ignore*/
		margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
	}
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignright,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignright,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignright {
		/*rtl:ignore*/
		margin-right: 0;
	}
}
@media ( min-width: 700px ) {
	/* Element Base ------------------------- */
	ul,
	ol {
		margin-bottom: 4rem;
	}
	pre {
		padding: 3rem;
	}
	hr {
		margin: 8rem auto;
	}
	/* VANILLA GALLERIES */
	.gallery-columns-2 .gallery-item {
		max-width: 50%;
	}
	.gallery-columns-3 .gallery-item {
		max-width: 33.33%;
	}
	.gallery-columns-4 .gallery-item {
		max-width: 25%;
	}
	.gallery-columns-5 .gallery-item {
		max-width: 20%;
	}
	.gallery-columns-6 .gallery-item {
		max-width: 16.66%;
	}
	.gallery-columns-7 .gallery-item {
		max-width: 14.28%;
	}
	.gallery-columns-8 .gallery-item {
		max-width: 12.5%;
	}
	.gallery-columns-9 .gallery-item {
		max-width: 11.11%;
	}
	/* TITLES */
	h1,
	.heading-size-1,
	h2,
	.heading-size-2,
	h3,
	.heading-size-3 {
		margin: 6rem auto 3rem;
	}
	h4,
	.heading-size-4,
	h5,
	.heading-size-5,
	h6,
	.heading-size-6 {
		margin: 4.5rem auto 2.5rem;
	}
	h1,
	.heading-size-1 {
		font-size: 6.4rem;
	}
	h2,
	.heading-size-2 {
		font-size: 4.5rem;
	}
	h3,
	.heading-size-3 {
		font-size: 4rem;
		font-family: "Gotham Bold";
		color: #112952;
	}
	h4,
	.heading-size-4 {
		font-size: 3.2rem;
	}
	h5,
	.heading-size-5 {
		font-size: 2.1rem;
		color: #112952;
		font-family: "Gotham Bold";
		margin-bottom: 0.5em !important;
	}
	h6,
	.heading-size-6 {
		font-size: 1.8rem;
	}
	/* INPUTS */
	fieldset {
		padding: 3rem;
	}
	legend {
		padding: 0 1.5rem;
	}
	button,
	.button,
	.faux-button,
	.wp-block-button__link,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		font-size: 1.7rem;
	}
	/* MEDIA */
	figcaption,
	.wp-caption-text {
		margin-top: 1.8rem;
	}
	/* Helper Classes ------------------------- */
	/* SECTIONS */
	section {
		padding: 8rem 0;
	}
	.section-inner {
		width: calc(100% - 8rem);
		/*width: 100%;*/
	}
	/* Site Header --------------------------- */
	.header-inner {
		padding: 3.8rem 0;
	}
	.site-title {
		font-size: 2.4rem;
		font-weight: 700;
	}
	.site-description {
		display: block;
	}
	.site-logo img {
		max-height: 9rem;
		transition: height 0.15s linear, width 0.15s linear, max-height 0.15s linear;
	}
	/* HEADER TOGGLES */
	.toggle-inner .toggle-text {
		font-size: 1.2rem;
	}
	.nav-toggle {
		right: 2rem;
	}
	/* Menu Modal ---------------------------- */
	button.close-nav-toggle {
		font-size: 1.8rem;
		padding: 4rem 0;
	}
	button.close-nav-toggle svg {
		height: 2rem;
		width: 2rem;
	}
	button.close-nav-toggle .toggle-text {
		margin-right: 2.1rem;
	}
	.modal-menu {
		left: auto;
		width: 100%;
	}
	.modal-menu > li > a,
	.modal-menu > li > .ancestor-wrapper > a {
		font-size: 2.4rem;
		padding: 2.5rem 0;
	}
	.modal-menu ul li {
		border-left-color: transparent;
	}
	.modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle {
		padding: 0 3rem;
	}
	.modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle svg {
		height: 1.1rem;
		width: 1.8rem;
	}
	.menu-bottom {
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding: 4.4rem 0;
	}
	.menu-copyright {
		display: block;
		flex-shrink: 0;
		margin-right: 4rem;
	}
	/* Modal Search Form ------------------------- */
	.search-modal form {
		position: relative;
		width: 100%;
	}
	.search-untoggle svg {
		height: 2.5rem;
		width: 2.5rem;
	}
	.search-modal .search-field {
		border: none;
		font-size: 3.2rem;
		height: 14rem;
	}
	.search-modal .search-field::-moz-placeholder {
		line-height: 4.375;
	}
	/* Sub Page ------------------------------ */
	/* FEATURED MEDIA */
	.featured-media figcaption {
		margin: 2rem auto 0 auto;
		width: calc(100% - 8rem);
	}
	/* Template: Cover Template -------------- */
	.cover-header-inner {
		padding: 18rem 0 8rem 0;
	}
	.to-the-content-wrapper {
		top: calc(100% + 1.8rem);
	}
	.to-the-content {
		height: 6rem;
	}
	.to-the-content svg {
		height: 2.4rem;
		width: 2.12rem;
	}
	/* Template: Full Width ------------------ */
	body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
		width: calc(100% - 8rem);
	}
	body.template-full-width .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
		padding-left: 4rem;
		padding-right: 4rem;
	}
	body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
	body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
	body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
		/*rtl:ignore*/
		margin-left: 4rem;
	}
	body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
	body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
	body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
		/*rtl:ignore*/
		margin-right: 4rem;
	}
	/* Post: Archive ------------------------- */
	.archive-header {
		padding: 8rem 0;
	}
	.reduced-spacing .archive-header {
		padding-bottom: 3rem;
	}
	.archive-title {
		font-size: 4.5rem;
	}
	body:not(.singular) main > article:first-of-type {
		padding: 0rem 0 0;
	}
	h2.entry-title {
		font-size: 6.4rem;
	}
	/* SEARCH RESULTS */
	.no-search-results-form {
		padding-top: 8rem;
	}
	/* Post: Single -------------------------- */
	/* POST HEADER */
	.singular .entry-header {
		padding: 4rem 0;
	}
	.entry-categories {
		margin-bottom: 3rem;
	}
	.entry-categories-inner {
		margin: -1rem 0 0 -2rem;
	}
	.entry-categories a {
		font-size: 1.5rem;
		margin: 1rem 0 0 2rem;
	}
	.intro-text {
		font-size: 2rem;
		margin-top: 2.5rem;
		color: #000;
	}
	.singular .intro-text {
		font-size: 2.6rem;
	}
	.post-meta-wrapper {
		margin-top: 3rem;
	}
	.post-meta {
		font-size: 1.6rem;
		margin: -1.4rem 0 0 -3rem;
	}
	.post-meta li {
		margin: 1.4rem 0 0 3rem;
		max-width: calc(100% - 3rem);
	}
	.featured-media {
		margin-top: 6rem;
	}
	.post-inner {
		/*padding-top: 5rem;*/
	}
	/* POST FOOTER */
	.post-meta-wrapper.post-meta-single-bottom {
		margin-top: 4rem;
	}
	/* AUTHOR BIO */
	.author-bio {
		margin-top: 8rem;
		min-height: 8rem;
		padding-left: 10rem;
		position: relative;
	}
	.author-bio .avatar {
		position: absolute;
		left: 0;
		top: 0;
		height: 8rem;
		width: 8rem;
	}
	/* SINGLE PAGINATION */
	.pagination-single {
		font-size: 2.4rem;
		margin-top: 8rem;
	}
	.pagination-single-inner {
		flex-direction: row;
		justify-content: space-between;
	}
	.pagination-single.only-next .pagination-single-inner {
		justify-content: flex-end;
	}
	.pagination-single hr:first-child {
		margin: 0 0 4rem 0;
	}
	.pagination-single hr:last-child {
		margin: 4rem 0 0.8rem 0;
	}
	.pagination-single a + a {
		margin: 0 0 0 4rem;
	}
	.pagination-single a .arrow {
		margin: 0 2rem 0 0;
	}
	.pagination-single .next-post {
		flex-direction: row-reverse;
		text-align: right;
	}
	.pagination-single .next-post .arrow {
		margin: 0 0 0 2rem;
	}
	/* Blocks -------------------------------- */
	/* BLOCK: SHARED MEDIA STYLES */
	.wp-block-embed figcaption,
	.wp-block-image figcaption {
		font-size: 1.6rem;
	}
	/* BLOCK: BASE MARGINS */
	.wp-block-archives:not(.alignwide):not(.alignfull),
	.wp-block-categories:not(.alignwide):not(.alignfull),
	.wp-block-code,
	.wp-block-columns:not(.alignwide):not(.alignfull),
	.wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
	.wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
	.wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
	.wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
	.wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
	.wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
	.wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
	.wp-block-media-text:not(.alignwide):not(.alignfull),
	.wp-block-preformatted,
	.wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
	.wp-block-quote,
	.wp-block-quote.is-large,
	.wp-block-quote.is-style-large,
	.wp-block-verse,
	.wp-block-video:not(.alignwide):not(.alignfull) {
		margin-bottom: 4rem;
		margin-top: 4rem;
	}
	/* BLOCK: COLUMNS */
	.wp-block-columns.alignwide + .wp-block-columns.alignwide,
	.wp-block-columns.alignfull + .wp-block-columns.alignfull {
		margin-top: -6rem;
	}
	.entry-content .wp-block-columns h1,
	.entry-content .wp-block-columns h2,
	.entry-content .wp-block-columns h3,
	.entry-content .wp-block-columns h4,
	.entry-content .wp-block-columns h5,
	.entry-content .wp-block-columns h6 {
		margin: 3.5rem 0 2rem;
	}
	/* BLOCK: COVER */
	.wp-block-cover-image .wp-block-cover__inner-container,
	.wp-block-cover .wp-block-cover__inner-container {
		width: calc(100% - 8rem);
	}
	.wp-block-cover-image h2,
	.wp-block-cover h2 {
		font-size: 4.8rem;
	}
	/* BLOCK: GALLERY */
	figure.wp-block-gallery.alignnone,
	figure.wp-block-gallery.aligncenter {
		margin-bottom: 4rem;
		margin-top: 4rem;
	}
	figure.wp-block-gallery.alignwide,
	figure.wp-block-gallery.alignfull {
		margin-bottom: 6rem;
		margin-top: 6rem;
	}
	/* BLOCK: GROUP */
	.wp-block-group.has-background {
		padding: 4rem;
		margin-top: 0;
		margin-bottom: 0;
	}
	.alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
		padding-left: 0;
		padding-right: 0;
	}
	/* BLOCK: MEDIA AND TEXT */
	.wp-block-media-text .wp-block-media-text__content {
		padding: 4rem;
	}
	/* BLOCK: PULLQUOTE */
	.wp-block-pullquote blockquote p {
		font-size: 3.2rem;
	}
	.wp-block-pullquote cite {
		margin-top: 2rem;
	}
	.wp-block-pullquote.alignfull:not(.is-style-solid-color) {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.wp-block-pullquote.alignwide::before,
	.wp-block-pullquote.alignfull::before {
		font-size: 11.272727272rem;
		height: 8rem;
		margin-bottom: 2rem;
		width: 8rem;
	}
	.wp-block-pullquote.alignwide blockquote p,
	.wp-block-pullquote.alignfull blockquote p {
		font-size: 4.8rem;
		line-height: 1.203125;
	}
	.wp-block-pullquote.alignleft p,
	.wp-block-pullquote.alignright p,
	.wp-block-pullquote.alignleft.is-style-solid-color blockquote p,
	.wp-block-pullquote.alignright.is-style-solid-color blockquote p {
		font-size: 3.2rem;
		line-height: 1.1875;
	}
	.wp-block-pullquote.is-style-solid-color.alignwide,
	.wp-block-pullquote.is-style-solid-color.alignfull {
		padding: 6rem 4rem 4rem;
	}
	.wp-block-pullquote.alignleft.is-style-solid-color blockquote p,
	.wp-block-pullquote.alignright.is-style-solid-color blockquote p {
		font-size: 2.6rem;
	}
	/* BLOCK: QUOTE */
	.wp-block-quote.is-large p,
	.wp-block-quote.is-style-large p {
		font-size: 2.8rem;
	}
	/* BLOCK: SEPARATOR */
	hr.wp-block-separator {
		margin: 6rem auto;
	}
	.wp-block-separator.is-style-wide {
		max-width: calc(100vw - 8rem);
	}
	/* Entry Content ------------------------- */
	.entry-content {
		font-size: 2.1rem;
	}
	.entry-content p,
	.entry-content li {
		line-height: 1.476;
	}
	.entry-content h1,
	.entry-content h2,
	.entry-content h3 {
		margin: 6rem auto 3rem;
	}
	.entry-content h4,
	.entry-content h5,
	.entry-content h6 {
		margin: 4.5rem auto 2.5rem;
	}
	.alignnone,
	.aligncenter {
		margin-bottom: 0rem;
		margin-top: 0rem;
	}
	.alignleft {
		/*rtl:ignore*/
		margin: 0.3rem 2rem 2rem 0;
	}
	.alignright {
		/*rtl:ignore*/
		margin: 0.3rem 0 2rem 2rem;
	}
	.entry-content > .alignwide:not(.wp-block-group.has-background),
	.entry-content > .alignfull:not(.wp-block-group.has-background) {
		margin-bottom: 6rem;
		margin-top: 6rem;
	}
	.entry-content > .alignwide {
		max-width: calc(100vw - 8rem);
		width: calc(100vw - 8rem);
	}
	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
		/*rtl:ignore*/
		margin-left: 4rem;
	}
	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
		/*rtl:ignore*/
		margin-right: 4rem;
	}
	/* ENTRY MEDIA */
	.alignfull > figcaption,
	.alignfull > .wp-caption-text {
		width: calc(100% - 8rem);
	}
	/* Comments ------------------------------ */
	.comments-wrapper {
		margin-top: 8rem;
	}
	.comment-reply-title {
		margin-bottom: 4.6rem;
	}
	.comment-respond p.comment-notes,
	.comment-respond p.logged-in-as {
		font-size: 1.8rem;
		letter-spacing: -0.025em;
		margin: -2.5rem 0 4.4rem 0;
	}
	.comments .comment,
	.comments .pingback,
	.comments .trackback,
	.comments .review {
		padding-top: 5rem;
	}
	div.comment:first-of-type {
		margin-top: 5rem;
	}
	.comment-meta {
		margin-bottom: 2rem;
		min-height: 6rem;
		padding: 0.3rem 0 0 7.5rem;
	}
	.comment-meta .avatar {
		display: block;
		height: 6rem;
		position: absolute;
		left: 0;
		top: 0;
		width: 6rem;
	}
	.comment-author {
		font-size: 2.4rem;
	}
	.comment-metadata {
		font-size: 1.6rem;
		margin-top: 0.8rem;
	}
	.comment-footer-meta {
		margin-top: 2.5rem;
	}
	.comments-pagination {
		margin-top: 8rem;
	}
	/* PINGBACKS & TRACKBACKS */
	.pingback .comment-body {
		padding: 0;
	}
	/* COMMENT RESPOND */
	.comment-respond p {
		margin-bottom: 2.5rem;
	}
	.comment-form p.logged-in-as {
		margin: -2.5rem 0 4.4rem 0;
	}
	.comment-respond .comment-form-author,
	.comment-respond .comment-form-email {
		float: left;
		width: calc(50% - 1rem);
	}
	.comment-respond .comment-form-email {
		margin-left: 2rem;
	}
	.comments .comment-respond {
		padding: 5rem 0 0;
	}
	.comment-reply-title small {
		display: inline;
		margin: 0 0 0 0.5rem;
	}
	/* Site Pagination ----------------------- */
	.pagination-separator {
		margin: 8rem 0;
	}
	/* Display the full text for Newer and Older Posts. */
	.nav-short {
		display: inline;
	}
	.pagination .nav-links {
		font-size: 2.4rem;
		font-weight: 700;
		margin: -2.5rem 0 0 -4rem;
	}
	.nav-links > * {
		margin: 2.5rem 0 0 4rem;
	}
	/* Error 404 ----------------------------- */
	.error404 #site-content {
		padding-top: 8rem;
	}
	/* Widgets ------------------------------- */
	.widget .widget-title {
		margin-bottom: 3rem;
	}
	/* Site Footer --------------------------- */
	.footer-top-visible .footer-nav-widgets-wrapper,
	.footer-top-hidden #site-footer {
		margin-top: 8rem;
	}
	/* FOOTER TOP */
	.footer-top {
		padding: 3.7rem 0;
	}
	.footer-menu {
		font-size: 2.4rem;
		margin: -0.8rem 0 0 -1.6rem;
	}
	.footer-menu li {
		margin: 0.8rem 0 0 1.6rem;
	}
	.has-footer-menu .footer-social-wrapper {
		flex: 1;
		margin-left: 4rem;
		width: auto;
	}
	/* FOOTER WIDGETS */
	.footer-widgets-outer-wrapper {
		/*padding: 8rem 0;*/
		padding: 14rem 0 4rem 0;
		text-align: center;
	}
	
	.footer-widgets-wrapper {
		display: flex;
		justify-content: space-between;
		margin-left: -4rem;
		width: calc(100% + 4rem);
	}
	.footer-widgets {
		margin-left: 4rem;
		width: 50%;
	}
	.footer-widgets + .footer-widgets {
		margin-top: 0;
	}
	.footer-widgets .widget {
		border-top: none;
		margin-top: 5rem;
		padding-top: 0;
	}
	.footer-widgets .widget:first-child {
		margin-top: 0;
	}
	/* FOOTER BOTTOM */
	#site-footer {
		font-size: 1.8rem;
		padding: 4.3rem 0;
	}
	.footer-credits {
		display: flex;
	}
	.footer-copyright {
		font-weight: 700;
	}
	.powered-by-wordpress {
		display: block;
	}
	.to-the-top-long {
		display: inline;
	}
	.to-the-top-short {
		display: none;
	}
}

@media (min-width: 700px) and (max-width: 830px){
	.footer-widgets-wrapper {
    	text-align: center;
		display: block;
		width: 100%;
		margin-left: 0;
	}
	.footer-widgets{
		margin-left: 0;
		width: 100%;
	}
    .footer-widgets-outer-wrapper {
        padding-top: 2rem;
    }
}
@media (min-width: 782px) {
	/* Blocks -------------------------------- */
	/* BLOCK: COLUMNS */
	.wp-block-column {
		margin-bottom: 0;
	}
	.wp-block-columns.alignwide + .wp-block-columns.alignwide,
	.wp-block-columns.alignfull + .wp-block-columns.alignfull {
		margin-top: -2.8rem;
	}
}
@media ( min-width: 1000px ) {
	/* Document Setup ------------------------ */
	/* Helper Classes ------------------------ */
	/* Site Header --------------------------- */
	#site-header {
		z-index: 1;
	}
	.header-inner {
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding: 2.8rem 0;
	}
	.header-titles-wrapper {
		margin-right: 3rem;
		max-width: 50%;
		padding: 0;
		text-align: left;
	}
	.header-titles {
		align-items: baseline;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.header-titles .site-title,
	.header-titles .site-logo,
	.header-titles .site-description {
		margin: 1rem 0 0 2.4rem;
	}
	.wp-custom-logo .header-titles {
		align-items: center;
	}
	/* HEADER NAVIGATION */
	#site-header {
		z-index: 999;
		position: relative;
	}
	.header-navigation-wrapper {
		align-items: center;
		display: flex;
	}
	.primary-menu-wrapper {
		display: block;
		width: 100%;
		position: relative;
		/*left: 3em;*/
	}
	/* HEADER TOGGLES */
	.mobile-search-toggle,
	.mobile-nav-toggle {
		display: none !important;
	}
	.primary-menu-wrapper + .header-toggles {
		margin-left: 3rem;
	}
	.header-toggles {
		display: flex;
		flex-shrink: 0;
		margin-right: -3rem;
	}
	.header-inner .toggle {
		height: 4.4rem;
		padding: 0 3rem;
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
	}
	.header-inner .toggle-wrapper {
		/*position: relative;*/
	}
	.header-inner .toggle-wrapper::before {
		background: #dedfdf;
		content: "";
		display: block;
		height: 2.7rem;
		position: absolute;
		left: 0;
		top: calc(50% - 1.35rem);
		width: 0.1rem;
	}
	.header-inner .toggle-wrapper:first-child::before {
		content: none;
	}
	.header-inner .primary-menu-wrapper + .header-toggles .toggle-wrapper:first-child::before {
		content: "";
	}
	.nav-toggle-wrapper:not(.has-expanded-menu) {
		display: none;
	}
	.toggle-inner {
		position: static;
	}
	.toggle-inner .toggle-text {
		left: 0;
		right: 0;
		text-align: center;
		top: calc(100% - 0.3rem);
		width: auto;
	}
	.header-toggles:only-child .nav-toggle .toggle-inner {
		padding-top: 0;
	}
	.header-toggles:only-child .toggle-inner {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
	}
	.header-toggles:only-child .toggle-inner .svg-icon {
		order: 1;
	}
	.header-toggles:only-child .toggle-inner .toggle-text {
		position: static;
		padding-right: 20px;
		font-size: 15px;
		color: inherit;
	}
	/* Menu Modal ---------------------------- */
	.menu-modal {
		opacity: 1;
		justify-content: flex-end;
		padding: 0;
		transition: background-color 0.3s ease-in, left 0s 0.3s, right 0s 0.3s;
	}
	.menu-modal.cover-modal {
		background: rgba(0, 0, 0, 0);
	}
	.menu-modal.active {
		background: rgba(0, 0, 0, 0.2);
		transition: background-color 0.3s ease-out;
	}
	.menu-wrapper.section-inner {
		width: calc(100% - 8rem);
	}
	.menu-modal-inner {
		box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
		opacity: 0;
		padding: 0;
		transform: translateX(20rem);
		transition: transform 0.2s ease-in, opacity 0.2s ease-in;
		width: 50rem;
	}
	.menu-modal.active .menu-modal-inner {
		opacity: 1;
		transform: translateX(0);
		transition-timing-function: ease-out;
	}
	.mobile-menu {
		display: none;
	}
	.expanded-menu {
		display: block;
	}
	.menu-bottom {
		padding: 6rem 0;
	}
	.menu-bottom .social-menu {
		justify-content: flex-start;
	}
	/* Sub Page ------------------------------ */
	/* FEATURED MEDIA */
	.featured-media figcaption {
		width: 100%;
	}
	/* Template: Full Width ------------------ */
	.template-full-width .wp-block-image .alignleft {
		/*rtl:ignore*/
		margin-right: 2rem;
	}
	.template-full-width .wp-block-image .alignright {
		/*rtl:ignore*/
		margin-left: 2rem;
	}
	/* Post: Archive ------------------------- */
	/* Post: Single -------------------------- */
	.singular .intro-text {
		font-size: 2.8rem;
	}
	/* Blocks -------------------------------- */
	/* BLOCK: COLUMNS */
	.wp-block-columns.alignwide + .wp-block-columns.alignwide,
	.wp-block-columns.alignfull + .wp-block-columns.alignfull {
		margin-top: -4.8rem;
	}
	/* BLOCK: GALLERY */
	figure.wp-block-gallery.alignwide,
	figure.wp-block-gallery.alignfull {
		margin-bottom: 8rem;
		margin-top: 8rem;
	}
	/* BLOCK: GROUP */
	.entry-content > .wp-block-group.alignwide.has-background,
	.entry-content > .wp-block-group.alignfull.has-background {
		padding: 8rem 4rem;
		margin-bottom: 0;
		margin-top: 0;
	}
	/* BLOCK: IMAGE */
	.wp-block-image .alignleft {
		/*rtl:ignore*/
		margin-right: 0;
	}
	.wp-block-image .alignright {
		/*rtl:ignore*/
		margin-left: 0;
	}
	/* BLOCK: SEPARATOR */
	hr.wp-block-separator {
		margin: 8rem auto;
	}
	/* Entry Content ------------------------- */
	/* ALIGNMENT CLASSES */
	.entry-content > .alignleft,
	.entry-content > p .alignleft,
	.entry-content > .wp-block-image .alignleft {
		position: absolute;
		/*rtl:ignore*/
		right: calc((100vw - 58rem) / 2 + 58rem + 2rem);
		max-width: calc((100% - 58rem) / 2 - 6rem);
	}
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignleft,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignleft {
		position: relative;
		/*rtl:ignore*/
		right: inherit;
		max-width: inherit;
	}
	[class*="wp-block"].alignwide [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignwide [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
		position: absolute;
		/*rtl:ignore*/
		right: calc((100% - 58rem) / 2 + 58rem + 4rem);
		max-width: calc((100% - 58rem) / 2 - 4rem);
	}
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignleft {
		/*rtl:ignore*/
		right: calc((100% - 58rem) / 2 + 58rem);
	}
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
		/*rtl:ignore*/
		margin-left: 4rem;
	}
	.entry-content > .alignright,
	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright,
	[class*="__inner-container"] > .alignright {
		position: absolute;
		/*rtl:ignore*/
		left: calc((100vw - 58rem) / 2 + 58rem + 2rem);
		max-width: calc((100% - 58rem) / 2 - 6rem);
	}
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignright,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignright,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignright {
		position: relative;
		/*rtl:ignore*/
		left: inherit;
		max-width: inherit;
	}
	[class*="wp-block"].alignwide [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignwide [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
		position: absolute;
		/*rtl:ignore*/
		left: calc((100% - 58rem) / 2 + 58rem + 4rem);
		max-width: calc((100% - 58rem) / 2 - 4rem);
	}
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignright {
		/*rtl:ignore*/
		left: calc((100% - 58rem) / 2 + 58rem + 4rem);
	}
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
		/*rtl:ignore*/
		margin-right: 4rem;
	}
	.entry-content > .alignwide:not(.wp-block-group.has-background),
	.entry-content > .alignfull:not(.wp-block-group.has-background) {
		margin-bottom: 8rem;
		margin-top: 8rem;
	}
	/* ENTRY MEDIA */
	.alignfull > figcaption,
	.alignfull > .wp-caption-text {
		width: calc(100% - 10rem);
	}
	/* Comments ------------------------------ */
	.comment-meta {
		padding-left: 0;
	}
	.comment-meta .avatar {
		left: -8rem;
	}
	/* Site Pagination ----------------------- */
	.pagination .nav-links {
		justify-content: space-between;
		margin: 0;
		width: 100%;
	}
	.nav-links > * {
		margin: 0 2rem;
	}
	.pagination .next,
	.pagination .prev {
		display: block;
	}
	.pagination .prev {
		margin: 0 auto 0 0;
	}
	.pagination .next {
		text-align: right;
		margin: 0 0 0 auto;
	}
	/* Site Footer --------------------------- */
	/* FOOTER TOP */
	.footer-top {
		align-items: center;
	}
	.footer-menu {
		align-items: baseline;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		font-size: 2.1rem;
		margin: -1.2rem 0 0 -2.4rem;
	}
	.footer-menu li {
		margin: 1.2rem 0 0 2.4rem;
	}
}
@media ( min-width: 1220px ) {
	/* Element Base -------------------------- */
	/* TITLES */
	h1,
	.heading-size-1 {
		font-size: 8.4rem;
	}
	/* Helper Classes ------------------------ */
	/* Site Header --------------------------- */
	/* PRIMARY MENU */
	ul.primary-menu {
		margin: -0.8rem 0 0 -2.5rem;
	}
	.primary-menu > li {
		margin: 0.8rem 0 0 2.5rem;
	}
	/* HEADER TOGGLES */
	.primary-menu-wrapper + .header-toggles {
		margin-left: 4rem;
	}
	.header-toggles {
		margin-right: -4rem;
	}
	.header-toggles .toggle {
		padding: 0 4rem;
	}
	/* Menu Modal ---------------------------- */
	/* Search Modal -------------------------- */
	/* Sub Page ------------------------------ */
	/* Template: Cover Template -------------- */
	.cover-header + .post-inner {
		padding-top: 10rem;
	}
	/* Post: Archive ------------------------- */
	/* Post: Single -------------------------- */
	.singular .intro-text {
		font-size: 3.2rem;
		letter-spacing: -0.03125em;
		line-height: 1.375;
	}
	/* Blocks -------------------------------- */
	/* BLOCK: COLUMNS */
	.wp-block-columns.alignfull + .wp-block-columns.alignfull {
		margin-top: -6rem;
	}
	/* BLOCK: GALLERY */
	figure.wp-block-gallery.alignfull {
		margin-bottom: 10rem;
		margin-top: 10rem;
	}
	/* BLOCK: GROUP */
	.entry-content > .wp-block-group.alignwide.has-background,
	.entry-content > .wp-block-group.alignfull.has-background {
		padding: 8rem 6rem;
		margin-bottom: 0;
		margin-top: 0;
	}
	/* BLOCK: PULLQUOTE */
	.wp-block-pullquote.alignwide blockquote p,
	.wp-block-pullquote.alignfull blockquote p {
		font-size: 6.4rem;
	}
	.wp-block-pullquote.is-style-solid-color.alignwide,
	.wp-block-pullquote.is-style-solid-color.alignfull {
		padding: 9rem 4rem 8rem;
	}
	/* Entry Content ------------------------- */
	/* ALIGNMENT CLASSES */
	.entry-content > .alignfull {
		margin-bottom: 10rem;
		margin-top: 10rem;
	}
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignleft {
		/*rtl:ignore*/
		right: calc((100% - 58rem) / 2 + 58rem - 2rem);
	}
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignright {
		/*rtl:ignore*/
		left: calc((100% - 58rem) / 2 + 58rem + 6rem);
	}
	/* Comments ------------------------------ */
	.comment-reply-title {
		font-size: 5.6rem;
		line-height: 1.2;
		margin-bottom: 6rem;
	}
	.comment-respond p.comment-notes,
	.comment-respond p.logged-in-as {
		margin: -4rem 0 6rem 0;
	}
	.comments .comment-respond .comment-reply-title {
		font-size: 4.8rem;
	}
	.comments .comment-respond p.comment-notes,
	.comments .comment-respond p.logged-in-as {
		margin: -4.5rem 0 4rem 0;
	}
	/* Site Pagination ----------------------- */
	/* Widgets ------------------------------- */
	.widget-content {
		font-size: 2.1rem;
	}
	/* Site Footer --------------------------- */
	.footer-menu {
		font-size: 2.4rem;
		margin: -1.5rem 0 0 -3rem;
	}
	.footer-menu li {
		margin: 1.5rem 0 0 3rem;
	}
	ul.footer-social {
		margin: -1rem 0 0 -1rem;
	}
	ul.footer-social li {
		margin: 1rem 0 0 1rem;
	}
	.footer-social a {
		height: 4.4rem;
		width: 4.4rem;
	}
	.footer-social a::before {
		font-size: 2rem;
	}
	/* FOOTER WIDGETS */
	.footer-widgets-wrapper {
		margin-left: 0rem;
		width: calc(100% + 0rem);
	}
	.footer-widgets {
		margin-left: 0rem;
		margin-right: 15px;
	}
}
@media ( min-width: 1240px ) {
	/* Blocks -------------------------------- */
	body.template-full-width .entry-content > .alignleft {
		/*rtl:ignore*/
		margin-left: calc(( 100vw - 120rem ) / 2);
	}
	body.template-full-width .entry-content > .alignright {
		/*rtl:ignore*/
		margin-right: calc(( 100vw - 120rem ) / 2);
	}
}
@media ( min-width: 1280px ) {
	/* Blocks -------------------------------- */
	/* BLOCK: GALLERY */
	figure.wp-block-gallery.alignleft {
		/*rtl:ignore*/
		margin-left: -31rem;
	}
	figure.wp-block-gallery.alignright {
		/*rtl:ignore*/
		margin-right: -31rem;
	}
	/* BLOCK: SEPARATOR */
	.wp-block-separator.is-style-wide {
		max-width: 120rem;
		width: 120rem;
	}
	/* Entry Content ------------------------- */
	/* ALIGNMENT CLASSES */
	.entry-content > .alignleft,
	.entry-content > p .alignleft,
	.entry-content > .wp-block-image .alignleft {
		/*rtl:ignore*/
		right: calc((100vw - 58rem) / 2 + 58rem + 4rem);
		/*rtl:ignore*/
		margin-left: -31rem;
	}
	.entry-content > .alignright,
	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright {
		/*rtl:ignore*/
		left: calc((100vw - 58rem) / 2 + 58rem + 4rem);
		/*rtl:ignore*/
		margin-right: -31rem;
	}
	.entry-content > .alignwide {
		max-width: 120rem;
		width: 120rem;
	}
	[class*="__inner-container"] > .alignwide {
		max-width: 120rem;
		width: 100%;
	}
	.alignleft,
	.alignright,
	.entry-content > .alignleft,
	.entry-content > p .alignleft,
	.entry-content > .wp-block-image .alignleft,
	.entry-content > .alignright,
	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
		max-width: 25rem;
	}
	/* Template: Full Width ------------------ */
	body.template-full-width .alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
		padding-left: 0;
		padding-right: 0;
	}
	body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
		/*rtl:ignore*/
		margin-left: 0;
	}
	body.template-full-width [class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
		/*rtl:ignore*/
		margin-right: 0;
	}
}
@media ( min-width: 1330px ) {
	/* Entry Content ------------------------- */
	/* ALIGNMENT CLASSES */
	.alignleft,
	.alignright,
	.entry-content > .alignleft,
	.entry-content > p .alignleft,
	.entry-content > .wp-block-image .alignleft,
	.entry-content > .alignright,
	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
		max-width: 29rem;
	}
	/* Blocks -------------------------------- */
	/* BLOCK: PULLQUOTE */
	.wp-block-pullquote.is-style-solid-color.alignleft::before,
	.wp-block-pullquote.is-style-solid-color.alignright::before {
		top: 0;
	}
}
/* Tejas */
.footer-nav-widgets-wrapper.header-footer-group {
    border-top-left-radius: 270px;
    background-image: url("assets/images/footer-bg.png");
	background-repeat: no-repeat;
	background-position: bottom center;
}
.footer-nav-widgets-wrapper.header-footer-group.home {
	margin-top: 0px !important;
}
.footer-logo.aligncenter {
    margin-bottom: 0;
    margin-top: 0;
    width: auto;
}
#menu-footer-new li {
    display: initial;
	padding-right: 8px;
	margin-bottom: 0;
	line-height: 2.5;
	margin-top: 0;
	padding-bottom: 15px;
	padding-left: 8px;
	margin-left: -2px;
}
#menu-footer-new li a {
    color: #fff !important;
    font: 14px/20px "BrandonText Bold";
}
#menu-footer-new li a:hover{
	text-decoration: none;
}
#menu-footer-new li:last-child {
    padding-right: 1px;
}
#menu-footer-new li:nth-child(n+5) {
    border-bottom: none;
    padding-bottom: 0;
}
#menu-footer-new li:nth-child(-n+3) {
    border-bottom: 1px dashed #fff;
}
.footer-widgets.column-three.grid-item:last-child{
	text-align: right;
	font: 14px/20px "BrandonText Bold";
}
.footer-widgets.column-three.grid-item.lastchilditem p{
	padding: 3em 0;
}
.footer-widgets-outer-wrapper a{
	color: #fff !important;
}
.footer-widgets-outer-wrapper:last-child .textwidget{
	margin: 0.5em auto;
}
.cloudhp table {
	table-layout: fixed;
}
.site-hosting-spy .shs-text {
    padding-bottom: 5rem;
    padding-left: 14px;
    padding-right: 50px;
}
.site-hosting-spy .shs-text::before {
    background-color: #25C2F0;
    opacity: 0.1;
    left: -65px;
    position: absolute;
    content: "";
    top: 0;
    width: 110%;
    height: 100%;
    z-index: -9;
    border-bottom-right-radius: 200px;
}
.site-hosting-spy .shs-image img{
    float: right;
}
.site-hosting-spy .shs-text .title, .sm-details h2, .comparisons .details h2, .reviews .title {
    text-transform: uppercase;
    color: #112952;
    letter-spacing: 0.9px;
    opacity: 1;
    font: 45px/50px Gotham Bold;
}
.site-hosting-spy .shs-text .description {
    margin: 10px 0 20px 0;
	display: block;
	max-width: 90%;
	color: #2B2E34;
	font: 18px/30px BrandonText Regular;
	letter-spacing: 0.21px;
}
.site-hosting-spy input[type="text"], .site-migration.device input[type="text"], .site-migration.mobile input[type="text"] {
    background: transparent;
    border: none;
    border-bottom: 2px solid #75ca6d;
    padding-left: 0;
    margin-bottom: 20px;
    background-image: url(assets/images/graphic_arrow_right_green.svg);
	background-position: 100% 15px;
	background-repeat: no-repeat;
	max-width: 85%;
}
.site-migration.device input[type="text"], .site-migration.mobile input[type="text"]{
	float: right;
	max-width: 80%;
}
.site-hosting-spy .large_button, .site-migration .large_button, .comparisons .details .large_button, .web-hosting-companies .large_button,
.reviews .large_button{
	background-color: transparent !important;
	color: #000;
	border-left: 2px solid #75ca6d;
    padding-top: 5px;
    padding-bottom: 5px;
    letter-spacing: 1px;
    font-size: 14px;
    border-bottom: 2px solid transparent;
}
.site-hosting-spy.mobile .shs-image img{
	float: none;
}
.site-hosting-spy.mobile .shs-text::before{
	left: -20px;
	top: -80px;
	height: 120%;
}
.site-hosting-spy.mobile .shs-text{
	padding-top: 0;
}
.site-migration.mobile .sm-details .img::before{
	width: 120%;
	height: 130%;
	left: -30px;
	border-top-left-radius: 100px;
}
.site-migration.mobile .sm-details .desc{
	padding-top: 2em;
}
.site-migration.mobile .sm-details .inner-desc{
	font: 15px/25px BrandonText Regular;
}
.site-migration.mobile .sm-details #sm-submit{
	margin-top: 2em;
}
.sm-details .img {
    padding-bottom: 2.9rem;
	padding-right: 0px;
	position: relative;
	bottom: 28px;
}
.sm-details .img::before {
    position: absolute;
    content: "";
    top: 0;
    width: 115%;
    height: 100%;
    z-index: -9;
    background-color: #59BE49;
    border-top-left-radius: 200px;
    opacity: 0.1;
}
.sm-details .desc{
	text-align: right;
	display: inline-block;
	width: 100%;
}
.sm-details .associates{
	display: inline-flex;
	margin: 20px 0px;
}
.sm-details .inner-desc {
    font: 18px/30px BrandonText Regular;
	letter-spacing: 0.21px;
	color: #2B2E34;
	opacity: 1;
	margin: 15px 0;
}
.site-hosting-spy.device, .site-migration.device, .popular-comparisons, .web-hosting-companies.device, .reviews, .hp-quiz,
.site-hosting-spy.mobile, .site-migration.mobile, .web-hosting-companies.mobile, .reviews.mobile {
    display: inline-block;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.sm-details h2, .comparisons .details h3, .reviews .title{
	margin-top: 3rem;
}
.comparisons .details {
    text-align: right;
    padding: 3rem 0px 8rem 40px;
}
.comparisons .details::before {
    position: absolute;
    content: "";
    top: 0;
    width: 109%;
    height: 100%;
    z-index: -9;
    background-color: #59BE49;
    border-top-left-radius: 200px;
    left: 0;
    opacity: 0.1;
}
.comparisons .details .desc{
	font: 18px/30px BrandonText Regular;
	letter-spacing: 0.21px;
	color: #2B2E34;
	opacity: 1;
	margin: 15px 0 30px 0;
}
.comparisons-slider {
    position: relative;
    top: -12em;
    margin-bottom: -12em;
}
.carousel-slider .owl-dots{
	position: absolute;
	right: -8em;
	top: 15em;
}
.carousel-slider .carousel-slider__caption .caption,
.carousel-slider__post-header .carousel-slider__post-title h2{
	position: relative;
	bottom: 50px;
	color: #fff;
	font: 12px/20px 'Gotham Bold' !important;
}
.carousel-slider .carousel-slider__caption, .carousel-slider__post-header{
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.magnific-popup{
	text-decoration: none;
}
.owl-next{
	display: none !important;
}
#id-70.arrows-outside .owl-prev {
    left: -30px !important;
    border-radius: 100%;
    background-color: #fff;
    height: 80px;
    width: 80px;
    top: 8.5em;
}
#id-70 .carousel-slider-nav-icon{
	width: 100px !important;
	fill: #112952 !important;
}
.web-hosting-companies th, .web-hosting-companies td, .web-hosting-companies table {
    border: none;
}
.web-hosting-companies table{
	margin: 0;
}
.web-hosting-companies .nav.nav-tabs {
    border-bottom: none;
    padding-right: 0;
}
.web-hosting-companies .tab-content{
	padding-left: 0;
}
.web-hosting-companies thead th{
	background: #112952 0% 0% no-repeat padding-box;
}
.nav.nav-tabs a {
    color: #fff;
    text-decoration: none;
    font: 19px/14px 'BrandonText Bold';
}
.web-hosting-companies.mobile {
    padding-top: 0;
}
.web-hosting-companies.mobile .nav td.left-desc {
    padding: 2.5em 3em 3.5em 2.5em;
}
.web-hosting-companies.mobile .nav.nav-tabs::before{
	width: 110%;
	top: 0;
	border-radius: 0 0 100px 0;
	left: -50px;
}
.web-hosting-companies.mobile .mobiletabs{
	margin-top: 3rem;
}
.web-hosting-companies.mobile .mobiletabs::before,
.web-hosting-companies.mobile .mobiletabs thead,
.web-hosting-companies.mobile .mobiletabs thead th{
	background: none;
}
.web-hosting-companies.mobile .mobiletabs thead th::before{
	left: -20px;
	width: 110%;
	height: 60px;
}
.web-hosting-companies.mobile .mobiletabs thead th{
	line-height: 35px;
}
.web-hosting-companies.mobile .mobiletabs a{
	font-size: 22px;
}
.web-hosting-companies.mobile .mobiletabs  .tab-content a{
	color: #32343a;
	font:19px/14px 'BrandonText Regular'; 
}
.web-hosting-companies.mobile .mobiletabs .tab-content thead th::before {
    background: none;
}
.web-hosting-companies.mobile .mobiletabs .tab-content thead th{
	color: #000;
}
.nav.nav-tabs::before {
    position: absolute;
    content: "";
    width: 130%;
    height: 100%;
    z-index: -9;
    background-color: #25C2F0;
    opacity: 0.1;
    left: -80px;
    top: 50px;
    border-radius: 0 0 200px 0;
}
.tab-content th:last-child{
	border-radius: 0 50px 50px 0;
}
.tab-content th{
	text-align: left;
	font: 14px/30px 'BrandonText Bold';
	letter-spacing: 0.7px;
	color: #FFFFFF;
	text-transform: uppercase;
	border-bottom: 0 !important;
	padding: 15px 8px !important;
}
.nav.nav-tabs th, .col-sm-1.blank th{
	padding: 15px 8px;
	text-align: center;
	line-height: 1.2;
	height: 50px;
}
.nav.nav-tabs th::before {
	position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 50px;
    background-color: #112952;
    left: -80px;
    z-index: -9;
}
.table-hover > tbody > tr:hover {
	background-color: #e8f9fe;
}
.tab-content td{
	border-top: 0 !important;
	letter-spacing: 0.21px;
	color: #2B2E34;
	font-size: 18px;
	font-family: BrandonText Regular;
}
.nav.nav-tabs th:first-child a {
}
.nav td.left-desc {
    padding: 3.5em 3em 2.5em 0.1em;
}
.nav td.left-desc::before {
    
}
.nav td.left-desc .title {
    text-align: left;
	letter-spacing: 0.21px;
	color: #112952;
	text-transform: uppercase;
	font-family: "Gotham Bold";
	margin-bottom: 15px;
	font-size: 1.7rem;
	margin-top: 0;
	line-height: 1.8;
	font-weight: inherit;
}
.nav td.left-desc .title p {
    font-size: 30px;
    margin-bottom: 1px !important;
    line-height: 30px;
    margin-bottom: 15px;
}
.web-hosting-companies .blank {
    padding: 0;
    width: 8.33%;
}
.reviews #myCarousel .nav a small {display: block;}
.reviews #myCarousel .nav {margin-bottom: 30px; margin-left: 0;}
.reviews .nav-justified > li > a {
	border-radius: 0px;
	color: #2B2E34;
	font: 17px/14px 'BrandonText Bold';
	text-decoration: none;
	text-align: left;
	padding-left: 0;
}
.reviews .nav-pills > li.active > a, .reviews .nav-pills > li.active > a:focus, .reviews .nav-pills > li.active > a:hover{
	background-color: transparent;
	color: #2B2E34;
	/*font: 19px/14px 'BrandonText Bold';
	text-decoration: none;*/	
}
.reviews .nav > li > a:focus, .nav > li > a:hover{
	background-color: transparent;
}
.reviews .menu {
	padding-left: 0;
}
.reviews .all-post {
	padding-right: 0;
	text-align: right;
}
.reviews .all-post .large_button {
	padding-right: 0;
}
.reviews .carousel-inner .col-sm-6 {
    /*padding: 0;*/
}
.reviews .carousel-inner .right div:nth-child(2) {
    padding-bottom: 17px;
}
.reviews .centered {
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	font: 25px/30px Gotham Bold;
	width: 70%;
}
.reviews .carousel-inner .left,
.reviews .carousel-inner .right {
    padding-left: 0;
    padding-right: 0;
}
.reviews .carousel-inner .right .col-sm-6 {
    padding-right: 0;
}
.reviews .right .centered {
    font: 15px/20px Gotham Bold;
}
.reviews .right-arrow {
    position: absolute;
    right: -20px;
    top: 40%;
    z-index: 1;
    background: #fff;
    padding: 20px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    cursor: pointer;
}
.reviews .left-arrow{
	position: absolute;
	top: 40%;
	background-color: #fff;
	padding: 20px 20px 20px 20px;
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
	left: -20px;
}
.reviews .left.carousel-control,
.reviews .right.carousel-control {
    opacity: 1;
    position: initial;
}
.reviews .carousel-control.left,
.reviews .carousel-control.right {
    background: none !important;
}
.reviews .left img,
.reviews .right img {
    -webkit-transition: 1.4s ease;
    transition: 1.4s ease;
}
.reviews .zoom-effect-container:hover .left img,
.reviews .zoom-effect-container:hover .right img {
  	-webkit-transform: scale(1.05);
  	transform: scale(1.05);
}
.reviews.mobile .carousel-inner .right div:nth-child(1) {
    padding-bottom: 17px;
}
.reviews.mobile .carousel-inner .right div {
    padding-left: 0px;
    padding-right: 0;
}
.reviews.mobile select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url('assets/images/graphic_arrow_right_green.png') 95% center no-repeat padding-box;
    border: 2px solid #112952;
    padding: 15px 10px;
    color: #2B2E34;
    font: 19px/25px BrandonText Bold;
}
.banner{
	z-index: 0 !important;
}
.banner .title {
    display: block;
    font: 65px/78px 'BrandonText Light';
    letter-spacing: 0;
    color: #fff;
    margin: 0;
}
.banner .desc{
	font: 24px/24px 'BrandonText Regular';
	letter-spacing: 0.24px;
	color: #FFFFFF;
    padding: 30px 0;
    display: inherit;
}
.home .banner #review-process, .home .banner #browse-reviews{
	background-color: transparent ;
	color: #fff;
	padding-top: 0px;
	padding-bottom: 0px;
	letter-spacing: 1.8px;
	font: 15px/20px 'BrandonText Bold';
	text-transform: uppercase;
}
.home .banner #review-process a, .home .banner #browse-reviews a {
    color: #fff;
    text-decoration: none;
    border: 2px solid #3dc0ee;
    padding: 8px 20px;
}
.home .banner #review-process a:hover{
	background-color: #3dc0ee;
	color: #112952;	
}
.banner #browse-reviews{
	border-left: 2px solid #25c2f0;
}
.banner #review-process{
	padding-left: 0;
	border-left: 0;
}
.banner .header-inner.section-inner {
    padding: 5rem 0;
}
/*  Sub banner area */
.subtle-shadow.readers-details {
    box-shadow: #222 0 4px 6px -6px;
    padding: 20px 0;
    font: 18px/28px BrandonText Regular;
    background-color: rgba(37, 194, 240, 0.1);
}
.subtle-shadow.readers-details .total-readers span{
	font-family: "Gotham Bold";
}
.subtle-shadow.readers-details .middle-text-info{
	font-size: 14px;
}
.subtle-shadow.readers-details .as-seen-on img{
	margin-top: 15px;
}
/* Sub Banner Area */
.web-hosting-companies .left-desc .half_pill {
    position: absolute;
    left: -12em;
    top: 8em;
    z-index: -999;
}
.popular-comparisons .half_pill{
	position: absolute;
	right: -9em;
	transform: rotate(180deg);
	top: 0.7em;
}
.site-hosting-spy .half_pill{
	position: absolute;
	left: -13em;
	top: 4em;
	z-index: -99;
}
.site-migration .half_pill {
    position: absolute;
    top: 0px;
    right: -8em;
    transform: rotate(180deg);
}
/*Quiz section*/
.hp-quiz .progress {
	height: 11px;
	margin-bottom: 20px;
	overflow: hidden;
	background-color: #c1ebf6;
	border-radius: 0px;
}
.hp-quiz .progress-bar {
	background-color: #25c2f0;
}
.quizsec{
	padding-bottom: 4em;
	padding-left: 0;
}
.questat {
	 text-align: right; 
	margin-right: 20px;
	font: 14px/48px 'BrandonText Regular';
}
.hp-quiz p {
	text-align: left;
	font: 24px/34px 'BrandonText Regular';
	color: #2B2E34;
}
.quiz-que {
	text-align: left;
	font: 45px/50px 'Gotham Bold';
	letter-spacing: 0.9px;
	color: #112952;
	text-transform: uppercase;
	opacity: 1;
	margin-top: 0;
}
.quizsec img {
	position: relative;
	left: 8em;
	float: right;
	top: 5em;
	background: white;
	padding: 22px 36px;
	border-radius: 100px;
	color: white;
}
.quiz-ans .answerlist {
	margin: 20px 0px;
	cursor: pointer;
}
.quiz-ans .answer{
	text-align: left;
	font: 21px/30px 'BrandonText Regular';
	letter-spacing: 0.21px;
	color: #2B2E34;
	border-left: 2px solid #707070;
	padding-left: 8px;
	margin-left: 10px;
}
.quiz-ans .col-sm-6 div:first-of-type {
	margin-bottom: 20px;
}
.hp-quiz .quiz-slider::before {
	position: absolute;
	content: "";
	top: 0;
	left: -65px;
	background-color:#f6f8f8;
	z-index: -9;
	height: 100%;
	width: 100%;
}
.quiz-slider {
    padding-left: 0;
    padding-right: 0;
    background-color: #f6f8f8;
}
.hp-quiz .half_pill {
    position: absolute;
    left: -9em;
    transform: rotate(225deg);
    top: 4em;
}
/*Quiz section*/
/* Single page */
.singular h1.entry-title, .archive h1.entry-title, .search h1.entry-title {
    letter-spacing: 1px;
    font: 50px/60px 'BrandonText Light';
    margin-top: 20px;
    color: #112952;
}
.page-author-bio{
	display: flex;
	margin: 0 auto;
	width: 30%;
}
.page-author-bio .author-default-img img{
	width: 70px;
	height: 70px;
}
.author-date-details {
    display: inline-grid;
    /*width: 100%;*/
    text-transform: capitalize;
    margin: 30px auto;
    color: #7f7f7f;
    font-size: 20px;
    line-height: 25px;
    text-align: left;
}
.author-default-img {
	margin: 26px auto 15px auto;
	padding-left: 0;
}
.author-default-img img{
	background-color: #fff;
	padding: 5px;
	border-radius: 100px;
	border: 2px solid #112952;
}
.author-date-details .date{
	opacity: 0.6;
}
table td a{
	color: #32343a;
	text-decoration: none;
}
.themeswordpress h4 {
    margin-top: 0;
}
.single th, .single td {
    line-height: 1.8 !important;
    padding: 10px 15px !important;
}
.single img{
	/*width: 100%;*/
}
.single a, .single h2 a, .single a.specialeffects, .single .serverbar .saledet a, .single .entry-content li a, .single h3 a{
	color: #3dc0ee;
	font-style: normal;
}
.single h2 a, .single h3 a, .single h4 a, .single h5 a, .single h1 a{
	text-decoration: none;
}
.single h2 a:hover, .single h3 a:hover, .single h4 a:hover, .single h5 a:hover, .single h1 a:hover{
	text-decoration: underline;
}
.single .size-button-show-code {
    text-align: center;
}
.single .size-button-show-code .button-show-code-orng, .button-show-code-orng {
	text-decoration: none;
    color: #3dc0ee !important;
    border: 2px solid #3dc0ee;
    padding: 8px 20px;
    line-height: 4em;
    font-family: "BrandonText Bold";
}
.single .size-button-show-code a{
	text-decoration: none;
    color: #3dc0ee !important;
    border: 2px solid #3dc0ee;
    padding: 8px 20px;
    line-height: 4em;
    font-family: "BrandonText Bold";
}
.single .size-button-show-code a:hover{
	background-color: #3dc0ee;
    color: #fff !important;
}	
.single .migration-btn input[type="submit"] {
    color: #3dc0ee;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 10px;
    text-decoration: underline;
    padding-left: 5px;
    background: none;
}
.ggreview .serverfont, .hbhr .serverfont, .bhvsgg .serverfont, .ur-review .serverfont, .serverfont{
	font: 24px/35px Gotham Bold;
	color: #112952;
}
.serverfont .proslist {
	margin: 0px;
}
.serverbar.furtherinfo span, .serverbar.furtherinfo p{
	font-family: BrandonText regular;
}
.serverfont h5 {
	margin: 0 0 20px !important;
}
.single .serverbar {
    background-color: #eef9ec;
    padding: 2em 3em;
    width: 100%;
    margin: 0 auto 2em auto;
    border-top-right-radius: 100px;
    text-align: center;
}
.serverbar.furtherinfo h4 {
	text-align: left;
	margin: 0 0 20px 0;
}
.single .serverbar .salehea {
    text-transform: uppercase;
    font: 45px/60px "Gotham Bold";
    color: #1b2c52;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.single .serverbar .salehea .free{
	color: #fff;
	background-color: #213b51;
	padding: 7px 15px;
	clip-path: polygon(50% 0%, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%, 0 0);
}
.serverbar .saledet .button-show-code-orng {
	border-left: 3px solid #3dc0ee;
	font: 18px/25px BrandonText Bold;
	color: #2B2E34 !important;
    border-right: none;
    border-bottom: none;
    border-top: none;
}
.serverbar .saledet .button-show-code-orng:hover {
	background: transparent;
	border-bottom: 3px solid #3dc0ee;
	border-left-color: transparent;
}
.serverbar .saledet {
	font: 18px/28px BrandonText Regular;
    letter-spacing: 0.18px;
    color: #2B2E34;
}
.serverbar .size-button-show-code {
    line-height: 50px;
    margin-bottom: 3em;
}
.serverbar.furtherinfo li{
	margin-left: -20px;
}
.serverbar.furtherinfo {
	text-align: left;
}
.single .large_button,
.page .large_button {
    color: #000 !important;
    border-left: 3px solid  #3dc0ee;
    letter-spacing: 1px;
    font: 16px/20px "BrandonText Bold";
    padding: 0.5em 1.3em;
    text-transform: uppercase;
    text-decoration: none;
    font-style: normal !important;
    background: none;
    border-bottom: 2px solid transparent;
}
#pc-submit:hover {
	border-bottom: 2px solid #75ca6d;
}
.single .button-show-code-orng:hover {
    background-color: #3dc0ee;
    color: #fff !important;
}
.authorbox button.close {
    background: none;
    color: #112952;
    text-transform: inherit;
    font: 15px/12px "BrandonText Medium";
    opacity: 1;
}
.team-authorbox .modal-body h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 0.2em;
}
.team-authorbox .modal-body p {
    color: #44474c;
    font-size: 18px;
}
.team-authorbox .modal-body .team-avtar{
	width: 25%;
	float: left;
	min-height: 280px;
	padding-top: 1em;
	padding-bottom: 1em;
}
.team-authorbox .modal-body .team-avtar img{
	border-radius: 100px;
	background-color: #F6F8F8;
	position: relative;
	right: 60px;
	padding: 20px;
	width: 65%;
}
.team-authorbox .modal-body {
    padding-bottom: 2em;
    padding-top: 2em;
}
.modal-open .modal {
    background: rgba(7, 16, 32,0.8);
}
.home .large_button:hover {
    text-decoration: none;
    border-left-color: transparent;
    border-bottom: 2px solid #75ca6d;
}
.single .large_button:hover,
.page .large_button:hover{
	border-bottom: 2px solid #3dc0ee;
	text-decoration: none;
    border-left-color: transparent;
}
.home .btnProcessReview .large_button:hover{
	border-bottom: none !important;
}
.single thead a{
	color: #fff;
}
.single .comparisontable thead a{
	color: #3dc0ee;
}
.single .submit-review-form, 
#regform,
.page #submit-review-form {
    background-color: #e9f9fd;
    padding: 1em 1em;
    border-bottom-right-radius: 200px;
}
.hg-alternatives figcaption {
    text-align: center;
}
.single .submit-review-form h3,
#regform h3,
.page #submit-review-form h3{
	font-family: "Gotham Bold";
	color: #1b2c52;
	text-transform: uppercase;
	margin-top: 0.9em;
	font-size: 30px;
	margin-bottom: 0.4em;
	letter-spacing: 1px;
}
.single .submit-review-form section,
#regform section,
.page #submit-review-form section{
	padding: 5rem 0 0;
}
.single .submit-review-form .contact-submit-review span,
#regform span,
.page #submit-review-form span {
    font-family: BrandonText Bold;
    margin-bottom: 10px;
    display: block;
    color: #112952;
}
.single .submit-review-form .contact-submit-review input[type="text"],
.single .submit-review-form .contact-submit-review input[type="email"],
#regform input[type="text"], #regform input[type="email"],
.page #submit-review-form input[type="text"],
.page #submit-review-form input[type="email"],
.page #submit-review-form select {
    border: none;
	padding: 1.5rem 2.5rem;
	height: 3.5em;
	font: 18px/16px "BrandonText Medium";
	letter-spacing: 0.5px;
}
.single .submit-review-form .contact-submit-review textarea,
#regform textarea,
.page #submit-review-form textarea{
	border: none;
	padding: 2.5rem 2.5rem;
	font: 18px/30px "BrandonText Medium";
	letter-spacing: 0.5px;
	box-shadow: none;
}
.single .submit-review-form .contact-submit-review input[type="file"],
.page #submit-review-form input[type="file"]{
	border: none;
	padding: 1.5rem 2.5rem;
	font: 18px/16px "BrandonText Medium";
	letter-spacing: 0.5px;
	background: #fff;
	width: 100%;
}
#hosting_company_result span {
    display: inherit;
}
.star_ratings_table{
	margin: 0rem 0;
	display: block;
	padding: 1em 0;
}
.star_ratings_table td{
    padding-left: 0 !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    line-height: 1 !important;
    padding-right: 0 !important;
}
.star_ratings .rate_title{
	float: left;
	margin: 5px 5px 5px 0;
	color: #000;
	font: 18px/16px 'BrandonText Medium';
	opacity: 0.5;
}
.star_ratings label{
	float: right;
	position: relative;
}
.star_ratings input[type="radio"], .star_ratings input[type="checkbox"],
.star_ratings input[type="radio"], .star_ratings input[type="checkbox"]{
    border: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    opacity: 0;
}
.star_ratings label::before,
.star_ratings label::before{
    margin: 0 5px 0 0;
    content: "\f005";
    font-family: FontAwesome;
    display: inline-block;
    font-size: 1.2em;
    color: #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.star_ratings input:checked ~ label:before,
.star_ratings input:checked ~ label:before {
    color: #25c2f0;
}
.star_ratings label:hover ~ label:before,
.star_ratings label:hover ~ label:before {
    color: #25c2f0;
}
.star_ratings label:hover:before,
.star_ratings label:hover:before {
    color: #25c2f0;
}
.single .submit-review-form .contact-submit-review .diff,
.page #submit-review-form .diff{
	border-left: 2px dotted #7a8ea5;
	min-height: 8.5em;
}
.page #submit-review-form .diff.login{
	min-height: 6.5em;
}
.single .submit-review-form .overall .rate_title,
.page #submit-review-form .overall .rate_title {
	float: none;
	text-align: center;
}
.single .submit-review-form .star_ratings_table.overall,
.page #submit-review-form .star_ratings_table.overall {
    padding: 3em 2em !important;
    height: 9em;
}
.single .submit-review-form .overall .star_ratings .rate_title,
.page #submit-review-form .overall .star_ratings .rate_title {
    margin-bottom: 15px !important;
    font-size: 20px !important;
}
.single .contact-submit-review .row,
.page .contact-submit-review .row{
	margin-bottom: 2em;
}
.single .contact-submit-review .row:last-child
	margin-bottom: 0;
}
.single .submit-review-form .half_pill, .page #submit-review-form .half_pill {
    position: absolute;
    right: 20em;
}
.single .submit-review-form .half_pill, .page #submit-review-form .half_pill {
    position: absolute;
    right: 20em;
    transition: none;
    box-shadow: none;
    transform: none;
}
.bhalt ul, .bh-devide ul, .wixreview ul, .a2review ul, .gd-review ul.uptime,
.bhreview ul.uptime, .sr-review ul.uptime, .ipg-review ul.uptime, .fc-review ul.uptime, .ggreview ul.uptime,
.imhs ul.uptime, .ncreview ul.uptime, .hg-review ul.uptime, .hstreview ul.uptime, .ionos-review ul.uptime, .h24 ul.uptime, ul.uptime, ul.uptimes {
    columns: 2;
    width: 70%;
    list-style: none;
    text-align: center;
	margin: 0 auto;
	margin-bottom: 20px;
}
.bhalt ul li, .gdreview ul li{
	margin-left: 0;
}
.gdreview ul{
	columns: 3;
}
/* Single Page */
/* Pages */
.page a{
	color: #3dc0ee;
}
.home a{
	color: #32343a;
	text-decoration: none;
}
.page .entry-header-inner.section-inner.medium {
    text-align: center;
}
.page .entry-header a{
	color: #25c2f0;
	text-decoration: none;
}
.page .guest-blog-desc h2{
	font-size: 22pt;
	text-transform: uppercase;
	margin: 3rem auto 1rem;
}
.page .guest-blog-desc b{
	font-family: "BrandonText Bold";
	font-weight: normal;
}
.refblock p {
	font-size: 18px;
}
#regform table {
    margin: 1rem 0;
}
#regform table th{
	width: 12%;
}
#regform .half_pill {
    position: absolute;
    right: 18em;
}
.page .privacy-policy h4 {
    margin-bottom: 0.5rem;
}
.fb_iframe_widget_fluid{
	display: inline-block;
}
/* Pages */
/* Speed Test, What is my IP address, site down tool */
.speed-test h4, .my-ip-address h4, .site-down-tool h4, .uptime-calc header h4, .site-hosting-spy-details h4,
.whois-lookup-details h4{
    margin-top: 0;
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 4rem;
}
.speed-test h5, .my-ip-address h5, .site-down-tool h5, .site-hosting-spy-details h5, .whois-lookup-details h5 {
    margin-top: 0;
    font-family: "BrandonText Medium";
    color: #3b4453;
}
.speed-test img{
	border: 1px solid #cdcdcd;
}
.my-ip-address .pb20.pb10{
	width: 25%;
	margin: 0 auto;
}
.my-ip-address .preformatted-inline {
    padding: 10px;
    font-size: 24px;
    color: #112952;
    text-align: center;
}
.my-ip-address #map { 
    height: 700px;
    width: 450px;
}
.my-ip-address .my-ip-desc{
	float: left;
}
.my-ip-address .ip-data-placeholder dt {
	border-bottom: 1px solid rgba(0,0,0,.2);
	font-family: BrandonText Bold;
	color: #112952;
}
.my-ip-address .ip-data-placeholder dd{
	margin-bottom: 15px;
	margin-left: 30px;
	font-size: 20px;
	opacity: 0.8;
}
.my-ip-desc h3, .uptime-calc.desc h3 {
    font-family: "Gotham Bold";
    color: #112952;
    margin-bottom: 0;
}
.my-ip-address .size-button-show-code{
	margin-top: 3em;
	text-align: center;
}
/* Speed Test, What is my IP address */
/* Site down tool, Site Hosting Spy, who is lookup */
.site-down-tool input[type="text"],
.site-hosting-spy-details input[type="text"],
.whois-lookup-details input[type="text"]{
    border: none;
    padding: 1.5rem 2.5rem;
    height: 3.5em;
    font: 18px/16px "BrandonText Medium";
    letter-spacing: 0.5px;
}
.site-down-tool .row.url-btn,
.site-hosting-spy-details .row.shs-url-btn,
.whois-lookup-details .row.who-lookup-url-btn {
    background-color: #e9f9fd;
    padding: 2em 1em;
    border-bottom-right-radius: 50px;
    margin: 2em auto;
}
.site-down-tool .findbtn button,
.site-hosting-spy-details .findbtn button,
.whois-lookup-details .findbtn button {
    font: 18px/25px 'BrandonText Bold';
    letter-spacing: 0.45px;
    color: #707070;
    background: transparent;
    border: 3px solid #707070;
    padding: 15px 30px;
    text-transform: capitalize;
}
.site-down-tool .whois-loader,
.site-hosting-spy-details .whois-loader,
.whois-lookup-details .whois-loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 53px;
    font-size: 20px;
    text-align: center;
    background-image: repeating-linear-gradient(-45deg, rgba(170,170,170,0.24), rgba(170,170,170,0.24) 11px, rgba(238,238,238,0.24) 10px,
    rgba(238,238,238,0.24) 20px);
    background-size: 28px 28px;
    animation: move 1.5s linear infinite;
}
.site-down-tool .findbtn button:hover,
.site-hosting-spy-details .findbtn button:hover,
.whois-lookup-details .findbtn button:hover {
	background-color: #00a8ea;
	border-color: #00a8ea;
	color: #fff;
    text-decoration: none;
}
.site-down-tool .details {
	border-radius: 0px 100px 0px 0px;
    border-color: rgba(37,194,240,0.1);
    padding: 1.5em 2em;
    border-style: solid;
    border-width: 7px;
}
.site-down-tool .global-loader,
.site-hosting-spy-details .global-loader,
.whois-lookup-details .global-loader{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	line-height: 53px;
	font-family: "FranklinGothic";
	text-align: center;
	z-index: 99999;
	background-image: repeating-linear-gradient(-45deg,
	rgba(170,170,170,0.24), rgba(170,170,170,0.24) 11px, rgba(238,238,238,0.24) 10px,
	rgba(238,238,238,0.24) 20px);
	background-size: 28px 28px;
	animation: move 1.5s linear infinite;
	cursor: not-allowed;
}
.site-down-tool #whois-results,
.site-hosting-spy-details #whois-results,
.whois-lookup-details #whois-results {
    border-radius: 0px 100px 0px 0px;
    border-color: 
    rgba(37,194,240,0.1);
    padding: 1.5em 2em;
    border-style: solid;
    border-width: 7px;
    margin-bottom: 2em;
}
.site-down-tool .servicestatus-t, .site-down-tool .ipadr-t, .site-down-tool .respontime-t, .site-down-tool .responcode-t {
    font-size: 2rem;
    display: inline-block;
}
.site-down-tool .servicestatus-info, .site-down-tool .ipadr-info, .site-down-tool .respontime-info, .site-down-tool .responcode-info {
    margin-left: 5px;
    display: inline-block;
    color: #00a8ea;
    font-family: 'BrandonText Bold';
}
.site-down-tool .rower {
    margin-bottom: 15px;
    margin-top: 15px;
}
/* Site down tool */
/* Uptime Calc*/
.uptime-calc .calc {
    text-align: center;
    padding: 3rem;
    background: rgba(89, 190, 73, 0.1);
}
.uptime-calc .calc h5{
	margin-top: 1em;
}
.uptime-calc .calc #sla-input {
    /*border: none;*/
    padding: 1rem 1rem;
    font: 50px/55px "BrandonText Medium";
    letter-spacing: 0.5px;
    width: 160px;
    margin: 0 auto 0.5em auto;
    text-align: center;
    display: initial;
    border-radius: 5px;
    height: 75px;
    min-height: 75px;
}
.uptime-calc .calc span{
	font: 50px/55px "BrandonText Medium";
	margin-left: 2px;
}
.uptime-calc .calc #mainData{
	margin: 0 auto;
	width: 70%;
	text-align: left;
	color: rgb(43, 46, 52);
	font-family: BrandonText Regular;
}
.uptime-calc .calc #mainData table td{
	border-bottom: 1px solid #ccc !important;
}
#example thead{
	background-color: #1b2c52;
	color: #fff;
}
#example td, #example th{
	line-height: 1.8 !important;
}
.webhost .warpper{
	display:flex;
	flex-direction: column;
	align-items: center;
}
.webhost .tab{
	cursor: pointer;
	padding: 10px 20px;
	margin: 0px 0px;
	background: rgba(89, 190, 73, 0.1);
	display: inline-block;
	color: #000;
	border-radius: 3px 3px 0px 0px;
	box-shadow: 0 0.0rem 0.0rem #ccc;
	border: 1px solid #ccc;
    border-bottom: 0;
}
.webhost .panels{
	background: rgba(89, 190, 73, 0.1);
 	box-shadow: 0 1rem 1rem #ccc;
	min-height: 200px;
	width: 100%;
	overflow: hidden;
	padding: 20px;  
}
.webhost .panel{
	display:none;
	animation: fadein .8s;
	background: transparent;
	box-shadow: none;
}
.webhost .warpper .tabs{
	width: 100%;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.webhost .panel-title{
	font-size:1.5em;
	font-weight:bold
}
.webhost .radio{
	display:none;
}
.webhost #one:checked ~ .panels #one-panel,
.webhost #two:checked ~ .panels #two-panel,
.webhost #three:checked ~ .panels #three-panel,
.webhost #four:checked ~ .panels #four-panel,
.webhost #five:checked ~ .panels #five-panel{
	display:block
}
.webhost #one:checked ~ .tabs #one-tab,
.webhost #two:checked ~ .tabs #two-tab,
.webhost #three:checked ~ .tabs #three-tab,
.webhost #four:checked ~ .tabs #four-tab,
.webhost #five:checked ~ .tabs #five-tab{
	background: #00a8ea;
	color: #fff;
	border-top: 3px solid #112952;
}
/* Uptime Calc*/
/* Submit Web Host */
.submit-web-host {
    background-color: #e9f9fd;
    padding: 3em 5em;
    border-bottom-right-radius: 200px;
}
.submit-web-host .steps_title {
    text-align: center;
    margin-bottom: 20px;
}
.submit-web-host .baricon{
    display:inline-block;
    border-radius:5px;
    padding:12px;
    background-color:#112952;
    color:#fff;
    font-size: 15px;
}
.submit-web-host .progress_bar{
   	width: 100px;
	height: 7px;
	border-radius: 0;
	background-color: rgba(200,200,200,0.3);
	display: inline-block;
}
.submit-web-host .checkbox label {
	color: rgba(0,0,0,0.7);
}
.submit-web-host form div p{
    color:#F2F2F2;
    margin:0px;
    margin-top:10px;
    font-weight:bold;
}
.submit-web-host form div .form_head{
    font-size:22px;
    font-weight:bold;
    margin-bottom:30px;
}
.submit-web-host form div input[type="button"],input[type="submit"]{
    padding: 10px 22px;
	background: transparent;
	color: rgb(37, 194, 240);
	cursor: pointer;
	text-transform: capitalize;
	font: 18px/20px BrandonText Bold;
}
.submit-web-host form div input[type="submit"]{
	background: transparent;
	color: rgb(37, 194, 240);
}
.submit-web-host input[type="button"]:hover, .submit-web-host form div input[type="submit"] {
    background-color: rgb(37, 194, 240);
    color:#fff;
    text-decoration: none;
}
.submit-web-host input[type="text"],
.submit-web-host textarea,
.submit-web-host select {
    border: none;
    padding: 1.5rem 2.5rem;
    height: 3.5em;
    font: 18px/16px "BrandonText medium";
    letter-spacing: 0.5px;
}
.submit-web-host input[type="file"]{
	border: none;
	padding: 1.5rem 2.5rem;
	font: 18px/16px "BrandonText Medium";
	letter-spacing: 0.5px;
	background: #fff;
	width: 100%;	
}
.submit-web-host label {
    font-family: BrandonText Bold;
    margin-bottom: 10px;
    color: #112952;
}
.submit-web-host #step2, .submit-web-host #step3, .submit-web-host #step4{
    display:none;
}
.submit-web-host form .previous{
    background-color: #d8d8d8 !important;
    color: #000 !important;
}
.submit-web-host .sf-steps-form {
    display: block;
    position: relative;
}
.submit-web-host .sf-steps-form .sf-content {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
    margin: 0;
    margin-top: 0px;
    list-style-type: none;
    margin-top: 30px;
}
.submit-web-host .sf-steps-form .sf-content > li {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 0px;
    padding: 0px 0;
    margin-left: 0;
}
.submit-web-host .sf-steps-form .column_3 {
    width: 50%;
}
.submit-web-host .sf-steps-form .column_6 {
    width: 100%;
}
.submit-web-host .sf-steps-form .sf_columns {
    min-height: 30px;
    display: inline-block;
    padding: 0 1rem;
    box-sizing: border-box;
    float: left;
}
.submit-web-host .sf_columns.column_3, .submit-web-host .sf_columns.column_6 {
    margin: 0 0 35px 0px !important;
}
.submit-web-host .hosting_plan_name {
    float: left;
    margin-left: 0;
    width: 100%;
}
.submit-web-host .hostingelement {
    width: 40% !important;
    text-align: center;
    background-color: rgba(17, 41, 82, 0.1);
    border: 2px solid rgba(17, 41, 82, 0.5);
    padding: 15px 10px !important; 
    float: none !important;   
}
.submit-web-host .planborer {
    display: inline-block;
    width: 40%;
    text-align: center;
    background-color: rgba(17, 41, 82, 0.1);
    border: 2px solid rgba(17, 41, 82, 0.5);
    padding: 15px 10px !important;
    margin-right: 20px;
    margin-bottom: 30px;
}
.submit-web-host ul {
    margin: 0;
    list-style: none;
}
.submit-web-host .hostingelement li, .submit-web-host .vpselement li {
    padding: 6px;
    margin: 0;
}
.submit-web-host .planname-div {
    color: #112952;
    text-transform: uppercase;
    font-family: BrandonText Bold;
    font-size: 18px;
    line-height: 1;
}
.submit-web-host .permonth {
    color: #5f5f5f;
    font-family: BrandonText Bold;
    font-size: 18px;
    line-height: 1;
    margin: 10px auto;
}
.submit-web-host .hosting-plan-os {
    margin: 10px 0px;
    font-size: 24px;
}
.submit-web-host .listhosting{
	margin: 10px 0;
}
.submit-web-host .listhosting li {
    padding: 6px;
    font-size: 16px;
}
.submit-web-host .halfelement {
    width: 50%;
    text-align: right;
    display: inline-block;
    font-weight: bold;
    color: #5f5f5f;
}
.submit-web-host .halfelement2 {
    width: 48%;
    text-align: left;
    display: inline-block;
    word-wrap: break-word;
    color: #5f5f5f;
    font-size: 1.7rem;
}
.submit-web-host .remove {
    color: #c00;
    font-family: BrandonText Bold;
    font-size: 15px;
}
#all_details .row_details {
    display: inline-flex;
    width: 100%;
    border-bottom: 2px dotted rgba(17, 41, 82, 0.3);
    margin-bottom: 10px;
    padding-bottom: 10px;
}
#all_details .row_details label {
    width: 300px;
    float: left;
}
#all_details .row_details .value{
	width: 500px;
	float: left;
}
.featured-media-inner.section-inner.webhostscreenshot {
    height: 520px;
    overflow: hidden;
}
/* Submit Web Host */
/* Site Migration Services Details Page */
.site-migration-services-details {
    background-color: #e9f9fd;
    padding: 3em 5em;
    border-bottom-right-radius: 200px;
}
.site-migration-services-details .collaboration{
	text-align: center;
	margin-bottom: 20px;
}
.site-migration-services-details .collaboration img{
	display: initial;
}
.site-migration-services-details .service-provider{
	text-align:center;
	font: 18px/16px "BrandonText medium";
}
.site-migration-services-details p.offer{
	text-align: center;
	color: grey;
	margin-bottom: 50px;
	font-size: 17px;
}
.site-migration-services-details .service-provider select {
    border: none;
    padding: 1rem 1rem;
    height: 2.5em;
    letter-spacing: 0.5px;
    background-color: #fff;
}
.site-migration-services-details .tab{
	display: none;
}
.site-migration-services-details .tab input[type="text"],
.site-migration-services-details .tab input[type="email"],
.site-migration-services-details .tab input[type="password"]{
	border: none;
	padding: 1.5rem 2.5rem;
	height: 3.5em;
	font: 18px/16px "BrandonText medium";
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}
.site-migration-services-details .tab label{
	font: 20px/25px BrandonText Bold;
	margin-bottom: 5px;
	display: block;
	color: #112952;
}
.site-migration-services-details button[type="button"], .site-migration-services-details button[type="submit"]{
    padding: 10px 22px;
	background: transparent;
	color: rgb(37, 194, 240);
	border: 3px solid rgb(37, 194, 240);
	cursor: pointer;
	text-transform: capitalize;
	font: 18px/20px BrandonText Bold;
	margin-top: 20px;
}
.site-migration-services-details button[type="button"]:hover {
    background-color: rgb(37, 194, 240);
    color:#fff;
    text-decoration: none;
}
.site-migration-services-details .circle{
	text-align: center;
	margin-top: 40px;
}
.site-migration-services-details .circle .step.active {
    opacity: 1;
}
.site-migration-services-details .circle .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #112952;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}
.site-migration-services-details input.invalid{
	background-color: #ffdddd;
}
/* Site Migration Services Details Page */
.prostitle, .constitle {
    font: 3.5rem/3.5rem BrandonText Bold;
    color: #112952;
    letter-spacing: 0.48px;
}
.proslist, .conslist, .works{
	list-style: none;
	padding-left: 0;
	/*margin-left: 0;*/
}
.proslist li, .conslist li, .works li{
	position: relative;
	padding-left: 20px;
	margin-left: 0;
	font-size: 2.1rem;
	color: #2B2E34;
	line-height: 1.9;
}
.proslist li:before, .works li:before{
	content: "";
	width: 19px;
	height: 13px;
	position: absolute;
	left: -10px;
	top: 20px;
	transform: translateY(-50%);
	background-image: url("assets/images/pros-li-halfpill.png");
	background-size: cover;
	background-position: center;
}
.proslist li:nth-child(3n)::before,
.conslist li:nth-child(3n)::before,
.works li:nth-child(3n)::before {
	transform: scaleX(-1);
	top: 12px;
}
.proslist li:nth-child(2n)::before,
.conslist li:nth-child(2n)::before,
.works li:nth-child(2n)::before {
	transform: rotate(-45deg);
	top: 12px;
}
.conslist li:before{
	content: "";
	width: 19px;
	height: 19px;
	position: absolute;
	left: -5px;
	top: 18px;
	transform: translateY(-50%);
	background-image: url("assets/images/cons-li-halfpill.png");
	background-size: cover;
	background-position: center;
}
.faqtitle {
    font: 30px/35px Gotham Bold;
    text-transform: uppercase;
    color: #112952;
    letter-spacing: 0.6px;
}
.schema-faq-question {
    font: 24px/24px Gotham Bold;
    color: #112952;
    text-transform: capitalize;
    letter-spacing: 0.48px;
    margin-bottom: 20px;
    display: block;
}
.schema-faq-answer {
    font: 18px/24px BrandonText Regular;
    letter-spacing: 0.18px !important;
    color: #2B2E34;
}
.uptimeintro {
    background-color: #F6F8F8;
    border-radius: 100px 0px 0px 0px;
    opacity: 1;
    padding: 3em 3.5em 2em 4.5em;
    margin: 0 auto 1.5em auto;
    width: 100%;
    font-size: 18px;
}
.uptimedesc h5 {
	margin: 12px 0px 20px 50px !important;
}
.uptimeauthor {
   	display: inline-grid;
	line-height: 22px;
	margin: 1em auto;
}
.uptimeintro.funnycode {
    background-color: rgba(89, 190, 73,0.2);
    width: 100%;
}
.uptimeintro.funnycode .uptimetitle {
    display: block;
    margin-bottom: 1em;
}
.uptimeintro.funnycode .uptimetitle img{
	width: 60px;
	margin-right: 1em;
}
.uptimeintro.funnycode .uptimedesc a{
	font-family: BrandonText Bold;
}
.note .uptimeauthor{
	display: block;
	font-size: 25px;
}
.note .uptimetitle.txt-bg{
	margin-bottom: 1em;
}
.note .uptimedesc{
	font-family: "Gotham Bold";
}
.uptimeintro .uptimetitle{
	margin-bottom: 2em;
	display: none;
}
.entry-content .uptimeintro img{
	float: left;
	margin: 0px !important;
}
.entry-content .bhbox img {
	margin-top: 0px !important;
}
.whytrustitle{
	float: left;
	width: 100%;
}
.bhreview .bhbox, .ggreview .bhbox, .hg-alternatives .bhbox, .bwp .bhbox, .bhboxs{
	display: inherit;
	background-color: rgba(89, 190, 73, 0.1);
	width: 100%;
	margin: 50px auto 70px auto;
	min-height: 200px;
	height: 200px;
}
.bhboxs.funnycode {
    margin: 30px auto 30px auto;
    height: 330px;
    min-height: 330px;
    background-color: rgba(89, 190, 73, 0.2);
    border-bottom-right-radius: 100px;
}
.bhboxs.funnycode img{
	height: 270px;
	width: auto;
	margin: 1.5em;
}
.bhboxs.funnycode a{
	color: #3dc0ee !important;
	font-style: normal !important;
	border: none !important;
	padding: 0 !important;
	text-transform: inherit !important;
	margin: 0 !important;
	letter-spacing: 0 !important;
}
.ggreview .bhbox, .hg-alternatives .bhbox{
	margin: 30px auto 30px auto;
}
.boximg.col-sm-4 img {
	margin: 0px !important;
}
.bhreview .bhbox .boximg,
.ggreview .bhbox .boximg, .hg-alternatives .bhbox .boximg, .bwp .bhbox .boximg, .bhboxs .boximg{
	padding-left: 0;
	padding-right: 0;
}
.bhreview .bhbox .boximg img, .bwp .bhbox .boximg img{
	border-radius: 0 0 50px 0;
}
.ggreview .bhbox .boximg img, .hg-alternatives .bhbox img, .bhboxs img{
	height: 200px;
}
.bhreview .bhbox .boxtxt,
.ggreview .bhbox .boxtxt, .hg-alternatives .bhbox .boxtxt, .bwp .bhbox .boxtxt, .bhboxs .boxtxt{
	font: 18px/24px BrandonText Regular;
	color: rgb(43, 46, 52);
	padding: 1.5em 15px;
}
.bhreview .bhbox .boxtxt .free,
.bwp .bhbox .boxtxt .free{
	position: absolute;
	top: -1em;
	left: -3em;
	background-color: #112952;
	color: #fff;
	padding: 10px 15px;
	font: 25px/23px Gotham Bold;
	clip-path: polygon(50% 0%, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%, 0 0);
}
.bhreview .boxtxt .title,
.ggreview .boxtxt .title, .hg-alternatives .boxtxt .title,
.bwp .boxtxt .title, .bhboxs .boxtxt .title {
    font: 24px/24px Gotham Bold;
    letter-spacing: 0.48px;
    color: rgba(17, 41, 82, 1);
    text-transform: capitalize;
}
.bhreview .boxtxt a,
.ggreview .boxtxt a, .hg-alternatives .boxtxt a,
.bwp .boxtxt a, .winbox .win-txt a.visitbigcom, .bhboxs .boxtxt a{
	color: #000;
	border-left: 3px solid #3dc0ee;
	letter-spacing: 1px; 
	font: 16px/20px "BrandonText Bold";
	padding: 0.2em 1.3em;
	text-transform: uppercase;
	text-decoration: none;
	margin-left: 10px;
}
.bhreview .boxtxt a:hover,
.ggreview .boxtxt a:hover, .hg-alternatives .boxtxt a:hover,
.bwp .boxtxt a:hover, .winbox .win-txt a.visitbigcom:hover, 
.bhboxs .boxtxt a:hover {
	border-bottom: 3px solid #3dc0ee;
	border-left-color: transparent;
}
.table-responsive{
	border: none;
}
#fastCometcomparison {
    font: 30px/35px Gotham Bold;
    letter-spacing: 0.6px;
    color: #112952;
    text-transform: uppercase;
}
.table.table-hover.comparisontable thead {
    background-color: transparent;
}
.table-hover.comparisontable > tbody > tr:hover{
	background-color: #f6f8f8; 
}
.table-hover.comparisontable .outlined {
    border-width: 7px;
    border-style: solid;
    border-color: rgba(37, 194, 240, 0.1);
}
.table-hover.comparisontable th {
    font: 21px/30px BrandonText Bold;
    letter-spacing: 0.21px;
    color: rgba(43, 46, 52, 1);
}
.fc-review .moneyback {
    text-align: center;
    font: 16px/24px BrandonText Regular;
    letter-spacing: 0.16px;
    color: rgba(43, 46, 52, 1);
    display: block;
    margin: 1em auto 2em auto;
}
.winbox {
    border: 7px solid rgba(89, 190, 73, 0.1);
    border-radius: 0 0 0 100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding: 2em;
}
.winbox .win-img img{
	margin-top: 4rem;
	margin-bottom: 0;
}
.godaddy-alternatives .winbox .win-img img{
	margin: 14rem 0;
}
.fvrt {
    font-family: "Gotham Bold";
    color: #112952;
}
.winbox .winner{
	position: absolute;
	top: -2.5em;
	left: 3em;
	background-color: #112952;
	color: #fff;
	padding: 10px 35px;
	font: 25px/23px Gotham Bold;
	clip-path: polygon(50% 0%, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%, 0 0);
}
.winbox .win-txt {
    font: 18px/24px BrandonText Regular;
	letter-spacing: 0.18px;
    color: rgba(43, 46, 52, 1);
}
.winbox .win-txt h4{
	/*margin-top: 0;*/
}
.winbox .win-txt ul{
	margin-left: 6px;
}
.home .result{
	padding: 3rem 0;
	width: 80%;
	margin: 0 auto;
}
.home .reviews a{
	text-decoration: none;
	color: #fff;
}
.blog .submit-review-form{
	display: none;
}
/*Table of content*/
.tablecontent ol {
	counter-reset: item;
	margin-left: 0px;
}
.tablecontent {
	background: url('assets/images/ic_icon_half_pill.png') no-repeat 100% 15%;
}
.tablecontent li a {text-decoration: none;color:black;}
.tablecontent li a:hover{color: #3dc0ee !important}
.tablecontent li::before {
	content: counter(item) " ";
	counter-increment: item;
	padding-right: 15px;
	border-right: 2.5px solid #59be49;
	margin-right: 15px;
	width: 2em;
	text-align: right;
	display: inline-block;
	margin-left: 0px !important;
	padding-left: 0px !important;
}
.tablecontent h2 {font-size: 30px;}
.tablecontent li {
	text-align: left;
	letter-spacing: 0.21px;
	color: rgba(43, 46, 52, 1);
	margin-bottom: 15px;
	display: block;
}
/*Table of content*/
.size-button-show-code span.countclick {
    display: block;
    line-height: 0;
    font-size: 15px;
    color: #112952;
    font-family: Gotham Bold;
    margin-bottom: 20px;
}
.wix_v_gd .txt-bg, .svs .txt-bg, .bhvhg .txt-bg, .bhvsgg .txt-bg, .wcvssh .txt-bg, .shovsbog .txt-bg, .wxvswp .txt-bg,
.bhvsim .txt-bg, .bhvgd .txt-bg, .namevsgd .txt-bg, .e-tools .txt-bg, .stupid-qa .txt-bg, .bmw .txt-bg, .txt-bg{
	color: #112952;
	font-family: "BrandonText Bold";
}
.bioauthor {
    background: rgba(89, 190, 73, 0.1);
    padding: 2em;
    border-radius: 0 100px 0 0px;
}
.bioauthor .bioauthtxt {
    margin-top: 20px;
    display: block;
    font: 18px/28px BrandonText Regular;
}
.hsvsgd .coupon-code{
	background-color: #f6f8f8;
	padding: 1em;
	text-align: center;
}
.halfpillfloat {
	position: absolute;
	right: 0;
	transform: rotate(60deg);
	top: -30px;
}
.bestlistbar {
    background: rgba(37, 194, 240, 0.1);
    padding: 1em 2em 10px 2em;
    width: 100%;
    margin: 0 auto 2em auto;
    border-bottom-right-radius: 200px;
    position: relative;
}
.bestbar {
    font: 30px/35px Gotham Bold;
    letter-spacing: 0.6px;
    color: rgba(17, 41, 82, 1);
    text-transform: uppercase;
}
.bestlistbar ol{
	counter-reset: item;
	margin-left: 1.2em;
	margin-top: 4rem;
}
.bestlistbar ol li {
    text-align: left;
    font: 18px/25px BrandonText Regular;
    letter-spacing: 0.21px;
    color: rgba(43, 46, 52, 1);
    margin-bottom: 15px;
    display: block;
    text-indent: -3.8em;
}
.bestlistbar ol li::before {
    content: counter(item) " ";
    counter-increment: item;
    padding-right: 15px;
    border-right: 2.5px solid rgba(37, 194, 240, 0.8);
    margin-right: 15px;
    width: 3em;
  	text-align: right;
  	display: inline-block;
  	font-family: Arial;
}
.bestbar span {
	position: relative;
	top: 8px;
}
.entry-content .bestbar img {
	margin: 0px 10px 0px 0px !important;
}
/*image hover*/
.imgcntr {
	text-align: center;
	margin-bottom: 20px;
}
.pichov {
	height: 340px;
	overflow: hidden;
	display: inline-block;
	position: relative;
	cursor: pointer;
}
.hovtopre {
	position: absolute;
	text-align: right;
	text-transform: uppercase;
	background: #f0eeee;
	color: black;
	z-index: 11;
	font-size: 10px;
	padding: 3px 10px;
	right: 0px;
	border-radius: 2px 0px 2px 2px;
	font-weight: 900;
}
.pichov p {
	margin: 0px;
}
.pichov img {
	box-shadow: none !important;
	margin-top: 0;
}
.pichov img {
	max-width: 100%;
	cursor: pointer;
}
.pichov:hover img {
	animation: moveSlideshow 6s linear;
	animation-fill-mode: forwards;
}
@keyframes moveSlideshow {100% {transform: translateY(calc(-100% + 340px));}}.pichov:hover .pichov:after {opacity: 0;}
/*image hover*/
code {
	color: #1c1c1c;
	font-size: 14px;
	background: rgb(246, 248, 248);
	padding: 16px;
	display: block;
	border-radius: 0 0 100px 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.motivatequotes .quote {
	margin: 40px 0px 0px;
}
.motivatequotes .qsymbol{
	font-family: BrandonText Regular;
	color: rgba(89, 190, 73, 0.25);
	margin: 0px;
	font-size: 132px;
	line-height: 0px !important;
}
.motivatequotes .qtext{
	font: 30px/40px BrandonText Regular;
}
.motivatequotes .qauthor{
	color: rgba(89, 190, 73, 1);
	font: 14px/20px Gotham Bold;
	text-transform: uppercase;
	text-align: right;
}
.wb-jargon .tablecontent, .btnflex{
	columns: 2;
}
.offer-item-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 10px 12px 20px;
    width: 100%;
    margin: 0 auto 1em auto;
    border: 1px solid #cfcfcf;
    border-radius: 5px 5px 0 0;
}
.offer-promo-code {
    margin: 0.5em auto;
    font: 25px/30px 'BrandonText Regular';    
}
.offer-item-head {
    margin-bottom: 0px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    font: 15px/20px BrandonText Medium;
    color: #112952;
}
.offer-item-title {
    font: 30px/30px BrandonText Regular;
    color: rgb(43, 46, 52);
    margin-bottom: 20px;
}
.offer-meta.offer-meta-usage.has-separator-dot {
    color: #c5c5c5;
    font: 14px/20px BrandonText Regular;
}
.analyze-website, .enable-gzip, .minify-minimize {
    padding: 20px;
    background-color: rgba(37, 194, 240, 0.1);
    text-align: center;
    font-family: BrandonText Medium;
}
.analyze-website i, .{
	color: #42c0fb;
}
.enable-gzip i {
    color: red;
    margin-right: 5px;
}
.minify-minimize i{
	color: #008000;
	margin-right: 5px;
}
/* tab section */
.ac-container{
	/*width: 400px;
	margin: 10px auto 30px auto;
	text-align: left;*/
	padding-top: 0;
	padding-bottom: 0;
}
.ac-container label{
	font-family: "BrandonText Regular";
	padding: 5px 20px;
	position: relative;
	z-index: 20;
	height: 50px;
	cursor: pointer;
	color: #fff;
	line-height: 38px;
	font-size: 22px;
	background: #112952;
	box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3), 0px 2px 2px rgba(0,0,0,0.1);
	margin-bottom: 0;
	width: 100%;
	display: inline-block !important;
	margin-left: 0px !important;
}
.ac-container label:hover{
	background: #112952;
}
.ac-container input:checked + label,
.ac-container input:checked + label:hover{
	background: rgba(0, 168, 234, 0.1);
	color: #112952;
	/*text-shadow: 0px 1px 1px rgba(255,255,255, 0.6);
	box-shadow: 
		0px 0px 0px 1px rgba(155,155,155,0.3), 
		0px 2px 2px rgba(0,0,0,0.1);*/
}
.ac-container label:hover:after,
.ac-container input:checked + label:hover:after{
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	right: 13px;
	top: 7px;
	background: transparent url(assets/images/arrow_down.png) no-repeat center center;	
}
.ac-container input:checked + label:hover:after{
	background-image: url(assets/images/arrow_up.png);
}
.ac-container input{
	display: none;
}
.ac-container article{
	background: rgba(255, 255, 255, 0.5);
	margin-top: -1px;
	overflow: hidden;
	height: 0px;
	position: relative;
	z-index: 10;
	-webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	-ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
	transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}
.ac-container article span{
	padding: 20px;
	display: block;
}
.ac-container article span p {
    margin: 0 0 1em 0;
}
.ac-container input:checked ~ article{
	-webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	-ms-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
	box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}
.ac-container input:checked ~ article.ac-small{
	height: 140px;
}
.ac-container input:checked ~ article.ac-medium{
	height: 180px;
}
.ac-container input:checked ~ article.ac-large{
	min-height: 100px;
	height: 100%;
}
.tabbox{
	margin-bottom: 20px;
}
.tabbox p{
	margin: 0;
}
/* Tab section */
.carousel-slider__post-excerpt, .carousel-slider__post-meta{
	display: none !important;
}
.zoom-effect-container .left, .right .inner-thumb {
	overflow: hidden;
}
.right  .inner-thumb  .wp-post-image:hover {
	transform: scale(1.1);
}
.carousel-slider__post-image{
	padding-top: 100% !important;
}
.carousel-slider__post-title{
	text-align: center;
	position: absolute;
	bottom: 0px;
	height: 0;
	text-decoration: none;
}
/*image overlay*/
.inner-thumb, .zoom-effect-container .col-sm-6.left, .owl-item .carousel-slider__post-header, #myCarousel .col-sm-12 {
	display: inline-block;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background:    -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background:      -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background:         linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
}
.inner-thumb img, .zoom-effect-container .left img.size-post-thumbnail, .owl-item .carousel-slider__post-image, #myCarousel .col-sm-12 img{
	position: relative;
	z-index: -1;
	margin-bottom: 0px !important;
}
/*image overlay*/
/*reviews active links*/
.reviews .carousel.slide .nav li a {
	color: #8c8888;
}
.reviews .carousel.slide .nav li.active a {
	color: black;
}
/*reviews active links*/
.home table td i {
    color: #25c2f0;
    font-size: 15px;
    letter-spacing: 4px;
}
/*404 page design article*/
.pdesign {
	padding: 0px 17px;
}
.box404 {
	background: #f1f1f1;
	padding-top: 0px;
}
.box404.mt {
	margin-top: 50px;
	border: 1px solid #d2caca;
  padding: 10px 20px;
}
.box404.mt video {
    width: 100%;
}

.wp-block-video video, .wp-block-image img {
	max-width: 100%;
	margin: 0 auto;
	width: 100% !important;
}
.pagedesign404 .bhboxs .boxtxt a {
	border: 0;
	padding: 0;
	color: #3dc0ee !important;
	font-style: normal;
}
.pagedesign404 .bhboxs img {
	height: auto;
	margin: 30px auto;
}
.phbox {
	position: relative;
}
.phtcount {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 90px;
	height: 45px;
	background: #313131;
	border-radius: 10px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	line-height: 45px;
	z-index: 1111;
	opacity: 0.71;
	font-family: Gotham Bold !important;
	font-weight: normal;
}
.pagedesign404 .wp-block-image, .pagedesign404 .wp-block-video {
	margin-top: 0px !important;
}
.wp-block-image figcaption, .wp-block-video figcaption {
	margin: 10px 0px 0px 20px;
}
.box404 p {
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
}
/*author bio modal*/
.team-authorbox .modal-content {
	border: none;
	-webkit-box-shadow: none; 
	box-shadow: none; 
	background-color: #F6F8F8;
	border-bottom-right-radius: 100px;
}
/*average uptime block*/
.avguptime .col-sm-6:first-child {
	border-right: 2px dotted #a2a0a0;
}
.avguptime .col-sm-6 {
	text-align: center;
	font: 24px/24px BrandonText Bold;
}
.avguptime span {
	font: 65px/77px BrandonText Light;
	margin-top: 20px !important;
	display: block;
}
.avguptime.row {
	background: #eef9ec;
	padding: 30px;
	width: 80%;
	margin: 0 auto;
	display: block;
	margin-bottom: 20px;
}
.large_orange_button.clickable_class:hover {
    border-bottom: 3px solid #3dc0ee;
    border-left-color: transparent;
    text-decoration: none;
}
.large_orange_button.clickable_class {
    color: #000 !important;
	border-left: 3px solid #3dc0ee;
    letter-spacing: 1px;
    font: 16px/20px "BrandonText Bold";
    padding: 0.2em 1.3em;
    text-transform: uppercase;
    text-decoration: none;
    margin-left: 10px;
    background: transparent;
}
.whoisurl{
	display: inline;
}
.host-content .hosthead{
	font-family: Gotham Bold;
	margin-right: 5px;
}
.whoisurl .button-show-code-orng {
	text-decoration: none;
    color: #3dc0ee;
    border: 2px solid #3dc0ee;
    padding: 8px 20px;
    font-family: "BrandonText Bold";
    background: transparent;
}
.whoisurl .button-show-code-orng:hover{
	background-color: #00a8ea;
	border-color: #00a8ea;
	color: #fff;
	text-decoration: none;
}
#mainData h4{
	font-size: 2.5rem;
	text-align: center;
}
#mainData .migrate-expert.clickable_class {
    font-family: Gotham Bold;
}
#mainData h5.whois-title{
	margin-top: 1em;
    font-family: "BrandonText Regular";
}
.my-ip-address .pb20.pb10{
	width: 50%;
}
#disqus_thread {
    margin: 5rem auto;
    width: 72rem;
    border-top: 3px dotted #112952;
    padding-top: 5rem;    
}
/*Snippet box*/
#snippet-box{
	margin:0 auto !important;
	padding: 10px 10px 50px !important;
	border-top-left-radius: 50px;
	display: none !important;
}
.snippet-title{
	font: 36px/48px BrandonText Regular !important;
	display: flex !important;
}
.snippet-title img {
	margin-right: 10px;
}
.revdetails .snippet-label{
	width: 50% !important;
}
.snippet-label{
	font:18px/24px BrandonText Regular !important;
}
.snippet-data{
	font: 19px/24px BrandonText Bold !important;
}
.revdetails {
	width: 70%;
}
.authrate .snippet-label, .authrate .snippet-data  {
	width: 100%;
	text-align: center;
}
.snippet-markup {
	display: flex !important;
}
.authrate .star-img {
	display: inline-flex;
}
.reviewcon{
	display: flex;
}
.revdetails.col-sm-6 {
	border-right: 2px dotted #9d9a9a;
}
.authrate .star-img i {
	color: #25C2F0;
	margin-right: 5px;
}
@media (max-width: 768px){
	.avguptime .col-sm-6:first-child {
		border-right: none !important;
		border-bottom: 2px dotted #a2a0a0;
		margin-bottom: 20px;
	}
	.snippet-markup {
		display: block !important;
	}
	.revdetails {
		width: 100% !important;
	}
	.revdetails.col-sm-6 {
		border-right: none !important;
		border-bottom: 2px dotted #9d9a9a;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.team-authorbox .modal-body {
		padding-left: 2em;
		margin-bottom: 2em;
	}
	.team-authorbox .modal-body .team-avtar {
		width: 100%;
		float: left;
		min-height: 0px !important;
		padding-top: 0px !important;
		padding-bottom: 20x !important;
	}
	.team-authorbox .modal-body .team-avtar img {
		right: 0px !important;
		padding: 0px !important;
		width: auto !important;
	}
	.avguptime span {
		font: 40px/77px BrandonText Light !important;
	}
}
/*two part of Pros Cons*/
@media (min-width: 768px){
	.prons_cons {
		columns: 2;
	}
}
/*insider tip*/
.insidertip {
	border: 7px solid rgba(37, 194, 240, 0.1);
	border-radius: 0px 100px 0px 0px;
	padding: 40px;
	font-size: 18px;
	width: 100%;
	margin: 0 auto;
}
.insidertip h5 {
	text-transform: uppercase;
	font-size: 30px;
	margin: 0px !important;
}
.insidertip .tiptag {
	font-size: 24px;
}
/*insider tip*/
/*recom winner*/
.winbox .win-txt h4{
	/*margin-top: 0;*/
}
.winbox.recom .winner{
	top: -3.2em;
	left: 2em;
	padding: 10px 30px;
	font: 20px/23px Gotham Bold;
}
.winbox.recom{
	margin-bottom: 20px;}
.serverbar p.borderbtn {
	margin-top: 20px;
}
/*Quote*/
.quote {margin: 70px 50px 50px;}
.qsymbol{font-family: BrandonText Regular;color: rgba(89, 190, 73, 0.25);margin: 0px;font-size: 132px;line-height: 20px !important;}
.qtext{font: 36px/48px BrandonText Regular;}
.qauthor{color: rgba(89, 190, 73, 1);font: 14px/20px Gotham Bold;text-transform: uppercase;}
/*iframe margin*/
.webfreehost iframe, .bstwsbuilder iframe{
	margin-bottom: 20px;
}
/*win hostfeature box*/
.winbox.hostfeature .winprice {
	text-align: center;
	font-size: 32px;
}
.winbox.hostfeature .winlist {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.winbox .winlist li {
	padding: 0px;
	margin: 0;
	margin-bottom: 20px;
}
.winbox .winlist .fename, .bld{
	font-family: BrandonText Bold;
}
.winbox.hostfeature .monybck {
	font-size: 18px;
	text-align: center;
}
/*grid table of content*/
.gridtbl .gridtblno {
	position: absolute;
	margin-bottom: 0px;
	top: 30px;
	left: 25px;
	font: 48px/20px BrandonText Regular;
	color: white;
}
.gridtbl .chapter-col {
	padding-bottom: 20px;
	padding-left: 10px !important;
	padding-right: 10px !important;
}
.gridtbl .gridtbltxt {
	position: absolute;
	bottom: 30px;
	font: 14px/20px Gotham Bold;
	text-transform: uppercase;
	left: 25px;
	word-wrap: break-word;
	letter-spacing: 0.28px;
	width: 80%;
	color:white;
}
.gridtbl .scroll-click:hover {
	background: linear-gradient(180deg, #08080900 0%, #0C0D0DB3 0%) 0% 0% no-repeat padding-box;
}
.gridtbl {
	padding: 10px;
}
.entry-content .gridtbl img {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	width: 100%;
	position: relative;
	/*z-index: -1;*/
	display: block;
}
.gridtbl .scroll-click {
	display: inherit;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background: linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
}
.gridtbl .gridtbltitle{
	font-size: 30px;
	text-transform: uppercase;
}
/* Related Post */
.related.related-post {
    line-height: 1.2em !important;
}
.related.related-post a {
    text-decoration: none;
    color: #44474c;
    font: 16px/20px Gotham Bold;
}
.related.related-post a img{
	margin-bottom: 10px !important;
}
.related.related-post a:hover {
    color: #3dc0ee;
}
/* End Related Post */
/*podcast gif style*/
.gifwidth{
	/*max-width: 50%;*/
}
/*star of table*/
.tblstar{
	color: #3dc0ee;"
}
/*wp themes*/
.surow {
	clear: both;
	zoom: 1;
	margin-bottom: 2.5em;
	display: flex;
	border-top: 1px dashed #112952;
}
#accounting, #business, #dentistry, #fitnesstraining, #lawyer, #multipurpose, #musician, #pettrainers, #photography, #recipe, #travelblog, #yogatrainer {
	float: left;
	width: 100%;
}
.sucolumn {
	display: block;
	float: left;
	width: 47%;
	margin-right: 28px;
	padding-top: 2.5em;
}
.sucolumn:last-child {
	margin-right: 0 !important;
}
.sucolumn {
	display: block;
	float: left;
	width: 47%;
	margin-right: 28px;
	padding-top: 2.5em;
}
.sucolumn h3 {
	margin-top: 0px !important;
}
.sucolumn .size-button-show-code {
	padding-top: 0;
}
.subutton.get {
	background-color: #112952;
	border-color: #5d8f12;
}
.subutton {
	display: inline-block;
	text-align: center;
	text-decoration: none !important;
	box-sizing: content-box !important;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	border-bottom-style: solid;
	border-bottom-width: 6px;
	color: #FFF !important;
	background-color: #00a8ea;
	border-color: #b9321e;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	padding: 5px 15px;
	letter-spacing: 0;
	margin-right: 15px;
}
.surow .size-button-show-code a:first-child {
	margin-right: 10px;
}
/*Hosting Coupon Page*/
.actions a {
  font-size: 18px;
  color: #00a8ea !important;
  font-weight: bold;
}
#hot-coupons * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.coupon .tag .logo img {
	display: inline-block;
}
.submit-coupon {
  color: #00a8ea !important;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
}
.submit-coupon:hover {
  text-decoration: underline !important;
}
.coupon .right {
  float: right;
  width: 235px;
}
.coupon .right .show-code1,.coupon .right .show-code2,.coupon .right .show-code3,.coupon .right .show-code4,.coupon .right .show-code5,.coupon .right .show-code6,.coupon .right .show-code7,.coupon .right .show-code8,.coupon .right .show-code9,.coupon .right .show-code10,.coupon .right .show-code11,.coupon .right .show-code12,.coupon .right .show-code13,.coupon .right .show-code14,.coupon .right .show-code15,.coupon .right .hp-right-show-code {
  padding-right: 5px;
  text-align: right;
  background: #00a8ea;
  border: 1px dashed #00a8ea;
  color: white !important;
  position: relative;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  margin: 15px;
  display: block;
  font-family: BrandonText Medium;
  font-size: 18px;
  line-height: 48px;
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
}
.sticker1 , .sticker2 , .sticker3 , .sticker4, .sticker5, .sticker6, .sticker7, .sticker8, .sticker9, .sticker10, .sticker11, .sticker12, .sticker13, .sticker14, .sticker15, .hp-sticker{
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  left: -1px;
  padding-left: 43px;
  right: 43px;
  position: absolute;
  background: #112952;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  top: -1px;
  bottom: -1px;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  font-weight: 600;
}
.sticker1::before , .sticker2::before, .sticker3::before,.sticker4::before,.sticker5::before,.sticker6::before, .sticker7::before, .sticker8::before, .sticker9::before, .sticker10::before, .sticker11::before, .sticker12::before, .sticker13::before, .sticker14::before, .sticker15::before, .hp-sticker::before {
  right: -20px;
  content: '';
  width: 20px;
  top: 20px;
  position: absolute;
  bottom: 0;
  background: #112952;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.sticker1::after , .sticker2::after, .sticker3::after, .sticker4::after, .sticker5::after,.sticker6::after,.sticker7::after,.sticker8::after,.sticker9::after,.sticker10::after,.sticker11::after,.sticker12::after,.sticker13::after,.sticker14::after,.sticker15::after,.hp-sticker::after{
  -webkit-box-shadow: -2px 2px 3px 0 rgba(0,0,0,0.17);
  box-shadow: -2px 2px 3px 0 rgba(0,0,0,0.17);
  border-left: 22px solid #1750b0;
  right: -20px;
  content: '';
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  border-top: 22px solid transparent;
  background: transparent;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.coupon .right .show-code:hover .sticker1, .coupon .right .show-code2:hover .sticker2, .coupon .right .show-code3:hover .sticker3, .coupon .right .show-code4:hover .sticker4, .coupon .right .show-code5:hover .sticker5, .coupon .right .show-code6:hover .sticker6, .coupon .right .show-code7:hover .sticker7, .coupon .right .show-code8:hover .sticker8, .coupon .right .show-code9:hover .sticker9, .coupon .right .show-code10:hover .sticker10, .coupon .right .show-code11:hover .sticker11, .coupon .right .show-code12:hover .sticker12, .coupon .right .show-code13:hover .sticker13, .coupon .right .show-code14:hover .sticker14, .coupon .right .show-code15:hover .sticker15, .coupon .right .hp-right-show-code:hover .hp-sticker  {
    padding-left: 49px;
    right: 49px;
    background: #112952;
}
.coupon .right .show-code:hover .sticker1::before, .coupon .right .show-code2:hover .sticker2::before, .coupon .right .show-code3:hover .sticker3::before, .coupon .right .show-code4:hover .sticker4::before, .coupon .right .show-code5:hover .sticker5::before, .coupon .right .show-code6:hover .sticker6::before, .coupon .right .show-code7:hover .sticker7::before, .coupon .right .show-code8:hover .sticker8::before, .coupon .right .show-code9:hover .sticker9::before, .coupon .right .show-code10:hover .sticker10::before, .coupon .right .show-code11:hover .sticker11::before, .coupon .right .show-code12:hover .sticker12::before, .coupon .right .show-code13:hover .sticker13::before, .coupon .right .show-code14:hover .sticker14::before, .coupon .right .show-code15:hover .sticker15::before, .coupon .right .hp-right-show-code:hover .hp-sticker::before {
    right: -26px;
    width: 27px;
    top: 27px;
    background: #112952;
}
.coupon .right .show-code:hover .sticker1::after, .coupon .right .show-code2:hover .sticker2::after, .coupon .right .show-code3:hover .sticker3::after, .coupon .right .show-code4:hover .sticker4::after, .coupon .right .show-code5:hover .sticker5::after, .coupon .right .show-code6:hover .sticker6::after, .coupon .right .show-code7:hover .sticker7::after, .coupon .right .show-code8:hover .sticker8::after, .coupon .right .show-code9:hover .sticker9::after, .coupon .right .show-code10:hover .sticker10::after, .coupon .right .show-code11:hover .sticker11::after, .coupon .right .show-code12:hover .sticker12::after, .coupon .right .show-code13:hover .sticker13::after, .coupon .right .show-code14:hover .sticker14::after, .coupon .right .show-code15:hover .sticker15::after, .coupon .right .hp-right-show-code:hover .hp-sticker::after  {
    border-left-width: 29px;
    right: -26px;
    border-top-width: 29px;
}
.coupon {
  padding: 15px;
  position: relative;
  -webkit-box-shadow: 0 2px 4px 2px rgba(0,0,0,0.1);
  box-shadow: 0 2px 4px 2px rgba(0,0,0,0.1);
  margin-bottom: 18px;
  padding-bottom: 30px;
  min-height: 140px;
}
.coupon::before, .coupon::after {
  content: " ";
  display: table;
}
.hide {
    display: none !important;
}
.coupon .tag {
	float: left;
	margin-right: 30px;
	width: 110px;
	height: 110px;
	border: 0;
	margin-left: 15px;
}
.show-coupon {
    cursor: pointer;
}
.coupon .tag .logo {
  width: 110px;
  height: 110px;
  line-height: 71px;
  padding: 0 3px;
  margin: 3px 0;
}
.large_input.coupon-hosting-autocomplete {
  padding-left: 14px !important;
}
.coupon .tag .foot {
	height: 32px;
	line-height: 32px;
	color: #fff;
	background: #112952;
	text-align: center;
	font-family: Gotham Bold;
}
.coupon .actions {
    margin: 6px 0;
}
.coupon .title {
    font-family: BrandonText Bold;
    font-size: 24px;
}
.coupon .exclusive-badge {
    background: #00a8ea;
    color: #fff;
    font-family: BrandonText Medium;
    font-size: 12px;
    padding: 3px 7px;
    position: relative;
    top: -3px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
}
.coupon .used {
    color: #6b6b6b;
    font-family: BrandonText Medium;
}
.coupon .actions .action-loader {
    margin-left: 4px;
    top: -7px;
}
.action-loader.inline {
    display: inline-block;
    position: relative;
}
.action-loader {
  visibility: hidden;
}
.coupon .bottom {
    bottom: 0;
    color: #6b6b6b;
    font-size: 12px;
    margin-bottom: 15px;
}
.coupon .bottom .item {
    float: left;
}
.coupon .bottom .far, .coupon .bottom .fa, .submit-coupon .fa{
  margin-right: 7px;
}
.coupon .bottom .far.fa-clock{
  color: #9a2828;
}
.fa-clock::before {
  content: "\f017";
}
.coupon .bottom .item + .item {
    margin-left: 34px;
}
.coupon .bottom .item {
  float: left;
  font-size: 13px;
  position: absolute;
  left: 170px;
  bottom: 14px;
  letter-spacing: 1px;
  font-weight: bold;
}
.fa-thumbs-up::before {
  content: "\f164";
}
img {
  max-width: 100%;
  text-decoration: none;
  border: 0px;
  vertical-align: middle;
}
.entry-content img{
  margin-bottom: 20px !important;
  margin-top: 20px !important;
  box-shadow: 0 0 0 4px #e9f9fd;
}
.fa.fa-clock {
  font-size: 18px;
  color: #00a8ea;
}
.success .fa.fa-thumbs-up {
  color: #2d8800;
  font-size: 18px;
}
.coupon .right .actions {
  text-align: center;
}
.coupon .right .actions a:hover {
  text-decoration: none;
}
.coupon .actions .coupon-vote.green:hover {
    color: #2d8800 !important;
    background: #daffd8;
    border-color: #2d8800 !important;
}
.coupon .actions .coupon-vote.red:hover {
    color: #c70000 !important;
    background: #ffdcdd;
    border-color: #c70000 !important;
}
.button.white:hover {
    background: #d2efff;
    color: #2079ac !important;
}
.text-center {
  text-align: center;
}
#hot-coupons .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.coupon-list header {
  margin-bottom: 20px;
}
.coupon-list header h1 {
  color: #3b4453;
  font-size: 40px;
  margin: 0;
  font-family: BrandonText Bold;
}
.coupon-list header h2 {
  color: #636b78;
  font-size: 21px;
  margin: 12px 0 0;
  font-family: BrandonText Bold;
}
.reviews-filter {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.pull-right, .alignright {
  float: right !important;
}
.overlay .close {
	color: #444141;
	float: right;
	font-size: 28px;
	text-decoration: none;
	opacity: 1;
	right: 20px;
	position: relative;
}
.overlay .close:hover,
.overlay .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.box1 {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}
.button1 {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button1:hover {
  background: #06D85F;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
.show-coupon .logo img {
	box-shadow: none;
	margin: 0px !important;
}
.popup {
  margin: 70px auto;
  padding: 20px 0px 20px;
  background: #fff;
  border-radius: 5px;
  width: 100%;
  position: relative;
  transition: all 5s ease-in-out;
  max-width: 730px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(37,113,156,0.2);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
}
.popup h2 {
  margin-top: 0;
  color: #333;
}
.popup .overlay .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .overlay .close:hover {
    color: black;
}
.popup .content {
    max-height: 30%;
    overflow: auto;
}
#popup1,#popup1-2,#popup1-3,#popup1-4,#popup1-5,#popup1-6,#popup1-7,#popup1-8,#popup1-9,#popup1-10,#popup1-11,#popup1-12,#popup1-13,#popup1-14,#popup1-15, .hp-popup{
    z-index: 99999;
    overflow-y: scroll;
}
@media screen and (max-width: 700px){
    .box1{
      width: 70%;
    }
    .popup{
      width: 90%;
    }
}
.coupon-popup {
  max-width: 730px;
}
.coupon-popup .company-logo {
  margin-bottom: 10px;
}
.coupon-popup .title {
  font-size: 40px;
  font-family: BrandonText Bold;
  text-align: center;
  padding: 0 46px;
}
.coupon-popup .description {
  font-size: 16px;
  text-align: center;
  color: #6b6b6b;
  padding: 0 46px;
}
.coupon-popup .steps {
    margin: 46px;
}
.coupon-popup .steps .step {
  color: #393737;
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 35px;
  font-weight: 700;
}
.coupon-popup .steps .step .number {
  margin-right: 8px;
  float: left;
  background: #a5a5a5;
  color: #fff;
  width: 36px;
  height: 36px;
  display: inline-block;
  text-align: center;
  font-size: 24px;
  font-family: BrandonText Medium;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
}
.coupon-popup .steps .step .after-number {
  padding-left: 44px;
}
.coupon-popup .code-copier2, .coupon-popup .code-copier3, .coupon-popup .code-copier4, .coupon-popup .code-copier5, .coupon-popup .code-copier6, .coupon-popup .code-copier7, .coupon-popup .code-copier8, .coupon-popup .code-copier9, .coupon-popup .code-copier10, .coupon-popup .code-copier11, .coupon-popup .code-copier12, .coupon-popup .code-copier13, .coupon-popup .code-copier14, .coupon-popup .code-copier15, .coupon-popup .hocode-copier {
  cursor: pointer;
  background: #CEF890;
  display: inline-block;
  position: relative;
  width: 335px;
  height: 48px;
  line-height: 48px;
  vertical-align: top;
  top: -6px;
  margin-left: 16px;
}
input#code1,input#code3,input#code4,input#code5,input#code6,input#code7,input#code8,input#code9,input#code10,input#code11,input#code12,input#code13,input#code14,input#code15, input.hpcode {
    height: 20px;
    border: none;
    background: #CEF890;
    margin-left: 10px;
}
.coupon-popup .code {
  border-right: 0;
  left: 0;
  width: 220px;
  position: absolute;
  top: 0;
  bottom: 0;
  font-size: 18px;
  color: #00a8ea;
  text-align: center;
  -webkit-user-select: text; /* Safari 3.1+ */
  -moz-user-select: text; /* Firefox 2+ */
  -ms-user-select: text; /* IE 10+ */
  user-select: text; /* Standard syntax */
  border: 2px dashed #112952;
  border-right-width: 2px;
  border-right-style: dashed;
  border-right-color: #00a8ea;
}
.copy2, .copy3, .copy4, .copy5, .copy6, .copy7 , .copy8, .copy9, .copy10, .copy11, .copy12, .copy13, .copy14, .copy15, .hpcopy  {
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -o-border-radius: 0 4px 4px 0;
  right: 0;
  text-align: center;
  background: #112952;
  color: #fff;
  width: 128px;
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer;
  width: 35%;
}
.coupon-popup .steps .step .after-number span {
  display: inline-block;
}
.coupon-popup .steps .step .round {
  border: 2px solid;
  width: 36px;
  height: 36px;
  display: inline-block;
  text-align: center;
  margin: 0 13px;
  color: #777;
  border-color: #777;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
}
.coupon-popup .steps .step .coupon-vote {
  cursor: pointer;
}
.coupon-popup .steps .step .action-loader {
    margin-left: 4px;
    top: -2px;
    visibility: hidden;
}
.action-loader.inline {
    display: inline-block;
    position: relative;
}
.coupon-popup .steps .step .thanks {
  opacity: 0;
  font-size: 12px;
  color: #2d8800;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.coupon-popup .steps .success {
  font-size: 12px;
  color: #6b6b6b;
}
.coupon-popup .subscribe-block {
  border-top: 1px solid #b9bbbd;
  background: #f6f6f6;
  padding: 40px;
  text-align: center;
}
.coupon-popup .subscribe-block .subscribe-form {
  direction: rtl;
  max-width: 520px;
  margin: 10px auto 26px;
}
.coupon-popup .subscribe-block .subscribe-form .subscribe-input-group {
  border: 1px solid #00a8ea;
  max-width: 410px;
  height: 48px;
  position: relative;
  margin: 10px 0;
}
.coupon-popup .subscribe-block .subscribe-form .subscribe-input-group input {
  padding-left: 48px;
  text-align: left;
  left: 0;
  direction: ltr;
  width: 280px;
  position: absolute;
  top: 0;
  bottom: 0;
  color: #6b6b6b;
  font-size: 18px;
  border: 0;
  outline: none;
}
.coupon-popup .subscribe-block .subscribe-form .subscribe-input-group button {
  right: 0;
  width: 130px;
  position: absolute;
  top: 0;
  bottom: 0;
  border: 0;
  outline: none;
  background: #00a8ea;
  color: #fff;
  font-size: 18px;
}
#hot-coupons .input-group {
  position: relative;
  border: 2px solid #cdd7e1;
  margin-bottom: 10px;
  display: block !important; 
}
.coupon-popup .subscribe-block .subscribe-form::before, .coupon-popup .subscribe-block .subscribe-form::after {
  content: " ";
  display: table;
}
.fatop{
  position: relative;
  top: -3px;
}
.code-copier2.copied, .code-copier3.copied, .code-copier4.copied, .code-copier5.copied, .code-copier6.copied, .code-copier7.copied, .code-copier8.copied, .code-copier9.copied, .code-copier10.copied, .code-copier11.copied, .code-copier12.copied, .code-copier13.copied, .code-copier14.copied, .code-copier15.copied, .hocode-copier.copied {
  opacity: 0.5;
}
.popup .company-logo img {
	box-shadow: none;
}
.coupon-popup.popup-content p {
	text-align: center;
	width: 80%;
	margin: 10px auto;
}
#popup2 {
  z-index: 11111;
  overflow-y: scroll;
}
.show-coupon.myBtn a {
	color: white;
	text-decoration: none;
}
#cboxContent {
    padding: 24px;
    border-bottom: 4px solid #4099cc;
    border-top: 4px solid #4099cc;
    box-shadow: 0 5px 20px rgba(37,113,156,0.2);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    background: #fff;
    overflow: hidden;
    position: relative;
}
#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  }
 #cboxContent::before,  #cboxContent::after {
  content: " ";
  display: table;
}
#cboxLoadedContent {
  padding: 0;
}
.coupon-popup.submit-coupon-popup {
  padding: 0 40px;
}
#hot-coupons fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
.large_input {
  padding-left: 15px;
    border: 2px solid #cdd7e1;
  width: 100%;
  font-size: 14px;
  line-height: 40px;
  height: 40px;
  display: block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
}
textarea.error, input.error {
    border-color: #c30000 !important;
}
.coupon-popup label {
    padding-left: 12px;
    font-weight: 600;
    color: #626262;
    background: none;
}
#hot-coupons label.error {
  font-size: 14px !important;
  color: #B00 !important;
  display: none;
}
#hot-coupons form label {
  line-height: 23px;
  font-size: 18px;
  display: block;
  font-weight: normal;
}
#hot-coupons label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
.action-loader {
    visibility: hidden;
}
.coupon-popup .one-coupon {
  display: none;
}
.row {
  margin-left: -10px;
  margin-right: -10px;
}
.row::before, .row::after {
  content: " ";
  display: table;
}
.input-group {
  position: relative;
  border: 2px solid #cdd7e1;
  margin-bottom: 10px;
}
.input-group .fa{
  left: 12px;
  position: absolute;
  top: 12px;
  font-size: 18px;
  color: #aaa;
}
.input-group input.large_input, html.is-ltr .input-group textarea.large_input {
  padding-left: 38px;
}
.input-group .large_input {
    border: 0;
}
.mb-0 {
  margin-bottom: 0px;
}
.large_input {
  border: aliceblue;
  width: 100% !important;
  font-size: 14px !important;
  line-height: 40px !important;
  height: 40px;
  display: block;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}
.rel {
    position: relative;
}
.coupon-popup .question_icon {
  left: -16px;
  right: -7px;
  top: 0;
}
.question_icon {
  cursor: pointer;
  position: absolute;
  top: -10px;
  display: block;
  line-height: 1;
  color: #000;
}
.fa-question-circle {
  font-size: 16px !important;
}
.help_popup {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 38px;
  width: 220px;
  background: #fff;
  padding: 8px;
  border: 1px solid #c3daea;
  font-size: 12px;
  font-weight: normal;
  line-height: 16px;
  color: #57829f;
  z-index: 999;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  -webkit-box-shadow: 0px 2px 6px 1px #becdd7;
  box-shadow: 0px 2px 6px 1px #becdd7;
}
.help_popup .help_popup_arrow {
  display: block;
  position: absolute;
  bottom: -28px;
  width: 24px;
  height: 28px;
  background: url("img/help-popup-arrow.png") 100% 100% no-repeat;
}
.input-group.error {
  border-color: #c30000;
}
.coupon-popup.submit-coupon-popup textarea {
    height: 154px;
}
textarea.large_input {
  width: 100%;
  line-height: 1.4;
  padding: 15px;
  min-height: 100px;
  padding-left: 35px;
}
.coupon-popup.submit-coupon-popup .counter-line {
  margin-bottom: 15px;
}
.clearfix::before, .clearfix::after {
  content: " ";
  display: table;
}
.date-picker-button.error {
  border-color: #c30000;
}
.date-picker-button {
  background: #112952;
  color: #fff;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
  border: 2px solid #112952;
  font-size: 14px;
  padding: 12px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
}
.one-coupon .fa-calendar-o {
  color: white !important;
  z-index: 1;
  top: 39px !important;
  position: relative !important;
  left: 18px;
}
.date-picker-button .date-picker-input {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  background: #112952;
  border: none;
  width: 100%;
  padding-left: 55px;
  padding-right: 15px;
}
.one-coupon .fa.fa-angle-down {
  float: right;
  font-size: 20px !important;
  font-weight: 600;
  top: -33px !important;
  position: relative;
  color: white;
  margin-right: 20px;
}
.coupon-popup .add-another-coupon {
  margin-top: 35px;
  display: inline-block;
}
.coupon-popup .cancel-last-coupon {
  margin-left: 15px;
}
.coupon-popup.submit-coupon-popup button {
	display: table-caption;
	font-size: 18px;
	color: #3dc0ee;
	margin: 45px auto;
	font-weight: 900;
	letter-spacing: 1px;
	background: transparent;
	border: 2px solid #3dc0ee;
	padding: 14px;
}
.coupon-popup.submit-coupon-popup button:hover {
	background: #3dc0ee;
	color: white;
	text-decoration: none;
}
#popup3{
  display: none;
}
.coupon .actions .coupon-vote.green.voted {
  background: #2d8800;
  border-color: #2d8800 !important;
  color: white;
}
.coupon .actions .coupon-vote.voted:hover {
  color: #fff;
}
.coupon-list .coupon-list .coupon .actions .coupon-vote.red.voted {
  background: #c70000;
  border-color: #c70000 !important;
  color: white;
}
.coupon-list .coupon .actions .coupon-vote.voted:hover {
  color: #fff;
}
.related-post h5{
	margin-left: 0;
}
.entry-content.related-post {
    max-width: 72rem;
    width: calc(100% - 4rem);
    margin: 0 auto 50px;
}
.serverbar.barmusicweb .proslist{text-align:left;}
.faz {
  z-index: 1;
    top: 14px !important;
}
.one-coupon input[type="date"] {
	padding-left: 40px !important;
	background: #112952;
	color: white;
}
#cboxLoadedContent .row {
  margin: 0;
  max-width: 100%;
}
.actions a:hover {
    text-decoration: underline !important;
}
.company-logo img {
	margin: 0 auto;
}
.after-number input{
	padding: 2.2rem 1.8rem;
}
/*Hosting Coupon Page*/
/*winner 2 button*/
.winnbtn {
	position: relative;
	display: block;
}
.rplybtn {
	position: absolute;
	right: 0px;
	top: 22px;
}
.winnbtn .button-show-code-orng {
	color: #3dc0ee;
}
.winnbtn .button-show-code-orng:hover {
	background: #3dc0ee;
	color: white;
}
/*winner 2 button*/
.disclosure {
    margin: 4em 0 2em 0;
}
.disclosure .txt-bg{
	font-family: "BrandonText Regular";
}
.wb-jargon .tablecontent li::before{width: 3em;}
/* Start Lorem Ipsum Generator */
.dummy-text-category{
	background-color: #e9f9fd;
	padding: 1em 1em;
	margin-bottom: 20px;
}
.dummy-text-category .target{
	border: none;
	padding: 1rem 2rem;
	height: 2.5em;
	font: 18px/16px "BrandonText Medium";
	letter-spacing: 0.5px;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	background-color: #fff;
}
.liform {
    margin-right: 0;
    margin-left: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 20px -5px rgba(0,0,0,.75);
    -moz-box-shadow: 0 4px 20px -5px rgba(0,0,0,.75);
    box-shadow: 0 4px 20px -5px rgba(0,0,0,.75);
    background: #fff;
}
.tool-lorem-inputs-block {
    float: left;
    width: 75%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
}
.generate.text-right{
    float: right;
    display: block;
    width: 25%;
    text-align: center;
    margin-top: 8px;
}
input#count {
    height: 60px;
    width: 85px;
    font-size: 28px;
    color: #3dc0ee;
    text-align: center;
    border: 1px solid #3dc0ee;
    border-radius: 3px;
    padding: 3px;
    font-weight: bold;
}
.liform .input{
    margin-right: 15px;
    padding-left: 35px;
}
.liform .types{
    display: table;
    margin-right: 15px;
}
.liform .view{
    display: grid;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-left: solid 1px #3dc0ee;
    padding-left: 15px;
}
.tool-lorem-types-row {
    display: table-row;
}
.liform span{
    cursor: pointer;
	white-space: nowrap;
	display: table-cell;
	color: #3dc0ee;
	padding: 0px 10px;
	font: 18px/30px "BrandonText Bold";
	background-color: transparent;
	text-align: left;
	text-transform: initial;
}
.liform span:hover {
    text-decoration: none;
    color: #112952;
}
.liform .button_span.active, .liform .type_button.active_type{
    background: #3dc0ee;
    color: #fff;
    border-radius: 4px;
}
.row.liaction {
    margin-top: 35px;
    margin-bottom: 35px;
    line-height: 50px;
}
.actions-btn{
    text-align: center;
}
.liaction .btn{
    font-size: 18px;
    color: #fff;
    background: #3dc0ee;
    padding: 0 10px;
    border-radius: 20px;
    line-height: 45px;
    margin-right: 15px;
    min-width: 180px;
    font-family: BrandonText Regular;
    letter-spacing: 0;
    text-transform: initial;
}
#demo {
    font-size: 20px;
    text-align: justify;
    color: #000;
    font-weight: 500;
}
.modal-body.sendEmail input#email{
    width: 80%;
	color: #4e4e4e;
	text-align: center;
	margin: 20px auto;
	border: none;
	padding: 1.5rem 2.5rem;
	height: 3.5em;
	font: 18px/16px "BrandonText Medium";
	letter-spacing: 0.5px;
}
#model_form .large_orange_button{
    width: 30%;
    padding: 0px 40px;
    line-height: 40px;
    margin-bottom: 20px;
}
.modal-body .success{
    text-align: center;
    color: #3dc0ee;
    font-weight: bold;
}
.modal-body.sendEmail{
	background-color: #e9f9fd;
}
button.close {
    color: #fff;
    opacity: 1;
    background-color: transparent !important;
}
button.close:hover {
    color: #3dc0ee;
    opacity: 1;
    text-shadow: none;
}
.event_button img {
    margin-right: 15px;
    margin-bottom: 3px;
    display: initial;
}
.generate .large_orange_button, .modal-body .large_orange_button{
	text-decoration: none;
	color: #3dc0ee;
	border: 2px solid #3dc0ee;
	padding: 8px 20px;
	background: transparent;
}
.generate .large_orange_button:hover, .modal-body .large_orange_button:hover{
	color: #fff;
	background-color: #3dc0ee;
	text-decoration: none;
}
/* End Lorem Ipsum generator */
/* Image Compressor Tool */
.well.comImg {
    background: #e9f9fd;
    text-align: center;
    border: none;
    box-shadow: none;
}
.comImg label {
    font-family: BrandonText Bold;
    margin-bottom: 10px;
    display: block;
    color: #112952;
    font-size: 18px;
}
.comImg input[type="file"] {
    display: none;
}
.comImg .custom-file-upload {
    border: 2px solid #25C2F0;
	display: inline-block;
	padding: 6px 12px;
	cursor: pointer;
	color: #25C2F0;
}
.comImg .imagetag {
    font: 16px/24px BrandonText Regular;
    margin-left: 10px;
    color: #707070;
}
.comresult{
	background: #e9f9fd;
	border-radius: 10px;
	padding: 10px;
}
.oneimg {
    background: #fff;
	margin: 6px 6px 15px 6px;
	font: 18px/45px BrandonText Medium;
	color: rgba(0,0,0,0.5);
	height: 50px;
}
.oneimg .image {
    min-height: 50px;
}
.oneimg .name{
	line-height: 50px;
	margin-right: 5px;
}
.directdownload {
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
    font: 18px/35px BrandonText Medium;
    color: #fff;
    border-radius: 28px;
    height: 45px;
    margin: 20px 6px 20px 6px;
    vertical-align: middle;
    padding: .5em 1em .5em;
    background-color: #3dc0ee !important;
    text-transform: initial;
    cursor: pointer;
}
/* End Image Compressor Tool */
/* All Reviews */
.page-template-template-all-reviews .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 100rem;
}
.user-review {
    margin-bottom: 50px;
    padding: 30px 40px;
    background: rgba(89, 190, 73, 0.1);
    border-top-right-radius: 100px;
}
.migrae-btn {
	padding: 30px 40px;
}		
.host-link{
	text-align: center;
	margin-top: 20px;
}
.user-post-url {
	font-family: Gotham Bold;
	font-size: 17px;
	color: #112952;
	margin-top: 20px;
}
.user-ratings .date{
	position: absolute;
    left: 14rem;
    margin-top: 30px;
    font-size: 15px;
}
.article .user-ratings .date {
    left: 13rem;
    margin-top: 15px;
}
.tooltip {
    position: relative;
    z-index: 1;
    font-family: "BrandonText Medium";
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: rgba(255,255,255,1);
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 15px 12px 5px;
    position: absolute;
    z-index: 1;
    top: 5rem;
    left: 5rem;
    border: 1px solid #dedede;
    box-shadow: 0 0 10px #ccc;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}
.tooltiptext .star_ratings {
    padding: 0 10px;
}
.tooltiptext .star_ratings .rate_title {
    font-size: 0.6em;
    margin: 0;
}
.tooltiptext .star_ratings label::before{font-size: 0.8em}
.country span.date {
	font-size: 15px;
}
.write-for-us {
    background-color: #e9f9fd;
    border-radius: 100px 0px 0px 0px;
    opacity: 1;
    padding: 3em 3.5em 2em 4.5em;
    margin: 1.5em auto 1.5em auto;
    max-width: 900px;
}
.write-title{
	font: 30px/50px "BrandonText Medium";
    margin-bottom: 1em;
}
.hg-alternatives .bestlistbar ol {
	columns: 1;
}
.bpng .single .serverbar{
	margin: 1.6em auto 2em auto;
}
.serverbar.barmusicweb .size-button-show-code{margin-bottom:0px}
.serverbar.barmusicweb .serverfont {
	margin-bottom: 20px;
}
.flag {
    width: 16px;
    height: 11px;
    background: url('assets/images/flags.png') no-repeat;
}
span.flag {
    display: inline-block;
}
.ui-autocomplete .flag {
	margin: 3px 5px 0 0;
}
.cfl-multiselect-autocomplete-results .flag {
    margin: 6px 5px 0 0;
    height: 10px;
}
.flag-ad {
    background-position: -16px 0
}
.flag-ae {
    background-position: -32px 0
}
.flag-af {
    background-position: -48px 0
}
.flag-ag {
    background-position: -64px 0
}
.flag-ai {
    background-position: -80px 0
}
.flag-al {
    background-position: -96px 0
}
.flag-am {
    background-position: -112px 0
}
.flag-an {
    background-position: -128px 0
}
.flag-ao {
    background-position: -144px 0
}
.flag-ar {
    background-position: -160px 0
}
.flag-as {
    background-position: -176px 0
}
.flag-at {
    background-position: -192px 0
}
.flag-au {
    background-position: -208px 0
}
.flag-aw {
    background-position: -224px 0
}
.flag-az {
    background-position: -240px 0
}
.flag-ba {
    background-position: 0 -11px
}
.flag-bb {
    background-position: -16px -11px
}
.flag-bd {
    background-position: -32px -11px
}
.flag-be {
    background-position: -48px -11px
}
.flag-bf {
    background-position: -64px -11px
}
.flag-bg {
    background-position: -80px -11px
}
.flag-bh {
    background-position: -96px -11px
}
.flag-bi {
    background-position: -112px -11px
}
.flag-bj {
    background-position: -128px -11px
}
.flag-bm {
    background-position: -144px -11px
}
.flag-bn {
    background-position: -160px -11px
}
.flag-bo {
    background-position: -176px -11px
}
.flag-br {
    background-position: -192px -11px
}
.flag-bs {
    background-position: -208px -11px
}
.flag-bt {
    background-position: -224px -11px
}
.flag-bv {
    background-position: -240px -11px
}
.flag-bw {
    background-position: 0 -22px
}
.flag-by {
    background-position: -16px -22px
}
.flag-bz {
    background-position: -32px -22px
}
.flag-ca {
    background-position: -48px -22px
}
.flag-catalonia {
    background-position: -64px -22px
}
.flag-cd {
    background-position: -80px -22px
}
.flag-cf {
    background-position: -96px -22px
}
.flag-cg {
    background-position: -112px -22px
}
.flag-ch {
    background-position: -128px -22px
}
.flag-ci {
    background-position: -144px -22px
}
.flag-ck {
    background-position: -160px -22px
}
.flag-cl {
    background-position: -176px -22px
}
.flag-cm {
    background-position: -192px -22px
}
.flag-zh,
.flag-cn {
    background-position: -208px -22px
}
.flag-co {
    background-position: -224px -22px
}
.flag-cr {
    background-position: -240px -22px
}
.flag-cu {
    background-position: 0 -33px
}
.flag-cv {
    background-position: -16px -33px
}
.flag-cw {
    background-position: -32px -33px
}
.flag-cy {
    background-position: -48px -33px
}
.flag-cz {
    background-position: -64px -33px
}
.flag-de {
    background-position: -80px -33px
}
.flag-dj {
    background-position: -96px -33px
}
.flag-dk {
    background-position: -112px -33px
}
.flag-dm {
    background-position: -128px -33px
}
.flag-do {
    background-position: -144px -33px
}
.flag-dz {
    background-position: -160px -33px
}
.flag-ec {
    background-position: -176px -33px
}
.flag-ee {
    background-position: -192px -33px
}
.flag-eg {
    background-position: -208px -33px
}
.flag-eh {
    background-position: -224px -33px
}
.flag-england {
    background-position: -240px -33px
}
.flag-er {
    background-position: 0 -44px
}
.flag-es {
    background-position: -16px -44px
}
.flag-et {
    background-position: -32px -44px
}
.flag-eu {
    background-position: -48px -44px
}
.flag-fi {
    background-position: -64px -44px
}
.flag-fj {
    background-position: -80px -44px
}
.flag-fk {
    background-position: -96px -44px
}
.flag-fm {
    background-position: -112px -44px
}
.flag-fo {
    background-position: -128px -44px
}
.flag-fr {
    background-position: -144px -44px
}
.flag-ga {
    background-position: -160px -44px
}
.flag-gb {
    background-position: -176px -44px
}
.flag-en {
    background-position: -176px -44px
}
.flag-gd {
    background-position: -192px -44px
}
.flag-ge {
    background-position: -208px -44px
}
.flag-gf {
    background-position: -224px -44px
}
.flag-gg {
    background-position: -240px -44px
}
.flag-gh {
    background-position: 0 -55px
}
.flag-gi {
    background-position: -16px -55px
}
.flag-gl {
    background-position: -32px -55px
}
.flag-gm {
    background-position: -48px -55px
}
.flag-gn {
    background-position: -64px -55px
}
.flag-gp {
    background-position: -80px -55px
}
.flag-gq {
    background-position: -96px -55px
}
.flag-el,
.flag-gr {
    background-position: -112px -55px
}
.flag-gs {
    background-position: -128px -55px
}
.flag-gt {
    background-position: -144px -55px
}
.flag-gu {
    background-position: -160px -55px
}
.flag-gw {
    background-position: -176px -55px
}
.flag-gy {
    background-position: -192px -55px
}
.flag-hk {
    background-position: -208px -55px
}
.flag-hm {
    background-position: -224px -55px
}
.flag-hn {
    background-position: -240px -55px
}
.flag-hr {
    background-position: 0 -66px
}
.flag-ht {
    background-position: -16px -66px
}
.flag-hu {
    background-position: -32px -66px
}
.flag-ic {
    background-position: -48px -66px
}
.flag-id {
    background-position: -64px -66px
}
.flag-ie {
    background-position: -80px -66px
}
.flag-il {
    background-position: -96px -66px
}
.flag-he {
    background-position: -96px -66px
}
.flag-im {
    background-position: -112px -66px
}
.flag-in {
    background-position: -128px -66px
}
.flag-io {
    background-position: -144px -66px
}
.flag-iq {
    background-position: -160px -66px
}
.flag-ir {
    background-position: -176px -66px
}
.flag-is {
    background-position: -192px -66px
}
.flag-it {
    background-position: -208px -66px
}
.flag-je {
    background-position: -224px -66px
}
.flag-jm {
    background-position: -240px -66px
}
.flag-jo {
    background-position: 0 -77px
}
.flag-ja,
.flag-jp {
    background-position: -16px -77px
}
.flag-ke {
    background-position: -32px -77px
}
.flag-kg {
    background-position: -48px -77px
}
.flag-kh {
    background-position: -64px -77px
}
.flag-ki {
    background-position: -80px -77px
}
.flag-km {
    background-position: -96px -77px
}
.flag-kn {
    background-position: -112px -77px
}
.flag-kp {
    background-position: -128px -77px
}
.flag-kr {
    background-position: -144px -77px
}
.flag-kurdistan {
    background-position: -160px -77px
}
.flag-kw {
    background-position: -176px -77px
}
.flag-ky {
    background-position: -192px -77px
}
.flag-kz {
    background-position: -208px -77px
}
.flag-la {
    background-position: -224px -77px
}
.flag-lb {
    background-position: -240px -77px
}
.flag-lc {
    background-position: 0 -88px
}
.flag-li {
    background-position: -16px -88px
}
.flag-lk {
    background-position: -32px -88px
}
.flag-lr {
    background-position: -48px -88px
}
.flag-ls {
    background-position: -64px -88px
}
.flag-lt {
    background-position: -80px -88px
}
.flag-lu {
    background-position: -96px -88px
}
.flag-lv {
    background-position: -112px -88px
}
.flag-ly {
    background-position: -128px -88px
}
.flag-ma {
    background-position: -144px -88px
}
.flag-mc {
    background-position: -160px -88px
}
.flag-md {
    background-position: -176px -88px
}
.flag-me {
    background-position: -192px -88px
}
.flag-mg {
    background-position: -208px -88px
}
.flag-mh {
    background-position: -224px -88px
}
.flag-mk {
    background-position: -240px -88px
}
.flag-ml {
    background-position: 0 -99px
}
.flag-mm {
    background-position: -16px -99px
}
.flag-mn {
    background-position: -32px -99px
}
.flag-mo {
    background-position: -48px -99px
}
.flag-mp {
    background-position: -64px -99px
}
.flag-mq {
    background-position: -80px -99px
}
.flag-mr {
    background-position: -96px -99px
}
.flag-ms {
    background-position: -112px -99px
}
.flag-mt {
    background-position: -128px -99px
}
.flag-mu {
    background-position: -144px -99px
}
.flag-mv {
    background-position: -160px -99px
}
.flag-mw {
    background-position: -176px -99px
}
.flag-mx {
    background-position: -192px -99px
}
.flag-my {
    background-position: -208px -99px
}
.flag-mz {
    background-position: -224px -99px
}
.flag-na {
    background-position: -240px -99px
}
.flag-nc {
    background-position: 0 -110px
}
.flag-ne {
    background-position: -16px -110px
}
.flag-nf {
    background-position: -32px -110px
}
.flag-ng {
    background-position: -48px -110px
}
.flag-ni {
    background-position: -64px -110px
}
.flag-nl {
    background-position: -80px -110px
}
.flag-no {
    background-position: -96px -110px
}
.flag-np {
    background-position: -112px -110px
}
.flag-nr {
    background-position: -128px -110px
}
.flag-nu {
    background-position: -144px -110px
}
.flag-nz {
    background-position: -160px -110px
}
.flag-om {
    background-position: -176px -110px
}
.flag-pa {
    background-position: -192px -110px
}
.flag-pe {
    background-position: -208px -110px
}
.flag-pf {
    background-position: -224px -110px
}
.flag-pg {
    background-position: -240px -110px
}
.flag-ph {
    background-position: 0 -121px
}
.flag-pk {
    background-position: -16px -121px
}
.flag-pl {
    background-position: -32px -121px
}
.flag-pm {
    background-position: -48px -121px
}
.flag-pn {
    background-position: -64px -121px
}
.flag-pr {
    background-position: -80px -121px
}
.flag-ps {
    background-position: -96px -121px
}
.flag-pt {
    background-position: -112px -121px
}
.flag-pw {
    background-position: -128px -121px
}
.flag-py {
    background-position: -144px -121px
}
.flag-qa {
    background-position: -160px -121px
}
.flag-re {
    background-position: -176px -121px
}
.flag-ro {
    background-position: -192px -121px
}
.flag-rs {
    background-position: -208px -121px
}
.flag-ru {
    background-position: -224px -121px
}
.flag-rw {
    background-position: -240px -121px
}
.flag-sa {
    background-position: 0 -132px
}
.flag-sb {
    background-position: -16px -132px
}
.flag-sc {
    background-position: -32px -132px
}
.flag-scotland {
    background-position: -48px -132px
}
.flag-sd {
    background-position: -64px -132px
}
.flag-se {
    background-position: -80px -132px
}
.flag-sg {
    background-position: -96px -132px
}
.flag-sh {
    background-position: -112px -132px
}
.flag-si {
    background-position: -128px -132px
}
.flag-sk {
    background-position: -144px -132px
}
.flag-sl {
    background-position: -160px -132px
}
.flag-sm {
    background-position: -176px -132px
}
.flag-sn {
    background-position: -192px -132px
}
.flag-so {
    background-position: -208px -132px
}
.flag-somaliland {
    background-position: -224px -132px
}
.flag-sr {
    background-position: -240px -132px
}
.flag-ss {
    background-position: 0 -143px
}
.flag-st {
    background-position: -16px -143px
}
.flag-sv {
    background-position: -32px -143px
}
.flag-sx {
    background-position: -48px -143px
}
.flag-sy {
    background-position: -64px -143px
}
.flag-sz {
    background-position: -80px -143px
}
.flag-tc {
    background-position: -96px -143px
}
.flag-td {
    background-position: -112px -143px
}
.flag-tf {
    background-position: -128px -143px
}
.flag-tg {
    background-position: -144px -143px
}
.flag-th {
    background-position: -160px -143px
}
.flag-tj {
    background-position: -176px -143px
}
.flag-tk {
    background-position: -192px -143px
}
.flag-tl {
    background-position: -208px -143px
}
.flag-tm {
    background-position: -224px -143px
}
.flag-tn {
    background-position: -240px -143px
}
.flag-to {
    background-position: 0 -154px
}
.flag-tr {
    background-position: -16px -154px
}
.flag-tt {
    background-position: -32px -154px
}
.flag-tv {
    background-position: -48px -154px
}
.flag-tw {
    background-position: -64px -154px
}
.flag-tz {
    background-position: -80px -154px
}
.flag-ua {
    background-position: -96px -154px
}
.flag-ug {
    background-position: -112px -154px
}
.flag-um {
    background-position: -128px -154px
}
.flag-us {
    background-position: -144px -154px
}
.flag-uy {
    background-position: -160px -154px
}
.flag-uz {
    background-position: -176px -154px
}
.flag-va {
    background-position: -192px -154px
}
.flag-vc {
    background-position: -208px -154px
}
.flag-ve {
    background-position: -224px -154px
}
.flag-vg {
    background-position: -240px -154px
}
.flag-vi {
    background-position: 0 -165px
}
.flag-vn {
    background-position: -16px -165px
}
.flag-vu {
    background-position: -32px -165px
}
.flag-wales {
    background-position: -48px -165px
}
.flag-wf {
    background-position: -64px -165px
}
.flag-ws {
    background-position: -80px -165px
}
.flag-ye {
    background-position: -96px -165px
}
.flag-yt {
    background-position: -112px -165px
}
.flag-za {
    background-position: -128px -165px
}
.flag-zanzibar {
    background-position: -144px -165px
}
.flag-zm {
    background-position: -160px -165px
}
.flag-zw {
    background-position: -176px -165px
}
		
.flag-arl {
    background-position: -192px -165px
}
.flag-2x {
    &.flag-vn {
        background-position: -240px -672px;
    }
    &.flag-fi {
        background-position: -96px -192px;
    }
    &.flag-mm {
        background-position: -528px -384px;
    }
    &.flag-st {
        background-position: -336px -576px;
    }
    &.flag-ug {
        background-position: -576px -624px;
    }
    &.flag-wf {
        background-position: -336px -672px;
    }
    &.flag-sv {
        background-position: -384px -576px;
    }
    &.flag-ec {
        background-position: -480px -144px;
    }
    &.flag-tm {
        background-position: -144px -624px;
    }
    &.flag-ck {
        background-position: -432px -96px;
    }
    &.flag-ls {
        background-position: -624px -336px;
    }
    &.flag-lu {
        background-position: -720px -336px;
    }
    &.flag-sb {
        background-position: -432px -528px;
    }
    &.flag-kp {
        background-position: -96px -336px;
    }
    &.flag-id {
        background-position: -720px -240px;
    }
    &.flag-sz {
        background-position: -480px -576px;
    }
    &.flag-ws {
        background-position: -384px -672px;
    }
    &.flag-sd {
        background-position: -528px -528px;
    }
    &.flag-ph {
        background-position: -480px -480px;
    }
    &.flag-ad {
        background-position: 0 0;
    }
    &.flag-er {
        background-position: -672px -144px;
    }
    &.flag-hk {
        background-position: -432px -240px;
    }
    &.flag-lv {
        background-position: 0 -384px;
    }
    &.flag-fk {
        background-position: -192px -192px;
    }
    &.flag-im {
        background-position: -96px -288px;
    }
    &.flag-dm {
        background-position: -336px -144px;
    }
    &.flag-az {
        background-position: -720px 0;
    }
    &.flag-nr {
        background-position: -96px -480px;
    }
    &.flag-am {
        background-position: -288px 0;
    }
    &.flag-uy {
        background-position: -672px -624px;
    }
    &.flag-ru {
        background-position: -288px -528px;
    }
    &.flag-kr {
        background-position: -144px -336px;
    }
    &.flag-tc {
        background-position: -528px -576px;
    }
    &.flag-eh {
        background-position: -624px -144px;
    }
    &.flag-pl {
        background-position: -576px -480px;
    }
    &.flag-lr {
        background-position: -576px -336px;
    }
    &.flag-om {
        background-position: -240px -480px;
    }
    &.flag-ca {
        background-position: -144px -96px;
    }
    &.flag-vi {
        background-position: -192px -672px;
    }
    &.flag-li {
        background-position: -480px -336px;
    }
    &.flag-ax {
        background-position: -672px 0;
    }
    &.flag-ly {
        background-position: -48px -384px;
    }
    &.flag-je {
        background-position: -384px -288px;
    }
    &.flag-mr {
        background-position: 0 -432px;
    }
    &.flag-vc {
        background-position: -48px -672px;
    }
    &.flag-cv {
        background-position: 0 -144px;
    }
    &.flag-mn {
        background-position: -576px -384px;
    }
    &.flag-lk {
        background-position: -528px -336px;
    }
    &.flag-eu {
        background-position: -48px -192px;
    }
    &.flag-gw {
        background-position: -336px -240px;
    }
    &.flag-cd {
        background-position: -192px -96px;
    }
    &.flag-cz {
        background-position: -144px -144px;
    }
    &.flag-bz {
        background-position: -96px -96px;
    }
    &.flag-zm {
        background-position: -576px -672px;
    }
    &.flag-pt {
        background-position: 0 -528px;
    }
    &.flag-sn {
        background-position: -144px -576px;
    }
    &.flag-ga {
        background-position: -384px -192px;
    }
    &.flag-fm {
        background-position: -240px -192px;
    }
    &.flag-bh {
        background-position: -288px -48px;
    }
    &.flag-md {
        background-position: -192px -384px;
    }
    &.flag-lc {
        background-position: -432px -336px;
    }
    &.flag-qa {
        background-position: -144px -528px;
    }
    &.flag-fr {
        background-position: -336px -192px;
    }
    &.flag-in {
        background-position: -144px -288px;
    }
    &.flag-tr {
        background-position: -288px -624px;
    }
    &.flag-it {
        background-position: -336px -288px;
    }
    &.flag-ua {
        background-position: -528px -624px;
    }
    &.flag-tn {
        background-position: -192px -624px;
    }
    &.flag-cr {
        background-position: -672px -96px;
    }
    &.flag-lt {
        background-position: -672px -336px;
    }
    &.flag-au {
        background-position: -576px 0;
    }
    &.flag-sr {
        background-position: -240px -576px;
    }
    &.flag-cl {
        background-position: -480px -96px;
    }
    &.flag-tk {
        background-position: -48px -624px;
    }
    &.flag-be {
        background-position: -144px -48px;
    }
    &.flag-ir {
        background-position: -240px -288px;
    }
    &.flag-ms {
        background-position: -48px -432px;
    }
    &.flag-is {
        background-position: -288px -288px;
    }
    &.flag-es {
        background-position: -720px -144px;
    }
    &.flag-ai {
        background-position: -192px 0;
    }
    &.flag-no {
        background-position: 0 -480px;
    }
    &.flag-jo {
        background-position: -480px -288px;
    }
    &.flag-cf {
        background-position: -240px -96px;
    }
    &.flag-mz {
        background-position: -384px -432px;
    }
    &.flag-yt {
        background-position: -480px -672px;
    }
    &.flag-my {
        background-position: -336px -432px;
    }
    &.flag-al {
        background-position: -240px 0;
    }
    &.flag-ye {
        background-position: -432px -672px;
    }
    &.flag-gr {
        background-position: -144px -240px;
    }
    &.flag-ar {
        background-position: -432px 0;
    }
    &.flag-pa {
        background-position: -288px -480px;
    }
    &.flag-nc {
        background-position: -480px -432px;
    }
    &.flag-il {
        background-position: -48px -288px;
    }
    &.flag-de {
        background-position: -192px -144px;
    }
    &.flag-td {
        background-position: -576px -576px;
    }
    &.flag-bg {
        background-position: -240px -48px;
    }
    &.flag-mc {
        background-position: -144px -384px;
    }
    &.flag-th {
        background-position: -720px -576px;
    }
    &.flag-kn {
        background-position: -48px -336px;
    }
    &.flag-cn {
        background-position: -576px -96px;
    }
    &.flag-ml {
        background-position: -480px -384px;
    }
    &.flag-tz {
        background-position: -480px -624px;
    }
    &.flag-sl {
        background-position: -48px -576px;
    }
    &.flag-mp {
        background-position: -672px -384px;
    }
    &.flag-jp {
        background-position: -528px -288px;
    }
    &.flag-rw {
        background-position: -336px -528px;
    }
    &.flag-ve {
        background-position: -96px -672px;
    }
    &.flag-pr {
        background-position: -672px -480px;
    }
    &.flag-gt {
        background-position: -240px -240px;
    }
    &.flag-fo {
        background-position: -288px -192px;
    }
    &.flag-bi {
        background-position: -336px -48px;
    }
    &.flag-cy {
        background-position: -96px -144px;
    }
    &.flag-si {
        background-position: -720px -528px;
    }
    &.flag-pg {
        background-position: -432px -480px;
    }
    &.flag-sm {
        background-position: -96px -576px;
    }
    &.flag-tf {
        background-position: -624px -576px;
    }
    &.flag-mk {
        background-position: -432px -384px;
    }
    &.flag-cw {
        background-position: -48px -144px;
    }
    &.flag-an {
        background-position: -336px 0;
    }
    &.flag-me {
        background-position: -240px -384px;
    }
    &.flag-uz {
        background-position: -720px -624px;
    }
    &.flag-fj {
        background-position: -144px -192px;
    }
    &.flag-br {
        background-position: -624px -48px;
    }
    &.flag-ky {
        background-position: -240px -336px;
    }
    &.flag-bo {
        background-position: -576px -48px;
    }
    &.flag-hr {
        background-position: -528px -240px;
    }
    &.flag-tt {
        background-position: -336px -624px;
    }
    &.flag-cu {
        background-position: -720px -96px;
    }
    &.flag-lb {
        background-position: -384px -336px;
    }
    &.flag-la {
        background-position: -336px -336px;
    }
    &.flag-jm {
        background-position: -432px -288px;
    }
    &.flag-gy {
        background-position: -384px -240px;
    }
    &.flag-iq {
        background-position: -192px -288px;
    }
    &.flag-gb {
        background-position: -432px -192px;
    }
    &.flag-ag {
        background-position: -144px 0;
    }
    &.flag-ao {
        background-position: -384px 0;
    }
    &.flag-dz {
        background-position: -432px -144px;
    }
    &.flag-na {
        background-position: -432px -432px;
    }
    &.flag-ci {
        background-position: -384px -96px;
    }
    &.flag-mo {
        background-position: -624px -384px;
    }
    &.flag-us {
        background-position: -624px -624px;
    }
    &.flag-mh {
        background-position: -384px -384px;
    }
    &.flag-ch {
        background-position: -336px -96px;
    }
    &.flag-vg {
        background-position: -144px -672px;
    }
    &.flag-aw {
        background-position: -624px 0;
    }
    &.flag-mw {
        background-position: -240px -432px;
    }
    &.flag-ps {
        background-position: -720px -480px;
    }
    &.flag-bf {
        background-position: -192px -48px;
    }
    &.flag-cg {
        background-position: -288px -96px;
    }
    &.flag-gh {
        background-position: -624px -192px;
    }
    &.flag-ic {
        background-position: -672px -240px;
    }
    &.flag-do {
        background-position: -384px -144px;
    }
    &.flag-bb {
        background-position: -48px -48px;
    }
    &.flag-mx {
        background-position: -288px -432px;
    }
    &.flag-bs {
        background-position: -672px -48px;
    }
    &.flag-nz {
        background-position: -192px -480px;
    }
    &.flag-kz {
        background-position: -288px -336px;
    }
    &.flag-hn {
        background-position: -480px -240px;
    }
    &.flag-sg {
        background-position: -624px -528px;
    }
    &.flag-pf {
        background-position: -384px -480px;
    }
    &.flag-tl {
        background-position: -96px -624px;
    }
    &.flag-mf {
        background-position: -288px -384px;
    }
    &.flag-gs {
        background-position: -192px -240px;
    }
    &.flag-nl {
        background-position: -720px -432px;
    }
    &.flag-zw {
        background-position: -624px -672px;
    }
    &.flag-mq {
        background-position: -720px -384px;
    }
    &.flag-rs {
        background-position: -240px -528px;
    }
    &.flag-nu {
        background-position: -144px -480px;
    }
    &.flag-bm {
        background-position: -480px -48px;
    }
    &.flag-tv {
        background-position: -384px -624px;
    }
    &.flag-pn {
        background-position: -624px -480px;
    }
    &.flag-mv {
        background-position: -192px -432px;
    }
    &.flag-km {
        background-position: 0 -336px;
    }
    &.flag-sa {
        background-position: -384px -528px;
    }
    &.flag-cm {
        background-position: -528px -96px;
    }
    &.flag-mt {
        background-position: -96px -432px;
    }
    &.flag-tg {
        background-position: -672px -576px;
    }
    &.flag-af {
        background-position: -96px 0;
    }
    &.flag-bd {
        background-position: -96px -48px;
    }
    &.flag-ke {
        background-position: -576px -288px;
    }
    &.flag-gu {
        background-position: -288px -240px;
    }
    &.flag-ne {
        background-position: -528px -432px;
    }
    &.flag-sh {
        background-position: -672px -528px;
    }
    &.flag-eg {
        background-position: -576px -144px;
    }
    &.flag-gq {
        background-position: -96px -240px;
    }
    &.flag-as {
        background-position: -480px 0;
    }
    &.flag-dk {
        background-position: -288px -144px;
    }
    &.flag-pw {
        background-position: -48px -528px;
    }
    &.flag-np {
        background-position: -48px -480px;
    }
    &.flag-bl {
        background-position: -432px -48px;
    }
    &.flag-bn {
        background-position: -528px -48px;
    }
    &.flag-gn {
        background-position: -48px -240px;
    }
    &.flag-by {
        background-position: -48px -96px;
    }
    &.flag-hu {
        background-position: -624px -240px;
    }
    &.flag-sc {
        background-position: -480px -528px;
    }
    &.flag-tw {
        background-position: -432px -624px;
    }
    &.flag-vu {
        background-position: -288px -672px;
    }
    &.flag-pe {
        background-position: -336px -480px;
    }
    &.flag-bj {
        background-position: -384px -48px;
    }
    &.flag-co {
        background-position: -624px -96px;
    }
    &.flag-ie {
        background-position: 0 -288px;
    }
    &.flag-kw {
        background-position: -192px -336px;
    }
    &.flag-ss {
        background-position: -288px -576px;
    }
    &.flag-bw {
        background-position: 0 -96px;
    }
    &.flag-ge {
        background-position: -528px -192px;
    }
    &.flag-mg {
        background-position: -336px -384px;
    }
    &.flag-ro {
        background-position: -192px -528px;
    }
    &.flag-gi {
        background-position: -672px -192px;
    }
    &.flag-gg {
        background-position: -576px -192px;
    }
    &.flag-ni {
        background-position: -672px -432px;
    }
    &.flag-za {
        background-position: -528px -672px;
    }
    &.flag-mu {
        background-position: -144px -432px;
    }
    &.flag-ma {
        background-position: -96px -384px;
    }
    &.flag-kh {
        background-position: -672px -288px;
    }
    &.flag-py {
        background-position: -96px -528px;
    }
    &.flag-sy {
        background-position: -432px -576px;
    }
    &.flag-at {
        background-position: -528px 0;
    }
    &.flag-et {
        background-position: 0 -192px;
    }
    &.flag-tj {
        background-position: 0 -624px;
    }
    &.flag-so {
        background-position: -192px -576px;
    }
    &.flag-to {
        background-position: -240px -624px;
    }
    &.flag-dj {
        background-position: -240px -144px;
    }
    &.flag-gm {
        background-position: 0 -240px;
    }
    &.flag-ki {
        background-position: -720px -288px;
    }
    &.flag-ng {
        background-position: -624px -432px;
    }
    &.flag-ae {
        background-position: -48px 0;
    }
    &.flag-bt {
        background-position: -720px -48px;
    }
    &.flag-gl {
        background-position: -720px -192px;
    }
    &.flag-gd {
        background-position: -480px -192px;
    }
    &.flag-nf {
        background-position: -576px -432px;
    }
    &.flag-va {
        background-position: 0 -672px;
    }
    &.flag-pk {
        background-position: -528px -480px;
    }
    &.flag-ba {
        background-position: 0 -48px;
    }
    &.flag-sk {
        background-position: 0 -576px;
    }
    &.flag-ee {
        background-position: -528px -144px;
    }
    &.flag-ht {
        background-position: -576px -240px;
    }
    &.flag-se {
        background-position: -576px -528px;
    }
    &.flag-kg {
        background-position: -624px -288px;
    }
}
@media (min-width: 280px) and (max-width: 1450px){
	body, .search-modal.active .search-modal-inner{
		width: 100% !important;
	}
	header#site-header{
		width: 100%;
	}
	#site-header.sticky{
		width: 100%;
	}
}

@media (min-width: 280px) and (max-width: 767px){
	li.lang .switcher.notranslate{
		position: initial !important;
	}	
    .switcher .selected a{
        color: #112952 !important;
        border: none !important;
        font: 29px/29px 'BrandonText Bold' !important;
    }
}
@media (min-width: 768px) and (max-width: 1450px){
	#site-header.sticky{
		z-index: 999;
	}
}
@media (min-width: 280px) and (max-width: 1000px){
	.pagination-separator{
		margin: 5rem 0 0 0;
	}
	.search .featured-media {
    	margin-top: 0rem;
	}
	.singular h1.entry-title, .archive h1.entry-title, .search h1.entry-title{
		font: 30px/40px 'BrandonText Light';
		text-align: center;
	}
	.site-hosting-spy .shs-text .title, .sm-details h2, .comparisons .details h2, .reviews .title{
		font: 32px/40px Gotham Bold;
	}
	.entry-content{
		z-index: -99999;
		position: relative;
	}
	/*#site-content{
		z-index: -9;
	}*/
	.disclosure {
    	margin: 2em 2em 2em 2em;
	}
	.post-inner{
		position: relative;
		z-index: 1;
	}
	.banner .title{
		font: 34px/41px 'BrandonText Light';
		text-align: center;
	}
	.banner .desc{
		font: 19px/21px 'BrandonText Regular';
		text-align: center;
		letter-spacing: 0.19px;
	}
	#site-header .circle-img{
		display: none;
	}
	.btnProcessReview {
    	text-align: center;
	}
	.btnProcessReview #browse-reviews {
    	border-left: 0;
    	padding-top: 1.44em !important;
	}
	
	.banner .header-inner.section-inner{
		padding-bottom: 10rem;
	}
	.site-hosting-spy .shs-text .title, .sm-details h3, .comparisons .details h3, .reviews h3.title{
		font: 30px/30px Gotham Bold;
	}
	.comparisons .details::before{
		border-top-left-radius: 100px;
	}
	.popular-comparisons .comparisons-slider{
		top: -4em;
		margin-bottom: -8em;
	}
	.btnComparisons{
		position: absolute;
    	bottom: -16em;
    	min-width: 90%;
    	text-align: right;
	}
	.btnComparisons #pc-submit{
		border-left-color: #25c2f0;
		border-left-width: 3px;
	}
	#id-70.arrows-outside .owl-prev{
		display: none;
	}
	.site-hosting-spy .shs-text::before{
		border-bottom-right-radius: 100px;
	}
	.footer-nav-widgets-wrapper.header-footer-group{
		border-top-left-radius: 100px;
		margin-top: 0 !important;
	}
	.footer-widgets-outer-wrapper{
		text-align: center;
	}
	.widget_text p{
		font-size: 13px;
	}
	#menu-footer-new li:nth-child(-n+4){
		border-bottom: none;
	}
	#menu-footer-new li{
		display: inherit;
		padding-right: 0;
		padding-bottom: 0;
		line-height: 2;
	}
	#menu-footer-new li a{
		font: 18px/25px "BrandonText Bold";
	}
	#menu-footer-new li:last-child{
		padding-bottom: 20px;
	}
	#menu-footer-new li:last-child a{
		border-bottom: 2px dotted #fff;
		padding-bottom: 25px;
	}
	.hp-quiz .half_pill {
    	position: absolute;
    	left: 12em;
    	transform: rotate(215deg);
    	top: 22em;
	}
	.hp-quiz{
		margin-top: 10rem;
	}
	.hp-quiz .quiz-slider::before{
		left: -20px;
		width: 110%;
	}
	.quiz-que{
		font:30px/30px 'Gotham Bold';
	}
	.quiz-ans{
		margin-left: 30px;
	}
	.home .result{
		padding: 10rem 0;
	}
	.rplybtn {
		position: relative;
		right: 0em;
		top: 10px;
	}
	.winbox{
		display: inherit;
	}
	.winbox .winner{
		top: -4em;
		left: 1em;
	}
	.winbox .win-img img{
		margin-bottom: 4rem;
	}
	.site-hosting-spy .shs-text{
		padding-top: 5rem;
	}
	.single .submit-review-form, #regform, .page #submit-review-form{
		padding: 1em 1em 3em 1em;
		border-bottom-right-radius: 100px;
		margin-bottom: 3em;
		margin-left: 0;
		margin-right: 0;
	}
	.single .submit-review-form .star_ratings .rate_title,
	.page #submit-review-form .star_ratings .rate_title{
		font-size: 16px !important;
		float: left;
	}
	.col-sm-1.rating {
    	display: none;
	}
	.single .submit-review-form .star_ratings_table.overall,
	.page #submit-review-form .star_ratings_table.overall{
		height: 2em;
		padding: 0 !important;
	}
	.submit-review-form .rating_title,
	#submit-review-form .rating_title{
		display: none;
	}
	
	.page .entry-content{
		margin-bottom: 2em;
	}
	.single .submit-review-form h3, #regform h3, .page #submit-review-form h3{
		font-size: 24px;
	}
	.single .submit-review-form section, #regform section, .page #submit-review-form section{
		padding: 2rem 0 0;
	}
	#regform table th{
		width: 22%;
	}
	.single .submit-review-form .half_pill, #regform .half_pill, .page #submit-review-form .half_pill{
		right: 0;
		display: none;
	}
	.page #submit-review-form .fb-login-user{
		margin: 40px 0 0 0;
	}
	.speed-test h4{
		font-size: 3.2rem;
	}
	.speed-test h5{
		font-size: 1.8rem;
	}
	.singular h1.entry-title{
		font-size: 35px;
		line-height: 45px;
		margin-bottom: 25px;
	}
	.author-date-details{
		margin: 10px auto;
	}
	.my-ip-address .pb20.pb10{
		width: 80%;
	}
	.my-ip-address #map{
		width: 100%;
	}
	.row.url-btn, .row.details, #whois-results, .site-hosting-spy-details .row.shs-url-btn, .whois-lookup-details .row-who-lookup-url-btn{
		margin: 0 auto;
		padding: 1.5em 0 !important;
	}
	.row.url-btn .urlinput, .site-hosting-spy-details .row.shs-url-btn .urlinput, .whois-lookup-details .row.who-lookup-url-btn .urlinput{																				  
		width: 100%;
	}
	.row.url-btn .findbtn, .site-hosting-spy-details .row.shs-url-btn .findbtn, .whois-lookup-details .row.who-lookup-url-btn .findbtn{
		width: 100%;
		margin-top: 15px;
		text-align: center;
	}
	.site-down-tool input[type="text"], .site-hosting-spy-details input[type="text"], .whois-lookup-details input[type="text"]{
		padding: 1.5rem 2rem;
	}
	.site-down-tool #whois-results, .site-down-tool .details, .site-hosting-spy-details #whois-results, .whois-lookup-details #whois-results{
		border-radius: 0px 50px 0px 0px;
	}
	.site-down-tool h4, .site-hosting-spy-details h4, .whois-lookup-details h4{
		font-size: 3rem;
	}
	.uptime-calc .calc{
		padding: 1rem;
	}
	.uptime-calc .calc #mainData{
		width: 100%;
	}
	.uptime-calc #example{
		display: block;
		overflow-x: scroll;
	}
	.site-migration-services-details{
		padding: 2em;
		border-bottom-right-radius: 100px;
	}
	.uptimeintro{
		width: 100%;
		border-radius: 50px 0 0 0;
		padding: 2em 1.5em 2em 1.5em;
	}
	.bhreview .bhbox, .ggreview .bhbox, .hg-alternatives .bhbox{
		width: 100%;
		min-height: auto;
		height: auto;
	}
	.bhreview .bhbox .boximg, .ggreview .bhbox .boximg, .hg-alternatives .bhbox .boximg{
		display: none;
	}
	.bhreview .bhbox .boxtxt .free{
		left: 5em; 
	}
	.single .serverbar{
		width: 100%;
		padding: 2em 1em;
		border-top-right-radius: 50px;
	}
	.single .serverbar .salehea{
		font: 25px/40px "Gotham Bold";
	}
	.proslist li, .conslist li, .works li{
		line-height: 1.5;
		margin-bottom: 1em;
	}
	.winbox{
		width: 100%;
		padding: 2em 1em;
		display: inherit;
	}
	.submit-web-host #wrapper .baricon {
    	width: 70%;
	}
	.submit-web-host .progress_bar {
    	height: 30px;
    	width: 6px;
    	display: block;
    	margin: 0px auto;
	}
	.submit-web-host{
		padding: 2em 1em;
		border-bottom-right-radius: 100px;
	}
	.submit-web-host .sf-steps-form .column_3{
		width: 100%;
	}
	.col-sm-6.post-title-right{
		padding-left: 15px;
	}
	.page-author-bio {
    	display: grid;
    	margin: 0 auto;
    	width: 100%;
	}
	.page-author-bio .author-date-details{
		text-align: center;
	}
	.page-author-bio .author-default-img{
		margin-bottom: 0;
	}
	.footer-widgets.column-three.grid-item:last-child{
		text-align: center;
		font: 14px/20px "BrandonText Bold";
	}
	#disqus_thread {
	    width: 32rem;
	}
	.user-review{
		padding: 30px 15px;
	}
	.article .title-rating{
		margin-bottom: 20px;
	}
	.star_ratings label{
		left: 2rem;
	}
	.user-review.article .star_ratings label {
    	left: -3em;
	}
	.all-reviews .star_ratings label{
		left: -3rem;
	}
	.all-reviews .user-ratings .date{
		left: 10rem;
	}
	.article .user-ratings .date{
		left: 9rem;
	}
	.article .user-review-header {
    	text-align: center;
	}
	.img-avtar .avatar {
    	margin-top: 0;
    	margin-bottom: 2rem;
	}
	.migrate-btn.all-reviews{
		padding: 30px 10px;
	}
	.all-reviews section {
    	display: inline-block;
	}
	.write-for-us{
		padding: 3em 1.5em 1em 1.5em;
		width: 90%;
	}
	.subtle-shadow.readers-details{
		margin-bottom: 2em;
	}
	.subtle-shadow.readers-details .total-readers.text-right{
		text-align: center;
		margin-bottom: 1em;
	}
	.subtle-shadow.readers-details .middle-text-info{
		margin-bottom: 1em;
	}
	.generate.text-right{
		float: none;
		width: 100%;
	}
	.tool-lorem-inputs-block{
		width: 100%;
		display: inherit;
	}
	input#count{
		width: auto;
		margin-bottom: 20px;
	}
	.liform .types{
		margin: 20px auto;
		width: 100%;
	}
	.tool-lorem-types-row{
		display: inherit;
		width: 80%;
		margin: 0 auto;
	}
	.liform .view{
		display: flex;
		margin: 20px auto;
		border-left: none;
	}
	.dummy-text-category{
		text-align: center;
	}
	.webhost-details {
    	padding: 2rem !important;
    	display: block !important;
	}
	.webhost-details .entry-header{
		width: 100% !important;
	}
	.row.whratings{
		border-top-right-radius: 50px !important;
		padding: 0 !important;
	}
	.wh-user-rev .user-review:first-child, .wh-user-rev, .whsidebarinner{
		border-top-right-radius: 50px !important;
	}
	.webhost-details .webhostreviews .user-ratings .date{
		right: 70px !important;
	}
	.wh-exp .modal-dialog {
    	width: auto;
    	margin: 10px 0 !important;
	}
	.wh-exp .team-authorbox .modal-body .team-avtar{
		width: 100% !important;
	}
	.wh-exp .team-authorbox .modal-body .team-avtar img{
		padding: 20px !important;
		margin-right: 5rem;
		margin-left: 5rem;
	}
	.wh-exp .team-authorbox .modal-body{
		padding-left: 1em;
	}
	.webhostsidebar{
		width: 100% !important;
		margin-top: 20px !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	.whalt .row p{
		margin-bottom: 10px !important;
	}
	.whalt .row{
		margin-bottom: 20px !important;
	}
	.wh-user-rev .tooltiptext .star_ratings label {
    	left: 0 !important;
    	margin-left: 0.2rem !important;
	}
	.wb-serverlocation .country-with-flag.server-location-container{
		width: 100% !important;
		margin-bottom: 10px !important;
	}
	.wb-pricing span.wbprice {
    	margin-bottom: 30px !important;
    	display: block;
	}
	.wh-user-rev .star_ratings label {
    	left: -2em !important;
	}
	.wh-user-rev .tooltip .tooltiptext {
    	left: 0 !important;
    	padding: 10px 10px 5px !important;
	}
	.webhost-details .size-button-show-code.wh-more-btn a {
    	padding: 8px 15px !important;
	}
	.team-authorbox .modal-content{
		border-bottom-right-radius: 50px !important;
	}
	.wh-header-inner{
		width: 100% !important;
	}
	.wh-header.col-sm-12 .entry-title{
		text-align: center !important;
	}
	.wh-header-inner .post-title-right a {
    	display: grid;
	}
	.wh-header-inner .post-title-right img{
		width: auto;
		margin: 0 auto;
	}
    .black-friday-timer .close{
        position: relative;
        bottom: 5.5em;
        margin-top: 0;
    }
    span.dwpbcd-content{
        display: none;
    }
    .popup__container{
        width: 100% !important;
    }
    div#secondary{
        display: none;
    }
}
@media (min-width: 280px) and (max-width: 620px){
	.webhost .tab{
		width: 100%;
	}
	.bhalt ul, .gdreview ul, .bh-devide ul, .wixreview ul, .a2review ul, .gd-review ul.uptime, .bhreview ul.uptime, .sr-review ul.uptime,
	.ipg-review ul.uptime, .fc-review ul.uptime, .ggreview ul.uptime, .imhs ul.uptime, .ncreview ul.uptime, .hg-review ul.uptime,
	.hstreview ul.uptime, .ionos-review ul.uptime, .h24 ul.uptime, ul.uptimes{
		columns: 1;
		width: 100%;
	}
	.bestlistbar{
		padding: 1em;
		width: 100%;
		border-bottom-right-radius: 100px;
	}
	.bestlistbar ol{
		columns: 1;
	}
	.wb-jargon .tablecontent{
		columns: 2;
	}
}
@media (min-width: 768px) and (max-width: 1024px){
	#site-header.sticky{
		position: relative;
		animation: none;
	}
}
@media only screen and (max-width: 767px){
	
	#site-header.sticky{
		position: relative;
		animation: none;
	}
	.coupon .right {
		margin-top: 96px;
		float: none;
		width: 100%;
	}
	.coupon .bottom .item {
		position: unset !important;
	} 
	.coupon {
		height: auto !important;
	}
	.footer .col-md-4.col-md-push-4{
		float: none !important;
	}
	.footer .col-xs-6.col-md-4 {
		float: none !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.coupon .tag {
		float: none;
		margin: 0 auto;
	}
	.coupon .right.hidden-xs {
		margin-top: 20px !important;
	}
	.oneimg{
		height: auto;
		text-align: center;
	}
	.oneimg .image{
		display: inline-block;
		margin-top: 15px;
	}
}
@media only screen and (max-width: 696px){
  	.coupon .right {
    	margin-top: 50px !important;
  	}
    .title span {
  		font-size: 18px;
      	line-height: 15px;
    }
    .coupon-popup .title {
      	padding: 0px;
    }
}
@media only screen and (min-width: 584px) and (max-width: 696px){
    .coupon .right {
  		margin-top: 88px !important;
    }
}
@media only screen and (max-width: 540px){
    .coupon-popup.submit-coupon-popup button {
  		width: 100%;
    }
}
@media only screen and (max-width: 590px){
    .coupon-popup .steps {
  		margin: 46px 10px;
    }
    .coupon-popup .steps .step .after-number {
      	padding-left: 0px; 
    }
  	.coupon-popup .code {
    	width: 65%;
    	border-right-color: transparent;
  	}
  	.coupon-popup .subscribe-block {
    	padding: 10px;
  	}
  	.coupon-popup .subscribe-block .subscribe-form .subscribe-input-group input {
    	padding-left: 38px;
  	}
  	.subscribe-form .subscribe-input-group input {
    	width: 100% !important;
  	}
  	.coupon-popup .company-logo {
    	padding: 0px 10px;
  	}
}
@media only screen and (min-width: 768px){
	.switcher .selected a {
    	border: none !important;
    	color: #f6f8f8 !important;
    	font: 19px/29px 'BrandonText Bold' !important;
	}
}
.page-template-template-submit-review .featured-media img, .page-template-template-speed-test .featured-media img, .page-template-template-uptime-calculator .featured-media img{
	display: none;
}
.speed-test img {
	margin-bottom: 20px;
}
.planstable th{
	vertical-align: middle !important;
}
.godaddy-alternatives .bestlistbar ol {
	columns: 1 !important;
}
.win-img.col-sm-5 {
	display: grid;
}
.win-img.col-sm-5 a, .win-img.col-sm-5 img {
	margin: auto !important;
}
.archive.author .archive-header.has-text-align-center.header-footer-group {
    display: none;
}
.author-details{
	display: flex;
	margin: 2em auto !important;
}
.more-articles p {
    font: 35px/45px BrandonText Medium;
    color: #112952;
}
.amezmofeat li {
	margin-bottom: 20px;
	white-space: break-spaces;
}
.col-sm-4.auth-articles {
    height: 370px;
    min-height: 370px;
}
.auth-articles a {
    text-decoration: none;
    color: #44474c !important;
    font: 16px/20px Gotham Bold;
}
.auth-articles a:hover{
	color: #3dc0ee !important;
}
.post-23923 .submit-review-form {
	margin-bottom: 20px !important;
}
 .whys li {
	margin-bottom: 20px;
}
.godaddy-alternatives .wp-caption-text{text-align: center;}
.yhigh {
	background: yellow;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    position: relative;
    padding-right: calc(10px + .7em + .7em);
    color: #fff;
    border: none;
    background: transparent;
    font: 19px/29px 'BrandonText Bold';
}
.wpml-ls-legacy-dropdown {
    width: 7.5em;
    max-width: 100%;
    float: left;
}
.wpml-ls-legacy-dropdown a:hover, .wpml-ls-legacy-dropdown a:focus, .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a{
	background: transparent;
	color: #FFF;
}
.godaddy-alternatives figure {
	margin-bottom: 50px !important;
}
.entry-content .nomargins {
	margin: auto 0px !important;
}
.readrevbox{
	display: -webkit-inline-box;
}
.bestaspnet .bestlistbar ol {
	columns: 1 !important;
}
.relatedposts.posts.row.flex-row.gridtbl {	
	width: 100% !important;
	padding: 0;
}
.bwh table td i {
	color: #25c2f0;
	font-size: 15px;
	letter-spacing: 4px;
}
.pingdomtbl th, .pingdomtbl td{
	text-align: center;
}
.pingdomtbl td i{
	color: green;
}
.pingdomtbl td .size-button-show-code a{
	padding: 7px !important;
}
.bmw .serverbar.barmusicweb {
    background-color: #112952;
	color: white !important;
}
.bmw .serverbar.barmusicweb .serverfont, .bmw  .serverbar.barmusicweb ul li{
	color: white !important;
}
.imgside {
	columns: 2;
}
.reason-txt {
	font-size: 28px;
	color: #112952;
	font-family: "BrandonText Bold";
}
.imgborder {
	box-shadow: 0 0 0 4px #e9f9fd;
}
.swp_social_panel.swp_default_full_color a, html body .swp_social_panel.swp_individual_full_color .nc_tweetContainer:hover a, body .swp_social_panel.swp_other_full_color:hover a{
	color: #fff !important;
}
.search-submit{
	color: #000 !important;
	border-left: 3px solid #3dc0ee !important;
	letter-spacing: 1px !important;
	font: 16px/20px "BrandonText Bold" !important;
	font-style: normal !important;
	padding: 0.5em 1.3em !important;
	padding-right: 1.3em !important;
	text-transform: uppercase !important;
	text-decoration: none; 
	font-style: normal !important;
	background: none !important;
	border-bottom: 2px solid transparent !important;
	margin-left: 50px !important;
}
.search-submit:hover{
	border-bottom: 2px solid #3dc0ee !important;
	text-decoration: none !important;
	border-left-color: transparent !important;
}
/*Webhost Data*/
.webhost-details .entry-header {
	width: 70%;
	padding: 0px;
	display: block;
}
.webhost-details {
	padding: 4rem;
	display: flex;
}
.wh-user-rev section {
	padding: 8rem 0 2rem;
}
.webhost-details .user-review{
	margin-bottom: 0px;
	border: 6px solid rgba(137, 229, 122, 0.1);
	background: none;
	border-top-right-radius: 0px;
	border-bottom: 0px;
}
.webhostsidebar{
	width: 30%;
	font-size: 17px;
}
.whfcalt.fixed_on_top_div {
	position: fixed;
	top: 20px;
	-webkit-transform: translateZ(0);
}
.webhostsidebar .size-button-show-code a {
	width: 100%;
	display: block;
	margin-top: 20px;
	line-height: 40px !important;
}
.page-template-template-webhost-data{
	width: 90%;
	margin: 0 auto;
	font-family: "BrandonText Regular", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}
.webhostsidebar .awards, .wb-pricing, .whcontact, .whalt{
	display: inline-block;
	width: 100%;
}
.wb-serverlocation span {
    display: block;
}
.whsidebarinner {
	background: #e9f9fd;
	padding: 30px;
	padding-top: 10px;
	border-top-right-radius: 100px;
	padding-bottom: 40px;
}
.webhostsidebar .awards img {
	margin-bottom: 20px;
}
.webhostsidebar .button-show-code-orng.offer-button.js-triggers-outclick:hover {
	color: #fff !important;
	text-decoration: none;
}
.whsidebarinner.mt-20 .txt-bg {
	font-size: 17px;
	text-transform: capitalize;
}
.row.whratings {
	background: #e9f9fd;
	width: 100%;
	padding: 10px;
	border-top-right-radius: 100px;
	margin: 0px;
}
.wb-pricing p {
	padding: 0px;
}
.row.whratings .diff {
	border-left: 2px dotted #112951;
	min-height: 240px;
	margin-top: 14px;
}
.wh-sr {
	position: relative;
	top: -14px;
	font-family: Gotham Bold;
	color: #112952;
}
.row.whratings .star_ratings_table.overall {
	padding: 0em 3em 0 0 !important;
	text-align: center;
}
.whsraward {
	display: table-cell;
	vertical-align: middle;
	margin: auto 0px;
	font-family: Gotham Bold;
	position: relative;
	font-size: 45px !important;
	left: 22px;
	color: white;
}
.star_ratings_table.overall .whstars {
	margin-left: 0px !important;
}
.row.whratings .star_ratings_table.overall .rate_title {
	display: block;
	text-align: center;
	float: none;
}
.whstar-brdr {
	display: inline-block;
	border: 4px solid #112952;
	border-radius: 50%;
	padding: 3px;
}
.row.whratings .col-sm-4  .star_ratings .whstars {
	background: #112952;
	border-radius: 50%;
	letter-spacing: 0px;
	padding: 30px 20px;
}
.row.whratings .whstars {
	float: right;
	position: relative;
	letter-spacing: 7px;
	font-size: 21px;
	color: #25c2f0;
	margin-left: 10px;
}
.mt-20 {
	margin-top: 20px !important;
}
.mt-40 {
	margin-top: 40px !important;
}
.webhostsidebar .awards h4{
	margin: 0px;
}
.webhost-details .webhostreviews .tooltip {
	position: relative;
	z-index: 1;
	font-family: "BrandonText Medium";
}
.webhost-details .webhostreviews .user-ratings .date {
	left: inherit;
	margin-top: 15px;
	right: 40px;
}
.webhost-details .user-review-content{
	font-size: 20px;
}
.webhost-details .size-button-show-code {
	text-align: center;
	font-size: 20px;
}
.wh-header.col-sm-12 {
	text-align: center;
	margin-top: 50px;
}
.wh-header-inner {
	display: inline-block;
	width: 70%;
}
.wh-header.col-sm-12 .entry-title {
	text-align: left;
	text-transform: capitalize;
}
.wh-header.col-sm-12 .col-sm-6.post-title-right{
	/*margin-top: 0px;*/
}
.wh-header.col-sm-12 .author-default-img.col-sm-2 {
	padding-left: 0px;
	padding-right: 10px;
}
.size-button-show-code.wh-fc-btn a{
	background-color: #3dc0ee;
	color: white !important;
	text-transform: capitalize;
}
.size-button-show-code.wh-wr-btn span{
	display: block;
	line-height: 40px !important;
	margin-top: 20px;
	background-color: #c3c2c2;
	border-color: #c3c2c2;
	color: white !important;
	cursor: pointer
}
.webhostsidebar .size-button-show-code.wh-wr-btn a:hover {
	background-color: #b2b1b1;
	border-color: #b2b1b1;
}
.webhostsidebar .size-button-show-code.wh-fc-btn a:hover {
	background: #07b5f2;
}
.wh-user-rev .user-review:first-child {
	border-top-right-radius: 100px;
}
.wh-user-rev {
	border-top-right-radius: 100px;
	background: #eef8ec;
	margin-bottom: 40px;
}
.wb-serverlocation .country-with-flag.server-location-container {
	width: 49%;
	display: inline-block;
}
.wh-user-rev .user-review:last-child {
	border-bottom: 6px solid rgba(137, 229, 122, 0.1);
}
.wh-exp .modal-dialog{
	width: auto;
}
.wh-exp .team-authorbox .modal-body .team-avtar{
	padding-bottom: 0px;
	min-height: 0px;
	width: auto;
}
.wh-exp .team-authorbox .modal-body .team-avtar img{
	width: 100%;
}
.show-more-content{
	transition-timing-function: ease-in;
    transition-timing-function: cubic-bezier(0.42, 0, 1, 1);
}
.webhost-details .size-button-show-code.wh-more-btn {
	text-align: left;
}
.webhost-details .size-button-show-code.wh-more-btn a:hover {
	background: #3dc0ee;
	color: white !important;
}
.webhost-details h4{
	font-family: "Gotham Bold";
	color: #112952;
}
.wh-tbls table {
	border: 4px solid rgba(137, 229, 122, 0.1) !important;
}
.wh-tbls {
	background: #e9f9fd;
	padding: 20px;
}
.whsubmit-coupon {
	color: #3dc0ee !important;
	font-size: 18px;
}
.fs-18 {
	font-size: 18px;
}
.webhost-details .wh-tbls .size-button-show-code {
	text-align: left;
	text-transform: capitalize;
}
.whalt .row p {
	margin-bottom: 20px;
}
.webhost-details .star_ratings .rate_title{
	display: flex;
}
.webhost-details .star_ratings img {
	position: relative;
	top: -13px;
	margin: 0px auto;
}
.webhost-details .rt-icon{
	width: 50px;
}
.whalt .fa.fa-star {
    letter-spacing: 10px;
    font-size: 20px;
}
/*Webhost Data*/
/* Chrome, Safari, Edge, Opera */
.calc input::-webkit-outer-spin-button,
.calc input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
.calc input[type=number] {
  -moz-appearance: textfield;
}
/*webhosting roundup*/
.people-rev {
	margin: 10px auto;
	display: flex;
}
.people-image {
	/* -ms-flex: 0 0 100px; */
	flex: 0 0 100px;
	margin-right: 20px;
}
.people-image img {
	border-radius: 50%;
}
.people-info h4 {
	margin-top: 20px;
	margin-bottom: 10px;
}
.people-testimonial .txt-bg {
	font-style: italic;
}
/*webhosting roundup*/
li.lang:hover .switcher.notranslate{
	top: 0px !important;
}
li.lang .switcher.notranslate{
	position: absolute;
	top: -25px;
}
.switcher .selected {
    background: none !important;
}
.switcher .selected a:hover {
    background-color: transparent !important;
}
.switcher .option a {
    color: #112952 !important;
    padding: 0 15px 0 10px !important;
    font-weight: 500 !important;
    line-height: 30px !important;
    font-size: 15px !important;
    font-family: BrandonText Regular !important;
}
.post-26585 h1.entry-title {
    font-size: 49px;
}
.pagination-wrapper.section-inner {
    text-align: center;
}
#ui-id-1.ui-menu .ui-menu-item{
	font: 17px/25px BrandonText Regular;
    padding-left: 10px;
}
/*GD to BH table of content*/
.migrategdtobh .bestlistbar ol li::before {
	content: "Step " counter(item) " ";
	width: 5.5em;
}
/*GD to BH table of content*/
/*reverse list*/
.bestlistbar.reversebar ol li::before {
	counter-increment: item -1;
}
.bwebhostforind .bestlistbar.reversebar ol {
	counter-reset: item 13;
}
/*reverse list*/

/* New FAQ */
.wp-faq-schema-items div:last-child {
    border-bottom: none;
}
.wp-faq-schema-items div {
    font: 18px/24px BrandonText Regular;
    letter-spacing: 0.18px !important;
    color: #2B2E34;
    padding-bottom: 1em;
    border-bottom: 1px dashed #112952;
}
.wp-faq-schema-items h3 {
    font: 24px/30px Gotham Bold;
    color: #112952;
    text-transform: capitalize;
    letter-spacing: 0.48px;
    margin-top: 3rem;
}
/* End New FAQ */
.bwh .bestlistbar {
	margin: auto !important;
}


.mt-50{ margin-top:50px;}
.topvps .proslist.feat  {
	columns: 2;
}
.topvps .proslist.feat li {
	margin: 0px !important;
}


img.halfpillfloat, img.half_pill, .related.related-post a img, .entry-content .gridtbl img {
    box-shadow: none;
}
.bwh .bestlistbar {
	margin: auto !important;
}
.tablecontent ol {
	margin-left: 1.7em;
}
.tablecontent li {
	text-indent: -56.5px;
}
.bwh .tablecontent ol{
	margin-bottom: 0px;
}

li.amzon {
    float: right !important;
}
.imgflt img{float:left; box-shadow: none; margin: 0px auto;}
.imgflt {
	display: flex;
}


.underlineanc{text-decoration:underline;}
.migrategdtobh .bestlistbar ol li.tfemail::before {
	content: "Optional " !important;
}

.imgflx{display:flex}

/*Accordian FAQ*/

.panelfaq {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	border: 1px solid transparent;
	margin-bottom: 20px;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.accordionfaq {
	background-color: #eee;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
	font: 20px/20px Gotham Bold;
	color: #112952;
	letter-spacing: 0.48px;
	margin-bottom: 20px;
	display: block;
}
.active, .accordionfaq:hover {
	background-color: #ccc;
}
.accordionfaq:after {
content: '\002B';
	color: #112952;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}
.active:after {
	content: "\2212";
}	

/*Accordian FAQ*/
.wix_v_gd .serverbar, .wixvweeb .serverbar, .bhvsgg  .serverbar, .wvs .serverbar{
text-align: left !important;
}
.wix_v_gd .serverbar h5,.wixvweeb .serverbar h5, .bhvsgg .serverbar h5, .wvs .serverbar h5 {
	margin: 10px 0px 20px !important;
}
.txt-center {
	text-align: center;
}
.winbox.recom  img{
	box-shadow: none;
}
.bwh .winbox.recom .winner {
	width: 100%;
	text-align: center;
}


.serverbar.verdictbox {
	text-align: left;
}


/* Sumo me */
a.powered-by-sumo{border: none !important; background-color: transparent !important;}
.powered-by-sumo p {
    display: none !important;
}
.sumoformtop .sumo-form-wrapper.listbuilder-popup.listbuilder-popup-embedded {
    height: 100% !important;
}
.sumoformbottom .sumo-form-wrapper.listbuilder-popup.listbuilder-popup-embedded {
    height: 100% !important;
}
svg#Layer_1 {
    display: none !important;
}

.sumome-box .winbox, .sumome-box-bottom .winbox {
    border: 7px solid rgba(89, 190, 73, 0.1) !important;
    border-radius: 0 0 0 100px !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    padding: 2em !important;
}
.sumome-box .win-img.col-sm-5, .sumome-box-bottom .win-img.col-sm-5 {
    display: grid !important;
    padding-right: 15px;
    padding-left: 15px;
}
.sumome-box .winbox.recom .winner, .sumome-box-bottom .winbox.recom .winner {
    top: -1em !important;
    left: 2.2em !important;
    padding: 10px 30px !important;
    font: 19px/23px Gotham Bold !important;
    width: auto !important;
}
.sumome-box .winbox .winner, .sumome-box-bottom .winbox .winner {
    position: absolute !important;
    top: -2.5em !important;
    left: 3em !important;
    background-color: #112952 !important;
    color: #fff !important;
    padding: 10px 35px !important;
    font: 25px/23px Gotham Bold !important;
    clip-path: polygon(50% 0%, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%, 0 0) !important;
}
/*.win-img.col-sm-5 a, .win-img.col-sm-5 img {
    margin: auto !important;
    box-shadow: none;
}*/
.sumome-box-bottom .win-img.col-sm-5 {
    width: inherit;
}
.sumoformbottom .sumome-box .win-img.col-sm-5 {
    width: inherit;
}
.sumome-box .winbox .win-txt, .sumome-box-bottom .winbox .win-txt {
    font: 18px/24px BrandonText Regular !important;
    letter-spacing: 0.18px !important;
    color: rgba(43, 46, 52, 1) !important;
    padding-right: 15px;
    padding-left: 15px;
}
.sumome-box .winbox .win-txt h4, .sumome-box-bottom .winbox .win-txt h4 {
    margin-top: 1em !important;
    font-size: 3.2rem;
    margin-bottom: 4.5rem;
    color: #112952;
    font-family: "Gotham Bold" !important;
}
.sumome-box .winbox .win-txt h4 a, .sumome-box-bottom .winbox .win-txt h4 a{
	font-family: "Gotham Bold" !important;
}
.sumoformtop .sumo-form-wrapper.listbuilder-popup.listbuilder-popup-embedded ,
.sumoformbottom .sumo-form-wrapper.listbuilder-popup.listbuilder-popup-embedded {
    background: #fff !important;
    margin-top: 2em !important;
}
.single .size-button-show-code .button-show-code-orng, .button-show-code-orng {
    text-decoration: none !important;
    color: #3dc0ee !important;
    border: 2px solid #3dc0ee !important;
    padding: 8px 20px !important;
    line-height: 4em !important;
    font-family: "BrandonText Bold" !important;
}
@media (min-width: 280px) and (max-width: 990px){
	.sumome-box .winbox.recom, .sumome-box-bottom .winbox.recom{display: inherit !important;}
	.sumome-box .winbox.recom img, .sumome-box-bottom .winbox.recom img{margin-bottom: 3em !important;margin-top: 1em !important;}
	.sumo-form-wrapper.listbuilder-popup.listbuilder-popup-embedded{height: 420px !important; }
	.sumoformbottom .sumo-form-wrapper.listbuilder-popup.listbuilder-popup-embedded{height: 500px !important; }
	.winbox .win-txt h4{margin-bottom: 2.5rem !important;}
    .custom-banner .sumo-form-wrapper.listbuilder-popup.listbuilder-popup-embedded {height: auto !important;}
}
</style>



.post-7764 .entry-content .hwreview,
.post-13580 .entry-content .drupal {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 12px 0px;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    border-radius: 15px;
    padding: 20px;
}

.post-7764 .entry-content img,
.post-13580 .entry-content img{
	-webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    -o-transition: transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    visibility: visible !important;
    opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 12px 0px;
}

.post-7764 .entry-content img:hover,
.post-13580 .entry-content img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.alluser_reviews .user-review {
    /*box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 12px 0px;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;*/
}
.user-review img {
    box-shadow: none !important;
}

/*New Design*/
.single-post .post-16377 .entry-content .errorguide302,
.single-post .post-13580 .entry-content .drupal-inner,
.single-post .post-18240 .entry-content .freeportfoliosite, 
.single-post .post-23193 .entry-content .mochahostrev, 
.single-post .post-30759 .entry-content .webflowvswp, 
.single-post .post-15232 .entry-content .redirect301, 
.single-post .post-15555 .entry-content .unauthorized401, 
.single-post .post-16467 .entry-content .errorsolution404, 
.single-post .post-21136 .entry-content .bpng, 
.single-post .post-13154 .entry-content .bmw, 
.single-post .post-19828 .entry-content .bvideohostingsite, 
.single-post .post-12420 .entry-content .bdg, 
.single-post .post-16827 .entry-content .bemailmarketing, 
.single-post .post-14981 .entry-content .best_resellerh, 
.single-post .post-11470 .entry-content .eplatforms, 
.single-post .post-19829 .entry-content .bfreeblogsite, 
.single-post .post-3210 .entry-content .bwbheard,
.single-post .post-31653 .entry-content .bmanagedwp,
.single-post .post-27564 .entry-content .bwebhostforind,
.single-post .post-27697 .entry-content .bwebcanada,
.single-post .post-27893 .entry-content .bwebaus,
.single-post .post-25235 .entry-content .ecomhostingprov,
.single-post .post-25534 .entry-content .bestvpshosting,
.single-post .post-11234 .entry-content .bstjmlhs,
.single-post .post-8831 .entry-content .cloudhp,
.single-post .post-8081 .entry-content .topvps,
.single-post .post-17486 .entry-content .bsocialmediatools,
.single-post .post-3017 .entry-content .godaddy-alternatives,
.single-post .post-10928 .entry-content .bwbsb,
.single-post .post-15378 .entry-content .best-wpb,
.single-post .post-17784 .themeswordpress,
.single-post .post-17747 .mustpluginswp,
.single-post .post-17698 .burlshortners,
.single-post .post-17628 .bestlivechatsw,
.single-post .post-16676 .pdesign,
.single-post .post-2596 .e-tools,
.single-post .post-10705 .phbuilder,
.single-post .post-15847 .webuildermacos,
.single-post .post-9593 .dnameg,
.single-post .post-11124 .bstjava,
.single-post .post-9098 .bstwsbuilder,
.single-post .post-9202 .bestaspnet,
.single-post .post-6075 .sp-alternatives {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 12px 0px;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    border-radius: 15px;
    padding: 20px;	
}
.single-post .post-16377 .post-inner-clip,
.single-post .post-13580 .post-inner-clip,
.single-post .post-18240 .post-inner-clip, 
.single-post .post-23193 .post-inner-clip,
.single-post .post-30759 .post-inner-clip,
.single-post .post-15232 .post-inner-clip, 
.single-post .post-15555 .post-inner-clip, 
.single-post .post-16467 .post-inner-clip, 
.single-post .post-21136 .post-inner-clip, 
.single-post .post-13154 .post-inner-clip, 
.single-post .post-19828 .post-inner-clip, 
.single-post .post-12420 .post-inner-clip, 
.single-post .post-16827 .post-inner-clip, 
.single-post .post-14981 .post-inner-clip, 
.single-post .post-11470 .post-inner-clip, 
.single-post .post-19829 .post-inner-clip, 
.single-post .post-3210 .post-inner-clip,
.single-post .post-31653 .post-inner-clip,
.single-post .post-27564 .post-inner-clip,
.single-post .post-27697 .post-inner-clip,
.single-post .post-27893 .post-inner-clip,
.single-post .post-25235 .post-inner-clip,
.single-post .post-25534 .post-inner-clip,
.single-post .post-11234 .post-inner-clip,
.single-post .post-8831 .post-inner-clip,
.single-post .post-8081 .post-inner-clip,
.single-post .post-17486 .post-inner-clip,
.single-post .post-3017 .post-inner-clip,
.single-post .post-10928 .post-inner-clip,
.single-post .post-15378 .post-inner-clip,
.single-post .post-17784 .post-inner-clip,
.single-post .post-17747 .post-inner-clip,
.single-post .post-17698 .post-inner-clip,
.single-post .post-17628 .post-inner-clip,
.single-post .post-16676 .post-inner-clip,
.single-post .post-2596 .post-inner-clip,
.single-post .post-10705 .post-inner-clip,
.single-post .post-15847 .post-inner-clip,
.single-post .post-9593 .post-inner-clip,
.single-post .post-9593 .post-inner-clip,
.single-post .post-11124 .post-inner-clip,
.single-post .post-9098 .post-inner-clip,
.single-post .post-9202 .post-inner-clip,
.single-post .post-6075 .post-inner-clip {
    background-image: linear-gradient(rgb(57, 58, 61), rgb(57, 58, 61)) !important;
	background-size: auto !important;
	background-position: 50% 50% !important;
	background-attachment: scroll !important;
	background-repeat: no-repeat !important;

	clip-path: url(#clip-top-a1a01cf8f709a8);
	-webkit-clip-path: url(#clip-top-a1a01cf8f709a8);
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: -1;
}
.post-16377 .entry-content img,
.post-13580 .entry-content img, img.hoverenlg,
.post-18240 .entry-content img,
.post-23193 .entry-content img,
.post-30759 .entry-content img,
.post-15232 .entry-content img,
.post-15555 .entry-content img,
.post-16467 .entry-content img, 
.post-21136 .entry-content img, 
.post-13154 .entry-content img, 
.post-19828 .entry-content img, 
.post-12420 .entry-content img, 
.post-16827 .entry-content img, 
.post-14981 .entry-content img, 
.post-11470 .entry-content img, 
.post-19829 .entry-content img, 
.post-3210 .entry-content img,
.post-31653 .entry-content img,
.post-27564 .entry-content img,
.post-27697 .entry-content img,
.post-27893 .entry-content img,
.post-25235 .entry-content img,
.post-25534 .entry-content img,
.post-11234 .entry-content img,
.post-8831 .entry-content img,
.post-8081 .entry-content img,
.post-17486 .entry-content img,
.post-3017 .entry-content img,
.post-10928 .entry-content img,
.post-15378 .entry-content img,
.post-17784 .entry-content img,
.post-17747 .entry-content img,
.post-17698 .entry-content img,
.post-17628 .entry-content img,
.post-16676 .entry-content img,
.post-2596 .entry-content img,
.post-10705 .entry-content img,
.post-15847 .entry-content img,
.post-9593 .entry-content img,
.post-9593 .entry-content img,
.post-11124 .entry-content img,
.post-9098 .entry-content img,
.post-9202 .entry-content img,
.post-6075 .entry-content img {
	-webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    -o-transition: transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    visibility: visible !important;
    opacity: 1;
	 box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 12px 0px;
}

.post-16377 .entry-content img:hover,
.post-13580 .entry-content img:hover, img.hoverenlg:hover,
.post-18240 .entry-content img:hover,
.post-23193 .entry-content img:hover,
.post-30759 .entry-content img:hover,
.post-15232 .entry-content img:hover,
.post-15555 .entry-content img:hover,
.post-16467 .entry-content img:hover, 
.post-21136 .entry-content img:hover, 
.post-13154 .entry-content img:hover, 
.post-19828 .entry-content img:hover, 
.post-12420 .entry-content img:hover, 
.post-16827 .entry-content img:hover, 
.post-14981 .entry-content img:hover, 
.post-11470 .entry-content img:hover, 
.post-19829 .entry-content img:hover, 
.post-3210 .entry-content img:hover,
.post-31653 .entry-content img:hover,
.post-27564 .entry-content img:hover,
.post-27697 .entry-content img:hover,
.post-27893 .entry-content img:hover,
.post-25235 .entry-content img:hover,
.post-25534 .entry-content img:hover,
.post-11234 .entry-content img:hover,
.post-8831 .entry-content img:hover,
.post-8081 .entry-content img:hover,
.post-17486 .entry-content img:hover,
.post-3017 .entry-content img:hover,
.post-10928 .entry-content img:hover,
.post-15378 .entry-content img:hover,
.post-17784 .entry-content img:hover,
.post-17747 .entry-content img:hover,
.post-17698 .entry-content img:hover,
.post-17628 .entry-content img:hover,
.post-16676 .entry-content img:hover,
.post-2596 .entry-content img:hover,
.post-10705 .entry-content img:hover,
.post-15847 .entry-content img:hover,
.post-9593 .entry-content img:hover,
.post-9593 .entry-content img:hover,
.post-11124 .entry-content img:hover,
.post-9098 .entry-content img:hover,
.post-9202 .entry-content img:hover,
.post-6075 .entry-content img:hover
 {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.single-post .post-16377 .post-inner.thin,
.single-post .post-13580 .post-inner.thin,
.single-post .post-18240 .post-inner.thin,
.single-post .post-23193 .post-inner.thin,
.single-post .post-30759 .post-inner.thin,
.single-post .post-15232 .post-inner.thin,
.single-post .post-15555 .post-inner.thin,
.single-post .post-16467 .post-inner.thin, 
.single-post .post-21136 .post-inner.thin, 
.single-post .post-13154 .post-inner.thin, 
.single-post .post-19828 .post-inner.thin, 
.single-post .post-12420 .post-inner.thin, 
.single-post .post-16827 .post-inner.thin, 
.single-post .post-14981 .post-inner.thin, 
.single-post .post-11470 .post-inner.thin, 
.single-post .post-19829 .post-inner.thin, 
.single-post .post-3210 .post-inner.thin,
.single-post .post-31653 .post-inner.thin,
.single-post .post-27564 .post-inner.thin,
.single-post .post-27697 .post-inner.thin,
.single-post .post-27893 .post-inner.thin,
.single-post .post-25235 .post-inner.thin,
.single-post .post-25534 .post-inner.thin,
.single-post .post-11234 .post-inner.thin,
.single-post .post-8831 .post-inner.thin,
.single-post .post-8081 .post-inner.thin,
.single-post .post-17486 .post-inner.thin,
.single-post .post-3017 .post-inner.thin,
.single-post .post-10928 .post-inner.thin,
.single-post .post-15378 .post-inner.thin,
.single-post .post-17784 .post-inner.thin,
.single-post .post-17747 .post-inner.thin,
.single-post .post-17698 .post-inner.thin,
.single-post .post-17628 .post-inner.thin,
.single-post .post-16676 .post-inner.thin,
.single-post .post-2596 .post-inner.thin,
.single-post .post-10705 .post-inner.thin,
.single-post .post-15847 .post-inner.thin,
.single-post .post-9593 .post-inner.thin,
.single-post .post-9593 .post-inner.thin,
.single-post .post-11124 .post-inner.thin,
.single-post .post-9098 .post-inner.thin,
.single-post .post-9202 .post-inner.thin,
.single-post .post-6075 .post-inner.thin
{
	padding-top: 20px;
	/*padding-bottom: 20px;*/
}
.postid-18240 img.halfpillfloat, .postid-18240 .bestbar img,  .postid-16467 .bestlistbar img, 
.postid-23193 img.halfpillfloat, .postid-23193 .bestbar img,
.postid-30759 img.halfpillfloat, .postid-30759 .bestbar img,
.post-21136 img.halfpillfloat, 
.post-13154 img.halfpillfloat, 
.post-19828 img.halfpillfloat, 
.post-12420 img.halfpillfloat, 
.post-16827 img.halfpillfloat, 
.post-14981 img.halfpillfloat, 
.post-11470 img.halfpillfloat, 
.post-19829 img.halfpillfloat, 
.post-3210 img.halfpillfloat,
.post-9593 img.halfpillfloat,
.post-11124 img.halfpillfloat,
.post-9098 img.halfpillfloat,
.post-9202 img.halfpillfloat,
.post-6075 img.halfpillfloat,
.post-21136 .bestbar img, 
.post-13154 .bestbar img, 
.post-19828 .bestbar img, 
.post-12420 .bestbar img, 
.post-16827 .bestbar img, 
.post-14981 .bestbar img, 
.post-11470 .bestbar img, 
.post-19829 .bestbar img, 
.post-3210 .bestbar img,
.post-9593 .bestbar img,
.post-11124 .bestbar img,
.post-9098 .bestbar img,
.post-9202 .bestbar img,
.post-6075 .bestbar img,
.post-31653 img.halfpillfloat,
.post-27564 img.halfpillfloat,
.post-27697 img.halfpillfloat,
.post-27893 img.halfpillfloat,
.post-25235 img.halfpillfloat,
.post-25534 img.halfpillfloat,
.post-11234 img.halfpillfloat,
.post-31653 .bestbar img,
.post-27564 .bestbar img,
.post-27697 .bestbar img,
.post-27893 .bestbar img,
.post-25235 .bestbar img,
.post-25534 .bestbar img,
.post-11234 .bestbar img,
.post-8831 img.halfpillfloat,
.post-8081 img.halfpillfloat,
.post-17486 img.halfpillfloat,
.post-3017 img.halfpillfloat,
.post-10928 img.halfpillfloat,
.post-15378 img.halfpillfloat,
.post-8831 .bestbar img,
.post-8081 .bestbar img,
.post-17486 .bestbar img,
.post-3017 .bestbar img,
.post-10928 .bestbar img,
.post-15378 .bestbar img,
.post-17784 img.halfpillfloat,
.post-17747 img.halfpillfloat,
.post-17698 img.halfpillfloat,
.post-17628 img.halfpillfloat,
.post-16676 img.halfpillfloat,
.post-2596 img.halfpillfloat,
.post-10705 img.halfpillfloat,
.post-15847 img.halfpillfloat,
.post-9593 img.halfpillfloat,
.post-17784 .bestbar img,
.post-17747 .bestbar img,
.post-17698 .bestbar img,
.post-17628 .bestbar img,
.post-16676 .bestbar img,
.post-2596 .bestbar img,
.post-10705 .bestbar img,
.post-15847 .bestbar img,
.post-9593 .bestbar img {
    box-shadow: none !important;
}

.post-13580 .entry-content.related-post {
    display: none;
}

body.postid-16377, .postid-16377 #site-header.sticky,
body.postid-13580, .postid-13580 #site-header.sticky,
body.postid-15232, .postid-15232 #site-header.sticky,
body.postid-15555, .postid-15555 #site-header.sticky,
body.postid-16467, .postid-16467 #site-header.sticky	{
    width: 100% !important;
}
.post-16377 .entry-content.related-post,
.post-18240 .entry-content.related-post,
.post-23193 .entry-content.related-post,
.post-30759 .entry-content.related-post,
.post-15232 .entry-content.related-post,
.post-15555 .entry-content.related-post,
.post-16467 .entry-content.related-post,
.post-21136 .entry-content.related-post, 
.post-13154 .entry-content.related-post, 
.post-19828 .entry-content.related-post, 
.post-12420 .entry-content.related-post, 
.post-16827 .entry-content.related-post, 
.post-14981 .entry-content.related-post, 
.post-11470 .entry-content.related-post, 
.post-19829 .entry-content.related-post, 
.post-3210 .entry-content.related-post,
.post-31653 .entry-content.related-post,
.post-27564 .entry-content.related-post,
.post-27697 .entry-content.related-post,
.post-27893 .entry-content.related-post,
.post-25235 .entry-content.related-post,
.post-25534 .entry-content.related-post,
.post-11234 .entry-content.related-post,
.post-8831 .entry-content.related-post,
.post-8081 .entry-content.related-post,
.post-17486 .entry-content.related-post,
.post-3017 .entry-content.related-post,
.post-10928 .entry-content.related-post,
.post-15378 .entry-content.related-post,
.post-17784 .entry-content.related-post,
.post-17747 .entry-content.related-post,
.post-17698 .entry-content.related-post,
.post-17628 .entry-content.related-post,
.post-16676 .entry-content.related-post,
.post-2596 .entry-content.related-post,
.post-10705 .entry-content.related-post,
.post-15847 .entry-content.related-post,
.post-9593 .entry-content.related-post,
.post-9593 .entry-content.related-post,
.post-11124 .entry-content.related-post,
.post-9098 .entry-content.related-post,
.post-9202 .entry-content.related-post,
.post-6075 .entry-content.related-post {
    max-width: 72rem;
    width: calc(100% - 4rem);
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 12px 0px;
	background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) !important;
	background-size: auto !important;
	background-position: 50% 50% !important;
	background-attachment: scroll !important;
	background-repeat: no-repeat !important;
	padding: 20px 0 20px 20px;
}
.post-16467 .entry-content.related-post{
	padding: 0px !important;
}
.postid-16377 .header-inner.section-inner,
.postid-15232 .header-inner.section-inner,
.postid-15555 .header-inner.section-inner,
.postid-16467 .header-inner.section-inner {
    width: 80%;
}

.postid-16377 #site-header.sticky,
.postid-15232 #site-header.sticky,
.postid-15555 #site-header.sticky,
.postid-16467 #site-header.sticky {
    z-index: 999;
    background-color: #fff !important;
}
.postid-16377 #site-header.sticky ul.ruby-menu > li > a, 
.postid-15232 #site-header.sticky ul.ruby-menu > li > a, 
.postid-15555 #site-header.sticky ul.ruby-menu > li > a, 
.postid-16467 #site-header.sticky ul.ruby-menu > li > a
{
    color: #112952 !important; 
}
.postid-16377 #site-header.sticky .search-toggle,
.postid-15232 #site-header.sticky .search-toggle,
.postid-15555 #site-header.sticky .search-toggle,
.postid-16467 #site-header.sticky .search-toggle
{
    color: #112952 !important;
}
.postid-16377 .entry-content.srf,  
.postid-15232 .entry-content.srf,  
.postid-15555 .entry-content.srf,  
.postid-16467 .entry-content.srf
 {
    background-color: #fff !important;
    margin-top: 25px !important;
    padding-top: 25px !important;
}

.sumome-box .win-txt.col-sm-7 p {
	margin-bottom: 20px;
}
.table-responsive {
	margin-bottom: 20px;
}
.planstable.table {
	margin-bottom: 0px;
}
.category .post-inner-clip, .search .post-inner-clip{
    background: none !important;
}

/*Related Posts BG*/
.post-16377  .entry-content.related-post,
.post-18240  .entry-content.related-post,
.post-30759  .entry-content.related-post,
.post-15232  .entry-content.related-post,
.post-15555  .entry-content.related-post,
.post-16467  .entry-content.related-post,
.post-21136 .entry-content.related-post, 
.post-13154 .entry-content.related-post, 
.post-19828 .entry-content.related-post, 
.post-12420 .entry-content.related-post, 
.post-16827 .entry-content.related-post, 
.post-14981 .entry-content.related-post, 
.post-11470 .entry-content.related-post, 
.post-19829 .entry-content.related-post, 
.post-3210 .entry-content.related-post,
.post-31653 .entry-content.related-post,
.post-27564 .entry-content.related-post,
.post-27697 .entry-content.related-post,
.post-27893 .entry-content.related-post,
.post-25235 .entry-content.related-post,
.post-25534 .entry-content.related-post,
.post-11234 .entry-content.related-post,
.post-8831 .entry-content.related-post,
.post-8081 .entry-content.related-post,
.post-17486 .entry-content.related-post,
.post-3017 .entry-content.related-post,
.post-10928 .entry-content.related-post,
.post-15378 .entry-content.related-post,
.post-17784 .entry-content.related-post,
.post-17747 .entry-content.related-post,
.post-17698 .entry-content.related-post,
.post-17628 .entry-content.related-post,
.post-16676 .entry-content.related-post,
.post-2596 .entry-content.related-post,
.post-10705 .entry-content.related-post,
.post-15847 .entry-content.related-post,
.post-9593 .entry-content.related-post,
.post-9593 .entry-content.related-post,
.post-11124 .entry-content.related-post,
.post-9098 .entry-content.related-post,
.post-9202 .entry-content.related-post,
.post-6075 .entry-content.related-post
  {
	background: white;
	max-width: 100%;
	margin-top: -50px;
	width: 100%;
	margin-top: 30px;
}
.post-16377  .entry-content.related-post .relatedposts.posts,
.post-18240  .entry-content.related-post .relatedposts.posts,
.post-23193  .entry-content.related-post .relatedposts.posts,
.post-30759  .entry-content.related-post .relatedposts.posts,
.post-15232  .entry-content.related-post .relatedposts.posts,
.post-15555  .entry-content.related-post .relatedposts.posts,
.post-16467  .entry-content.related-post .relatedposts.posts,
.post-21136 .entry-content.related-post .relatedposts.posts, 
.post-13154 .entry-content.related-post .relatedposts.posts, 
.post-19828 .entry-content.related-post .relatedposts.posts, 
.post-12420 .entry-content.related-post .relatedposts.posts, 
.post-16827 .entry-content.related-post .relatedposts.posts, 
.post-14981 .entry-content.related-post .relatedposts.posts, 
.post-11470 .entry-content.related-post .relatedposts.posts, 
.post-19829 .entry-content.related-post .relatedposts.posts, 
.post-3210 .entry-content.related-post .relatedposts.posts,
.post-31653 .entry-content.related-post .relatedposts.posts,
.post-27564 .entry-content.related-post .relatedposts.posts,
.post-27697 .entry-content.related-post .relatedposts.posts,
.post-27893 .entry-content.related-post .relatedposts.posts,
.post-25235 .entry-content.related-post .relatedposts.posts,
.post-25534 .entry-content.related-post .relatedposts.posts,
.post-11234 .entry-content.related-post .relatedposts.posts,
.post-8831 .entry-content.related-post .relatedposts.posts,
.post-8081 .entry-content.related-post .relatedposts.posts,
.post-17486 .entry-content.related-post .relatedposts.posts,
.post-3017 .entry-content.related-post .relatedposts.posts,
.post-10928 .entry-content.related-post .relatedposts.posts,
.post-15378 .entry-content.related-post .relatedposts.posts,
.post-17784 .entry-content.related-post .relatedposts.posts,
.post-17747 .entry-content.related-post .relatedposts.posts,
.post-17698 .entry-content.related-post .relatedposts.posts,
.post-17628 .entry-content.related-post .relatedposts.posts,
.post-16676 .entry-content.related-post .relatedposts.posts,
.post-2596 .entry-content.related-post .relatedposts.posts,
.post-10705 .entry-content.related-post .relatedposts.posts,
.post-15847 .entry-content.related-post .relatedposts.posts,
.post-9593 .entry-content.related-post .relatedposts.posts,
.post-9593 .entry-content.related-post .relatedposts.posts,
.post-11124 .entry-content.related-post .relatedposts.posts,
.post-9098 .entry-content.related-post .relatedposts.posts,
.post-9202 .entry-content.related-post .relatedposts.posts,
.post-6075 .entry-content.related-post .relatedposts.posts
 {
	margin: 0 auto;
}
/*Related Posts BG*/


/* 403-forbidden-error */
.postid-12393 header#site-header, .postid-12393 .footer-nav-widgets-wrapper.header-footer-group,
.postid-19876 header#site-header, .postid-19876 .footer-nav-widgets-wrapper.header-footer-group,
.postid-2997 header#site-header, .postid-2997 .footer-nav-widgets-wrapper.header-footer-group {
    background-color: #333;
}
.postid-12393 header.entry-header.header-footer-group,
.postid-19876 header.entry-header.header-footer-group,
.postid-2997 header.entry-header.header-footer-group {
    background-color: #262626 !important;
}
.postid-12393 h1.entry-title, .postid-12393 h2, .postid-12393 .disclosure .txt-bg, .postid-12393 h4,
.postid-19876 h1.entry-title, .postid-19876 h2, .postid-19876 .txt-bg, .postid-19876 h4, .postid-19876 ul li, .postid-19876 h3,
.postid-2997 h1.entry-title, .postid-2997 h2, .postid-2997 .txt-bg, .postid-2997 h4, .postid-2997 ul li, .postid-2997 h3{
    color: #fff;
}
.postid-12393 span.author-date-details,
.postid-19876 span.author-date-details,
.postid-2997 span.author-date-details {
    color: #fff;
}
body.postid-12393,
body.postid-19876,
body.postid-2997 {
    background-color: #262626 !important;
    color: #fff !important;
}
.postid-12393 .alluser_reviews .user-review,
.postid-19876 .alluser_reviews .user-review,
.postid-2997 .alluser_reviews .user-review {
    background-color: #333 !important;
}
.postid-12393 .user-review a,
.postid-19876 .user-review a,
.postid-2997 .user-review a  {
    color: #fff !important;
}
.postid-12393 a.normal, .postid-19876 a.normal, .postid-2997 a.normal{
	color: #3dc0ee !important;
}
.postid-12393 .proslist li, .postid-12393 .conslist li, .postid-12393 .works li, .postid-19876 .works li,
.postid-2997 .proslist li, .postid-2997 .conslist li, .postid-2997 .works li{
	color: #fff !important;
}
.postid-12393 .bestlistbar, .postid-19876 .bestlistbar, .postid-2997 .bestlistbar{
	background-color: #fff;
}
/* 403-forbidden-error */

.post-8632 ol p {
	margin: 1.5rem 0 0 1rem;
}
.postid-3017 .size-button-show-code.bhbtn a.button-show-code-orng {
	width: 50% !important;
	display: inline-block;
	line-height: initial !important;
	background: #3dc0ee !important;
	color: white !important;
	margin: 20px 0px;
}
.coupnot {
	background-color: #7fb951;
	font-size: 12px;
	padding: 1px 7px;
	border-radius: 20px;
	margin: 0 0 0 6px;
	font-weight: 900;
}


/*  Hosting Coupons */
#hot-coupons {
    max-width: 915px;
    max-width: 92rem;
}
.coupon.coupon-code {
	cursor: pointer;
}

.bhcoupons .coupons, .dhcoupon .coupons, .hscoupon .coupons {
    display: flex;
    margin-bottom: 20px;
}

.bhcoupons .coupons img, .dhcoupon .coupons img, .hscoupon .coupons img{
  margin-top: 0 !important;
}


.search .col-sm-12.infobtn, .archive.category .infobtn {
    display: none;
}
#wp-admin-bar-root-default li a {
    color: white !important;
}
.fiverrrev figcaption {
    text-align: center;
}
.fiverrrev figcaption a {
	color: #6d6d6d !important;
}
.fiverrrev figure {
	width: auto !important;
}
.fiverrrev blockquote {
    font-size: 20px;
    font-style: italic;
    padding: 0.35em 40px;
    line-height: 1.45;
    position: relative;
    color: #383838;
    border-color: transparent;
}

.fiverrrev blockquote:before {
    display: block;
    padding-left: 10px;
    content: "\201C";
    font-size: 80px;
    position: absolute;
    left: -20px;
    top: -20px;
    color: #7a7a7a;
}

.fiverrrev blockquote cite {
    color: #999999;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}
 
.fiverrrev blockquote cite:before {
    content: "\2014 \2009";
}


.coupon-code-box.serverbar {
    padding: 2em;
    text-align: left;
}
.coupon-code-box.serverbar .head-title{
    margin-bottom: 15px;
    font-family: 'BrandonText Bold';
}
.coupon-code-box.serverbar img {
    box-shadow: none;
    margin-top: 0 !important;
}

/* coupon code */
.sumome-advanced-form .row {
    margin-right: -15px !important;
    margin-left: -15px !important;
}
.sumome-advanced-form span.offer {
    color: #112952 !important;
    font-style: normal;
    font-weight: 700;
}
.sumome-advanced-form .col-sm-12 {
    width: 100% !important;
    position: relative !important;
    min-height: 1px;
    padding-right: 15px !important;
    padding-left: 15px !important;
    float: left !important;
}
.sumome-advanced-form .col-sm-5 {
    width: 41.66666667% !important;
    position: relative !important;
    min-height: 1px;
    padding-right: 15px !important;
    padding-left: 15px !important;
    float: left !important;
}
.sumome-advanced-form .col-sm-7 {
    width: 58.33333333% !important;
    position: relative !important;
    min-height: 1px;
    padding-right: 15px !important;
    padding-left: 15px !important;
    float: left !important;
}
.sumome-advanced-form .coupon-code-box.serverbar {
    min-height: 330px;
    padding: 1.9em !important;
}
.sumome-advanced-form em {
    font-size: 2rem !important;
    line-height: 1.5 !important;
    font-style: italic !important;
}
.sumome-advanced-form .head-title.col-sm-12{
    font-size: 2rem;.
}
/* Coupon code */

.post-17247 ol#table-of-content {
    height: 480px;
    overflow-x: auto;
}


div#secondary {
    float: left;
    width: 15%;
    position: absolute;
    left: 5%;
}