/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Color
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

     
/* Font Usae */

	 
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
 html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
		font-family:var(--default-font-family);
		overflow-x:hidden;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
a{
    outline:none;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
	font-family:var(--default-font-family);
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
	:root{
		  --main-color:var(--primary-color);
		   --main-text-color:var(--text-color);
		  --alt-text-color: #2B2F3E;
		   --alt-border-color: #e1e1e1;
		   --default-font-family: 'Prompt', sans-serif;
		   --default-font-family-medium:'Prompt', sans-serif;
		   --alt-font-family: 'Italiana', serif;
         

		}
/* gutter
--------------------------------------------- */
.g-6, .gx-6 {
    --bs-gutter-x: 2rem;
}
.g-8, .gx-8 {
    --bs-gutter-x: 3.118rem;
}
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: var(--main-text-color);
	font-size: 18px;
	line-height: 1.5;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    margin-bottom:1.5rem;
    font-family:var(--alt-font-family);
}
h1{
    font-size: 56px;
    line-height: 64px;
    font-weight: 700;
    color:var(--main-text-color);
    
}
h2 {
	font-size: calc(1.3em + 1vw);
	line-height: calc(1.8rem + 1vw);
	font-weight: 700;
	color: var(--main-text-color);
}
h3{
    font-size: 32px;
    line-height: 44px;
    font-weight: 700;
    color: var(--main-text-color);
}
h4{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--main-text-color);
}
h5{
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: var(--main-text-color);
}
h5{
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var(--main-text-color);
}
h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--main-text-color);
}
p{
    font-size: 18px;
    font-weight: 400;
    color: var(--main-text-color);
	margin-bottom: 1.5em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
	font-style:italic;
	font-weight:600;
}

pre {
	background: #eee;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}


code {
    color: #1e1e1e;
    background: #f0f0f0;
    font-family: Menlo,Consolas,monaco,monospace;
    font-size: 14px;
}
abbr,
acronym {
	border-bottom: 1px dotted #2B2F3E;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
ul > li, ol > li, dl > li {
    margin-bottom: 0.5rem;
}
ol ul, ul ul {
	list-style-type: circle;
	margin: 0;
	padding-left: 20px;
}
ol ol, ul ol {
	list-style-type: lower-latin;
	margin: 0;
	padding-left: 20px;
}
dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}
label{
    font-size:1rem;
}
/* Links
--------------------------------------------- */
a {
	color: var(--link-color);
	text-decoration: none;
}

a:hover{
    color: #FF9515;
}
a:active {
	color: var(--link-color);
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: var(--main-color);
	background: var(--main-color);
	color: #fff;
	min-height: 37px;
	box-shadow: 0px 0px 0px rgb(0 149 21 / 0%);
	border-radius: 0;
	font-size: 16px;
	font-family: 'Prompt';

}
#commentform input[type="submit"]{
	margin-top: 20px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #e6e6e6;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #e6e6e6;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea{
    color: #2B2F3E;
    border: 1px solid var(--light-color);
    padding: 10px 24px;
    font-size: 16px;
    outline: none;
    min-height: 52px;
    width: 100%;
    background: var(--light-color);
    margin-bottom: 12px;
    border-radius: 0px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}
::placeholder{
    opacity:.6;
}

select,
.select2-container--default .select2-selection--single{
    border: 1px solid var(--light-color);
    	color: #2B2F3E;
    min-height: 42px;
    padding: 10px;
    border-radius:0;
    	outline:none;
    	background:var(--light-color);
    	    font-size: 1rem;
    line-height: 1.5;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top:27%;
}
textarea {
	width: 100%;
	min-height: 300px;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */


.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}


.updated:not(.published) {
	display: none;
}

.page-content,
.post-content,
.post-summary {
	margin: 1em 0 0;
}
.post-content {
	font-size: 18px;
	font-weight: normal;
	color: var(--main-text-color);
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.status-publish.sticky{
	position: relative;
}
.sticky-post-label{
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    line-height: 24px;
}
.has-post-thumbnail.sticky .post-title{
    padding-top:0px;
}
.post-meta span {
	margin-right: 7px;
}
.post-meta ul{
    margin:0;
    padding:0;
    list-style:none;
    
}
.uroan_default_blog .post-meta{
      border-bottom: 1px solid #efebeb;
    padding-bottom: 15px;
}
.post-meta{
    width:100%;
    float:left;
    margin-bottom:0;
}
.post-meta ul li{
    float:left;
  font-size:17px
}
.post-meta ul li i{
  vertical-align:middle;
  color: var(--main-color);
  font-size:20px;
}
.post-meta ul li a{
  color:#2B2F3E;
}
.uroan_post_thumbnail_inner{
  overflow:hidden;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.uroan_post_thumbnail img,
.list-post-image img{
      -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    overflow: hidden;
    border-radius: 4px;
}
.uroan_post_thumbnail_inner:hover img,
.uroan_default_blog:hover .uroan_post_thumbnail_inner img,
.sidebar-post-list-item:hover .uroan_post_thumbnail_inner img{
   transform: scale(1.1);
}
/* Comments
--------------------------------------------- */
#comments p{
    margin-bottom:0px;
}
#comments .comment-form-cookies-consent{
    margin-bottom:20px;
}
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}
.comment-author-title{
       font-weight: 700;
    font-size: 21px;
    line-height: 28px;
    text-transform: capitalize;
    font-style: normal;
    	font-family:var(--alt-font-family);
    	margin-bottom:0;
}
.comment-metadata{
    opacity:.7;
        margin-bottom:4px;
       font-weight: 400;
font-size: 18px;
}
.search-form .theme-input{
	width: 100%;
	border: 0;
	outline: 0;
	padding: 5px 24px;
	background-color: var(--light-color);
	border-radius: 0;
	min-height: 52px;
}
	/* Widgets
    --------------------------------------------- */
/*.widget {*/
/*	margin: 0 0 40px;*/
/*	background: #FFFFFF;*/
/*box-shadow: 0px 15px 45px -5px rgba(0, 0, 0, 0.08);*/
/*border-radius: 8px;*/
/* padding: 32px;*/
/*}*/
.widget .widget {
  padding: 0px;
  margin:0;
}
.widget h2.widget-title,
.widget_block .wp-block-group__inner-container h2,
.widgettitle{
	    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #2B2F3E;
	margin-bottom: 42px;
    position: relative;
font-family: Prompt;
        line-height: 28px;
}
.widget h2.widget-title:before,
.widget_block .wp-block-group__inner-container h2:before,
.widgettitle:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -15px;
	width: 50px;
	height: 1px;
	background-color: var(--primary-color);
}

/*.widget h2.widget-title:after,*/
/*.widget_block .wp-block-group__inner-container h2:after,*/
/*.widgettitle:after{*/
/*       content: "";*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    display: inline-block;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    background-color: #F0F1F5;*/
/*    left: 0;*/
/*    z-index: 1;*/
/*}*/
.widget{
	margin-bottom: 40px;
}
.widget ul {
	padding-left: 0px;
	margin: 0;
}
.widget ul ul {
	padding-left: 20px;
}
.widget ul li {
	list-style: none;
	font-size: 13px;
	font-weight: normal;
	color: #7a7a7a;
	    margin-bottom: 18px;
}
.widget ul li a {
	text-decoration: none;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 400;
	color: #2B2F3E;
}
.widget ul li a .count{
    font-size:16px;
}
.widget.widget_search h2{
    display:none;
}
.widget ul li a:visited {
	color: #2B2F3E;
}

.widget ul li a:hover {
	color: var(--main-color);
}

.widget ul li a:focus, 
.widget ul li a:active,
.widget ul li a:visited{
    color: var(--main-text-color);
   
}
.widget select {
	width: 100%;
	border: 1px solid var(--light-color);
	padding: 10px 5px;
	box-sizing: border-box;
}
.wp-block-calendar table th,
.wp-block-calendar thead,
.wp-calendar-table thead {
	background: var(--light-color);
}
.wp-block-calendar thead tr th,
.wp-calendar-table thead tr th {
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
	color: var(--main-text-color);
	text-align: center;
}
table {
	caption-side: top;
	border-collapse: collapse;
}
.wp-block-calendar caption,
.wp-calendar-table caption {
	font-size: 18px;
	line-height: 18px;
	color: var(--main-text-color);
	font-weight: 400;
	margin-bottom: 18px;
}
.wp-block-calendar tbody tr td,
.wp-calendar-table tbody tr td {
	font-size: 18px;
	line-height: 1.5;
	color: var(--main-text-color);
	text-align: center;
}
.wp-block-calendar thead tr th,
.wp-calendar-table thead tr th, .wp-calendar-table tbody tr td {
	border: none;
	box-sizing: border-box;
	padding: 8px;
	width: 50px;
}
.wp-calendar-table tbody tr td a {
	width: 25px;
	height: 25px;
	border: none;
	border-radius: 50%;
	display: inline-block;
	text-decoration: none;
}
.wp-calendar-table tbody tr td a:hover {
	
}

#today::after {
	font-family: 'remixicon';
	content: "\EB7C";
	width: 100%;
	float: left;
	line-height: 0;
	padding-bottom: 0px;
	font-size: 8px;
	color: #FF9515;
	z-index: 1;
	position: relative;
}
.wp-calendar-nav-prev a, .wp-calendar-nav-next a {
	text-decoration: none;
}

.widget.widget_recent_entries ul li a {
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	color: var(--main-text-color);
}
.widget.widget_recent_entries ul li {
	margin-bottom: 10px;
}
.widget.widget_recent_entries ul li a:visited, .widget.widget_recent_entries ul li a:active, .widget.widget_recent_entries ul li a:focus {
	color: var(--main-color);
}
ul#recentcomments li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 20px;
}
ul#recentcomments li > span a {
	line-height: 20px;
}
ul li.recentcomments > a {
	display: block;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
}
ul#recentcomments li::before {
	content: '\EA6E';
	font-family: remixicon;
	font-size: 14px;
	color: var(--main-color);
	position: absolute;
	left: 0;
	line-height: 28px;
}
.widget.widget_rss ul li {
	margin-bottom: 10px;
}

.widget.widget_rss ul li a {
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	color: var(--main-text-color);
	display: block;
}
.widget.widget_rss ul li span {
	font-size: 14px;
	line-height: 28px;
	color: var(--alt-text-color);
	font-weight: normal;
}
.widget.widget_rss ul li .rssSummary {
	font-size: 16px;
	color: #000;
	font-weight: normal;
	line-height: 24px;
	margin:8px 0;
}
.widget.widget_rss ul li cite {
	font-size: 15px;
	color: var(--alt-text-color);
	line-height: 30px;
	font-weight:600;
}
.widget-title a img{
    display:none;
}
.widget h2.widget-title a{
    color: var(--main-text-color);
}
.search-form {
	display: flex;
  }
  .search-form label, .search-form label input {
	width: 100%;
  }
  .search-form label input {
	outline: none;
	border: 1px solid #fff;
	padding: 15px 10px;
	    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.search-form .search-submit {
	border: none;
	outline: none;
	background: var(--main-color);
	color: #fff;
	padding: 0px 28px;
      max-height: 55px;
      position:relative;
          border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.search-form label input:focus {
	border: 1px solid var(--main-color);
}
.widget ul li .list-post-meta h4{
  font-family:var(--default-font-family-medium);
   line-height: 19.2px;
    margin: 0;
    font-weight: 500;
    font-size: 20px;
}
.widget .uroan-rcp-product-info h4{
   line-height: 28px;
   margin:0 0 5px
}
.widget ul li .list-post-meta h4 a,
.widget .uroan-rcp-product-info h4 a{
	font-weight: 500;
	color: var(--main-text-color);
	line-height: 19.2px;
	margin-bottom: 5px;
	text-transform: capitalize;
	font-family: Prompt;
	font-size: 16px;
}
.widget ul li.sidebar-post-list-item{
  margin-bottom:20px;
  align-items: center;
}
.widget ul li.sidebar-post-list-item:last-child{
  margin-bottom:0;
}
.widget ul li .posted-on a,
.widget ul li .sidebar-post-meta i{
  font-size:14px;
      vertical-align: middle;
}
.widget ul li .sidebar-post-meta a{
     color:var(--main-color);
     font-family: var(--default-font-family-medium);
     font-weight:500;
         font-size: 16px;
}
.widget ul li .posted-on a{
	font-size: 14px;
	color: rgb(116, 120, 124);
	font-weight: 300;
}
.sidebar-post-meta span i{
  color:var(--main-color);
}
.pivo-product-sidebar-asd{
  margin-bottom:20px;
  align-items:center;
}
.z-index-10{
    z-index:10;
}
.pivo-product-sidebar-asd:last-child{
  margin-bottom:0px;
}
.uroan-widget-subscription-box.pvs-sub-style-1{
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    padding: 45px 45px 20px;
    border-radius: 0px;
    position: relative;
    color: #fff;
}
.uroan-widget-subscription-box.pvs-sub-style-1:before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(150 166 140 / 24%);
    z-index: 1;
    position: absolute;
    border-radius: 0px;
}
.psv-subscription-form p{
    margin-bottom:0;
}
.uroan-widget-subscription-box h4{
    margin-bottom:15px;
}
.uroan-widget-subscription-box.pvs-sub-style-1 h6,
.uroan-widget-subscription-box.pvs-sub-style-1 h4{
    color:#fff;
}
.uroan-rcp-product-info .woocommerce-Price-amount {
    color: var(--main-color);
    font-weight: bold;
}
.uroan-rcp-product-info ins{
  background:transparent;
}
.uroan-rcp-product-info del,
.uroan-rcp-product-info del span,
.uroan-rcp-product-info del .woocommerce-Price-amount{
  color:#2B2F3E;
      font-weight: 400;
}
.widget .uroan-post-tag-grid-sidebar{
  overflow:hidden;
  margin:0 -6px;
  padding:0;
}
.widget .uroan-post-tag-grid-sidebar li{
  float:left;
  margin:0;
}
.widget .uroan-post-tag-grid-sidebar li a {
       border: 1px solid #F0F1F5;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    color: #2B2F3E;
    padding:5px 12px;
    margin: 6px;
    transition: all .2s;
    display: inline-block;
    background: #F0F1F5;
    border-radius: 4px;
}
.widget .uroan-post-tag-grid-sidebar li a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}
.widget ul li.cat-item a{
    position:relative;
    
    align-items: center;
    justify-content: space-between;
}
.widget ul li.cat-item{
    margin-bottom:24px;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.post-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
## Gutenberg
--------------------------------------------------------------*/
.wp-block-file .wp-block-file__button{
    border-radius:0 !important;
}
.wp-block-media-text{
    margin-top: 28px;
    margin-bottom: 28px;
}
p.wp-block-subhead{
	font-style: italic;
	font-weight: normal;
	font-size: 21px;
	line-height: 33px;
	color: #714f20;
}
.has-large-font-size {
	font-size: 26px;
	font-weight: 400;
}
.has-larger-font-size{
    font-size: 40px;
	line-height: 48px;
	font-weight: 400;
}
.wp-block-cover.alignright, .wp-block-cover.alignleft{
    margin-bottom:0.5rem;
}
.wp-block-cover .wp-block-cover-text a {
   border-bottom:1px solid #d5cccc;
}
.wp-block-cover .wp-block-cover-text a:hover{
    border-color:#fff;
}
.wp-block-cover.has-pale-pink-background-color:before{
    background:#f78da7;
}
.wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover .wp-block-cover-text, section.wp-block-cover-image>h2 {
    font-size: 2em;
    line-height: 1.25;
    z-index: 1;
    margin-bottom: 0;
    max-width: 840px;
    padding: 0.44em;
    text-align: center;
}
.wp-block-cover-image.has-left-content .wp-block-cover-image-text, .wp-block-cover.has-left-content .wp-block-cover-text, section.wp-block-cover-image.has-left-content>h2 {
    margin-left: 0;
    text-align: left;
}
.wp-block-cover.alignleft .wp-block-cover-text {
    text-align: left;
}
 .alignfull img{
    border-radius:0;
}
.has-drop-cap:first-letter {
    float: left;
    font-size: 8.4em !important;
    line-height: .68;
    font-weight: 100;
    margin: .05em .1em 0 0;
    text-transform: uppercase;
    font-style: normal;
}
.wp-block-quote {
	border-left: none;
	margin: 30px 0 40px 0;
	padding:40px 30px 30px 30px;
	font-style: italic;
	font-weight: bold;
	font-size: 24px;
	line-height: 36px;
	position: relative;
	width: 100%;
	float: left;
	box-shadow:none;
	    background: #EAFAF6;
    color: #2B2F3E;
    border-radius:6px;

}
.wp-block-quote p{
	position: relative;
	z-index: 10;
	    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7;
    color:#2B2F3E;
}
.wp-block-quote cite{
        font-weight: 700;
      
}
.wp-block-quote:before{
   content: "\EC52";
    font-family: 'remixicon';
    color: rgb(255 229 226);
    z-index: 5;
    font-size: 124px;
    position: absolute;
    left:3%;
    top:18%;
    font-style: normal;
}
.wp-block-quote.is-style-large cite{
    float:right;
}
.xoopic-blockquote-block{
    position:relative;
    padding: 40px 30px 10px 30px;
}
.xoopic-blockquote-block:before{
        content: "";
    border: 2px solid #74716E;
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(0 0, 95% 0, 65% 100%, 0% 100%);
    clip-path: polygon(0 0, 95% 0, 65% 100%, 0% 100%);
    background-clip: padding-box;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 18px;
}
.pivo-quote-circle:before{
     font-family: 'remixicon';
    content: "\EC52";
    position: absolute;
    top: -3%;
    left: 3%;
    background: #fffdf7;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}
.pivo-bottom-chips::before {
	background-color: #74716e;
    content: "";
    display: block;
    height: 85px;
    width: 70px;
    position: absolute;
    bottom: -7%;
    z-index: 0;
    left: 2%;
    border: 2px solid #74716e;
    clip-path: polygon(75% 75%, 75% 100%, 50% 75%);
}
.xoopic-quote-content{
    position:relative;
    z-index:10;
}
#xoopic-blockquote-box{
    position:relative;
}
#xoopic-blockquote-box h4{
       margin: 0;
    padding: 0;
    position: absolute;
    left: 40%;
    font-size: 14px;
    color: #74716E;
    bottom: -12%;
}
.wp-block-quote.is-style-large .pivo-quote-circle:before{
     top: -7%;
}
.wp-block-quote__citation, .wp-block-quote cite, .wp-block-quote footer {
	font-style: normal;
	font-size: 16px !important;
	line-height: 18px;
	color: #FF543E;
	font-weight: 600;
	z-index:10;
}

.wp-block-quote.is-large, .wp-block-quote.is-style-large {
	border: none;
	background:transparent;
	border-radius: 8px;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 33px;
	margin: 40px 0;
	box-shadow: inset 4px 0px 0px #222, inset -4px 0px 0px #222;
}
.wp-block-quote.is-style-large:before{
    top:-7%;
}
.wp-block-quote.has-text-align-right cite{
   text-align:right;
}
.wp-block-quote.has-text-align-right .pivo-bottom-chips::before{
        right: 5%;
        left:auto;
        clip-path: polygon(75% 75%, 60% 100%, 50% 75%);
}
.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
	margin-bottom: 10px;
}
.wp-block-quote.is-large:before{
	content: "";
	display: none;
}
.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
    font-size: 22px;
    font-style: normal;
    line-height: 1.6;
}
.wp-block-quote.is-style-large cite br{
    display:none;
}
.wp-block-quote.has-text-align-right{
    border:none;
}
.wp-block-quote.has-text-align-right .pivo-top-circle {
    top: -0.5%;
    right: auto;
    left: 20%;
}
.wp-block-quote.has-text-align-right .pivo-bottom-circle{
        right: 60%;
}
.wp-block-quote.has-text-align-right .pivo-quote-circle:before{
        left: auto;
        right: 4%;
}
.wp-block-quote.has-text-align-right:before{
   content: "\EC52";
    font-family: 'remixicon';
    color: var(--light-color);
    z-index: 5;
    font-size: 124px;
    position: absolute;
    right: 0;
    top: 10%;
    font-style: normal;
}
blockquote.has-light-gray-color p{
    color:#2B2F3E;
}
.wp-block-pullquote blockquote{
    box-shadow:none;
    border-left:0;
}
.wp-block-pullquote p{
    margin-bottom:8px;
}
.wp-block-pullquote.is-style-solid-color{
    background-color: #fffdf9;
   border-top: 4px solid #555d66;
   border-bottom: 4px solid #555d66;
}
.wp-block-pullquote.is-style-solid-color blockquote{
    color:#373833;
}
.blocks-gallery-grid .blocks-gallery-image figcaption, .blocks-gallery-grid .blocks-gallery-item figcaption, .wp-block-gallery .blocks-gallery-image figcaption, .wp-block-gallery .blocks-gallery-item figcaption {
	background: linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);
	font-style: italic;
	font-weight: normal;
	font-size: 13px;
	line-height: 18px;
	text-align: center;
	    padding: 0 8px 8px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius:0;
}
.wp-block-code>code{
    border:none;
}
.blocks-gallery-grid.is-cropped .blocks-gallery-image a, .blocks-gallery-grid.is-cropped .blocks-gallery-image img, .blocks-gallery-grid.is-cropped .blocks-gallery-item a, .blocks-gallery-grid.is-cropped .blocks-gallery-item img, .wp-block-gallery.is-cropped .blocks-gallery-image a, .wp-block-gallery.is-cropped .blocks-gallery-image img, .wp-block-gallery.is-cropped .blocks-gallery-item a, .wp-block-gallery.is-cropped .blocks-gallery-item img {
	border-radius: 0;
}
.wp-block-image img {
	border-radius: 0;
}
.wp-block-code {
	font-size: 14px;
	color: #373833;
	padding: .8em 1em;
	border: 1px solid #eee;
	border-radius: 4px;
	background: #eee;
	border-radius: 8px;
	padding: 64px;
	margin-left: calc(55% - 25vw);
	margin-right: calc(55% - 25vw);
	max-width: initial;
}
pre{
  	border-radius: 4px;
  	margin-top:10px;
}
.wp-block-columns.alignfull{
    padding:0 15px;
}
.xoopic-with-sidebar  .wp-block-code{
    margin-left:0;
    margin-right:0;
}
.xoopic-with-sidebar .wp-block-quote.is-large,.xoopic-with-sidebar  .wp-block-quote.is-style-large{
     margin-left:0;
    margin-right:0;
}
.xoopic-with-sidebar.right .alignfull{
    margin-right:0;
}
.xoopic-with-sidebar.left .alignfull{
    margin-left:0;
}
.wp-block-button{
    margin:10px 0;
}
.wp-block-button__link{
    border-radius:5px;
    background-color:#FD6050;
    margin-right:10px;
}
.is-style-squared .wp-block-button__link{
  border-radius:0;  
}
.alignwide {
   margin-left: calc( -93vw / 2 + 100% / 2 );
    margin-right: calc( -93vw / 2 + 100% / 2 );
    max-width: 100vw;
}
.alignfull{
          position: relative;
margin: 32px calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
    clear: both;
    margin-top: 30px;
}


.wp-block-table {
    border-collapse: collapse;
}
.wp-block-table td, .wp-block-table th {
    padding: 1em;
    border: 1px solid;
    word-break: normal;
    border: 1px solid #222;
}
.wp-block-categories.wp-block-categories-list{
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    list-style: none;
}
.wp-block-categories.wp-block-categories-list a{
    text-decoration:none;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
    clear: both;
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    list-style: none;
    margin-bottom:10px;
}
.wp-block-latest-posts.wp-block-latest-posts__list a{
    text-decoration:none;
}
.wp-block-cover, .wp-block-cover-image{
    height:auto;
}
.wp-block-archives{
    list-style:none;
    margin:0;
    padding:0;
}
.wp-block-archives li a{
   text-decoration:none;
}
.wp-block-calendar a{
    text-decoration:none;
}
.wp-block-latest-comments__comment-meta a{
    text-decoration:none;
}
.wp-block-rss{
    list-style:none;
    margin:0;
    padding:0;
}
.wp-block-latest-posts.is-grid li {
  border-top: 2px solid #2B2F3E;
  padding-top: 1rem;
  margin-bottom: 2rem;
}
.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date {
    font-size: 11px;
    color: #2B2F3E;
    line-height: 1.2;
    font-weight: 400;
}
.wp-block-tag-cloud a{
    text-decoration:none;
}
.wp-block-rss a{
    text-decoration:none;
}
.wp-block-calendar table th {
    font-weight: 400;
    background: var(--light-color);
}
.wp-block-calendar tbody td, .wp-block-calendar th {
    padding: 4px;
    border: 1px solid var(--light-color);
}
.wp-block-button.is-style-outline .wp-block-button__link{
      border-color:#373833;
    color:#373833 !important;
}
.gallery{
    display:flex;
    flex-wrap:wrap;
}
.gallery img{
    margin:0 auto;
}
.wp-block-cover.has-background-dim.alignleft,
.wp-block-gallery.alignleft{
    margin-bottom:20px;
    margin-right:20px;
}
.wp-block-cover.has-background-dim p{
    font-size:24px;
    line-height:28px;
    color:#fff;
}
 .alignwide {
     margin-top:20px;
     margin-bottom:20px;
 }
.pagi-box-default {
    border: 1px solid #fff;
    background:#fff;
    display: inline-block;
    padding: 2px 12px !important;
    margin: 0 5px;
    font-size: 18px;
    line-height: 24px;
    border-radius: 3px;
}
.page-links{
    margin-top:30px;
    width: 100%;
    float: left;
}
.current .pagi-box-default{
     border-color:#fd604f;
    background:#fd604f;
    color:#fff;
}
.pagi-box-default:hover{
    border-color: #E2E0F5;
        background: #E2E0F5;
    color: #fd604f;
}
.xoopic-post--main-content .wp-block-archives,
.wp-block-archives{
    margin-left:0;
}
.wp-block-search .wp-block-search__input{
    border-top-right-radius:0;
    border-bottom-right-radius:0;
}
@media only screen and (min-width: 950px){
   
    .alignwide {
          margin-left: calc(25% - 25vw);
    margin-right: calc(25% - 25vw);
    width: auto;
    max-width: 1000%;
    }
	.alignwide img,
	.alignfull img {
		display: block;
		margin: 0 auto;
		width:100%;
	}
	.xoopic-with-sidebar .alignwide{
	    margin-left:0;
	    margin-right:0;
	}
}
.wp-block-embed-twitter.alignwide{
        margin-left: 0;
    margin-right: 0;
}
/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

.alignfull {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.single-main-content-sidebar .alignfull {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}



.wp-block-embed iframe {
	width: 100%;
	height: 80vh;
}

/* Blog Post */

.uroan_default_blog.uroan-post-grid-thumbnail {
    background: transparent;
    display: flex;
    align-items: center;
    margin: 0 0 32px 0;
}
.post-thumb-single .post-thumbnail{
    text-align:center;
    
}
.post-thumb-single .post-thumbnail img {
	max-width: 100%;
	border-radius:8px;
	margin-bottom:25px;
	width:100%;

}
.wp-block-cover .wp-block-cover-text,
.wp-block-cover p:not(.has-text-color){
    color:#fff;
    font-size: 36px;
    line-height:1.4;
}
.wp-block-cover{
    margin-bottom:24px;
}
.wp-block-button {
	line-height: 60px;
}
.wp-block-button__link {
	padding: 12px 25px;
}

.wp-block-button.alignleft .wp-block-button__link,
.wp-block-button.aligncenter .wp-block-button__link,
.wp-block-button.alignright .wp-block-button__link,
.wp-block-button.alignleft .wp-block-button__link{
	background: var(--main-color);
	font-size: 14px;
	line-height: 24px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}

.wp-block-button.is-style-outline .wp-block-button__link{
	border: 2px solid var(--main-color);
	color: var(--main-color);
	background: transparent;
	font-size: 14px;
	line-height: 24px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}

.wp-block-button.is-style-squared .wp-block-button__link{
	border-radius: 0px;
	background: var(--main-color);
	font-size: 14px;
	line-height: 24px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}
.wp-block-button .wp-block-button__link{
	border-radius: 5px;
	background: var(--main-color);
	font-size: 14px;
	line-height: 24px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}
.wp-block-search .wp-block-search__button {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    padding: .375em .625em;
    color: #fffdf9;
    margin-left: 0;
    word-break: normal;
    border-radius:0;
    position:relative;
    font-size:0;
}
.wp-block-search .wp-block-search__button:after{
    content:"\f002";
    font-family:"Font Awesome 6 Free";
    font-size: 18px;
    padding: 10px 20px;
    vertical-align: middle;
    font-weight:900;
}

.wp-block-button.alignleft .wp-block-button__link:hover,
.wp-block-button.aligncenter .wp-block-button__link:hover,
.wp-block-button.alignright .wp-block-button__link:hover,
.wp-block-button.alignleft .wp-block-button__link:hover{
	background: #fb7b42;
}


.wp-block-button.is-style-outline .wp-block-button__link:hover{
	border: 2px solid #fb7b42;
	color: #fb7b42;
	background: transparent;
}

.wp-block-button.is-style-squared .wp-block-button__link:hover{
	background: #fb7b42;
}
.wp-block-button .wp-block-button__link:hover{
	background: #fb7b42;
}

blockquote {
	border-left: 2px solid var(--main-text-color);
	padding: 0 1em;
}
table {
    border-collapse: collapse;
    margin-bottom: 2rem;
    border:1px solid var(--light-color);
}
table tr {
    border-bottom: 1px solid;
    border-bottom-color: var(--light-color);
}
tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: var(--light-color);
}
table thead th {
	background: var(--light-color);
}
table th, table td {
	box-sizing: border-box;
	border: 1px solid var(--light-color);
	padding-left: 10px;
	line-height: 36px;
	border:none;
}
table tr th, table tr td {
    padding: 0.9375rem 0;
    padding-left: 0.9375rem;
}
 table tr th{
 text-align: left;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    font-weight: normal;
}
.wp-block-categories-dropdown.wp-block-categories select {
	width: 100%;
	padding: 7px;
	border: 1px solid var(--light-color);
}
a.read-more {
font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: var(--main-text-color);
    border-bottom: 1px solid var(--main-text-color);
}

ol.wp-block-latest-comments{
    padding-left:0;
}
.wp-block-latest-comments__comment{
    line-height:1.4;
}
.bredcrumb-separator{
    padding:0 4px;
}
.bredcrumb-separator i{
    vertical-align:middle;
}
.widget .wp-block-search .wp-block-search__label{
    display:none;
}
.xpc-post-read-more-box{
    margin-top:10px;
}
.tctz-default-thumbnail{
    position:relative;
    border-top-left-radius:8px;
     border-top-right-radius:8px;
}
.tctz-default-thm-blog{
    padding: 0;
    margin-bottom: 40px;
    width:100%;
    float:left;
    background: #FFFFFF;
    box-shadow: 0px 4px 45px rgb(0 0 0 / 7%);
    border-radius: 8px;
}
.tetz-meta-padding-top{
    padding:30px 20px;
    overflow:hidden;
}
.tctz-default-meta{
     padding:30px 20px;
      overflow:hidden;
}
.tctz-default-meta h1{
      color: var(--main-text-color);
    font-weight: 400;
    font-size: 34px;
    line-height: 1.4;
    margin: 0 0 15px;
     font-family: var(--alt-font-family);
}
.tctz-default-meta h1 a,
.post-meta ul li i,
.post-meta ul li span{
      color: var(--main-text-color);
}
.tctz-default-thumbnail img{
     width:100%;
     border-top-left-radius:8px;
     border-top-right-radius:8px;
}
.post-meta{
    width:100%;
    margin-top:21px;
}
.uroan-single-blog-header .post-meta{
      margin-top:8px;
      display: flex;
    justify-content: center;
}
.post-meta ul{
    list-style:none;
    margin:0;
    padding:0;
}
.post-meta ul li{
    float:left;
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

.post-meta ul span{
    vertical-align:middle;
}
.tctz-post-excerpt{
        width: 100%;
    float: left;
    font-weight: 400;
font-size: 18px;
line-height: 1.5;
color:#2B2F3E;
}
.tctz-post-excerpt p{
   width:100%;
    margin-bottom: 15px;
    color: var(--main-text-color);
    font-size:18px;
    line-height:1.5;
    margin-top: 6px;
    opacity: .85;
}
.read-more{
    vertical-align: middle;
    font-weight: bold;
    color: var(--main-text-color);
    transition:all .2s;
}
.read-more:hover{
    color:#FF9515;
    border-color:#FF9515;
}
.read-more i{
    vertical-align:middle;
}
.sticky-post-label{
        font-size: 18px;
    font-weight: 600;
    color: #FF9515;
    text-transform: uppercase;
    line-height: 24px;
        margin-top: 3px;
    display: block;
}
.post-meta ul li i,
.read-more i{
    color:var(--main-color);
}
.tctz-default-thumbnail{
    overflow:hidden;
    width: 100%;
}
.tctz-default-thumbnail img{
 height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
        transition: all 1s ease-out;
    transform: scale(1);

}
.tctz-default-thumbnail:hover img{
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.uroan-single-post-breadcumb{
    display:flex;
    justify-content:center;
}
.uroan-single-post-breadcumb .breadcrumb{
    font-size:16px;
    margin-bottom:5px;
}
.uroan-single-post-breadcumb .breadcrumb,
.uroan-single-post-breadcumb .breadcrumb a,
.uroan-single-post-breadcumb .breadcrumb span{
    color:rgb(255 255 255 / 80%);
}
.uroan-single-blog-header .uroan-single-post-condensed-container{
    text-align:center;
}
.uroan-blog-main-content,
.uroan-single-post-content,
.uroan-archive-main-content,
.uroan-default-page-content{
    padding-top:120px;
    padding-bottom:80px;
}
/**************************************************************************************
                               3rd Party Codes
***************************************************************************************/


/**************************************************************************************
                                   Lity Begin
***************************************************************************************/
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lity.lity-opened {
  opacity: 1;
}
.lity.lity-closed {
  opacity: 0;
}
.lity * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}
.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lity-loading .lity-loader {
  opacity: 1;
}
.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}
.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}
.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
       -o-transform: scale(0.8);
          transform: scale(0.8);
}
.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none !important;
  border:none !important;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.lity-close:active {
  top: 1px;
}
/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}
/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}
.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
.lity-hide {
  display: none;
}
@media screen and (max-width: 990px) {
  .banner1-image {
    padding-top: 34px !important;
  }
}

h2.portfolio-single-title {
  font-weight: 400;
  font-size: 34px;
  line-height: 140%;
  color: #2B2F3E;
  margin-bottom: 15px;
  margin-top: 8px;
}
.portfolio-img a img {
  width: 100%;
  border-radius: 8px 8px 0px 0px;
}
.col-width {
  width: 100% !important;
}

@media (min-width: 768px) {
  
  .col-width {
    width: 50% !important;
  }
}

@media (min-width: 992px) {
  .col-width {
    width: 33.33333% !important;
  }
}

.widget.uroan-custom-block {
  background: #4cd080;
}
.widget.uroan-custom-block h2.widget-title {
  color: #ffffff;
}
.widget.uroan-custom-block h2.widget-title:before {
  background: #ffffff;
}
.widget.uroan-custom-block h2.widget-title:after {
  background: #F0F1F5;
  opacity: 0.2;
}
.wpcf7-form-control {
  margin-top: 0px !important;
  margin-bottom: 16px !important;
}
.dr-appointment-form input,
.dr-appointment-form .wpcf7-form-control {
  margin-bottom: 0px !important;
}
.dr-appointment-form .inputicon {
  position: relative;
}
.dr-appointment-form .inputicon i {
  position: absolute;
  right: 22px;
  top: 18px;
}
.dr-appointment-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 30px) calc(1em + 12px),
    calc(100% - 25px) calc(1em + 12px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.apinputicon select {
    width: 100%;
}
.dr-appointment-form input[type="submit"] {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
}

/**************************************************************************************
                                   Nice Select
***************************************************************************************/



.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 0px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .nice-select.open .list {
      z-index:999;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
          border-radius: 6px;
    border: 1px solid #F0F1F5;
      margin:0;
    background-color: #fff;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 20; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #F0F1F5; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }
  
  .tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #0a0a0a;
  font-size: 80%;
  color: #fefefe; }
  .tooltip::before {
    position: absolute; }
  .tooltip.bottom::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-top-width: 0;
    border-bottom-style: solid;
    border-color: transparent transparent #0a0a0a;
    bottom: 100%; }
  .tooltip.bottom.align-center::before {
    left: 50%;
    transform: translateX(-50%); }
  .tooltip.top::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #0a0a0a transparent transparent;
    top: 100%;
    bottom: auto; }
  .tooltip.top.align-center::before {
    left: 50%;
    transform: translateX(-50%); }
  .tooltip.left::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0a0a0a;
    left: 100%; }
  .tooltip.left.align-center::before {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%); }
  .tooltip.right::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #0a0a0a transparent transparent;
    right: 100%;
    left: auto; }
  .tooltip.right.align-center::before {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%); }
  .tooltip.align-top::before {
    bottom: auto;
    top: 10%; }
  .tooltip.align-bottom::before {
    bottom: 10%;
    top: auto; }
  .tooltip.align-left::before {
    left: 10%;
    right: auto; }
  .tooltip.align-right::before {
    left: auto;
    right: 10%; }


  .trending-products-sport .tooltip.left{
      top:auto !important;
      right: -40% !important;
    bottom: -34px;
  }

  .trending-products-sport .tooltip.left::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.45rem !important;
    content: '';
    border-top-width: 0 !important;
    border-bottom-style: solid !important;
    border-color: transparent transparent #0a0a0a !important;
    bottom: 100%;
    top:auto !important;}
  .trending-products-sport .tooltip.left::before {
    left: 50% !important;
    transform: translateX(-50%) !important; }

.custom-list-item-x-p i{
    background: #292929;
    text-align: center;
    width: 30px !important;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;

}
.custom-list-item-x-p i:hover{
     background: #FF9515;
     color:#fff;
}
.grocery-fotter-list-item-x-p i {
    color: #fff !important;
    background: #2D6154;
    width: 30px !important;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.grocery-fotter-list-item-x-p i:hover{
     background: #05A845;
}

.text-border-slider .slider-content h1{
        -webkit-text-stroke: 2px #FFFFFF;
    text-stroke: 2px #FFFFFF;
}
.trending-products-sport .product-content h4{
    text-align:left;
    margin:0;
}
#alg_currency_selector #alg_currency_select{
        background: transparent;
    border: none;
    min-height: auto;
    padding: 0;
    color: #fff;
    font-size: 14px;
}
.nice-select.alg_currency_select{
    height: auto;
    line-height: 14px;
    background: transparent;
    border: transparent;
    color: #fff;
    padding: 0;
}
#alg_currency_selector .nice-select .list{
      background:var(--main-text-color);
  }
#alg_currency_selector  .nice-select .list li{
      color:#fff;
  }
 #alg_currency_selector  .nice-select .option:hover,#alg_currency_selector  .nice-select .option.focus,#alg_currency_selector  .nice-select .option.selected.focus{
     background:var(--main-text-color);
 }


/*============================================
                Menu CSS
 =========================================*/
#uroanmenu {
    padding: 0;
    margin: 0;
    border: 0;
    width: auto;
    display: flex;
}

#uroanmenu ul,
#uroanmenu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

#uroanmenu ul {
    position: relative;
    z-index: 597;
}

.uroan-default-header #uroanmenu > ul > li {
    line-height: 80px;
    height: 80px;
    display: flex;
    align-items: center
}

#uroanmenu ul li {
    float: left;
    min-height: 1px;
    vertical-align: middle;
    position:relative;
}

#uroanmenu ul li.hover,
#uroanmenu ul li:hover {
    position: relative;
    z-index: 599;
    cursor: default;
}

#uroanmenu ul ul {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 598;
    width: 100%;
    border-radius:6px;
}

#uroanmenu ul ul li {
    float: none;
    background: #fff;

}

#uroanmenu ul ul ul {
    top: -35%;
    left: 200px;
    width: 200px;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
}

#uroanmenu ul li:hover > ul {
    visibility: visible;
}

#uroanmenu ul ul {
    bottom: 0;
    left: 0;
}

#uroanmenu ul ul {
    margin-top: 0;
}

#uroanmenu ul ul li {
    font-weight: normal;
}

#uroanmenu a {
    display: block;
    line-height: 1em;
    text-decoration: none;
}

/* Custom CSS Styles */
#uroanmenu {
    font-size: 1rem;
}

#uroanmenu > ul.emerce-main-nav {
    display: flex;
    flex-wrap: wrap;
}

#uroanmenu:after,
#uroanmenu ul:after {
    content: '';
    display: block;
    clear: both;
}

#uroanmenu ul ul {
    text-transform: none;
    min-width: 200px;
    background: #ffffff;
    -webkit-box-shadow: 0 6px 4px 0 rgba(10, 10, 25, .15);
    box-shadow: 0 6px 4px 0 rgba(10, 10, 25, .15);
    height: fit-content;
    left: 0;
    -webkit-transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(30px);
    padding: 14px 0;
}

#uroanmenu ul li:hover > ul {
    visibility: visible;
    transform: translateY(0);
}

#uroanmenu ul ul a {
    color: var(--main-text-color);
    padding: 18px;
    font-size: 18px;
    line-height: 1.5rem;
    padding: 7.5px 20px;
    font-weight: 500;
}

#uroanmenu ul ul ul {
    border-top: 0 none;
}

#uroanmenu ul ul li {
    position: relative;
}

#uroanmenu ul ul li:hover > a {
    color: var(--main-color);

}


#uroanmenu ul ul li.has-sub > a:after {
    font-family: 'icomoon';
    content: '\ef5d';
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -12px;
    vertical-align: middle;
    font-weight:200;
}
.footer-list-items li a:before{
    font-family: 'iconly';
    content: '\e90d';
    position: absolute;
       top: 0;
    left: 0;
    vertical-align: middle;
    font-weight:200;
}
.footer-list-items li a{
    padding-left:20px;
    position:relative;
}
#uroanmenu ul li.active > a {
   
}

#uroanmenu ul li.has-sub > a:after {
    font-family: 'icomoon';
    content: '\ef5d';
    margin-left: 5px;
    vertical-align: middle;
    font-weight:200;
}


#uroanmenu ul li.last ul {
    left: auto;
    right: 0;
}

#uroanmenu ul li.last ul ul {
    left: auto;
    right: 99.5%;
}

#uroanmenu a {
    color: #fff;
    padding: 5px 15.5px;
}

#uroanmenu > ul > li > a {

    font-size: 20px;
    line-height: 1.75;
    font-weight: 500;
    transition:all .3s;
}
#uroanmenu > ul > li > a:hover {
    color:#FF9515;
}

#uroanmenu ul > li > a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 25px;
    opacity: 0;
    width: 100%;
    height: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: url(../images/menu-orange.svg) no-repeat scroll center center / auto;
}
#uroanmenu ul > li.current_page_item > a:before{
     opacity: 1;
}
#uroanmenu ul > li:hover > a:before{
    bottom: 15px;
    opacity: 1;
}
#uroanmenu ul ul li a:before{
    display:none;
}
#uroanmenu li a i {
    padding-right: 10px;
}

#uroanmenu li a .xpc-menu-img {
    display: inline-block;
    max-width: 30px;
}
.uroan-def-header-container{
        width: 100%;
    margin: 0 auto;
    height:100%;
  
}
.uroan-def-header-container .row{
    border-bottom:1px solid rgb(255 255 255 / 11%);
    height:100%;
}
.uroan-default-header {
    padding: 0 15px;
}
/*============================================
                 Mega Menu CSS
 =========================================*/

.xpc-menu-box {
    display: -webkit-box;
    display: flex;
    height: auto;
    padding:0;
}
.xpc-menu-box .xpc-menu-box-inner{
    padding:5px;
}
.xpc-menu-box .xpc-menu-box-inner img {
    height: 100% !important
}

.xpc-menu-box .xpc-intro-img {
    z-index: 1 !important;
    -o-object-fit: fill;
    object-fit: fill;
    height: 100%
}

.xpc-menu-box .xpc-intro-img img {
    -o-object-fit: fill;
    object-fit: fill
}

.xpc-menu-box .xpc-box-title {
    z-index: 1000 !important;
    max-width: 200px;
    padding-right: 10px
}

.xpc-menu-box .xpc-box-text {
    z-index: 1000 !important;
    max-width: 200px;
    margin-right: 20px
}

.xpc-menu-box .xpc-box-link {
    z-index: 1000 !important;
    padding-left: 0px !important
}

.xpc-menu-box .xpc-box-link i.xpcicon-angle-right {
    position: relative;
    top: 1px
}

.col-lg-2 .xpc-menu-box.xpc-menu-full-height,
.col-lg-3 .xpc-menu-box.xpc-menu-full-height,
.col-lg-4 .xpc-menu-box.xpc-menu-full-height,
.col-lg-6 .xpc-menu-box.xpc-menu-full-height {
    height: 100%
}

.col-lg-2 .xpc-menu-box .xpc-box-container,
.col-lg-3 .xpc-menu-box .xpc-box-container,
.col-lg-4 .xpc-menu-box .xpc-box-container,
.col-lg-6 .xpc-menu-box .xpc-box-container {
    display: inline-block !important;
    position: relative;
    z-index: 1000 !important;
    width: 100%
}

.col-lg-2 .xpc-menu-box .xpc-box-container .xpc-box-title,
.col-lg-3 .xpc-menu-box .xpc-box-container .xpc-box-title,
.col-lg-4 .xpc-menu-box .xpc-box-container .xpc-box-title,
.col-lg-6 .xpc-menu-box .xpc-box-container .xpc-box-title {
    z-index: 1000 !important;
    width: 100%
}

.col-lg-2 .xpc-menu-box .xpc-box-container .xpc-box-text,
.col-lg-3 .xpc-menu-box .xpc-box-container .xpc-box-text,
.col-lg-4 .xpc-menu-box .xpc-box-container .xpc-box-text,
.col-lg-6 .xpc-menu-box .xpc-box-container .xpc-box-text {
    z-index: 1000 !important;
    display: block;
    width: 100%;
    margin-right: 20px
}

.col-lg-2 .xpc-menu-box .xpc-box-container .xpc-box-link,
.col-lg-3 .xpc-menu-box .xpc-box-container .xpc-box-link,
.col-lg-4 .xpc-menu-box .xpc-box-container .xpc-box-link,
.col-lg-6 .xpc-menu-box .xpc-box-container .xpc-box-link {
    z-index: 1000 !important;
    display: inline-block;
    padding-left: 0px !important
}
.xpc-p-box{
    padding:0;
}
.submenu-box.xpc-default-menu{
    padding:5px 0;
}
.nav-style-megamenu>li.nav-item{
    margin-bottom:0 !important;
}
.navbar .dropdown .dropdown-menu {
    display: block !important;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-width: 240px;
}
.nav-style-megamenu>li.nav-item .dropdown-menu .dropdown-item{
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.nav-style-megamenu>li.nav-item .dropdown-menu .dropdown-item:hover{
        color: var(--secondary-color);
    margin-left: 6px;
    background:transparent;
}
.uroan-menu-btn-ex a{
    display:inline-block !important;
    width:auto !important;
}
@media (min-width:992px) {
    .dropdown-menu {
        padding: 0px
    }
     .navbar .dropdown  .dropdown-menu .dropdown .submenu-box.xpc-default-menu {
         margin-top:0;
     }
    .navbar .dropdown:hover>.dropdown-menu .dropdown:hover>.dropdown-menu, 
.navbar .dropdown:hover>.dropdown-menu .dropdown>.dropdown-menu:hover, 
.navbar .dropdown>.dropdown-menu:hover .dropdown:hover>.dropdown-menu,
.navbar .dropdown>.dropdown-menu:hover .dropdown>.dropdown-menu:hover {
    top: 0;
    visibility: visible !important;
    left: 100%;
    padding-left: 10px;
    margin-top:0;
}

    .nav-item:not(.mega-item) .container *:first-child {
        border-radius: 0px
    }

    .uroan-m-menu .nav-style-megamenu>li.nav-item {
        position: relative
    }

    .uroan-m-menu .nav-style-megamenu>li.nav-item .dropdown-menu {
        top: 88%
    }
.uroan-m-menu .submenu-box {
    -webkit-transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: margin 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
    .uroan-m-menu .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box {
        background: #fff;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        border-radius: 0;
        opacity: 0;
        border: 0px solid rgba(0, 0, 0, 0);
        margin-top: 17px
    }
    .uroan-m-menu .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box.xpc-default-menu {
        margin-top: 18px
    }
    
     .uroan-m-menu .nav-style-megamenu>li.nav-item:hover  .dropdown-menu .submenu-box {
         -webkit-transform: translateY(0px);
        transform: translateY(0px);
         opacity: 1;
     }

    .uroan-m-menu .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box .container,
    .uroan-m-menu .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box .container-fluid {
        border-radius: 0px;
        padding: 0px 15px 0 15px
    }

    .uroan-m-menu .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box .container .row,
    .uroan-m-menu .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box .container-fluid .row {
        margin: 0px
    }
.uroan-m-menu .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box .container{
    max-width:100%;
}
   
    .uroan-m-menu >ul>li.nav-item>.xpc-nav-link.dropdown-toggle>span:before {
        content: "\f078" !important;
        font-family: 'Font Awesome 6 Free' !important;
        position: absolute;
        font-weight:900;
        right: -16px;
        top: -2px;
        -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        font-size:12px;
    }

    .uroan-m-menu >ul>li.nav-item:hover>.xpc-nav-link.dropdown-toggle>span:before {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    .nav-style-megamenu>li.nav-item {
        position: relative;
        padding: 0px 20px
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu {
        margin-top: 0px;
        opacity: 0;
        -webkit-transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        min-width: 275px;
        border:none;
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu a:active:focus {
        background: rgba(0, 0, 0, 0.1) 
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu .dropdown-item {
        padding: 5px 20px
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu .container,
    .nav-style-megamenu>li.nav-item .dropdown-menu .container-fluid {
        margin: 0 !important;
        padding: 0 !important
    }

    .nav-style-megamenu>li.nav-item.mega-item {
        position: inherit
    }

    .nav-style-megamenu>li.nav-item.mega-item .dropdown-menu {
        top: 78%
    }

    .nav-style-megamenu>li.nav-item .nav-link {
        position: relative
    }

    .nav-style-megamenu>li.nav-item .nav-link:after {
        display: none
    }

    .nav-style-megamenu>li.nav-item .nav-link span {
        position: relative
    }

  

  
    .nav-style-megamenu>li.nav-item .dropdown-menu {
        width: 100%;
        max-width: 1200px;
        background: transparent
    }
    .nav-style-megamenu>li.nav-item .dropdown-menu.xpc-drop-big{
        padding: 0px;
        width:100%;
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box {
        background: #fff;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        border-radius: 0px;
        opacity: 0;
        border: 0px solid rgba(0, 0, 0, 0);
        margin-top: 5px
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box .container,
    .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box .container-fluid {
        border-radius: 0px;
        padding: 0px 15px 0 15px
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box .container .row,
    .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box .container-fluid .row {
        margin: 0px
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu .submenu-box:after {
        content: "";
        position: absolute;
        border-radius: 0px;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05), 0 1.5rem 2.2rem rgba(0, 0, 0, 0.1) !important
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu a {
        border-radius: 0;
        font-size: 18px;
        padding: 0px 15px 0 15px
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu .uroan-mg-col-title {
        padding: 0px 20px;
    }

    .nav-style-megamenu>li.nav-item .dropdown-menu h5.uroan-mg-col-title {
        cursor: default;
        position:relative;
            font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
    margin-bottom:10px;
    }
 

    .nav-style-megamenu>li.nav-item .container,
    .nav-style-megamenu>li.nav-item .container-fluid {
        padding: 0
    }

    .xpc-header-stack .navbar-nav>li>.dropdown-menu {
        margin-top: 5px
    }

    .xpc-header-stack .navbar-nav>li>.dropdown-menu .submenu-box {
        margin-top: 0 !important
    }

    .navbar .xpc-nav-active-line .nav-style-megamenu>li.nav-item.current-menu-item .nav-link span:after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }

    .navbar .xpc-nav-global-active-line .nav-style-megamenu>li.nav-item.current-menu-item .nav-link span:after,
    .navbar .xpc-nav-global-active-line .nav-style-megamenu>li.nav-item.current-menu-ancestor .nav-link span:after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
    
    .navbar .dropdown:hover>.dropdown-menu, .navbar .dropdown>.dropdown-menu:hover {
    height: auto;
    visibility: visible;
    overflow: visible;
    opacity:1;
}
.ur3-nav-menu .nav-style-megamenu>li.nav-item .nav-link{
    position:relative;
        z-index: 1;
        transition: all 0.3s;
}
.ur3-nav-menu .nav-style-megamenu>li.nav-item .nav-link:before{
        content: '';
    position: absolute;
    left: -20%;
    top: 3%;
    width: 95px;
    height: 40px;
    border: 1px solid var(--secondary-color);
    border-radius: 15%;
    opacity: 0;
    z-index: -1;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    z-index:10;
}
.ur3-nav-menu .nav-style-megamenu>li.nav-item .nav-link:hover::before {
    opacity: 1;
    border-radius: 50%;
}
  .xpc-menu-line-right {
        border-right: 1px solid rgba(173, 181, 189, 0.15)
    }

    .xpc-menu-line-top {
        border-top: 1px solid rgba(173, 181, 189, 0.15)
    }

    .xpc-menu-line-right-top {
        border-right: 1px solid rgba(173, 181, 189, 0.15);
        border-top: 1px solid rgba(173, 181, 189, 0.15)
    }
    .xpc-menu-box .xpc-intro-img {
        z-index: 1 !important;
        -o-object-fit: cover !important;
        object-fit: cover !important;
        height: 100%
    }

    .xpc-menu-box .xpc-intro-img img {
        -o-object-fit: cover !important;
        object-fit: cover !important;
        z-index: 1 !important
    }

    .xpc-menu-box .xpc-box-container {
        z-index: 1000 !important
    }

    .xpc-menu-box .xpc-box-container .xpc-box-title {
        z-index: 1000 !important;
        width: 100%;
        display: block
    }

    .xpc-menu-box .xpc-box-container .xpc-box-text {
        z-index: 1000 !important;
        display: block;
        width: 100%
    }
    .xpc-box-light a.xpc-img-overlay{
        background:transparent !important;
        color:#fff !important;
    }
    .xpc-menu-box .xpc-box-title{
        font-size:18px;
        font-weight:600;
        line-height:1.4;
    }
    .xpc-box-light span,
    .xpc-box-light .xpc-box-title{
       color:#fff; 
    }
    
    .xpc-bg-image {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}
.xpc-p-20{
    padding:20px;
}
.xpc-px-20{
    padding-left:20px;
     padding-right:20px;
}
.xpc-pb-20{
    padding-bottom:20px;
}

.xpc-px-0,
.xpc-px-0 .xpc-menu-box-inner{
    padding:0 !important;
}
.xpc-px-0 .xpc-p-20{
    padding:0px !important;
}
}
.xpc-nav-block-shortcode{
    width:100%;
}
.xpc-menu-label{
        padding: 3px 5px;
    font-size: 12px;
        background-color: rgba(35, 162, 211, .09);
    color: #23a2d3;
    display: inline-block;
    line-height: 12px;
    margin: 0 5px;
    font-weight:bold;
}
.xpc-label-green{
        background-color: rgba(5, 168, 85, .07);
    color: #05a855;
}
.xpc-label-red{
    background-color: rgba(247, 10, 10, .07);
    color: #f70a0a;
}
.xpc-label-yellow{
          background-color: rgba(220, 213, 0, .07);
    color: #bcb704;
}
.xpc-label-black{
         background-color: rgba(32, 32, 29, .07);
    color: #20201d
}
.xpc-label-grey{
         background-color: rgba(144, 144, 144, .07);
    color: #7a7a7a;
}
.xpc-label-brown{
    background-color: rgba(220, 102, 0, .07);
    color: #dc6600;
}
.xpc-label-aqua{
        background-color: rgba(0, 255, 255,.07);
    color: #00b6b6;
}
.xpc-label-purple{
         background-color: rgba(128, 0, 128 , .07);
    color: #800080;
}
.xpc-label-olive{
       background-color: rgba(128, 128, 0,.07);
    color: #808000;
}
.xpc-dropdown-padding{
    padding:22px 20px;
}
.xpc-dropdown-padding-sm{
    padding:5px;
}
.dm_comment_item .comment{
    padding: 12px 0;
}
.dm_comment_item:last-child{
    border-bottom:none;
}
.comment-list{
    list-style:none;
    margin:0;
    padding:0;
}
.comment-list li{
    list-style:none;
}
.comment-list li:marker{
    display:none;
}
.comment-list a{
    text-decoration:none;
}
.xoopic-atr-description p{
    font-size:18px;
}
.comment-meta .dm_comment_author a,.comment-meta .dm_comment_author{
     font-weight: 600;
    font-size: 21px;
    line-height: 28px;
    color: var(--main-text-color);
    text-transform: capitalize;
    font-style: normal;
        width: 100%;
}
.comment-text p{
	font-size: 16px;
	font-weight: 300;
	font-family: 'Prompt';
	line-height: 26px;
}
.comment-edit-link {
	font-family: 'Prompt';
	font-size: 16px;
	color: rgb(0, 0, 0);
}
	/*.comment-content{*/
/*    margin:15px 0;*/
/*}*/
.comment-awaiting-moderation{
    margin-bottom:5px;
}
.comment-author.vcard{
    display:flex;
    flex-wrap:wrap;
    width:100%;
}
.comment-author.vcard img{
    height:100%;
    margin-right:24px;
   width: 60px;
    border-radius: 50%;
}
.comment-title-meta{
    flex:1;
}
.comment-meta{
    border-bottom:1px solid #E0E6EB;
    padding:32px 0 30px 0;
        width: 100%;
    float: left;
}
.uroan-comm-title{
    font-size: 34px;
    line-height: 47px;
    margin: 100px 0 15px 0;
}
.dm_comment-date{
    width:100%;
    margin-top:2px;
}
.comment-details{
    width:100%;
}
.comment-content .comment-reply-link {
  position:relative;
    padding: 0 5px 0 20px;
    line-height: 18px;
}
.comments-area .comment-list .comment article.comment-body .comment-content .comment-reply a:before {
    position: absolute;
    left: 0;
    bottom: 1px;
    font-size: 18px;
    font-family: 'remixicon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\F078";
}
.comment-edit-link{
    position:relative;
    padding: 0 20px 0 5px;
    line-height: 18px;
}
/*.edit:after, .comment-edit-link:after {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    bottom: 3px;*/
/*    font-size: 18px;*/
/*    font-family: 'Font Awesome 5 Free' !important;*/
/*    speak: none;*/
/*    font-style: normal;*/
/*    font-weight: normal;*/
/*    font-variant: normal;*/
/*    text-transform: none;*/
/*    line-height: 1;*/
/*    -webkit-font-smoothing: antialiased;*/
/*    -moz-osx-font-smoothing: grayscale;*/
/*    content: "\f064";*/
/*}*/
.comment-reply-title{
    padding-top:35px;
        font-size: 34px;
    line-height: 1.5;
}
#cancel-comment-reply-link{
        font-size: 18px;
    margin: 0 12px;
    color: #FF9515;
}
.widget .wp-block-search__input{
    margin-bottom:0;
}

.wpcf7-submit{
    width:100%;
}
.archive-description{
  padding-top:10px;  
}
.comment-form-cookies-consent input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.comment-form-cookies-consent label{
    position:relative;
	padding-left: 35px;
}
.comment-form-cookies-consent label:before{
    content:"";
     position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--light-color);
  border-radius:8px;
}
.comment-form-cookies-consent input:checked ~ label:before{
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-size: 15px;
	line-height: 1;
	color: #ff9515;
	background: #ffedd7;
	font-weight: 900;
	display: flex;
	justify-content: center;
	align-items: center;
}
/** BASIC SETUP START **/

.gridzy {
	display: block;
	will-change: width, height;
}

/* Hint for browsers to make animations even smoother */
.gridzy > .gridzyItem {
	will-change: left, top, width, height, opacity, transform;
}

/* Prevent initial visibility of items */
.gridzy > *:not(.gridzyItem) {
	visibility: hidden;
}

/* Fully visible state of items (transitions see below) */
.gridzyItemVisible {
}

/* Fully hidden state of items (transitions see below) */
.gridzyItemHidden {
	display: none;
}

/** BASIC SETUP END **/






/** SKIN SETUP START **/

/* Provides possibility to use semantic HTML without needing any skin, by using class "gridzyImage" */
.gridzy .gridzyImage {
	vertical-align: middle;
	width: 100%;
	height: 100%;
}

/** SKIN SETUP END **/






/** ANIMATION START  **/

/* transitions for several dynamic style changes */
.gridzyAnimated {
	height: 0;
	transition: height .4s;
}

.gridzyAnimated .gridzyItem {
	transition: all .4s;
}

/* Animation for appearing items on start of gallery */
.gridzyAnimated .gridzyItemInitialToVisible {
	animation-name: gridzyItemInitialToVisibleAnimation;
	animation-fill-mode: forwards;
	animation-duration: .4s;
}

@keyframes gridzyItemInitialToVisibleAnimation {
	0% {
		opacity: 0;
		transform: scale(.9);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* Animation for appearing items while changing filter */
.gridzyAnimated .gridzyItemHiddenToVisible {
	animation-name: gridzyItemHiddenToVisibleAnimation;
	animation-fill-mode: forwards;
	animation-duration: .4s;
}

@keyframes gridzyItemHiddenToVisibleAnimation {
	0% {
		opacity: 0;
		transform: scale(.9);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* Animation for disappearing items while changing filter */
.gridzyAnimated .gridzyItemVisibleToHidden {
	animation-name: gridzyItemVisibleToHiddenAnimation;
	animation-fill-mode: forwards;
	animation-duration: .4s;
}

@keyframes gridzyItemVisibleToHiddenAnimation {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(.9);
	}
}

/* Here you can add an animation for items which stay visible while changing filter */
/*
.gridzyAnimated .gridzyItemVisibleToVisible {
	animation-name: gridzyItemVisibleToVisibleAnimation;
	animation-fill-mode: forwards;
	animation-duration: .4s;
}

@keyframes gridzyItemVisibleToVisibleAnimation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
*/

/** ANIMATION END  **/






/** PROGRESS INDICATOR START **/

.gridzyItem {
	opacity: 1;
}

.gridzyItemLoading {
	opacity: .3;
	box-shadow: inset 0 0 15px -5px #2B2F3E;
}

.gridzyItemLoading::before {
	content: " ";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 50px;
	height: 50px;
	margin: -25px 0 0 -25px;
	padding: 0;
	z-index: 1;
	opacity: 1;
	background: none;
	border: 2px solid;
	border-color: transparent transparent rgb(0, 0, 0) rgb(0, 0, 0);
	border-radius: 50%;
	outline: none;
	animation-duration: 1s;
	animation-name: gridzyProgressIndicator;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.uroan-common-paginav {
    width: 100%;
    margin: 40px 0 !important;
    float: left;
    display: flex;
    justify-content: center;
}

.uroan-common-paginav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.uroan-common-paginav ul li {
    float: left;
}

.uroan-common-paginav ul li .page-numbers {
    opacity: 0.6;
    color: inherit;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content:center;
}
.uroan-common-paginav ul li .page-numbers:hover{
    background: var(--primary-color);
    color: #fff;
}
.uroan-common-paginav a i, .uroan-common-paginav span i {
    vertical-align: middle;
}

.emerce-common-paginav a, .emerce-common-paginav span {
    padding: 0;
    color: var(--main-text-color);
}

.uroan-common-paginav a {
    text-decoration: none;
}

.uroan-common-paginav ul li .page-numbers:hover {
  
    opacity: 1;
}

.uroan-common-paginav ul li .page-numbers.current {
    opacity: 1;
}
.uroan-single-post-content .post-title{
        font-size: 36px;
    margin: 0 0 20px;
    line-height: 1.4;
    font-weight:400;
}
.single-main-content-sidebar .alignwide{
    width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
}
.med-single-content-mds{
    margin-bottom:60px;
}
.uroan-single-post-tag-bar{
    border-top: 1px solid #E0E6EB;
     border-bottom: 1px solid #E0E6EB;
         width: 100%;
    display: block;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom:30px;
}
.uroan-tags-sgl ul{
    margin:0 -5px;
    padding:0;
    list-style:none;
}
.uroan-tags-sgl ul li{
    float:left;
    margin:5px;
}

.uroan-tags-sgl ul li a{
        background: #F0F1F5;
    border-radius: 4px;
    color: #2B2F3E;
    padding: 3px 8px;
    font-size: 18px;
    transition:all .2s;
}
.uroan-tags-sgl ul li a:hover{
    background:#FF9515;
    border-color:#FF9515;
    color:#fff;
}
.breadcrumb .active{
 color:#FF9515 !important;
 }
.breadcrumb .bredcrumb-separator.active{
     color:#2B2F3E !important;
 }
 .uroan-condensed-container{
     max-width:1170px !important;
 }
 .uroan-post-nav-ds img{
     max-width:80px;
 }
 .uroan-post-nav-ds h5{
     margin-bottom:0;
     font-size: 20px;
    font-weight: 400;
    line-height: 30px;
 }
 .uroan-post-nav-ds a{
     background: #F0F1F5;
border-radius: 8px;
padding:20px;
margin:10px 0;
transition: all .2s;
 }
 .uroan-post-nav-ds a:hover{
     background: #FFFFFF;
box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.07);
 }
 .uroan-nav-text-sib{
     color:#FF9515;
 }
 .uroan-post-nav-left img{
     margin-right:15px;
     border-radius:6px;
 }
  .uroan-post-nav-right img{
     margin-left:15px;
 }
 .uroan-alt-404{
    
         display: flex;
    align-items: center;
    padding:200px 0 180px 0;
 }
 .page-title-404{
         text-align: center;
    font-size: 48px;
    line-height: 1.4;
 }
 .page-content-404{
     text-align:center;
 }
 .ur-blog-card{
     margin-bottom:40px;
 }
 .ur-blog-card .sticky{
     position:relative;
         background: #f6f6f6;
 }
  .ur-blog-card .sticky:before{
          content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #121111;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
   .ur-blog-card .sticky .card-content{
      padding:20px;
  }
 .back-to-hm-btn{
     background:  var(--secondary-color);
box-shadow: 0px 25px 35px rgba(42, 167, 255, 0.15);
border-radius: 8px;
padding:15px 20px;
height:64px;
color:#fff;
display: inline-flex;
    align-items: center;
 }
 .imga-404-box img{
     max-width:450px;
     margin-bottom:30px;
 }
 .page-title-404{
     position:relative;
 }
  .back-to-hm-btn:visited{
      color:#fff;
  }
  .left-icon-404{
          position: absolute;
    top: 7%;
    left: -10%;
  }
  .star-one-404{
        position: absolute;
    left: 9%;
    top: 25%; 
  }
  .star-two-404{
       position: absolute;
        right: 22%;
    bottom: 14%; 
  }
  .banner-btn svg{
      width:1.185rem;
       height:1.185rem;
  }
  .med-doctor-style-two{
      background: #FFFFFF;
border: 1px solid #EDEFF2;
box-sizing: border-box;
box-shadow: 0px 25px 65px -10px rgba(0, 0, 0, 0.03);
border-radius: 8px;
padding:0 30px 30px;
text-align:center;
  }
  .swiper-slide-active .med-doctor-style-two{
      box-shadow: 0px 35px 75px -10px rgba(0, 0, 0, 0.1);
  }
  .med-doctor-style-two img{
          border-radius: 50% !important;
        margin-top: -20%;
  }
  .uroan-team-block-d.swiper-slide {
    overflow: unset;
}
 .style2-metabox-d h3{
     font-weight: 400;
font-size: 24px;
line-height: 1.4;
margin-bottom:0;
margin-top:10px;
 }
 .social-item-stl-2 ul{
     margin:0;
     padding:0;
     list-style:none;
     display:inline-flex;
     
 }
 .social-item-stl-2 ul li{
     float:left;
     margin:5px 10px;
 }
 .style-2social-box{
    justify-content: space-between;
    border-top: 1px solid #EDEFF2;
    padding: 20px 0px 0 0px;
    flex-wrap: wrap;
}
.social-item-stl-2{
    border-right:1px solid #EDEFF2;
}
.social-item-stl-2
,.star-style-2ds{
   width:48%; 
}
.social-item-stl-2 span{
      color: #2B2F3E;
    font-weight: 600;
}
.star-style-2ds span.team-stl2-lebel{
    width:100%;
    float:left;
    margin-bottom:7px;
        color: #2B2F3E;
    font-weight: 600;
}
.med-stl-3-photo{
    background: #FFFFFF;
    box-shadow: 0px 15px 55px -10px rgb(0 0 0 / 9%);
    border-radius: 250px 250px 8px 8px;
    position:relative;
    padding:10px;
    text-align:center;
}
.med-stl-3-photo-inner{
    background: linear-gradient(144.2deg, #FFCEC5 0%, #FF684C 100%);
border-radius: 250px 250px 4px 4px;
text-align:center;
    padding: 30px 0 0;
}
.med-stl-3-meta h3{
    text-align: center;
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 0;
}
.med-stl-3-meta .best-medical-treatment-right-p{
        text-align: center;
    margin: 0;
    font-weight: 500;
}
.uroan-team-block-d:nth-child(2n) .med-stl-3-photo-inner{
   background: linear-gradient(144.2deg, #E1F3FF 0%, #FF9515 100%);
}
.uroan-team-block-d:nth-child(3n) .med-stl-3-photo-inner{
  background: linear-gradient(144.2deg, #C5F1D6 0%, #4CD080 100%);
}
.med-doctor-style-four{
 border-radius: 8px;
position:relative;
padding-bottom:15px;
}
.med-dcotro-style-4-box{
      background: #F0F1F5;
border-radius: 8px;
padding:20px;  

}
.med-stl-4-photo-inner{
    text-align:center;
}
.med-stl-4-photo-inner img{
    border-radius:8px !important;
}
.med-stl-4-meta{
    text-align:center;
}
.med-stl-4-meta h3{
     text-align: center;
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 0;
}
.med-doctor-style-four:hover,
.med-doctor-style-four:hover .med-dcotro-style-4-box{
    background:#FF9515;
    position:relative;
    
}


.med-doctor-style-four:hover:after{
    content:"";
     background: url('../images/team-hover.svg') 
                no-repeat center center/cover;
    width:100%;
    height:100%;
    z-index:1;
    position:absolute;
    left:0;
    top:0;
     border-radius:8px !important;
     transition:all .2s;
    
}
.med-stl-4-meta .best-medical-treatment-right-p{
        text-align: center;
    margin: 0;
    font-weight: 500;
}
.med-stl-4-photo-inner,
.med-stl-4-meta{
     position:relative;
     z-index:5;
}
.med-4social{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.med-4social li{
    padding:5px;
}
.uroan-team-block-d{
    margin-bottom:24px;
}
 .col-lg-6.swiper-slide{
    width:100%;
}
.col-lg-4.swiper-slide{
    width:100%;
}
 .col-lg-3.swiper-slide{
    width:100%;
}
 .col-5m.swiper-slide{
    width:100%;

}
.comment-reply-link{
    background:transparent !important;
}
.uroan-site-search-wd .search-form input{
    outline:none;
    box-shadow:none;
}
.uroan-site-search-wd .search-form input[type="submit"] {
    background: 0 0 !important;
    border: none;
    color: #FF9515;
    font-size: 0;
    font-weight: 300;
        width: 64px;
    height: 64px;
    z-index: 10;
     position: relative;
}
.uroan-site-search-wd .sidebar-search #icon-addon {
    border: 1px solid #FF9515;
    background: #FF9515;
    color: #fff;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    width: 64px;
    height: 64px;
    position: relative;
}
.dm_sidebar_input_button:after {
       position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "\edbf";
    font-family: icomoon;
    font-size: 22px;
    line-height: 24px;
    color: #fff;
    color: #fff !important;
    padding-left: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-weight: 200;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.medinic-addon-icons i{
    top: 50%;
    position: absolute;
    right: 20px;
    z-index: 10;
    font-size: 20px;
}
.form-select-mb-fix .medinic-addon-icons i {
    top: 22px;
}

.medinic-addon-icons input[type="text"]{
    background-image:none !important;
}
.price-table .price-value b{
    font-family:var(--alt-font-family);
}
.home-one-subscribe .hos-email{
    position:relative;
    flex: 1;
    margin-right: 16px;
}
.home-one-subscribe .hos-email i{
       position: absolute;
    left: 20px;
    top: 43%;
    z-index: 10;
    font-size: 20px;
}
.hos-email span input{
    padding-left:11%;
}
.home-one-subscribe .wpcf7-form-control.wpcf7-submit{
    margin-bottom:0 !important;
        height: 76px;
    min-width: 181px;
    text-align: center;
    display: flex;
    justify-content: center;
}
select {
  -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
   background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 1.5L8 8.5L1 1.5' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position-x: 96%;
    background-position-y: 50%;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    margin-right: 2rem;
    padding: 1rem;
    padding-right: 2rem;
    vertical-align: middle;
}
.wpcf7-select,
.inner-addon .wpcf7-select,
.inner-addon select{
    webkit-appearance: none;
    -moz-appearance: none;
   background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 1.5L8 8.5L1 1.5' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position-x: 96%;
    background-position-y: 50%;
}
::-webkit-calendar-picker-indicator {
  opacity: 1;
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='22' viewBox='0 0 20 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.09264 8.40421H18.9166' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.4421 12.3097H14.4513' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.0046 12.3097H10.0139' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.55789 12.3097H5.56715' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.4421 16.1962H14.4513' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.0046 16.1962H10.0139' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.55789 16.1962H5.56715' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.0437 1V4.29078' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.9655 1V4.29078' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.2383 2.5791H5.77096C2.83427 2.5791 1 4.21504 1 7.22213V16.2718C1 19.3261 2.83427 20.9999 5.77096 20.9999H14.229C17.175 20.9999 19 19.3545 19 16.3474V7.22213C19.0092 4.21504 17.1842 2.5791 14.2383 2.5791Z' stroke='%2377829D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 18px;
  height: 20px;
  cursor: pointer;
  border-radius: 50%;
  margin-left: .5rem;
}
::-webkit-calendar-picker-indicator:hover {
  -webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}
@keyframes gridzyProgressIndicator {
	0% {
		transform: rotate(0deg);
		left: 50%;
	}
	100% {
		transform: rotate(360deg);
		left: 50%;
	}
}
/** Coming SOON / Maintenance **/

.uroan-mainteannce-box{
    width:100vw;
    height:100vh;
    position:relative;
}
.uroan-mainteannce-box.moverlay:before{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index:1;
    top:0;
    left:0;
}
.uroan-maintenance-style1 .mm-main-box{
    max-width:770px;
    margin:0 auto;
    background:#fff;
        padding: 40px;
    border-radius: 8px;
    text-align:center;
}
.uroan-maintenance-style1 .mm-main-box h1{
    font-size:48px;
    margin-top:30px;
}
.uroan-mainteannce-box .container{
  position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.uroan_countdown {
    font-size:0;
}
.uroan_countdown time{
    font-size:16px;
}
.uroan-maintenance-style1 .uroan-count-item{
    
    width: 120px;
    height: 120px;
    background: #4CD080;
    color:#fff;
    font-size: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items:center;
    justify-content:center;
    margin:12px;
    font-family:var(--alt-font-family);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.04);
 
}

.uroan-maintenance-style1 .emerce-count-value .label{
    font-size:18px;
      display:block;
       font-family:var(--default-font-family);
}
.stoneic1{
    max-width:75px;
    position:absolute;
    left:-10%;
    top:10%;
}
.stoneic2{
     max-width:255px;
    position:absolute;
    right:-10%;
    top:10%;
}
.stoneic3{
    max-width:86px;
    position:absolute;
       left: -8%;
    bottom: -21%;
}
.stone2ic1{
     max-width:100px;
    position:absolute;
       left: -38%;
    top: -15%;
}
.stone2ic2{
      max-width:140px;
    position:absolute;
       right: -48%;
    top: -35%;
}

.stone2ic3{
      max-width:70px;
    position:absolute;
       left: -40%;
    bottom: -35%;
}
.stone2ic4{
      max-width:105px;
    position:absolute;
       right: 30%;
    bottom: -40%;
}


/* Uroan custom code */
.breadcrumb-section .breadcrumb {
	font-size: 16px;
	font-family: Prompt;

}
.card-content h4{
	font-family: 'Prompt';
	font-size: 24px;
}
.card-content p{
	font-family: 'Prompt';
	font-size: 16px;
}
.breadcrumb-section{
	background-color: #F6F6F6 ;
}
.post-image-arcive img{
	height: 382px;
	object-fit: cover;
}
.tags-list ul{
	display: flex;
	margin-left: 0;
	gap: 20px;
}
.blog-single-content img.uron_single_page{
	width: 100%!important;
}
.custom-shadow-one a{
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04) !important;
}
.author-thumb img{
	width: 100%;
}
.comment-title-meta{
	position: relative;
}
.reply-btn .comment-reply-link {
	font-size: 16px;
	font-weight: 500;
	color: #000;
}
.comment-author-title {
	font-weight: 500;
	font-size: 24px;
	font-family: 'Prompt';
	color: rgb(18, 17, 17);
}
.social-share a{
	cursor: pointer;
}
#comments .children{
	margin-left: 30px;
}
.comment-list a{
	color: #121111;
}
#commentform>p{
	padding: 0 0!important;
}
.comment-box-information{
	margin-top: 20px;
}
.uroan-single-post-content .cat-links a , .uroan-single-post-content span.posted-on a{
	color: #74787c;
}
img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
	height: 382px;
}
.ur3-nav-menu .uroan-m-menu{
       
    justify-content: center;
}
.ur-header-right button{
    border:none;
}
.ur3-header-btns a{
      border:none;
}
/*img.img-fluid.mb-5.uron_single_page {*/
/*	height: 492px;*/
/*	object-fit: cover;*/
/*}*/
/** PROGRESS INDICATOR END **/
@media(max-width:767px){
    .uroan-blog-main-content, .uroan-single-post-content, .uroan-archive-main-content, .uroan-default-page-content {
    padding-top: 80px;
    padding-bottom: 80px;
}
    .single-post-meta ul{
        flex-wrap:wrap;
        gap:15px;
    }
    .uroan-default-header {
    height: 80px !important;
    }
    #uroan-hero-banner {
    padding: 8rem 0 2rem 0 !important;
}
    .bottom-frill-one {
    bottom: 6% !important;
    right: 24% !important;
}
      .bottom-smiley-one{
          max-width:80px;
          bottom: 39% !important;
    left: -6% !important;
      }
        .bottom-heart-one{
            max-width:60px;
                top: 21% !important;
    right: 1% !important;
        }
    html,body{
        overflow-x:hidden;
    }
.hos-email span input {
    padding-left: 14%;
}
}
@media(min-width:768px){
     .uroan-default-header .row>*{
        padding-left:0;
         padding-right:0;
    }
    .uroan-default-header {
    padding: 0 50px;
}
     .col-lg-6.swiper-slide{
    width:50%;
}
    .col-lg-4.swiper-slide{
    width:33.33333333%;
}

 .col-lg-3.swiper-slide{
    width:25%;
}
 .col-5m.swiper-slide{
    width:50%;
}
.col-lg-2.swiper-slide{
   width: 16.66666667%
}
}
@media (min-width: 576px) and (max-width: 768px){
    .med-doctor-style-two img{
        margin-top: -10%;
    }
}
@media(min-width:991px){
    .uroan-single-post .uroan-heading{
        max-width:50%;
        margin:0 auto;
    }
    .custom-arrow-position-desktop .rev-5-navigation{
        position: absolute;
    right: -10%;
    bottom: 16%;
    }
    .uroan-maintenance-style1 .mm-main-box{
        width:770px;
        padding:60px;
    }
    .tetz-meta-padding-top{
    padding:40px 40px;
    overflow:hidden;
}
.tctz-default-meta{
     padding:40px;
      overflow:hidden;
}

 .col-5m.swiper-slide{
    width:33.33333%;
}

}
@media (min-width: 1200px) { 
 .col-5m.swiper-slide{
    width:25%;
}
}
@media (min-width: 1400px) { 
 .col-5m.swiper-slide{
    width:20%;
}
}
.widget ul li .list-post-meta h4 a:hover {
	color: #f36a07;

}
.sidebar-cat-link{
	width: 20px;
}

.sidebar-widget .sidebar-check-fields li label span{
	font-size: 14px;
	font-family: Prompt;
}
#uroan_post_category_widget-2 .sidebar-widget .sidebar-check-fields li label{
	display: inline-block;
}
@media (min-width: 1036px){
.d-customL-block, .navbar.d-customL-block {
    display: block !important;
}
}
@media (min-width: 992px){
.col-lg-5d {
    flex: 0 0 auto;
    width: 20% !important;
}
}
@media (min-width: 768px){
.g-md-6, .gy-md-6 {
    --bs-gutter-y: 3rem;
}
.gx-6{
    --bs-gutter-x: 3rem !important;
}
}
.logged-in .comment-form-comment {
	margin-top: 20px;
}
.wp-block-search__inside-wrapper {
	border: none;
}

.wp-block-search .wp-block-search__button {
	height: 52px;
}

.wp-block-search__button svg {
	display: none;
}
.wp-block-code {
	margin-left: initial;
	margin-right: initial;
}
.blog-single-content {
	word-break: break-word;
}