/*============================================================================================
	Demo Reset
==============================================================================================*/

/* Fonts */
@font-face {
  font-family: "gordita-black";
  src: url("../fonts/Gordita\ Black.woff") format("woff"), url("../fonts/Gordita\ Black.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "gordita-bold";
  src: url("../fonts/Gordita\ Bold.woff") format("woff"), url("../fonts/Gordita\ Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "gordita-medium";
  src: url("../fonts/Gordita\ Medium.woff") format("woff"), url("../fonts/Gordita\ Medium.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "gordita-regular";
  src: url("../fonts/Gordita\ Regular.woff") format("woff"), url("../fonts/Gordita\ Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

/* Custom Variable CSS */
:root {
  --demo-primary-color: #2662fa;
  --demo-primary-color-v2: #f539f8;
  --demo-secondary-color: #04091e;
  --demo-white-color: #fff;
  --demo-title-color: #000000;
  --demo-paragraph-color: #3e3e3e;
  /* fonts Family */
  --demo-font-black: "gordita-black";
  --demo-font-bold: "gordita-bold";
  --demo-font-medium: "gordita-medium";
  --demo-font-regular: "gordita-regular";
}

*,
*::after *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Selection CSS */
::-moz-selection {
  color: var(--demo-white-color);
  background: var(--demo-secondary-color);
}
::selection {
  color: var(--demo-white-color);
  background: var(--demo-secondary-color);
}

/* Main Body CSS */
body {
  font-family: var(--demo-font-regular);
  background: var(--demo-white-color);
  color: var(--demo-paragraph-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
html {
  font-family: var(--demo-font-regular);
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html,
body {
  height: 100%;
  margin: 0;
}

/* Main Container */
.container {
  max-width: 1340px;
  padding: 0px;
}
.container-fluid {
  padding: 0;
  padding: 0px 80px;
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .container {
    padding: 0% 5%;
  }
  .container-fluid {
    padding: 0% 5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    padding: 0% 5%;
  }
  .container-fluid {
    padding: 0% 5%;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0% 5%;
  }
  .container-fluid {
    padding: 0% 5%;
  }
}

/* Demo Typhography */
img {
  max-width: 100%;
  border-radius: 4px;
}
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;
}
a {
  text-decoration: none;
}
a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}
.animated:focus-visible {
  outline: none;
}
.table {
  display: table;
  width: 100%;
  height: 100%;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  transition: all 0.4s ease;
}
button:focus-visible {
  outline: none;
}
input:focus-visible {
  outline: none;
}
textarea:focus-visible {
  outline: none;
}
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;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  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;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
.btn-close:focus {
  box-shadow: none;
}
button,
input,
select,
optgroup,
textarea {
  font-family: var(--demo-font-regular);
  color: var(--demo-paragraph-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
}
.c-font,
.c-font a {
  font-family: var(--demo-font-regular);
}

a,
button,
input,
textarea {
  font-weight: 400;
}
img,
a,
input,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  transition: all 0.4s ease;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: var(--demo-font-regular);
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font-family: var(--demo-font-regular);
  font-size: 15px;
  font-size: 0.9375rem;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ul li,
li {
  list-style-type: disc;
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  display: inline-block;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  max-width: 100%;
}
figure {
  margin: 1em 0;
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #bbb #bbb #bbb;
  border-radius: 3px;
  background: #fff;
  color: #bbb;
  line-height: 1;
}
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: #bbb;
  border: 1px solid #bbb;
  border-radius: 3px;
  padding: 3px;
}
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: #393e46;
}
select {
  border: 1px solid #ccc;
}
textarea {
  width: 100%;
}
a {
  color: inherit;
}
a:hover,
a:focus,
a:active {
  color: var(--demo-title-color);
}
a:hover,
a:active {
  outline: 0;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
#content[tabindex="-1"]:focus {
  outline: 0;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}
.sticky {
  display: block;
}
.hentry {
  margin: 0 0 1.5em;
}
.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;
}
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}
.infinity-end.neverending .site-footer {
  display: block;
}
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
embed,
iframe,
object {
  max-width: 100%;
}
.custom-logo-link {
  display: inline-block;
}

/* Heading Title */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
}
h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
  font-family: var(--demo-font-bold);
  color: var(--demo-title-color);
  font-weight: 800;
  line-height: 152%;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 38px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 25px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}

/* Paragraph Text */
p {
  color: var(--demo-paragraph-color);
  margin: 0;
  line-height: 172%;
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 15px;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 14px !important;
  }
}

/* Demo Section Head */
.template-demo-section-head {
  text-align: center;
  margin-bottom: 20px;
}
.template-demo-section-head-big-title {
  font-size: 100px;
  line-height: 152%;
  font-family: var(--demo-font-black);
  position: relative;
  margin-bottom: -77px;
  z-index: -1;
  -webkit-text-stroke: 4px transparent;
  background: linear-gradient(180deg, rgba(38, 98, 250, 0.2) 4.38%, rgba(38, 98, 250, 0) 68.98%);
  background-clip: border-box;
  -webkit-background-clip: text;
  color: #fff;
}
.template-demo-section-head-sm-title {
  margin: 0;
  font-size: 48px;
  text-align: center;
  line-height: 1.3;
}
.template-demo-section-head-sm-title .border-shape {
  display: inline-block;
  position: relative;
}
.template-demo-section-head-sm-title .border-shape::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 16px;
  /* background-image: url("../img/border-shape.svg"); */
  bottom: 11px;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
/* .template-demo-section-head-sm-title .border-shape.border-shape-v2::before {
  background-image: url("../img/home-2/border-shape.svg");
} */
.template-demo-section-head-sm-title.white {
  color: var(--demo-white-color);
  font-size: 56px;
}

.template-demo-section-head-big-title.white {
  font-size: 100px;
  line-height: 152%;
  font-family: var(--demo-font-black);
  position: relative;
  margin-bottom: -77px;
  z-index: -1;
  -webkit-text-stroke: 4px transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.21) 4.38%, rgba(255, 255, 255, 0) 68.98%);
  background-clip: border-box;
  -webkit-background-clip: text;
  color: var(--demo-secondary-color);
}
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .template-demo-section-head-sm-title,
  .template-demo-section-head-sm-title.white {
    font-size: 32px;
    line-height: 37px;
  }
  .template-demo-section-head-big-title,
  .template-demo-section-head-big-title.white {
    margin-bottom: -55px;
    font-size: 46px;
    line-height: 123px;
  }
  .template-demo-section-head-sm-title .border-shape {
    margin-left: 6px;
  }
  .template-demo-section-head-sm-title .border-shape::before {
    bottom: 1px;
    background-size: contain;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .template-demo-section-head-sm-title,
  .template-demo-section-head-sm-title.white {
    font-size: 32px;
    line-height: 37px;
  }
  .template-demo-section-head-big-title,
  .template-demo-section-head-big-title.white {
    margin-bottom: -55px;
    font-size: 46px;
    line-height: 123px;
  }
  .template-demo-section-head-sm-title .border-shape {
    margin-left: 6px;
  }
  .template-demo-section-head-sm-title .border-shape::before {
    bottom: 1px;
    background-size: contain;
  }
}

@media only screen and (max-width: 767px) {
  .template-demo-section-head-sm-title,
  .template-demo-section-head-sm-title.white {
    font-size: 28px;
    line-height: 37px;
  }
  .template-demo-section-head-big-title,
  .template-demo-section-head-big-title.white {
    margin-bottom: -60px;
    font-size: 38px;
    line-height: 123px;
  }
  .template-demo-section-head-sm-title .border-shape {
    margin-left: 6px;
  }
  .template-demo-section-head-sm-title .border-shape::before {
    bottom: 1px;
    background-size: contain;
  }
}

/* Demo Buttons */
.demo-btn {
  background: var(--demo-primary-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  color: var(--demo-white-color);
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-block;
  margin-right: 24px;
  text-align: center;
}
.demo-btn:last-child {
  margin: 0;
}
.demo-btn:hover {
  background: var(--demo-secondary-color);
  color: var(--demo-white-color);
}

/* Demo Secondary Button */
.demo-btn.secondary {
  background: #ffbb38;
  color: #04091e;
}
.demo-btn.secondary:hover {
  background: #ffbb38;
  color: #04091e;
}

@media only screen and (max-width: 767px) {
  .demo-btn {
    font-size: 14px;
    margin-right: 12px;
  }
}

/* Demo Buttons */
.demo-btn-v2 {
  background: #ffbb38;
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  color: var(--demo-white-color);
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-block;
  margin-right: 24px;
  text-align: center;
  color: #04091e;
}
.demo-btn-v2:last-child {
  margin: 0;
}
/* .demo-btn-v2:hover {
  background: linear-gradient(134.38deg, #5356fb, #c342f9 43.55%, #f539f8 104.51%);
  color: var(--demo-white-color);
} */

/* Demo Secondary Button */
.demo-btn-v2.secondary {
  background: var(--demo-white-color);
  color: #04091e;
}
.demo-btn-v2.secondary:hover {
  background: var(--demo-secondary-color);
  color: var(--demo-white-color);
}

@media only screen and (max-width: 767px) {
  .demo-btn-v2 {
    font-size: 14px;
    margin-right: 12px;
  }
}

@media only screen and (min-width: 1280px) and (max-width: 1500px) {
  .container {
    max-width: 1240px;
  }
}

/*============================================================================================
	End Demo Reset
==============================================================================================*/
