/*--------------------------
=======CSS Indexing=======
--------------------------
1. Reset-CSS
2. Input-Box-Style
3. Posts and pages
4. Comment-Style
5. Media-Style
6. Alignment-Style
7. WordPress-Post-Caption-Style
8. Text meant only for screen readers.
9. Post-Gallery-Style
----------------------------*/

/*----------------------01. Reset-CSS ------------------------*/
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    outline: none;
}

html,
body {
    min-height: 100%;
    width: 100%;
}

input:focus,
button:focus,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

p {
    margin: 0 0 15px
}

.desc *:last-child,
p:last-child {
    margin-bottom: 0px;
}

a {
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

input:focus,
button:focus,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
}

strong {
    font-weight: 700;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

b,
strong {
    font-weight: 700;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

big {
    font-size: 125%;
}

sub,
sup {
    font-size: 12px;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

svg:not(:root) {
    overflow: hidden;
}

pre {
    display: block;
    font-family: "Courier 10 Pitch", Courier, monospace;
    padding: 30px;
    margin: 0 0 15px;
    line-height: 1.6em;
    font-size: 14px;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    overflow: auto;
    border: none;
    border-radius: 5px;
    -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid rgb(var(--gray-color));
    margin: 0 2px;
    padding: 30px;
    border-radius: 5px;
}

fieldset legend {
    border: 0;
    padding: 0;
    font-family: var(--heading-font-family);
    font-weight: 700;
    color: rgb(var(--heading-color));
    line-height: 1.4em;
}

textarea {
    overflow: auto;
    height: 160px;
}

optgroup {
    font-weight: bold;
}

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

blockquote {
    padding: 40px !important;
    border-radius: 5px;
    color: rgb(var(--text-color));
    position: relative;
    text-align: left;
    margin-bottom: 30px;
    background-color: rgb(var(--dark-color));
    border: none !important;
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    overflow: hidden;

    --heading-color: 255, 255, 255;
    --text-color: 159, 161, 165;
}


blockquote:before {
    content: "";
    width: 100px;
    height: 80px;
    background: url('../images/quote-icon.svg') no-repeat scroll center center / auto;
    position: absolute;
    right: 0;
    bottom: 0;
}

.wp-block-quote.has-text-align-right:before {
    right: auto;
    left: 0;
}



blockquote blockquote:after,
blockquote blockquote:before {
    display: none;
}

blockquote blockquote {
    padding: 0 !important;
    border-radius: 0;
    margin-bottom: 0;
    background: none;
    border: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.link_post blockquote:before {
    content: "\f0c1";

}

blockquote *:last-child {
    margin-bottom: 0px;
}

blockquote a,
blockquote cite {
    font-weight: 500;
    text-decoration: none;
    color: rgba(var(--text-color), 1);
    font-style: normal;
}

blockquote a:hover {
    color: rgba(var(--primary-color), 1);
    text-decoration: underline;
}

address {
    margin: 0 0 1.5em;
    line-height: inherit;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    padding-right: 10px;
    padding-left: 10px;
    display: inline-block;
}

abbr,
acronym {
    border-bottom: 1px dotted rgba(var(--gray-color), 1);
    cursor: help;
}

mark,
ins {
    background: rgba(var(--white-color), 1)9c0;
    text-decoration: none;
    padding: 0 4px;
    border-radius: 2px;
}

hr {
    background-color: rgba(var(--gray-color), 1);
    opacity: 1;
    border: 0;
    height: 1px;
}

table,
table th,
table td {
    border: 1px solid rgba(var(--heading-color), 0.1);
}

dd,
dt {
    line-height: inherit;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 0 1.5em;
    width: 100%;
}

td,
th {
    padding: 10px;
}

/*-- 2. Input-Box-Style --*/
.form-control,
select,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    border: 1px solid rgb(var(--gray-color));
    color: rgb(var(--text-color));
    padding: 15px 20px;
    background-color: rgba(var(--white-color), 1);
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    min-height: 64px;
    font-size: var(--body-font-size);
    border-radius: 5px;
    font-weight: 500;
}

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="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    border-color: rgba(var(--text-color), 0.3);
}

select option {
    color: #000000;
    background: #ffffff;
}

select {
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    background-image: url('../images/arrow-down.png');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center right 15px;
    padding-right: 30px;
}

.footer_area select {
    background-image: url('../images/arrow-down-dark.png');
    color: rgba(var(--white-color), 0.6);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #c5c5c5;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #c5c5c5;
}

input::placeholder,
textarea::placeholder {
    color: #c5c5c5;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-weight: 500;
}

textarea {
    width: 100%;
}

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

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

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/*-- 4. Comment-Style --*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

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

iframe {
    width: 100%;
}

iframe,
object {
    max-width: 100%;
}

/*-- 6. Alignment-Style --*/
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*-- 7. WordPress-Post-Caption-Style --*/
.wp-caption {
    max-width: 96%;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

figcaption,
.wp-caption p.wp-caption-text {
    margin: 10px 0 0;
    padding: 0 4px 5px;
    font-size: calc(var(--body-font-size) - 2px);
    line-height: calc(var(--body-line-height) - 2px);
}

caption {
    color: rgba(var(--text-color), 0.8);
}

/*-- 8. Text meant only for screen readers. --*/
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: rgba(var(--white-color), 1);
    -webkit-box-shadow: 0 0 2px 2px rgba(var(--gray-color), 1);
    box-shadow: 0 0 2px 2px rgba(var(--gray-color), 1);
    clip: auto !important;
    color: rgba(var(--primary-color), 1);
    display: block;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/*-- 9. Post-Gallery-Style --*/
.gallery {
    margin-bottom: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gallery .gallery-item {
    margin: 5px;
}

.gallery .gallery-item a {
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.gallery-columns-1 .gallery-item {
    margin-bottom: 30px;
}

.gallery-columns-2 .gallery-item {
    max-width: calc(50% - 15px);
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-columns-3 .gallery-item {
    max-width: calc(33.33% - 10px);
    overflow: hidden;
    margin-bottom: 20px;
}

.gallery-columns-4 .gallery-item {
    max-width: calc(25% - 10px);
    overflow: hidden;
    margin-bottom: 20px;
}

.gallery-columns-5 .gallery-item {
    max-width: calc(20% - 5px);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.gallery-columns-6 .gallery-item {
    max-width: calc(16.66% - 5px);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.gallery-columns-7 .gallery-item {
    max-width: calc(14.28% - 5px);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.gallery-columns-8 .gallery-item {
    max-width: calc(12.5% - 5px);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.gallery-columns-9 .gallery-item {
    max-width: calc(11.11% - 5px);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.gallery-caption {
    display: block;
}

.mejs-audio {
    margin-bottom: 30px;
}

.alignfull,
.alignwide {
    width: 100%;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    padding: 15px;
    background-color: rgba(var(--white-color), 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.alignwide {
    max-width: 100%;
}

.has-strong-magenta-background-color {
    background-color: #313131;
}

.has-strong-magenta-color {
    color: #f78da7;
}

.has-regular-font-size {
    font-size: calc(var(--body-font-size) - 2px);
}

.has-strong-red-background-color,
.has-strong-red-color {
    color: red;
}

.mt-n30 {
    margin-top: -30px !important;
}

.mb-n30 {
    margin-bottom: -30px !important;
}

.ml-n30 {
    margin-left: -30px !important;
}

.mr-n30 {
    margin-right: -30px !important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    position: relative;
}

.post-password-form input[type="submit"] {
    display: inline-block;
    font-size: var(--body-font-size);
    background-color: rgba(var(--primary-color), 1);
    color: rgba(var(--white-color), 1);
    border: 1px solid rgba(var(--primary-color), 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    text-transform: capitalize;
    outline: none;
    letter-spacing: 0.02em;
    padding: 10px 35px;
    min-height: 60px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-left: 10px;
    border-radius: 5px;
}

.post-password-form input[type="submit"]:hover {
    color: rgba(var(--primary-color), 1);
    background-color: rgba(var(--white-color), 1);
}

.wp-block-group h2,
.wp-block-search .wp-block-search__label {
    font-size: 24px;
    line-height: 34px;
    font-family: var(--heading-font-family);
    color: rgb(var(--heading-color));
    font-weight: 700;
    margin-bottom: 30px;
}

.wp-block-group h2 {
    margin-bottom: 20px;
}

.wp-block-search .wp-block-search__button {
    white-space: nowrap;
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
    font-weight: 700;
    font-family: var(--body-font-family);
    border: none;
    padding: 5px 25px;
    border-radius: 5px;
}

.wp-block-search .wp-block-search__button:hover {
    background-color: rgb(var(--dark-color));
}

.wp-block-search .wp-block-search__input {
    border-radius: 5px;
}

:root .has-pale-pink-background-color,
.wp-block-cover-image.has-background-dim:not([class*=-background-color]),
.wp-block-cover.has-background-dim:not([class*=-background-color]) {
    color: #ffffff;
}


::-webkit-scrollbar {
    width: 5px;
    background-color: #EBECEF;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #B4B8C4;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #B4B8C4;
}