/* Personal Portfolio HTML

Template Name: Personal
Version: 1.0.0
¸ü¶àÏÂÔØ£ºHttp://www.uu2018.com
License: copyright commercial
/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global Settings
4. Main Header / TwO
5. Sticky Header 
6. Mobile Menu
7. Hero Section
**********************************************/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Syne:wght@400;500;600;700;800&display=swap");
@import url("animate.css");
@import url("jquery.fancybox.min.css");
@import url("linear.css");
@import url("fontawesome.css");
@import url("flaticon.css");
@import url("tm-bs-mp.css");
:root {
  --theme-color-light: #ffffff;
  --theme-color-dark: #202020;
  --theme-color-dark2: #101010;
  --theme-color1: #00c566;
  --bg-theme-color1: var(--theme-color1);
  --text-color: #A0A1A6;
  --headings-color: var(--theme-color-dark);
  --link-color: var(--text-color);
  --link-hover-color: var(--theme-color1);
  --text-font: "Poppins", sans-serif;
  --title-font: "Syne", sans-serif;
  --body-font-size: 14px;
  --body-line-height: 25px;
  --body-font-weight: 400;
  --line-height-heading-h1: 1em;
  --line-height-heading: 1.2em;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 100px;
  --h2-font-size: 50px;
  --h3-font-size: 32px;
  --h4-font-size: 24px;
  --h5-font-size: 20px;
  --h6-font-size: 18px;
  --h1-font-weight: 600;
  --h2-font-weight: 700;
  --h3-font-weight: 700;
  --h4-font-weight: 700;
  --h5-font-weight: 700;
  --h6-font-weight: 700;
  --sec-title-subtitle-color: var(--text-color);
  --sec-title-subtitle-font-size: var(--body-font-size);
  --sec-title-subtitle-font-family: var(--text-font);
  --sec-title-subtitle-font-weight: 500;
  --sec-title-subtitle-line-height: 20px;
  --sec-title-color: var(--theme-color-dark);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: 600;
  --theme-light-background: #f8f6f1;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #131313;
  --container-width: 1330px;
  --small-container-width: 1000px;
  --large-container-width: 1310px;
  --container-pt: 120px;
  --container-pb: 120px;
}

/*
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

body {
  background-color: #fff;
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

p, .text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

/* -------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--headings-color);
  font-family: var(--title-font);
  position: relative;
  line-height: var(--line-height-heading-);
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small {
  font-weight: normal;
  line-height: 1;
  color: var(--headings-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover, p a:not(.button):not(.btn):focus {
  text-decoration: underline;
}

/* -------- other ---------- */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b, a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol, ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

b, strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}

iframe {
  border: none !important;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section > .container,
section > .container-fluid {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: var(--container-width);
  }
}
/*=== Default Form ===*/
.form-control, .input-text {
  background-color: transparent;
  height: calc(2.25rem + 17px);
  padding: 0;
  outline: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: rgba(160, 161, 166, 0.5);
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder, .input-text::-webkit-input-placeholder {
  color: rgba(160, 161, 166, 0.5);
  opacity: 1;
}
.form-control::-moz-placeholder, .input-text::-moz-placeholder {
  color: rgba(160, 161, 166, 0.5);
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: rgba(160, 161, 166, 0.5);
  opacity: 1;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: rgba(160, 161, 166, 0.5);
  opacity: 1;
}
.form-control::placeholder, .input-text::placeholder {
  color: rgba(160, 161, 166, 0.5);
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: rgba(160, 161, 166, 0.5);
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: rgba(160, 161, 166, 0.5);
}
.form-control:focus, .input-text:focus {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: rgba(160, 161, 166, 0.5);
  outline: none;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.contact_form label {
  font-size: 16px;
  font-family: var(--title-font);
  font-weight: bold;
}

/* -------- Dark Theme Styling ---------- */
.dark-layout {
  --sec-title-color: var(--theme-color-light);
}
.dark-layout .page-wrapper {
  background-color: var(--theme-color-dark) !important;
  background-image: url(../images/icons/dark-bg.png);
}
.dark-layout .preloader:before,
.dark-layout .sticky-header .main-menu .navigation > li > a,
.dark-layout h1, .dark-layout h2, .dark-layout h3, .dark-layout h4, .dark-layout h5, .dark-layout h6 {
  color: var(--theme-color-light);
}
.dark-layout .preloader {
  background-color: var(--theme-color-dark);
}
.dark-layout .preloader:after {
  background-image: url(../images/logo.png);
}
.dark-layout .sticky-header {
  background-color: var(--theme-color-dark);
}
.dark-layout .hidden-bar .upper-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links li {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/*** 

====================================================================
Reset
====================================================================

***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

/*** 

====================================================================
Global Settings
====================================================================

***/
textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.title a {
  color: inherit;
}

.sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 20px;
}
.sub-title .icon-arrow {
  position: absolute;
  left: 0;
  top: 15px;
}

.color1 {
  color: var(--theme-color1);
}

.color2 {
  color: var(--theme-color2);
}

.color3 {
  color: var(--theme-color3);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  z-index: 99;
  background-color: #F7F9FC;
}

.large-container {
  position: static;
  max-width: var(--large-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.small-container {
  position: static;
  max-width: var(--small-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.dropdown-toggle::after {
  display: none;
}

.shadow-box {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.04)), to(rgba(32, 32, 32, 0.1)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(32, 32, 32, 0.1) 100%);
  border: 1px solid;
  border-width: 1px;
  border-image-slice: 1;
  border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(32, 32, 32, 0.1) 100%);
  border-radius: 10px;
  overflow: hidden;
}

.circle-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 22px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.abs-link {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/*=======================
    Preloader
=======================*/
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
}

.preloader:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  margin-left: -75px;
  margin-top: -50px;
  height: 60px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: pulse 5s infinite linear;
          animation: pulse 5s infinite linear;
  background-image: url(../images/favicon.png);
  content: "";
}

.preloader:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--theme-color-dark);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--title-font);
  letter-spacing: 1px;
  text-transform: uppercase;
  content: "Loading";
  -webkit-transition: none;
  transition: none;
}

/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background-color: var(--theme-color1);
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  background: var(--theme-color3);
  color: #ffffff;
}

.link-style-one {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-family: var(--title-font);
  color: var(--theme-color-dark);
}
.link-style-one:before {
  position: absolute;
  left: 0;
  right: 18px;
  bottom: 2px;
  height: 1px;
  background-color: var(--bg-theme-color1);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.link-style-one i {
  position: relative;
  top: 1px;
  display: block;
  font-size: 14px;
  margin-left: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.link-style-one:hover {
  color: var(--theme-color1);
}
.link-style-one:hover:before {
  right: 100%;
}

/*=== List Style One ===*/
.list-style-one {
  position: relative;
}
.list-style-one li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(-text-color);
  margin-bottom: 11px;
}
.list-style-one li a {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: var(--text-color);
  text-decoration: underline;
}
.list-style-one li a:hover {
  color: var(--theme-color-light);
}

/*=== List Style Two ===*/
.list-style-two {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
.list-style-two li {
  position: relative;
  font-size: 20px;
  color: var(--theme-color-dark);
  line-height: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding-left: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 10px;
}
.list-style-two li i {
  position: absolute;
  left: 0px;
  top: 0px;
  color: var(--theme-color1);
  font-size: 20px;
  line-height: 30px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.list-style-two li a {
  display: inline-block;
  font-weight: inherit;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.list-style-two li a:hover {
  color: var(--theme-color1);
}
.list-style-two.light li {
  color: var(--theme-color-light);
}
.list-style-two.light li i {
  color: #42d9be;
}
.list-style-two.two-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.list-style-two.two-col li {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 20px;
}
@media (max-width: 767.98px) {
  .list-style-two.two-col li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

/*=== List Style Three ===*/
.list-style-three {
  position: relative;
}
.list-style-three li {
  position: relative;
  padding: 15px 30px;
  padding-left: 55px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  color: var(--theme-color-dark);
  letter-spacing: -0.04em;
  background-color: #ebf1f5;
  margin-bottom: 8px;
}
.list-style-three li i {
  position: absolute;
  left: 30px;
  top: 15px;
  font-size: 15px;
  line-height: 30px;
  color: var(--theme-color1);
}
.list-style-three.dark li {
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
}
.list-style-three.dark li i {
  font-size: 12px;
}
.list-style-three.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-style-three.two-column li {
  max-width: 50%;
  margin-right: 30px;
}
@media (max-width: 575.98px) {
  .list-style-three.two-column li {
    max-width: 100%;
    margin-right: 0;
    width: 100%;
  }
}

/*=== List Style Four ===*/
.list-style-four {
  position: relative;
}
.list-style-four li {
  position: relative;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #2e2d2d;
  padding-left: 45px;
  margin-bottom: 18px;
}
.list-style-four li:before {
  position: relative;
  height: 30px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 0;
  content: "\f00c";
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  font-weight: 700;
  font-family: "Font Awesome 6 Pro";
  background: var(--gradient-1);
  border-radius: 50%;
}
.list-style-four li a {
  display: inline-block;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.list-style-four li a:hover {
  color: #ffffff;
}

/*Social Icon One*/
.social-icon-one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.social-icon-one li {
  position: relative;
  margin-left: 12px;
  font-family: var(--title-font);
}
.social-icon-one li:first-child {
  margin-left: 0;
}
.social-icon-one li a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-one li a:hover {
  color: #A9AAAE;
}
.social-icon-one.style2 a:hover {
  color: var(--theme-color1);
}

/*Social Icon Two*/
.social-icon-two {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-icon-two li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 7px;
}
.social-icon-two li:last-child {
  margin-right: 0;
}
.social-icon-two li a {
  position: relative;
  display: block;
  height: 44px;
  width: 44px;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  background-color: #151518;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-two li a i {
  position: relative;
}
.social-icon-two li a::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: var(--theme-color1);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 50px;
}
.social-icon-two li a:hover {
  color: #fff;
}
.social-icon-two li a:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*Social Icon Three*/
.social-icon-three {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-icon-three li {
  position: relative;
  margin-right: 30px;
}
.social-icon-three li a {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  letter-spacing: 0.05em;
  background: transparent;
  font-weight: 400;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: var(--title-font);
}
.social-icon-three li a:before {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-three li a:hover:before {
  left: 0;
  width: 100%;
}

/*Social Icon Four*/
.social-icon-four {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-icon-four li {
  position: relative;
  margin: 0 12px;
}
.social-icon-four li a {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 30px;
  color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-four li a:hover {
  color: var(--theme-color3);
}

/*Social Icon Five*/
.social-icon-five {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-icon-five li {
  position: relative;
  margin-right: 7px;
}
.social-icon-five li a {
  position: relative;
  display: block;
  height: 34px;
  width: 34px;
  border: 1px solid rgba(135, 140, 143, 0.32);
  font-size: 12px;
  text-align: center;
  line-height: 32px;
  color: #bcb5b5;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-five li a:hover {
  color: var(--theme-color3);
}

.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-pattern-1 {
  background-image: url(../images/icons/pattern-1.jpg);
}

.bg-pattern-2 {
  background-image: url(../images/icons/pattern-2.jpg);
}

.bg-pattern-3 {
  background-image: url(../images/icons/pattern-3.jpg);
}

.bg-pattern-4 {
  background-image: url(../images/icons/pattern-4.jpg);
}

.bg-pattern-5 {
  background-image: url(../images/icons/pattern-5.jpg);
}

.bg-pattern-6 {
  background-image: url(../images/icons/pattern-6.jpg);
}

.bg-pattern-7 {
  background-image: url(../images/icons/pattern-7.jpg);
}

.bg-pattern-8 {
  background-image: url(../images/icons/pattern-8.jpg);
}

.bg-pattern-9 {
  background-image: url(../images/icons/pattern-9.jpg);
}

.bg-pattern-10 {
  background-image: url(../images/icons/pattern-10.jpg);
}

.bg-pattern-11 {
  background-image: url(../images/icons/pattern-11.jpg);
}

.bg-pattern-12 {
  background-image: url(../images/icons/pattern-12.jpg);
}

.bg-pattern-13 {
  background-image: url(../images/icons/pattern-13.jpg);
}

.bg-pattern-14 {
  background-image: url(../images/icons/pattern-14.jpg);
}

.devider {
  position: absolute;
  padding: 0;
  margin: 0;
  width: 80%;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1199.98px) {
  .devider {
    width: 100%;
  }
}

/*======================
    Tabs Box
======================*/
.tabs-box {
  position: relative;
}

.tabs-box .tab {
  display: none;
}

.tabs-box .active-tab {
  display: block;
}

.play-btn {
  position: relative;
  display: inline-block;
}
.play-btn:hover .icon {
  background-color: var(--theme-color-light);
}
.play-btn .icon {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  font-size: 28px;
  color: var(--theme-color-dark);
  background-color: var(--bg-theme-color1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.play-btn .circle-text img {
  position: relative;
  display: inline-block;
  -webkit-animation: fa-spin 60s infinite linear;
          animation: fa-spin 60s infinite linear;
}

/*======================
    Media Play Button 
======================*/
.play-now {
  position: relative;
  display: block;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.play-now .icon {
  position: relative;
  display: inline-block;
  height: 85px;
  width: 85px;
  text-align: center;
  line-height: 85px;
  background-color: #ffffff;
  color: var(--bg-theme-color2);
  z-index: 1;
  font-size: 18px;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
          box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 70px;
  width: 70px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
          animation: ripple 3s infinite;
}
.play-now .ripple.light,
.play-now .ripple:before.light,
.play-now .ripple:after.light {
  -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
          box-shadow: 0 0 0 0 rgb(255, 255, 255);
}

.play-now .ripple.light,
.play-now .ripple.light:before,
.play-now .ripple.light:after {
  -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
          box-shadow: 0 0 0 0 rgb(255, 255, 255);
}

.play-now .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.play-now .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
  }
}
.play-now-two {
  height: 150px;
  width: 150px;
  background-color: rgba(21, 21, 21, 0.5);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 34px;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-animation: zoom-one 3s infinite linear;
          animation: zoom-one 3s infinite linear;
}
.play-now-two:hover {
  color: #ff9205;
  background-color: #ffffff;
}

/*========================
  Select2 Dropdown Plugin
========================*/
.select2-dropdown {
  border: 1px solid #eee;
}

.select2-results__option {
  padding: 0 10px;
  color: #7c858c;
  border: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #7c858c;
  padding-left: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--bg-theme-color1);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  bottom: 1px;
  height: auto;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  color: #7c858c;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
  position: relative;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
}

.default-navs .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.default-navs .owl-next,
.default-navs .owl-prev {
  display: block;
  width: 52px;
  height: 52px;
  font-size: 16px;
  font-weight: 700;
  line-height: 52px;
  color: var(--theme-color-dark);
  background: #fff;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  margin-right: 10px;
}
.default-navs .owl-next:hover,
.default-navs .owl-prev:hover {
  background-color: var(--theme-color-dark);
  color: var(--theme-color-light);
}

.default-dots .owl-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.default-dots .owl-dots .owl-dot {
  height: 5px;
  width: 40px;
  margin: 0 5px;
  border: 1px solid #d7d7d7;
}
@media (max-width: 575.98px) {
  .default-dots .owl-dots .owl-dot {
    width: 20px;
  }
}
.default-dots .owl-dots .owl-dot.active {
  background-color: var(--theme-color1);
  border: 1px solid var(--theme-color1);
}

/*==========================
	Nav Style One
===========================*/
.nav-style-one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9;
}
.nav-style-one .next,
.nav-style-one .prev {
  margin-right: 38px;
  padding: 18px 25px;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-style-one .next .icon,
.nav-style-one .prev .icon {
  position: relative;
  display: inline-block;
}
.nav-style-one .next .icon:before,
.nav-style-one .prev .icon:before {
  position: absolute;
  top: 0;
  margin-top: -20px;
  right: -25px;
  height: 52px;
  width: 52px;
  border: 1px dotted #fff;
  border-radius: 100px;
  content: "";
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.nav-style-one .next:hover .icon:before,
.nav-style-one .prev:hover .icon:before {
  background-color: rgba(255, 255, 255, 0.15);
  width: 125px;
}
.nav-style-one .prev {
  margin-right: 0;
  padding-left: 25px;
  padding-right: 0;
}
.nav-style-one .prev .icon:before {
  left: -25px;
  right: auto;
}
.nav-style-one .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.nav-style-one.dark .next .icon:before,
.nav-style-one.dark .prev .icon:before {
  border: 1px solid #797979;
}

/*==========================
	Default Tabs
===========================*/
.default-tabs {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.default-tabs .tab-buttons {
  position: relative;
  margin-bottom: 30px;
}

.default-tabs .tab-buttons li {
  position: relative;
  float: left;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 35px;
  color: var(--theme-color1);
  line-height: 20px;
  border-radius: 5px;
  background-color: #ffffff;
  cursor: pointer;
  margin-right: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-tabs .tab-buttons li:last-child {
  margin-right: 0;
}

.default-tabs .tab-buttons li.active-btn {
  background: var(--gradient-1);
  color: #ffffff;
}

.default-tabs .tabs-content {
  position: relative;
  width: 100%;
}

.blockquote-style-one {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: var(--theme-color-dark);
  padding: 13px 25px;
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: var(--title-font);
  font-weight: 800;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.blockquote-style-one:before {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  z-index: 2;
  background-color: var(--theme-color1);
  content: "";
}

/*================================
    Progress Bar
=================================*/
.skills {
  position: relative;
  margin-bottom: 50px;
}
.skills .skill-item {
  position: relative;
  margin-bottom: 25px;
}
.skills .skill-item:last-child {
  margin-bottom: 0px;
}
.skills .skill-item .skill-header {
  position: relative;
  margin-bottom: 0px;
}
.skills .skill-item .skill-header .skill-title {
  font-weight: 600;
  color: var(--theme-color-dark);
  letter-spacing: 0;
  margin-bottom: 10px;
}
.skills .skill-item .skill-bar {
  position: relative;
  width: 100%;
  height: 14px;
  border-radius: 10px;
}
.skills .skill-item .skill-bar .bar-inner {
  position: relative;
  width: 100%;
  height: 14px;
  background: #f2f3f6;
  border-radius: 10px;
}
.skills .skill-item .skill-bar .bar-inner .bar {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 14px;
  width: 0px;
  -webkit-transition: all 3000ms ease;
  transition: all 3000ms ease;
  border-radius: 10px;
  background: var(--bg-theme-color1);
}
.skills .skill-item .skill-bar .bar-inner .skill-percentage {
  position: absolute;
  right: 0;
  bottom: 100%;
  font-weight: 400;
  color: #6f7174;
  line-height: 25px;
  margin-bottom: 10px;
}

.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.theme-btn .btn-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*Btn Style One*/
.btn-style-one {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  padding: 15px 50px;
  font-weight: 600;
  overflow: hidden;
  color: var(--theme-color-dark);
  background: var(--theme-color1);
  border-radius: 100px;
  text-transform: capitalize;
}
.btn-style-one:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  width: 7px;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  content: "";
}
.btn-style-one i {
  position: relative;
  top: 1px;
  display: block;
  margin-left: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn-style-one:hover:before {
  width: 100%;
  opacity: 1;
}
.btn-style-one:hover {
  background-color: var(--theme-color-dark);
  color: var(--theme-color1);
}
.btn-style-one.light-bg {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--theme-color-light);
}
.btn-style-one.light-bg:hover {
  color: var(--theme-color-dark);
  background-color: var(--bg-theme-color1);
}
.btn-style-one.hover-light:hover {
  color: var(--theme-color-dark);
}
.btn-style-one.hover-light:before {
  background-color: var(--theme-color-light);
}

.theme-btn.small {
  padding: 10px 30px;
  line-height: 20px;
  font-size: 10px;
}

/*** 

====================================================================
  Anim Icons
====================================================================

***/
.anim-icons {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.anim-icons .icon {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.icon-arrow {
  width: 104px;
  height: 16px;
  background-image: url(../images/icons/arrow.png);
}

.bounce-y {
  -webkit-animation: bounce-y 10s infinite linear;
          animation: bounce-y 10s infinite linear;
}

.bounce-x {
  -webkit-animation: bounce-x 10s infinite linear;
          animation: bounce-x 10s infinite linear;
}

.zoom-one {
  -webkit-animation: zoom-one 10s infinite linear;
          animation: zoom-one 10s infinite linear;
}

.zoom-two {
  -webkit-animation: zoom-two 5s infinite linear;
          animation: zoom-two 5s infinite linear;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes zoom-one {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes zoom-one {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@-webkit-keyframes zoom-two {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom-two {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.overlay-anim {
  position: relative;
}
.overlay-anim:after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.circle {
  position: fixed;
  width: 10px;
  height: 10px;
  left: -10px;
  top: -10px;
  border-radius: 100%;
  z-index: 1;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@supports (mix-blend-mode: difference) {
  .circle {
    background-color: white;
    mix-blend-mode: difference;
  }
}
@media only screen and (max-width: 1023px) {
  .circle {
    display: none !important;
  }
}

.circle-follow {
  position: fixed;
  mix-blend-mode: difference;
  width: 30px;
  height: 30px;
  left: -21px;
  top: -21px;
  border-radius: 100%;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@supports (mix-blend-mode: difference) {
  .circle-follow {
    border: 1px solid #fff;
    mix-blend-mode: difference;
  }
}
@media only screen and (max-width: 1023px) {
  .circle-follow {
    display: none !important;
  }
}

/*** 

====================================================================
  Search Popup
====================================================================

***/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: hidden;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.search-popup .search-back-drop {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--theme-color-dark);
  opacity: 0.95;
}
.search-popup .close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 26px;
  color: var(--theme-color-light);
  z-index: 3;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-popup .search-inner {
  position: relative;
  display: block;
  top: 40%;
  height: auto;
  z-index: 1;
  width: calc(100% - 60px);
  max-width: 800px;
  margin: auto;
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search-popup .form-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-popup .form-group input[type=search],
.search-popup .form-group input[type=text] {
  position: relative;
  display: block;
  line-height: 20px;
  font-size: 16px;
  width: 100%;
  height: 50px;
  border: 1px solid #e1e6dc;
  padding: 15px 20px;
  color: #707070;
  background: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-popup .form-group input[type=search]:focus,
.search-popup .form-group input[type=text]:focus {
  border-color: var(--border-theme-color2);
}
.search-popup .form-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 40px;
  width: 40px;
  display: block;
  font-size: 18px;
  color: var(--theme-color-dark);
  line-height: 40px;
  border-radius: 5px;
  font-weight: normal;
  background: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-popup .form-group button:hover {
  color: var(--theme-color-dark);
}
.search-popup textarea::-webkit-input-placeholder, .search-popup input::-webkit-input-placeholder {
  color: inherit;
}
.search-popup textarea::-moz-placeholder, .search-popup input::-moz-placeholder {
  color: inherit;
}
.search-popup textarea:-ms-input-placeholder, .search-popup input:-ms-input-placeholder {
  color: inherit;
}
.search-popup textarea::-ms-input-placeholder, .search-popup input::-ms-input-placeholder {
  color: inherit;
}
.search-popup textarea::placeholder,
.search-popup input::placeholder {
  color: inherit;
}

.moblie-search-active .search-popup {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
  border-radius: 0%;
}
.moblie-search-active .search-popup .search-inner {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}

/*** 

====================================================================
Main Header
====================================================================

***/
.header-span {
  position: relative;
  height: 110px;
  display: block;
  width: 100%;
}

.main-header {
  position: relative;
  width: 100%;
  z-index: 999;
}
.main-header .logo {
  position: relative;
  display: block;
}
.main-header .logo img {
  max-width: 100%;
  height: auto;
}
.main-header .main-box {
  position: relative;
  left: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-header .main-box .nav-outer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-menu {
  position: relative;
}
@media (max-width: 991.98px) {
  .main-menu {
    display: none;
  }
}

.main-menu .navbar-header {
  display: none;
}

.main-menu .navbar-collapse {
  padding: 0px;
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 30px 0px;
  margin-right: 45px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li:hover:before, .main-menu .navigation > li.current:before {
  left: 0;
  width: 100%;
}
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  opacity: 1;
  color: var(--text-color);
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  font-family: var(--title-font);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > a .icon {
  position: relative;
  font-size: 22px;
  line-height: 24px;
  margin-left: 10px;
}
.main-menu .navigation > li > a:hover {
  color: #ffffff;
}
.main-menu .navigation > li.current > a {
  color: var(--theme-color1);
}
.main-menu .navigation > li.dropdown > a {
  padding-right: 14px;
  margin-right: -14px;
}
.main-menu .navigation > li.dropdown > a:after {
  content: "\f107";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 20px;
  display: block;
  line-height: 24px;
  font-size: 12px;
  z-index: 5;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  margin-top: -2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  margin-top: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 220px;
  z-index: 100;
  padding: 10px 0 0;
  background-color: #ffffff;
  margin-top: 30px;
  opacity: 0;
  display: none;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul.from-right {
  left: auto;
  right: 0px;
}
.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ebf1f5;
}
.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0px;
  line-height: 29px;
  font-weight: 400;
  font-size: 16px;
  color: var(--theme-color-dark);
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.main-menu .navigation > li > ul > li:hover > a {
  color: var(--theme-color1);
}
.main-menu .navigation > li > ul > li.dropdown > a:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  position: absolute;
  right: 0;
  top: 11px;
  display: block;
  line-height: 24px;
  font-size: 14px;
  font-weight: 900;
  z-index: 5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0px;
  margin-top: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0px;
  width: 220px;
  z-index: 100;
  display: none;
  background-color: #ffffff;
  opacity: 0;
  padding: 10px 0 0;
  margin-top: 10px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  border-bottom: 1px solid #ebf1f5;
  width: 100%;
}
.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: var(--theme-color-dark);
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover {
  color: var(--theme-color1);
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.main-header .outer-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.main-header .outer-box .theme-btn {
  margin-left: 40px;
  font-size: 12px;
  text-transform: uppercase;
}

.main-header .ui-btn-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 17px;
  position: relative;
  right: 117px;
}

.main-header .ui-btn {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background: none;
  font-size: 26px;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-header .ui-btn:hover {
  color: var(--theme-color1);
}

.color-switcher {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(160, 161, 166, 0.3);
}
.color-switcher a {
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #A0A1A6;
  font-weight: 400;
  cursor: pointer;
  margin: 0 5px;
}
@media (max-width: 575.98px) {
  .color-switcher a {
    font-size: 12px;
  }
}
.color-switcher a.active {
  color: var(--theme-color1);
}
.color-switcher i {
  display: block;
  margin-left: 10px;
  font-size: 36px;
  color: var(--theme-color1);
  height: 50px;
  width: 50px;
  line-height: 50px;
}
@media (max-width: 575.98px) {
  .color-switcher i {
    position: relative;
    top: 3px;
    font-size: 24px;
    width: 40px;
  }
}

/*** 

====================================================================
Header Style One
====================================================================

***/
.header-style-one {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.header-style-one .main-box {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-style-one .main-box .nav-outer {
  width: 40%;
}
@media (max-width: 991.98px) {
  .header-style-one .main-box .nav-outer {
    display: none;
  }
}
.header-style-one .main-box .logo-box {
  padding: 20px 0;
  text-align: center;
  width: 20%;
}
@media (max-width: 991.98px) {
  .header-style-one .main-box .logo-box {
    text-align: left;
    padding: 10px 10px;
    width: auto;
  }
  .header-style-one .main-box .logo-box .logo img {
    max-height: 50px;
  }
}
.header-style-one .main-box .outer-box {
  width: 40%;
}

/*** 

====================================================================
Sticky Header
====================================================================

***/
.sticky-header {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0px 0px;
  z-index: 99999;
  background: #ffffff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.sticky-header.fixed-header {
  opacity: 1;
  z-index: 9999;
  visibility: visible;
}

.sticky-header .logo {
  padding: 10px 0;
}
.sticky-header .logo img {
  max-height: 50px;
}
.sticky-header .nav-outer {
  position: relative;
  background: none;
}
.sticky-header .inner-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
  }
}
/*** 

====================================================================
      Mobile Menu
====================================================================

***/
.mobile-nav-toggler {
  position: relative;
  min-width: 50px;
  width: 50px;
  height: 50px;
  font-size: 21px;
  line-height: 50px;
  color: var(--text-color);
  cursor: pointer;
  text-align: center;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 5px;
}
.mobile-nav-toggler.active {
  background-color: var(--bg-theme-color1);
  color: var(--theme-color-dark);
}

.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 112px;
  width: 100%;
  max-width: 1330px;
  padding: 0 15px;
  padding-left: 345px;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}
@media (max-width: 991.98px) {
  .mobile-menu {
    padding-left: 15px;
    top: 80px;
  }
}
@media (max-width: 767.98px) {
  .mobile-menu {
    bottom: 15px;
  }
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu .close-btn {
  position: absolute;
  right: 50px;
  top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-color-dark);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  font-family: var(--title-font);
}
@media (max-width: 991.98px) {
  .mobile-menu .close-btn {
    font-size: 0;
    right: 20px;
    top: 20px;
  }
}
.mobile-menu .close-btn .icon {
  position: relative;
  height: 100px;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--theme-color-dark);
  font-size: 48px;
  font-weight: 300;
  border-radius: 50%;
  margin-left: 20px;
}
@media (max-width: 991.98px) {
  .mobile-menu .close-btn .icon {
    height: 50px;
    width: 50px;
    font-size: 24px;
  }
}
.mobile-menu .close-btn:hover {
  opacity: 0.5;
}
.mobile-menu .menu-box {
  position: relative;
  height: 100%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  background-color: var(--bg-theme-color1);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  max-height: 750px;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu .menu-box::-webkit-scrollbar {
  width: 4px;
}
.mobile-menu .menu-box::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.5);
}
.mobile-menu .menu-box::-webkit-scrollbar-thumb {
  background-color: var(--theme-color-dark);
}
@media (max-width: 767.98px) {
  .mobile-menu .menu-box {
    max-height: 100%;
  }
}
.mobile-menu .menu-box .menu-column {
  position: relative;
}
.mobile-menu .menu-box .menu-column .inner-column {
  padding: 90px 25px;
}
@media (max-width: 575.98px) {
  .mobile-menu .menu-box .menu-column .inner-column {
    padding: 50px 25px 30px;
  }
}
@media (max-width: 767.98px) {
  .mobile-menu .menu-box .info-column {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.mobile-menu .menu-box .info-column .inner-column {
  position: relative;
  padding: 100px 25px 90px;
  padding-left: 80px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767.98px) {
  .mobile-menu .menu-box .info-column .inner-column {
    padding: 0 25px 20px;
  }
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease 200ms;
  transition: all 0.4s ease 200ms;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.mobile-menu-visible .scroll-to-top {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  margin-bottom: 28px;
}
.mobile-menu .navigation li > a {
  position: relative;
  display: inline-block;
  font-size: 32px;
  line-height: 38px;
  font-family: var(--title-font);
  color: var(--theme-color-dark);
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 575.98px) {
  .mobile-menu .navigation li > a {
    font-size: 24px;
    line-height: 1.2em;
  }
}
.mobile-menu .navigation li > a:before {
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0%;
  height: 3px;
  background-color: var(--theme-color-dark);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.mobile-menu .navigation li > a:hover::before, .mobile-menu .navigation li.current > a::before {
  width: 100%;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
  content: "\f106";
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
}

.contact-list-one {
  position: relative;
}
.contact-list-one li {
  position: relative;
  margin-bottom: 40px;
}
.contact-list-one li:last-child {
  margin-right: 0;
}
.contact-list-one li .contact-info-box {
  position: relative;
}
.contact-list-one li .contact-info-box .title {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 0.6);
}
.contact-list-one li .contact-info-box .text {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--theme-color-dark);
}
.contact-list-one li .contact-info-box .text a {
  font-family: var(--title-font);
  font-weight: 700;
  color: inherit;
}
.contact-list-one li .contact-info-box .text a:hover {
  text-decoration: underline;
}

.mobile-menu .social-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-menu .social-links li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}
.mobile-menu .social-links li a {
  position: relative;
  display: block;
  line-height: 45px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  color: var(--theme-color-light);
  background: rgba(0, 0, 0, 0.12);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.mobile-menu .social-links li a:hover {
  color: var(--theme-color1);
  background-color: var(--theme-color-dark);
}

/***

====================================================================
    Sidebar Page Container
====================================================================

***/
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 112px 0 20px;
}
@media (max-width: 991.98px) {
  .hero-section {
    padding: 80px 0 20px;
  }
}

.about-me-box {
  position: relative;
  margin-bottom: 30px;
}
.about-me-box .inner-box {
  position: relative;
  text-align: center;
  padding: 50px 30px;
}
.about-me-box .image {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 25px;
}
.about-me-box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-me-box .name {
  margin-bottom: 7px;
}
.about-me-box .designation {
  display: block;
  color: var(--theme-color1);
  margin-bottom: 32px;
}
.about-me-box .list-style-one {
  margin-bottom: 110px;
}
.about-me-box .social-icon-one {
  margin-bottom: 40px;
}
.about-me-box .btn-box {
  position: relative;
  width: 100%;
  padding: 0 13px;
}
.about-me-box .btn-box .theme-btn {
  width: 100%;
  margin-bottom: 10px;
}

.banner-box {
  position: relative;
  margin-bottom: 30px;
}
.banner-box .inner-box {
  padding: 45px 50px 30px;
}
@media (max-width: 1199.98px) {
  .banner-box .inner-box {
    padding: 45px 40px 30px;
  }
}
@media (max-width: 575.98px) {
  .banner-box .inner-box {
    padding: 40px 30px 30px;
  }
}
.banner-box .sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 20px;
}
.banner-box .sub-title .icon-arrow {
  position: absolute;
  left: 0;
  top: 15px;
}
.banner-box .title {
  text-transform: capitalize;
  margin-bottom: 0;
}
.banner-box .title .text-outline {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.banner-box .title .text-outline:hover {
  color: var(--theme-color1);
}
@media (max-width: 991.98px) {
  .banner-box .title {
    font-size: 38px;
  }
}
.banner-box .title .icon {
  position: relative;
  top: 5px;
  font-weight: 400;
}

.about-us-box {
  position: relative;
  margin-bottom: 30px;
}
.about-us-box .inner-box {
  padding: 30px 30px 20px;
  text-align: center;
}
.about-us-box .image {
  margin-bottom: 0px;
}
.about-us-box .sub-title {
  position: relative;
  display: block;
  margin-bottom: 0px;
}
.about-us-box .title {
  text-transform: uppercase;
  margin-bottom: 0;
}

.services-box {
  margin-bottom: 30px;
}
.services-box .inner-box {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
}
.services-box .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/icons/service-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  content: "";
}

.marquee {
  position: relative;
  --duration: 20s;
  --gap: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: var(--gap);
}
.marquee .marquee-group {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  -webkit-animation: scroll var(--duration) linear infinite;
          animation: scroll var(--duration) linear infinite;
}
.marquee .text {
  font-size: 150px;
  line-height: 0.8em;
  color: var(--theme-color1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .marquee .marquee-group {
    -webkit-animation-play-state: play;
            animation-play-state: play;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}

.portfolio-box {
  position: relative;
  margin-bottom: 30px;
}
.portfolio-box .inner-box {
  position: relative;
  text-align: center;
  padding: 0 105px 0 42px;
}
@media (max-width: 575.98px) {
  .portfolio-box .inner-box {
    padding: 10px 30px;
  }
}
.portfolio-box .inner-box::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/icons/portfolio-bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  content: "";
}
.portfolio-box .image {
  position: relative;
  margin-bottom: 0;
}
.portfolio-box .theme-btn {
  position: absolute;
  right: 33px;
  top: -20px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  padding: 12px 15px 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .portfolio-box .theme-btn {
    -webkit-transform: none;
            transform: none;
    right: 0;
    top: 0;
    position: relative;
    margin-bottom: 20px;
    letter-spacing: 0;
    padding: 10px 30px;
    font-size: 14px;
  }
}

.news-box {
  position: relative;
  margin-bottom: 30px;
}
.news-box .inner-box {
  position: relative;
  padding: 16px 30px 12px;
  padding-right: 120px;
}
.news-box h6.title {
  font-size: var(--body-font-size);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.news-box .image {
  position: absolute;
  right: 25px;
  top: 12px;
  margin-bottom: 0;
}

.work-box {
  position: relative;
  margin-bottom: 30px;
}
.work-box .inner-box {
  position: relative;
  padding: 24px 30px 25px;
}
.work-box .title {
  margin-bottom: 20px;
}
.work-box .info-box {
  position: relative;
  padding-left: 84px;
  min-height: 62px;
  margin-bottom: 50px;
}
.work-box .info-box:hover .icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.work-box .info-box:last-child {
  margin-bottom: 0;
}
.work-box .info-box .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 62px;
  line-height: 1em;
  color: var(--theme-color1);
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.work-box .info-box .icon:after {
  position: absolute;
  left: 10px;
  top: 5px;
  height: 56px;
  width: 56px;
  background-color: var(--theme-color-dark);
  border-radius: 50%;
  z-index: -1;
  content: "";
}
.work-box .info-box .text {
  color: var(--text-color);
  font-size: 24px;
  line-height: 32px;
}
.work-box .info-box .text a {
  color: var(--text-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.work-box .info-box .text a:hover {
  color: var(--theme-color-light);
}

.contact-box {
  position: relative;
  margin-bottom: 30px;
}
.contact-box .inner-box {
  padding: 25px 30px 25px;
}
.contact-box .circle-link {
  margin-bottom: 20px;
}
.contact-box .icon {
  position: absolute;
  right: 30px;
  top: 35px;
  color: var(--theme-color1);
  font-size: 32px;
}
.contact-box .icon2 {
  color: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  margin-right: 30px;
}
.contact-box .icon2:last-child {
  margin-right: 0;
}
.contact-box .icon2:hover {
  color: var(--theme-color1);
}
.contact-box .title {
  font-weight: 700;
  font-size: var(--body-font-size);
  color: var(--text-color);
  margin-bottom: 0;
}
.contact-box .title a {
  color: inherit;
}
.contact-box .title a:hover {
  text-decoration: underline;
  color: var(--theme-color-light);
}
.contact-box.about-page {
  background-image: url(../images/resource/about-page-contact-bg.png);
  background-size: cover;
  background-position: center;
}

.copyright-text {
  position: relative;
  display: block;
  text-align: center;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 14px;
  color: #A2A5B1;
}

/*** 

====================================================================
About
====================================================================

***/
.about-innerbox {
  padding: 60px 30px 80px;
}
@media (max-width: 1199.98px) {
  .about-innerbox {
    padding: 60px 30px 10px;
  }
}

.about-dark-img .img-round {
  border: 2px solid var(--theme-color1);
  border-radius: 50%;
  height: 410px;
  margin: 0 auto;
  position: relative;
  width: 410px;
}
@media (max-width: 575.98px) {
  .about-dark-img .img-round {
    border: none;
    height: auto;
    width: auto;
    text-align: center;
  }
}
.about-dark-img .img-1 {
  position: absolute;
  top: -15px;
}
@media (max-width: 575.98px) {
  .about-dark-img .img-1 {
    margin-bottom: 20px;
    position: relative;
    top: 0;
    width: auto;
  }
}
.about-dark-img .img-2 {
  position: absolute;
  right: 0;
  top: 38px;
}
@media (max-width: 575.98px) {
  .about-dark-img .img-2 {
    margin-bottom: 20px;
    position: relative;
    width: auto;
    top: 0;
  }
}
.about-dark-img .img-3 {
  bottom: -45px;
  position: absolute;
  right: 0;
}
@media (max-width: 575.98px) {
  .about-dark-img .img-3 {
    margin-bottom: 20px;
    bottom: 0;
    position: relative;
    width: auto;
  }
}
.about-dark-img .play-btn {
  bottom: -20px;
  left: 20px;
  position: absolute;
}
@media (max-width: 575.98px) {
  .about-dark-img .play-btn {
    bottom: 0;
    left: 0;
    position: relative;
    width: auto;
  }
}

.about-dark-content .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}
.about-dark-content .subtitle {
  font-weight: 400;
}

.education-box1 {
  position: relative;
}
.education-box1 .edu-list .title {
  font-size: 16px;
}

.experience-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
@media (max-width: 575.98px) {
  .experience-list {
    display: block;
  }
}
.experience-list a {
  background-color: var(--theme-color-dark);
  border-radius: 100px;
  color: #FFFFFF;
  display: inline-block;
  font-family: var(--title-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
  margin-right: 8px;
  padding: 3px 18px;
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.experience-list a:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color-dark);
}
.experience-list a:last-child {
  margin-right: 0;
}
.experience-list.style2 a {
  border: 1px solid var(--theme-color-dark);
}
.experience-list.style2 a:hover {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
}
.experience-list.style3 a {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 3px 10px;
}
.experience-list.style3 a:hover {
  border: none;
  background-color: transparent;
}

.service-style1 {
  padding: 30px;
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-style1 .icon {
  color: #A0A1A6;
  font-size: 50px;
  margin-bottom: 35px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-style1 .title {
  color: #fff;
}
.service-style1:hover .icon {
  color: var(--theme-color1);
}

.list-style1 li {
  color: var(--text-color);
  font-family: var(--title-font);
  font-size: 18px;
  line-height: 40px;
  padding-left: 10px;
  position: relative;
}
.list-style1 li i {
  color: var(--theme-color1);
  font-family: "Font Awesome 6 Pro";
  left: 0;
  position: absolute;
  font-size: 5px;
}

.list-style2 {
  position: relative;
  display: block;
}
.list-style2 a {
  color: #fff;
  display: block;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 30px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.list-style2 a:hover {
  color: var(--theme-color1);
}
.list-style2 a span {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  height: 20px;
  line-height: 20px;
  margin-right: 20px;
  text-align: center;
  width: 20px;
}
.list-style2 a:last-child {
  padding-bottom: 0;
}

.contact-list {
  position: relative;
  display: block;
}
.contact-list a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: block;
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 30px;
  padding-top: 30px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-list a:hover {
  color: var(--theme-color1);
}
.contact-list a i {
  color: var(--theme-color1);
  font-size: 24px;
  margin-right: 20px;
  text-align: center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  vertical-align: middle;
  width: 20px;
}
.contact-list a:first-child {
  padding-top: 0;
}
.contact-list a:last-child {
  border-bottom: none;
}

.portfolio-style1 {
  padding: 10px;
  position: relative;
}
.portfolio-style1 .details {
  padding: 20px;
}
.portfolio-style1 .more-btn {
  border-radius: 50%;
  display: inline-block;
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  position: relative;
  text-align: center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 50px;
}
.portfolio-style1 .more-btn:after {
  border: 1px solid var(--text-color);
  border-radius: 50%;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.portfolio-style1 .more-btn:hover {
  color: var(--theme-color1);
}
.portfolio-style1 .more-btn:hover:after {
  border: 1px solid var(--theme-color1);
}

.pf-tag {
  background-color: var(--headings-color);
  color: var(--text-color);
  border-radius: 100px;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  padding: 3px 18px;
}
.pf-tag.style2 {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-details-pagination {
  position: relative;
}
.portfolio-details-pagination .left-arrow,
.portfolio-details-pagination .right-arrow {
  display: inline-block;
  font-family: var(--title-font);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
}
@media (max-width: 380px) {
  .portfolio-details-pagination .left-arrow,
  .portfolio-details-pagination .right-arrow {
    font-size: 12px;
  }
}
.portfolio-details-pagination .left-arrow:hover,
.portfolio-details-pagination .right-arrow:hover {
  color: #fff;
}
.portfolio-details-pagination .left-arrow:hover i,
.portfolio-details-pagination .right-arrow:hover i {
  color: var(--theme-color1);
}
.portfolio-details-pagination .left-arrow i,
.portfolio-details-pagination .right-arrow i {
  display: inline-block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.portfolio-details-pagination .left-arrow i {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.border-radius-10 {
  border-radius: 10px;
}

.text-theme {
  color: var(--theme-color1);
}

.text-red {
  color: #FF0000;
}

i.transform-none,
.transform-none {
  -webkit-transform: none;
          transform: none;
}

.max-w-100 {
  max-width: 100%;
}

/*** 

====================================================================
Blog
====================================================================

***/
.blog-post {
  position: relative;
}
.blog-post .blog-details {
  padding: 25px 20px;
}

.bp-tag {
  background-color: var(--headings-color);
  color: var(--text-color);
  border-radius: 100px;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  padding: 3px 20px;
}
.bp-tag.style2 {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 428px) {
  .bp-tag:first-child {
    margin-bottom: 10px;
  }
}

.pagination-style1 {
  position: relative;
}
.pagination-style1 .page-item:first-child .page-link, .pagination-style1 .page-item:last-child .page-link {
  border-radius: 50%;
}
.pagination-style1 .page-link {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(29, 28, 34, 0.1);
  border-radius: 50%;
  color: var(--text-color);
  display: block;
  font-family: var(--text-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 50px;
  padding: 0;
  text-align: center;
  width: 50px;
}
.pagination-style1 .page-link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.pagination-style1 .page-link:hover {
  background-color: var(--theme-color1);
  color: var(--headings-color);
}

.blog-details blockquote.blockquote {
  color: var(--text-color);
  font-family: var(--title-font);
  font-size: 18px;
  padding: 20px 27px 27px 80px;
  position: relative;
}
@media (max-width: 575.98px) {
  .blog-details blockquote.blockquote {
    padding-left: 30px;
  }
}
.blog-details blockquote.blockquote p {
  color: var(--text-color);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}
.blog-details blockquote.blockquote .icon {
  color: var(--theme-color1);
  font-size: 40px;
  left: 30px;
  position: absolute;
  top: 30px;
}
@media (max-width: 575.98px) {
  .blog-details blockquote.blockquote .icon {
    left: 0;
    position: relative;
    top: 0;
  }
}

/*** 

====================================================================
Sidebar
====================================================================

***/
@media (max-width: 1199px) {
  .sidebar {
    margin-top: 50px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__single {
  padding: 30px;
}

.sidebar__title {
  margin-bottom: 22px;
  font-weight: var(--h3-font-weight);
  font-weight: var(--body-font-weight-bold);
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.sidebar__search-form input[type=search] {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  font-size: 13px;
  font-weight: 400;
  padding-left: 20px;
  height: 50px;
  width: 100%;
  border-radius: 10px;
}
.sidebar__search-form input[type=search]::-webkit-input-placeholder {
  color: var(--text-color);
  opacity: 1;
}
.sidebar__search-form input[type=search]::-webkit-input-placeholder, .sidebar__search-form input[type=search]:-ms-input-placeholder, .sidebar__search-form input[type=search]::-ms-input-placeholder, .sidebar__search-form input[type=search]::placeholder {
  color: var(--text-color);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar__search-form input[type=search] {
    padding-left: 30px;
  }
}
.sidebar__search-form button[type=submit] {
  background-color: var(--theme-color1);
  color: var(--headings-color);
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .sidebar__search-form button[type=submit] {
    width: 42px;
  }
}
.sidebar__search-form button[type=submit] i {
  margin: 0 auto;
}

.sidebar__service-list {
  position: relative;
  display: block;
}
.sidebar__service-list a {
  color: var(--text-color);
  display: block;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 30px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.sidebar__service-list a:hover {
  color: var(--theme-color1);
}
.sidebar__service-list a:hover span {
  color: var(--text-color);
}
.sidebar__service-list a span {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-color);
  font-size: 10px;
  height: 20px;
  line-height: 20px;
  margin-right: 15px;
  text-align: center;
  width: 20px;
}
.sidebar__service-list a:last-child {
  padding-bottom: 0;
}

.sidebar__social-list a {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  font-size: 18px;
  height: 45px;
  line-height: 45px;
  margin-right: 20px;
  text-align: center;
  width: 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.sidebar__social-list a:hover {
  background-color: var(--theme-color1);
  color: var(--headings-color);
}
.sidebar__social-list a:last-child {
  margin-right: 0;
}

.comment-one .comment-one__title {
  margin-bottom: 10px;
}
.comment-one .comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  margin-bottom: 40px;
  margin-top: 20px;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}
@media only screen and (max-width: 767px) {
  .comment-one .comment-one__single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.comment-one .comment-one__single:last-child {
  border-bottom: none;
}
.comment-one .comment-one__content {
  position: relative;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .comment-one .comment-one__content {
    margin-top: 20px;
    margin-left: 0;
  }
}
.comment-one .comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--theme-black);
  margin-bottom: 24px;
}
.comment-one .comment-one__content p {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
}
.comment-one .comment-one__btn {
  background-color: var(--headings-color);
  color: var(--text-color);
  border-radius: 3px;
  font-size: 12px;
  padding: 5px 15px;
  position: absolute;
  top: -6px;
  right: 0;
}
@media only screen and (max-width: 375px) {
  .comment-one .comment-one__btn {
    margin-bottom: 10px;
    position: relative;
  }
}
.comment-one .comment-one__btn:hover {
  background-color: var(--theme-color1);
  color: var(--headings-color);
}
.comment-one .comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
  -webkit-box-flex: 100px;
      -ms-flex: 100px 0 0px;
          flex: 100px 0 0;
}

.comment-form .comment-form__title {
  margin-top: -7px;
}