/****************
CSS Table of contents
:::::::::::::::::::::
1. Global styles
2. Header styles
3. slider one styles
4. welcome message
5. service widget
6. About us section
7. Video box
8. Portfolio styles
9. why choose section
10. Counter box
11. Why choose section
12. cta section
13. Testimonials slider
14. Blog section
15. partner carousel
16. Footer styles
17. home 2 styles
18. Service styles
19. Line progress
20. Responsive styles
*************/
/* 1. Global styles  */
:root {
  --theme-primary: #538de4;
  --theme-secondary: #031026;
  --theme-heading: #031026;
  --theme-content: #7b8391;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: var(--theme-content);
  font-size: 1rem;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}
p {
  margin-bottom: 1.5em;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  margin: 0;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
/* Elements
--------------------------------------------- */
body {
  background: #fff;
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ol {
  margin: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li>ul,
li>ol {
  margin-bottom: 0;
  margin-left: .2em;
  padding-left: 0.5em;
}
dt {
  font-weight: 700;
}
dd {
  margin: 0 1.5em 1.5em;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}
img {
  height: auto;
  max-width: 100%;
}
figure {
  margin: 1em 0;
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
/* #Table
================================================== */
table {
  margin: 0 0 20px 0;
  text-align: left;
  border: 1px solid;
  width: 100%;
}
thead th {
  font-weight: bold;
  text-transform: uppercase;
  background-color: #f7f7f7;
}
th,
td {
  padding: 7px;
  vertical-align: middle;
  border: 1px solid #ededed;
}
/* Links
--------------------------------------------- */
a:focus {
  outline: 0;
}
a:hover,
a:active {
  outline: 0;
}
/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}
select {
  border: 1px solid #ccc;
}
textarea {
  width: 100%;
}
/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}
/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}
.page {
  margin: 0;
}
.updated:not(.published) {
  display: none;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
#cancel-comment-reply-link {
  font-size: 18px;
  margin-left: 20px;
  font-weight: 600;
}
/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
  width: 100%;
  height: 60px;
  padding: 10px;
}
/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}
/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.aligncenter .wp-caption-text {
  text-align: center;
}
img[class*="wp-image-"] {
  margin-top: 10px;
  margin-bottom: 10px;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0 none;
  max-width: 100%;
}
/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
  display: block;
}
/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}
/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}
/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}
.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}
html {
  color: #031026;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}
.ps-content h1,
.ps-content h2,
.ps-content h3,
.ps-content h4,
.ps-content h5,
.ps-content h6 {
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
}
.site-wrapper {
  position: relative;
  overflow: hidden;
}
a {
  color: var(--theme-primary);
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
.hidden,
[hidden] {
  display: none !important;
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " ("attr(href) ")";
  }
  abbr[title]::after {
    content: " ("attr(title) ")";
  }
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* 2. Header styles  */
.header-top {
  background: var(--theme-secondary);
  color: #9ba4b2;
  padding: 0;
  font-size: 14px;
  line-height: 1;
}
.htc-block i {
  color: var(--theme-primary);
  margin-right: 10px;
}
.htc-block {
  padding: 13px 30px;
  border-right: 1px solid #283448;
  display: flex !important;
  align-items: center !important;
}
.htc-block:first-child {
  padding-left: 0;
}
.htc-block:last-child {
  border-right: 0px solid #283448;
}
.hts-block ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.hts-block ul li {
  padding: 12px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.hts-block ul li a,
.hts-block ul li a:visited {
  font-size: 14px;
  color: #fff;
}
.hts-block ul li a:hover {
  text-decoration: none;
  color: var(--theme-primary);
}
/* header menu  */
.header-menu {
  margin-left: auto;
}
.micro-desktop-menu .micro-nav-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.micro-desktop-menu .micro-nav-inner>li>a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 25px 20px;
  position: relative;
  text-transform: uppercase;
}
.micro-desktop-menu .micro-nav-inner>li>a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: -webkit-transform .3s cubic-bezier(.165, .84, .44, 1);
  transition: -webkit-transform .3s cubic-bezier(.165, .84, .44, 1);
  -o-transition: transform .3s cubic-bezier(.165, .84, .44, 1);
  transition: transform .3s cubic-bezier(.165, .84, .44, 1);
  transition: transform .3s cubic-bezier(.165, .84, .44, 1), -webkit-transform .3s cubic-bezier(.165, .84, .44, 1);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.micro-desktop-menu ul.micro-nav-inner>li:hover>a::after,
.micro-desktop-menu ul.micro-nav-inner>li:active>a::after,
.micro-desktop-menu ul.micro-nav-inner>li:focus>a::after,
.micro-desktop-menu ul.micro-nav-inner>li.current_page_item>a::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.micro-desktop-menu ul.micro-nav-inner {
  margin-bottom: 0;
  padding: 0;
}
@media (min-width: 991.98px) {
  .micro-desktop-menu ul.micro-nav-inner>li {
    margin: 0;
    padding: 0;
    position: relative;
    list-style: none;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    min-height: 90px;
  }
}
.micro-desktop-menu ul.micro-nav-inner a {
  text-decoration: none;
}
.micro-desktop-menu .micro-nav-inner .active a {
  color: var(--theme-primary);
}
@media (max-width: 1199.98px) {
  .micro-desktop-menu ul.micro-nav-inner>li>a {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header-search-btn {
    display: none !important;
  }
  .micro-desktop-menu {
    margin-left: auto;
  }
}
@media (max-width: 1399.98px) {
  .micro-desktop-menu .header-contact-search {
    display: none !important;
  }
  .micro-desktop-menu .header-style-2 .header-menu {
    margin-left: auto !important;
  }
}
.micro-desktop-menu .menu-item-has-children>a {
  position: relative;
}
.micro-desktop-menu ul.micro-nav-inner>li:last-child>a:before {
  display: none;
}
.micro-desktop-menu ul.micro-nav-inner>li:hover>a,
.micro-desktop-menu ul.micro-nav-inner>li:active>a,
.micro-desktop-menu ul.micro-nav-inner>li:focus>a,
.micro-desktop-menu ul.micro-nav-inner>li.current_page_item>a {
  color: var(--theme-primary);
}
.micro-desktop-menu ul.micro-nav-inner>li:hover>a .menu-arrow,
.micro-desktop-menu ul.micro-nav-inner>li:active>a .menu-arrow,
.micro-desktop-menu ul.micro-nav-inner>li:focus>a .menu-arrow,
.micro-desktop-menu ul.micro-nav-inner>li.current_page_item>a .menu-arrow {
  bottom: -7px;
  opacity: 1;
}
.micro-desktop-menu ul.micro-nav-inner>li>.submenu-inner {
  border: 1px solid #F7EAE8;
}
.micro-desktop-menu ul.micro-nav-inner>li .submenu-inner {
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
}
.micro-desktop-menu ul.micro-nav-inner>li .submenu-inner,
.micro-desktop-menu ul.micro-nav-inner>li ul.submenu-inner {
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  position: absolute;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  top: 100%;
  z-index: 99;
  margin-top: 0px;
  margin-left: 0 !important;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  min-width: 250px;
  padding: 10px 0px;
  background: #fff;
  list-style-type: none;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.micro-desktop-menu ul.micro-nav-inner>li .submenu-inner li,
.micro-desktop-menu ul.micro-nav-inner>li ul.submenu-inner li {
  background: transparent;
  position: relative;
  text-align: left;
  padding: 0px 30px;
}
@media (max-width: 991.98px) {
  .micro-desktop-menu ul.micro-nav-inner>li .submenu-inner li,
  .micro-desktop-menu ul.micro-nav-inner>li ul.submenu-inner li {
    border-bottom: 0;
  }
  #secondary {
    padding-left: 0px !important;
    margin-top: 60px;
  }
}
.micro-desktop-menu .megamenu-wrap-inner li:last-child {
  border-bottom: none;
}
.micro-desktop-menu ul.micro-nav-inner>li .submenu-inner:not(.megamenu-wrap-inner) li:last-child,
.micro-desktop-menu ul.micro-nav-inner>li ul.submenu-inner:not(.megamenu-wrap-inner) li:last-child {
  border-bottom: none;
}
.micro-desktop-menu ul.micro-nav-inner>li .submenu-inner li a,
.micro-desktop-menu ul.micro-nav-inner>li ul.submenu-inner li a {
  display: block;
  line-height: 1.4;
  padding: 14px 0;
  font-size: 15px;
  text-transform: uppercase;
  position: relative;
  color: var(--theme-content);
  border-bottom: 1px solid #d9dfe9;
}
.micro-desktop-menu .submenu-inner>li:last-child>a {
  border-bottom: 0px solid #d9dfe9 !important;
}
.micro-desktop-menu .megamenu-wrap-inner>li>a {
  border-bottom: 0px solid #d9dfe9 !important;
}
.micro-desktop-menu>ul>li>ul>li.has-dropdown>a::after {
  font-family: 'icomoon';
  content: "\e919";
  position: absolute;
  right: 20px;
  top: 14px;
  display: block;
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  z-index: 6;
}
.micro-desktop-menu ul.micro-nav-inner>li .submenu-inner li a:hover,
.micro-desktop-menu ul.micro-nav-inner>li .submenu-inner li a:focus,
.micro-desktop-menu ul.micro-nav-inner>li .submenu-inner li a:active,
.micro-desktop-menu ul.micro-nav-inner>li ul.submenu-inner li a:hover,
.micro-desktop-menu ul.micro-nav-inner>li ul.submenu-inner li a:focus,
.micro-desktop-menu ul.micro-nav-inner>li ul.submenu-inner li a:active {
  color: var(--theme-primary);
}
.micro-desktop-menu ul.micro-nav-inner>li .submenu-inner li ul.submenu-inner,
.micro-desktop-menu ul.micro-nav-inner>li ul.submenu-inner li ul.submenu-inner {
  position: absolute;
  left: 100% !important;
  top: 0;
}
.micro-desktop-menu ul.micro-nav-inner>li .submenu-inner li:hover>ul.submenu-inner,
.micro-desktop-menu ul.micro-nav-inner>li ul.submenu-inner li:hover>ul.submenu-inner {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.micro-desktop-menu ul.micro-nav-inner>li:hover>.submenu-inner {
  top: 100%;
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
  height: auto;
  opacity: 1;
  filter: alpha(opacity=100);
  display: block;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.micro-desktop-menu ul.micro-nav-inner>li:last-child:hover>.submenu-inner,
.micro-desktop-menu ul.micro-nav-inner>li:nth-last-child(2):hover>.submenu-inner {
  right: 0;
}
@media (max-width: 1600px) {
  .micro-desktop-menu ul.micro-nav-inner>li:last-child ul.submenu-inner li ul.submenu-inner,
  .micro-desktop-menu ul.micro-nav-inner>li:nth-last-child(2) ul.submenu-inner li ul.submenu-inner {
    right: 100%;
    left: auto;
  }
}
.micro-desktop-menu ul.micro-nav-inner>li.megamenu-parent {
  position: static !important;
}
.micro-desktop-menu ul.micro-nav-inner>li.megamenu-parent .megamenu-wrap-inner {
  width: 100%;
  max-width: 1170px;
  left: 0;
  background: #fff;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.micro-desktop-menu .megamenu-wrap-inner>li>a {
  font-size: 18px !important;
  font-weight: 600;
  color: #000 !important;
}
.micro-desktop-menu .megamenu-wrap-inner>li>a::after {
  content: none;
}
.micro-desktop-menu .megamenu-wrap-inner>li>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.micro-desktop-menu .megamenu-wrap-inner>li {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}
@media (max-width: 991.98px) {
  .micro-desktop-menu ul.micro-nav-inner>li.megamenu-parent .megamenu-wrap-inner ul.megamenu-sub>li>a {
    margin-top: 6px;
  }
}
.micro-desktop-menu ul.micro-nav-inner>li.megamenu-parent .megamenu-wrap-inner ul.megamenu-sub>li>a .caret {
  margin-left: 5px;
}
.micro-desktop-menu ul.micro-nav-inner>li.megamenu-parent .megamenu-wrap-inner ul.megamenu-sub>li .submenu-inner {
  background: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  position: static;
  padding: 0;
  min-width: 100%;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  transform: scale(1);
  visibility: visible;
}
.micro-desktop-menu ul.micro-nav-inner>li.megamenu-parent .megamenu-wrap-inner ul.megamenu-sub>li .submenu-inner li {
  list-style: none;
  border: none;
  padding: 0;
}
.micro-desktop-menu ul.micro-nav-inner>li.megamenu-parent .megamenu-wrap-inner ul.megamenu-sub>li .submenu-inner li:last-child {
  border: none;
}
.micro-desktop-menu ul.micro-nav-inner>li.megamenu-parent .megamenu-wrap-inner ul.megamenu-sub>li .submenu-inner li.menu-item-has-children>a {
  font-weight: 600;
}
.micro-desktop-menu ul.micro-nav-inner>li.megamenu-parent .megamenu-wrap-inner ul.megamenu-sub>li .submenu-inner li .submenu-inner {
  padding-left: 20px !important;
  display: block;
}
.micro-desktop-menu ul.micro-nav-inner>li.megamenu-parent:hover .megamenu-wrap-inner {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.megamenu-parent .megamenu-wrap-inner {
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
.megamenu-parent .widget {
  text-align: left;
  color: #3f3836;
}
.megamenu-parent .widget .widget-title,
.megamenu-parent .widget .widgettitle {
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 20px;
  padding: 0;
  border: none;
}
.megamenu-parent .widget ul {
  list-style: none;
  padding: 0;
}
.megamenu-parent .widget.widget-html ul li {
  line-height: 32px;
  padding: 5px 0;
}
.megamenu-parent .widget.widget-html ul li strong {
  color: #2c85ff;
  font-weight: 600;
}
.megamenu-parent .widget .product-block {
  margin-bottom: 10px;
}
.submenu-inner li>a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.submenu-inner li>a>span {
  background-color: var(--theme-primary);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 40px;
  top: -3px;
  position: relative;
}
/* 3. slider one styles  */
.swiper-container {
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-slide-active .slide-bg {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition: all 7000ms linear;
  -moz-transition: all 7000ms linear;
  -ms-transition: all 7000ms linear;
  -o-transition: all 7000ms linear;
  transition: all 7000ms linear;
}
.slide-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.container-full {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}
.slider-widget {
  overflow: hidden;
}
.slider-one .swiper-slide {
  height: auto !important;
}
.slider-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  align-items: center !important;
  display: flex !important;
}
.slider-content {
  padding: 250px 0;
  width: 100%;
  text-align: center;
}
.slide-intro {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: #fff;
  z-index: 1;
  position: relative;
  display: inline-block;
  background-color: var(--theme-heading);
  padding: 12px 45px;
  margin-bottom: 30px;
}
.slide-intro span {
  z-index: 1;
  position: relative;
  display: block;
}
.slide-intro span::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background-color: #3a9ce8;
}
.slide-intro span::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background-color: #3a9ce8;
}
.slide-heading {
  font-size: 120px;
  line-height: 0.85;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.theme-btn,
.theme-btn:visited {
  position: relative;
  display: inline-block;
  text-align: center;
  background: var(--theme-primary);
  color: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 26px 60px;
  z-index: 3;
  word-wrap: none;
  white-space: nowrap;
}
.theme-btn::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background: #4b80d1;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.theme-btn.elementor-size-small,
.theme-btn.elementor-size-small:visited {
  padding: 15px 40px;
  font-size: 14px;
  letter-spacing: 1.4px;
}
.black-btn {
  background: var(--theme-heading);
}
.black-btn::before {
  background: #1d283c;
}
.theme-btn:hover {
  color: #fff;
  text-decoration: none;
}
.theme-btn:hover::before {
  width: 100%;
}
.header-style-1 {
  z-index: 99;
  width: 100%;
}
.menu-button .theme-btn {
  padding: 16px 40px;
  font-size: 14px;
  letter-spacing: 1.4px;
}
.menu-button {
  line-height: 1;
}
.header-search-btn {
  margin-left: 10px;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.search-btn {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  margin-right: 30px;
  cursor: pointer;
}
.header-content {
  min-height: 90px;
  padding: 0px;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.elementor-swiper-button-next,
.elementor-swiper-button-prev {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-next {
  width: 50px;
  height: 170px;
  background: #fff;
  right: 0;
  opacity: 1;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.swiper-button-prev {
  width: 50px;
  height: 170px;
  background: #fff;
  left: 0;
  opacity: 1;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px;
  color: var(--theme-heading);
}
.slide-intro,
.slide-heading,
.slider-button,
.slide-descriptions {
  opacity: 0;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}
.swiper-slide-active .slide-intro {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}
.swiper-slide-active .slide-heading {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
.swiper-slide-active .slide-descriptions {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
.swiper-slide-active .slider-button {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 1700ms;
  -moz-transition-delay: 1700ms;
  -ms-transition-delay: 1700ms;
  -o-transition-delay: 1700ms;
  transition-delay: 1700ms;
}
.full-bar-search-wrap {
  position: fixed;
  top: 0;
  left: 0;
  background: #0e1b31;
  height: 100%;
  width: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
  -webkit-transform: translateY(-30%);
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  -o-transform: translateY(-30%);
  transform: translateY(-30%);
}
.full-bar-search-wrap.search-show {
  visibility: visible;
  opacity: 1;
  display: block;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.close-search::before {
  font-family: 'icomoon';
  font-style: normal;
  font-weight: 300;
  content: "\e960";
  font-size: 13px;
  color: #fff;
  position: absolute;
  right: 7px;
  top: 9px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #898989;
  border-radius: 50%;
}
.search-form-group {
  position: relative;
}
.full-bar-search-wrap .form-control {
  height: 100%;
  min-height: 60px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  background: transparent;
  border: none;
}
.search-form-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  max-width: 650px;
  height: 70px;
  line-height: 70px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.search-form-wrapper .search-form {
  position: relative;
}
.close.search-btn {
  z-index: 99;
  vertical-align: middle;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  background-color: transparent;
}
.search-submit {
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
  color: #fff;
  display: block;
  padding: 0px;
  line-height: 1;
  height: 60px;
}
.search-submit:focus,
.search-form-group .form-control:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.close-search {
  position: absolute;
  right: 50px;
  left: auto;
  top: 50px;
  color: #fff;
  cursor: pointer;
  width: 60px;
  margin-left: -25px;
}
.close-search:hover::before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* 4. welcome message  */
.welcome-widget {
  background: var(--theme-primary);
  padding: 88px 0;
  position: relative;
  color: #fff;
}
.welcome-desc {
  color: #e0ecff;
}
.welcome-widget::before {
  content: '';
  background: url(../img/welcome-bg.png);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.welcome-widget::after {
  content: '';
  position: absolute;
  left: -webkit-calc((100% - 1180px)/2);
  left: calc((100% - 1180px)/2);
  bottom: -40px;
  display: inline-block;
  width: 0;
  height: 0;
  z-index: 2;
  border-style: solid;
  border-width: 40px 110px 0 0;
  border-color: var(--theme-primary) transparent transparent transparent;
}
.welcome-intro {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 7px;
}
.welcome-heading {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: uppercase;
}
.welcome-desc {
  font-size: 18px;
  line-height: 34px;
}
/* 5. service widget  */
.services-section {
  padding: 120px 0 340px;
  background: #edf0f5;
}
.data-background {
  background-repeat: no-repeat;
  background-position: top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.sw-icon {
  font-size: 65px;
  color: var(--theme-primary);
  line-height: 1;
  display: inline-block;
}
.sw-icon>i {
  display: inline-block;
  line-height: 1;
}
.service-widget {
  padding: 50px;
  background: #fff;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -khtml-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -moz-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -ms-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -o-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
}
.service-widget::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  height: 20px;
  width: 100%;
  background: #edf0f5;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -khtml-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -moz-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -ms-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -o-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform-origin: center bottom;
  transition-delay: 0.2s;
}
.service-widget:hover::before {
  background: var(--theme-primary);
  animation-direction: alternate;
}
.sw-count {
  color: #edf0f5;
  font-size: 50px;
  position: absolute;
  right: 0;
  margin-right: 50px;
  font-weight: 100;
  line-height: 1;
}
.sw-title {
  margin: 15px auto 30px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  color: var(--theme-heading);
}
.sw-content {
  font-size: 18px;
  line-height: 1.7;
  color: var(--theme-content);
  font-weight: 500;
  margin-bottom: 25px;
}
.btn-grey {
  position: relative;
  display: inline-block;
  text-align: center;
  background: #edf0f5;
  color: var(--theme-content);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 17px 40px;
  z-index: 3;
}
.btn-grey::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background: #e1e5ea;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.btn-grey:hover::before {
  width: 100%;
  background: #4b80d1;
}
.btn-grey:hover {
  text-decoration: none;
  color: #fff;
  background: var(--theme-primary);
}
/* 6. About us section  */
.about-widget {
  position: relative;
}
.about-focus {
  background: var(--theme-primary);
  color: #fff;
  padding: 42px 60px 34px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  display: inline-block;
  position: absolute;
  top: 60px;
  left: -130px;
  max-width: 220px;
}
.about-image-box {
  margin-top: -220px;
  position: relative;
}
.foucs-icon {
  font-size: 64px;
  line-height: 1;
}
.foucs-icon i {
  display: block;
  line-height: 1;
}
.ex-year {
  font-size: 40px;
  line-height: 1;
  margin-top: 22px;
  margin-bottom: 5px;
  font-weight: 700;
}
.ex-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
}
.about-img-2 {
  position: absolute;
  margin-bottom: -110px;
  max-width: calc(100% - 240px);
  width: calc(100% - 240px);
  bottom: 0;
  left: 60px;
  -webkit-border-radius: 7px !important;
  -moz-border-radius: 7px !important;
  border-radius: 7px !important;
}
.about-img-2 img {
  -webkit-border-radius: 7px !important;
  -moz-border-radius: 7px !important;
  border-radius: 7px !important;
}
.about-content {
  background: #fff;
  margin-left: -150px;
  margin-top: -100px;
  padding: 97px 0px 100px 100px;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 7px !important;
  -moz-border-radius: 7px !important;
  border-radius: 7px !important;
}
.about-content::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: -1px;
  width: 2000px;
  height: 100%;
  background: #ffffff;
}
.section-intro {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--theme-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: 50px;
  line-height: 1.1;
  color: var(--theme-heading);
  font-weight: 700;
  margin: 5px auto 45px;
  text-transform: uppercase;
}
.about-info {
  font-size: 18px;
  line-height: 1.9;
  color: var(--theme-content);
  font-weight: 600;
  padding-left: 20px;
  border-left: 2px solid var(--theme-primary);
}
.af-icon {
  font-size: 60px;
  line-height: 1;
  color: var(--theme-primary);
  margin-right: 20px;
}
.af-icon>i {
  line-height: 1;
  display: block;
}
.af-title {
  color: var(--theme-heading);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.about-features {
  padding: 40px 0 35px;
  border-top: 1px solid #d9dfe9;
  border-bottom: 1px solid #d9dfe9;
}
.mt-50 {
  margin-top: 50px;
}
.about-shape-1 {
  position: absolute;
  left: 0;
}
.about-shape-2 {
  position: absolute;
  right: 100px;
  z-index: 3;
  margin-top: -100px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.phone-icon {
  min-width: 68px;
  width: 68px;
  height: 68px;
  font-size: 24px;
  line-height: 68px;
  color: var(--theme-primary);
  text-align: center;
  background: #edf0f5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-right: 20px;
}
.phone-title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--theme-content);
  display: block;
}
.phone-bumber {
  font-size: 26px;
  font-weight: 600;
  color: var(--theme-heading);
}
.ml-20 {
  margin-left: 20px;
}
/* 7. Video box  */
.video-box {
  background: var(--theme-primary);
  color: #fff;
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.video-box a,
.video-box a:visited {
  color: #fff;
  padding: 45px;
  font-size: 20px;
  line-height: 1;
  display: block;
}
a:hover {
  text-decoration: none;
}
.white-text {
  color: #fff;
}
.portfolio-header {
  padding: 120px 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}
.mb-60 {
  margin-bottom: 60px;
}
.dark-text,
.ph-details {
  color: #9ba4b2;
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
}
/* 8. Portfolio styles  */
.portfolio-header-details {
  position: relative;
  padding-bottom: 60px;
}
.portfolio-header-details::after {
  content: '';
  position: absolute;
  height: 1px;
  width: calc(100% - 60px);
  background: #384357;
  left: 0;
  bottom: 0;
}
.ph-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  text-transform: uppercase;
}
.ph-icon {
  font-size: 65px;
  line-height: 1;
  color: var(--theme-primary);
  margin-right: 20px;
}
.portfolio-carousel-block {
  position: relative;
  overflow: hidden;
}
.portfolio-item-overlay {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 50px;
  color: #ffffff;
  opacity: 0;
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 3;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.portfolio-item::after {
  content: '';
  position: absolute;
  height: 0px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: var(--theme-primary);
  opacity: 0.9;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  z-index: 1;
}
.portfolio-item:hover::after {
  height: 100%;
}
.portfolio-carousel-block {
  margin-left: -webkit-calc((100% - 1180px)/2);
  margin-left: calc((100% - 1180px)/2);
}
.portfolio-carousel-block {
  margin-top: -60px;
}
.portfolio-carousel-block img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.portfolio-block-category a,
.portfolio-block-category a:visited {
  color: #d7e6fd;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.portfolio-block-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0px !important;
}
.portfolio-more {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  color: var(--theme-heading);
  font-size: 24px;
  line-height: 68px !important;
  text-align: center;
  display: inline-block;
  position: absolute;
  right: 50px;
  top: 50px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.portfolio-more:hover {
  background: var(--theme-secondary);
  color: #fff;
}
.portfolio-item:hover .portfolio-more {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 3;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.portfolio-block-category {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #d7e6fd;
}
.portfolio-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background: var(--theme-heading);
  opacity: .2;
  margin: 0px 3px;
}
[role=button]:focus {
  outline: -webkit-focus-ring-color auto 0px;
}
.portfolio-pagination .swiper-pagination-bullet-active {
  background: var(--theme-primary);
  opacity: 1;
}
.portfolio-carousel-footer {
  padding: 35px 0px;
  border-bottom: 1px solid #d9dfe9;
}
.btn-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  vertical-align: top;
  color: var(--theme-content);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25em;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.btn-underline:hover {
  text-decoration: none;
  color: var(--theme-primary);
}
.btn-underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid var(--theme-heading);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.btn-underline:hover::before {
  border-color: var(--theme-primary);
  transform: scaleX(0.8);
}
/* 9. why choose section  */
.why-choose-features {
  border-left: 2px solid var(--theme-primary);
  padding-left: 30px;
}
.hc-features {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-heading);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.why-choose-features {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-content);
}
.why-choose-section {
  padding: 120px 0;
  position: relative;
}
.why-choose-section::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/large-lines.png) no-repeat;
  background-position: right bottom;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.portfolio-carousel-footer>.container {
  margin-left: 0px;
}
/* 10. Counter box  */
.counter-icon {
  height: 100px;
  background: #fff;
  font-size: 60px;
  line-height: 1;
  text-align: center;
  color: var(--theme-primary);
  display: inline-block;
  padding: 20px;
  margin-bottom: 60px;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -khtml-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -moz-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -ms-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -o-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.counter-icon::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: var(--theme-primary);
  bottom: -33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.counter-block {
  text-align: center;
  margin-top: -60px;
  position: relative;
  padding: 0px 60px 60px;
}
.counter-block:hover .counter-icon {
  background: var(--theme-primary);
  color: #fff;
}
.counter-number {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  color: var(--theme-heading);
}
.fun-facts-section {
  position: relative;
}
.fun-facts-inner {
  background: var(--theme-heading);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.counter-title {
  color: #9ba4b2;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-top: 10px;
}
.trust-section {
  padding: 230px 0px 120px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
/* 11. Why choose section  */
.why-chhose-2 {
  padding: 120px 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  position: relative;
}
.why-choose-img {
  position: relative;
  margin-left: 60px;
}
.why-choose-img-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 60px;
  height: 100%;
  z-index: 1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  padding: 80px 0px;
}
.why-choose-img-caption .img-caption-inner {
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.img-caption-inner span {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-heading);
  text-transform: uppercase;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  min-width: 600px;
  text-align: center;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  margin-right: -7px;
}
.horizontal-dots {
  position: absolute;
  bottom: 60px;
  left: 5%;
}
.slide-top {
  -webkit-animation: slide-top 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse both;
  animation: slide-top 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse both;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.list-item ul,
.list-item-2 ul {
  list-style: none;
  padding-left: 0;
}
.list-item ul li {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
}
.list-item ul li .list-icon {
  color: var(--theme-primary);
  margin-right: 10px;
}
.list-item-2 ul li {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  margin-bottom: 20px;
}
.list-item-2 ul li .list-icon {
  color: #fff;
  background: var(--theme-primary);
  height: 50px;
  width: 50px;
  min-width: 50px;
  text-align: center;
  line-height: 50px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
  margin-right: 10px;
}
.list-item-2 ul li {
  font-size: 20px;
  line-height: 26px;
  color: var(--theme-heading);
  text-transform: uppercase;
  font-weight: 600;
}
.why-choose-details {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-content);
}
.circle-outer {
  position: relative;
}
.counter-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 100%;
  font-size: 30px;
  color: var(--theme-primary);
  font-weight: 600;
  line-height: 60px;
  text-transform: uppercase;
  margin-top: -30px;
}
.circle-outer {
  text-align: center;
  max-width: 110px;
  margin-right: 20px;
}
.count-title {
  font-size: 18px;
  color: var(--theme-heading);
  font-weight: 600;
}
.btn-sm {
  padding: 20px 40px;
}
/* 12. cta section  */
.cta-small-title {
  font-size: 18px;
  color: var(--theme-content);
  font-weight: 600;
}
.cta-phone {
  font-size: 18px;
  color: var(--theme-heading);
  font-weight: 700;
}
.cta-small {
  position: absolute;
  background: #fff;
  padding: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -khtml-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -moz-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -ms-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -o-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
}
.cta-small-btn {
  margin-left: 20px;
}
/* 13. Testimonials slider  */
.testimonials-section {
  padding: 180px 0px 120px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}
.testimonial-style-1 {
  position: relative;
  background: #fff;
  padding: 60px;
  -webkit-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -khtml-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  z-index: 2;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  -webkit-border-radius: 5px;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius: 5px;
  -moz-border-radius-bottomleft: 0;
  border-radius: 5px;
  border-bottom-left-radius: 0;
}
.testimonial-style-1::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -225px;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: url(../img/testimonials-lines.png) no-repeat;
  opacity: 0;
  -webkit-transform: translateY(-180px);
  -moz-transform: translateY(-180px);
  -ms-transform: translateY(-180px);
  -o-transform: translateY(-180px);
  transform: translateY(-180px);
}
.testimonial-style-1:hover::before,
.swiper-slide-active .testimonial-style-1::before {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  -webkit-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
}
.testimonial-style-1:hover,
.swiper-slide-active>.testimonial-style-1 {
  background: var(--theme-primary);
  color: #e0ecff;
}
.testimonial-meta{
  display: flex;
  align-items: center;
}
.tu-photo {
  max-width: 50px;
  margin-right: 20px;
}
.testimonial-content {
  font-size: 20px;
  line-height: 36px;
  font-weight: 500;
  color: var(--theme-content);
  display: block;
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}
.testimonial-content::after {
  content: '';
  position: absolute;
  background: var(--theme-primary);
  width: 2px;
  height: 100%;
  left: 0;
  bottom: 0;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}
.testimonial-style-1:hover .testimonial-content::after,
.swiper-slide-active .testimonial-content::after {
  background: #ffffff;
}
.tu-name {
  font-size: 18px;
  line-height: 20px;
  color: var(--theme-primary);
  font-weight: 600;
  text-transform: uppercase;
}
.tu-role {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--theme-content);
  text-transform: uppercase;
}
.testimonial-style-1:hover .tu-role,
.testimonial-style-1:hover .tu-name,
.testimonial-style-1:hover .testimonial-content,
.swiper-slide-active .tu-role,
.swiper-slide-active .tu-name,
.swiper-slide-active .testimonial-content {
  color: #fff;
}
.testimonials-slider {
  padding: 40px 0px;
}
.testimonial-style-1::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: -40px;
  left: 0;
  -webkit-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -khtml-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.testimonial-style-1:hover::after,
.swiper-slide-active .testimonial-style-1::after {
  border-color: var(--theme-primary) transparent transparent transparent;
}
.testi-circle {
  position: absolute;
  bottom: 0;
  right: 0;
}
.testi-circle::after {
  content: '';
  position: absolute;
  z-index: 4;
  width: 168px;
  height: 168px;
  bottom: 0;
  right: 0;
  background: url(../img/circle-shape.png) no-repeat;
  opacity: 0;
  -webkit-transform: translateY(180px);
  -moz-transform: translateY(180px);
  -ms-transform: translateY(180px);
  -o-transform: translateY(180px);
  transform: translateY(180px);
}
.testimonial-style-1:hover .testi-circle::after,
.swiper-slide-active .testi-circle::after {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}
.cta-bar {
  background: var(--theme-primary);
  position: relative;
  padding: 100px 0;
}
.cta-bar::before {
  content: '';
  background: url(../img/welcome-bg.png);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* 14. Blog section  */
.blog-section {
  padding: 120px 0;
  background-color: #fff;
}
.post-title-block {
  font-size: 24px;
  font-size: 600;
  color: var(--theme-heading);
}
.post-title-block a,
.post-title-block a:visited {
  color: var(--theme-heading);
}
.post-read-more {
  border-top: 1px solid #d9dfe9;
  padding: 25px 0;
  margin-top: 33px;
  line-height: 1;
}
.post-thumb-block {
  position: relative;
  overflow: hidden;
  background: var(--theme-heading);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.post-thumb-block img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.blog-block:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.has-post-thumbnail .post-content-block {
  margin-top: -70px;
}
.post-content-block {
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  z-index: 2;
  margin-bottom: 30px;
  position: relative;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.post-date {
  padding: 15px 25px;
  background: var(--theme-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.post-date a,
.post-date a:visited {
  color: #fff;
}
.empty-post-thumb .post-date {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 20px;
}
.post-title-block {
  display: block;
  margin: 15px auto 25px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  word-break: break-word;
}
.post-title-block a,
.post-title-block a:visited {
  color: var(--theme-heading);
}
.post-meta-block i {
  color: var(--theme-primary);
}
.post-meta-block a,
.post-meta-block a:visited {
  color: var(--theme-content);
}
.blog-block-inner {
  margin-top: -20px;
  padding: 0px 30px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.post-meta-block .post-author,
.post-meta-block .post-comments {
  display: flex !important;
  align-items: center !important;
}
.post-meta-block .author,
.post-meta-block .post-comments {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--theme-content);
}
.post-meta-block .post-author i,
.post-meta-block .post-comments i {
  font-size: 14px;
  color: var(--theme-primary);
  margin-right: 6px;
}
.post-excerpt-block {
  font-size: 18px;
  line-height: 34px;
  color: var(--theme-content);
  word-break: break-word;
}
.post-read-more a,
.post-read-more a:visited {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
  font-weight: 600;
  color: var(--theme-content);
  text-transform: uppercase;
}
.post-read-more a:hover {
  color: var(--theme-primary);
  text-decoration: none;
}
.post-read-more a::before {
  content: '\e919';
  font-family: 'icomoon';
  font-style: normal;
  font-weight: 300;
  right: -5px;
  position: absolute;
  font-size: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.post-read-more a:hover::before {
  right: -10px;
}
.post-content-block:hover {
  -webkit-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -khtml-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.quote-format-post,
.link-format-post {
  background-color: var(--theme-primary);
  color: #fff;
  padding: 60px 30px;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.quote-format-post::after {
  font-family: 'icomoon';
  content: "\e94d";
  display: block;
  position: absolute;
  bottom: 20px;
  right: 30px;
  height: 1em;
  font-size: 40px;
  line-height: 1em;
  font-weight: 300;
  color: #fff;
}
.link-format-post::after {
  font-family: 'icomoon';
  content: "\e934";
  display: block;
  position: absolute;
  bottom: 20px;
  right: 30px;
  height: 1em;
  font-size: 40px;
  line-height: 1em;
  font-weight: 300;
  color: #fff;
}
.post-quote-url,
.post-link-url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.post-quote-text,
.post-link-text {
  display: block;
  margin: 0px auto 25px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  word-break: break-word;
}
.post-quote-author {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}
.empty-post-thumb .post-content-block {
  max-width: 100%;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
}
.empty-post-thumb .post-date {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.video-format-post {
  position: relative;
  overflow: hidden;
}
/* 15. partner carousel  */
.partners-section {
  border-top: 1px solid #d9dfe9;
  padding: 100px 0;
}
.partners-carousel img {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
}
.partners-carousel img:hover {
  opacity: 0.7;
}
.partners-carousel .swiper-slide {
  text-align: center;
}
/* 16. Footer styles  */
.site-footer-default {
  background-color: var(--theme-secondary);
  padding: 60px 0;
  text-align: center;
}
.site-footer-1 {
  background: var(--theme-heading);
  padding-top: 100px;
  color: #9ba4b2;
  font-size: 18px;
  font-weight: 500;
}
.footer-about {
  margin: 40px auto;
}
.footer-menu ul {
  padding-left: 0;
  list-style: none;
}
.footer-menu ul a,
.footer-menu ul a:visited {
  color: #9ba4b2;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  position: relative;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.footer-menu ul a:hover {
  text-decoration: none;
  color: #fff;
}
.footer-menu ul a:after {
  background-color: #fff;
  bottom: -2px;
  content: "";
  display: inline-block;
  height: 1px;
  overflow: hidden;
  position: absolute;
  right: 0;
  transition: 0.5s;
  width: 0;
}
.footer-menu li a:hover:after {
  left: 0;
  width: 100%;
}
.footer-menu ul li {
  display: block;
  margin-bottom: 20px;
}
.footer-widget-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 50px;
}
.lp-item:not(:last-child) {
  margin-bottom: 50px;
}
.lp-thumb {
  width: 70px;
  min-width: 70px;
  margin-right: 20px;
}
.lp-date {
  display: flex !important;
  align-items: center !important;
  font-size: 12px;
  color: var(--theme-primary);
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.lp-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0px;
}
.lp-title a,
.lp-title a:visited {
  color: #ffffff;
}
.lp-thumb img {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.lp-title a:hover {
  color: #ffffff;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--theme-primary);
  text-decoration-color: var(--theme-primary);
}
.fp-icon {
  margin-right: 6px;
  display: inline-block;
}
.contact-widget ul {
  padding-left: 0px;
  list-style: none;
}
.contact-widget ul li:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1b263a;
}
.contact-icon {
  color: var(--theme-primary);
  font-size: 18px;
  margin-right: 10px;
}
.contact-widget ul li a,
.contact-widget ul li a:visited {
  color: #9ba4b2;
  font-size: 18px;
  font-weight: 500;
}
.footer-social-media ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.footer-social-media ul li {
  margin: 0px 15px;
}
.footer-social-media ul li:last-child {
  margin-right: 0;
}
.footer-social-media ul li a,
.footer-social-media ul li a:visited {
  color: #fff;
}
.footer-social-media ul li a:hover {
  color: var(--theme-primary);
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #212d40;
}
/* 17. home 2 styles  */
.header-style-2 {
  position: relative;
}
.header-style-2 .micro-nav-inner>li>a {
  color: var(--theme-content);
}
.header-style-2 .search-btn {
  color: var(--theme-heading);
  cursor: pointer;
}
.mc-phone {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: var(--theme-heading);
  display: block;
}
.mc-title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: var(--theme-content);
  display: block;
}
.mc-icon {
  font-size: 40px;
  color: var(--theme-primary);
  margin-right: 20px;
  line-height: 1;
}
.mc-icon i {
  line-height: 1;
  display: inline-block;
}
.header-style-2 .header-menu {
  margin-right: auto;
  margin-left: 0px;
}
.header-style-2 .header-search-btn {
  margin-left: 30px;
}
body.st-prevent-scroll {
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.search-btn-dark {
  color: var(--theme-heading);
}
.slider-two .slider-content {
  text-align: left;
  padding: 176px 0;
}
.slider-two .slide-heading {
  font-size: 90px;
  line-height: 1;
  position: relative;
  padding-left: 26px;
}
.slider-two .slide-heading::before {
  content: '';
  position: absolute;
  width: 8px;
  height: calc(100% - 36px);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #538de4;
}
.slide-descriptions {
  font-size: 24px;
  line-height: 40px;
  font-weight: 500;
  color: #e6e6e6;
}
.slider-one .slide-descriptions {
  margin-bottom: 60px !important;
}
.slider-two .slider-button {
  margin-top: 37px;
}
.swiper-slide {
  height: auto !important;
}
.experience-section {
  position: absolute;
  width: 100%;
}
.experience-block {
  background: var(--theme-primary);
  padding: 40px;
  max-width: 240px;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  position: relative;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/* 18. Service styles */
.service-block-2 {
  position: relative;
  overflow: hidden;
}
.service-details {
  max-width: calc(100% - 40px);
  background: #fff;
  position: relative;
  margin-top: -30px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.service-block-2:hover .service-details {
  -webkit-transform: translateY(-80px);
  transform: translateY(-80px);
}
.service-block-title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.service-block-title a,
.service-block-title a:visited {
  color: var(--theme-heading);
}
.service-block-title a:hover {
  color: var(--theme-primary);
}
.service-anchor {
  border-top: 1px solid #d9dfe9;
  padding: 30px;
  text-align: center;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 0px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  visibility: hidden;
}
.service-anchor a,
.service-anchor a:visited {
  color: var(--theme-content);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-right: 10px;
}
.service-anchor a::before {
  content: '\e919';
  font-family: 'icomoon';
  font-style: normal;
  font-weight: 300;
  right: -5px;
  position: absolute;
  font-size: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.service-anchor a:hover::before {
  right: -10px;
}
.service-anchor a:hover {
  color: var(--theme-primary);
}
.service-block-2:hover .service-anchor {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.services-section-two {
  padding-top: 120px;
  position: relative;
}
.services-section-two::before {
  content: '';
  background: #051228;
  height: calc(100% - 300px);
  width: 100%;
  position: absolute;
  top: 0;
}
.mb-n-200 {
  margin-bottom: -200px;
  position: relative;
  z-index: 2;
}
.about-section-2 {
  padding-top: 140px;
}
.service-block-2:hover .service-details {
  -webkit-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -khtml-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -moz-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -ms-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -o-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  box-shadow: 0 0 20px rgba(6, 30, 98, .12);
}
/* 19. Line progress  */
.bar-line {
  background: #edf0f5;
  height: 7px;
  margin-top: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.bar-line-active {
  position: relative;
  display: block;
  width: 0px;
  height: 7px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
  background: var(--theme-primary);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.skill-title {
  font-size: 18px;
  line-height: 1;
  color: var(--theme-heading);
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
}
.count-text {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  background: var(--theme-primary);
  position: absolute;
  padding: 8px 10px;
  right: -40px;
  bottom: 25px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.count-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: -8px;
  border: 8px solid transparent;
  border-top: 8px solid var(--theme-primary);
  border-left: 12px solid var(--theme-primary);
}
.bar-box {
  position: relative;
}
.bar-box:not(:last-child) {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.copany-info-box {
  background: #fff;
  position: relative;
  padding: 50px 60px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -khtml-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -moz-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -ms-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -o-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  margin-bottom: -30px;
  z-index: 5;
}
.copany-info-box::before {
  content: '';
  position: absolute;
  left: 20px;
  bottom: -20px;
  height: 20px;
  width: calc(100% - 40px);
  background: var(--theme-primary);
  -webkit-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -khtml-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -moz-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -ms-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  -o-box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  box-shadow: 0 5px 83px rgba(11, 38, 83, 0.08);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.com-logo {
  width: 45px;
  max-width: 45px;
}
.com-details {
  padding-left: 20px;
  line-height: 28px;
  font-size: 20px;
  font-weight: 600;
  color: var(--theme-heading);
  text-transform: uppercase;
}
.mt-60 {
  margin-top: 60px;
}
.about-style-3 {
  background: var(--theme-heading);
  position: relative;
}
.about-style-3::after {
  content: '';
  background: url(../img/diamonds-shape.png) no-repeat;
  background-position: left top;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.about-inner {
  padding-right: 15px;
  padding-left: 15px;
  margin-left: -webkit-calc((100% - 1200px)/2);
  margin-left: calc((100% - 1200px)/2);
  position: relative;
  z-index: 2;
}
.about-inner-content {
  padding: 120px 0;
}
.background-absolute-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}
.about-dots {
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100px;
}
.member-meta {
  background: #fff;
  position: relative;
  padding: 30px 30px 60px;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  max-width: calc(100% - 40px);
  margin-left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.member-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme-heading);
  text-transform: uppercase;
}
.member-name a,
.member-name a:visited {
  color: var(--theme-heading);
}
.member-designation {
  color: var(--theme-content);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.member-social {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  margin-top: 20px;
  height: 0px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.team-member:hover .member-social {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.team-member:hover .member-meta {
  -webkit-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -khtml-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -moz-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -ms-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -o-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  box-shadow: 0 0 20px rgba(6, 30, 98, .12);
}
.member-social ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.member-social ul li {
  margin: 0px 15px;
}
.member-social ul li a,
.member-social ul li a:visited {
  color: var(--theme-content);
}
.member-social ul li a:hover {
  color: var(--theme-primary);
}
.team-section-2 {
  background: #edf0f5;
  padding-top: 120px;
}
.white-bg {
  background: #fff;
}
.portfolio-section-2 {
  padding-top: 240px;
}
.testimonials-section-2 {
  padding: 120px 0px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}
.video-block {
  position: relative;
}
.video-poster {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 255px 50px;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  text-align: center;
}
.video-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
  color: var(--theme-primary);
  z-index: 99;
}
.hero-video-pulse {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.video-icon:before {
  z-index: 0;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  background: #ffffff;
}
.video-icon:after {
  z-index: 1;
  transition: all 200ms;
  background: #fff;
}
.video-icon:before,
.video-icon:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.video-icon i {
  color: var(--theme-primary);
  z-index: 2;
  position: absolute;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  left: 1px;
  top: 2px;
  font-size: 16px;
  text-align: center;
}
@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-overlay-content {
  background: var(--theme-primary);
  color: #fff;
  padding: 50px 60px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  max-width: 270px;
  position: absolute;
  right: 30px;
  top: -30px;
  text-align: left;
}
.video-overlay-count {
  font-size: 50px;
  font-weight: 600;
}
.video-overlay-title {
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  text-transform: uppercase;
}
.blog-section-bg {
  position: relative;
}
.blog-section-bg::after {
  content: '';
  background: var(--theme-heading);
  left: 0;
  bottom: 0;
  height: 450px;
  width: 100%;
  position: absolute;
}
.blog-dark .post-content-block {
  background: var(--theme-heading);
  color: #9ba4b2;
}
.blog-dark .post-title-block a,
.blog-dark .post-title-block a:visited {
  color: #fff;
}
.blog-dark .post-read-more {
  border-top: 1px solid #1d283c;
}
.blog-dark .blog-block:hover .post-content-block {
  background: #fff;
}
.blog-dark .blog-block:hover .post-title-block a,
.blog-dark .blog-block:hover .post-title-block a:visited {
  color: var(--theme-heading);
}
.map-canvas {
  min-height: 550px;
}
.page-header-section {
  position: relative;
  padding: 290px 0px 150px;
  text-align: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  background-color: var(--theme-secondary);
}
.page-header-section .breadcrumb,
.woocommerce-breadcrumb {
  background-color: rgba(3, 16, 38, 0.75);
  -ms-flex-pack: center !important;
  justify-content: center !important;
  margin-bottom: 20px;
  padding: 10px 20px;
}
.page-header-section nav {
  display: inline-block;
}
.page-title {
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  word-break: break-word;
  margin: 0px;
}
.breadcrumb-item {
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  color: #fff;
  text-transform: uppercase;
}
.breadcrumb-item a,
.breadcrumb-item a:visited,
.woocommerce-breadcrumb a,
.woocommerce-breadcrumb a:visited {
  color: #fff;
}
.breadcrumb-item.active {
  color: #9ba4b2;
}
.header-content.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: #0e1b31 !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.admin-bar .header-content.is-sticky {
  top: 32px;
}
.is-sticky .mc-phone {
  color: #fff;
}
.is-sticky .micro-nav-inner>li>a {
  color: #fff;
}
.about-section-6 {
  padding: 120px 0;
  position: relative;
}
.about-content-6 {
  color: var(--theme-content);
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
}
.about-section-6::before {
  content: '';
  position: absolute;
  background: url(../img/half-circle.png) no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
}
.top-border {
  border-top: 10px solid var(--theme-primary);
}
.team-section-3 {
  position: relative;
  padding-top: 120px;
  background: #edf0f5;
}
.partners-section-2 {
  position: relative;
  background: #fff;
  padding: 300px 0px 60px;
}
.mb-n-300 {
  margin-bottom: -300px;
}
.partners-section-2::before {
  content: '';
  position: absolute;
  background: url(../img/lines.png) no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
}
.services-section-3 {
  background: #fff;
  padding: 120px 0;
}
.pb-lg-120 {
  padding-bottom: 120px;
}
.video-box-section-2 {
  padding: 120px 0px;
  position: relative;
}
.video-box-section-2::after {
  content: '';
  position: absolute;
  background: url(../img/lines.png) no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.video-box-section-2::before {
  content: '';
  position: absolute;
  background: url(../img/large-lines.png) no-repeat;
  background-position: right bottom;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.service-section-inner {
  padding: 120px 0;
}
.service-nav ul {
  padding-left: 0px;
  list-style: none;
  padding: 40px;
  background: #edf0f5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 0;
}
.service-nav ul li a {
  font-size: 16px;
  line-height: 24px;
  color: var(--theme-heading);
  font-weight: 600;
  text-transform: uppercase;
  padding: 22px 20px;
  display: block;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.service-nav ul li:not(:last-child) {
  border-bottom: 1px solid #edf0f5;
}
.contact-box-widget {
  padding: 115px 40px;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.contact-box-widget::after {
  content: '';
  position: absolute;
  background-color: var(--theme-primary);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.75;
}
.contact-box-icon {
  background: #fff;
  min-width: 100px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 32px;
  display: inline-block;
  margin: 0px auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.contact-phone {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 20px;
}
.contact-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.service-widget-box:not(:last-child) {
  margin-bottom: 30px;
}
.widget-box:not(:last-child) {
  margin-bottom: 30px;
}
.service-nav .active a {
  background: var(--theme-primary);
  color: #fff;
}
.quote-small,
.wp-block-quote {
  font-size: 18px;
  line-height: 34px;
  color: var(--theme-content);
  font-weight: 600;
  padding-left: 20px;
  border-left: 2px solid var(--theme-primary);
}
.ficon {
  font-size: 65px;
  line-height: 1;
  color: var(--theme-primary);
}
.ftitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme-heading);
  text-transform: uppercase;
  margin: 30px auto 50px;
}
.service-features {
  border-top: 1px solid #d9dfe9;
  border-bottom: 1px solid #d9dfe9;
  padding: 60px 0px;
}
.mtb-60 {
  margin: 60px auto;
}
.foucs-text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--theme-primary);
}
.mb-45 {
  margin-bottom: 45px;
}
.faq-item:not(:last-child) {
  margin-bottom: 10px;
}
.faq-header {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--theme-heading);
  cursor: pointer;
  background: #edf0f5;
  padding: 30px 40px;
  margin: 0px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}
.faq-item-active .faq-header {
  background: transparent;
  color: var(--theme-primary);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.faq-item-active .faq-content {
  max-height: 300px;
  padding: 0px 40px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: var(--theme-content);
}
.faq-item-active {
  border: 2px solid var(--theme-primary);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.faq-header::before {
  content: '\e948';
  font-family: 'icomoon';
  font-style: normal;
  font-weight: 300;
  position: absolute;
  right: 40px;
}
.faq-item-active .faq-header::before {
  content: '\e949';
}
.portfolio-filters ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.portfolio-filters ul li {
  margin: 0px 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-content);
  text-transform: uppercase;
  cursor: pointer;
}
.portfolio-sec {
  padding: 120px 0px;
}
.portfolio-filters {
  margin-bottom: 40px;
}
.portfolio-gallary .portfolio-item {
  margin-bottom: 30px;
}
.portfolio-filters .mixitup-control-active,
.portfolio-filters ul li:hover {
  color: var(--theme-heading);
}
.project-summary {
  background: var(--theme-heading);
  color: #ffffff;
  max-width: calc(100% - 40px);
  margin: -30px auto 0px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}
.ps-block {
  padding: 60px 40px;
  position: relative;
  display: block;
  width: 100%;
}
.ps-block::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  right: 0;
  top: 0;
  background: #1d283c;
}
.pd-title {
  color: #9ba4b2;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.pd-content {
  font-size: 20px;
  font-weight: 600;
}
.project-single-wrapper {
  padding: 120px 0px;
}
.project-summary [class*="col-"]:last-child .ps-block::after {
  content: none;
}
.project-details-widget h2,
.project-details-widget h3,
.project-details-widget h4 {
  font-weight: 700;
  color: var(--theme-heading);
}
.project-details-widget h2 {
  font-size: 50px;
}
.project-details-widget h3 {
  font-size: 34px;
}
.project-details-widget h4 {
  font-size: 28px;
}
.related-porolio {
  border-top: 1px solid #d9dfe9;
  padding-top: 120px;
}
.has-post-thumbnail .ps-content {
  max-width: calc(100% - 40px);
  margin-top: -30px;
}
.ps-content {
  position: relative;
  margin-top: 48px;
  background: #fff;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 40px 30px;
  -webkit-border-radius: 5px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius: 5px;
  -moz-border-radius-topleft: 0;
  border-radius: 5px;
  border-top-left-radius: 0;
  -webkit-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -khtml-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -moz-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -ms-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  -o-box-shadow: 0 0 20px rgba(6, 30, 98, .12);
  box-shadow: 0 0 20px rgba(6, 30, 98, .12);
}
.ps-content .post-date {
  margin-left: -40px;
}
.ps-inner {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}
.tags-title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--theme-heading);
  margin-right: 6px;
}
.tags-list {
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-content);
  text-transform: capitalize;
}
.post-share ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.post-share ul {
  float: right;
}
.post-share ul li {
  margin-left: 20px;
}
.post-share ul a,
.post-share ul a:visited {
  color: var(--theme-content);
  font-size: 14px
}
.post-share ul a:hover {
  color: var(--theme-primary);
}
.ps-tags-share {
  border-top: 1px solid #d9dfe9;
  padding-top: 29px;
  margin-top: 40px;
}
.ps-author-box {
  background: #edf0f5;
  padding: 60px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-top: 60px;
}
.ps-author-name {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: var(--theme-heading);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.ps-author-descriptions {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--theme-content);
}
.ps-author-photo img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.wlp-content {
  margin-top: -5px;
}
.widget-title {
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--theme-heading);
}
.wlp-thumb {
  margin-right: 20px;
  min-width: 70px;
  max-width: 70px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.wlp-thumb img {
  background-color: var(--theme-secondary);
  mix-blend-mode: luminosity;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.wlp-thumb img:hover {
  mix-blend-mode: normal;
}
.wlp-comment {
  font-size: 14px;
  color: var(--theme-content);
  text-transform: uppercase;
}
.wlp-comment i {
  color: var(--theme-primary);
}
.wlp-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-heading);
  line-height: 30px;
  text-transform: uppercase;
}
.wlp-title a,
.wlp-title a:visited {
  color: var(--theme-heading);
}
.wlp-item {
  position: relative;
  display: block;
}
.wlp-item:not(:last-child) {
  margin-bottom: 30px;
}
.wlp-item:hover .wlp-title a {
  color: var(--theme-primary);
}
.widget-box {
  position: relative;
  background: #edf0f5;
  padding: 50px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.widget_search {
  background: var(--theme-primary);
  padding: 50px;
}
.widget_search .widget-title {
  color: #fff;
}
.search-widget .form-control {
  height: 70px;
  border: none;
  padding: 10px 75px 10px 30px;
}
.search-widget {
  position: relative;
}
.search-widget-submit {
  border: none;
  background: transparent;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  color: var(--theme-primary);
}
.widget_categories ul,
.widget_archive ul,
.widget_pages ul,
.widget_meta ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget_rss ul,
.widget_nav_menu ul,
.widget_product_categories ul,
.widget_layered_nav_filters ul {
  list-style: none;
  padding-left: 0px;
}
.widget_categories ul li,
.widget_archive ul li,
.widget_meta ul li,
.widget_recent_comments ul li,
.widget_recent_entries ul li,
.widget_rss ul li,
.widget_product_categories ul li,
.widget_layered_nav_filters ul li {
  position: relative;
  margin: 8px auto;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
}
.widget_nav_menu li,
.widget_pages li {
  position: relative;
  margin: 8px auto;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
}
.widget_nav_menu .sub-menu,
.widget_pages .children {
  margin-top: 0px;
  margin-left: 0.7em;
}
.widget_categories ul .children,
.widget_archive ul .children,
.widget_pages ul .children,
.widget_meta ul .children,
.widget_recent_comments ul .children,
.widget_recent_entries ul .children,
.widget_rss ul .children,
.widget_nav_menu ul .children {
  margin-left: 0.7rem;
}
.widget_categories ul li::before,
.widget_archive ul li::before,
.widget_pages ul li::before,
.widget_meta ul li::before,
.widget_product_categories ul li::before,
.widget_layered_nav_filters ul li::before {
  color: var(--theme-primary);
  content: '\e919';
  font-family: 'icomoon';
  font-style: normal;
  font-weight: 300;
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
}
.widget_categories ul li:hover::before,
.widget_archive ul li:hover::before,
.widget_pages ul li:hover::before,
.widget_meta ul li:hover::before,
.widget_product_categories ul li:hover::before,
.widget_layered_nav_filters ul li:hover::before {
  opacity: 1;
  visibility: visible;
}
.widget_categories ul li:hover,
.widget_archive ul li:hover,
.widget_pages ul li:hover,
.widget_meta ul li:hover,
.widget_product_categories ul li:hover,
.widget_layered_nav_filters ul li:hover {
  padding-left: 10px;
}
.widget_categories ul li a,
.widget_archive ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.widget_nav_menu ul li a,
.widget_product_categories ul li a,
.widget_layered_nav_filters ul li a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--theme-content);
}
.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_pages ul li a:hover,
.widget_meta ul li a:hover {
  text-decoration: none;
  color: var(--theme-heading);
  font-weight: 600;
}
.widget_recent_comments a,
.widget_recent_comments a:visited,
.widget_recent_entries ul li a,
.widget_recent_entries ul li a:visited,
.widget_rss ul li a,
.widget_rss ul li a:visited {
  color: var(--theme-heading);
}
.widget_recent_entries ul li a:hover,
.widget_nav_menu a:hover {
  color: var(--theme-primary);
}
.widget_recent_comments .comment-author-link,
.widget_rss ul li a {
  font-weight: 600;
}
#wp-calendar tbody td#today {
  position: relative;
  background: var(--theme-primary);
  color: #fff;
}
#wp-calendar tbody td#today:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 10px solid var(--theme-secondary);
  border-left: 10px solid transparent;
}
#wp-calendar th {
  font-weight: bold;
  text-transform: capitalize;
  border-top: 1px solid #e1e6ff;
  border-left: 1px solid #e1e6ff;
  border-right: 1px solid #e1e6ff;
  background: var(--theme-primary);
  color: #fff;
  padding: 4px 10px;
  text-align: center;
}
#wp-calendar caption {
  font-size: 16px;
  padding: 5px;
  text-align: center;
  margin: -1px 0 10px 0;
  border: 1px solid #eceef0;
  background: var(--theme-primary);
  color: #fff;
}
.widget_products ul,
.widget_top_rated_products ul,
.widget_recent_reviews ul,
.widget_recently_viewed_products ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.widget_products .product-title,
.widget_top_rated_products .product-title,
.widget_recent_reviews .product-title,
.widget_recently_viewed_products .product-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-heading);
  display: block;
}
.widget_products .star-rating,
.widget_top_rated_products .star-rating,
.widget_recent_reviews .star-rating,
.widget_recently_viewed_products .star-rating {
  display: block;
  float: none !important;
  margin: 10px 0;
}
.widget_products .attachment-woocommerce_thumbnail,
.widget_top_rated_products .attachment-woocommerce_thumbnail,
.widget_recent_reviews .attachment-woocommerce_thumbnail,
.widget_recently_viewed_products .attachment-woocommerce_thumbnail {
  margin-bottom: 15px;
}
.product_list_widget li:not(:last-child),
.widget_top_rated_products li:not(:last-child),
.widget_recent_reviews li:not(:last-child),
.widget_recently_viewed_products li:not(:last-child) {
  margin-bottom: 30px;
}
.widget.widget_price_filter .price_slider_wrapper .ui-widget-content {
  position: relative;
  height: 1px;
  background-color: #dbdbdb;
  border-radius: 0;
  cursor: pointer;
}
.widget.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-range {
  position: absolute;
  display: block;
  height: 100%;
  background-color: #000;
  border-radius: 0;
  z-index: 1;
}
.widget.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle {
  position: absolute;
  top: -3px;
  height: 7px;
  width: 7px;
  background-color: #000;
  outline: 0;
  z-index: 2;
}
.widget.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle:last-of-type {
  -webkit-transform: translateX(-7px);
  -ms-transform: translateX(-7px);
  transform: translateX(-7px);
}
.widget.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-handle {
  position: absolute;
  top: -3px;
  height: 7px;
  width: 7px;
  background-color: #000;
  outline: 0;
  z-index: 2;
}
.widget.widget_price_filter .price_slider_amount {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 23px 0 0;
}
.widget.widget_price_filter .price_slider_amount button {
  position: absolute;
  right: 0;
  background-color: transparent;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: .05em;
  padding: 0;
  border: 0;
}
.back-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 40px;
  padding: 10px 5px;
  min-height: 40px;
  line-height: 1.2;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  z-index: 9999;
  opacity: 0.9;
  background: var(--theme-heading);
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}
.back-to-top.in {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.back-to-top:hover {
  background: var(--theme-primary);
  color: #fff;
}
.back-to-top span {
  margin-top: 5px;
}
.ptb-120 {
  padding: 120px 0px;
}
.contact-social ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.contact-social ul li {
  margin-right: 20px;
}
.contact-social ul li a,
.contact-social ul li a:visited {
  color: var(--theme-content);
}
.contact-social ul li a:hover {
  color: var(--theme-primary);
}
.osfins-contact-form {
  position: relative;
}
.osfins-contact-form .form-group {
  margin-bottom: 30px;
}
.osfins-contact-form input,
.osfins-contact-form select,
.osfins-contact-form textarea {
  background: #edf0f5;
  min-height: 68px;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding-left: 30px;
  width: 100%;
}
.osfins-contact-form textarea {
  padding: 25px 30px;
}
.osfins-contact-form select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
}
.form-select {
  position: relative;
}
.osfins-contact-form .form-select::before {
  position: absolute;
  content: '\e91f';
  font-family: 'icomoon';
  font-style: normal;
  font-weight: 300;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.form-submit-btn {
  border: none;
  padding: 25px 50px;
}
.ciw-icon {
  background: #1d283c;
  color: var(--theme-primary);
  height: 90px;
  min-width: 90px;
  width: 90px;
  line-height: 90px;
  text-align: center;
  margin-right: 20px;
  font-size: 32px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.contact-info-widget:hover .ciw-icon {
  background: var(--theme-primary);
  color: #fff;
}
.ciw-title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--theme-content);
  text-transform: uppercase;
}
.ciw-details {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme-heading);
  text-transform: uppercase;
}
.ciw-details a,
.ciw-details a:visited {
  color: var(--theme-heading);
}
.ciw-details a:hover {
  text-decoration: none;
}
.contact-box-wrapper {
  position: relative;
  margin-bottom: -80px;
  z-index: 2;
  padding: 60px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: var(--theme-heading);
}
/* .slide-bg {
  background-color: var(--theme-heading);
  mix-blend-mode: luminosity;
} */
.portfolio-item,
.why-chhose-image,
.lp-thumb img,
.service-thumb,
.styled-image-2 img,
.background-absolute-image,
.member-photo,
.teammember-photo {
  background: var(--theme-heading);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.portfolio-item img,
.why-chhose-image img,
.lp-thumb img,
.service-thumb img,
.styled-image-2 img,
.background-absolute-image,
.member-photo img,
.teammember-photo img {
  mix-blend-mode: luminosity;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
}
.notfound-wrapper {
  padding: 120px 0;
}
.notfound-title {
  font-size: 140px;
  font-weight: 700;
  color: var(--theme-heading);
}
.notfound-subtitle {
  font-size: 50px;
  font-weight: 600;
}
.notfound-btn {
  margin-top: 45px;
}
.faq-page-wrapper,
.team-section-page {
  padding: 120px 0;
  position: relative;
}
.faq-page-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/large-lines.png) no-repeat;
  background-position: right bottom;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.faq-page-wrapper::before {
  content: '';
  position: absolute;
  background: url(../img/lines.png) no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
}
.team-single-page {
  padding: 120px 0px;
}
.teammember-contact ul {
  padding-left: 0px;
  list-style: none;
}
.teammember-contact ul li {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  margin-bottom: 20px;
}
.tmc-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: var(--theme-primary);
  margin-right: 30px;
  border-radius: 100%;
  background-color: #b7d4ff;
  text-align: center;
}
.tmc-content,
.tmc-content a,
.tmc-content a:visited {
  font-weight: 600;
  font-size: 18px;
  color: var(--theme-heading);
}
.teammember-name {
  font-weight: 700;
  font-size: 45px;
  color: var(--theme-heading);
  text-transform: uppercase;
}
.teammember-designation {
  font-weight: 600;
  font-size: 22px;
  color: var(--theme-primary);
  text-transform: uppercase;
}
.teammember-bio {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--theme-content);
}
.teammember-skills {
  margin-bottom: 40px;
}
.slider-pagination .swiper-pagination-bullet {
  opacity: 0.7 !important;
}
.slider-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
}
.elementor-slider--skin-style1 .slider-widget .elementor-swiper-button-next,
.elementor-slider--skin-style2 .slider-widget .elementor-swiper-button-next {
  width: 50px;
  height: 170px;
  background: #fff;
  right: 0;
  opacity: 1;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.elementor-slider--skin-style1 .slider-widget .elementor-swiper-button-prev,
.elementor-slider--skin-style2 .slider-widget .elementor-swiper-button-prev {
  width: 50px;
  height: 170px;
  background: #fff;
  left: 0;
  opacity: 1;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.elementor-slider--skin-style1 .slider-widget .elementor-swiper-button-next,
.elementor-slider--skin-style2 .slider-widget .elementor-swiper-button-next {
  right: 0px !important;
}
.elementor-slider--skin-style1 .slider-widget .elementor-swiper-button-prev,
.elementor-slider--skin-style2 .slider-widget .elementor-swiper-button-prev {
  left: 0px !important;
}
.slider-widget .elementor-swiper-button {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.full-bar-search-wrap .form-control {
  color: #fff !important;
}
.elementor-section-width-full_width {
  width: 100%;
}
.elementor-section .elementor-container>.elementor-row>.elementor-column>.elementor-element-populated {
  padding-top: 0;
  padding-bottom: 0;
}
.slide-inner {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.swiper-slide-active .slide-inner {
  z-index: 3;
}
.slider-two .slide-inner {
  overflow: hidden;
}
/* custom cursor  */
.custom-cursor .circle-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden
}
@media screen and (max-width:1024px) {
  .custom-cursor .circle-cursor {
    display: none
  }
}
@media screen and (min-width:1199.98px) {
  .elementor-section-spacing--left>.elementor-container {
    margin-left: -webkit-calc((100% - 1200px)/2) !important;
    margin-left: calc((100% - 1200px)/2) !important;
    padding-right: 0px;
    padding-left: 15px;
  }
  .elementor-section-spacing--right>.elementor-container {
    margin-right: -webkit-calc((100% - 1200px)/2) !important;
    margin-right: calc((100% - 1200px)/2) !important;
    padding-right: 15px;
    padding-left: 0px;
  }
}
.custom-cursor .circle-cursor--inner {
  margin-left: -.125rem;
  margin-top: -.125rem;
  width: .45rem;
  height: .45rem;
  z-index: 10000001;
  background-color: var(--theme-primary);
}
/* .custom-cursor .circle-cursor--outer {
  margin-left: -.9375rem;
  margin-top: -.9375rem;
  width: 1.875rem;
  height: 1.875rem;
  border: .0625rem solid red;
  box-sizing: border-box;
  z-index: 10000000;
  -webkit-transition: all .08s ease-out;
  transition: all .08s ease-out
} */
.custom-cursor .circle-cursor--outer.cursor-link-hover {
  margin-left: -1.5625rem;
  margin-top: -1.5625rem;
  width: 3.125rem;
  height: 3.125rem;
  border: .0625rem solid var(--theme-primary);
  box-sizing: border-box;
  z-index: 10000000;
  -webkit-transition: all .08s ease-out;
  transition: all .08s ease-out
}
.custom-cursor .circle-cursor--inner.cursor-link-hover {
  margin-left: -.1875rem;
  margin-top: -.1875rem;
  width: .375rem;
  height: .375rem;
  background-color: var(--theme-primary);
}
.header-align-left .micro-element-osfins-header {
  display: flex !important;
  justify-content: flex-start !important;
  width: 100%;
}
.header-align-center .micro-element-osfins-header {
  display: flex !important;
  width: 100%;
  justify-content: center !important;
}
.header-align-right .micro-element-osfins-header {
  display: flex !important;
  justify-content: flex-end !important;
  width: 100%;
}
.elementor-widget-osfins-header {
  z-index: 99;
}
.testimonials-slider-2 .tsc-block {
  padding-left: 120px;
  padding-right: 120px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-icon {
  color: var(--theme-primary);
  margin-bottom: 40px;
  font-size: 60px;
}
.tsc-desc {
  margin-bottom: 40px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--theme-content);
}
.tsc-name {
  font-weight: 600;
  font-size: 17px;
  color: var(--theme-secondary);
}
.tsc-role {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-content);
}
.testi-button-next,
.testi-button-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  color: rgb(155, 155, 155);
  z-index: 5;
  -webkit-transition: all .3s cubic-bezier(.25, .46, .45, .94) !important;
  -o-transition: all .3s cubic-bezier(.25, .46, .45, .94) !important;
  transition: all .3s cubic-bezier(.25, .46, .45, .94) !important;
}
.testi-button-next:hover,
.testi-button-prev:hover {
  background: var(--theme-secondary);
  color: var(--theme-content);
}
.testi-button-prev {
  border-right: 1px solid var(--theme-secondary);
  text-align: center;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
}
.testi-button-next {
  right: 0;
  border-left: 1px solid var(--theme-secondary);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
.testimonials-slider-2:hover .testi-button-prev,
.testimonials-slider-2:hover .testi-button-next {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}
.tsc-meta {
  position: relative;
  margin-top: 60px;
}
.tsc-meta::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 0px;
  background: var(--theme-primary);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  bottom: 100%;
  -webkit-transition: all .3s cubic-bezier(.25, .46, .45, .94) !important;
  -o-transition: all .3s cubic-bezier(.25, .46, .45, .94) !important;
  transition: all .3s cubic-bezier(.25, .46, .45, .94) !important;
}
.swiper-slide-active .tsc-meta::after {
  height: 40px;
}
.team-block-2 {
  position: relative;
}
.team-social ul {
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
  display: flex !important;
  justify-content: center !important;
}
.team-meta {
  text-align: center;
}
.team-name {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.team-name a,
.team-name a:visited {
  color: #fff;
}
.team-designation {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.team-social ul li {
  margin: 0px 10px;
}
.team-social ul a,
.team-social ul a:visited {
  font-size: 16px;
  color: #fff;
}
.team-meta {
  margin: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
  -webkit-transition: all .3s cubic-bezier(.25, .46, .45, .94);
  -o-transition: all .3s cubic-bezier(.25, .46, .45, .94);
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
}
.team-block-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(3, 16, 38, .9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s cubic-bezier(.25, .46, .45, .94), visibility .3s cubic-bezier(.25, .46, .45, .94);
  -o-transition: opacity .3s cubic-bezier(.25, .46, .45, .94), visibility .3s cubic-bezier(.25, .46, .45, .94);
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94), visibility .3s cubic-bezier(.25, .46, .45, .94);
}
.team-block-2:hover .team-meta,
.team-block-2:hover .team-block-overlay {
  -webkit-transition-delay: .1s;
  -o-transition-delay: .1s;
  transition-delay: .1s;
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.page-header-section.luminosity {
  background-blend-mode: luminosity;
  background-color: var(--theme-secondary);
}
.osfins-pagination .page-link,
.osfins-paginated-next a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center !important;
  font-size: 20px;
  font-weight: 500;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--theme-secondary);
  background: transparent;
  border-radius: 5px;
  border: 1px solid var(--theme-content);
  z-index: 1;
  transition: all 500ms ease;
}
.osfins-pagination-inner li {
  position: relative;
  display: inline-block;
  margin-right: 7px;
  text-align: center;
}
.osfins-pagination {
  display: flex;
  justify-content: center !important;
  width: 100%;
  margin-top: 80px;
}
.osfins-pagination .page-item.active .page-link,
.osfins-pagination .page-link:hover {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #fff;
}
.page-link:focus {
  box-shadow: 0 0 0 0 rgba(0, 123, 255, .25);
}
@media (max-width: 991.98px) {
  .header-skin-1.position-absolute,
  .header-skin-2.position-absolute {
    position: relative !important;
  }
}
/* mobile menu  */
.mobile-header {
  position: relative;
  padding: 15px 0px;
}
.micro-mobile-header-navigation {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  max-height: calc(100vh - 70px);
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  z-index: 10;
}
.micro-mobile-header-navigation ul li.menu-item-has-children>.caret {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 15px;
  background-color: #1b263a;
}
.micro-mobile-header-navigation ul li.menu-item-has-children>.caret:after {
  position: absolute;
  top: 7px;
  right: 0;
  font-family: 'icomoon';
  content: "\e919";
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  -o-transition: transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}
.micro-menu-opened .caret:after {
  content: "\e916" !important;
}
.micro-mobile-header-navigation ul {
  margin: 0 auto;
  padding: 0px;
  list-style: none;
}
.micro-mobile-menu {
  padding: 30px !important;
}
.micro-mobile-header-navigation ul li {
  position: relative;
  margin: 0;
  padding: 0px;
}
.micro-mobile-header-navigation .micro-mobile-menu {
  display: block !important;
}
.micro-mobile-header-navigation .micro-micro-mobile-menu {
  width: 100%;
}
.micro-mobile-header-navigation ul ul {
  margin-left: 10px;
}
.micro-mobile-header-navigation .micro-mobile-menu>li>a {
  padding: 10px 0px;
  display: inline-block;
  width: 100%;
  line-height: 22px;
}
.micro-mobile-header-navigation ul li ul {
  display: none;
}
.micro-mobile-menu a,
.micro-mobile-menu a:visited {
  color: var(--theme-heading);
  text-transform: uppercase;
  font-size: 15px;
}
.micro-mobile-menu a:hover {
  color: var(--theme-primary);
}
.micro-mobile-menu>li>a {
  text-transform: uppercase;
}
.submenu-inner>li>a {
  padding: 10px 0px;
  display: inline-block;
  width: 100%;
  line-height: 20px;
  font-size: 14px;
}
button:focus {
  outline: 0px dotted;
  outline: 0px auto -webkit-focus-ring-color;
}
.hamburger {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  height: 22px;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}
.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 1px;
  background-color: #000;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.service-content h2,
.service-content h3,
.service-content h4 {
  margin-bottom: 0.75rem;
}
.tags-list a,
.tags-list a:visited {
  font-size: 18px;
  font-weight: 500;
  color: #7b8391;
}
.tags-list a:hover {
  color: var(--theme-primary);
}
.comments-area {
  margin-top: 60px;
  position: relative;
  display: block;
}
.comments-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--theme-heading);
  text-transform: uppercase;
  margin-bottom: 60px;
}
.comment-avatar {
  margin-right: 45px;
  max-width: 110px;
}
.comment-avatar img {
  border-radius: 50% !important;
}
.comment-list {
  margin-left: 0px;
  padding-left: 0px;
  list-style: none;
}
.comment-list-item .children {
  margin-left: 50px;
}
.cooment-meta {
  margin-bottom: 30px;
}
.comment-author-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-heading);
  text-transform: uppercase;
}
.comment-author-name a,
.comment-author-name a:visited {
  color: var(--theme-heading);
}
.stand_comment {
  margin-bottom: 60px;
  padding-bottom: 53px;
  border-bottom: 1px solid #d9dfe9;
}
.comment-reply-btn a,
.comment-reply-btn a:visited {
  color: #fff;
  line-height: 1;
}
.comment-reply-wrapper {
  padding: 12px 25px;
}
.comment-date {
  font-weight: 600;
  font-size: 16px;
  color: var(--theme-primary);
  position: relative;
  padding-left: 10px;
  margin-left: 10px;
}
.comment-message {
  color: var(--theme-content);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.comment-date::before {
  content: '';
  width: 5px;
  height: 2px;
  background: var(--theme-primary);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}
.comment-reply-title {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: var(--theme-heading);
  text-transform: uppercase;
  margin-bottom: 21px;
}
.comment-message p:last-child {
  margin-bottom: 0px;
}
.comment-form-group {
  margin-top: 30px;
}
.comment-form-group input,
.comment-form-group textarea {
  width: 100%;
  min-height: 68px;
  background-color: #edf0f5;
  border: none;
  color: #7b8391;
  padding: 25px;
}
.comment-form .logged-in-as {
  margin-bottom: 48px;
  line-height: 1;
  display: block;
}
.comment-form-cookies-consent {
  margin-top: 30px;
  color: var(--theme-content);
}
.submit-comment-btn {
  position: relative !important;
  display: inline-block !important;
  text-align: center !important;
  background: var(--theme-primary) !important;
  color: #fff !important;
  border-radius: 5px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  -webkit-transition: all 0.3s ease !important;
  -ms-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  padding: 30px 60px !important;
  z-index: 3 !important;
  word-wrap: none !important;
  white-space: nowrap !important;
}
.submit-comment-btn:hover {
  background: var(--theme-secondary) !important;
}
.form-submit {
  margin-top: 40px;
}
.logged-in-as a,
.logged-in-as a:visited {
  color: var(--theme-content);
}
.logged-in-as a:hover {
  color: var(--theme-primary);
}
.osfins-widget-service-menu,
.osfins-cta {
  padding: 0px;
}
.post-single-thumb {
  background-color: var(--theme-secondary);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.post-single-thumb img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.max-pagination-dots {
  padding: 0.7rem 1rem;
}
.post-content-block .sticky {
  border: 5px solid var(--theme-primary);
}
.ps-author-photo {
  background: var(--theme-secondary);
}
.wp-block-cover-image.has-background-dim:not([class*=-background-color]),
.wp-block-cover.has-background-dim:not([class*=-background-color]) {
  color: #fff;
}
.page-links {
  display: block;
  overflow: hidden;
  width: 100%;
  margin-top: 60px;
  font-weight: 600;
}
.page-links .post-page-numbers {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-weight: 700;
  font-size: 11px;
  background: #f4f6f9;
  color: #a29fa6;
  display: inline-block;
  transition: all 0.3s;
}
.page-links .post-page-numbers:hover,
.post-page-numbers.current {
  background: var(--theme-primary);
  color: #fff;
  text-decoration: none;
}
.page-links-title {
  color: var(--theme-heading);
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-right: 15px;
}
.form_password_input,
.form_password_button {
  min-height: 50px;
}
.form_password_input {
  padding-left: 15px !important;
}
.form_password_button {
  background-color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  color: #fff;
  margin-left: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.form_password_button:hover {
  background-color: var(--theme-secondary);
  border: 1px solid var(--theme-secondary);
  color: #fff;
}
.comment-content {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.comment-content p {
  margin-bottom: 15px;
}
.comment-content blockquote,
.ps-inner blockquote {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
  padding: 113px 40px 53px;
  position: relative;
  text-align: center;
  background-color: #edf0f5;
}
.comment-content blockquote::before,
.ps-inner blockquote::before {
  font-family: 'icomoon' !important;
  content: "\e94d";
  font-size: 32px;
  line-height: 32px;
  position: absolute;
  width: 40px;
  height: 32px;
  left: 50%;
  margin-left: -28px;
  top: 57px;
  color: rgb(171, 173, 176);
  overflow: hidden;
}
.ps-inner blockquote cite {
  margin-top: 30px;
  display: block;
}
pre {
  border-style: solid;
  border-width: 1px;
  border-color: #ededed;
  overflow: auto;
  padding: 2em;
  line-height: 2em;
  font-size: 12px;
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, .05) 50%, transparent 50%, transparent);
  background-image: -moz-linear-gradient(rgba(0, 0, 0, .05) 50%, transparent 50%, transparent);
  background-image: -ms-linear-gradient(rgba(0, 0, 0, .05) 50%, transparent 50%, transparent);
  background-image: -o-linear-gradient(rgba(0, 0, 0, .05) 50%, transparent 50%, transparent);
  background-image: linear-gradient(rgba(0, 0, 0, .05) 50%, transparent 50%, transparent);
  -webkit-background-size: 100% 4em;
  -moz-background-size: 100% 4em;
  font-family: Monaco, "Andale Mono", "Courier New", Courier, monospace;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  margin-bottom: 30px;
  position: relative;
  left: 0;
  text-transform: none;
}
.comment-list .children {
  list-style: none;
  margin-top: 45px;
}
.comment-form-box {
  margin-top: 60px;
}
.trackback .comment-body {
  margin-bottom: 20px;
}
.ps-author-photo {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.page-default-padding {
  padding: 120px 0;
}
.skt-button-prev {
  right: 120px !important;
  z-index: 5;
  bottom: 45px;
  position: absolute;
  display: block;
  left: auto !important;
}
.skt-button-next {
  right: 50px !important;
  z-index: 5;
  bottom: 45px;
  position: absolute;
}
.slider3-content {
  position: absolute;
  bottom: 45px;
  z-index: 5;
  width: 100%;
}
.slider3-content .slide-inner-box {
  margin-left: 50px;
}
.slider-one-slide .slide-heading-overlap {
  clip-path: inset(0 100% 0 -10%);
  -webkit-clip-path: inset(0 100% 0 -10%);
  -webkit-transition: -webkit-clip-path 1s cubic-bezier(.62, .28, .23, .99);
  transition: -webkit-clip-path 1s cubic-bezier(.62, .28, .23, .99);
  -o-transition: clip-path 1s cubic-bezier(.62, .28, .23, .99);
  transition: clip-path 1s cubic-bezier(.62, .28, .23, .99);
  transition: clip-path 1s cubic-bezier(.62, .28, .23, .99), -webkit-clip-path 1s cubic-bezier(.62, .28, .23, .99);
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px 30px;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
}
.slider-one-slide.swiper-slide-active .slide-heading-overlap {
  clip-path: inset(0 0 0 -10%);
  -webkit-clip-path: inset(0 0 0 -10%);
  -webkit-transition: -webkit-clip-path .8s ease 1.2s;
  transition: -webkit-clip-path .8s ease 1.2s;
  -o-transition: clip-path .8s ease 1.2s;
  transition: clip-path .8s ease 1.2s;
  transition: clip-path .8s ease 1.2s, -webkit-clip-path .8s ease 1.2s;
  visibility: visible;
  opacity: 1;
}
.social-list ul {
  padding-left: 0;
  list-style: none;
}
.social-list ul li {
  display: inline-block;
}
.social-list ul li:not(:last-child) {
  margin-right: 1rem;
}
.social-list ul li a {
  display: inline-block;
  border-bottom: 1px solid #fff;
}
.portfolio-summary-thumb {
  background-color: var(--theme-secondary);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.portfolio-summary-thumb img {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
}
.elementor-img-luminosity img {
  mix-blend-mode: luminosity;
}
.footer-fixed {
  position: fixed !important;
  bottom: 0;
  left: 0;
}
.footer-uncover .site-main {
  background-color: #101010;
  z-index: 9;
  position: relative;
}
/* preloader  */
.preloader-wrap {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0);
}
.preloader-wrap .icon {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0);
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/preloader-icon.svg);
  -webkit-transition: all 220ms ease;
  -moz-transition: all 220ms ease;
  -ms-transition: all 220ms ease;
  -o-transition: all 220ms ease;
  transition: all 220ms ease;
}
.page-loaded .preloader-wrap .icon {
  opacity: 0;
}
.preloader-wrap:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 51%;
  height: 100%;
  background: #ffffff;
  z-index: 0;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
}
.page-loaded .preloader-wrap:before {
  -webkit-transform: translateX(-101%);
  -ms-transform: translateX(-101%);
  transform: translateX(-101%);
}
.preloader-wrap:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 51%;
  height: 100%;
  background: #ffffff;
  z-index: 2;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
}
.page-loaded .preloader-wrap:after {
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}
.styled-image-2 {
  position: relative;
  z-index: 3;
}
.styled-image-2 img {
  border-radius: 50% !important;
}
.styled-image-2::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: -40px;
  left: -40px;
  right: 0;
  bottom: 0;
  background: #edf0f5;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  z-index: -1;
}
.styled-image-2::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  top: -40px;
  left: -40px;
  right: 0;
  bottom: 0;
  background: var(--theme-primary);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  z-index: -2;
}
.styled-image-2 .elementor-widget-container {
  border-radius: 50% !important;
  background: var(--theme-secondary);
}
#secondary {
  padding-left: 45px;
}
#secondary .widget:last-child {
  margin-bottom: 0px;
}
/* woocommerce styles */
.osfins-woo-product-list ul.products {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -15px;
  list-style: none;
  clear: both;
}
.osfins-woo-product-list ul.products.columns-3>.product {
  flex: 0 0 auto;
  width: 33.33333%;
  padding-right: 15px;
  padding-left: 15px;
}
.osfins-woo-product-list ul.products.columns-4>.product {
  flex: 0 0 auto;
  width: 25%;
  padding-right: 15px;
  padding-left: 15px;
}
.osfins-woo-product-list ul.products.columns-2>.product {
  flex: 0 0 auto;
  width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}
.osfins-woo-results {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 2px;
}
.osfins-woo-product-inner {
  position: relative;
}
.onsale {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 18px 6px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0;
  color: #fff;
  background-color: var(--theme-primary);
  z-index: 5;
}
.osfins-woo-product-content {
  text-align: center;
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  z-index: 4;
  margin-bottom: 30px;
  position: relative;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  margin-top: -30px;
  padding: 30px;
}
.osfins-woo-product-content .woocommerce-loop-product__title {
  display: block;
  margin: 0px auto 25px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  word-break: break-word;
  color: var(--theme-heading);
}
.osfins-woo-product-content .price {
  display: block;
  text-transform: uppercase;
  word-break: break-word;
  color: var(--theme-primary);
  margin: 0px auto 25px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
.osfins-woo-product-content .price del {
  color: var(--theme-content);
}
.osfins-woo-product-content .price ins {
  background-color: transparent;
  color: var(--theme-primary);
}
.add_to_cart_button {
  color: var(--theme-heading);
}
.woocommerce-result-count {
  margin-bottom: 0px;
}
.osfins-woo-product-inner:hover .osfins-woo-product-content {
  -webkit-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -khtml-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  box-shadow: 10px 0px 60px rgba(0, 0, 0, 0.07);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.osfins-woo-product-inner .woocommerce-LoopProduct-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.osfins-woo-thumbnails-wrapper {
  display: flex;
  margin-top: 30px;
  margin-left: -15px;
  margin-right: -15px;
}
.osfins-woo-thumbnails-wrapper .woocommerce-product-gallery__image {
  padding: 0px 15px;
  flex: 0 0 auto;
  width: 25%;
}
.single-product .osfins-woo-content {
  padding: 100px 0px;
}
.woocommerce-product-gallery__wrapper {
  margin: 0;
}
.entry-summary .product_title {
  font-size: 40px;
  color: var(--theme-heading);
  text-transform: uppercase;
  margin: 0px auto 12px;
  font-weight: 700;
}
.woocommerce ul.products li.product .star-rating {
  font-size: .857em
}
.woocommerce #reviews #comments .commentlist>li::before {
  content: ""
}
.woocommerce .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 14px;
  letter-spacing: 2px;
  width: 90px;
  font-family: 'wooicon' !important
}
.woocommerce .star-rating::before {
  content: "\e903\e903\e903\e903\e903";
  color: #d3ced2;
  float: left;
  top: 0;
  left: 0;
  position: absolute
}
.woocommerce .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
  color: #e6b800;
}
.woocommerce .star-rating span::before {
  content: "\e903\e903\e903\e903\e903";
  top: 0;
  position: absolute;
  left: 0
}
.woocommerce .woocommerce-product-rating {
  line-height: 2;
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 42px;
}
.woocommerce .woocommerce-product-rating::after,
.woocommerce .woocommerce-product-rating::before {
  content: " ";
  display: table
}
.woocommerce .woocommerce-product-rating::after {
  clear: both
}
.woocommerce .woocommerce-product-rating .star-rating {
  margin: .5em 4px 0 0;
  float: left
}
.woocommerce .products .star-rating {
  display: block;
  margin: 0 0 .5em;
  float: none
}
.woocommerce .hreview-aggregate .star-rating {
  margin: 10px 0 0
}
.woocommerce #review_form #respond {
  position: static;
  margin: 0;
  width: auto;
  padding: 0;
  background: transparent none;
  border: 0
}
.woocommerce #review_form #respond::after,
.woocommerce #review_form #respond::before {
  content: " ";
  display: table
}
.woocommerce #review_form #respond::after {
  clear: both
}
.woocommerce #review_form #respond p {
  margin: 0 0 10px;
  position: relative;
  display: block;
}
.stars span {
  display: inline-block;
  position: relative;
}
.woocommerce #review_form #respond .form-submit input {
  left: auto
}
.woocommerce #review_form #respond textarea {
  box-sizing: border-box;
  width: 100%;
  height: 135px;
}
.woocommerce p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  color: #e6b800;
}
.woocommerce p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: 'wooicon' !important;
  content: "\e903";
  text-indent: 0;
}
.woocommerce p.stars a:hover~a::before {
  content: "\e903"
}
.woocommerce p.stars:hover a::before {
  content: "\e907"
}
.woocommerce p.stars.selected a.active::before {
  content: "\e907";
}
.woocommerce p.stars.selected a.active~a::before {
  content: "\e907";
  color: #e6b800;
}
.woocommerce p.stars.selected a:not(.active)::before {
  content: "\e907";
}
p.stars a:hover~a:before,
p.stars.selected:not(:hover) a.active~a:before {
  color: #e6b800;
  opacity: .2;
}
.woocommerce-Reviews .comment-form-comment textarea {
  padding: 15px;
}
.woocommerce-Reviews .form-submit input {
  background-color: var(--theme-secondary);
  padding: 15px 45px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1.5px;
}
.woocommerce-Reviews .form-submit input:hover {
  background-color: var(--theme-primary);
}
.woocommerce-review-link {
  display: none;
}
.entry-summary .price {
  margin-top: 0px;
  text-align: left;
  font-size: 36px;
  line-height: 1;
  color: var(--theme-primary);
  font-weight: 600;
  margin-bottom: 0px;
}
.entry-summary .osfins-quantity-buttons {
  position: relative;
  display: flex;
  vertical-align: middle;
}
.osfins-quantity-buttons .quantity-label {
  position: relative !important;
  width: auto;
  height: auto;
  top: 0 !important;
  line-height: 62px;
  display: inline-block;
}
.osfins-quantity-buttons {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #545050;
  height: 62px;
  line-height: 62px;
  padding: 0 30px 0 30px;
  width: 49.2%;
}
.entry-summary .cart {
  display: flex;
  align-items: center;
}
.woo-quantity-input {
  outline: 0;
  border: none !important;
  text-align: center;
  width: 40px;
}
.woo-quantity-input-holder {
  text-align: center;
  padding-left: 15px;
  max-width: 100%;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.single_add_to_cart_button {
  background-color: var(--theme-secondary);
  color: #fff;
  height: 62px;
  border: none !important;
  border-radius: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 30px;
  margin-left: 20px;
}
.single_add_to_cart_button:hover {
  background-color: var(--theme-primary);
}
.entry-summary .price del {
  color: var(--theme-content);
}
.entry-summary .price ins {
  color: var(--theme-primary);
  background-color: transparent;
}
.entry-summary .product_meta {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 54px;
}
.entry-summary .product_meta>* {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 600;
  color: var(--theme-heading);
}
.woocommerce-message .button {
  margin-top: -9px;
  float: right;
}
.woocommerce-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 21px 12px 20px;
  margin-bottom: 30px;
  border: 1px solid #7a7a7a;
  display: block;
  font-size: 18px;
}
.wc-forward {
  background-color: var(--theme-secondary);
  color: #fff;
  height: 45px;
  border: none !important;
  border-radius: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 30px;
  margin-left: 20px;
  font-size: 17px;
}
.wc-forward:hover {
  background-color: var(--theme-primary);
  color: #fff;
}
.sku_wrapper span,
.posted_in a,
.tagged_as a {
  color: var(--theme-content);
  font-weight: 500;
  margin-left: 6px;
}
.posted_in a:visited,
.tagged_as a:visited {
  color: var(--theme-content);
}
.posted_in a:hover,
.tagged_as a:hover {
  color: var(--theme-primary);
}
.woocommerce-tabs {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 90px;
}
.woocommerce-tabs .wc-tabs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #ece8e5;
}
.woocommerce-tabs .wc-tabs li a {
  display: block;
  padding: 9px 40px;
  -webkit-transition: border-bottom .4s ease-out;
  -o-transition: border-bottom .4s ease-out;
  transition: border-bottom .4s ease-out;
  border-bottom: 1px solid transparent;
  font-family: Inconsolata, sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  letter-spacing: .05em;
  position: relative;
  bottom: -1px;
  position: relative;
}
.woocommerce-tabs .wc-tabs li a:before {
  -webkit-transition-delay: .4s;
  -o-transition-delay: .4s;
  transition-delay: .4s;
}
.woocommerce-tabs .wc-tabs li a:after,
.woocommerce-tabs .wc-tabs li a:before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition: -webkit-transform .5s cubic-bezier(.22, .61, .36, 1);
  transition: -webkit-transform .5s cubic-bezier(.22, .61, .36, 1);
  -o-transition: transform .5s cubic-bezier(.22, .61, .36, 1);
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
  transition: transform .5s cubic-bezier(.22, .61, .36, 1), -webkit-transform .5s cubic-bezier(.22, .61, .36, 1);
}
.woocommerce-tabs .wc-tabs li.active a:after,
.woocommerce-tabs .wc-tabs li.ui-state-active a:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
.woocommerce-tabs .wc-tab>h2 {
  display: none;
}
.woocommerce-tabs .wc-tab {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 45px;
}
.woocommerce-Reviews-title {
  font-size: 30px;
  line-height: 1;
  color: var(--theme-heading);
}
.woocommerce-Reviews .commentlist {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
.woocommerce-Reviews .comment_container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.comment-text .star-rating {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  line-height: 1;
  margin-bottom: 10px;
}
.woocommerce-Reviews .comment_container>img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  margin-right: 20px;
  border-radius: 50%;
}
#review_form_wrapper {
  margin-top: 14px;
}
.comment-text .meta {
  margin-bottom: 10px;
}
.commentlist>li {
  margin-bottom: 30px;
}
.woocommerce-Tabs-panel--reviews .comment-respond .comment-form-author {
  display: inline-block !important;
  width: calc(50% - 15px);
  padding-right: 15px;
  float: left;
}
.woocommerce-Tabs-panel--reviews .comment-respond .comment-form-email {
  display: inline-block !important;
  vertical-align: top;
  width: calc(50% - 15px);
  float: right;
}
.comment-form-email label,
.comment-form-author label {
  display: block;
}
.comment-form-author input,
.comment-form-email input {
  height: 60px;
  padding: 5px 15px;
  width: 100%;
}
.comment-form-cookies-consent {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
}
.related.products {
  margin-top: 50px;
}
.related.products>h2 {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: var(--theme-heading);
  text-transform: uppercase;
  margin-bottom: 50px;
  text-align: center;
}
.shop_table td.product-thumbnail {
  width: 72px;
  padding-right: 10px;
}
.product-name a {
  color: var(--theme-content);
}
.product-quantity .osfins-quantity-buttons {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border: none;
  height: 62px;
  line-height: 62px;
  padding: 0 30px 0 30px;
  width: 49.2%;
}
.product-quantity .osfins-quantity-buttons .quantity-label {
  display: none;
}
.product-quantity .woo-quantity-input-holder {
  margin-top: 15px;
}
.product-remove a {
  color: var(--theme-secondary);
  font-size: 28px;
  line-height: 1;
}
.coupon label {
  display: none;
}
.shop_table td.actions {
  padding: 30px 15px;
  text-align: initial;
}
.shop_table td.actions .coupon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 70%;
  float: left;
}
.coupon input,
.checkout_coupon input {
  height: 60px;
  border-radius: 0;
  padding-left: 15px;
}
.coupon .button {
  height: 60px;
  background-color: var(--theme-secondary);
  color: #fff;
  border: none !important;
  margin-left: 20px;
  border-radius: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 17px;
  padding: 10px 30px;
  text-transform: uppercase;
}
.shop_table td.actions>.button,
.wc-proceed-to-checkout>.button,
.checkout_coupon .button,
#place_order {
  float: right;
  height: 60px;
  background-color: var(--theme-secondary);
  color: #fff;
  border: none !important;
  margin-left: 20px;
  border-radius: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 17px;
  padding: 10px 30px;
  text-transform: uppercase;
}
.cart-collaterals {
  margin-top: 30px;
}
.cart_totals>h2 {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: var(--theme-heading);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: left;
}
.woocommerce-form-coupon-toggle .woocommerce-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: Inconsolata, sans-serif;
  font-size: 13px;
  line-height: 1.923em;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 40px;
}
.checkout_coupon .form-row,
.woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-additional-fields__field-wrapper .form-row,
.place-order {
  margin-right: 0px;
  margin-left: 0px;
}
.checkout_coupon .button,
#place_order {
  margin-left: 0px;
}
.woocommerce-page div.woocommerce .col2-set>* {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}
.woocommerce-billing-fields__field-wrapper label {
  display: block;
}
.woocommerce-input-wrapper,
.woocommerce-input-wrapper input {
  display: block;
  width: 100%;
}
.woocommerce-input-wrapper input {
  min-height: 60px;
  padding-left: 15px;
}
.woocommerce form .form-row .required {
  visibility: visible;
  text-decoration: none;
  color: red;
}
.woocommerce-billing-fields>h3,
.woocommerce-additional-fields>h3,
#order_review_heading {
  color: var(--theme-heading);
}
.woocommerce-additional-fields__field-wrapper .input-text {
  padding: 15px;
}
.wc_payment_methods {
  list-style: none;
  margin-left: 0px;
  padding: 0;
  color: var(--theme-heading);
}
.checkout_coupon .button:hover,
#place_order:hover {
  background-color: var(--theme-primary);
}
.widget_shopping_cart_content .cart_list {
  list-style: none;
  margin-left: 0px;
  padding: 0;
}
.widget_shopping_cart_content .mini_cart_item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.widget_shopping_cart_content .size-woocommerce_thumbnail {
  max-width: 42px;
  margin-right: 10px;
}
.widget_shopping_cart_content .remove_from_cart_button {
  margin-right: 10px;
}
.widget_shopping_cart_content .quantity {
  margin-left: 10px;
}
.woocommerce-mini-cart__buttons {
  display: flex;
}
.woocommerce-mini-cart__buttons .wc-forward {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.woocommerce-mini-cart__buttons .wc-forward:first-child {
  margin-left: 0px;
}
.woocommerce-mini-cart__total {
  margin-top: 20px;
  display: block;
}
.woocommerce-products-header {
  display: none;
}
.post-type-archive-product .osfins-woo-content {
  padding: 100px 0px;
}
.payment_method_paypal img {
  display: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 30%;
  float: left;
  padding-right: 50px;
  margin-right: 3.3333%;
}
.woocommerce-account .woocommerce-MyAccount-content {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 66.6666666667%;
  float: left;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  position: relative;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #545050;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--theme-primary);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.364em;
  letter-spacing: 0;
  color: var(--theme-heading);
}
.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register,
.woocommerce-account .woocommerce h2 {
  width: 400px;
  margin: 0 auto;
}
.woocommerce-account .woocommerce h2 {
  color: var(--theme-heading);
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: none;
  border-radius: 0;
  padding: 35px 40px 40px;
}
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.woocommerce-form-login,
.lost_reset_password {
  background: #f7f8f9;
  box-shadow: 0 3px 15px 2px rgb(0 0 0 / 2%);
  padding: 35px 40px 40px;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  display: block;
}
.woocommerce form .form-row label {
  font-size: 17px;
  font-weight: 500;
}
.woocommerce-form-login input,
.woocommerce-EditAccountForm .woocommerce-form-row input {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  height: 58px;
  border-radius: 0;
  border: 2px solid #e1e1e1;
  padding: 0 20px;
  margin: 0;
  background: #ffffff;
  -webkit-transition: background .3s;
  transition: background .3s;
  outline: 0;
}
.password-input {
  display: block;
  width: 100%;
}
.woocommerce-form-login .form-row {
  display: block;
}
.woocommerce-form-login__rememberme {
  display: flex !important;
  justify-content: flex-start;
}
.woocommerce-form-login__submit,
.woocommerce-EditAccountForm .woocommerce-Button,
.woocommerce-address-fields .button {
  height: 60px;
  background-color: var(--theme-secondary);
  color: #fff;
  padding: 10px 30px;
  margin-top: 20px;
}
.woocommerce-form-login__submit:hover,
.woocommerce-EditAccountForm .woocommerce-Button:hover,
.woocommerce-address-fields .button:hover {
  background-color: var(--theme-primary);
}
.woocommerce-form__input-checkbox {
  width: 16px !important;
  height: 26px !important;
  margin-right: 6px !important;
}
.woocommerce-message .woocommerce-Button {
  height: 40px;
  background-color: var(--theme-secondary);
  color: #fff;
  padding: 5px 30px;
}
.woocommerce-Addresses .col-1,
.woocommerce-Addresses .col-2 {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  padding-left: 0px !important;
}
.woocommerce-Address-title h3 {
  color: var(--theme-heading);
}
.woocommerce-EditAccountForm .form-row {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.woocommerce-EditAccountForm .woocommerce-form-row label {
  display: block;
  width: 100%;
}
.osfins-woo-product-image {
  position: relative;
}
.osfins-woo-product-image img {
  mix-blend-mode: normal;
}
.osfins-woo-product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px;
  text-align: center;
  background-color: rgba(0, 0, 0, .36);
  opacity: 0;
  -webkit-transition: opacity .25s ease-out;
  -o-transition: opacity .25s ease-out;
  transition: opacity .25s ease-out;
}
.osfins-woo-product-inner:hover .osfins-woo-product-image::before {
  opacity: 1;
}
select {
  position: relative;
  display: block;
  height: 48px;
  padding: 14px 20px;
  margin: 0;
  font-family: inherit;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  color: #383838;
  background-color: transparent;
  border: 1px solid #545050;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
select:disabled {
  color: inherit;
  border-color: inherit;
  background-color: #fafafa;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
.woocommerce-ordering .select2-selection.select2-selection--single {
  font-size: 18px;
  text-align: left;
  line-height: 30px;
  padding: 9px 40px;
}
/* ==========================================================================
   Select 2 Script styles (Version: 4.0.6 ) - begin
   ========================================================================== */
body .select2-container--default {
  /* just to make sure that this code overwrite styles from others plugin */
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
  margin: 0 0 1px;
}
body .select2-container--default .select2-selection--single {
  display: block;
  height: 48px;
  padding: 14px 20px;
  margin: 0;
  font-family: inherit;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  color: #383838;
  background-color: transparent;
  border: 1px solid #545050;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body .select2-container--default .select2-selection--single .select2-selection__rendered {
  display: block;
  padding: 0;
  line-height: inherit;
  color: inherit;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body .select2-container--default .select2-selection--single .select2-selection__clear {
  position: relative;
  float: right;
  margin: 0;
  font-weight: inherit;
  cursor: pointer;
}
body .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: inherit;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  color: #131313;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow:before {
  display: block;
  line-height: inherit;
  content: "\e901";
  font-family: 'wooicon';
  font-style: normal;
  font-weight: 300;
  left: 7px;
  position: relative;
}
body .select2-container--default .select2-selection--multiple {
  display: block;
  height: 48px;
  padding: 14px 20px;
  margin: 0;
  font-family: inherit;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  color: #383838;
  background-color: transparent;
  border: 1px solid #545050;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  display: block;
  padding: 0;
  line-height: inherit;
  color: inherit;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  margin: 0;
  padding: 0;
}
body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__placeholder {
  float: left;
  margin: 0;
  color: inherit;
}
body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__clear {
  position: relative;
  float: right;
  margin: 0;
  font-weight: inherit;
  cursor: pointer;
}
body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  margin: 5px 5px 0 0;
  padding: 0 10px;
  float: left;
  color: #fff;
  background-color: #131313;
  border: 0;
  border-radius: 0;
  cursor: default;
}
body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove {
  display: inline-block;
  margin: 0 3px 0 0;
  font-weight: 700;
  color: inherit;
  -webkit-transition: opacity .2s ease-out;
  -o-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  cursor: pointer;
}
body .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice__remove:hover {
  color: inherit;
  opacity: 0.8;
}
body .select2-container--default .select2-search--inline {
  float: left;
}
body .select2-container--default .select2-search--inline .select2-search__field {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  border: none !important;
  outline: none;
  -webkit-appearance: none;
}
body .select2-container--default .select2-search--inline .select2-search__field:focus {
  border-color: #131313;
}
body .select2-container--default .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
body .select2-container--default .select2-dropdown {
  position: absolute;
  top: 32px;
  left: -100000px;
  display: block;
  width: 100%;
  background-color: #fafafa;
  border: 1px solid transparent;
  border-radius: 0;
  z-index: 99999;
}
body .select2-container--default .select2-search--dropdown {
  display: block;
  padding: 14px 15px 2px;
}
body .select2-container--default .select2-search--dropdown.select2-search--hide {
  display: none;
}
body .select2-container--default .select2-search--dropdown .select2-search__field {
  width: 100%;
  padding: 4px 8px;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: 20px;
  font-weight: inherit;
  color: #383838;
  background-color: #fff;
  border: 1px solid #545050;
  outline: none;
  -webkit-appearance: none;
}
body .select2-container--default .select2-search--dropdown .select2-search__field:focus {
  color: #131313;
  background-color: #fff;
  border-color: #131313;
}
body .select2-container--default .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
body .select2-container--default .select2-results {
  display: block;
}
body .select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
body .select2-container--default .select2-results__options {
  position: relative;
  margin: 5px 0;
  padding: 2px 15px;
  list-style: none;
}
body .select2-container--default .select2-results__option {
  padding: 3px 0;
  font-size: 15px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: color 0.25s ease-out;
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
}
body .select2-container--default .select2-results__option[aria-selected] {
  cursor: pointer;
}
body .select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
body .select2-container--default .select2-results__option[aria-disabled=true] {
  color: #131313;
}
body .select2-container--default .select2-results__option[aria-selected=true],
body .select2-container--default .select2-results__option[data-selected=true] {
  color: #131313;
  background: none;
}
body .select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
body .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
body .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
body .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
body .select2-container--default .select2-results__option--highlighted[aria-selected] {
  color: #131313;
  background: none;
}
body .select2-container--default .select2-results__group {
  display: block;
  padding: 7px 0;
  cursor: default;
}
body .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
body .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding: 0;
}
body .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 0;
  right: auto;
}
body .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
body .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
body .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}
body .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
}
body .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin: 7px auto 0 5px;
}
body .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin: 0 auto 0 3px;
}
body .select2-container--default.select2-container--disabled .select2-selection--single,
body .select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #fafafa;
  cursor: default;
}
body .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear,
body .select2-container--default.select2-container--disabled .select2-selection--multiple .select2-selection__clear {
  display: none;
}
body .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
body .select2-container--default.select2-container--open .select2-selection--single,
body .select2-container--default.select2-container--open .select2-selection--multiple {
  color: #131313;
}
body .select2-container--default.select2-container--open .select2-dropdown {
  left: 0;
}
body .select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above {
  border-bottom-color: transparent;
}
body .select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below {
  border-top-color: transparent;
}
.select2-close-mask {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 0;
  opacity: 0;
  z-index: 99;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
  height: 0 !important;
  padding: 0 !important;
  line-height: 1;
  border: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
}
/* End select 2    */
.variations_form {
  display: block !important;
  width: 100%;
  position: relative;
}
.variations_form td,
.variations_form table {
  border: none;
}
.variations label {
  color: var(--theme-heading);
}
.single_variation_wrap .single_add_to_cart_button {
  margin-left: 0px;
  margin-top: 20px;
}
.reset_variations {
  margin-top: 9px;
  margin-left: 20px;
  display: inline-block;
}
.woocommerce-product-details__short-description {
  margin-top: 30px;
}
.coupon .button:hover,
.shop_table td.actions>.button:hover,
.wc-proceed-to-checkout>.button:hover,
.checkout_coupon .button:hover,
#place_order:hover {
  background-color: var(--theme-primary);
}
.woocommerce-page div.woocommerce .woocommerce-error,
.woocommerce-page div.woocommerce .woocommerce-info,
.woocommerce-page div.woocommerce .woocommerce-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px 30px;
  margin-bottom: 30px;
  border: 1px solid #dbdbdb;
}
.woocommerce-page.woocommerce-cart .woocommerce-error {
  list-style: none;
  margin: 0 0 1.5em;
}
.woocommerce-checkout .woocommerce form.checkout_coupon {
  margin-bottom: 30px;
  border: 1px solid #dbdbdb;
  padding: 20px 30px;
}
.woocommerce-checkout .woocommerce form.checkout_coupon .form-row-last {
  margin-bottom: 0px;
}
.woocommerce-product-attributes-item__value p {
  margin-bottom: 0px;
}
.osfins-woo-product-content .add_to_cart_button {
  position: relative;
  text-transform: uppercase;
}
.osfins-woo-product-content .add_to_cart_button::before {
  font-family: 'icomoon' !important;
  content: "\e963";
  display: inline-block;
  width: 15px;
  height: 29px;
  position: relative;
  vertical-align: middle;
  margin-right: 11px;
  -webkit-transition: opacity .25s ease-out;
  -o-transition: opacity .25s ease-out;
  transition: opacity .25s ease-out;
  opacity: 1;
}
.product.outofstock .button {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  color: var(--theme-heading);
  text-transform: uppercase;
}
.product.outofstock .button::before {
  content: '\e919';
  font-family: 'icomoon';
  font-style: normal;
  font-weight: 300;
  right: -5px;
  position: absolute;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.product.outofstock .button:hover::before {
  right: -10px;
}
/* End woocommerce styles  */
.search-line {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  border-bottom: 1px solid #999;
  transition: all .3s ease;
}
.search-show .search-line {
  width: 100%;
  border-bottom: 1px solid #fff;
  transition: width .5s ease .6s;
}
.osfins-google-map iframe {
  border: 0px !important;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.no-results .search-widget {
  max-width: 576px;
}
.form-control:focus {
  box-shadow: 0 0 0 0 rgba(0, 123, 255, .25);
}
.comment-respond {
  display: block;
  margin-top: 30px;
}
.comment-respond .comment-form-control:focus {
  border: 1px solid var(--theme-primary);
  outline: none;
}
.tagcloud a,
.tagcloud a:hover {
  position: relative;
  display: inline-block;
  font-size: 12px !important;
  line-height: 1;
  color: var(--theme-content);
  margin: 0px 5px 8px 0px;
  text-transform: uppercase;
  padding: 10px 15px 8px 15px;
  ;
  text-align: center;
  font-weight: 600;
  border: 1px solid var(--theme-secondary);
  border-radius: 5px;
}
.tagcloud a:hover {
  background-color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  color: #fff;
}
.is-sticky .search-btn {
  color: #fff;
}
#wp-calendar {
  width: 100%;
  margin-bottom: 0;
}
#wp-calendar caption {
  font-weight: 600;
}
#wp-calendar td,
#wp-calendar th {
  padding: 5px;
  text-align: center;
}
#wp-calendar caption {
  margin-bottom: 10px;
}
#wp-calendar>thead>tr>th,
#wp-calendar>thead>tr>td {
  border-bottom-width: 0px !important;
}
table {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #dee2e6;
}
table>thead>tr>th,
table>thead>tr>td,
table>tbody>tr>th,
table>tbody>tr>td,
table>tfoot>tr>th,
table>tfoot>tr>td {
  border-color: #dee2e6;
  border-width: 1px 1px 1px 0;
  border-style: solid;
}
table>thead>tr>th,
table>tbody>tr>th,
table>tfoot>tr>th {
  color: var(--theme-content);
  font-weight: 600;
  word-wrap: normal;
}
table>thead>tr>th.views,
table>tbody>tr>th.views,
table>tfoot>tr>th.views {
  min-width: 120px;
}
table>thead>tr>th,
table>thead>tr>td {
  border-bottom-width: 2px;
  color: var(--theme-content);
  white-space: nowrap;
}
.wp-calendar-nav a,
.wp-calendar-nav a:visited {
  color: var(--theme-heading);
}
.wp-calendar-nav a:hover {
  color: var(--theme-primary);
}
.search-widget-submit {
  padding: 0px !important;
}
.header-logo {
  max-width: 165px;
}
.header-logo img,
.footer-logo img {
  mix-blend-mode: normal !important;
}
.post-list-meta-block .pm-icon {
  display: inline-block;
  margin-right: 5px;
}
.post-list-meta-block .post-list-date,
.post-list-meta-block .post-author,
.post-list-meta-block .post-comments {
  display: inline-block;
  margin-right: 20px;
}
.post-list-meta-block a,
.post-list-meta-block a:visited {
  color: var(--theme-content);
}
.post-list-meta-block a:hover {
  color: var(--theme-primary);
}
.list-post-title a,
.list-post-title a:visited {
  color: var(--theme-secondary);
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  word-break: break-word;
}
.list-post-title a:hover {
  color: var(--theme-primary);
}
.post-list-excerpt {
  margin: 25px auto;
  display: block;
}
.post-list-thumb-block {
  display: block;
  margin-bottom: 30px;
  border-radius: 5px;
}
.post-list-thumb-block img {
  border-radius: 5px;
  background: var(--theme-secondary);
}
.post-list-item:hover img {
  mix-blend-mode: normal
}
.post-list-meta-block {
  display: block;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}
.post-list-read-more a::before {
  content: '\e919';
  font-family: 'icomoon';
  font-style: normal;
  font-weight: 300;
  right: -5px;
  position: absolute;
  font-size: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.post-list-read-more a,
.post-list-read-more a a:visited {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
  font-weight: 600;
  color: var(--theme-content);
  text-transform: uppercase;
}
.post-list-read-more a:hover {
  color: var(--theme-primary);
  text-decoration: none;
}
.post-list-read-more a:hover::before {
  right: -10px;
}
.post-list-item:not(:last-child) .blog-list-block {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #d9dfe9;
}
.post-meta-block .post-author {
  display: inline-block;
  margin-right: 10px;
}
.post-list-item .sticky .blog-list-block {
  border: 1px solid #d9dfe9;
  background-color: #fff;
  padding: 45px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.no-results .form-control {
  border: 2px solid #d9dfe9;
}
.sticky-post-sticker {
  top: 18px;
  color: #fff;
  width: auto;
  height: auto;
  right: -35px;
  display: block;
  font-size: 12px;
  position: absolute;
  padding: 12px 45px;
  background: var(--theme-primary);
  display: inline-block;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  display: none;
}
.post-list-item .sticky .blog-list-block .sticky-post-sticker {
  display: block;
}
.post_format-post-format-quote .blog-block {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #d9dfe9;
}
.default-logo-text {
  font-size: 50px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}
.default-logo-text a,
.default-logo-text a:visited {
  color: var(--theme-heading);
}
.default-logo-text a:hover {
  color: var(--theme-primary);
}
.is-sticky .default-logo-text a,
.is-sticky .default-logo-text a:visited {
  color: #fff;
}
.archive.woocommerce .osfins-woo-content {
  padding: 100px 0px;
}
/* 20. Responsive styles  */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .entry-summary .cart {
    display: block;
    position: relative;
  }
  .osfins-quantity-buttons {
    width: 215px;
  }
  .single_add_to_cart_button {
    margin-top: 20px;
    margin-left: 0px;
  }
  .woocommerce-tabs .wc-tabs li a {
    padding: 9px 15px;
  }
  .woocommerce-Tabs-panel--reviews .comment-respond .comment-form-author {
    width: 100%;
    padding-right: 0px;
  }
  .woocommerce-Tabs-panel--reviews .comment-respond .comment-form-email {
    width: 100%;
    float: left;
  }
  .comment-form-cookies-consent {
    margin: 20px 0 10px !important;
    display: flex !important;
  }
  #wp-comment-cookies-consent {
    margin-top: 7px;
    margin-right: 6px;
  }
  .submit-comment-btn {
    padding: 20px 30px !important;
  }
  .has-post-thumbnail .ps-content {
    max-width: 100%;
  }
  .page-title {
    font-size: 36px;
  }
  .portfolio-filters ul li {
    margin: 10px 20px;
  }
  .mb-xs-30 {
    margin-bottom: 30px;
  }
  .ml-xs-20 {
    margin-left: 20px;
  }
  .slide-heading {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
  }
  .slide-intro {
    font-size: 16px;
  }
  .welcome-heading {
    font-size: 30px;
  }
  .service-widget {
    margin-bottom: 50px;
  }
  .about-focus {
    padding: 40px 60px;
    display: block;
    position: relative;
    top: 60px;
    left: 0px;
    max-width: 100%;
  }
  .about-content {
    background: #fff;
    margin-left: 0px;
    margin-top: 0px;
    padding: 60px 0;
    position: relative;
    z-index: 1;
  }
  .about-img-2 {
    position: relative;
    margin-bottom: 0px;
    max-width: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
  }
  .portfolio-carousel-block {
    margin-left: auto;
    margin-left: auto;
  }
  .welcome-widget::after {
    left: -webkit-calc((100% - 340px)/2);
    left: calc((100% - 340px)/2);
  }
  .slider-content {
    padding: 150px 0;
  }
  .dropdown-toggle::after {
    content: none;
  }
  .header-mobile-logo {
    padding: 0;
    text-align: center;
  }
  .dropdown-toggle {
    color: #333;
  }
  .ph-icon {
    margin-bottom: 30px;
  }
  .fun-facts-inner {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  .counter-block {
    margin-top: 0px;
    padding: 30px;
  }
  .counter-block::after {
    content: none;
  }
  .section-title {
    font-size: 30px;
  }
  .cta-small-btn {
    margin-left: 0px;
    margin-top: 30px;
  }
  .cta-small {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .mb-xs-60 {
    margin-bottom: 60px;
  }
  .search-btn-dark {
    margin-right: auto;
    text-align: left;
    display: flex;
  }
  .search-btn i {
    line-height: 1;
    display: flex;
  }
  .slider-two .slide-heading {
    font-size: 50px;
  }
  .experience-section {
    position: relative;
    padding: 60px 0;
  }
  .experience-block {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    display: block;
    max-width: 100%;
  }
  .about-section-2 {
    padding-top: 60px;
  }
  .about-inner {
    margin-left: auto;
    margin-left: auto;
  }
  .post-row>[class*="col-"]:not(:last-child) {
    margin-bottom: 30px;
  }
  .blog-section-bg::after {
    background: transparent;
  }
  .footer-social-media ul {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .footer-social-media {
    margin-top: 30px;
  }
  .page-header-section {
    padding: 100px 0;
  }
  .faq-header {
    padding: 30px 70px 30px 40px;
  }
  .post-share ul {
    float: left;
  }
  .post-share {
    margin-top: 30px;
  }
  .ps-author-photo {
    margin-bottom: 30px;
  }
  .contact-info-widget {
    margin-bottom: 30px;
  }
  .search-form-wrapper {
    width: 80%;
  }
  .elementor-slider--skin-style1 .slider-widget .elementor-swiper-button-next,
  .elementor-slider--skin-style2 .slider-widget .elementor-swiper-button-next,
  .elementor-slider--skin-style1 .slider-widget .elementor-swiper-button-prev,
  .elementor-slider--skin-style2 .slider-widget .elementor-swiper-button-prev {
    display: none !important;
  }
  .video-overlay-content {
    display: none;
  }
  .why-choose-img-caption {
    padding: 5px 0px;
  }
  .testimonials-slider-2 .tsc-block {
    padding-left: 0px;
    padding-right: 0px;
  }
  .testi-button-next,
  .testi-button-prev {
    display: none;
  }
  .menu-bars {
    display: flex;
    justify-content: flex-end !important;
  }
  .comment-avatar {
    margin-bottom: 30px;
  }
  .comment-message {
    margin-top: 30px;
  }
  #secondary {
    padding-left: 15px;
  }
  .osfins-woo-product-list ul.products.columns-3>.product {
    width: 100%;
  }
  .osfins-woo-product-list ul.products.columns-4>.product {
    width: 100%;
  }
  .osfins-woo-product-list ul.products.columns-2>.product {
    width: 100%;
  }
  .woocommerce-product-gallery {
    margin-bottom: 40px;
  }
  .coupon .button {
    margin-left: 20px;
    margin-top: 0px;
  }
  .shop_table td.actions .coupon {
    width: 100%;
    float: none;
  }
  .shop_table td.actions>.button {
    float: left;
    margin-left: 0px;
    margin-top: 30px;
  }
  .shop_table td.product-thumbnail,
  .shop_table th.product-thumbnail,
  .woocommerce-page div.woocommerce .shop_table .product-price {
    display: none;
  }
  .product-quantity .osfins-quantity-buttons {
    padding: 0;
    width: 100%;
  }
  .woo-quantity-input-holder {
    padding-left: 0;
  }
  .woocommerce-cart .coupon .button {
    margin-left: 0px;
    margin-top: 20px;
  }
  .woocommerce-cart .wc-proceed-to-checkout>.button {
    margin-left: 0px;
    text-align: left;
    float: left;
  }
  .slider3-content {
    bottom: 150px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .shop_table td.actions .coupon {
    width: 100%;
  }
  .shop_table td.actions>.button,
  .wc-proceed-to-checkout>.button,
  .checkout_coupon .button,
  #place_order {
    float: left;
    margin-left: 0;
    margin-top: 20px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .contact-info-widget {
    margin-bottom: 30px;
  }
  .search-btn-dark {
    margin-right: 0;
    text-align: right;
  }
  .search-btn i {
    line-height: 1;
  }
  .dropdown-toggle::after {
    content: none;
  }
  .header-mobile-logo {
    padding: 10px 0;
    text-align: center;
  }
  .dropdown-toggle {
    color: #000;
  }
  .slider-content {
    padding: 50px 0;
  }
  .slide-heading {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .slide-intro {
    margin-bottom: 20px;
  }
  .welcome-widget::after {
    left: -webkit-calc((100% - 640px)/2);
    left: calc((100% - 640px)/2);
  }
  .service-widget {
    margin-bottom: 50px;
  }
  .about-focus {
    left: -30px;
  }
  .about-content {
    margin-left: 0px;
    padding: 60px 0;
  }
  .fun-facts-inner {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .counter-block {
    margin-top: 0px;
    padding: 60px;
  }
  .why-choose-content {
    margin-top: 30px;
  }
  .mb-md-60 {
    margin-bottom: 60px;
  }
  .section-title {
    font-size: 32px;
  }
  .theme-btn {
    padding: 25px 40px;
  }
  .comment-reply-wrapper {
    padding: 12px 25px;
  }
  .slider-two .slide-heading {
    font-size: 50px;
  }
  .experience-section {
    position: relative;
    padding: 60px 0;
  }
  .experience-block {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    display: block;
    max-width: 100%;
  }
  .about-section-2 {
    padding-top: 60px;
  }
  .about-inner {
    margin-left: auto;
    margin-left: auto;
  }
  .post-row>[class*="col-"]:not(:last-child) {
    margin-bottom: 30px;
  }
  .blog-section-bg::after {
    background: transparent;
  }
  .slider-two .slider-one-slide {
    min-height: 700px;
  }
  .mb-md-30 {
    margin-bottom: 30px;
  }
  .slider-two .slider-content {
    padding: 200px 50px;
  }
  .search-btn {
    font-size: 26px;
    margin-right: auto;
    display: inline-block;
  }
  .menu-bars {
    text-align: right;
    height: 24px;
  }
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 1024.98px) {
  .service-widget {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1599.98px) {
  .header-contact-info {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .about-focus {
    left: -30px;
  }
  .portfolio-carousel-block {
    margin-left: auto;
    margin-left: auto;
  }
  .slide-heading {
    font-size: 80px;
    line-height: 70px;
  }
  .slide-intro {
    font-size: 16px;
  }
  .section-title {
    font-size: 36px;
  }
  .slider-content>.container {
    max-width: 1140px;
  }
  .default-menu-cs {
    display: none !important;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-widget {
    padding: 15px;
  }
  .welcome-heading {
    font-size: 32px;
  }
  .post-meta-block {
    font-size: 14px;
  }
  .elementor-lg-breakpoint-yes>.elementor-container>.elementor-row {
    display: block !important;
  }
  .elementor-lg-breakpoint-yes>.elementor-container>.elementor-row>.elementor-column {
    width: 100% !important;
  }
  .elementor-lg-breakpoint-yes>.elementor-container>.elementor-row>.elementor-column:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .elementor .absolute-mobile {
    position: absolute;
  }
  .default-logo-text {
    font-size: 40px;
    font-weight: 700;
  }
  .post-list-date,
  .post-author,
  .post-comments {
    margin-bottom: 20px;
  }
  .cooment-meta .comment-date {
    margin-left: 0px;
    margin-top: 20px;
  }
  .comments-title,
  .comment-reply-title {
    font-size: 24px;
  }
  .comment-list-item .children {
    margin-left: 15px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
    padding-right: 50px;
    margin-right: 0%;
    margin-bottom: 40px;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .elementor .elementor-hidden-tablet {
    position: absolute;
  }
  .elementor-movement-tablet-top {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1 !important;
  }
  .elementor-movement-tablet-bottom {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    z-index: 1 !important;
  }
}
@media (min-width: 1025px) {
  .elementor .elementor-absolute-desktop {
    position: absolute;
  }
  .elementor-movement-desktop-top {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1 !important;
  }
  .elementor-movement-desktop-bottom {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    z-index: 1 !important;
  }
}
.added_to_cart {
  display: block;
  margin-top: 10px;
}
.tu-photo img {
  margin: 0 !important;
}