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

Template Name: Creatix - Personal Portfolio Template
Author: validtheme
Description:
Version: 1.0

Main Font    : Kanit
Main Color   : #ffb646

-------------------------------------

[Typography]

Body copy:    15px 'Kanit', sans-serif
Header:     36px 'Teko', sans-serif
Input, textarea:  16px 'Kanit', sans-serif
Sidebar heading:  22px 'Teko', sans-serif

>>> TABLE OF CONTENTS:
=======================
        
    01. Template default css
        - Animations
        - General
        - Section Title
        - Video Button
        - Typography
        - Tables
        - Forms
        - Buttons
        - Pagination
        - Colors
        - Accordion
        - Tabs
    02. Preloader
    03 Navbar
        - Navbar Sidebar
        - Navbar Sticky
    04. Home Page
        - Dark Version
        - Light Version
    05. Services
        - Service Single
	06. About
    07. Project
        - Project Single
    08. Skill
    09. Experience
    10. Education
    10. CV/Resume
    12. Faq
    13. Progress
    14. Brand / Partner
    15. Pricing
    16. Blog
        - Single
    17. Error 404
    18. Footer
    19. PHP Contact Form
    20. Others

*/

@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap");

/* Varialbes */
:root {
  --font-default: "Kanit", sans-serif;
  --font-heading: "Teko", sans-serif;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #080808;
  --dark-secondary: #1a1a1a;
  --dark-optional: #313030;
  --white: #ffffff;
  --color-primary: #ffb646;
  --color-secondary: #ffe9d9;
  --color-optional: #ff5a1a;
  --color-heading: #04000b;
  --color-paragraph: #666666;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #f5f5f5;
  --bg-gray-secondary: #f3f4f6;
  --bg-gradient: linear-gradient(
    90deg,
    var(--color-secondary) 0%,
    var(--color-primary) 100%
  );
  --bg-gradient-secondary: linear-gradient(
    90deg,
    #f75700 0%,
    var(--color-primary) 100%
  );
}

/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.wrapper {
  height: 100%;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

.bg-dark a {
  color: var(--white);
}

a img {
  border: none;
}

a:active {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
  opacity: 1;
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a:hover {
  outline: none;
  text-decoration: none;
  color: var(--color-optional);
  opacity: 1;
}

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

button {
  outline: medium none;
}

iframe {
  border: none;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  min-height: 50px;
}

input:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

select:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

b {
  font-weight: 600;
}

strong {
  font-weight: 600;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-xl {
  --bs-gutter-x: 60px;
}

.row.gutter-none {
  --bs-gutter-x: 0;
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
  font-family: var(--font-default);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  color: var(--color-paragraph);
}

body.bg-fixed::after {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #a8d7ff 0%, var(--color-primary) 100%);
  content: "";
  z-index: -1;
  opacity: 0.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: normal;
  line-height: 1.1;
  font-family: var(--font-heading);
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

h1 {
  font-size: 46px;
  margin-bottom: 25px;
}

h2 {
  font-size: 40px;
  margin-bottom: 25px;
}

h3 {
  font-size: 32px;
  margin-bottom: 25px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
}

a,
.btn,
button {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  outline: medium none;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-heading);
}

p {
  color: var(--color-paragraph);
  margin: 0 0 25px;
  text-transform: none;
  font-weight: 300;
  font-family: var(--font-default);
}

/* ============================================================== 
    # Helper CSS
=================================================================== */

.container-full {
  padding: 0 15px;
  margin: auto;
  max-width: 1400px;
}

@media (min-width: 576px) {
  .container-full {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-full {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-full {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-full {
    max-width: 95%;
    width: 95%;
  }

  .box-layout {
    width: 94%;
    margin: auto;
    border-radius: 30px;
  }
}

.container-fill {
  padding: 0 15px;
  margin: auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .container-fill {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-fill {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-fill {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-fill {
    width: 100%;
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .container-fill {
    padding: 0 15px;
    width: 100%;
  }
}

@media only screen and (min-width: 1400px) {
  .container-stage {
    margin-left: calc((100% - 1320px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

.item-center {
  display: flex;
  align-items: center;
}

.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fixed {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fit {
  background-size: 100% 100% !important;
  background-position: center !important;
}

.bg-gray {
  background: var(--bg-gray);
}

.bg-dark .bg-gray {
  background-color: var(--dark-secondary);
}

.bg-gray-secondary {
  background: var(--bg-gray-secondary);
}

.bg-light {
  background-color: var(--white) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-dark-secondary {
  background-color: var(--dark-secondary) !important;
}

.bg-theme {
  background-color: var(--color-primary);
}

.bg-gradient {
  background-color: var(--color-primary);
  background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
  background-color: var(--color-optional);
  background: var(--bg-gradient-secondary) !important;
}

.text-light {
  color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
  color: var(--white);
}

.shadow {
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
}

.shadow.dark {
  position: relative;
  z-index: 1;
}

.shadow.dark:after {
  background: var(--dark);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.dark-hard {
  position: relative;
  z-index: 1;
}

.shadow.dark-hard:after {
  background: var(--black) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.theme {
  position: relative;
  z-index: 1;
}

.shadow.theme:after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.light {
  position: relative;
  z-index: 1;
}

.shadow.light:after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
  position: relative;
}

.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.default-padding-big {
  padding: 250px 0;
}

@media only screen and (max-width: 767px) {
  .default-padding-big {
    padding: 60px 0;
  }
}

.default-padding-top {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top {
    padding-top: 60px;
  }
}

.default-padding-bottom {
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom {
    padding-bottom: 60px;
  }
}

.default-padding.bottom-less {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .default-padding.bottom-less {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}

.default-padding-bottom.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom.bottom-less {
    margin-bottom: 0;
    padding-bottom: 40px;
  }
}

.default-padding-top.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top.bottom-less {
    margin-bottom: -20px;
  }
}

@media only screen and (min-width: 1200px) {
  .align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.border-top {
  border-top: 1px solid #e7e7e7;
}

.border-bottom {
  border-bottom: 1px solid #e7e7e7;
}

.border-left {
  border-left: 1px solid #e7e7e7;
}

.border-right {
  border-right: 1px solid #e7e7e7;
}

.heading {
  font-weight: 600;
  margin-bottom: 25px;
  margin-top: -5px;
  font-size: 55px;
  line-height: 1.3;
}

.heading strong {
  font-weight: 600;
  background: var(--bg-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading span {
  font-weight: 400;
}

.site-heading {
  margin-bottom: 50px;
}

.site-heading strong {
  display: inline-block;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.site-heading strong::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/35.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
}

.title {
  font-weight: 600;
  font-size: 55px !important;
  margin-top: -8px;
}

@media (max-width: 767px) {
  .title {
    font-size: 36px !important;
    margin-top: 0;
  }
}

.bg-dark .title {
  color: var(--white);
}

.site-heading .title {
  margin-bottom: 0;
}

.bg-dark .site-heading .title {
  color: var(--white);
}

.sub-title {
  text-transform: uppercase;
  color: var(--color-heading);
  font-weight: 400;
  display: inline-block;
  position: relative;
  z-index: 1;
  border: 2px solid var(--color-heading);
  padding: 8px 30px;
  border-radius: 30px;
  line-height: 1;
  padding-top: 13px;
  margin-bottom: 30px;
  font-size: 24px;
}

.bg-dark .sub-title {
  font-weight: 600;
  font-size: 18px;
  color: #cccccc;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bg-gradient .sub-title,
.bg-theme .sub-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  background: transparent;
}

@media (max-width: 767px) {
  .sub-title {
    margin-bottom: 15px;
  }
}

.site-heading p {
  margin-bottom: 0;
  margin-top: 25px;
  padding: 0 10%;
}

.site-heading .devider {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  z-index: 1;
  left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
  background: var(--white);
}

@media (max-width: 767px) {
  .site-heading p {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .site-heading {
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left {
  margin-bottom: 60px;
}

.heading-left .heading {
  font-weight: 600;
  margin-bottom: 0;
}

.heading-left p {
  margin: 0;
}

.heading-left .title {
  margin: 0;
}

.heading-left a.btn-style-one {
  margin-top: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading-left .heading {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .heading-left .heading {
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left p {
  margin-bottom: 0;
}

.heading-left .btn {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .heading-left {
    margin-bottom: 50px;
  }
}

.sub-heading {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  background: var(--bg-gradient-reverse);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.shadow .sub-heading {
  -webkit-text-fill-color: var(--white);
  font-weight: 600;
}

.bg-gradient .sub-heading {
  color: var(--white);
  background: transparent;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  opacity: 0.9;
}

.site-heading.text-light .sub-title,
.site-heading.text-light .sub-heading {
  -webkit-text-fill-color: inherit;
  color: var(--white);
}

/* ============================================================== 
    # Video Play Button 
=================================================================== */
.video-play-button i {
  display: inline-block;
  background: var(--bg-gradient);
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  position: relative;
}

.video-play-button i {
  font-weight: 100;
  font-size: 35px;
  position: relative;
  left: 3px;
  top: 2px;
}

.video-play-button .effect {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #07071e;
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
}

.video-play-button .effect::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-play-button .effect::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: #07071e;
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.video-play-button.with-text {
  width: auto;
  background: transparent;
}

.video-play-button.with-text span {
  position: relative;
  z-index: 1;
}

.video-play-button.with-text span i {
  margin-left: 25px;
  margin-right: 30px;
  color: var(--white);
  left: -1px;
}

.video-play-button.with-text .effect {
  height: 60px;
  width: 60px;
  left: 0;
  -webkit-animation: inherit;
  animation: inherit;
  background: var(--color-primary);
  top: 0;
  opacity: 1;
  z-index: 1;
}

.video-play-button.with-text .effect::before {
  display: none;
}

.video-play-button.with-text .effect::after {
  background: var(--color-primary);
  height: 100%;
  width: 100%;
  z-index: inherit;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/* ============================================================== 
    # Template Animation
=================================================================== */

/* Video Paly */
@-webkit-keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*Zoom Animation */
.zoom-animation {
  -webkit-animation: zoom 2000ms ease-out infinite;
  animation: zoom 2000ms ease-out infinite;
}

/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
}

/* Spiner Animation */
.spiner-animation {
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinner {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

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

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

  50% {
    transform: rotate(180deg);
  }

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

/* Spiner Animation */
.spiner-reverse-animation {
  -webkit-animation: spinnerReverse 20s infinite linear;
  animation: spinnerReverse 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

/* Infinite Up Down Animation */
@keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Animation UpDown */
.updown-animation {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: UpDown;
  animation-name: UpDown;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Animation Left Right */
.leftRight-animation {
  -webkit-animation: fadeLeftRight 10s ease-out infinite;
  animation: fadeLeftRight 10s ease-out infinite;
}

/* Fade Left Right */
@keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

@-webkit-keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

/* Animation Right Left */
.rightLeft-animation {
  -webkit-animation: fadeRightLeft 10s ease-out infinite;
  animation: fadeRightLeft 10s ease-out infinite;
}

@keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

@-webkit-keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

/* Animation Zoom Up Down */
.zoomUpDown-animation {
  -webkit-animation: zoomUpDown 10s ease-out infinite;
  animation: zoomUpDown 10s ease-out infinite;
}

/* Zoom Up Down */
@keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@-webkit-keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/* Animation Moving */
.moving-animation {
  -webkit-animation: moving 10s ease-out infinite;
  animation: moving 10s ease-out infinite;
}

/* Mooving Animation */
@-webkit-keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

/* Animation Rotation */
@keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Button Border Animation */
@-webkit-keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@-webkit-keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

@keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

/* Animation Shine (A shine color will move inside the text) */

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@-webkit-keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

@keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

.split-text {
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .row.guttex-xl {
    --bs-gutter-x: 100px;
  }
}

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: none !important;
  font-size: 20px;
  letter-spacing: 0;
  padding: 13px 30px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
}

.btn:focus,
.btn.active {
  box-shadow: inherit;
}

.btn:hover {
  background-color: var(--color-primary);
  color: var(--white);
}

.btn.radius {
  border-radius: 6px;
}

.btn.btn-border {
  border: 2px solid var(--color-heading);
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 600;
}

.btn.btn-border::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-border:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-border:hover {
  border-color: var(--dark);
}

.btn.btn-border.animation:hover {
  border-color: var(--dark);
  color: var(--white);
}

.btn.btn-border.animation:hover::after {
  width: 100%;
}

.btn.btn-border-dark {
  border: 2px solid var(--dark);
  background: transparent;
}

.btn.btn-border-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn.btn-border-dark.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-dark.animation:hover {
  border-color: var(--dark);
  color: var(--white);
}

.btn.btn-border-dark.animation:hover::after {
  width: 100%;
}

.btn.btn-border-theme {
  border: 2px solid var(--color-primary);
  background: transparent;
}

.btn.btn-border-theme:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.btn-border-theme.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-theme.animation:hover {
  border-color: var(--color-primary);
  color: var(--white);
}

.btn.btn-border-theme.animation:hover::after {
  width: 100%;
}

.btn.btn-border-light {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}

.btn.btn-border-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-light.animation:hover {
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation:hover::after {
  width: 100%;
}

.btn.btn-border.light {
  color: var(--white);
  border-color: var(--white);
}

.btn.btn-border.light::after {
  background: var(--color-primary);
}

.btn.btn-border.light:hover {
  border-color: var(--color-primary);
}

.btn.btn-gradient {
  border: none;
  color: var(--white);
}

.btn.btn-gradient::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(
    to left,
    var(--color-primary),
    var(--color-optional),
    var(--color-primary)
  );
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-size: 220%;
}

.btn.btn-gradient:hover::after {
  background-position: -70% 0;
}

.btn.btn-gradient.active {
  background-position: -70% 0;
}

.btn.btn-theme {
  color: var(--white);
  border: none;
  background: var(--bg-gradient-secondary);
}

.btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.bg-dark .btn.btn-theme::after {
  background-color: var(--white);
}

.bg-dark .btn.btn-theme:hover {
  color: var(--color-heading);
}

.banner-style-four .btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background: var(--white) !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-theme:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.banner-style-four .btn.btn-theme:hover {
  color: var(--color-heading) !important;
}

button {
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 16px;
  letter-spacing: 0;
  padding: 14px 40px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--bg-gradient-secondary);
}

button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

button i {
  margin-right: 4px;
}

.btn.btn-theme.secondary {
  color: var(--white);
  border: none;
  background: var(--color-optional);
}

.btn.btn-theme.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme.secondary::after {
  background-color: var(--white);
}

.text-light .btn.btn-theme.secondary:hover {
  color: var(--color-heading);
}

.btn.btn-theme.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.hover-light::after {
  background-color: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover {
  color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light {
  color: var(--color-heading);
  border: none;
  background: var(--white);
  border: 2px solid transparent;
}

.btn.btn-light.btn-md {
  padding: 13px 52px;
}

.btn.btn-light:hover {
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
}

.btn.btn-dark {
  color: var(--white);
  background: var(--dark);
  border: none;
}

.btn.btn-dark::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.shadow .btn.btn-dark::after {
  background-color: var(--white);
}

.shadow .btn.btn-dark:hover {
  color: var(--color-heading) !important;
}

.btn.btn-dark:hover::after {
  width: 100%;
}

.btn i {
  position: relative;
  top: 1px;
  margin-left: 5px;
}

.btn.circle {
  border-radius: 30px !important;
}

.btn-simple {
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  color: var(--color-paragraph);
}

.btn-simple i {
  transform: rotate(-45deg);
  display: inline-block;
  margin-left: 2px;
}

.btn-simple:hover {
  color: var(--color-primary);
}

.video-btn i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
  color: var(--white);
}

.text-light .video-btn i {
  background: var(--white);
  color: var(--color-primary);
}

.video-btn i::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--color-primary) repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.text-light .video-btn i::after {
  background: var(--white) repeat scroll 0 0;
}

.btn-icon {
  position: relative;
  padding-left: 20px;
}

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

.btn-icon::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  height: 2px;
  left: 0;
  background: var(--color-heading);
  transform: translateY(-50%);
  margin-top: -1px;
  transition: all 0.35s ease-in-out;
}

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

.btn-icon i {
  font-weight: 600;
}

.btn-icon:hover {
  padding-left: 40px;
}

.animate-inout span {
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  line-height: 20px;
}

.animate-inout::before,
.animate-inout::after {
  width: 0%;
  height: 0%;
  position: absolute;
  content: "";
  border-radius: 100%;
}

.animate-inout:after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--white);
}

.animate-inout:before {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: var(--color-primary);
}

.animate-inout.animate-inout-borde {
  background: transparent;
  color: var(--dark);
}

.animate-inout.animate-inout-borde::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
}

.animate-inout.animate-inout-borde:hover {
  color: var(--white);
}

.animate-inout.animate-inout-borde:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout.animate-inout-borde:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.animate-inout:hover {
  color: var(--dark);
}

.animate-inout:hover::before,
.animate-inout:hover::after {
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.animate-inout:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.btn-md {
  padding: 16px 52px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-md.btn-border {
  padding: 14px 52px;
}

.btn-sm {
  padding: 16px 45px;
  font-size: 14px;
}

.btn-sm.btn-border,
.btn-sm.btn-light {
  padding: 15px 45px;
}

.mfp-close-btn-in .mfp-close::after {
  display: none;
}

/* Btn Animation */

.btn-animation {
  z-index: 1;
  position: relative;
  font-size: 18px;
  display: inline-block;
  margin-left: 10px;
}

.bg-dark .btn-animation {
  color: var(--white);
}

.btn-animation i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  font-weight: 400;
  margin-right: 10px;
  transition: all 0.35s ease-in-out;
  transform: scale(0);
}

.bg-dark .btn-animation i {
  background: var(--white);
  color: var(--color-heading);
}

.btn-animation:hover {
  margin-left: 0;
  color: var(--color-heading);
}

.bg-dark .btn-animation:hover {
  color: var(--white);
}

.btn-animation:hover i {
  transform: scale(1);
}

.btn-animation::after {
  position: absolute;
  left: -13px;
  top: 0;
  content: "";
  height: 60px;
  width: 60px;
  border: 1px solid #c2bfbf;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
  transform: scale(1);
  z-index: -1;
}

.bg-dark .btn-animation::after {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-animation:hover::after {
  transform: scale(0);
}

.btn-animation span {
  transition: all 0.35s ease-in-out;
  left: -50px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-animation:hover span {
  left: 0;
}

.btn-animation.dark::after {
  border-color: #c5c5c5;
  z-index: -1;
}

.btn-animation.dark i {
  background: var(--color-primary);
  color: var(--white);
}

.btn-animation.dark:hover {
  color: var(--color-heading);
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

a.btn-round-animation {
  display: inline-flex;
  height: 180px;
  width: 180px;
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 0 50px;
  text-transform: uppercase;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}

a.btn-round-animation i {
  display: inline-block;
  transform: rotate(-45deg);
  font-weight: 600;
  margin-bottom: 10px;
}

a.btn-round-animation::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--color-primary);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--bg-gradient);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation:hover {
  color: var(--white);
}

a.btn-round-animation:hover::before {
  height: 100%;
}

a.btn-round-animation:hover::after {
  opacity: 0.4;
  height: 80%;
}

.bg-dark a.btn-round-animation.dark {
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-style-two {
  display: inline-block;
  font-size: 24px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  padding-left: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.btn-style-two:hover {
  color: var(--color-heading);
}

.bg-dark .btn-style-two,
.bg-dark .btn-style-two:hover {
  color: var(--white);
}

.btn-style-two::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  width: 100px;
  background: var(--bg-gradient);
  content: "";
  border-radius: 50%;
  z-index: -1;
  transition: all 0.35s ease-in-out;
}

.bg-dark .btn-style-two::after {
  opacity: 0.4;
}

.bg-dark .btn-style-two:hover::after {
  opacity: 0.8;
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
  color: #cccccc;
}

.bg-gradient p,
.bg-theme p {
  color: var(--white);
  opacity: 0.9;
}

.text-dark p {
  color: var(--color-paragraph);
  opacity: 1;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--white);
}

.text-dark h1,
.text-dark h2,
.text-dark h3,
.text-dark h4,
.text-dark h5,
.text-dark h6 {
  color: var(--color-heading);
}

/* ============================================================== 
     # Typed Text
=================================================================== */
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  font-weight: 400;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

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

xclip 

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

.cd-headline.clip span {
  display: inline-block;
  padding: 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: middle;
}

.cd-headline.clip .cd-words-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 80%;
  background-color: var(--color-heading);
  transform: translateY(-50%);
}

.bg-dark .cd-headline.clip .cd-words-wrapper::after {
  background-color: var(--white);
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

.fixed-shape {
  position: fixed;
  height: 100%;
  width: 100%;
  background-size: contain;
}

/* ============================================================== 
     # Banner Style One
=================================================================== */
.banner-style-one-area {
  padding-top: 215px;
  overflow: hidden;
  padding-bottom: 120px;
}

.banner-style-one-thumb {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}

.banner-style-one-thumb .author-social {
  position: absolute;
  right: -48%;
  bottom: 0;
  background: var(--color-primary);
  border-radius: 10px;
  padding: 120px 80px;
  z-index: -1;
  min-width: 380px;
}

.banner-style-one-thumb .author-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  float: right;
}

.banner-style-one-thumb .author-social ul li a:hover {
  color: var(--color-heading);
}

.banner-style-one-thumb .author-social::after {
  position: absolute;
  right: 30px;
  top: 30%;
  bottom: 30px;
  left: 30px;
  content: "";
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  border-bottom-right-radius: 9px;
}

.banner-style-one-thumb .author-social li {
  position: relative;
  z-index: 1;
  margin: 5px 0;
}

.banner-style-one-thumb .author-social li a {
  font-size: 20px;
}

.banner-style-one-one .top {
  display: grid;
  grid-template-columns: 3fr 1.1fr;
  gap: 100px;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
  align-items: center;
}

.banner-style-one-one .top p {
  margin: 0;
}

a.btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 20px;
  float: right;
  text-align: right;
  min-width: 160px;
  color: var(--color-heading);
}

a.btn-circle img {
  height: 12px;
  margin-right: 15px;
}

a.btn-circle span {
  position: relative;
}

a.btn-circle::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 100px;
  width: 100px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: url(../img/shape/1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.bg-dark a.btn-circle::after {
  filter: brightness(0) invert(1);
}

.bg-dark a.btn-circle img {
  filter: brightness(0) invert(1);
}

a.btn-circle .button-content {
  position: relative;
  z-index: 1;
}

.banner-style-one-one .bottom {
  position: relative;
  z-index: 1;
  padding-left: 50px;
}

.banner-style-one-one .bottom h2 {
  font-size: 60px;
  margin: 0;
}

.banner-style-one-one .bottom h1 {
  font-size: 60px;
  font-weight: 600;
  margin-left: 70px;
}

.banner-style-one-one .bottom h1 b {
  font-weight: 600;
}

.banner-style-one-one .bottom p {
  margin: 0;
  float: right;
  max-width: 70%;
  background: rgba(255, 255, 255, 0.4);
  padding: 40px;
  border-radius: 10px;
}

/* ============================================================== 
     # Service
=================================================================== */
.services-style-one-area .heading-left::after,
.services-style-one-area .site-heading::after {
  position: absolute;
  top: 0;
  content: "";
  width: 80%;
  left: 50%;
  margin-left: -40%;
  display: block;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    var(--white),
    rgba(255, 255, 255, 0)
  );
  height: 1px;
}

.heading-left .row {
  align-items: center;
  justify-content: space-between;
}

a.btn-style-one {
  text-transform: uppercase;
  font-size: 22px;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 15px;
  color: var(--color-heading);
  font-weight: 400;
  letter-spacing: 0.5px;
}

a.btn-style-one::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 50px;
  width: 50px;
  background: var(--bg-gradient-secondary);
  z-index: -1;
  transform: translateY(-50%);
  border-radius: 50%;
  margin-top: -3px;
}

a.btn-style-one i {
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-heading);
  transform: rotate(-45deg);
  margin-left: 5px;
}

.bg-dark a.btn-style-one i {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

.services-style-one-area {
  position: relative;
  padding-bottom: 130px;
}

.services-style-one-items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}

.services-style-one-item {
  padding: 80px;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  background: linear-gradient(-90deg, #dae3dd 0%, #eae4c5 100%);
  gap: 50px;
  display: grid;
  grid-template-columns: 1fr 3fr 2fr;
}

.services-style-one-item .thumb img {
  border-radius: 10px;
}

.services-style-one-item .icon img {
  width: 60px;
  margin-right: 100px;
  max-width: 60px;
  min-width: 60px;
}

.services-style-one-item p {
  margin: 0;
  font-size: 24px;
}

.services-style-one-item:nth-child(2n),
.pin-spacer:nth-child(2n) .services-style-one-item {
  border-color: #00abcb;
  /* border-color: #00cc97; */
}

.services-style-one-item:nth-child(3n),
.pin-spacer:nth-child(3n) .services-style-one-item {
  border-color: #6f39fd;
  /* border-color: #6f39fd; */
}

.services-style-one-item:nth-child(4n),
.pin-spacer:nth-child(4n) .services-style-one-item {
  border-color: #00cc97;
}

.services-style-one-item .icon span {
  font-family: var(--font-heading);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-heading);
  font-size: 50px;
  letter-spacing: 0.6px;
  opacity: 0.3;
  line-height: 1;
}

.services-style-one-item .icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ul.list-style-one {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 15px;
}

ul.list-style-one li {
  position: relative;
  padding-left: 30px;
  color: var(--color-heading);
  font-size: 22px;
  font-weight: 400;
}

ul.list-style-one li::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "--";
  transform: translateY(-50%);
  margin-top: -1px;
}

.service-style-one-thumb {
  position: sticky;
  top: 140px;
}

/* ============================================================== 
     # About
=================================================================== */
.about-style-one-info .d-flex .sub-title {
  min-width: 150px;
  text-align: center;
  margin-right: 50px;
}

.about-style-one-info .d-flex {
  justify-content: flex-start;
  display: flex;
  align-items: flex-start;
}

.about-style-one-area {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  filter: drop-shadow(0px 10px 35px rgba(177, 235, 231, 0.3));
  border: 2px solid rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
  .about-style-one-area {
    max-width: 90%;
    margin: auto;
  }
}

.about-style-one-info .d-flex .title {
  margin-right: -15%;
}

.about-style-one-info .bottom {
  position: relative;
  z-index: 1;
  float: left;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 50px;
}

.about-style-one-info .bottom::after {
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  width: 64%;
  content: "";
  border-top: 1px solid;
  margin-top: -1px;
}

.about-style-one-info img {
  border-radius: 10px;
}

.about-style-one-thumb img {
  border-radius: 10px;
}

.about-style-one-info .thumb {
  margin-right: -15%;
  overflow: hidden;
}

.about-style-one-info .thumb img {
  width: 100%;
}

.about-style-one-thumb .thumb {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 30px;
}

.about-style-one-thumb .thumb img:nth-child(2) {
  position: absolute;
  left: 50px;
  bottom: 0;
  height: 200px;
}

ul.contact-info-style-one {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.contact-info-style-one li {
  display: flex;
  margin-top: 30px;
}

ul.contact-info-style-one li i {
  height: 50px;
  width: 50px;
  text-align: center;
  border: 1px solid var(--color-optional);
  line-height: 48px;
  border-radius: 50%;
  margin-right: 15px;
  background: var(--white);
  color: var(--color-optional);
}

ul.contact-info-style-one li strong {
  display: block;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 3px;
}

ul.contact-info-style-one li a {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

ul.contact-info-style-one li:first-child {
  margin-top: 0;
}

/* ============================================================== 
     # Skills
=================================================================== */

.skill-style-one-items {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -20px;
  margin-bottom: -20px;
}

.skill-style-one-item .circle {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.skill-style-one-item .circle strong {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-top: -3px;
}

.skill-style-one-item .icon img {
  height: 50px;
  margin-bottom: 20px;
}

.skill-style-one-item {
  background: rgba(255, 255, 255, 0.4);
  filter: drop-shadow(0px 10px 35px rgba(177, 235, 231, 0.3));
  clip-path: polygon(
    45% 1.33975%,
    46.5798% 0.60307%,
    48.26352% 0.15192%,
    50% 0%,
    51.73648% 0.15192%,
    53.4202% 0.60307%,
    55% 1.33975%,
    89.64102% 21.33975%,
    91.06889% 22.33956%,
    92.30146% 23.57212%,
    93.30127% 25%,
    94.03794% 26.5798%,
    94.48909% 28.26352%,
    94.64102% 30%,
    94.64102% 70%,
    94.48909% 71.73648%,
    94.03794% 73.4202%,
    93.30127% 75%,
    92.30146% 76.42788%,
    91.06889% 77.66044%,
    89.64102% 78.66025%,
    55% 98.66025%,
    53.4202% 99.39693%,
    51.73648% 99.84808%,
    50% 100%,
    48.26352% 99.84808%,
    46.5798% 99.39693%,
    45% 98.66025%,
    10.35898% 78.66025%,
    8.93111% 77.66044%,
    7.69854% 76.42788%,
    6.69873% 75%,
    5.96206% 73.4202%,
    5.51091% 71.73648%,
    5.35898% 70%,
    5.35898% 30%,
    5.51091% 28.26352%,
    5.96206% 26.5798%,
    6.69873% 25%,
    7.69854% 23.57212%,
    8.93111% 22.33956%,
    10.35898% 21.33975%
  );
  height: 230px;
  width: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.skill-style-one-items:nth-child(2) {
  position: relative;
  top: -50px;
  margin-bottom: -50px;
}

.skill-style-one-item .progress {
  width: 60%;
  margin: auto;
  background: var(--white);
  border: 1px solid #cbc5c5;
  height: 12px;
  border-radius: 50px;
}

.skill-style-one-item .progress .progress-bar {
  background: var(--bg-gradient-secondary);
  height: 6px;
  border-radius: 50px;
  top: 2px;
  position: relative;
  margin-left: 3px;
}

.skill-style-one-item h4 {
  font-size: 24px;
}

.skill-style-one-item h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  margin-top: 15px;
}

.large-heading {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  background: var(--bg-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 150px;
  line-height: 125px;
}

/* ============================================================== 
    # Brand
=================================================================== */

.brand-items {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 70px;
}

.brand-conetnt {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slide-left 50s linear infinite;
}

.brand-conetnt h2 {
  font-size: 140px;
  margin: 0 90px;
  font-weight: 600;
  line-height: 1;
  text-decoration: underline;
  font-family: var(--font-default);
  text-transform: uppercase;
}

.brand-conetnt .item:nth-child(2n) h2 {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
  border: none;
  text-decoration: none;
}

.brand-conetnt .item {
  position: relative;
}

.brand-conetnt .item::after {
  position: absolute;
  right: -45px;
  top: 50%;
  content: "";
  height: 90px;
  width: 90px;
  background: url(../img/shape/3.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  transform: translateY(-50%);
  margin-top: 10px;
}

.brand-conetnt .item:nth-child(2n)::after {
  position: absolute;
  right: -45px;
  top: 50%;
  content: "";
  height: 90px;
  width: 90px;
  background: url(../img/shape/4.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  transform: translateY(-50%);
  margin-top: 10px;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* ============================================================== 
    # Timeline
=================================================================== */
ul.timeline-style-one-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 30px;
  grid-column-gap: 60px;
}

ul.timeline-style-one-items li {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  filter: drop-shadow(0px 10px 35px rgba(177, 235, 231, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.nav.nav-tabs.career-nav-tabs {
  border: none;
  text-align: center;
  margin: 0;
  margin-bottom: 50px;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}

.nav.nav-tabs.career-nav-tabs::before,
.nav.nav-tabs.career-nav-tabs::after {
  display: none;
}

.nav.nav-tabs.career-nav-tabs li {
  margin: 0;
  padding: 0;
  border-radius: 0;
  margin-left: auto;
  float: left;
}

.nav.nav-tabs.career-nav-tabs li .nav-link {
  margin: 0;
  border-radius: 0;
  padding: 13px 40px;
  display: inline-block;
  background: var(--white);
  color: var(--color-heading);
  font-size: 20px;
  letter-spacing: 0.4px;
  font-weight: 500;
  padding-bottom: 9px;
  border: none;
}

.nav.nav-tabs.career-nav-tabs li .nav-link.active {
  background: var(--bg-gradient-secondary);
  color: var(--white);
}

.nav.nav-tabs.career-nav-tabs li .nav-link::after {
  display: none;
}

.tab-content.career-tab-content {
  position: relative;
}

.tab-content.career-tab-content::after {
  position: absolute;
  left: 50%;
  top: -30px;
  bottom: 0;
  content: "";
  width: 50%;
  border-left: 1px solid var(--white);
  z-index: -1;
  border-top-left-radius: 30px;
  border-top: 1px solid var(--white);
}

.tab-content.career-tab-content::before {
  position: absolute;
  right: 50%;
  top: -30px;
  bottom: 0;
  content: "";
  width: 50%;
  z-index: -1;
  border-top-right-radius: 30px;
  border-top: 1px solid var(--white);
}

ul.timeline-style-one-items li .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ul.timeline-style-one-items li .left h5 {
  margin: 0;
  display: inline-block;
  max-width: max-content;
  background: var(--color-primary);
  line-height: 1;
  padding: 10px 20px;
  padding-bottom: 5px;
  font-weight: 400;
  letter-spacing: 0.4px;
  font-size: 20px;
  border-radius: 7px;
  color: var(--color-heading);
}

ul.timeline-style-one-items li .left h4 {
  margin: 0;
  max-width: max-content;
  display: inline-block;
  font-weight: 500;
}

ul.timeline-style-one-items li .right p {
  margin: 0;
}

ul.timeline-style-one-items li .right h6 {
  font-weight: 300;
  font-size: 25px;
}

ul.timeline-style-one-items li .right h3 {
  margin-bottom: 15px;
  font-size: 28px;
}

ul.timeline-style-one-items li .left img {
  height: 80px;
  max-width: max-content;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.career-area {
  position: relative;
  z-index: 1;
}

.career-area {
  position: relative;
  z-index: 1;
}

.career-area .shape img {
  position: absolute;
  left: 5%;
  bottom: 50px;
  height: 200px;
  z-index: -1;
}

/* ============================================================== 
    # Portfolio
=================================================================== */

.portfolio-style-one {
  margin-top: 60px;
}

.item-center:nth-child(2n) .portfolio-style-one {
  padding-right: 0;
  padding-left: 30px;
}

.thumb-zoom {
  overflow: hidden;
}

.thumb-zoom img {
  transition: all 0.45s ease-in-out;
}

.thumb-zoom:hover img {
  transform: scale(1.06);
}

.portfolio-style-one .item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.portfolio-style-one .item .content-info {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--bg-gray);
  right: 150px;
  border-radius: 0 10px 0 10px;
  padding: 20px 35px;
}

.portfolio-style-one .item .content-info::before {
  position: absolute;
  left: -1px;
  top: -26px;
  content: "";
  height: 26px;
  width: 20px;
  border-bottom-left-radius: 12px;
  box-shadow: 0 20px 0 0 var(--bg-gray);
}

.portfolio-style-one .item .content-info::after {
  position: absolute;
  right: -20px;
  bottom: 0;
  content: "";
  height: 33px;
  width: 20px;
  border-bottom-left-radius: 17px;
  box-shadow: 0 20px 0 0 var(--bg-gray);
}

.portfolio-style-one .item .content-info h2 {
  margin: 0;
  font-size: 36px;
}

.portfolio-style-one .item .content-info span {
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.4px;
  color: var(--color-optional);
}

.portfolio-style-one .item img {
  border-radius: 12px;
}

.portfolio-style-one .item .button a {
  position: absolute;
  right: 40px;
  bottom: 30px;
  display: inline-block;
  height: 70px;
  width: 70px;
  text-align: center;
  background: var(--bg-gradient-secondary);
  color: var(--white);
  line-height: 80px;
  font-size: 35px;
  border-radius: 10px;
}

.portfolio-style-one .item .button a i {
  transform: rotate(-45deg);
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

/* ============================================================== 
     # Portfolio Single
=================================================================== */
.image-move-bg {
  position: relative;
}

.image-move-bg .animation-zoom-banner {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.project-single-info {
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 50px;
  border-radius: 10px;
  position: relative;
  background: rgba(255, 255, 255, 0.3);
}

.project-single-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-single-info ul li {
  margin-top: 15px;
  font-weight: 600;
  color: var(--color-heading);
  font-size: 20px;
  border-top: 1px solid #c3c3c3;
  padding-top: 15px;
}

.project-single-info ul li span {
  display: block;
  font-weight: 400;
  color: var(--color-paragraph);
  font-size: 17px;
}

.project-single-info ul li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.item-grid-container {
  display: grid;
  grid-row-gap: 60px;
}

.item-grid-container img {
  margin-top: 50px;
}

.item-grid-colum {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-column-gap: 50px;
  grid-row-gap: 60px;
}

ul.list-style-four {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

ul.list-style-four li {
  padding-left: 27px;
  margin-top: 10px;
  position: relative;
  font-weight: 400;
  font-size: 18px;
}

ul.list-style-four li:first-child {
  margin-top: 0;
}

ul.list-style-four li::after {
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
  height: 16px;
  width: 16px;
  background: url(../img/icon/check-mark.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.text-light ul.list-style-four li::after {
  filter: brightness(0) invert(1);
}

.project-paginvation-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-previous a,
.project-next a {
  display: flex;
  align-items: center;
}

.project-previous h5 {
  transition: all 0.35s ease-in-out;
}

.project-previous a:hover h5,
.project-next a:hover h5 {
  color: var(--color-optional);
}

.project-next a {
  text-align: right;
}

.project-previous .icon {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--bg-gradient-secondary);
  margin-right: 15px;
  color: var(--white);
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}

.project-next .icon {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--bg-gradient-secondary);
  margin-left: 15px;
  color: var(--white);
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}

.bg-dark .project-next .icon {
  background: var(--dark-optional);
  color: var(--white);
}

.project-previous h5,
.project-next h5 {
  margin: 0;
}

.project-previous .nav-title,
.project-next .nav-title {
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-default);
}

.project-previous .nav-title h5,
.project-next .nav-title h5 {
  text-transform: none;
  font-size: 26px;
  font-weight: 500;
  margin-top: 3px;
}

.project-paginvation-items .project-all i {
  display: inline-block;
  border: 1px solid #cccccc;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  color: var(--color-optional);
}

.bg-dark .project-paginvation-items .project-all i {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-previous .icon i,
.project-next .icon i {
  font-weight: 500;
}

.project-details-items.bg-gray {
  background: rgba(255, 255, 255, 0.4);
}

.project-details-carousel-item img {
  border-radius: 10px;
}

.project-details-carousel .swiper-pagination.swiper-pagination-clickable {
  position: relative;
  margin-top: 50px;
  bottom: 0;
  margin-bottom: -8px;
}

.project-details-carousel
  .swiper-pagination.swiper-pagination-clickable
  span.swiper-pagination-bullet {
  background: transparent;
  border: 2px solid;
  height: 20px;
  width: 20px;
}

/* ============================================================== 
    # Testimonials
=================================================================== */
.testimonial-style-one-info .sub-title {
  margin-bottom: 30px;
}

.customer-box .thumb img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -25px;
}

.customer-box .thumb {
  margin-left: 25px;
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.customer-box .thumb h4 {
  margin: 0;
  height: 60px;
  width: 60px;
  line-height: 58px;
  background: var(--color-primary);
  text-align: center;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -25px;
  font-weight: 400;
  font-size: 28px;
  color: var(--color-heading);
}

.customer-box {
  display: flex;
  align-items: center;
}

.customer-box .info {
  font-size: 26px;
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.2;
}

.testimonial-style-one .item .thumb {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  min-width: 35%;
  position: relative;
  bottom: -60px;
  margin-top: -60px;
  margin-right: 70px;
}

.testimonial-style-one .item {
  display: flex;
  background: linear-gradient(
    90deg,
    rgba(255, 182, 70, 0.2) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  padding: 60px;
  border-radius: 10px;
  border: 2px solid var(--white);
  justify-content: right;
  align-items: center;
}

.testimonial-style-one .tm-review {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px dashed var(--white);
  padding-bottom: 30px;
}

.testimonial-style-one .tm-review .icon {
  width: 60px;
  margin-right: 30px;
}

.testimonial-style-one .tm-review h4 {
  margin: 0;
}

.testimonial-style-one .item .thumb .provider {
  position: absolute;
  right: -30px;
  bottom: 120px;
  background: var(--bg-gradient-secondary);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
}

.testimonial-style-one .item .thumb .provider i {
  font-size: 13px;
}

.testimonial-style-one .item .thumb .provider h5 {
  margin: 0;
  color: var(--white);
  font-weight: 400;
  font-family: var(--font-default);
  margin-bottom: 5px;
}

.testimonial-style-one p {
  margin: 0;
}

.testimonial-style-one .tm-review h5 {
  margin: 0;
  font-family: var(--font-default);
  font-weight: 400;
  color: var(--color-paragraph);
  margin-top: 5px;
}

.bg-dark .testimonial-style-one .tm-review h5 {
  color: var(--white);
}

.testimonial-style-one-items {
  position: relative;
}

.testimonial-style-one-items .testimonial-control {
  height: 60px;
  position: relative;
  margin-top: 30px;
}

.testimonial-style-one-items .testimonial-control .swiper-button-prev {
  height: 50px;
  width: 50px;
  text-align: center;
  border: 2px solid var(--color-paragraph);
  border-radius: 8px;
  left: 0;
}

.testimonial-style-one-items .testimonial-control .swiper-button-prev::after {
  color: var(--color-heading);
  font-size: 24px;
}

.testimonial-style-one-items .testimonial-control .swiper-button-next {
  height: 50px;
  width: 50px;
  text-align: center;
  border: 2px solid var(--color-paragraph);
  border-radius: 8px;
  right: 0;
}

.testimonial-style-one-items .testimonial-control .swiper-button-next::after {
  color: var(--color-heading);
  font-size: 22px;
}

.testimonial-style-one-items .testimonial-control .swiper-pagination {
  display: grid;
  grid-column-gap: 30px;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  padding: 0 70px;
  bottom: 20px;
}

.testimonial-style-one-items
  .testimonial-control
  .swiper-pagination
  span.swiper-pagination-bullet {
  border-radius: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}

.testimonial-style-one-items
  .testimonial-control
  .swiper-pagination
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--bg-gradient-secondary);
}

/* ============================================================== 
     # Partner
=================================================================== */

.partner-style-one-area::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 400px;
  width: 400px;
  background: var(--bg-gradient);
  z-index: -1;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.3;
}

.partner-style-one-area::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 400px;
  width: 400px;
  background: var(--bg-gradient);
  z-index: -1;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.3;
}

.partner-style-one-item {
  border-radius: 150px;
  box-shadow: 0 0 9px 0 rgb(109 117 143 / 5%);
  transition: all 0.35s ease-in-out;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  width: 300px;
  filter: drop-shadow(0px 10px 35px rgba(177, 235, 231, 0.3));
  background: var(--white);
}

.partner-style-one-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.partner-style-one-item img {
  max-height: 35px;
}

.partner-style-one-items:nth-child(2) {
  position: relative;
  top: -80px;
  margin-bottom: -80px;
}

/* ============================================================== 
     # Faq
=================================================================== */

.services-details-area.bg-gray {
  background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 1500px) {
  .services-details-area.bg-gray {
    max-width: 90%;
    margin: auto;
    border-radius: 10px;
  }
}

.thumb-style-two img {
  border-radius: 8px;
}

.d-grid.colums-2 {
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 80px;
  align-items: center;
}

.thumb-style-one {
  position: relative;
  z-index: 1;
  background: linear-gradient(130deg, var(--white) 20%, #ecf0f3 100%);
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  box-shadow: 0 0 9px 0 rgb(109 117 143 / 5%);
  transition: all 0.35s ease-in-out;
  margin-right: 120px;
}

.thumb-style-one img {
  border-radius: 25px;
}

.thumb-style-one .chat-card {
  position: absolute;
  right: -160px;
  top: 50px;
}

.thumb-style-one .chat-card p {
  color: var(--color-heading);
  font-weight: 500;
  margin-bottom: 9px;
}

.thumb-style-one .chat-card h5 {
  font-size: 22px;
}

.thumb-style-one .chat-card a {
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 64px;
  background: #007ff7;
  border-radius: 50%;
  color: var(--white);
  float: right;
  margin-right: 125px;
  border: 3px solid var(--white);
  font-size: 25px;
  box-shadow: 0 0 9px 0 rgb(109 117 143 / 15%);
  margin-top: 30px;
}

.thumb-style-one .chat-card img {
  position: absolute;
  right: 30px;
  bottom: 35px;
  border-radius: 0;
}

.accordion-item.accordion-style-one {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
}

.accordion-item.accordion-style-one button.accordion-button {
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 22px 40px;
  padding-right: 70px;
  font-size: 20px;
  background: transparent;
  transform: none;
  text-transform: none;
}

.accordion-item.accordion-style-one button.accordion-button::after {
  right: 25px;
  left: auto;
  position: absolute;
}

.accordion-item.accordion-style-one .accordion-body {
  border: none;
  padding: 0;
  margin: 40px;
  padding-bottom: 40px;
  margin-top: 0;
  padding-top: 30px;
  margin-bottom: 0;
}

.accordion-item.accordion-style-one:last-child {
  margin: 0;
}

.accordion-item.accordion-style-one button.accordion-button:not(.collapsed) {
  color: var(--white);
  background: var(--dark);
  border-radius: 10px 10px 0 0;
}

.accordion-item.accordion-style-one button.accordion-button::after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  font-size: 16px;
  position: absolute;
  top: 16px;
  right: 25px;
  background: var(--dark);
  color: var(--white);
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 31px;
  border-radius: 50%;
  transform: none;
}

.accordion-item.accordion-style-one
  button.accordion-button:not(.collapsed)::after {
  -webkit-transform: inherit;
  transform: inherit;
  content: "\f068";
}

.accordion-item.accordion-style-one
  button.accordion-button:not(.collapsed)::after {
  background: var(--white);
  color: var(--color-heading);
}

.accordion-item.accordion-style-one .accordion-body p:last-child {
  margin: 0;
}

/* ============================================================== 
    # Pricing
=================================================================== */

.pricing-style-one {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-style-one .pricing-header {
  background: #00cc97;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-header h4 {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 10px;
}

.pricing-header h2 {
  color: var(--white);
  font-size: 62px;
  font-weight: 500;
  margin: 0;
}

.pricing-header h2 sub {
  font-weight: 300;
  font-size: 20px;
  bottom: 0;
}

.pricing-style-one .pricing-header i {
  display: inline-block;
  font-size: 70px;
  color: var(--white);
}

.pricing-style-one .pricing-header i.fa-laravel {
  font-size: 65px;
}

.pricing-style-one .pricing-content {
  padding: 50px 40px;
}

.pricing-style-one .pricing-content .btn {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
}

.pricing-style-one .pricing-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-style-one .pricing-content ul li {
  margin-top: 7px;
}

.pricing-style-one .pricing-content .btn img {
  height: 14px;
  margin-right: 5px;
  transition: all 0.35s ease-in-out;
}

.pricing-style-one .pricing-content .btn:hover img {
  filter: brightness(0) invert(1);
}

.pricing-style-one .pricing-content .btn.btn-gradient img {
  filter: brightness(0) invert(1);
}

.pricing-style-one .pricing-content ul li i {
  font-size: 16px;
  margin-right: 5px;
  background: var(--bg-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pricing-two-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pricing-two-box .pricing-style-one:first-child .pricing-header {
  background: var(--bg-gradient-secondary);
}

.pricing-two-box .pricing-style-one:nth-child(2) .pricing-header {
  background: #6f39fd;
}

.pricing-style-one .pricing-content ul li .fa-clock,
.pricing-style-one .pricing-content ul li .fa-sync-alt {
  -webkit-text-fill-color: var(--color-heading);
  font-weight: 500;
}

/* ============================================================== 
    # Hire Me
=================================================================== */
.hire-me-items {
  background: linear-gradient(
    90deg,
    rgba(255, 182, 70, 0.2) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  padding: 120px 80px;
  border-radius: 10px;
  border: 2px solid var(--white);
  position: relative;
  z-index: 1;
  margin-top: 100px;
  padding-top: 180px;
}

.hire-me-items .thumb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 200px;
  width: 200px;
  border: 2px solid var(--white);
  border-radius: 0%;
  top: -100px;
}

.hire-me-items h2 {
  font-size: 64px;
  line-height: 1;
}

.hire-me-items .thumb a {
  display: inline-block;
  height: 70px;
  width: 70px;
  line-height: 75px;
  text-align: center;
  background: #30d56e;
  border-radius: 50%;
  color: var(--white);
  font-size: 33px;
  border: 2px solid var(--white);
  position: absolute;
  right: 0;
  bottom: 0;
}

.hire-me-items .thumb a i {
  line-height: 1;
}

.hire-me-items > img {
  position: absolute;
  right: -100px;
  top: 0;
  height: 160px;
}

/* ============================================================== 
    # Home Blog
=================================================================== */

.blog-area .site-heading .title {
  font-size: 50px;
  font-weight: 600;
}

.home-blog-thumb {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
}

ul.home-blog-meta {
  margin: 0;
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

ul.home-blog-meta li {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
}

.home-blog-style-one-item .content h4 {
  font-size: 34px;
  line-height: 1.2;
}

.home-blog-thumb img {
  transition: all 0.35s ease-in-out;
}

ul.home-blog-meta li a {
  display: inline-block;
  border: 1px solid #a3a1a6;
  border-radius: 30px;
  padding: 6px 18px;
  font-weight: 300;
  text-transform: capitalize;
  padding-bottom: 7px;
  margin-right: 10px;
  line-height: 1;
  font-family: var(--font-default);
  color: var(--color-paragraph);
}

a.btn-read-more {
  text-transform: uppercase;
  color: var(--color-paragraph);
  font-size: 20px;
  letter-spacing: 0.5px;
}

a.btn-read-more i {
  display: inline-block;
  font-weight: 100;
  transform: rotate(-45deg);
  font-size: 20px;
  position: relative;
  top: 2px;
}

a.btn-read-more:hover {
  color: var(--color-optional);
}

.color-style-two a.btn-read-more:hover {
  color: var(--color-style-two);
}

.home-blog-style-one-item:hover .home-blog-thumb img {
  transform: scale(1.1);
}

/* ============================================================== 
    # Contact
=================================================================== */
.contact-style-one-info {
  padding: 80px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--white);
  filter: drop-shadow(0px 10px 35px rgba(255, 182, 100, 0.4));
}

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

ul.list-style-two li {
  display: flex;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 30px;
}

ul.list-style-two li i {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 56px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  margin-right: 20px;
  color: var(--color-optional);
}

ul.list-style-two li h5 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 0;
}

ul.list-style-two li a {
  font-family: var(--font-default);
  font-weight: 500;
}

ul.list-style-two li p {
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  color: var(--color-heading);
}

ul.list-style-three {
  padding-left: 20px;
  border-top: 1px solid;
  margin-top: 30px;
  padding-top: 30px;
}

ul.list-style-three li {
  margin-top: 5px;
}

.contact-form-style-one form input,
.contact-form-style-one form textarea {
  background: transparent !important;
  box-shadow: none !important;
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  padding-left: 0;
}

.contact-form-style-one form .form-group {
  margin-bottom: 15px;
}

.contact-form-style-one form textarea {
  height: 180px;
}

.contact-form-style-one form button {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 15px;
}

.contact-form-style-one .alert-notification {
  margin-top: 15px;
}

.contact-form-style-one .alert-notification h3 {
  margin-bottom: 5px;
}

/* ============================================================== 
    # 404 page
=================================================================== */

.error-page-area {
  position: relative;
  z-index: 1;
}

.error-page-area .shape-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: left !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-page-area .shape-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: right !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-box h1 {
  font-size: 150px;
  line-height: 110px;
  font-weight: 600;
  text-shadow: 3px 3px #c0c0c0;
}

.error-box h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

.error-box p {
  padding: 0 10%;
}

/* ============================================================== 
    # Footer
=================================================================== */
footer {
  padding: 120px 0;
}

.footer-item h2 {
  margin: 0;
  font-size: 110px;
  color: var(--color-optional);
  background: var(--bg-gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -10px;
  line-height: 95px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0;
}

ul.short-link {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

ul.short-link li {
  display: inline-block;
}

ul.short-link li a {
  display: inline-flex;
  border: 3px solid rgba(255, 255, 255, 0.2);
  padding: 15px 35px;
  font-family: var(--font-default);
  border-radius: 40px;
  margin-right: 10px;
  margin-top: 20px;
  align-items: center;
}

ul.short-link li a i {
  display: inline-block;
  font-weight: 100;
  margin-right: 10px;
}

ul.short-link li:first-child a {
  background: var(--white);
  border-color: transparent;
  color: var(--color-heading);
}

.footer-item .widget-title {
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  font-size: 30px;
}

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

ul.project-list li a {
  display: inline-block;
  font-family: var(--font-default);
  font-weight: 300;
}

.footer-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 -30px;
}

.footer-items .footer-item:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-items .footer-item {
  padding: 0 50px;
}

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

ul.social-list li {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  margin-right: 10px;
}

ul.social-list li a {
  font-weight: 400;
  color: #cccccc;
}

.footer-item h5 {
  font-size: 36px;
  font-weight: 300;
  color: #cccccc;
}

.footer-item h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 110px;
  padding-top: 30px;
}

.footer-bottom p {
  margin: 0;
}

a#scrollUp {
  font-weight: 400;
  font-family: var(--font-default);
  text-transform: uppercase;
  color: #cccccc;
}

a#scrollUp i {
  font-weight: 600;
  font-size: 17px;
  color: var(--color-primary);
  margin-left: 5px;
}

ul.project-list li {
  margin-top: 12px;
}

ul.project-list li a {
  display: inline-block;
  color: #cccccc;
}

ul.project-list li a strong {
  display: inline-block;
  font-weight: 300;
  background: #474447;
  width: 28px;
  text-align: center;
  line-height: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 15px;
  color: var(--white);
}

ul.project-list li a:hover {
  color: var(--white);
}

.footer-item .bottom h4 {
  border-bottom: 1px solid;
  padding-bottom: 15px;
  font-weight: 400;
  font-size: 30px;
}

/* ============================================================== 
    # Responsive CSS
=================================================================== */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  /* Default CSS */
  .heading-left .row {
    align-items: flex-end;
  }

  .heading-left a.btn-style-one {
    margin: 0;
    top: -15px;
    position: relative;
  }

  /* Banner */
  .banner-style-one-thumb .author-social {
    right: 0;
  }

  .banner-style-one-thumb {
    margin-bottom: 50px;
    padding-right: 200px;
  }

  .banner-style-one-thumb img {
    width: 100%;
  }

  .banner-style-one-one .bottom {
    padding: 0;
    text-align: center;
  }

  .banner-style-one-one .bottom p {
    float: left;
    max-width: 100%;
    padding: 50px;
  }

  .banner-style-one-one .bottom h2 {
    font-size: 80px;
  }

  .banner-style-one-one .bottom h1 {
    font-size: 80px;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
  }

  /* About */
  .about-style-one-info .d-flex {
    display: block !important;
  }

  .about-style-one-area {
    max-width: 100%;
    border-radius: 0;
    border: none;
  }

  /* Service */
  .services-style-one-item .icon img {
    margin-right: 50px;
  }

  /* Skill */
  .skill-style-one-item {
    margin: auto;
    height: 260px;
    width: 260px;
  }

  .skill-style-one-item h3 {
    font-size: 26px;
    margin-top: 10px;
  }

  .skill-style-one-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  /* Portfolio */
  .portfolio-style-one .item .content-info h2 {
    font-size: 30px;
  }

  .portfolio-style-one .item .content-info {
    right: 100px;
  }

  .portfolio-style-one .item .button a {
    right: 15px;
    bottom: 15px;
  }

  /* Testimonial */
  .testimonial-style-one-info {
    margin-bottom: 60px;
  }

  /* Pricing */
  .pricing-two-box {
    gap: 30px;
    margin-top: 30px;
  }

  /* Hire Me */
  .hire-me-items > img {
    right: -30px;
  }

  /* Contact Form */
  .contact-style-one-info {
    padding: 80px 40px;
  }

  ul.list-style-two li {
    font-size: 22px;
  }

  /* Footer */
  .footer-item h2 {
    font-size: 80px;
    line-height: 1;
  }

  ul.short-link li a {
    padding: 10px 28px;
  }
}

/* Screen Mobile To Tablet */
@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 991px) {
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Default CSS */
  .heading-left .row {
    align-items: flex-end;
  }

  .heading-left a.btn-style-one {
    margin-top: 0;
    position: relative;
    top: -15px;
  }

  /* Banner */
  .banner-style-one-thumb .author-social {
    right: 0;
  }

  .banner-style-one-thumb {
    margin-bottom: 50px;
    padding-right: 200px;
  }

  .banner-style-one-thumb img {
    width: 100%;
  }

  .banner-style-one-one .bottom {
    padding: 0;
    text-align: center;
  }

  .banner-style-one-one .bottom p {
    float: left;
    max-width: 100%;
    padding: 50px;
  }

  .banner-style-one-one .bottom h2 {
    font-size: 80px;
  }

  .banner-style-one-one .bottom h1 {
    font-size: 80px;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
  }

  /* About */
  .about-style-one-info .d-flex {
    display: block !important;
  }

  .about-style-one-info .d-flex .title {
    margin-right: 0;
  }

  .about-style-one-info .d-flex .sub-title {
    margin: 0;
    margin-bottom: 25px;
  }

  .about-style-one-area {
    border: none;
    border-radius: 0;
  }

  .about-style-one-info .bottom::after {
    display: none;
  }

  .about-style-one-info .bottom {
    justify-content: normal;
  }

  .about-style-one-info .thumb {
    margin: 0;
    overflow: inherit;
    display: none;
  }

  .about-style-one-thumb {
    padding-left: 0;
  }

  ul.contact-info-style-one li {
    display: inline-flex;
    margin-right: 30px;
    margin-top: 30px;
  }

  /* Skill */
  .skill-style-one-items {
    grid-auto-flow: inherit;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* Timeline */
  ul.timeline-style-one-items li {
    padding: 50px 30px;
    display: block;
  }

  ul.timeline-style-one-items li .left {
    display: block;
    position: relative;
  }

  ul.timeline-style-one-items li .left h5 {
    margin-bottom: 25px;
    display: block;
  }

  ul.timeline-style-one-items li .left h4 {
    margin: 0;
    position: absolute;
    right: 0;
    top: 5px;
  }

  ul.timeline-style-one-items li .left img {
    display: none;
  }

  .career-area .shape img {
    height: 100px;
  }

  /* Hire Us */
  .hire-me-items > img {
    right: 0;
    height: 80px;
  }

  /* Pricing */
  .pricing-two-box {
    gap: 30px;
    margin-top: 30px;
  }

  .pricing-style-one .pricing-content .btn {
    padding: 16px 35px;
  }

  /* Service */
  .service-style-one-thumb {
    margin-top: 40px;
  }

  .service-style-one-thumb img {
    width: 100%;
  }

  .services-style-one-item {
    grid-template-columns: 1fr;
  }

  .services-style-one-item .thumb img {
    width: 100%;
  }

  /* Service Details */
  .d-grid.colums-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Testimonial */
  .testimonial-style-one .item {
    flex-direction: column-reverse;
  }

  .testimonial-style-one-info {
    text-align: center;
  }

  .customer-box {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
  }

  .customer-box .thumb {
    justify-content: center;
    margin: 0;
    margin-left: 25px;
  }

  .testimonial-style-one .item .thumb {
    margin-right: 0;
    margin-top: 0;
  }

  .testimonial-style-one .item .thumb .provider {
    right: 0;
  }

  .testimonial-style-one {
    text-align: center;
  }

  .testimonial-style-one .tm-review {
    justify-content: center;
    text-align: left;
  }

  /* Partner */

  .partner-style-one-item {
    height: 210px;
    width: 210px;
  }

  .partner-style-one-items:nth-child(2) {
    top: -60px;
    margin-bottom: -60px;
  }

  /* Footer*/
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .text-end {
    text-align: center !important;
  }

  a#scrollUp {
    display: inline-block;
    background: #353535;
    padding: 10px 35px;
    border-radius: 40px;
    margin-top: 15px;
  }

  .footer-items {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    padding-top: 50px;
  }

  .footer-items .footer-item {
    padding: 0;
  }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  /* Default CSS */

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

  .heading-left .text-end {
    text-align: center !important;
  }

  .heading {
    font-size: 36px;
    line-height: 1;
  }

  /* Banner */
  .banner-style-one-one .top {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  a.btn-circle {
    float: none;
  }

  .banner-style-one-thumb .author-social {
    position: relative;
    right: 0;
    min-width: auto;
    width: 100%;
    padding: 50px;
    height: 100%;
    margin-top: 30px;
  }

  .banner-style-one-thumb .author-social ul {
    float: none;
  }

  .banner-style-one-area {
    padding-top: 160px;
    padding-bottom: 60px;
    text-align: center;
  }

  .banner-style-one-one .bottom {
    padding: 0;
  }

  .banner-style-one-one .bottom h2 {
    font-size: 40px;
  }

  .banner-style-one-one .bottom h1 {
    margin-left: 0;
    font-size: 40px;
  }

  .banner-style-one-one .bottom p {
    float: none;
    max-width: 100%;
  }

  /* About */
  .about-style-one-info .d-flex {
    display: block !important;
  }

  .about-style-one-info .d-flex .title {
    margin-right: 0;
  }

  .about-style-one-info .d-flex .sub-title {
    margin: 0;
    margin-bottom: 25px;
  }

  .about-style-one-area {
    border: none;
    border-radius: 0;
  }

  .about-style-one-info .bottom::after {
    display: none;
  }

  .about-style-one-info .bottom {
    justify-content: normal;
  }

  .about-style-one-info .thumb {
    margin: 0;
    overflow: inherit;
    display: none;
  }

  .about-style-one-thumb {
    padding-left: 0;
  }

  ul.contact-info-style-one li {
    display: inline-flex;
    margin-right: 30px;
    margin-top: 30px;
  }

  /* Skill */
  .skill-style-one-items {
    grid-auto-flow: inherit;
    gap: 30px;
  }

  /* Timeline */
  ul.timeline-style-one-items {
    grid-template-columns: 1fr;
  }

  ul.timeline-style-one-items li .left {
    flex-direction: inherit;
    margin-bottom: 30px;
    align-items: center;
  }

  ul.timeline-style-one-items li {
    grid-template-columns: 1fr;
  }

  ul.timeline-style-one-items li .left img {
    display: none;
  }

  ul.timeline-style-one-items li .left h4 {
    margin-left: 15px;
  }

  .nav.nav-tabs.career-nav-tabs li .nav-link {
    border-radius: 10px;
  }

  .nav.nav-tabs.career-nav-tabs li {
    margin: 10px 6px;
    float: none;
  }

  .tab-content.career-tab-content::before,
  .tab-content.career-tab-content::after {
    display: none;
  }

  .career-area .shape img {
    height: auto;
    width: 100px;
    bottom: 0;
  }

  /* Hire Me */
  .hire-me-items > img {
    display: none;
  }

  .hire-me-items {
    padding: 50px;
    padding-top: 150px;
  }

  .hire-me-items h2 {
    font-size: 36px;
  }

  /* Partner */
  .partner-style-one-items {
    display: grid;
  }

  .partner-style-one-items:nth-child(2) {
    top: 0;
    margin: 0;
    margin-top: 30px;
  }

  /* Service */

  .services-style-one-area .heading-left {
    text-align: center;
  }

  .services-style-one-area .heading-left .text-end {
    text-align: center !important;
  }

  .services-style-one-items {
    display: grid;
    gap: 30px;
  }

  .services-style-one-item {
    display: block;
    padding: 50px 30px;
    position: relative;
  }

  .services-style-one-item .thumb img {
    margin-top: 30px;
  }

  .services-style-one-item p {
    font-size: 18px;
  }

  ul.list-style-one li {
    font-size: 17px;
  }

  .services-style-one-item .icon span {
    position: absolute;
    right: 30px;
    top: 60px;
  }

  .services-style-one-item .icon {
    margin-bottom: 30px;
  }

  .services-style-one-item .icon img {
    margin: 0;
  }

  .service-style-one-thumb {
    position: relative;
    top: 0;
    margin-top: 30px;
  }

  .services-style-one-area {
    padding-bottom: 60px;
  }

  .services-style-one-item .thumb img {
    width: 100%;
  }

  /* Service Details */
  .d-grid.colums-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Brand */
  .brand-conetnt h2 {
    font-size: 80px;
    margin: 0 60px;
  }

  .brand-conetnt .item::after {
    height: 50px;
    width: 50px;
    right: -30px;
  }

  .brand-conetnt .item:nth-child(2n)::after {
    height: 60px;
    width: 60px;
    right: -35px;
  }

  .brand-items {
    padding-bottom: 60px;
  }

  /* Pricing */
  .pricing-two-box {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  /* Portfolio */
  .portfolio-style-one .item .content-info h2 {
    font-size: 30px;
  }

  .portfolio-style-one .item .content-info {
    right: 100px;
  }

  .portfolio-style-one .item .button a {
    right: 17px;
    bottom: 17px;
  }

  .item-center:nth-child(2n) .portfolio-style-one {
    padding-left: 0;
  }

  /* Testimonial */
  .testimonial-style-one .item {
    flex-direction: column-reverse;
  }

  .testimonial-style-one-info {
    text-align: center;
  }

  .customer-box {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
  }

  .customer-box .thumb {
    justify-content: center;
    margin: 0;
    margin-left: 25px;
  }

  .testimonial-style-one .item .thumb {
    margin-right: 0;
    margin-top: 0;
  }

  .testimonial-style-one .item .thumb .provider {
    right: 0;
  }

  /* Footer */
  .footer-item h2 {
    font-size: 60px;
    line-height: 1;
    margin-top: 0;
  }

  footer {
    padding: 60px 0;
  }

  .footer-items {
    grid-template-columns: 1fr;
    margin: 0;
    gap: 50px;
    margin-top: 50px;
  }

  .footer-items .footer-item {
    padding: 0;
  }

  .footer-bottom {
    margin-top: 60px;
    text-align: center;
  }

  .footer-bottom .text-end {
    text-align: center !important;
  }

  a#scrollUp {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 10px 25px;
    margin-top: 20px;
    color: var(--white);
  }
}

@media only screen and (max-width: 480px) {
  /* Pricing */
  .pricing-style-one .pricing-header {
    display: flex;
    text-align: center;
    flex-direction: column-reverse;
  }

  .pricing-style-one .pricing-header i {
    margin-bottom: 30px;
  }

  .pricing-style-one .pricing-content .btn img {
    display: none;
  }

  .pricing-style-one .pricing-content .btn {
    padding-top: 17px;
  }

  /* Timeline */
  ul.timeline-style-one-items li {
    padding: 50px 30px;
  }

  /* Portfolio */
  .portfolio-style-one .item .content-info {
    position: relative;
    background: var(--white);
    border-radius: 0;
  }

  .portfolio-style-one .item .content-info::before,
  .portfolio-style-one .item .content-info::after {
    display: none;
  }

  .portfolio-style-one .item .thumb-zoom img {
    border-radius: 10px 10px 0 0;
  }

  .portfolio-style-one .item .button a {
    display: none;
  }

  .portfolio-style-one {
    margin-top: 30px;
  }

  /* Project Detaisl */
  .project-thumb .row {
    gap: 30px;
  }

  .item-grid-colum {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .item-grid-container {
    gap: 0;
  }

  .item-grid-container img {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .project-paginvation-items {
    display: block;
    text-align: center;
    border: none;
    padding: 0;
  }

  .project-previous .icon {
    display: none;
  }

  .project-next .icon {
    display: none;
  }

  .project-paginvation-items > div {
    margin: 10px 0;
  }

  .project-paginvation-items > div a {
    display: block;
    text-align: center !important;
    background: var(--bg-gray-secondary);
    padding: 20px;
    border: 1px solid #dddddd;
    border-radius: 10px;
  }

  .bg-dark .project-paginvation-items > div a {
    background: var(--dark-optional);
  }

  .project-paginvation-items > div:first-child {
    margin-top: 0;
  }

  .project-paginvation-items .project-all i {
    border: none;
    font-size: 30px;
  }

  /* Testimonial */
  .testimonial-style-one .tm-review {
    display: block;
  }

  .testimonial-style-one .item {
    text-align: center;
  }

  .testimonial-style-one .tm-review .icon {
    margin: auto auto 30px;
  }

  .testimonial-style-one .item {
    padding: 50px 30px;
  }

  /* Contact */
  .contact-style-one-info {
    padding: 50px 30px;
  }

  ul.list-style-two li i {
    margin-right: 15px;
  }

  ul.list-style-two li {
    font-size: 20px;
  }
}

@media only screen and (max-width: 350px) {
  .side {
    width: 320px;
    padding: 50px 30px;
    padding-top: 0;
  }
}

/* ============================================================== 
    # Dark Layout
=================================================================== */

body.bg-dark::after {
  display: none;
}

.bg-dark .banner-style-one-thumb .author-social {
  background: var(--bg-gradient-secondary);
}

.bg-dark .banner-style-one-one .bottom p {
  background: rgba(255, 255, 255, 0.1);
}

.bg-dark .services-style-one-area .heading-left::after,
.bg-dark .services-style-one-area .site-heading::after {
  opacity: 0.3;
}

.bg-dark .services-style-one-item {
  background: linear-gradient(-90deg, #363b3f 0%, #1a1d22 100%);
}

.bg-dark ul.list-style-one li {
  color: #cccccc;
}

.bg-dark .about-style-one-area {
  background: rgba(255, 255, 255, 0.06);
  border: none;
}

.bg-dark .about-style-one-area img {
  box-shadow: none;
}

.bg-dark .skill-style-one-item {
  background: rgba(255, 255, 255, 0.1);
}

.bg-dark .skill-style-one-item .progress {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.bg-dark ul.contact-info-style-one li i {
  background: #3c4145;
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-dark .tab-content.career-tab-content::before,
.bg-dark .tab-content.career-tab-content::after {
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-dark ul.timeline-style-one-items li {
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

.bg-dark .portfolio-style-one .item .content-info {
  background: var(--dark-secondary);
}

.bg-dark .portfolio-style-one .item .content-info::before,
.bg-dark .portfolio-style-one .item .content-info::after {
  box-shadow: 0 20px 0 0 var(--dark-secondary);
}

.bg-dark .customer-box .info {
  color: var(--white);
}

.bg-dark .testimonial-style-one .item {
  border: none;
  background: rgba(255, 255, 255, 0.1);
}

.bg-dark .testimonial-style-one-items .testimonial-control .swiper-button-next,
.bg-dark .testimonial-style-one-items .testimonial-control .swiper-button-prev {
  border-color: var(--white);
}

.bg-dark
  .testimonial-style-one-items
  .testimonial-control
  .swiper-button-prev::after,
.bg-dark
  .testimonial-style-one-items
  .testimonial-control
  .swiper-button-next::after {
  color: var(--white);
}

.bg-dark
  .testimonial-style-one-items
  .testimonial-control
  .swiper-pagination
  span.swiper-pagination-bullet {
  background: var(--white);
}

.bg-dark
  .testimonial-style-one-items
  .testimonial-control
  .swiper-pagination
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--bg-gradient-secondary);
}

.bg-dark .testimonial-style-one .tm-review {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-dark .partner-style-one-item {
  box-shadow: none;
  background: var(--dark-secondary);
  filter: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-dark .pricing-style-one {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.bg-dark .pricing-style-one .pricing-content ul li .fa-clock,
.bg-dark .pricing-style-one .pricing-content ul li .fa-sync-alt {
  -webkit-text-fill-color: var(--white);
}

.bg-dark .pricing-style-one .pricing-content ul li {
  color: var(--white);
}

.bg-dark .pricing-style-one .pricing-content .btn {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.bg-dark .pricing-style-one .pricing-content .btn img {
  filter: brightness(0) invert(1);
}

.bg-dark .pricing-style-one .pricing-content .btn:hover {
  border-color: transparent;
}

.bg-dark .pricing-style-one .pricing-content .btn::after {
  background: var(--white);
}

.bg-dark .pricing-style-one .pricing-content .btn:hover {
  color: var(--color-heading);
}

.bg-dark .pricing-style-one .pricing-content .btn:hover img {
  filter: none;
}

.bg-dark .pricing-style-one .pricing-content .btn.btn-gradient::after {
  background: var(--bg-gradient-secondary);
}

.bg-dark .pricing-style-one .pricing-content .btn.btn-gradient:hover {
  color: var(--white);
}

.bg-dark .pricing-style-one .pricing-content .btn.btn-gradient:hover img {
  filter: brightness(0) invert(1);
}

.bg-dark .hire-me-items {
  border: none;
  background: linear-gradient(
    90deg,
    rgb(93 93 93 / 20%) 0%,
    rgb(55 60 64) 100%
  );
}

.bg-dark .hire-me-items .thumb {
  border: none;
  /* background: #32373b; */
  padding: 15px;
}

.founder_pic {
  border: none;
  border-radius: 50%;
  /* background: #32373b; */
  /* padding: 15px; */
}
.bg-dark .contact-style-one-info {
  border: none;
  background: rgba(255, 255, 255, 0.07);
  filter: none;
}

.bg-dark ul.list-style-two li p {
  color: var(--white);
}

.bg-dark ul.list-style-two li i {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark ul.list-style-three {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark .contact-form-style-one form input,
.bg-dark .contact-form-style-one form textarea {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.bg-dark .contact-form-style-one form button::after {
  background: var(--white);
}

.bg-dark .contact-form-style-one form button:hover {
  color: var(--color-heading);
}

.bg-dark .contact-form-style-one form input::-webkit-input-placeholder,
.bg-dark .contact-form-style-one form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cccccc;
}

.bg-dark .contact-form-style-one form input::-moz-placeholder,
.bg-dark .contact-form-style-one form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

.bg-dark .contact-form-style-one form input:-ms-input-placeholder,
.bg-dark .contact-form-style-one form textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #cccccc;
}

.bg-dark .contact-form-style-one form input:-moz-placeholder,
.bg-dark .contact-form-style-one form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

.bg-dark ul.home-blog-meta li a {
  color: #cccccc;
}

.bg-dark a.btn-read-more {
  color: #cccccc;
}

.bg-dark a.btn-read-more:hover {
  color: var(--color-optional);
}

.bg-dark a.btn-circle {
  color: var(--white);
}

.bg-dark a.btn-style-one {
  color: var(--white);
}

/* ============================================================== 
    # Preloader CSS
=================================================================== */
body.loaded {
  overflow: hidden !important;
  height: 100% !important;
}

.preloader {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}

.preloader svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: var(--white);
}

.bg-dark .preloader svg {
  fill: var(--dark);
}

.preloader .preloader-heading .load-text {
  font-size: 20px;
  letter-spacing: 15px;
  text-transform: uppercase;
  z-index: 20;
  color: var(--color-heading);
}

.bg-dark .preloader .preloader-heading .load-text {
  color: var(--white);
}

.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
