/*
Theme Name: Colonels
Author: Ravi
Author URI: https://www.dewdot.com
Description: Cuatom theme made for colonelsacademy.in
Version: 1.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
/* variables */
:root {
  --color-primary: #AA4A44;
  --color-primary-dark: #72061c;
  --color-secondary: #46298a;
  --color-primary-light: #ff7b67;
  --color-secondary-light: #f0edff;
  --color-light: #fff0eb;
  --color-gray: #585d69;
  --color-dark: #323232;
  --color-text: #2b2b2b;
  --color-text2: #d3d3d3;
  --color-text-primary: #ffc3d0;
  --color-bold: #111111;
  --color-border: #c7a99d;
  --shadow: 0 0 1rem 1px #eeeeee;
  --shadow-light: 0 0 6px 2px var(--color-light);
  --shadow-secondary-light: 0 0 6px 1px var(--color-secondary-light);
  --shadow-secondary: 0 0 6px var(--color-secondary);
  --gradient: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  --font-body: "Sora", sans-serif;
  --font-heading: "Sora", sans-serif;
  --font-weight-bold: 500;
}

/* Default Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* HTML, Body
----------------------- */
html:focus-within {
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Body */
body {
  background-color: #ffffff;
  color: var(--color-text);
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

/* Regions
----------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

template,
[hidden] {
  display: none;
}

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

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

/* Heading */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-bold);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-style: normal;
  text-wrap: balance;
  line-height: 1.4;
  margin: 0 0 6px 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

h5, h6 {
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* Typography -> Paragraph */
p {
  margin: 0 0 20px 0;
}

/* link */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  color: var(--color-primary);
  background-color: transparent;
  text-decoration: none;
  transition: color 0.4s ease;
}

a:hover {
  color: var(--color-secondary);
}

/* Typography -> Abbreviation */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

abbr {
  cursor: help;
}

acronym {
  border-bottom: 1px dotted;
  cursor: help;
}

/* Typography -> Text styling */
b,
strong {
  font-weight: var(--font-weight-bold);
  color: var(--color-bold);
}

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

mark,
ins {
  background-color: var(--color-light);
  padding: 0 2px;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}

/* Typography -> Blockquote */
blockquote {
  position: relative;
  background-color: var(--color-light);
  margin-bottom: 20px;
  padding: 1.5rem;
  border-left: 6px solid var(--color-primary);
  isolation: isolate;
  z-index: 1;
}

/* set maximum width of images */
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* List */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* form */
form {
  margin-bottom: 1rem;
}

input,
button,
textarea,
select {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
}

button, input, label {
  line-height: 1.1;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

textarea:not([rows]) {
  min-height: 10em;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0;
}

button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

input {
  line-height: normal;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=url],
textarea {
  background-color: #ffffff;
  padding: 10px;
  max-width: 100%;
  border-radius: 4px;
  border: 0;
  outline: 0;
  border: 2px solid var(--color-secondary-light);
  transition: all 0.3s ease-in-out;
}

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=url]:focus,
textarea:focus,
.kaliforms-form-container textarea:focus {
  background-color: var(--color-secondary-light);
  border: 2px solid var(--color-dark);
  outline: 0;
}

textarea {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}

.button,
button,
input[type=submit],
input[type=button],
input[type=reset] {
  position: relative;
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 10px 16px;
  border: 0;
  outline: 0;
  border-radius: 6px;
  transition: all 0.4s ease;
}

.button:hover,
button:hover,
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover {
  background-color: var(--color-secondary);
  color: #ffffff;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 6px;
  padding: 0;
  padding: 0;
  box-sizing: border-box;
}

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

input[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

fieldset {
  margin: 0 0 10px 0;
  padding: 1rem;
  border: 1px solid var(--color-border);
}

fieldset > :last-child {
  margin-bottom: 0;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  border: 0;
  box-sizing: border-box;
  white-space: normal;
}

optgroup {
  font-weight: var(--font-weight-bold);
}

select {
  padding: 4px;
}

form label {
  font-weight: var(--font-weight-bold);
}

label[for] {
  cursor: pointer;
}

/* Summary */
details {
  margin-bottom: 1rem;
  background-color: var(--color-secondary-light);
}

summary {
  background-color: var(--color-secondary-light);
  color: var(--color-text);
  padding: 0.5rem;
  cursor: pointer;
}

details[open] summary {
  background-color: var(--color-dark);
  color: #ffffff;
}

details .form-details-wrapper {
  background-color: #ffffff;
  padding: 1rem;
}

/* Drupal form elements */
.form-item {
  margin-bottom: 1rem;
}

.form-required:after {
  content: "*";
  display: inline-block;
  color: var(--color-primary);
  padding-left: 4px;
  font-size: 0.8em;
  vertical-align: super;
}

label.option {
  display: inline;
  font-weight: normal;
}

form .description {
  color: var(--color-text2);
  font-size: 0.9rem;
}

/* Table
----------------------- */
table {
  width: 100%;
  margin-bottom: 1.2rem;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
tr,
td {
  vertical-align: middle;
}

th {
  background: var(--color-secondary);
  font-family: var(--font-heading);
  color: #ffffff;
  margin: 0;
  padding: 10px;
  border: 2px solid var(--color-border);
  text-align: left;
}

th a {
  color: #ffffff;
}

td {
  padding: 5px 10px;
  border: 2px solid var(--color-border);
}

/* placeholder */
::-webkit-input-placeholder {
  color: #8a8a8a;
}

:-moz-placeholder {
  color: #8a8a8a;
}

::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8a8a8a;
}

/* Misc
----------------------- */
::-moz-selection {
  background: var(--color-dark);
  color: #ffffff;
}
::selection {
  background: var(--color-dark);
  color: #ffffff;
}

::-moz-selection {
  background: var(--color-dark);
  color: #ffffff;
}

/* sora-regular */
@font-face {
  font-display: swap;
  font-family: "Sora";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/sora.woff2") format("woff2");
}
/* sora-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Sora";
  font-style: normal;
  font-weight: 500;
  src: url("./fonts/sora-bold.woff2") format("woff2");
}
.full-width {
  width: 100%;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.main-container {
  display: grid;
  width: 100%;
  gap: 1.5rem;
}

/* Two column blog pages */
.blog .main-container {
  grid-template-columns: 100%;
}

.main,
.sidebar {
  min-width: 0px;
}

.block-title {
  position: relative;
}

/* Slider bottom section */
.section-slider-bottom {
  background-color: var(--color-primary);
  padding: 1.5rem 0;
}

.slider-bottom-container {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.slider-bottom {
  flex: 1 0 190px;
  padding: 10px;
  border: 2px solid #ffffff;
  border-radius: 6px;
}

.slider-bottom-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-bottom-item i {
  color: var(--color-primary-light);
}

.slider-bottom-title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.slider-bottom p {
  margin: 0 0 10px 0;
}

.slider-bottom p:last-of-type {
  margin: 0;
}

.slider-bottom a {
  color: #ffffff;
}

.slider-bottom a:hover {
  color: var(--color-text-primary);
}

/* sidebar and footer */
.sidebar .block-title,
.footer .block-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  padding-bottom: 6px;
}

.sidebar .block-title::before,
.footer .block-title::before,
.sidebar .block-title::after,
.footer .block-title::after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 2px;
}

.sidebar .block-title::before,
.footer .block-title::before {
  background-color: var(--color-primary);
  width: 16px;
  left: 0;
}

.footer .block-title::after {
  background-color: var(--color-text2);
  left: 18px;
  width: 3rem;
}

.sidebar .block-title::after {
  background-color: var(--color-secondary);
  left: 18px;
  width: 3rem;
}

/* Latest blog post - List style */
.wp-block-latest-posts__list li {
  padding: 1rem;
  box-shadow: var(--shadow);
}

.wp-block-latest-posts__list .wp-block-latest-posts__post-title {
  border-bottom: 1px solid var(--color-dark);
}

/* Custom component - Notice list */
.block-notice-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  list-style-type: none;
  margin: 0 0 1rem 0;
  padding: 0;
}

.block-notice-list-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

/* Header top */
.header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.5rem 0;
}

.header-top-block p:last-of-type {
  margin: 0;
}

.header-top-block a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.header-top-block a:hover {
  color: var(--color-primary-light);
}

/* Header top - header top icons */
.header-top-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-top-icon {
  display: none;
  place-content: center;
  background-color: var(--color-primary);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.header-top-section:hover .header-top-icon {
  background-color: var(--color-primary);
  color: var(--color-primary-light);
}

.header-icon {
  display: grid;
  place-content: center;
  background-color: var(--color-dark);
  color: #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.header-icon:hover {
  background-color: var(--color-primary);
}

.header .menu {
  display: flex;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

/* Header main */
.header-main {
  position: sticky;
  top: 0;
  background-color: var(--color-primary);
  padding: 10px 0;
  z-index: 2;
  transition: all 0.2s linear;
}

.sticky-header-active {
  padding: 4px 0;
}

.header-main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Header - Logo */
.logo {
  display: block;
  max-height: 70px;
  width: auto;
  transition: all 0.2s linear;
}

.sticky-header-active .logo {
  max-height: 60px;
}

/* Header main - header-right */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Header main - header-right - Login buttons */
.header-block-login a {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.header-block-login a:hover {
  background-color: var(--color-dark);
}

/* Header main menu */
.header-right-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
}

.mobile-menu-icon span {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary-light);
  transform-origin: left;
  transition: all 0.5s ease;
}

.mobile-menu-icon span:nth-child(2) {
  background-color: #ffffff;
}

.menu-icon-active span:first-child {
  transform: rotate(45deg);
}

.menu-icon-active span:last-child {
  transform: rotate(-45deg);
}

.menu-icon-active span:nth-child(2) {
  display: none;
}

.close-mobile-menu {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-content: center;
  background-color: var(--color-primary);
  color: #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 105;
}

.primary-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-dark);
  padding: 1rem;
  transform: translateX(-100%);
  transition: all 0.3s linear;
  z-index: 100;
}

.active-menu {
  transform: translateX(0);
  box-shadow: 6px 0 12px #111111;
}

.menu-main-container .menu {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-main-container .menu,
.menu-main-container .sub-menu {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-main-container .menu > li {
  border-bottom: 1px solid var(--color-gray);
}

.menu-main-container .menu a {
  display: block;
  color: #ffffff;
  padding: 0.5rem 0;
}

.menu-main-container .menu a:hover {
  color: #ffffff;
}

.menu-item-has-children {
  position: relative;
}

.menu-main-container .sub-menu {
  padding: 0 0 0 2rem;
}

.menu-main-container .sub-menu li {
  border-bottom: 1px solid var(--color-gray);
}

.menu-main-container .sub-menu li:last-child {
  border: 0;
}

.menu-main-container .sub-menu li:first-child {
  border-top: 1px solid var(--color-text2);
}

.header-block-menu {
  color: #ffffff;
  z-index: 5;
}

.header-block-menu a {
  color: #ffffff;
}

/* Header search */
.header-search {
  position: relative;
}

.header-icon-search {
  cursor: pointer;
}

.header-search-wrap {
  position: fixed;
  left: 0;
  top: -100%;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transition: background-color 0.3s linear;
  will-change: top, background-color;
  z-index: 90;
}

.header-search-active .header-search-wrap {
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.header-search-block {
  background-color: #1d1d1d;
  width: 100%;
  height: 50vh;
  transform: translateY(-100%);
  transition: transform 0.3s linear 0.3s;
}

.header-search-active .header-search-block {
  transform: translateY(0);
}

.header-block-search form {
  margin: 0;
}

.header-search-shadow {
  cursor: url("./images/cursor.svg"), auto;
}

.close-header-search {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #ffffff;
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 92;
}

.close-header-search:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

.header-search-section {
  flex: 1 1 50%;
}

.header-block-search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 50vh;
}

.header-block-search .wp-block-search {
  position: relative;
  background-color: transparent;
  color: var(--color-text2);
  width: 100%;
  font-size: 1.5rem;
  border: 0;
  outline: 0;
  box-shadow: none;
  white-space: pre-wrap;
  word-wrap: break-word;
  resize: none;
}

.header-block-search .wp-block-search:focus {
  background-color: transparent;
  box-shadow: none;
}

.header-block-search .wp-block-search::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  transition: all 0.4s linear 1s;
}

.header-search-active .header-block-search .wp-block-search::before {
  width: 100%;
}

.wp-block-search__inside-wrapper {
  display: flex;
}

.header-block-search input[type=search] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-grow: 1;
  background-color: transparent;
  color: var(--color-text2);
  border: 0;
  outline: 0;
  box-shadow: none;
}

.header-block-search button {
  background-color: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.3s linear 1.4s;
}

.header-search-active .header-block-search button {
  opacity: 1;
}

.header-block-search button svg {
  fill: #ffffff;
  transform: scale(1.5);
}

/* Header page */
.header-page-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 2px solid var(--color-border);
  padding: 1.5rem 0 1rem 0;
}

.header-page-container h1 {
  margin: 0;
}

.main-wrap {
  padding: 2rem 0;
  min-height: 60vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-block {
  padding: 1rem;
  box-shadow: var(--shadow);
}

.sidebar ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
}

.footer-block .block-title {
  font-weight: 400;
}

.footer-block p:last-of-type {
  margin: 0;
}

.footer-block ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-top {
  background-color: var(--color-light);
}

.footer-top-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

/* Footer main */
.footer-main {
  padding: 2rem 0;
}

.footer-main-container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-main-block {
  flex: 1 0 280px;
}

.footer-main-container li {
  padding: 6px 0;
  border-bottom: 1px solid var(--color-gray);
  transition: all 0.4s ease;
}

.footer-main-container li:hover {
  border-bottom: 1px solid #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  padding: 1rem 0;
}

.footer-bottom a {
  color: #ffffff;
}

.footer-bottom a:hover {
  color: var(--color-primary-light);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Blog category page */
.blog .main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.blog .article-summary {
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 5px var(--color-border);
}

.summary-header {
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--color-border);
}

.post-category .post-categories::before {
  content: "#";
}

.post-category .post-categories {
  display: flex;
  gap: 6px;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Notice */
.notice-list {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.notice-list-header {
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
}

/* Gallery */
.gallery-posts {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gallery-post-item {
  flex: 1 0 300px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.gallery-post-item-title a {
  font-size: 20px;
  font-weight: 400;
  border-bottom: 1px solid var(--color-dark);
}

/*!
 *  Iconly icon font. Generated by Iconly: https://iconly.io/
 */
@font-face {
  font-display: auto;
  font-family: "thex";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/thex.woff2") format("woff2");
}
[class=ficon], [class^=ficon-], [class*=" ficon-"] {
  display: inline-block;
  font-family: "thex" !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.ficon-close:before {
  content: "\e000";
}

.ficon-comment-add:before {
  content: "\e001";
}

.ficon-check:before {
  content: "\e002";
}

.ficon-alert:before {
  content: "\e003";
}

.ficon-alert-circle:before {
  content: "\e004";
}

.ficon-clock:before {
  content: "\e005";
}

.ficon-quote:before {
  content: "\e006";
}

.ficon-arrow-left:before {
  content: "\e007";
}

.ficon-arrow-right:before {
  content: "\e008";
}

.ficon-angle-right:before {
  content: "\e009";
}

.ficon-angle-left:before {
  content: "\e00a";
}

.ficon-comment:before {
  content: "\e00b";
}

.ficon-info:before {
  content: "\e00c";
}

.ficon-bell:before {
  content: "\e00d";
}

.ficon-horn:before {
  content: "\e00e";
}

.ficon-arrow-up:before {
  content: "\e00f";
}

.ficon-phone:before {
  content: "\e010";
}

.ficon-map:before {
  content: "\e011";
}

.ficon-mail:before {
  content: "\e012";
}

.ficon-share:before {
  content: "\e013";
}

.ficon-telegram:before {
  content: "\e014";
}

.ficon-hashtag:before {
  content: "\e015";
}

.ficon-vimeo:before {
  content: "\e016";
}

.ficon-whatsapp:before {
  content: "\e017";
}

.ficon-vk:before {
  content: "\e018";
}

.ficon-instagram:before {
  content: "\e019";
}

.ficon-youtube:before {
  content: "\e01a";
}

.ficon-file:before {
  content: "\e01b";
}

.ficon-comments:before {
  content: "\e01c";
}

.ficon-linkedin:before {
  content: "\e01d";
}

.ficon-github:before {
  content: "\e01e";
}

.ficon-facebook:before {
  content: "\e01f";
}

.ficon-twitter:before {
  content: "\e020";
}

.ficon-calendar:before {
  content: "\e021";
}

.ficon-user:before {
  content: "\e022";
}

.ficon-search:before {
  content: "\e023";
}

.ficon-feed:before {
  content: "\e024";
}

.ficon-bookmark:before {
  content: "\e025";
}

.ficon-plus:before {
  content: "\e026";
}

.ficon-minus:before {
  content: "\e027";
}

.ficon-login:before {
  content: "\e028";
}

.ficon-logout:before {
  content: "\e029";
}

.breadcrumbs i {
  font-size: 0.8rem;
}

/* pagination */
.pagination {
  margin-top: 1rem;
}

.pagination .nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: grid;
  place-content: center;
  background-color: var(--color-dark);
  color: #ffffff;
  min-height: 44px;
  min-width: 44px;
  padding: 0 6px;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.pagination .page-numbers:hover {
  background-color: var(--color-secondary);
}

.pagination a.page-numbers {
  background-color: var(--color-primary);
}

/* Scroll To Top
------------------------- */
.scrolltop {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  right: 10px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 6px;
  z-index: 20;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.scrolltop i {
  font-size: 1.5rem;
}

.scrolltop:hover {
  background-color: var(--color-secondary);
}

/* display
--------------------------- */
.disply-block {
  display: block;
}

.view-desktop {
  display: none;
}

.view-mobile {
  display: block;
}

/* Color
--------------------------- */
.color-primary {
  color: var(--color-primary);
}

.color-secondary {
  color: var(--color-secondary);
}

.color-dark {
  color: var(--color-dark);
}

.color-border {
  color: var(--color-border);
}

.color-white {
  color: #ffffff;
}

/* Text align
--------------------------- */
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-justify {
  text-align: justify;
}

.center {
  margin: 0 auto;
}

/* Inline content
------------------------- */
.inline {
  display: inline-block;
}

.inline:not(:last-child) {
  padding-right: 1rem;
}

/* Margin Padding
------------------------- */
.no-margin {
  margin: 0;
}

.no-paddibng {
  padding: 0;
}

/* Content direction
------------------------- */
.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

.heading {
  color: var(--color-bold);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

/* Font size
------------------------- */
.font-size-small {
  font-size: small;
}

.font-size-smaller {
  font-size: smaller;
}

.font-size-medium {
  font-size: medium;
}

.font-size-large {
  font-size: large;
}

.font-size-larger {
  font-size: larger;
}

.font-size-large-x {
  font-size: x-large;
}

.font-size-large-xx {
  font-size: xx-large;
}

.font-size-large-xxx {
  font-size: xxx-large;
}

.font-size-2x {
  font-size: 2rem;
}

.font-size-3x {
  font-size: 3rem;
}

.font-size-4x {
  font-size: 4rem;
}

.font-size-5x {
  font-size: 5rem;
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

/* Content width
------------------------- */
.width30,
.width40,
.width50,
.width60,
.width70,
.width80,
.width90 {
  width: 100%;
  clear: both;
  display: block;
}

/* Spacer
------------------------- */
.spacer,
.spacer-small,
.spacer-x,
.spacer-xx {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.spacer {
  padding: 1rem 0;
}

.spacer-small {
  padding: 0.5rem 0;
}

.spacer-x {
  padding: 2rem 0;
}

.spacer-xx {
  padding: 3rem 0;
}

/* Responsive Columns
------------------------- */
.section,
.section-small,
.section-large,
.section-large-x,
.section-large-xx {
  display: block;
  width: 100%;
}

.section {
  padding: 2rem 0;
}

.section-small {
  padding: 1rem 0;
}

.section-large {
  padding: 3rem 0;
}

.section-large-x {
  padding: 4rem 0;
}

.section-large-xx {
  padding: 5rem 0;
}

/* Responsive Columns
------------------------- */
.flex,
.grid,
.items,
.columns,
.grid-container,
.flex-container,
.items-3,
.items-2 {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.flex,
.flex-container,
.columns {
  display: flex;
}

.flex-container,
.columns {
  flex-wrap: wrap;
}

.grid,
.grid-container,
.items,
.items-3,
.items-2 {
  display: grid;
}

.grid-container {
  grid-auto-flow: column;
}

.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
}

.items-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.items-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(410px, 1fr));
}

.grid-item img .item img {
  display: block;
}

.column {
  flex: 1 1 230px;
  margin: 0;
  padding: 0;
}

/* Flex and grid properties
------------------------- */
.space-between {
  justify-content: space-between;
}

.v-center {
  align-items: center;
}

.h-center {
  justify-content: center;
}

.vh-center {
  justify-content: center;
  align-items: center;
}

.gap {
  gap: 1rem;
}

.gap-x {
  gap: 2rem;
}

.gap-small {
  gap: 0.5rem;
}

.no-gap {
  gap: 0;
}

/* Flex properties */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.w10,
.w20,
.w30,
.w40,
.w50,
.w60,
.w70,
.w80,
.w90 {
  flex: 1 1 100%;
}

.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

/* grid properties */
.grid-center {
  place-content: center;
}

/* title */
.text-outline {
  color: transparent;
  font-weight: var(--font-weight-bold);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--color-dark);
  text-stroke: 1px var(--color-text2);
  paint-order: stroke fill;
  line-height: 1.2;
}

.text-gradient {
  background: var(--gradient);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Box */
.box {
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.box p:last-of-type {
  margin: 0;
}

/* Media - Image */
img.round {
  border-radius: 14px;
}

img.border {
  border: 5px solid var(--color-border);
}

img.border-primary {
  border: 5px solid var(--color-primary);
}

img.border-secondary {
  border: 5px solid var(--color-secondary);
}

img.shadow {
  box-shadow: 0 0 1rem #444444;
}

img.shadow-primary {
  box-shadow: var(--shadow-primary);
}

img.shadow-secondary {
  box-shadow: var(--shadow-secondary);
}

/* Media - Audio, video */
.section-audio audio {
  min-width: 300px;
  width: 100%;
}

.section-audio audio:focus {
  outline-width: 2px;
  outline-style: solid;
}

.section-video video {
  vertical-align: middle;
  width: 100%;
}

/* Separator */
hr.line-dot {
  border-bottom: 2px dotted var(--color-border);
}

hr.line-dash {
  border-bottom: 2px dashed var(--color-border);
}

hr.line-double {
  height: 5px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Link style */
.link-underline {
  position: relative;
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  transition: 0.4s ease;
}

.link-underline:hover {
  color: var(--color-primary);
}

.link-underline::before,
.link-underline::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  height: 2px;
  transition: width 0.4s ease;
}

.link-underline::before {
  background-color: var(--color-secondary);
  left: auto;
  width: 100%;
}

.link-underline::after {
  left: auto;
  width: 0;
  background-color: var(--color-primary);
}

.link-underline:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.link-underline:hover::before {
  width: 0;
}

/* Masked image
------------------------- */
.image-masked-animated {
  display: block;
  border-radius: 28% 72% 71% 29%/52% 45% 55% 48%;
  overflow: hidden;
  animation: image-masked-shape 5s linear infinite;
}

/* Animations */
/* Animations - slide up */
@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes image-masked-shape {
  0%, 100% {
    border-radius: 28% 72% 71% 29%/52% 45% 55% 48%;
  }
  50% {
    border-radius: 64% 36% 56% 44%/60% 69% 31% 40%;
  }
}
/* Dark elements */
.dark,
.dark-element {
  background-color: var(--color-dark);
  color: var(--color-text2);
}

.dark :is(h1, h2, h3, h4, h5, h6, strong),
.dark-element :is(h1, h2, h3, h4, h5, h6, strong) {
  color: #ffffff;
}

/* Primary elements */
.primary-element {
  background-color: var(--color-primary);
}

/* tablet */
@media (min-width: 768px) {
  /* page layout */
  .blog .main-container {
    grid-template-columns: 3fr 1fr;
  }
  /* Header -top */
  .header-top-icon {
    display: grid;
  }
  /* Header login buttons */
  .header-block-login a {
    background-color: var(--color-primary-dark);
    padding: 5px 8px;
  }
}
/* desktop */
@media (min-width: 1024px) {
  .view-desktop {
    display: block;
  }
  .view-mobile {
    display: none;
  }
  .header-block-menu {
    color: var(--color-bold);
    font-weight: var(--font-weight-bold);
  }
  .primary-menu-wrapper {
    position: relative;
    background-color: transparent;
    padding: 0;
    transform: translateX(0);
    z-index: 2;
  }
  .menu-main-container .menu {
    flex-direction: row;
    gap: 1rem;
  }
  .menu-main-container .menu > li {
    border: 0;
  }
  .menu-main-container .menu > li > a {
    padding: 1rem 0;
  }
  .menu-item-has-children > a {
    position: relative;
  }
  .menu-item-has-children > a::after {
    content: "+";
  }
  .menu-main-container .sub-menu {
    position: absolute;
    list-style: none;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    background-color: var(--color-primary);
    top: calc(100% - 2px);
    font-size: 16px;
    min-width: 220px;
    padding: 0 10px;
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
  }
  .menu-main-container .sub-menu li {
    padding: 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 0;
  }
  .menu-main-container .sub-menu li:last-child {
    border-top: 1px solid var(--color-border);
  }
  .menu-main-container .sub-menu li:first-child {
    border-top: 1px solid var(--color-border);
  }
  .menu-main-container .sub-menu a {
    color: #ffffff;
  }
  .menu-main-container .sub-menu a {
    display: block;
    padding: 0.5rem 0;
  }
  .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    animation: slideUp 0.5s forwards;
  }
  .menu-main-container .sub-menu a:hover {
    color: var(--color-primary-light);
  }
  /* third level menu */
  .menu-main-container .sub-menu .sub-menu {
    left: 100%;
    top: 0;
  }
  .sub-menu .menu-item-has-children::before {
    right: 0;
    color: #ffffff;
  }
  .mobile-menu-icon,
  .close-mobile-menu {
    display: none;
  }
}
@media (max-width: 1023px) {
  .primary-menu-wrapper {
    width: 90%;
    max-width: 320px;
    height: 100%;
    overflow-y: auto;
  }
  .menu-item-has-children::before {
    position: absolute;
    content: "+";
    color: var(--color-primary);
    right: 0;
    top: 0.6rem;
  }
}
/* mobile */
@media (max-width: 767px) {
  .header-top-block {
    flex: 1 0 calc(33% - 1rem);
  }
  .logo,
  .sticky-header-active .logo {
    max-height: 60px;
  }
}
@media (max-width: 480px) {
  .header-top-block {
    flex: 1 0 calc(50% - 1rem);
  }
  .logo,
  .sticky-header-active .logo {
    max-height: 40px;
  }
}/*# sourceMappingURL=style.css.map */