/*---------------------------
 CSS Index  
****************************

01. Variable
----------------------------*/
/* Utils  */
/*=========================
    Variables 
==========================*/
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100;200;300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");
:root {
  --primary-color: #ffae88;
  --heading-color: #191919;
  --neutral: #272727;
  --gray: #828282;
  --white: #ffffff;
  --body-bg: #fff;
  --border-color: rgba(25, 25, 25, 0.1);
}

[data-theme=dark] {
  --primary-color: #ffae88;
  --heading-color: #fff;
  --neutral: #272727;
  --gray: #b9b9b9;
  --white: #ffffff;
  --body-bg: #191919;
}

/*=========================
    Helper 
==========================*/
/* Margin */
.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .mb-70 {
    margin-bottom: 40px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1199px) {
  .mb-80 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .mb-80 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .mb-80 {
    margin-bottom: 20px;
  }
}

/* Padding */
.py-150 {
  padding: 150px 0;
}
@media only screen and (max-width: 575px) {
  .py-150 {
    padding: 75px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .py-150 {
    padding: 75px 0;
  }
}

.pt-140 {
  padding-top: 150px;
}
@media only screen and (max-width: 1199px) {
  .pt-140 {
    padding-top: 75px;
  }
}
@media only screen and (max-width: 991px) {
  .pt-140 {
    padding-top: 75px;
  }
}
@media only screen and (max-width: 575px) {
  .pt-140 {
    padding-top: 75px;
  }
}

.pt-150 {
  padding-top: 150px;
}
@media only screen and (max-width: 1199px) {
  .pt-150 {
    padding-top: 75px;
  }
}
@media only screen and (max-width: 991px) {
  .pt-150 {
    padding-top: 75px;
  }
}
@media only screen and (max-width: 575px) {
  .pt-150 {
    padding-top: 75px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 1199px) {
  .pb-150 {
    padding-bottom: 75px;
  }
}
@media only screen and (max-width: 991px) {
  .pb-150 {
    padding-bottom: 75px;
  }
}
@media only screen and (max-width: 575px) {
  .pb-150 {
    padding-bottom: 50px;
  }
}

.pb-130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 1199px) {
  .pb-130 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .pb-130 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .pb-130 {
    padding-top: 60px;
  }
}

.pt-250 {
  padding-top: 250px;
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 1199px) {
  .pt-100 {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .pt-100 {
    padding-top: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}
@media only screen and (max-width: 1199px) {
  .pb-110 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .pb-110 {
    padding-bottom: 60px;
  }
}

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

.py-120 {
  padding: 120px 0;
}
@media only screen and (max-width: 1199px) {
  .py-120 {
    padding: 60px 0;
  }
}

/* Background */
.bg-theme-primary {
  background-color: var(--heading-color);
  color: var(--white);
}

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

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

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

.bg-sky {
  background-color: #F8F8F8;
}

.paragraph-color {
  color: var(--gray);
}

.w-200 {
  width: 200px;
}

.w-150 {
  width: 150px;
}

body {
  background-color: var(--body-bg);
}

.z-index-2 {
  position: relative;
  z-index: 2;
}

/* Base */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

audio,
canvas,
video {
  display: inline-block;
}

[hidden] {
  display: none;
}

ol, li {
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
}

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

a:focus {
  outline: none;
}

b,
strong {
  font-weight: bold;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

li > ul,
li > ol {
  margin: 0;
}

ol ul {
  margin-bottom: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
  border: none;
  background: none;
}

button,
input {
  line-height: normal;
}

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

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

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  appearance: textfield;
  padding-right: 2px;
  width: 270px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

caption,
th,
td {
  font-weight: normal;
}

th {
  font-weight: 500;
  text-transform: uppercase;
}

td,
.wp-block-calendar tfoot td {
  border: 1px solid var(--color-border);
  padding: 7px 10px;
}

del {
  color: #333;
}

table a,
table a:link,
table a:visited {
  text-decoration: underline;
}

/* BlockQuote  */
blockquote,
q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

blockquote {
  font-size: var(--font-size-b1);
  font-style: italic;
  font-weight: var(--p-light);
  margin: 24px 40px;
}

blockquote blockquote {
  margin-right: 0;
}

blockquote cite,
blockquote small {
  font-size: var(--font-size-b3);
  font-weight: normal;
}

blockquote strong,
blockquote b {
  font-weight: 700;
}

/* Google Fonts */
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}
@media only screen and (max-width: 1199px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (max-width: 991px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: "Hanken Grotesk", sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
}

li,
a {
  color: inherit;
}

/* Typography */
.text-display-1 {
  font-size: 128px;
  line-height: 138px;
  font-weight: 700;
}
@media only screen and (max-width: 1400px) {
  .text-display-1 {
    font-size: 95px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 1199px) {
  .text-display-1 {
    font-size: 70px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 1199px) {
  .text-display-1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .text-display-1 {
    font-size: 44px;
    line-height: 1.2;
  }
}

.section-subtitle {
  color: var(--heading-color);
  font-size: 24px;
  line-height: 26px;
  font-family: "Inter", sans-serif;
}
@media only screen and (max-width: 1199px) {
  .section-subtitle {
    margin-bottom: 8px;
  }
}

.section-title {
  color: var(--heading-color);
  font-size: 96px;
  line-height: 106px;
  font-weight: 700;
}
@media only screen and (max-width: 1400px) {
  .section-title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-title {
    font-size: 60px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 575px) {
  .section-title {
    font-size: 44px;
    line-height: 1.2;
  }
}

.section-title-lite {
  color: var(--heading-color);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: 138px;
}
@media only screen and (max-width: 1400px) {
  .section-title-lite {
    font-size: 110px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 1199px) {
  .section-title-lite {
    font-size: 64px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 991px) {
  .section-title-lite {
    font-size: 44px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 575px) {
  .section-title-lite {
    font-size: 40px;
    line-height: 1.1;
  }
}

.title-secondary {
  font-size: 52px;
  line-height: 62px;
  color: var(--heading-color);
}
@media only screen and (max-width: 575px) {
  .title-secondary {
    font-size: 36px;
    line-height: 1.2;
  }
}

.text-base {
  font-size: 16px;
  line-height: 26px;
}

.rory-text-primary {
  color: var(--heading-color);
}

.rory-text-gray {
  color: var(--gray);
}

.rory-text-muted {
  color: #5b5b5b;
}

.rory-text-accent {
  color: var(--primary-color);
}

/************ animate style ************/
.top-image-bounce {
  animation: top-image-bounce 3s infinite ease-in-out;
}

.top-image-bounce-2 {
  animation: top-image-bounce-2 6s infinite ease-in-out;
}

.left-image-bounce {
  animation: left-image-bounce 3s infinite ease-in-out;
}

.right-image-bounce {
  animation: right-image-bounce 3s infinite ease-in-out;
}

.spin-image {
  animation: spin 8s infinite linear;
}

.spin-image-2 {
  animation: spin-2 8s infinite linear;
}

@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}
@keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(54x);
    transform: translateY(-4px);
  }
}
@-webkit-keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes spin-2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}
@keyframes ripple-white3 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
  }
}
.left-to-right-move {
  position: absolute;
  right: -300px;
  opacity: 0.8;
  animation: cloud-move-right 28s linear 0s infinite reverse;
  z-index: 99;
}

@keyframes cloud-move-right {
  from {
    right: -300px;
  }
  to {
    right: 102%;
  }
}
.right-to-left-move {
  position: absolute;
  left: -300px;
  opacity: 0.8;
  animation: cloud-move-left 28s linear 0s infinite reverse;
  z-index: 99;
}

@keyframes cloud-move-left {
  from {
    left: -300px;
  }
  to {
    left: 102%;
  }
}
.bottom-to-top-move {
  position: absolute;
  top: -200px;
  opacity: 0.8;
  animation: cloud-move-top 28s linear 0s infinite reverse;
  z-index: 99;
}

@keyframes cloud-move-top {
  from {
    top: -200px;
  }
  to {
    top: 102%;
  }
}
.shake-animation {
  animation: shake-animation 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake-animation {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.palse-anim-wrap .palse-anim {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse-animation 1.7s infinite;
  z-index: 0;
  opacity: 0.5;
}

.palse-anim-wrap .palse-anim + .palse-anim {
  animation-delay: 0.7s;
}

.palse-anim-wrap .palse-anim + .palse-anim + .palse-anim {
  animation-delay: 0.3s;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 var(--primary-color);
  }
  100% {
    box-shadow: 0 0 0 100px rgba(254, 206, 104, 0);
  }
}
.palse-anim-wrap-white .palse-anim {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse-animation-white 1.7s infinite;
  z-index: 0;
  opacity: 0.5;
}

.palse-anim-wrap-white .palse-anim + .palse-anim {
  animation-delay: 0.7s;
}

.palse-anim-wrap-white .palse-anim + .palse-anim + .palse-anim {
  animation-delay: 0.3s;
}

@keyframes pulse-animation-white {
  0% {
    box-shadow: 0 0 0 0 var(--white);
  }
  100% {
    box-shadow: 0 0 0 100px rgba(254, 206, 104, 0);
  }
}
/* Layout  */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.header.bg-white {
  background-color: #fff;
}
.header.header-light {
  background-color: transparent;
}
.header.header-light.sticky {
  background-color: white;
  position: fixed;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  width: 100%;
  z-index: 1000;
  transition: 0.3s ease-in;
  animation: upsdown 1000ms;
}
.header.header-white {
  background-color: var(--white);
  position: relative;
}
.header.header-white.sticky {
  background-color: white;
  position: fixed;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  width: 100%;
  z-index: 1000;
  transition: 0.3s ease-in;
  animation: upsdown 1000ms;
}
.header.header-dark {
  background-color: #111;
  position: relative;
}
.header.header-dark.sticky {
  background-color: #111;
  position: fixed;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  width: 100%;
  z-index: 1000;
  transition: 0.3s ease-in;
  animation: upsdown 1000ms;
}
.header.header-dark .menu-list .menu-list-item .menu-link {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  font-family: "Hanken Grotesk", sans-serif;
  display: block;
  padding: 20px 20px;
  transition: all 0.3s ease-in-out;
}
.header.header-dark .menu-list .menu-list-item .menu-link:hover {
  color: var(--primary-color);
}
.header.header-dark .header-social-links {
  gap: 16px;
}
.header.header-dark .header-social-links .social-link {
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.header.header-dark .header-social-links .social-link img {
  filter: brightness(100);
}
.header.header-dark .header-social-links .social-link:hover {
  color: var(--primary-color);
}
.header.header-dark .header-menu-toggle {
  color: var(--white);
}
.header .header-container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 20px;
}
.header .menu-list .menu-list-item .menu-link {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  font-family: "Hanken Grotesk", sans-serif;
  display: block;
  padding: 20px 20px;
  transition: all 0.3s ease-in-out;
}
.header .menu-list .menu-list-item .menu-link:hover {
  color: var(--primary-color);
}
.header .header-social-links {
  gap: 16px;
  padding-left: 280px;
}
@media only screen and (max-width: 1199px) {
  .header .header-social-links {
    padding-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .header .header-social-links {
    display: none !important;
  }
}
.header .header-social-links .social-link {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.header .header-social-links .social-link:hover {
  color: var(--primary-color);
}
@media only screen and (max-width: 575px) {
  .header .header-right .header-social-links {
    margin-right: 16px;
  }
}

.menu-list {
  padding-left: 40px;
}

.social-icon:hover {
  filter: invert(69%) sepia(79%) saturate(355%) hue-rotate(320deg) brightness(101%) contrast(101%);
}

.header .menu-item-has-children {
  position: relative;
}
.header .menu-item-has-children .sub-menu {
  position: absolute;
  left: 0px;
  top: 100%;
  padding: 0 0 0 20px;
  width: 230px;
  height: auto;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  border-radius: 0 0 12px 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: 0.4s;
  transform: scaleY(0);
  transform-origin: top center;
}
.header .menu-item-has-children .sub-menu .menu-item {
  border-top: 1px solid #F3F3F3;
}
.header .menu-item-has-children .sub-menu .menu-item:first-child {
  border-top: 0;
}
.header .menu-item-has-children .sub-menu .menu-item a {
  padding: 11px 17px 12px 0;
  display: block;
  transition: 0.4s;
  font-weight: 500;
}
.header .menu-item-has-children .sub-menu .menu-item a:hover {
  color: #FFAE88 !important;
}
.header .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  top: 100%;
  transform: scaleY(1);
  visibility: visible;
}
.header .menu-list-item:hover > a {
  color: #FFAE88 !important;
}

.header-right__button {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.header-right__button.dark-version {
  display: none;
}

.header-right__button:hover::before {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.header-right__button::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: hsl(var(--gray-five));
  z-index: -1;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s linear;
}

.logo-area .logo-dark {
  display: none;
}

.header.header-dark .header-right__button.light-version img {
  filter: invert(1);
}

.mobile_menu_nav ul.menu_list {
  padding: 0;
}
.mobile_menu_nav ul.menu_list li {
  list-style: none;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .mobile_menu_nav ul.menu_list li {
    margin-bottom: 8px;
  }
}
.mobile_menu_nav ul.menu_list li a {
  font-size: 26px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  margin: 0;
  display: block;
  transition: 0.4s;
  z-index: 2;
  font-style: italic;
}
@media only screen and (max-width: 1199px) {
  .mobile_menu_nav ul.menu_list li a {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .mobile_menu_nav ul.menu_list li a {
    font-size: 18px;
  }
}
.mobile_menu_nav ul.menu_list li a span {
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: 5px;
  left: -32px;
}
@media only screen and (max-width: 767px) {
  .mobile_menu_nav ul.menu_list li a span {
    top: 3px;
  }
}
.mobile_menu_nav ul.menu_list li:last-child {
  margin-bottom: 0;
}
.mobile_menu_nav ul.menu_list li.show > a {
  color: var(--heading-color);
}
.mobile_menu_nav .menu-item-has-children {
  position: relative;
}
.mobile_menu_nav .menu-item-has-children:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 9px;
  font-weight: 700;
  font-size: 20px;
  height: 25px;
  width: 25px;
  background-image: url("../../assets/images/menu-icon/dropdown-right.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.4s;
}
@media only screen and (max-width: 767px) {
  .mobile_menu_nav .menu-item-has-children:after {
    top: 5px;
    font-size: 20px;
    height: 20px;
    width: 20px;
  }
}
.mobile_menu_nav .menu-item-has-children .sub-menu {
  text-align: left;
  display: none;
  padding-left: 15px;
}
.mobile_menu_nav .menu-item-has-children .sub-menu li {
  border-bottom: 0;
  margin-bottom: 0;
  margin-top: 8px;
}
.mobile_menu_nav .menu-item-has-children .sub-menu li a {
  display: block;
  color: #575757;
  font-size: 17px;
  position: relative;
  transition: 0.4s;
  padding-left: 0;
  padding-right: 18px;
}
@media only screen and (max-width: 767px) {
  .mobile_menu_nav .menu-item-has-children .sub-menu li a {
    font-size: 16px;
  }
}

/*----------------------------------------*/
/* OFFCANVAS CSS START
/*----------------------------------------*/
@media only screen and (max-width: 991px) {
  .offcanvas-inner {
    height: 100vh;
    overflow-y: scroll;
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas {
    max-width: 310px;
  }
}

.offcanvas-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  border: 1px solid var(--gray);
  color: #fff;
  border-radius: 5px;
  position: absolute;
  right: 20px;
}

@media only screen and (max-width: 991px) {
  .offcanvas-icon-2 {
    border: 1px solid #fff;
    color: #fff;
  }
}

.offcanvas-menu-item {
  padding-bottom: 7px;
}
.offcanvas-menu-item a {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
}
.offcanvas-menu-item a:hover {
  color: var(--heading-color);
  padding-left: 4px;
}

.offcanvas-body {
  padding: 50px 40px 35px 60px;
  flex-grow: inherit;
}

.offcanvas .offcanvas-icon {
  position: absolute;
  left: -40px;
  color: #fff;
  border: 0;
  font-size: 24px;
  display: none;
  top: 5px;
}
.offcanvas .offcanvas-icon svg {
  width: 30px;
}
.offcanvas.show .offcanvas-icon {
  display: block;
}

.offcanvas-about {
  border-top: 1px solid #d1d1d1;
  margin-left: 60px;
  margin-bottom: 40px;
}
.offcanvas-about .offcanvas-about-inner {
  padding: 35px 60px 0 0;
}
.offcanvas-about .offcanvas-about-inner h4 {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .offcanvas-about .offcanvas-about-inner h4 {
    font-size: 24px;
  }
}
.offcanvas-about .offcanvas-about-inner p {
  color: 828282;
  font-weight: 500;
}

.offcanvas-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 50px;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
}
.offcanvas-social a img {
  width: 17px;
  height: 17px;
}

.offcanvas-copyright {
  padding: 20px;
}

.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.15s;
  z-index: 999;
}

@media (max-width: 1200px) {
  .cursor {
    display: none;
  }
}
.cursor-small {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--heading-color);
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.2s;
  z-index: 999;
}

@media (max-width: 1200px) {
  .cursor-small {
    display: none;
  }
}
/* Cursor CSS */
.cursor-small {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  contain: layout style size;
  pointer-events: none;
  will-change: transform;
  color: var(--heading-color);
  transition: opacity 0.3s, color 0.4s;
}

.cursor-small:before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  display: block;
  width: 48px;
  height: 48px;
  transform: scale(0);
  background: currentColor;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out, opacity 0.1s;
}

.cursor-small-text {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0) rotate(10deg);
  opacity: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.01em;
  transition: opacity 0.4s, transform 0.3s;
}

.cursor-small.text .wc-cursor-text {
  opacity: 1;
  transform: scale(1);
}

@supports (mix-blend-mode: exclusion) {
  .cursor-small.-exclusion,
  .cursor-small.-opaque {
    mix-blend-mode: exclusion;
  }
}
@supports (mix-blend-mode: exclusion) {
  .cursor-small.exclusion:before,
  .cursor-small.opaque:before {
    background: var(--white);
  }
}
.cursor-small.normal,
.cursor-small.text {
  mix-blend-mode: normal;
}

.cursor-small.normal:before,
.cursor-small.text:before {
  background: currentColor;
}

.cursor-small.inverse {
  color: var(--white);
}

.cursor-small.visible:before {
  transform: scale(0.2);
}

.cursor-small.visible.active:before {
  transform: scale(0.23);
  transition-duration: 0.2s;
}

.cursor-small.pointer:before {
  transform: scale(0.15);
}

.cursor-small.text:before {
  opacity: 0.85;
  transform: scale(1.7);
}

.cursor-small.text.active:before {
  transform: scale(1.6);
  transition-duration: 0.2s;
}

.cursor-small.opaque:before {
  transform: scale(1.32);
}

.cursor-small.opaque.active:before {
  transform: scale(1.2);
}

.cursor-small.sm:before {
  transform: scale(1.25);
}

.cursor-small.md:before {
  transform: scale(1.5);
}

.cursor-small.lg:before {
  transform: scale(2);
}

.cursor-small.xl:before {
  transform: scale(2.5);
}

.cursor-small.xxl:before {
  transform: scale(3);
}

.cursor-small.xxxl:before {
  transform: scale(3.5);
}

.cursor-small.hidden:before {
  transform: scale(0);
}

.breadcrumb-wrap {
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.breadcrumb-wrap:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(110, 110, 110, 0.75) -34.01%, rgba(137, 91, 70, 0.92) 7.85%, rgba(149, 93, 67, 0.73) 70.03%, rgba(153, 104, 82, 0.8) 115.31%);
  z-index: 2;
}
.breadcrumb-wrap .breadcrumb-content {
  padding: 245px 0 145px 0;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-wrap .breadcrumb-content {
    padding: 200px 0 110px 0;
  }
}
.breadcrumb-wrap .page-title {
  font-size: 90px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
@media only screen and (max-width: 1400px) {
  .breadcrumb-wrap .page-title {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-wrap .page-title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcrumb-wrap .page-title {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-wrap .page-title {
    font-size: 45px;
  }
}
.breadcrumb-wrap p {
  display: inline-block;
  padding: 5px 20px;
  background-color: var(--primary-color);
  font-size: 14px;
  line-height: 20px;
  max-width: 600px;
  color: #fff;
  margin-bottom: 20px;
}
.breadcrumb-wrap .page-list {
  margin: 0;
  padding-left: 0;
  border-radius: 300px;
  border: 1px solid #e1c1af;
  display: inline-block;
  padding: 14px 25px 15px;
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-wrap .page-list {
    padding: 9px 22px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-wrap .page-list {
    padding: 7px 22px 8px;
  }
}
.breadcrumb-wrap .page-list li {
  display: inline-block;
  position: relative;
  padding-left: 16px;
  padding-right: 7px;
  font-size: 16px;
  color: #fff;
}
.breadcrumb-wrap .page-list li a {
  color: #fff;
  transition: 0.4s;
}
.breadcrumb-wrap .page-list li a:hover {
  color: var(--heading-color);
}
.breadcrumb-wrap .page-list li:first-child {
  padding-left: 15px;
}
.breadcrumb-wrap .page-list li:first-child:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.breadcrumb-wrap .page-list li:first-child::after {
  display: none;
}
.breadcrumb-wrap .page-list li:after {
  position: absolute;
  left: 2px;
  top: 6px;
  content: "";
  height: 14px;
  width: 1px;
  background-color: #fff;
  font-weight: 600;
}

/**************************
        Footer Start
 **************************/
.footer-phone {
  font-size: 32px;
}
@media only screen and (max-width: 1199px) {
  .footer-phone {
    font-size: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-phone {
    font-size: 24px;
  }
}

.footer-contact-widget a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  background-color: var(--neutral);
  font-size: 24px;
  gap: 4px;
  color: var(--white);
}
@media only screen and (max-width: 575px) {
  .footer-contact-widget a {
    width: 150px;
    height: 150px;
    font-size: 18px;
  }
}

.footer-widget-title {
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: var(--gray);
  line-height: 36px;
  font-size: 16px;
  text-transform: capitalize;
  transition: 0.4s;
}

.footer-nav ul li a:hover {
  color: var(--primary-color);
}

.footer-address {
  color: var(--gray);
  font-size: 16px;
  text-transform: capitalize;
}

.footer-bottom {
  padding: 35px 0;
}

.footer-copyright-text {
  color: var(--gray);
  font-size: 16px;
}

.copyright-nav-item {
  font-size: 20px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  display: block;
}
@media only screen and (max-width: 575px) {
  .copyright-nav-item {
    font-size: 16px;
  }
}

.copyright-nav-item:hover {
  color: var(--primary-color);
}

.footer-subscribe-form {
  position: relative;
}
.footer-subscribe-form .form-control {
  border-radius: 50px;
  background: none;
  height: 52px;
  padding: 14px 20px;
  line-height: 1;
  font-size: 16px;
  border: 1px solid #505050;
  width: 100%;
  color: var(--white);
}
.footer-subscribe-form .form-control::placeholder {
  font-size: 16px;
  line-height: 1;
  color: var(--gray);
}
.footer-subscribe-form .form-control:focus {
  border: 1px solid var(--primary-color);
}
.footer-subscribe-form .footer-subscribe-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/**************************
        Footer End
 **************************/
/* Components  */
.rory-btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 100px;
  color: var(--heading-color);
  background-color: transparent;
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(25, 25, 25, 0.1);
  font-family: var(--heading-color);
  font-weight: 500;
}
.rory-btn-primary:hover {
  background-color: var(--heading-color);
  color: var(--white);
}

.scrollBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 50;
}

.scrollBtn:hover {
  background-color: #555;
}

.scrolling-circle-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 24px;
  border: 1px solid var(--heading-color);
  gap: 4px;
  color: var(--heading-color);
  padding: 24px;
  position: relative;
  line-height: 1.2;
  font-family: "Hanken Grotesk", sans-serif;
}
.scrolling-circle-btn svg {
  margin-right: 12px;
}
.scrolling-circle-btn .circle-btn-text {
  z-index: 2;
  position: relative;
}
.scrolling-circle-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--heading-color);
  color: var(--white);
  border-radius: 50%;
  height: 10px;
  width: 10px;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
.scrolling-circle-btn:hover:after {
  height: 100%;
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.scrolling-circle-btn:hover .circle-btn-text {
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .scrolling-circle-btn {
    width: 140px;
    height: 140px;
    font-size: 18px;
  }
}
.scrolling-circle-btn.style-black {
  background-color: #272727;
}
.scrolling-circle-btn.style-black:after {
  background-color: var(--primary-color);
}
.scrolling-circle-btn.style-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.scrolling-circle-btn.style-primary:after {
  background-color: var(--heading-color);
}

.btn-base {
  border-radius: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #ffae88;
}
.btn-base:after, .btn-base:before {
  width: 0%;
  height: 0%;
  content: "";
  position: absolute;
  border-radius: 100%;
}
.btn-base:after {
  transition: all 0.5s ease;
  background-color: #fff;
}
.btn-base:before {
  transition: all 0.5s ease-out;
  background: #FFE9D2;
}
.btn-base span {
  z-index: 1;
  transition: all 0.3s ease-out;
}
.btn-base.cta-01 {
  background: linear-gradient(90deg, #fedab4 0%, #ffae88 100%);
  color: #111;
}
.btn-base.cta-02 {
  background-color: transparent;
  color: #fedab4;
}
.btn-base.cta-02:after {
  background: linear-gradient(90deg, #fedab4 0%, #ffae88 100%);
}
.btn-base:hover.cta-01 {
  color: #fedab4;
}
.btn-base:hover.cta-02 {
  color: #111;
}
.btn-base:hover:after, .btn-base:hover:before {
  width: 300px;
  height: 300px;
  border-radius: 4px;
}
.btn-base:hover:after {
  transition: all 0.7s ease-in;
}
.btn-base:hover:before {
  transition: all 0.5s ease-in;
}

.rory-badge {
  transition: all 0.3s ease 0s;
  border-radius: 30px;
  border: 1px solid var(--heading-color);
  background: transparent;
  padding: 10px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--heading-color);
  font-size: 16px;
  line-height: 26px;
  height: 32px;
  cursor: pointer;
}
.rory-badge:hover {
  background-color: var(--heading-color);
  color: var(--white);
}

/************ single-inpur-field ************/
.single-input-inner {
  margin-bottom: 20px;
}
.single-input-inner input {
  width: 100%;
  height: 55px;
  border: 0 !important;
  border-radius: 4px;
  padding: 0 22px;
}
.single-input-inner input::placeholder {
  color: #adadad;
}
.single-input-inner input:focus {
  outline: 0;
}
.single-input-inner textarea {
  width: 100%;
  border: 0 !important;
  height: 170px;
  border-radius: 4px;
  padding: 14px 18px;
}
.single-input-inner textarea::placeholder {
  color: #adadad;
}
.single-input-inner textarea:focus {
  outline: 0;
}
.single-input-inner .label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}
.single-input-inner .single-select {
  width: 100%;
  height: 55px;
  line-height: 55px;
  border: 0 !important;
  border-radius: 4px;
  padding: 0 18px;
  margin-bottom: 20px;
}
.single-input-inner .single-select .list {
  width: 100%;
}
.single-input-inner.style-border input {
  border: 1px solid rgba(234, 225, 214, 0.7) !important;
}
.single-input-inner.style-border input::placeholder {
  color: #adadad;
}
.single-input-inner.style-border textarea {
  border: 1px solid rgba(234, 225, 214, 0.7) !important;
}
.single-input-inner.style-border textarea::placeholder {
  color: #adadad;
}
.single-input-inner.style-border .single-select {
  border: 1px solid rgba(234, 225, 214, 0.7) !important;
  color: #adadad;
}
.single-input-inner.style-bg input {
  background: #f1f1f1;
}
.single-input-inner.style-bg input::placeholder {
  color: #3F517E;
}
.single-input-inner.style-bg textarea {
  background: #f1f1f1;
}
.single-input-inner.style-bg textarea::placeholder {
  color: #3F517E;
}
.single-input-inner.style-bg .single-select {
  background: #f1f1f1;
  color: #3F517E;
}

.section-title-stroke {
  -webkit-text-stroke: 2px rgba(25, 25, 25, 0.4196078431);
  -webkit-text-fill-color: transparent;
  font-size: 320px;
  font-weight: 700;
  opacity: 0.2;
}
@media only screen and (max-width: 1400px) {
  .section-title-stroke {
    font-size: 180px;
  }
}
@media only screen and (max-width: 575px) {
  .section-title-stroke {
    font-size: 60px;
  }
}

.section-title-medium {
  font-size: 48px;
  color: var(--heading-color);
}
@media only screen and (max-width: 575px) {
  .section-title-medium {
    font-size: 35px;
    line-height: 1.2;
  }
}

.custom-navigation {
  position: absolute;
  z-index: 999;
  bottom: 0;
  min-width: 140px;
}
.custom-navigation .swiper-custom-prev,
.custom-navigation .swiper-custom-next {
  color: var(--primary-color);
}
.custom-navigation .swiper-custom-prev.swiper-button-disabled,
.custom-navigation .swiper-custom-next.swiper-button-disabled {
  color: var(--heading-color);
}

.swiper-custom-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  opacity: 1;
  background: var(--heading-color);
}
.swiper-custom-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Pages */
.partners-list {
  padding-top: 45px;
}
.partners-list .swiper-wrapper {
  transition-timing-function: linear;
}
.partners-list .partner-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-filters {
  background-color: var(--white);
  border-radius: 50px;
  padding: 24px 50px;
  gap: 16px;
  box-shadow: 0px 34px 94px 0px rgba(0, 0, 0, 0.05);
}
.portfolio-filters .filter-btn {
  color: var(--heading-color);
  background-color: transparent;
  border-radius: 30px;
  font-size: 16px;
  padding: 8px 16px;
  line-height: 1;
  font-family: "Hanken Grotesk", sans-serif;
  position: relative;
  border: 0;
}
.portfolio-filters .filter-btn::after {
  content: "/";
  position: absolute;
  right: -12px;
}
.portfolio-filters .filter-btn:last-of-type::after {
  display: none;
}
.portfolio-filters .filter-btn.active {
  background-color: #FFE9D2;
}
@media only screen and (max-width: 575px) {
  .portfolio-filters {
    padding: 20px;
    border-radius: 20px;
  }
}

.portfolio-one-shape {
  position: absolute;
  left: auto;
  right: 20px;
  bottom: 20px;
  background-size: 100% 100%;
  padding: 10px 20px;
  background-repeat: no-repeat;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  max-width: 730px;
}
.portfolio-one-shape .text-two {
  padding-left: 185px;
}
@media only screen and (max-width: 1400px) {
  .portfolio-one-shape .text-two {
    padding-left: 125px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-one-shape {
    width: 53%;
    padding: 20px;
    right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-one-shape {
    width: 50%;
    padding: 20px;
    right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .portfolio-one-shape {
    display: none;
  }
}
.portfolio-one-shape .portfolio-one-title {
  font-size: 128px;
  color: var(--heading-color);
  line-height: 1;
}
@media only screen and (max-width: 1400px) {
  .portfolio-one-shape .portfolio-one-title {
    font-size: 75px;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-one-shape .portfolio-one-title {
    font-size: 40px;
  }
}

.portfolio-three-title {
  font-size: 32px;
  line-height: 42px;
}

.portfolio-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--heading-color);
  transition: all 0.4s ease;
}
.portfolio-link:hover {
  background-color: var(--heading-color);
  color: var(--white);
}

.project-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.project-slider .portfolio-item:hover .portfolio-one-shape {
  visibility: visible;
  opacity: 1;
  right: 50px;
  bottom: 50px;
}

.project-swiper-scrollbar {
  height: 5px;
  background-color: rgba(25, 25, 25, 0.1882352941);
  border-radius: 20px;
  width: 60%;
  margin: 0 auto;
  margin-top: 50px;
}
.project-swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #191919;
  border-radius: 20px;
}

.project-area-two {
  max-width: 1920px;
  margin: 0 auto;
}

.project-thumb-grid {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  height: 100%;
}

.project-thumb-grid {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  height: 100%;
}

.project-thumb-0 {
  grid-row-start: 1;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-column-end: 2;
}

.project-thumb-1 {
  grid-row-start: 1;
  grid-column-start: 2;
  grid-row-end: 3;
  grid-column-end: 3;
}

.project-thumb-2 {
  grid-row-start: 1;
  grid-column-start: 1;
  grid-row-end: 4;
  grid-column-end: 2;
}

.project-thumb-3 {
  grid-row-start: 4;
  grid-column-start: 1;
  grid-row-end: 5;
  grid-column-end: 2;
}

.project-thumb-4 {
  grid-row-start: 3;
  grid-column-start: 2;
  grid-row-end: 4;
  grid-column-end: 3;
}

.project-thumb-5 {
  grid-row-start: 4;
  grid-column-start: 2;
  grid-row-end: 5;
  grid-column-end: 3;
}

.project-thumb {
  position: relative;
}
.project-thumb .details-arrow {
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  background-color: #FFAE88;
  padding: 34px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  z-index: 2;
}
.project-thumb .details-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: linear-gradient(to top left, var(--heading-color) 0%, var(--heading-color) 100%);
  z-index: -1;
  transition: 0.4s;
}
.project-thumb .details-arrow:hover {
  color: #fff;
}
.project-thumb .details-arrow:hover:before {
  width: 102%;
  height: 102%;
}
.project-thumb:hover .details-arrow {
  top: 50%;
  left: 50%;
  visibility: visible;
  opacity: 1;
}

.single-project-inner {
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .single-project-inner {
    margin-bottom: 40px;
  }
}
.single-project-inner .thumb {
  position: relative;
  overflow: hidden;
}
.single-project-inner .thumb:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 25, 0.4392156863);
}
.single-project-inner .thumb img {
  transition: all ease 2s;
}
.single-project-inner .thumb .details-arrow {
  position: absolute;
  top: 60%;
  left: 40%;
  transform: translate(-50%, -50%);
  background-color: #FFAE88;
  padding: 34px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  z-index: 2;
}
.single-project-inner .thumb .details-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: linear-gradient(to top left, var(--heading-color) 0%, var(--heading-color) 100%);
  z-index: -1;
  transition: 0.5s;
}
.single-project-inner .thumb .details-arrow:hover {
  color: #fff;
}
.single-project-inner .thumb .details-arrow:hover:before {
  width: 102%;
  height: 102%;
}
.single-project-inner .details {
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  .single-project-inner .details {
    margin-bottom: 15px;
  }
}
.single-project-inner .details .title {
  color: var(--heading-color);
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .single-project-inner .details .title {
    font-size: 35px;
  }
}
.single-project-inner .details .tags {
  color: var(--gray);
}
.single-project-inner:hover .details-arrow {
  top: 50%;
  left: 50%;
  visibility: visible;
  opacity: 1;
}
.single-project-inner:hover .thumb img {
  transform: scale(1.2);
}

.contact-form-wrap {
  padding: 50px;
  border-radius: 24px;
}
@media only screen and (max-width: 575px) {
  .contact-form-wrap {
    padding: 30px;
  }
}

.contact-info-wrap {
  padding: 50px 30px;
  border-radius: 24px;
}
@media only screen and (max-width: 575px) {
  .contact-info-wrap {
    padding: 30px;
  }
}

.contact-info-inner .icon {
  border-radius: 300px;
  border: 1px solid #F3F3F3;
  background: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}
.contact-info-inner .icon img {
  width: 26px;
}
.contact-info-inner .title {
  color: var(--gray);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
}
.contact-info-inner .info {
  font-size: 24px;
  margin-bottom: 0;
  color: var(--heading-color);
}

.contact-info-inner ~ .contact-info-inner {
  border-top: 1px solid #EEE;
  margin-top: 20px;
  padding-top: 20px;
}

.contact-g-map iframe {
  width: 100%;
  height: 550px;
  padding: 0;
  border: 0;
  margin-bottom: -10px;
}
@media only screen and (min-width: 2000px) {
  .contact-g-map iframe {
    height: 650px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-g-map iframe {
    height: 350px;
  }
}

.error-area .error-img {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .error-area .error-img {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .error-area .error-img {
    margin-bottom: 30px;
  }
}
.error-area .error-title {
  font-size: 80px;
  font-weight: 700;
  color: var(--heading-color);
}
@media only screen and (max-width: 575px) {
  .error-area .error-title {
    font-size: 50px;
  }
}
.error-area .error-text {
  color: var(--gray);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
  .error-area .error-text {
    font-weight: 400;
  }
}

.portfolio-contents .portfolio-header {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(var(--heading-color), 0.1);
}
.portfolio-contents .portfolio-header .portfolio-desc {
  color: var(--gray);
  font-size: 16px;
}

.related-portfolio-title {
  transition: all 0.4s ease 0s;
  font-size: 24px;
  line-height: 34px;
}
.related-portfolio-title:hover {
  color: var(--primary-color);
}

.service-details-area p {
  color: var(--gray);
}
.service-details-area .title {
  color: var(--heading-color);
  font-size: 52px;
  font-weight: 700;
  text-transform: capitalize;
}
@media only screen and (max-width: 991px) {
  .service-details-area .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .service-details-area .title {
    font-size: 35px;
  }
}
.service-details-area .thumbnail-area {
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .service-details-area .thumbnail-area {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.service-details-area .main-thumb {
  position: relative;
  margin-top: -30px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .service-details-area .main-thumb {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.service-details-area .main-thumb img {
  width: 100%;
}
.service-details-area .main-thumb:after {
  background-color: #fff;
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  width: 290px;
  height: 75px;
}
@media only screen and (max-width: 1199px) {
  .service-details-area .main-thumb:after {
    width: 230px;
  }
}
@media only screen and (max-width: 575px) {
  .service-details-area .main-thumb:after {
    display: none;
  }
}
.service-details-area .check-list li {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
}
.service-details-area .check-list li svg {
  margin-right: 12px;
}
.service-details-area .check-list li + li {
  border-top: 1px solid #E8E8E8;
  padding-top: 12px;
  margin-top: 12px;
}
.service-details-area .list-info-item {
  margin-bottom: 40px;
  padding-right: 80px;
}
@media only screen and (max-width: 1199px) {
  .service-details-area .list-info-item {
    padding-right: 0;
  }
}
.service-details-area .list-info-item .title {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}
.service-details-area .small-title {
  color: var(--heading-color);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  max-width: 900px;
  margin-top: 70px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .service-details-area .small-title {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .service-details-area .small-title {
    font-size: 24px;
  }
}

.blog-sidebar-widget {
  border: 1px solid rgba(25, 25, 25, 0.1);
  padding: 24px 30px;
}
.blog-sidebar-widget .sidebar-widget-title {
  font-size: 20px;
}

.search-form-container .form-control {
  padding: 12px 20px;
  border: 1px solid rgba(var(--heading-color), 0.1);
  border-radius: 30px;
  height: 50px;
  color: var(--heading-color);
  font-size: 16px;
}
.search-form-container .form-control::placeholder {
  color: var(--gray);
  font-size: 16px;
}
.search-form-container .sidebar-search-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.sidebar-categories .sidebar-categories-item {
  padding: 14px 28px;
  border-radius: 30px;
  background-color: transparent;
  transition: all 0.4s ease;
  color: var(--heading-color);
}
.sidebar-categories .sidebar-categories-item:hover {
  background-color: var(--border-color);
}
.sidebar-categories .sidebar-categories-item.active {
  background-color: var(--border-color);
}

.social-links {
  gap: 15px;
}
.social-links .social-link-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ededed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.social-links .social-link-item a svg {
  width: 16px;
  height: 16px;
}
.social-links .social-link-item a:hover {
  background-color: var(--heading-color);
  color: var(--white);
}

.single-recent-blog .recent-blog-author {
  font-size: 16px;
}
.single-recent-blog .recent-blog-thumb {
  width: 110px;
  height: 110px;
  overflow: hidden;
}
.single-recent-blog .recent-blog-thumb img {
  transition: transform 0.5s ease-in-out;
}
.single-recent-blog .recent-blog-title {
  line-height: 26px;
  font-size: 16px;
}
.single-recent-blog:hover .recent-blog-thumb img {
  transform: scale(1.1);
}

.blog-details-content .content-title-xl {
  font-size: 52px;
  line-height: 62px;
}
@media only screen and (max-width: 575px) {
  .blog-details-content .content-title-xl {
    font-size: 30px;
    line-height: 1.2;
  }
}
.blog-details-content .content-title-lg {
  font-size: 32px;
}
@media only screen and (max-width: 575px) {
  .blog-details-content .content-title-lg {
    font-size: 24px;
  }
}

.details-author-card {
  padding: 30px;
  border: 1px solid rgba(var(--heading-color), 0.1);
}
.details-author-card .details-author-title {
  font-size: 24px;
}

.comment-list-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.comment-list {
  margin: 0;
  padding: 0;
}
.comment-list li .media {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.comment-list li .media .media-left img {
  border-radius: 50%;
}
.comment-list li .media .media-body {
  position: relative;
}
.comment-list li .media .media-body h4 {
  font-size: 20px;
  color: var(--heading-color);
}
.comment-list li .media .media-body .reply {
  display: inline-block;
  background: rgba(17, 17, 17, 0.05);
  padding: 2px 16px 4px;
  border-radius: 30px;
  position: absolute;
  right: 0;
  top: -3px;
  transition: 0.4s;
  color: var(--heading-color);
}
.comment-list li .media .media-body .reply:hover {
  background: var(--heading-color);
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .comment-list li .media .media-body .reply {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 16px;
  }
}
.comment-list li ul li .media:last-child {
  border-bottom: unset;
}

.comment-form-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.comment-form .comment-form-text {
  color: var(--gray);
}
.comment-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 22px;
  color: var(--heading-color);
}
.comment-form label input,
.comment-form label textarea {
  width: 100%;
  color: var(--gray);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding: 5px 0 10px 0;
  outline: 0 !important;
}
.comment-form label input::placeholder,
.comment-form label textarea::placeholder {
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.62;
}

.hero-one {
  padding: 240px 0 150px 0;
}
@media only screen and (max-width: 1400px) {
  .hero-one {
    overflow: hidden;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-one {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-one {
    padding: 168px 0 150px 0;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .hero-one {
    padding-bottom: 50px;
  }
}

.hero-one-content {
  z-index: 10;
}

.hero-subtitle {
  font-size: 32px;
  line-height: 32px;
  padding-bottom: 12px;
  color: var(--heading-color);
  font-family: "Hanken Grotesk", sans-serif;
}
@media only screen and (max-width: 991px) {
  .hero-subtitle {
    display: inline-block !important;
  }
}
@media only screen and (max-width: 575px) {
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-subtitle img {
    width: 60px;
  }
  .hero-subtitle svg {
    width: 25%;
  }
}
@media only screen and (max-width: 575px) {
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-subtitle img {
    width: 60px;
  }
  .hero-subtitle svg {
    width: 25%;
  }
}

.hero-title {
  font-size: 128px;
  font-weight: 700;
  line-height: 128px;
  color: var(--heading-color);
}
@media only screen and (max-width: 1400px) {
  .hero-title {
    font-size: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-title {
    font-size: 70px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-title {
    font-size: 70px;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 575px) {
  .hero-title {
    font-size: 55px;
    line-height: 1.2;
  }
}

.hero-title-secondary {
  font-size: 52px;
  line-height: 62px;
  color: var(--heading-color);
}
@media only screen and (max-width: 1400px) {
  .hero-title-secondary {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-title-secondary {
    font-size: 40px;
    line-height: 1;
  }
}
@media only screen and (max-width: 991px) {
  .hero-title-secondary {
    font-size: 34px;
    line-height: 1;
  }
}
@media only screen and (max-width: 575px) {
  .hero-title-secondary {
    font-size: 24px;
    line-height: 1.2;
  }
}

.hero-one-img {
  transform: translate(-72%, 33%);
  min-width: 550px;
  max-height: 557px;
  z-index: 10;
  position: absolute;
}
@media only screen and (max-width: 1199px) {
  .hero-one-img {
    position: relative;
    transform: translate(0);
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .hero-one-img {
    position: relative;
    transform: translate(0);
    min-width: 100%;
    min-height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .hero-one-img {
    position: relative;
    transform: translate(0);
  }
}

.hero-btn-one {
  border-radius: 100px;
  background: #ffe9d2;
  box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
  padding: 25px 50px;
  height: 85px;
  width: 525px;
  gap: 29px;
}
.hero-btn-one .hero-btn-icon span {
  width: 40px;
  height: 40px;
}
.hero-btn-one .hero-btn-text {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
.hero-btn-one .hero-btn-desc {
  color: var(--heading-color);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 360px) {
  .hero-btn-one .hero-btn-desc {
    font-size: 14px;
    text-align: left;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-btn-one {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  .hero-btn-one {
    display: inline-flex !important;
  }
}
@media only screen and (max-width: 575px) {
  .hero-btn-one {
    padding: 15px;
    height: 60px;
    width: 100%;
  }
}

.hero-one-counter {
  max-width: 570px;
}
@media only screen and (max-width: 991px) {
  .hero-one-counter {
    margin: 0 auto;
  }
}

.hero-btn-cv {
  color: var(--heading-color);
  font-size: 20px;
  line-height: 26px;
  gap: 8px;
  font-weight: 500;
}
.hero-btn-cv span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--heading-color);
  border-radius: 50%;
  color: var(--white);
}

.hero-percentage {
  font-size: 64px;
  color: var(--heading-color);
  line-height: 26px;
  display: block;
}
@media only screen and (max-width: 575px) {
  .hero-percentage {
    font-size: 40px;
  }
}

.hero-percentage-desc {
  color: var(--heading-color);
  font-size: 20px;
  line-height: 26px;
  margin-top: 20px;
}

.cross-one-wrapper {
  position: absolute;
  top: 160px;
  right: -65px;
}
@media only screen and (max-width: 1599px) {
  .cross-one-wrapper {
    display: none;
  }
}

.hero-cross {
  padding: 13px 22px 15px 27px;
  position: absolute;
  border-radius: 50px;
  font-size: 24px;
  width: 468px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 9px;
}
.hero-cross img {
  transform: rotate(45deg);
}
.hero-cross.style-one {
  transform: rotate(-37deg);
}
.hero-cross.style-one.bg-theme-primary {
  transform: rotate(46deg);
}
.hero-cross.style-two.bg-theme-accent {
  transform: rotate(30deg);
}
.hero-cross.style-two.bg-theme-primary {
  transform: rotate(46deg);
}

.seo-wrap {
  position: absolute;
  right: -187px;
  bottom: -30px;
}
@media only screen and (max-width: 1599px) {
  .seo-wrap {
    right: -35px;
    bottom: -214px;
  }
}
@media only screen and (max-width: 1400px) {
  .seo-wrap {
    right: -88px;
  }
}

.hero-two-circle-shape {
  top: -40px;
  left: 70%;
}
@media only screen and (max-width: 1199px) {
  .hero-two-circle-shape {
    width: 60px;
    left: 80%;
  }
}

.hero-shape-1 {
  position: absolute;
  top: 230px;
  left: 80px;
}
@media only screen and (max-width: 1599px) {
  .hero-shape-1 {
    top: 140px;
    left: 42px;
    width: 65px;
  }
}
@media only screen and (max-width: 1400px) {
  .hero-shape-1 {
    top: 145px;
    left: 20px;
    width: 24px;
  }
}
.hero-shape-1.spin-image-2 {
  max-width: 60px;
  top: 190px;
  left: 70px;
}

.hero-shape-2 {
  position: absolute;
  top: 230px;
  right: 119px;
}
@media only screen and (max-width: 1599px) {
  .hero-shape-2 {
    top: 176px;
    right: 54px;
    width: 65px;
  }
}
@media only screen and (max-width: 1400px) {
  .hero-shape-2 {
    right: 20px;
    width: 24px;
  }
}
.hero-shape-2.spin-image-2 {
  max-width: 60px;
  top: 230px;
  right: 75px;
}

.seo-text {
  font-size: 52px;
  font-weight: 400;
  opacity: 0.2;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--gray);
}
@media only screen and (max-width: 1400px) {
  .seo-text {
    font-size: 30px;
  }
}

.hero-two {
  padding-top: 230px;
}
@media only screen and (max-width: 1199px) {
  .hero-two {
    padding-top: 170px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-two .hero-one-content {
    text-align: center;
  }
}

.hero-two-btn {
  background-color: var(--primary-color);
  padding: 20px 46px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

@media only screen and (min-width: 2000px) {
  .hero-two-main-img {
    width: 76%;
  }
}
@media only screen and (max-width: 1599px) {
  .hero-two-main-img {
    width: 70.5%;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-two-main-img {
    width: 100%;
  }
}

.hero-three {
  padding: 150px 0 150px;
  min-height: 850px;
}
@media only screen and (max-width: 1400px) {
  .hero-three {
    min-height: 850px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-three {
    height: 580px;
    padding-top: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-three {
    padding-bottom: 0px;
    height: 1000px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-three {
    padding-bottom: 60px;
  }
}
.hero-three .hero-three-img {
  position: absolute;
  top: 65px;
  z-index: 20;
  right: 80px;
}
@media only screen and (max-width: 575px) {
  .hero-three .hero-three-img {
    position: relative;
    left: 0;
  }
}
@media only screen and (max-width: 1400px) {
  .hero-three .hero-three-img {
    right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-three .hero-three-img {
    position: relative;
    top: 60px;
    right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hero-three .hero-three-img {
    position: relative;
    right: 0;
    top: unset;
  }
}
.hero-three .hat-shape {
  position: absolute;
  top: -130px;
  left: -15%;
  z-index: 20;
}
@media only screen and (max-width: 1400px) {
  .hero-three .hat-shape {
    left: -50%;
  }
}
@media only screen and (max-width: 575px) {
  .hero-three .hat-shape {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-three .hat-shape {
    left: 0;
    top: 50px;
  }
}
.hero-three .hero-three-circle {
  position: absolute;
  top: 30px;
  z-index: 5;
  right: 160px;
}
@media only screen and (max-width: 1400px) {
  .hero-three .hero-three-circle {
    right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .hero-three .hero-three-circle {
    top: unset;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hero-three .hero-three-circle {
    top: unset;
    left: 50%;
    bottom: 150px;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 1199px) {
  .hero-three .hero-three-circle {
    position: relative;
    top: -70px;
    transform: translateY(-100%);
    right: 0;
  }
}
.hero-three .hero-services {
  margin-top: 60px;
}
.hero-three .hero-services .hero-service-name {
  font-size: 24px;
  color: var(--heading-color);
  line-height: 26px;
}

.hero-three-shape li {
  position: absolute;
  width: 592px;
  height: 592px;
  opacity: 0.2;
  background-color: #ffe9d2;
  border-radius: 50%;
}
.hero-three-shape li:nth-child(1) {
  left: -464px;
  top: 60px;
}
.hero-three-shape li:nth-child(2) {
  left: -84px;
  bottom: -50%;
}
.hero-three-shape li:nth-child(3) {
  top: -250px;
  right: -450px;
}

.hero-three-vector li {
  position: absolute;
}
.hero-three-vector li:nth-child(1) {
  top: 0;
}
.hero-three-vector li:nth-child(2) {
  top: 60px;
}
.hero-three-vector li:nth-child(3) {
  top: 0;
  left: 160px;
}
.hero-three-vector li:nth-child(4) {
  left: 45%;
  bottom: -80px;
}

.social-proof {
  box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
}

.social-proof-title {
  position: relative;
  padding: 0 25px;
  color: #666;
  font-size: 16px;
}
.social-proof-title::after {
  content: "";
  height: 1px;
  color: rgb(25, 25, 25);
  opacity: 0.1;
  background-color: rgb(25, 25, 25);
  width: 220px;
  position: absolute;
  left: -61%;
  top: 53%;
  transform: translateY(-50%);
}
.social-proof-title::before {
  content: "";
  height: 1px;
  color: rgb(25, 25, 25);
  opacity: 0.1;
  background-color: rgb(25, 25, 25);
  width: 220px;
  position: absolute;
  right: -61%;
  top: 50%;
  transform: translateY(-51%);
}

.about-desc {
  font-size: 32px;
  line-height: 42px;
  color: var(--gray);
  font-family: "Hanken Grotesk", sans-serif;
}
.about-desc.style-dark {
  color: var(--heading-color);
}
@media only screen and (max-width: 1199px) {
  .about-desc {
    font-size: 24px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 991px) {
  .about-desc {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .about-desc {
    font-size: 20px;
    line-height: 1.5;
  }
}

.about-text-line {
  padding-left: 220px;
  font-size: 24px;
  color: var(--gray);
}
@media only screen and (max-width: 575px) {
  .about-text-line {
    padding-left: 0;
  }
  .about-text-line::after {
    display: none;
  }
}
.about-text-line::after {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 200px;
  height: 1px;
  background-color: var(--heading-color);
}

.about-two-images {
  gap: 24px;
}
.about-two-images li:nth-child(3) {
  position: absolute;
  top: 0;
  right: 0;
}

.about-line {
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 25, 25, 0) 0%, #191919 100%);
}

.about-circle-shape {
  right: 0;
  bottom: 10%;
}

.about-feature-title {
  font-size: 24px;
}
@media only screen and (max-width: 575px) {
  .about-feature-title {
    font-size: 20px;
  }
}

.about-three-btn {
  background-color: var(--heading-color);
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 46px;
  border: 1px solid var(--heading-color);
  transition: all 0.4s ease;
}
.about-three-btn:hover {
  background-color: transparent;
  color: var(--heading-color);
}

.tab-pane {
  transition: 0.3s;
}

.service-tab {
  transition: 0.3s;
}

.ab-header {
  background-color: #fff;
}

.ab-hero {
  background-color: #F5F5F5;
  padding: 190px 0px 0px;
}
@media only screen and (max-width: 991px) {
  .ab-hero {
    padding: 190px 0px 60px;
  }
}
.ab-hero .wrap {
  display: grid;
  grid-template-columns: 580px auto;
  gap: 110px;
  padding: 0px 130px 0px 170px;
}
@media only screen and (max-width: 1199px) {
  .ab-hero .wrap {
    padding: 0px 20px 0px 20px;
    gap: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .ab-hero .wrap {
    grid-template-columns: 1fr;
    padding: 0px 15px 0px 15px;
  }
}
.ab-hero .subtext {
  color: var(--heading-color);
  font-family: "Inter", sans-serif;
  padding: 17px 24px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 130% */
  text-transform: capitalize;
  border-radius: 300px;
  border: 1px solid #E2E2E2;
}
.ab-hero .title {
  color: var(--heading-color);
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  padding-top: 20px;
}
@media only screen and (max-width: 1599px) {
  .ab-hero .title {
    font-size: 65px;
  }
}
@media only screen and (max-width: 1400px) {
  .ab-hero .title {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1199px) {
  .ab-hero .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .ab-hero .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .ab-hero .title {
    font-size: 32px;
  }
}
.ab-hero .title-wrap {
  padding: 0px 310px 45px;
}
@media only screen and (max-width: 1199px) {
  .ab-hero .title-wrap {
    padding: 0px 150px 40px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .ab-hero .title-wrap {
    padding: 0px 15px 30px 15px;
  }
}
.ab-hero .content {
  color: var(--gray);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 40px;
  max-width: 612px;
}
@media only screen and (max-width: 1599px) {
  .ab-hero .content {
    font-size: 18px;
  }
}
.ab-hero .btm-img {
  position: absolute;
  bottom: 84px;
  right: 130px;
  border-radius: 80px 0px 0px 0px;
}
@media only screen and (max-width: 1599px) {
  .ab-hero .btm-img {
    bottom: 30px;
    right: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .ab-hero .btm-img {
    bottom: 0;
    right: 0;
    width: 22%;
  }
}
@media only screen and (max-width: 991px) {
  .ab-hero .btm-img {
    bottom: 0;
    right: 0;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .ab-hero .btm-img {
    display: none;
  }
}

.process-area .title-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 420px auto;
  gap: 290px;
  border-bottom: 1.5px solid #E2E2E2;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .process-area .title-wrap {
    gap: 145px;
  }
}
@media only screen and (max-width: 991px) {
  .process-area .title-wrap {
    grid-template-columns: 390px auto;
    gap: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .process-area .title-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.process-area .title {
  color: var(--heading-color);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .process-area .title {
    font-size: 32px;
  }
}
.process-area .content {
  color: var(--gray);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.process-area .subtitle {
  color: var(--heading-color);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 15px;
}
.process-area .subcontent {
  color: var(--heading-color);
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
  padding-bottom: 30px;
  max-width: 73%;
}
@media only screen and (max-width: 1199px) {
  .process-area .subcontent {
    font-size: 25px;
    max-width: 80%;
  }
}
@media only screen and (max-width: 991px) {
  .process-area .subcontent {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .process-area .subcontent {
    font-size: 24px;
  }
}
.process-area .gallery-wrap {
  display: grid;
  grid-template-columns: 416px auto;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .process-area .gallery-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .process-area .gallery-wrap {
    grid-template-columns: 1fr;
  }
}
.process-area .process-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px 130px;
  padding: 40px 0px 120px;
}
@media only screen and (max-width: 1199px) {
  .process-area .process-wrap {
    gap: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .process-area .process-wrap {
    gap: 30px 15px;
    padding: 40px 0px 50px;
  }
}
@media only screen and (max-width: 575px) {
  .process-area .process-wrap {
    grid-template-columns: 1fr;
  }
}
.process-area .right-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .process-area .right-text {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.process-area .right-text .content {
  position: relative;
}
.process-area .right-text .content::after {
  position: absolute;
  top: 5px;
  right: -28px;
  width: 1px;
  height: 70px;
  background-color: #E8E8E8;
  content: "";
}
@media only screen and (max-width: 1199px) {
  .process-area .right-text .content::after {
    width: 0px;
  }
}
.process-area .right-text .content:last-child::after {
  width: 0px;
}

.single-service {
  padding: 30px 0;
  border-bottom: 1px solid rgba(25, 25, 25, 0.1);
}
@media only screen and (max-width: 575px) {
  .single-service {
    padding: 30px;
  }
}
.single-service .service-title-wrapper {
  max-width: 300px;
}
.single-service .service-title {
  transition: all 0.4s ease 0s;
  font-size: 52px;
  color: var(--heading-color);
  line-height: 62px;
}
.single-service .service-icon {
  transition: all 0.4s ease 0s;
  color: var(--heading-color);
}
.single-service .service-info-list .service-info-item {
  color: var(--heading-color);
  font-size: 16px;
  line-height: 26px;
  list-style: disc;
  font-weight: 500;
}
.single-service .service-details {
  color: var(--heading-color);
}
.single-service .service-details .circle-path {
  transition: all 0.4s ease 0s;
  fill: #ffe9d2;
}
.single-service:hover .service-icon {
  color: var(--primary-color);
}
.single-service:hover .service-title {
  color: var(--primary-color);
}
.single-service:hover .service-details .circle-path {
  fill: var(--primary-color);
}
@media only screen and (max-width: 1199px) {
  .single-service .service-title {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  .single-service .service-title {
    font-size: 24px;
    line-height: 1.2;
  }
}

.single-pricing {
  border: 1px solid var(--heading-color);
  border-radius: 30px;
  padding: 45px 50px 50px;
}
@media only screen and (max-width: 991px) {
  .single-pricing {
    padding: 45px 30px 50px;
  }
}
.single-pricing .pricing-plan-duration {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-family: "Hanken Grotesk", sans-serif;
}
.single-pricing .pricing-plan-duration .rory-text-muted {
  font-weight: 400;
}
.single-pricing .pricing-plan {
  font-size: 32px;
  line-height: 26px;
}
.single-pricing .pricing-plan-item {
  line-height: 36px;
}
.single-pricing .plan-price {
  font-size: 24px;
  line-height: 26pxs;
}
.single-pricing .rory-btn-primary {
  margin-top: 15px;
  padding: 20px 32px;
}
@media only screen and (max-width: 360px) {
  .single-pricing .rory-btn-primary {
    padding: 20px 20px;
  }
}
.single-pricing:hover .rory-btn-primary {
  background-color: var(--heading-color);
  color: var(--white);
}

.videos {
  min-height: 100vh;
}
@media only screen and (max-width: 1199px) {
  .videos {
    min-height: 60vh;
  }
}

.video-play-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  color: var(--heading-color);
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.testimonial-card {
  border-radius: 30px;
  background: #fff;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.testimonial-card.style-shadow {
  box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, 0.03);
  border: 0;
  margin: 20px;
}
.testimonial-card .testimonial-rating {
  font-size: 16px;
  line-height: 26px;
  color: var(--heading-color);
}
.testimonial-card .testimonial-desc {
  font-size: 24px;
  color: var(--heading-color);
  line-height: 34px;
}
@media only screen and (max-width: 575px) {
  .testimonial-card .testimonial-desc {
    font-size: 16px;
    line-height: 1.5;
  }
}
.testimonial-card .testimonial-author-name {
  color: var(--heading-color);
  font-size: 24px;
  line-height: 26px;
}
.testimonial-card .testimonial-author-title {
  color: var(--gray);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 575px) {
  .testimonial-card {
    padding: 30px;
  }
  .testimonial-card .testimonial-author-name {
    font-size: 20px;
  }
  .testimonial-card .testimonial-author-title {
    font-size: 14px;
  }
}

.testimonial-avatars li {
  position: absolute;
}
.testimonial-avatars li:nth-child(1) {
  left: 60px;
  top: 20px;
}
.testimonial-avatars li:nth-child(2) {
  left: 40%;
  top: 0;
}
.testimonial-avatars li:nth-child(3) {
  right: 60px;
  top: 20px;
}
.testimonial-avatars li:nth-child(4) {
  top: 60%;
  right: 0;
}
.testimonial-avatars li:nth-child(5) {
  left: 220px;
  bottom: 0;
}
.testimonial-avatars li:nth-child(6) {
  left: 250px;
  top: 80px;
}
.testimonial-avatars li:nth-child(7) {
  left: 0;
  top: 30%;
}
.testimonial-avatars li:nth-child(8) {
  left: 200px;
  top: 50%;
}
.testimonial-avatars li:nth-child(9) {
  left: 35%;
  bottom: 18%;
}
.testimonial-avatars li:nth-child(10) {
  bottom: 100px;
  right: 30%;
}
.testimonial-avatars li:nth-child(11) {
  top: 20px;
  right: 20%;
}
.testimonial-avatars li:nth-child(12) {
  right: 120px;
  top: 30%;
}
.testimonial-avatars li:nth-child(13) {
  right: 18%;
  bottom: 20%;
}

.testi-custom-container {
  max-width: 1500px;
}

.counter-title {
  font-size: 64px;
}
@media only screen and (max-width: 575px) {
  .counter-title {
    font-size: 32px;
    line-height: 1.2;
  }
}

.counter-desc {
  font-family: "Hanken Grotesk", sans-serif;
}

.counter-area-2 {
  padding: 70px 0px;
  background-color: #FFAE88;
}
.counter-area-2 .gap {
  gap: 160px;
}
@media only screen and (max-width: 1199px) {
  .counter-area-2 .gap {
    gap: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-area-2 .counter-title {
    font-size: 45px;
  }
}
.counter-area-2 .card-item {
  position: relative;
}
.counter-area-2 .card-item::after {
  position: absolute;
  top: 0%;
  right: -17%;
  width: 2px;
  height: 120px;
  background-color: rgba(255, 233, 210, 0.2509803922);
  content: "";
}
@media only screen and (max-width: 1199px) {
  .counter-area-2 .card-item::after {
    width: 0px;
  }
}
.counter-area-2 .col-12:nth-child(4) .card-item::after {
  width: 0px;
}
.counter-area-2 .counter-desc {
  color: #272727;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding-top: 8px;
}

.blog-section-left {
  padding-right: 180px;
  border-right: 1px solid rgba(25, 25, 25, 0.1);
}
@media only screen and (max-width: 991px) {
  .blog-section-left {
    border-right: 0;
    padding-right: 0;
  }
}

.blog-section-title {
  font-size: 52px;
  color: var(--heading-color);
  font-weight: 700;
  line-height: 62px;
}
@media only screen and (max-width: 575px) {
  .blog-section-title {
    font-size: 35px;
    line-height: 1.1;
  }
}
.blog-section-title.style-medium {
  font-size: 42px;
  line-height: 1.2;
}
@media only screen and (max-width: 575px) {
  .blog-section-title.style-medium {
    font-size: 30px;
  }
}

.blog-section-title-sm {
  color: var(--heading-color);
}

.blog-section-desc {
  color: var(--gray);
}

.blog-card {
  border-radius: 30px;
  background-color: var(--white);
  box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.blog-card .blog-thumb {
  border-radius: 30px;
  overflow: hidden;
}
.blog-card .blog-thumb img {
  border-radius: 30px;
  transition: 0.7s;
}
.blog-card .blog-card-body {
  padding: 30px;
}
.blog-card .blog-card-body .blog-author-name,
.blog-card .blog-card-body .blog-comment {
  transition: all 0.3s ease 0s;
  color: var(--gray);
  font-size: 16px;
  font-family: "Inter", sans-serif;
}
.blog-card .blog-card-body .blog-author-name:hover,
.blog-card .blog-card-body .blog-comment:hover {
  color: var(--heading-color);
}
.blog-card .blog-card-body .blog-date {
  color: var(--heading-color);
  font-size: 16px;
  line-height: 1.1;
}
.blog-card .blog-card-body .blog-date span {
  display: block;
}
.blog-card:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-title {
  transition: all 0.5s ease 0s;
  font-size: 24px;
  color: var(--heading-color);
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 20px;
}
.blog-title:hover {
  color: var(--primary-color);
}

.service-tabs-wrapper .service-tab {
  transition: all 0.4s ease 0s;
  background-color: transparent;
  padding: 16px 0;
  text-align: left;
  cursor: pointer;
}
.service-tabs-wrapper .service-tab .service-tab-title {
  font-size: 82px;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  opacity: 0.6;
  -webkit-text-stroke: 1px black;
}
@media only screen and (max-width: 1199px) {
  .service-tabs-wrapper .service-tab .service-tab-title {
    font-size: 60px;
  }
}
.service-tabs-wrapper .service-tab .service-tab-subtitle {
  font-size: 24px;
  font-weight: 700;
  font-family: "Hanken Grotesk", sans-serif;
}
.service-tabs-wrapper .service-tab.active .service-tab-title {
  color: var(--heading-color);
  opacity: 1;
}
.service-tabs-wrapper .service-tab.active svg {
  fill: var(--heading-color);
  stroke: none;
}

.instagram-post .instagram-post-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
  transition: all 0.4s ease;
}
.instagram-post::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--heading-color), 0.4);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.instagram-post:hover::after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.instagram-post:hover .instagram-post-link {
  opacity: 1;
}

.scroll-slides-text {
  width: 101%;
  z-index: 2;
  position: relative;
}

.slide-text-left .swiper-wrapper {
  transition-timing-function: linear;
}

.slide-text-right .swiper-wrapper {
  transition-timing-function: linear;
}

.slide-text-wrapper {
  transform: rotate(5deg);
  width: 100%;
  margin-left: -10px;
  position: relative;
}

.sliding-text {
  font-size: 52px;
  color: var(--white);
  height: 120px;
  padding: 40px 0;
  gap: 30px;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .sliding-text {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .sliding-text {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .sliding-text img {
    width: 45px;
  }
}

.skills .single-skill {
  border: 1px solid rgba(25, 25, 25, 0.1);
  cursor: pointer;
}
.skills .single-skill:nth-child(even) {
  border-top-right-radius: 85px;
  border-bottom-left-radius: 85px;
}
@media only screen and (max-width: 1599px) {
  .skills .single-skill:nth-child(even) {
    border-top-right-radius: 70px;
    border-bottom-left-radius: 70px;
  }
}
.skills .single-skill:nth-child(odd) {
  border-top-left-radius: 85px;
  border-bottom-right-radius: 85px;
}
@media only screen and (max-width: 1599px) {
  .skills .single-skill:nth-child(odd) {
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
  }
}
.skills .single-skill .single-skill-inner {
  padding: 35px 30px;
}
.skills .single-skill .single-skill-inner .skills-icon {
  margin-bottom: 30px;
}
.skills .single-skill .single-skill-inner .skills-icon img {
  transition: all 0.4 ease 0s;
  filter: grayscale(100);
}
.skills .single-skill .single-skill-inner .skill-title {
  font-size: 24px;
  color: var(--heading-color);
  margin-top: 45px;
}
@media only screen and (max-width: 1599px) {
  .skills .single-skill .single-skill-inner .skill-title {
    margin-top: 30px;
    font-size: 18px;
  }
}
.skills .single-skill:hover .single-skill-inner .skills-icon img {
  filter: grayscale(0);
}

/* Themes  */
[data-theme=light] .dark-version {
  display: none;
}

.dark-version {
  display: none;
}

[data-theme=dark] .light-version {
  display: none;
}
[data-theme=dark] .dark-white {
  color: #fff;
}
[data-theme=dark] .dark-version {
  display: block;
}
[data-theme=dark] .dark-text-gray {
  color: #828282;
}
[data-theme=dark] .dark-text-gray path {
  fill: #828282;
}
[data-theme=dark] .bg-sky {
  background-color: #272727;
}
[data-theme=dark] .logo-area .logo-dark {
  display: block;
}
[data-theme=dark] .logo-area .logo-white {
  display: none;
}
[data-theme=dark] .header-menu-toggle svg path {
  fill: #fff;
}
[data-theme=dark] .section-subtitle {
  color: #828282;
}
[data-theme=dark] .hero-one .hero-btn-one {
  background: #272727;
}
[data-theme=dark] .hero-one .hero-btn-one .hero-btn-text {
  color: var(--white);
}
[data-theme=dark] .bg-theme-primary.hero-cross.style-two {
  background: #272727;
}
[data-theme=dark] .partners-list .partner-thumb img {
  filter: invert(100);
}
[data-theme=dark] .social-proof-title::before,
[data-theme=dark] .social-proof-title::after {
  background-color: #fff;
}
[data-theme=dark] .social-proof {
  box-shadow: 0px 94px 94px 0px #161616;
}
[data-theme=dark] .scrolling-circle-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}
[data-theme=dark] .scrolling-circle-btn:hover {
  border: 1px solid #111;
}
[data-theme=dark] .scrolling-circle-btn:hover::after {
  background-color: #111;
}
[data-theme=dark] .portfolio-filters {
  background: #272727;
}
[data-theme=dark] .portfolio-filters .filter-btn.active::after {
  color: #fff;
}
[data-theme=dark] .portfolio-one-shape .portfolio-one-title {
  color: #111;
}
[data-theme=dark] .project-swiper-scrollbar {
  background-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .project-swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #818181;
}
[data-theme=dark] .section-title-stroke {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.137254902);
  opacity: 1;
}
[data-theme=dark] .single-service {
  border-bottom: 1px solid rgba(255, 255, 255, 0.0901960784);
}
[data-theme=dark] .single-pricing {
  border-color: #272727;
}
[data-theme=dark] .single-pricing .pricing-plan-duration,
[data-theme=dark] .single-pricing .pricing-plan {
  color: var(--white);
}
[data-theme=dark] .single-pricing .pricing-plan-item svg {
  fill: #fff;
}
[data-theme=dark] .single-pricing .rory-btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .single-pricing .rory-btn-primary:hover {
  background: var(--272727, #272727);
  border-color: #272727;
}
[data-theme=dark] .testimonial-card {
  background-color: #272727;
}
[data-theme=dark] .testimonial-card svg {
  color: var(--white);
}
[data-theme=dark] .blog-card {
  background-color: #272727;
}
[data-theme=dark] .bg-theme-primary {
  background-color: #272727;
}
[data-theme=dark] .bg-theme-neutral {
  background-color: #191919;
}
[data-theme=dark] .service-tabs-wrapper .service-tab .service-tab-subtitle {
  color: #fff;
}
[data-theme=dark] .service-tabs-wrapper .service-tab .service-tab-title {
  -webkit-text-stroke: 1px #828282;
}
[data-theme=dark] .service-tabs-wrapper .service-tab svg {
  color: #828282;
}
[data-theme=dark] .hero-three .hero-subtitle,
[data-theme=dark] .hero-three .hero-title,
[data-theme=dark] .hero-three .hero-title-secondary,
[data-theme=dark] .hero-three .hero-btn-one .hero-btn-desc,
[data-theme=dark] .hero-three .hero-services .hero-service-name {
  color: #191919;
}
[data-theme=dark] .about-three-btn {
  background-color: #272727;
  border: 0;
}
[data-theme=dark] .about-three-btn:hover {
  color: #191919;
}
[data-theme=dark] .skills .single-skill {
  border: 1px solid #272727;
}
[data-theme=dark] .skills .single-skill svg {
  filter: invert(100);
}
[data-theme=dark] .portfolio-link svg {
  color: #fff;
}
[data-theme=dark] .portfolio-link:hover svg {
  color: #111;
}
[data-theme=dark] .ab-hero {
  background-color: #191919;
}
[data-theme=dark] .header.bg-white {
  background-color: #191919 !important;
}
[data-theme=dark] .header .header-social-links li a img {
  filter: brightness(100);
}
[data-theme=dark] .single-service .service-details .circle-path {
  fill: #2c2c2c;
}
[data-theme=dark] .single-service .service-details .circle-path:hover {
  fill: var(--primary-color);
}
[data-theme=dark] .service-details-area .main-thumb:after {
  background-color: #191919;
}
[data-theme=dark] .service-details-area .thumbnail-area,
[data-theme=dark] .service-details-area .check-list li + li {
  border-color: #272727;
}
[data-theme=dark] .single-project-inner .thumb .details-arrow:hover svg path {
  fill: #191919;
}
[data-theme=dark] .portfolio-description .rory-text-gray svg {
  fill: #828282;
}
[data-theme=dark] .blog-sidebar-widget {
  border-color: #272727;
}
[data-theme=dark] .blog-sidebar-widget .sidebar-widget-title {
  color: var(--white);
}
[data-theme=dark] .sidebar-categories .sidebar-categories-item.active {
  background-color: rgba(255, 255, 255, 0.05);
}
[data-theme=dark] .social-links .social-link-item a {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}
[data-theme=dark] .social-links .social-link-item a:hover {
  background-color: var(--primary-color);
}
[data-theme=dark] .comment-form label input,
[data-theme=dark] .comment-form label textarea {
  color: #9f9f9f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .comment-list li .media .media-body .reply {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 16px 4px;
  border-radius: 30px;
  position: absolute;
  right: 0;
  top: -3px;
  transition: 0.4s;
  color: var(--heading-color);
}
[data-theme=dark] .comment-list li .media .media-body .reply {
  background: rgba(255, 255, 255, 0.05);
}
[data-theme=dark] .comment-list li .media .media-body .reply:hover {
  background: var(--primary-color);
}
[data-theme=dark] .blog-details-tags {
  color: #fff;
}
[data-theme=dark] .comment-list li .media {
  border-color: rgba(255, 255, 255, 0.05);
}
[data-theme=dark] .details-author-card {
  border: 1px solid #272727;
}
[data-theme=dark] .check-list-icon li svg {
  fill: #fff;
}
[data-theme=dark] .single-input-inner input,
[data-theme=dark] .single-input-inner textarea {
  background: #232323 !important;
  color: #fff;
}
[data-theme=dark] .contact-info-inner ~ .contact-info-inner {
  border-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .footer-subscribe-form .form-control {
  border: 1px solid #4a4a4a;
}
[data-theme=dark] .hero-btn-cv span {
  color: #232323;
}
[data-theme=dark] .home-3-list-icon svg path {
  fill: #fff;
}
[data-theme=dark] .blog-meta svg {
  color: #fff;
}
[data-theme=dark] .mobile_menu_nav ul.menu_list li.show > a {
  color: #212529;
}

[data-theme=rtl] body {
  direction: rtl;
  unicode-bidi: embed;
}

/*# sourceMappingURL=style.css.map */
