/*---------------------------
 CSS Index
****************************

01. Variables
02. Typography
03. Spacing
04. Reset
05. Forms
06. Shortcode
07. Common
08. Animations
09. Text Animation
10. Header
11. Nav
12. Mobilemenu
13. Rightdemo
14. Button
15. Accordion
16. Section Title
17. Banner
18. Service
19. Modal
20. Skill
21. Progressbar
22. Testimonial
23. Clients
24. Pricing
25. Contact
26. About
27. Brand
28. Footer
29. Portfolio
30. Slickstyle
31. Home Classic
32. White Version
----------------------------*/
/* Default  */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
/* @import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap"); */
:root {
  --color-primary: #ff014f;
  --color-secondary: #f4f5f6;
  --color-tertiary: #0d1013;
  --color-gray: #f6f6f6;
  --color-subtitle: #f9004d;
  --background-color-1: linear-gradient(145deg, #1e2024, #23272b);
  --background-color-2: #212428;
  --shadow-1: 10px 10px 19px #1c1e22,
      -10px -10px 19px #262a2e;
  --shadow-2: inset 21px 21px 19px #181a1d, inset -21px -21px 19px #202225;
  --inner-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
  --shadow-white-3: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
  --gradient-box-w: linear-gradient(145deg, #e2e8ec, #ffffff);
  --gradient-red-hover: linear-gradient(145deg, #ff014f, #d11414);
  --color-heading: #ffffff;
  --color-heading-wv: #1e2125;
  --color-body: #878e99;
  --color-body-white: #3c3e41;
  --color-lightn: #c4cfde;
  --color-midgray: #878787;
  --color-light: #E4E6EA;
  --color-lighter: #CED0D4;
  --color-lightest: #F0F2F5;
  --color-border: #E6E6E6;
  --color-white: #ffffff;
  --color-white-75: rgba(255, 255, 255, 0.75);
  --color-success: #3EB75E;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: 0.4s;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --font-size-b1: 18px;
  --font-size-b2: 22px;
  --font-size-b3: 14px;
  --line-height-b1: 1.50;
  --line-height-b2: 1.6;
  --line-height-b3: 1.7;
  --h1: 70px;
  --h2: 60px;
  --h3: 50px;
  --h4: 40px;
  --h5: 30px;
  --h6: 20px;
}

@font-face {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../font/Helvetica.ttf);
}

@font-face {
  font-family: "Bebas";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../font/BebasNeue-Regular.ttf);
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* font-family: var(--font-primary); */
  font-family: "Helvetica", sans-serif;
  color: var(--color-white);
  font-weight: var(--p-regular);
}

.line-limit-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.line-limit-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
  }
}
h1,
h2,
h4,
p,
ul {
  margin: 0;
  margin-bottom: 20px;
}

h1,
h2,
h4 {
  word-break: break-word;
  /* font-family: var(--font-primary); */
  font-family: "Helvetica", sans-serif;
  line-height: 1.4074;
  color: var(--color-heading);
}

h1 {
  font-size: var(--h1);
  line-height: 1.19;
  font-weight: 700;
}

h2 {
  font-size: var(--h2);
  line-height: 1.23;
}

h4 {
  font-size: var(--h4);
  line-height: 1.25;
}

h4 a {
  color: inherit;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
  h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 28px;
  }
  h4 {
    font-size: 20px;
  }
}
h1,
h2 {
  font-weight: var(--s-bold);
}

h4 {
  font-weight: var(--s-bold);
}

p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: var(--p-regular);
  color: white;
  /* margin: 0 0 40px; */
}

@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
  }
}
p:last-child {
  margin-bottom: 0;
}

/*---------------------------
	List Style
---------------------------*/
ul {
  padding-left: 18px;
}

ul {
  list-style: square;
  margin-bottom: 30px;
  padding-left: 20px;
}

ul li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--color-body);
}

ul li a {
  text-decoration: none;
  color: var(--color-gray);
}

ul li a:hover {
  color: var(--color-primary);
}

/*=========================
    Section Separation
==========================*/
.m--0 {
  margin: 0;
}

.rn-section-gap {
  padding: 50px 0;
}

.rn-section-gapTop {
  padding-top: 50px;
}

.mt--10 {
  margin-top: 10px !important;
}

.ptb--20 {
  padding: 20px 0 !important;
}

.mb--20 {
  margin-bottom: 20px !important;
}

.mt--30 {
  margin-top: 30px !important;
}

.mt--40 {
  margin-top: 40px !important;
}

.mt--50 {
  margin-top: 50px !important;
}

.pb--60 {
  padding-bottom: 60px !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt_md--10 {
    margin-top: 10px !important;
  }
  .mb_md--20 {
    margin-bottom: 20px !important;
  }
  .mt_md--30 {
    margin-top: 30px !important;
  }
  .mt_md--40 {
    margin-top: 40px !important;
  }
  .pb_md--50 {
    padding-bottom: 50px !important;
  }
}
@media only screen and (max-width: 767px) {
  .mt_sm--10 {
    margin-top: 10px !important;
  }
  .mb_sm--20 {
    margin-bottom: 20px !important;
  }
  .mt_sm--30 {
    margin-top: 30px !important;
  }
  .mt_sm--40 {
    margin-top: 40px !important;
  }
}
@media only screen and (max-width: 479px) {
  .contact-input {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 575px) {
  .mt-contact-sm {
    margin-top: 30px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-input {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-input {
    padding-bottom: 30px;
  }
}
/* .row {
  margin-right: -15px;
  margin-left: -15px;
} */
.row > [class*=col] {
  padding-left: 15px;
  padding-right: 15px;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

header,
nav {
  display: block;
}

a {
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: var(--color-primary);
}

a:focus {
  outline: none;
}

b {
  font-weight: bold;
}

ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

nav ul {
  list-style: none;
  list-style-image: none;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

form {
  margin: 0;
}

button,
input,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

em {
  font-style: italic;
}

/* BlockQuote  */
/* ========= Forms Styles ========= */
input,
button,
textarea {
  background: transparent;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
}

input:focus, input:active, button:focus, button:active, textarea:focus, textarea:active {
  outline: none;
  border-color: var(--color-primary);
}

button,
[type=submit] {
  -webkit-appearance: button;
}

input {
  height: 40px;
  padding: 0 15px;
}

input[type=text],
input[type=email],
textarea {
  font-size: var(--font-size-b2);
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 15px;
  outline: none;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius);
  /* -- Placeholder -- */
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--body-color);
}

input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--body-color);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--color-primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.form-group input {
  border: 0 none;
  border-radius: 4px;
  height: 50px;
  font-size: var(--font-size-b2);
  transition: var(--transition);
  padding: 0 20px;
  background-color: var(--color-lightest);
  border: 1px solid transparent;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: none;
}

.form-group textarea {
  min-height: 160px;
  border: 0 none;
  border-radius: 4px;
  resize: none;
  padding: 15px;
  font-size: var(--font-size-b2);
  transition: var(--transition);
  background-color: var(--color-lightest);
  border: 1px solid transparent;
}

.form-group textarea:focus {
  border-color: var(--color-primary);
}

/*==============================
 *  Utilities
=================================*/
/*
font-family: 'Red Hat Display', sans-serif;
*/
/*===============================
    Background Color
=================================*/
/*===========================
Background Image
=============================*/
/* Height and width */
/*===================
Custom Row
======================*/
.row--25 {
  margin-left: -25px;
  margin-right: -25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--25 > [class*=col], .row--25 > [class*=col-] {
  padding-left: 25px;
  padding-right: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.row--30 {
  margin-left: -30px;
  margin-right: -30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--30 > [class*=col], .row--30 > [class*=col-] {
  padding-left: 30px;
  padding-right: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
/*===========================
    Input Placeholder
=============================*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*=============================
	Overlay styles
==============================*/
/*------------------------------
    Scroll Up
--------------------------------*/
/*--------------------
    Contact Form
----------------------*/
/*---------------------------
    Banner Area Styles
-----------------------------*/
.liststyle {
  padding: 0;
  list-style: none;
}

.social-share-style-1 .title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--color-lightn);
  display: inline-block;
  margin-bottom: 20px;
}

.social-share-style-1 .social-share {
  margin: 0;
  flex-wrap: wrap;
}

.social-share-style-1 .social-share li {
  margin: 0 25px 25px 0;
}

.social-share-style-1 .social-share li a {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
  background: var(--background-color-1);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-1);
}

.social-share-style-1 .social-share li a::before {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 6px;
  top: 0;
  left: 0;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  z-index: -1;
}

.social-share-style-1 .social-share li a:hover {
  transform: translateY(-5px);
}

.social-share-style-1 .social-share li a:hover::before {
  opacity: 1;
}

.w-100 {
  width: 100%;
}

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .cd-headline {
    font-size: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .cd-headline {
    font-size: 26px;
  }
}
.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;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

/* --------------------------------

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: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

/* Header  */
/*---------------------------
    Header Area Styles
-----------------------------*/
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
body.template-color-1 {
  background-color: #212428;
}

.nav-pills .nav-link.active {
  color: #fff;
  background-color: transparent;
  position: relative;
}

.nav-pills .nav-link {
  margin: 0.5rem 1rem;
  padding: 0;
}

.header-wrapper {
  height: 90px;
  padding: 0 64px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-wrapper {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-wrapper {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-wrapper {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header-wrapper {
    padding: 0 20px;
    height: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .header-wrapper {
    padding: 0 3px;
  }
}
@media only screen and (max-width: 479px) {
  .header-wrapper {
    padding: 0;
  }
}
.header-wrapper .header-left {
  flex-basis: 20%;
  justify-content: flex-start;
  display: flex;
}

.header-wrapper .header-center {
  flex-basis: 100%;
  justify-content: flex-end;
  display: flex;
  align-items: center;
}

.header-wrapper .header-right {
  margin-left: 30px;
  justify-content: flex-end;
  display: flex;
  margin-right: -18px;
}

.header-wrapper .header-right i {
  z-index: 800;
  color: var(--color-primary);
  font-size: 36px;
  position: relative;
  transition: 0.5s;
  top: 2px;
}

/* @media only screen and (max-width: 1199px) {
  #sideNav {
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    z-index: 999;
    transition: 0.7s;
    display: flex;
    opacity: 1;
  }
} */
@media only screen and (max-width: 1199px) and (min-width: 992px) and (max-width: 1199px) {
  #sideNav {
    display: inline-block;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 768px) and (max-width: 991px) {
  #sideNav {
    display: inline-block;
  }
}
@media only screen and (max-width: 1199px) and (max-width: 767px) {
  #sideNav {
    display: inline-block;
  }
}
@media only screen and (max-width: 1199px) and (max-width: 575px) {
  #sideNav {
    display: inline-block;
  }
}
@media only screen and (max-width: 1199px) and (max-width: 479px) {
  #sideNav {
    display: inline-block;
  }
}
/* @media only screen and (max-width: 1199px) {
  #sideNav ul li {
    list-style: none;
    margin: 50px 20px;
    display: block;
  }
  #sideNav ul li a {
    text-decoration: none;
    color: var(--color-white);
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
  }
} */
.rn-header.header--sticky {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

.rn-header.header--fixed {
  position: absolute;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: 0.3s;
}

.logo a {
  display: inline-block;
}

.logo a img {
  transition: 0.3s;
}

@media only screen and (max-width: 767px) {
  .logo a img {
    max-height: 54px;
  }
}
.close-menu {
  opacity: 0;
  visibility: hidden;
}

.close-menu .closeTrigger i {
  position: relative;
}

/*--------------------------
    Navigation Styles
----------------------------*/
.mainmenu-nav .primary-menu {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  margin: -24px;
  padding: 0;
}

/* @media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu-nav .primary-menu {
    display: block;
    margin-top: 95px;
    margin-left: 30px;
  }
} */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mainmenu-nav .primary-menu {
    display: block;
    margin-top: 95px;
    margin-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .mainmenu-nav .primary-menu {
    display: block;
    margin-top: 95px;
    margin-left: 30px;
  }
}
.mainmenu-nav .primary-menu li {
  margin: 10px 14px;
  transition: 0.3s;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .mainmenu-nav .primary-menu li {
    margin: 10px 5px;
  }
}
.mainmenu-nav .primary-menu li:hover a {
  opacity: 1 !important;
  color: var(--color-white);
}

.mainmenu-nav .primary-menu li a {
  color: var(--color-white);
  position: relative;
  transition: var(--transition);
  font-size: 13px;
  font-weight: var(--s-regular);
  text-transform: uppercase;
  /* font-family: var(--font-secondary); */
  font-family: "Helvetica", sans-serif;
}

.mainmenu-nav .primary-menu li.current a {
  opacity: 1 !important;
  color: var(--color-primary);
  font-weight: 600;
}

.mainmenu-nav .primary-menu:hover li a {
  opacity: 0.5;
}

/* .header--sticky.sticky .mainmenu-nav .primary-menu li a {
  opacity: 0.5;
} */
/*----------------------------
    Mobile Menu Styles
------------------------------*/
.popup-mobile-menu {
  z-index: 9999;
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.popup-mobile-menu .inner {
  padding: 25px 40px;
  width: 375px;
  z-index: 999;
  position: absolute;
  background: #191b1e;
  height: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
  opacity: 0;
  left: -150px;
  transition: all 0.5s ease-out;
}

@media only screen and (max-width: 479px) {
  .popup-mobile-menu .inner {
    width: 310px;
    padding: 10px;
  }
}
.popup-mobile-menu .inner .menu-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.popup-mobile-menu .inner .menu-top .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-mobile-menu .inner .menu-top .menu-header .close-button .close {
  opacity: 1;
  width: max-content;
  position: relative;
}

@media only screen and (max-width: 479px) {
  .popup-mobile-menu .inner .menu-top .menu-header .close-button .close {
    right: 9px;
  }
}
.popup-mobile-menu .inner .menu-top .menu-header .close-button .close::after {
  position: absolute;
  content: "";
  padding: 22px;
  background: var(--background-color-1);
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media only screen and (max-width: 479px) {
  .popup-mobile-menu .inner .menu-top .menu-header .close-button .close::after {
    padding: 20px;
  }
}
.popup-mobile-menu .inner .menu-top p.discription {
  font-size: 16px;
  line-height: 29px;
  margin-top: 20px;
  color: var(--color-lighten);
  padding-right: 0;
}

.social-share-style-1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 100px !important;
}

.social-share-style-1 .social-share li {
  margin: 0 15px 15px 0;
}

.social-share-style-1 .social-share {
  margin-right: -15px;
}

.social-share-style-1 .social-share li a {
  width: 53px;
  height: 53px;
  line-height: 53px;
}

.popup-mobile-menu .social-share-style-1 .social-share li a {
  box-shadow: none;
}

/*----------------------
    Right Demo
-----------------------*/
/*-------------------
 Popup Tab
-----------------------*/
/*---------------------------------
    Right Demo Light Version
----------------------------------*/
/*---------------------------
    Dropdown Menu
----------------------------*/
.mainmenu-nav .primary-menu li {
  position: relative;
}

/* Elements  */
/*---------------------------
    Header Area Styles
-----------------------------*/
a.rn-btn,
button.rn-btn {
  display: inline-block;
  padding: 15px 35px;
  list-style: none;
  text-decoration: none;
  color: var(--color-primary);
}

a.rn-btn,
button.rn-btn {
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 500;
  border: 0 none;
}

a.rn-btn::before,
button.rn-btn::before {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 6px;
  top: 0;
  left: 0;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  z-index: -1;
}

a.rn-btn:hover,
button.rn-btn:hover {
  transform: translateY(-5px);
}

a.rn-btn:hover::before,
button.rn-btn:hover::before {
  opacity: 1;
}

p.has-drop-cap:not(:focus):first-letter {
  float: left;
  font-size: 104px;
  line-height: 0.78;
  margin: 4px 15px 0 0;
  text-transform: uppercase;
  font-family: georgia, serif;
  font-style: normal;
  font-weight: 400;
  color: var(--color-heading);
  -webkit-font-smoothing: antialiased;
  color: var(--color-lightn);
}

/*-------------------------
    Section Title Styles
-------------------------- */
.section-separator {
  position: relative;
}

.section-separator::after {
  position: absolute;
  max-width: 1270px;
  height: 1px;
  background: #121415;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.section-title h2.title {
  font-family: "Bebas", sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-white);
  margin-top: 15px;
  margin-bottom: 0;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title h2.title {
    font-size: 38px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2.title {
    font-size: 40px;
    margin-top: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title h2.title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .section-title h2.title {
    text-align: center;
    margin: 0;
    font-size: 34px;
  }
}
/*---------------------------
    Banner Area Styles
-----------------------------*/
.slide {
  padding-bottom: 50px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slide {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .slide {
    padding-bottom: 100px;
  }
}
.slide .content {
  margin-top: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slide .content {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide .content {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .slide .content {
    margin-top: 40px;
  }
}
/* .slide .content .inner {
  margin-bottom: 142px;
} */
@media only screen and (max-width: 1199px) {
  .slide .content .inner {
    margin-bottom: 0px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide .content .inner {
    margin-bottom: 40px;
  }
}
.slide .content .inner .title {
  color: #ffffff;
  font-weight: 700;
  /* font-size: 50px;
  line-height: 65px; */
  font-size: 90px;
  line-height: 100px;
  margin-bottom: 22px;
  color: #b79685 !important;
  /* font-family: var(--font-primary); */
  font-family: "Helvetica", sans-serif;
}

@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .slide .content .inner .title {
    /* font-size: 50px; */
    font-size: 80px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide .content .inner .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .slide .content .inner .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 479px) {
  .slide .content .inner .title {
    font-size: 32px;
    line-height: 40px;
  }
}
.slide .content .inner .title span {
  color: #ff014f;
}

.slide .content .inner .title .header-caption span {
  color: var(--color-white);
  font-weight: 600;
}

.slide .content .inner .description {
  font-size: 16px;
  line-height: 30px;
  color: var(--color-white);
  /* padding-right: 16%; */
  opacity: 0.9;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slide .content .inner .description {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide .content .inner .description {
    margin-bottom: 40px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .slide .content .inner .description {
    margin-bottom: 40px;
    padding-right: 0;
  }
}
.slide .thumbnail {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .slide .thumbnail {
    display: flex;
    justify-content: center;
  }
}
.slide .thumbnail::before {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% - 130px);
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: var(--background-color-1);
  box-shadow: var(--shadow-white-3);
  border-radius: 6px;
}

.slide .thumbnail .inner {
  text-align: center;
}

.slide .thumbnail .inner img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.slide.slider-style-1 {
  padding-top: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide.slider-style-1 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .slide.slider-style-1 {
    padding-top: 100px;
  }
}
/* .slide.slider-style-1 .content {
  margin-top: 0;
} */
/* home vedio */
/* .fashion-designer-inner h1.title {
  font-size: 120px !important;
  line-height: 120px !important;
  color: #b79685 !important;
} */
.slide.slider-style-4 {
  height: 100vh;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .slide.slider-style-4 {
    height: 80vh;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide.slider-style-4 {
    height: auto;
    padding: 150px 0;
  }
}
@media only screen and (max-width: 767px) {
  .slide.slider-style-4 {
    height: auto;
    padding: 150px 0;
    background-position: 80%;
  }
}
.slide.slider-style-4 .content {
  margin-top: 0;
}

.slide.slider-style-4 .content .social-share-inner-left ul li a {
  box-shadow: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide.slider-style-4.instructor-fitness .content .inner p.discs {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .slide.slider-style-4.instructor-fitness .content .inner p.discs {
    width: 100%;
  }
}
/*---------------------------
    Service Area Styles
-----------------------------*/
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

/*=====================
    Skill Area
========================*/
/*=========================
    Progress Bar Styles
==========================*/
/*---------------------------
    Testimonial Area Styles
-----------------------------*/
.rn-testimonial {
  padding: 30px 15px;
}

.testimonial-style-2 .testimonial-inner {
  padding: 25px 30px;
  box-shadow: var(--shadow-1);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-style-2 .testimonial-inner {
    padding: 20px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-style-2 .testimonial-inner {
    padding: 20px;
  }
}
.testimonial-style-2 .testimonial-inner::before {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  top: 0;
  left: 0;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  z-index: -1;
}

.testimonial-style-2 .testimonial-inner:hover::before {
  opacity: 1;
}

.rn-client-area .section-title {
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .rn-client-area .section-title {
    text-align: center !important;
  }
}
/*------------------------------
    Client Single Card
--------------------------------*/
.client-card {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-top: -30px;
}

@media only screen and (max-width: 479px) {
  .client-card {
    padding: 0 20px;
  }
}
.client-card .main-content {
  margin-top: 30px;
  flex-basis: 33.33%;
  padding: 0 15px;
}

@media only screen and (max-width: 767px) {
  .client-card .main-content {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .client-card .main-content {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 479px) {
  .client-card .main-content {
    flex-basis: 100%;
  }
}
.client-card .main-content .inner {
  background: var(--background-color-1);
  box-shadow: var(--shadow-1);
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

.client-card .main-content .inner::after {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 6px;
  top: 0;
  left: 0;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  z-index: -1;
  border-radius: 8px;
}

.client-card .main-content .inner:hover::after {
  opacity: 1;
}

.client-card .main-content .thumbnail {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  background-color: var(--color-white);
}

.client-card .main-content .thumbnail a {
  display: block;
}

.client-card .main-content .thumbnail a img {
  max-height: 90px;
}

.client-card .main-content .seperator {
  position: relative;
  z-index: 2;
}

.client-card .main-content .seperator::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a1d23;
  z-index: -1;
}

.client-card .main-content .client-name {
  padding: 16px;
  color: #7c838e;
}

.client-card .main-content .client-name a {
  transition: var(--transition);
  color: #7c838e;
}

.client-card .main-content .client-name a:hover {
  color: var(--color-primary);
}

.rn-client-style-2 .skill-style-1 {
  margin-bottom: 0;
  margin-top: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.rn-client-style-2 .client-card .main-content .client-name a p{
  font-size: 18px;
  color: var(--color-white);
}

.rn-client-style-2 .client-card .main-content .client-name a:hover {
  color: var(--color-primary);
}

.rn-client-style-2 .client-card {
  justify-content: center;
  margin-top: 20px;
  max-height: 720px;
  overflow-y: auto; /* Enable vertical scrolling */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-client-style-2 .client-card {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .rn-client-style-2 .client-card {
    margin-top: 15px;
  }
}
.rn-client-style-2 .client-card .main-content {
  flex-basis: 25%;
}

@media only screen and (max-width: 767px) {
  .rn-client-style-2 .client-card .main-content {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .rn-client-style-2 .client-card .main-content {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 479px) {
  .rn-client-style-2 .client-card .main-content {
    flex-basis: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-client-style-2 .client-card .main-content {
    flex-basis: 33%;
  }
}
.rn-client-style-2 .client-card .main-content .thumbnail img {
  height: auto;
}

/*---------------------------
    Pricing Area Styles
-----------------------------*/
/*---------------------------
    Contact Area Styles
-----------------------------*/
.contact-about-area {
  padding: 30px;
  box-shadow: var(--shadow-1);
  border-radius: 10px;
  background-color: #212428;
  height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-about-area {
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-about-area {
    margin-bottom: 50px;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .contact-about-area {
    margin-bottom: 0;
    padding: 50px 20px;
    height: auto;
  }
}
.contact-about-area .thumbnail {
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 10px;
}

.contact-about-area .thumbnail img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.contact-about-area .title-area {
  margin-bottom: 15px;
}

.contact-about-area .title-area h4.title {
  font-size: 29px;
  line-height: 44px;
  color: var(--color-white);
  margin-bottom: 9px;
}

@media only screen and (max-width: 479px) {
  .contact-about-area .title-area h4.title {
    font-size: 20px;
  }
}
.contact-about-area .description {
  margin-bottom: 39px;
}

.contact-about-area .description p {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  font-family: var(--font-primary);
  line-height: 30px;
  display: inline-block;
  margin-bottom: 20px;
}

.contact-about-area .description span {
  display: block;
}

@media only screen and (max-width: 767px) {
  .contact-about-area .description span {
    font-size: 16px;
  }
}
.contact-about-area .description span a {
  transition: var(--transition);
  position: relative;
  color: var(--color-lightn);
  font-weight: 400;
}

.contact-about-area .description span a::before {
  content: "";
  position: absolute;
  width: 0%;
  background-color: var(--color-primary);
  height: 1px;
  left: 0;
  bottom: 2px;
  transition: var(--transition);
  z-index: 10;
}

.contact-about-area .description span a:hover {
  color: var(--color-primary);
}

.contact-about-area .description span a:hover::before {
  width: 100%;
}

.contact-about-area .social-area .name {
  font-size: 14px;
  font-family: var(--font-secondary);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 8px;
}

.contact-about-area .social-area .social-icone a {
  margin-top: 24px;
  width: 61px;
  height: 61px;
  line-height: 57px;
  margin-right: 15px;
  box-shadow: var(--shadow-1);
  border-radius: 6px;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

@media (max-width: 575.98px) {
  .contact-about-area .social-area .social-icone a {
    margin-right: 5px;
  }
}
.contact-about-area .social-area .social-icone a::before {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 6px;
  top: 0;
  left: 0;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  z-index: -1;
}

.contact-about-area .social-area .social-icone a:hover {
  transform: translateY(-5px);
}

.contact-about-area .social-area .social-icone a:hover::before {
  opacity: 1;
}

.contact-about-area:hover .thumbnail img {
  transform: scale(1.1);
}

.contact-form-wrapper {
  box-shadow: var(--shadow-1);
  padding: 30px;
  border-radius: 10px;
  margin-left: 20px;
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-wrapper {
    margin: 0;
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form-wrapper {
    margin: 0;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .contact-form-wrapper {
    padding: 20px;
  }
}
.contact-form-wrapper label {
  font-size: 12px;
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  margin-bottom: 14px;
  text-align: left;
  display: block;
}

.contact-form-wrapper input {
  background-color: #191b1e;
  border-radius: 6px;
  height: 55px;
  transition: var(--transition);
  border: 2px solid #191b1e;
  padding: 0 15px;
  font-size: 14px;
  font-family: var(--font-secondary);
  color: var(--color-lightn);
  box-shadow: var(--inner-shadow);
  letter-spacing: 1px;
}

@media only screen and (max-width: 479px) {
  .contact-form-wrapper input {
    margin-bottom: 15px;
  }
}
.contact-form-wrapper input:focus {
  background-color: #191b1e;
  color: var(--color-light);
  border-color: var(--color-primary);
  box-shadow: none;
}

.contact-form-wrapper textarea {
  min-height: 235px;
  background-color: #191b1e;
  border-radius: 6px;
  padding: 0;
  transition: var(--transition);
  border: 2px solid #191b1e;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 18px;
  font-family: var(--font-secondary);
  color: var(--color-lightn);
  box-shadow: var(--inner-shadow);
  letter-spacing: 1px;
  resize: none;
}

@media only screen and (max-width: 767px) {
  .contact-form-wrapper textarea {
    min-height: 150px;
  }
}
.contact-form-wrapper textarea:focus {
  border-color: var(--color-primary);
  box-shadow: none;
}

.contact-form-wrapper .introduce {
  display: flex;
  justify-content: space-between;
}

.contact-form-wrapper .introduce input {
  width: 100%;
}

@media only screen and (max-width: 479px) {
  .contact-form-wrapper .rn-btn {
    display: block;
    text-align: center;
  }
}
.rn-about-area .image-area {
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-1);
  margin-right: 20px;
}

@media only screen and (max-width: 479px) {
  .rn-about-area .image-area {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rn-about-area .image-area {
    padding: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-about-area .image-area {
    margin-right: 0;
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .rn-about-area .image-area {
    margin-right: 0;
    padding: 15px;
  }
}
.rn-about-area .image-area .thumbnail {
  overflow: hidden;
  border-radius: 8px;
}

.rn-about-area .image-area .thumbnail img {
  border-radius: 8px;
  transition: var(--transition);
  width: 100%;
}

.rn-about-area .image-area .thumbnail img:hover {
  transform: scale(1.08);
}

/* .rn-about-area .contant {
  top: 50%;
  position: relative;
  transform: translateY(-50%);
} */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-about-area .contant {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .rn-about-area .contant {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 575px) {
  .rn-about-area .contant {
    padding: 0 10px;
    padding-top: 16px;
  }
}
.rn-about-area .contant .discription {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-white);
  display: -webkit-box;

}
.rn-about-area .contant .discription p{
  margin-bottom: 20px;
}

.rn-about-area .contant .discription.expanded {
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
}
.rn-about-area .contant .counter .count_title {
  font-size: 22px;
}

@media only screen and (max-width: 575.98px) {
 
  .rn-about-area .contant .counter .count_title {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1199px) {
  .rn-about-area .contant .discription {
    line-height: 26px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rn-about-area .contant .discription {
    margin-bottom: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .rn-about-area .contant .discription {
    padding-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .rn-about-area .contant .discription {
    line-height: 26px;
    text-align: center;
  }
}
.contant .rn-btn{
    width: fit-content;
}

.rn-about-area .contant .discription:nth-child(2) {
  margin-bottom: 20px;
  margin-top: 23px;
  -webkit-line-clamp: 9;
-webkit-box-orient: vertical;
overflow: hidden;
position: relative;
}

@media only screen and (max-width: 1199px) {
  .rn-about-area .contant .discription:nth-child(2) {
    line-height: 26px;
    margin-bottom: 10px;
  }
}
.rn-about-area .rn-btn {
  padding: 18px 35px;
}

@media only screen and (max-width: 575px) {
  .rn-about-area .rn-btn {
    margin: auto;
    display: block;
    text-align: center;
  }
}
.skill-style-1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: -40px;
  margin-right: -40px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .skill-style-1 {
    margin-top: 33px;
  }
}
/*---------------------------
    Contact Area Styles
-----------------------------*/
/*-----------------------
    Footer Style Two
--------------------------*/
.footer-style-2 .copyright .description {
  color: var(--color-body);
  font-size: 18px;
}

@media only screen and (max-width: 575px) {
  .footer-style-2 .copyright .description {
    padding: 0 44px;
  }
}
@media only screen and (max-width: 479px) {
  .footer-style-2 .copyright .description {
    padding: 0 30px;
  }
}
.footer-style-2 .copyright .description a {
  color: var(--color-body);
  transition: var(--transition);
  position: relative;
}

.footer-style-2 .copyright .description a::after {
  content: "";
  position: absolute;
  width: 70%;
  background-color: var(--color-primary);
  height: 0px;
  left: 0;
  top: 13px;
  transition: var(--transition);
  z-index: -1;
}

.footer-style-2 .copyright .description a:hover {
  color: var(--color-white);
}

.footer-style-2 .copyright .description a:hover::after {
  height: 12px;
}

.footer-style-2 .logo-thumbnail {
  margin-bottom: 20px;
}

.footer-style-2 .logo-thumbnail img {
  max-width: 100%;
}

/*---------------------------
    Portfolio Area Styles
-----------------------------*/
.rn-portfolio,
.rn-blog {
  text-align: left;
  padding: 30px;
  position: relative;
  border-radius: 20px;
  background: var(--background-color-1);
  box-shadow: var(--shadow-1);
  position: relative;
  z-index: 1;
  height: 100%;
  transition: 0.5s all ease-in-out;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-portfolio,
  .rn-blog {
    padding: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .rn-portfolio,
  .rn-blog {
    padding: 20px;
  }
}
.rn-portfolio .inner .thumbnail a,
.rn-blog .inner .thumbnail a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  
}

.rn-portfolio .inner .thumbnail a img,
.rn-blog .inner .thumbnail a img {
  width: 100%;
  transition: var(--transition);
  height: auto;
  object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-portfolio .inner .thumbnail a img,
  .rn-blog .inner .thumbnail a img {
    height: inherit;
  }
}
@media only screen and (max-width: 479px) {
  .rn-portfolio .inner .thumbnail a,
  .rn-blog .inner .thumbnail a {
    display: inline-flex;
  }
}
.rn-portfolio .inner .content,
.rn-blog .inner .content {
  padding-top: 18px;
}

.rn-portfolio .inner .content .category-info,
.rn-blog .inner .content .category-info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.rn-portfolio .inner .content .category-info .category-list,
.rn-blog .inner .content .category-info .category-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.rn-portfolio .inner .content .category-info .category-list p,
.rn-blog .inner .content .category-info .category-list a {
  color: var(--color-primary);
  font-weight: 500;
  font-family: "Helvetica", sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.rn-blog .inner .content .category-info .meta span {
  color: var(--color-lightn);
  font-weight: 500;
  font-family: var(--font-primary);
  font-size: 13px;
}

.rn-portfolio .inner .content .title,
.rn-blog .inner .content .title {
  margin: 0;
}

.rn-testimonial .text .title,
.rn-portfolio .inner .content .title h4,
.rn-blog .inner .content .title h4 {
  transition: var(--transition);
  color: var(--color-white);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  /* display: inline-block; */
}

@media only screen and (max-width: 479px) {
  .rn-portfolio .inner .content .title a,
  .rn-blog .inner .content .title a {
    font-size: 20px;
    line-height: 30px;
  }
}
.rn-portfolio .inner .content .title a i,
.rn-blog .inner .content .title a i {
  font-size: 0;
  position: relative;
  top: 10px;
  transition: var(--transition);
  opacity: 0;
}

.rn-portfolio .inner .content .title:hover h4,
.rn-blog .inner .content .title:hover h4 {
  color: var(--color-primary);
}

.rn-portfolio .inner .content .title:hover a i,
.rn-blog .inner .content .title:hover a i {
  color: var(--color-primary);
  top: 3px;
  opacity: 1;
  font-size: 23px;
}

.rn-portfolio::before,
.rn-blog::before {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  top: 0;
  left: 0;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  z-index: -1;
}

.rn-portfolio:hover::before,
.rn-blog:hover::before {
  opacity: 1;
}

.rn-portfolio:hover .thumbnail a img,
.rn-blog:hover .thumbnail a img {
  transform: scale(1.1);
}

.backto-top > div {
  position: fixed;
  bottom: 50px;
  right: 30px;
  cursor: pointer;
  z-index: 999;
  width: 50px;
  height: 50px;
  line-height: 46px;
  border-radius: 50%;
  background-color: #212428;
  text-align: center;
  z-index: 999 !important;
  box-shadow: var(--shadow-1);
}

@media only screen and (max-width: 575px) {
  .backto-top > div {
    bottom: 30px;
  }
}
.backto-top > div:hover::after {
  opacity: 1;
}

.backto-top > div::after {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  z-index: -1;
}

.slick-arrow-style-one .slick-arrow {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  opacity: 1;
  transition: opacity 0.15s ease;
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  background-color: #212428;
  left: -30px;
  border: 0;
  z-index: 2;
}

.slick-arrow-style-one .next-arrow.slick-arrow {
  left: auto;
  right: -30px;
}

.rn-header.header--fixed.rn-d-none {
  display: none;
}

.rn-header.header--fixed.sticky {
  background-color: rgba(33, 36, 40, 0.8705882353);
  box-shadow: var(--shadow-1);
  position: fixed;
  backdrop-filter: blur(15px);
  top: 0;
  display: block;
}

.header-wrapper .header-right svg {
  color: var(--color-primary);
}

.popup-mobile-menu.menu-open {
  visibility: visible;
  opacity: 1;
}

.popup-mobile-menu.menu-open .inner {
  opacity: 1;
  left: 0;
  overflow-y: auto;
}

.popup-mobile-menu.menu-open .inner .content {
  display: flex;
  flex-direction: column;
}

.popup-mobile-menu.menu-open .inner .content .primary-menu {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  padding-left: 0;
}

.popup-mobile-menu.menu-open .inner .content .primary-menu li {
  display: block;
  margin: 8px 0;
}

.popup-mobile-menu.menu-open .inner .content .primary-menu li a {
  color: var(--color-lightn);
  position: relative;
  transition: var(--transition);
  font-size: 14px;
  font-weight: var(--s-regular);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  margin: 0;
  display: inline;
  font-weight: 500;
}

.popup-mobile-menu .inner .menu-top .menu-header .close-button .close svg {
  color: var(--color-primary);
  width: 23px;
  height: auto;
}

[data-overlay]:before, [data-black-overlay]:before, [data-white-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

[data-black-overlay]:before {
  background-color: #130d0d;
}

[data-overlay="2"]:before, [data-black-overlay="2"]:before, [data-white-overlay="2"]:before {
  opacity: 0.2;
}

.fd-lorem {
  font-size: 16px !important;
  letter-spacing: 4px;
  color: var(--color-lighten) !important;
  margin-top: 35px !important;
}



/*---------------------------
    white version home
-----------------------------*/


/*# sourceMappingURL=style3.css.map */
