/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Common
# Custom Cursor
# Navigations One
# Mobile Nav
# Home Showcase
# Main Slider
# About One
# Testimonial One
# Project One
# Counter One
# Brand One
# Contact One
# News One
# Site Footer
# Services Two
# Page Header
# News Page
# Contact Page
# Google Map Two
# News Details
# Sidebar

# Testimonial Page
# Services Page
# Portfolio Page
# About Four
# About Page Team
# About Page Testimonial
# Contact seven
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --sinace-font: 'Lexend', sans-serif;
  --sinace-gray: #6e7279;
  --sinace-gray-rgb: 110, 114, 121;
  --sinace-white: #ffffff;
  --sinace-white-rgb: 255, 255, 255;
  --sinace-base: #1464de;
  --sinace-base-rgb: 228, 0, 19;
  --sinace-black: #0f213c;
  --sinace-black-rgb: 15, 33, 60;
  --sinace-primary: #edf2f8;
  --sinace-primary-rgb: 237, 242, 248;
  --sinace-bdr-color: #d9e1e9;
  --sinace-bdr-color-rgb: 217, 225, 233;
  --sinace-letter-spacing: -0.04em
}

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

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: "Lexend Deca", sans-serif;
  color: #323436;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--sinace-gray);
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: var(--sinace-font); */
  color: var(--sinace-black);
  margin: 0;
  letter-spacing: var(--sinace-letter-spacing);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--sinace-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--sinace-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--sinace-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--sinace-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}


.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--sinace-base);
  color: var(--sinace-white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 50px 14px;
  overflow: hidden;
  transition: all 0.5s linear;
  z-index: 1;
}

.thm-btn::before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 260%;
  content: "";
  top: 126%;
  left: 50%;
  background-color: var(--sinace-black);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}

.thm-btn:hover:before {
  top: -40%;
}

.thm-btn:hover {
  color: var(--sinace-white);
}

.section-title {
  position: relative;
  display: block;
  /* margin-top: -12px; */
  margin-bottom: 51px;
}

.section-title__tagline-box {
  position: relative;
  display: inline-block;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  color: var(--sinace-gray);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title__title {
  margin: 0;
  color: var(--sinace-black);
  font-size: 33px;
  line-height: 46px;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: -0.04em;
}

.section-title__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.section-title__title span::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 4px;
  right: 2px;
  height: 5px;
  background-color: var(--sinace-base);
  border-radius: 5px;
  z-index: -1;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--sinace-black);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--sinace-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--sinace-black);
  color: var(--sinace-white);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
  filter: hue-rotate(236deg);
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--sinace-base);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
}

.scroll-to-top i {
  color: var(--sinace-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
}

.scroll-to-top:hover {
  background-color: var(--sinace-black);
}

.scroll-to-top:hover i {
  color: #fff;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  /* background-color: var(--sinace-primary); */
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
  /* height: 0px; */
  /* background-color: unset !important; */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  !i;
  !;
  !@;
  !@i;
  !@;
  !;
  
  
  
  
  
  
  !;
  
  !i;
  !;
}

.main-menu {
  /* position: relative; */
  /* display: block; */
}

.main-menu__wrapper {
  /* position: relative; */
  /* display: block; */
}

.main-menu__wrapper-inner {
  /* position: relative; */
  /* display: block; */
  /* background-color: rgb(255, 255, 255); */
  /* box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); */
  z-index: 1;
}

.main-menu__wrapper-inner-content {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__top {
  position: relative;
  display: block;
  background-image: -moz-linear-gradient(90deg, rgba(254, 253, 253, 0) 0%, rgb(235, 240, 247) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(254, 253, 253, 0) 0%, rgb(235, 240, 247) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(254, 253, 253, 0) 0%, rgb(235, 240, 247) 100%);
  padding-left: 317px;
  padding-right: 314px;
  z-index: 1;
}

.main-menu__top-inner {
  /* position: relative; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: space-between; */
  /* flex-wrap: wrap; */
  /* padding: 15.5px 0; */
  /* z-index: 1; */
}

.main-menu__logo {
  /* position: absolute; */
  /* top: 0; */
  /* bottom: 0; */
  /* left: 20px; */
  /* display: flex; */
  /* align-items: center; */
  z-index: 5;
  margin-top: 6px;
}

.main-menu__logo a {
  position: relative;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.main-menu__call {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  bottom: 0;
  right: 60px;
  z-index: 2;
}

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--sinace-primary);
  border-radius: 50%;
  font-size: 18px;
  color: var(--sinace-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-icon:hover {
  background-color: var(--sinace-base);
  color: var(--sinace-white);
}

.main-menu__call-content {
  margin-left: 10px;
}

.main-menu__call-sub-title {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
}

.main-menu__call-number {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-top: 4px;
}

.main-menu__call-number a {
  color: var(--sinace-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--sinace-base);
}

.main-menu__top-left {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 30px;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  top: 2px;
}

.main-menu__contact-list li .icon i {
  font-size: 14px;
  color: var(--sinace-base);
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  font-size: 13px;
  font-weight: 400;
  color: var(--sinace-gray);
}

.main-menu__contact-list li .text p a {
  color: var(--sinace-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--sinace-base);
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__top-menu li+li {
  margin-left: 35px;
}

.main-menu__top-menu li a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: var(--sinace-gray);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__top-menu li a:hover {
  color: var(--sinace-base);
}

.main-menu__top-menu li a:before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: -17px;
  width: 1px;
  background-color: var(--sinace-gray);
  transform: rotate(10deg);
}

.main-menu__top-menu li:first-child a:before {
  display: none;
}

.main-menu__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
}

.main-menu__social a {
  position: relative;
  height: 26px;
  width: 26px;
  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;
  text-align: center;
  color: var(--sinace-white);
  background-color: var(--sinace-black);
  font-size: 11px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--sinace-white);
  background-color: var(--sinace-base);
}

.main-menu__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--sinace-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.main-menu__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.main-menu__social a+a {
  margin-left: 10px;
}

.main-menu__bottom {
  display: block;
  /* padding-left: 317px; */
  /* padding-right: 314px; */
}

.main-menu__bottom-inner {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* background-color: var(--sinace-black); */
  padding: 20px 40px;
  /* padding-right: 20px; */
  /* height: 95px; */
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 11px 0;
}

.main-menu__search-box {
  position: relative;
  display: block;
  padding: 12px 0;
}

.main-menu__search-box:before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -20px;
  width: 1px;
  background-color: rgba(var(--sinace-white-rgb), .10);
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--sinace-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--sinace-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.main-menu__btn {
  padding: 9px 40px 9px;
}

.main-menu__btn:hover {
  color: var(--sinace-base);
}

.main-menu__btn:before {
  background-color: var(--sinace-white);
}

.main-menu__btn:hover:before {
  top: -50%;
}

.stricky-header .main-menu__top {
  display: none;
}

.stricky-header .main-menu__wrapper-inner {
  box-shadow: none;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 35px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000000;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 300;
  font-weight: 500;
}

.main-menu .main-menu__list>li>a::after,
.stricky-header .main-menu__list>li>a::after {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 14px;
}

.main-menu .main-menu__list>li>a:only-child::after,
.stricky-header .main-menu__list>li>a:only-child::after {
  content: '';
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 3px;
  border-radius: 0px;
  background-color: var(--sinace-base);
  position: absolute;
  bottom: -20px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  /* color: var(--sinace-white); */
  text-shadow: 0.05px 0 0 rgb(255 255 255 / 80%);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 20px 15px;
}

.sub-menu {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 13px;
  line-height: 30px;
  color: var(--sinace-gray);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0px 8px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--sinace-white);
  letter-spacing: var(--sinace-letter-spacing-two);
  border-bottom: 1px solid var(--sinace-bdr-color);
  text-transform: uppercase;
}

.main-menu .main-menu__list>li>ul>li:last-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child>a {
  border-bottom: 0;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--sinace-primary);
  color: var(--sinace-black);
  padding-left: 5px;
  /* text-transform: uppercase; */
}

/* .main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 20%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--sinace-base);
  /* transform: translateY(-50%) scale(0); */
  -webkit-transition: 500ms;
  transition: 500ms;
} */
.sub-menu .dropdown {
  position: relative;

  
}
.sub-menu .dropdown .drop-main::before {
  position: absolute;
  top: 20%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--sinace-base);
  /* transform: translateY(-50%) scale(0); */
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  /* transform: translateY(-50%) scale(1); */
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 105%;
  box-shadow: 0 0 10px;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0px;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  /* height: 90px; */
  box-shadow: 0 0 10px;
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--sinace-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--sinace-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--sinace-white);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--sinace-base);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--sinace-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--sinace-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  /* font-family: var(--sinace-font); */
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--sinace-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  /* color: var(--sinace-base); */
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--sinace-base);
  border: none;
  outline: none;
  color: #fff;
  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;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--sinace-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  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: 30px;
  margin-top: 40px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--sinace-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--sinace-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--sinace-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--sinace-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--sinace-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--sinace-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -23px;
  margin-bottom: -23px;
}

.home-showcase__inner {
  padding: 40px 40px 36px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__image {
  position: relative;
  background-color: var(--sinace-base);
  overflow: hidden;
}

.home-showcase__image>img {
  width: 100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.home-showcase__image:hover>img {
  opacity: 0.75;
}

.home-showcase__image:hover .home-showcase__buttons {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.home-showcase__buttons__item {
  padding: 13px 20px 9px;
  width: 150px;
  text-align: center;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--sinace-black);
  margin-top: 17px;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--sinace-white, #ffffff);
}



/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  background-color: var(--sinace-black);
  z-index: 10;
}

.main-slider .item {
  background-color: var(--sinace-black);
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  z-index: 10;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.main-slider__bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(15, 33, 60, .40);
  z-index: -1;
}

.main-slider__shadow {
  position: absolute;
  top: 0;
  left: -1px;
  right: 0;
  bottom: 0;
  background-image: -moz-linear-gradient(0deg, rgb(15, 33, 60) 0%, rgba(15, 33, 60, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(15, 33, 60) 0%, rgba(15, 33, 60, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(15, 33, 60) 0%, rgba(15, 33, 60, 0) 100%);
  opacity: 0.902;
  z-index: 1;
}

.main-slider__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .21;
  z-index: 3;
}

.main-slider__shape-1 img {
  width: auto !important;
  filter: hue-rotate(236deg);
}

.main-slider__shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: lighten;
  z-index: 2;
  display: none;
}

.main-slider__shape-2 img {
  width: auto !important;
  filter: hue-rotate(207deg) brightness(1.4);
}

.main-slider__shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: darken;
  z-index: 1;
  display: none;
}

.main-slider__shape-3 img {
  width: auto !important;
}

.main-slider__shape-4 {
  position: absolute;
  bottom: 0;
  left: 0;
  mix-blend-mode: darken;
  z-index: 1;
}

.main-slider__shape-4 img {
  width: auto !important;
}

.main-slider__shape-5 {
  position: absolute;
  bottom: 0;
  left: 185px;
  mix-blend-mode: lighten;
  z-index: 1;
  display: none;
}

.main-slider__shape-5 img {
  /* width: auto !important; */
}

.main-slider__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--sinace-white);
  background-color: rgba(var(--sinace-white-rgb), .10);
  padding: 7px 29px 7px;
  border-radius: 23px;
  border: 1px solid rgba(var(--sinace-white-rgb), .10);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__title {
  position: relative;
  font-size: 37px;
  color: var(--sinace-white);
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -0.04em;
  margin-top: 16px;
  margin-bottom: 38px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
  max-width: 70%;
}

.main-slider__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn:hover {
  color: var(--sinace-base);
  /* border-radius: unset !important; */
  
  !i;
  !;
}

.main-slider__btn:before {
  background-color: var(--sinace-white);
}

.active .main-slider__title,
.active .main-slider__btn-box,
.active .main-slider__sub-title {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}


.main-slider .owl-theme .owl-nav {
  position: absolute;
  top: 41%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
}

.main-slider .owl-theme .owl-nav [class*=owl-] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: rgba(var(--sinace-black-rgb), 1);
  background-color: rgba(var(--sinace-white-rgb), .20);
  border: none;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 18px 0 !important;
}

.main-slider .owl-theme .owl-nav [class*=owl-]:hover {
  color: rgba(var(--sinace-black-rgb), 1);
  background-color: rgba(var(--sinace-white-rgb), 1);
}

.main-slider .owl-theme .owl-nav [class*=owl-]+[class*=owl-] {
  margin-top: 10px;
}


/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 110px 0 120px;
  z-index: 1;
}

.about-one__left {
  position: relative;
  display: block;
  /* margin-right: 170px; */
}

.about-one__img-box {
  position: relative;
  display: block;
}

.about-one__img {
  position: relative;
  display: block;
}

.about-one__img img {
  width: 100%;
}

.about-one__img-2 {
  position: absolute;
  bottom: -80px;
  right: -200px;
}

.about-one__img-2 img {
  width: auto;
}

.about-one__shape-1 {
  position: absolute;
  bottom: 0;
  left: 30px;
}

.about-one__shape-1 img {
  width: auto;
  filter: hue-rotate(236deg);
}

.about-one__shape-2 {
  position: absolute;
  top: 38px;
  right: -108px;
}

.about-one__shape-2 img {
  width: auto;
  filter: hue-rotate(236deg);
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-one__right .section-title {
  margin-bottom: 30px;
}

.about-one__points-and-experience {
  position: relative;
  display: block;
  border: 1px solid var(--sinace-bdr-color);
  padding: 25px 14px 14px;
  margin-top: 45px;
  margin-bottom: 50px;
}

.about-one__points-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 15px 0;
  margin-bottom: 26px;
}

.about-one__points-list {
  position: relative;
  display: block;
}

.about-one__points-list+.about-one__points-list {
  margin-left: 50px;
}

.about-one__points-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__points-list li+li {
  margin-top: 8px;
}

.about-one__points-list li .icon {
  position: relative;
  display: inline-block;
}

.about-one__points-list li .icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 9px;
  color: var(--sinace-white);
  background-color: var(--sinace-base);
  border-radius: 50%;
}

.about-one__points-list li .text {
  margin-left: 8px;
}

.about-one__points-list li .text p {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--sinace-black);
  letter-spacing: -0.04em;
}

.about-one__experience-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #eef3f8;
  padding: 8px 17px 12px;
}

.about-one__experience-icon {
  position: relative;
  display: inline-block;
  top: 6px;
}

.about-one__experience-icon span {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--sinace-base);
}

.about-one__experience-text {
  position: relative;
  margin-left: 20px;
}

.about-one__experience-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.about-one__btn-box {
  position: relative;
  display: inline-block;
  margin-top: 40px;
}

.about-one__shape-3 {
  position: absolute;
  right: -109px;
  top: -33px;
}

.about-one__shape-3 img {
  width: auto;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  background-color: #eef3f8;
  padding: 120px 0 360px;
  z-index: 1;
}

.services-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 414px;
  opacity: .15;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.services-one__top {
  position: relative;
  display: block;
  margin-bottom: 51px;
}

.services-one__left {
  position: relative;
  display: block;
}

.services-one__left .section-title {
  margin-bottom: 0;
}

.services-one__right {
  position: relative;
  display: block;
}

.services-one__text {
  margin-top: 13px;
}

.services-one__bottom {
  position: relative;
  display: block;
}

.services-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-one__title-box {
  position: relative;
  display: block;
  background-color: var(--sinace-white);
  padding: 24px 30px 60px;
  z-index: 1;
}

.services-one__title-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--sinace-black);
  background-position: center top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}


.services-one__single:hover .services-one__title-box::before {
  transform: scaleY(1.0);
}

.services-one__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.services-one__title a {
  color: #222232;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__title a {
  color: var(--sinace-white);
}

.services-one__img-box {
  position: relative;
  display: block;
}

.services-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.services-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--sinace-black-rgb), .30);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: 1;
}

.services-one__single:hover .services-one__img:before {
  transform: translateY(0);
  width: 100%;
}

.services-one__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.05);
}

.services-one__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  top: -38px;
  right: 20px;
  border-radius: 50%;
  background-color: var(--sinace-base);
  z-index: 2;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--sinace-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
  transform: scale(0.9);
}

.services-one__read-more {
  position: relative;
  display: block;
}

.services-one__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  color: var(--sinace-white);
  padding: 11px 30px 12px;
  background-color: var(--sinace-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__read-more a:hover {
  background-color: var(--sinace-base);
}

.services-one__read-more a span {
  font-size: 16px;
}


/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: #eef3f8;
  padding: 120px 0 99px;
  z-index: 1;
}

.testimonial-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimonial-one__left {
  position: relative;
  display: block;
  z-index: 5;
}

.testimonial-one__left .section-title {
  margin-bottom: 22px;
}

.testimonial-one__left-text {
  position: relative;
  display: block;
}

.testimonial-one__rounded-text {
  position: relative;
  display: block;
  margin-top: 35px;
  z-index: 1;
}

.testimonial-one__curved-circle-box {
  position: relative;
  display: block;
  height: 135px;
  width: 135px;
  border-radius: 50%;
  z-index: 2;
}

.testimonial-one__curved-circle-box .curved-circle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--sinace-black);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: .4em;
}

.testimonial-one__icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-one__icon img {
  width: auto !important;
  filter: hue-rotate(236deg);
}

.testimonial-one__right {
  position: relative;
  display: block;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  text-align: center;
}

.testimonial-one__content {
  position: relative;
  display: block;
  text-align: center;
  padding: 20px 20px 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: -10px 0px 60px 0px rgba(0, 0, 0, 0.07);
  z-index: 1;
}

.testimonial-one__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-color: var(--sinace-base);
  z-index: -1;
}

.testimonial-one__img {
  position: relative;
  display: block;
  width: 53px;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.testimonial-one__img::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  right: -7px;
  bottom: -7px;
  background-color: var(--sinace-white);
  border: 2px solid var(--sinace-base);
  border-radius: 50%;
  z-index: -1;
}

.testimonial-one__img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-one__ratting {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 57px;
  margin-bottom: 12px;
}

.testimonial-one__ratting span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--sinace-base);
}

.testimonial-one__ratting span+span {
  margin-left: 2px;
}

.testimonial-one__text {
  font-weight: 400;
  font-size: 14px;
}

.testimonial-one__client-info {
  position: relative;
  display: block;
  margin-top: 37px;
}

.testimonial-one__client-info h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.testimonial-one__client-info h3 a {
  color: var(--sinace-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__client-info h3 a:hover {
  color: var(--sinace-base);
}

.testimonial-one__client-info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  margin-top: 1px;
}

.testimonial-one__shape-1 {
  position: absolute;
  top: 10px;
  left: 0;
  border-top: 40px solid var(--sinace-base);
  border-left: 135px solid transparent;
  border-right: 135px solid transparent;
  z-index: -1;
  padding-bottom: 5;!;!i;!;
}

.testimonial-one__shape-2 {
  position: absolute;
  bottom: -20px;
  left: 0;
  border-top: 20px solid var(--sinace-white);
  border-left: 136px solid transparent;
  z-index: -1;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.project-one .container {
  max-width: 1800px;
}

.project-one__bottom {
  position: relative;
  display: block;
}

.project-one__carousel {
  position: relative;
  display: block;
}

.project-one__single {
  position: relative;
  display: block;
}

.project-one__img-box {
  position: relative;
  display: block;
}

.project-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--sinace-black-rgb), .60);
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 1;
}

.project-one__single:hover .project-one__img:before {
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.project-one__img img {
  width: 100%;
  transition: all 500ms ease;
  transform: scale(1);
}

.project-one__single:hover .project-one__img img {
  transform: scale(1.05);
}

.project-one__content {
  position: relative;
  display: block;
  background-color: var(--sinace-black);
  padding: 33px 50px 47px;
  margin-top: -110px;
  margin-right: 260px;
  background-position: center bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 2;
}

.project-one__single:hover .project-one__content {
  transform: scaleY(1.0);
}

.project-one__content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sinace-base);
}

.project-one__content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-top: 1px;
}

.project-one__content h3 a {
  color: var(--sinace-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__content h3 a:hover {
  color: var(--sinace-base);
}

.project-one__arrow {
  position: absolute;
  top: 0;
  right: -50px;
}

.project-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 16px;
  color: var(--sinace-white);
  background-color: var(--sinace-base);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__single:hover .project-one__arrow a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.project-one__arrow a:hover {
  color: var(--sinace-black);
  background-color: var(--sinace-white);
}

.project-one__carousel.owl-theme .owl-nav {
  position: relative;
  display: block;
  margin: 30px 0 0;
}

.project-one__carousel.owl-theme .owl-nav .owl-next {
  height: 52px;
  width: 52px;
  line-height: 52px;
  border-radius: 50%;
  color: var(--sinace-black);
  background-color: var(--sinace-primary);
  font-size: 16px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__carousel.owl-theme .owl-nav .owl-prev {
  height: 52px;
  width: 52px;
  line-height: 52px;
  border-radius: 50%;
  color: var(--sinace-black);
  background-color: var(--sinace-primary);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
}

.project-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.project-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.project-one__carousel.owl-theme .owl-nav .owl-next span,
.project-one__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-one__carousel.owl-theme .owl-nav .owl-next:hover,
.project-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--sinace-base);
  color: var(--sinace-white);
}


/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  padding-bottom: 50px;
  margin-top: 60px;
}

.counter-one__inner {
  position: relative;
  display: block;
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--sinace-primary);
  padding: 100px 0 115px;
  z-index: 1;
}

.counter-one__shadow {
  content: "";
  position: absolute;
  top: 0;
  left: 186px;
  bottom: 0;
  width: 459px;
  background-image: -moz-linear-gradient(0deg, rgb(235, 241, 247) 0%, rgba(235, 241, 247, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(235, 241, 247) 0%, rgba(235, 241, 247, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(235, 241, 247) 0%, rgba(235, 241, 247, 0) 100%);
  z-index: 1;
}

.counter-one__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 78.7%;
  opacity: .10;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.counter-one__left {
  position: relative;
  display: block;
  z-index: 2;
}

.counter-one__left .section-title {
  margin-bottom: 30px;
}

.counter-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
  z-index: 5;
}

.counter-one__count-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.counter-one__count-box li {
  position: relative;
  text-align: center;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  margin-bottom: 21px;
}

.counter-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background-color: var(--sinace-white);
  margin: 0 auto;
  z-index: 1;
}

.counter-one__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--sinace-black);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.counter-one__count-box li:hover .counter-one__icon:before {
  transform: scaleX(1);
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 63px;
  color: var(--sinace-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-one__count-box li:hover .counter-one__icon span {
  transform: scale(0.9);
  color: var(--sinace-white);
}

.counter-one__count {
  position: relative;
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
}

.counter-one__count h3 {
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  color: var(--sinace-black);
  letter-spacing: 0;
}

.counter-one__bottom {
  position: relative;
  display: block;
}

.counter-one__bottom .container {
  max-width: 1280px;
}

.counter-one__bottom-inner {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  padding: 31px 40px 34px;
  padding-right: 0;
  margin-top: -40px;
  z-index: 1;
}

.counter-one__bottom-text {
  font-size: 20px;
}

.counter-one__bottom-text a {
  font-weight: 600;
  color: var(--sinace-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__bottom-text a:hover {
  color: var(--sinace-black);
}

.counter-one__call-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 329px;
  width: 100%;
  background-color: var(--sinace-base);
  display: flex;
  align-items: center;
  padding-left: 65px;
  padding-right: 40px;
  padding-top: 33px;
  padding-bottom: 32px;
}

.counter-one__call-box p {
  font-size: 18px;
  color: var(--sinace-white);
}

.counter-one__call-box p a {
  font-weight: 500;
  color: var(--sinace-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__call-box p a:hover {
  color: var(--sinace-black);
}

.counter-one__call-icon {
  position: absolute;
  top: 50%;
  left: -27px;
  transform: translateY(-50%);
}

.counter-one__call-icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  font-size: 19px;
  color: var(--sinace-base);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.counter-one__call-icon span:hover {
  color: var(--sinace-white);
  background-color: var(--sinace-black);
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  padding: 60px 0 110px;
}

.brand-one__title {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 1170px;
  text-align: center;
  margin: 0 auto;
}

.brand-one__title:before {
  position: absolute;
  left: 0;
  top: 14px;
  content: "";
  height: 1px;
  background-color: var(--sinace-bdr-color);
  max-width: 530px;
  /* width: 100%; */
  transform: translateY(-50%);
}

.brand-one__title:after {
  position: absolute;
  top: 14px;
  right: 0;
  content: "";
  height: 1px;
  background-color: var(--sinace-bdr-color);
  /* max-width: 530px; */
  /* width: 100%; */
  transform: translateY(-50%);
}

.brand-one__carousel {
  position: relative;
  display: block;
}

.brand-one__single {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.brand-one__img:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: var(--sinace-primary); */
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  /* transition: .5s; */
  /* z-index: -1; */
}

.brand-one__single:hover .brand-one__img:before {
  opacity: 1;
}

.brand-one__img {
  position: relative;
  display: inline-block;
  z-index: 10;
}

.brand-one__img>img {
  position: relative;
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.8;
  padding: 30px;
}

.brand-one__single:hover .brand-one__img>img {
  opacity: 1;
}

.brand-one__carousel.owl-theme .owl-nav {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
}

.brand-one__carousel .owl-nav.disabled {
  display: inherit;
}

.brand-one__carousel.owl-theme .owl-nav .owl-next {
  height: 27px;
  width: 26px;
  line-height: 26px;
  border-radius: 0;
  color: var(--sinace-black);
  background-color: var(--sinace-primary);
  font-size: 14px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.brand-one__carousel.owl-theme .owl-nav .owl-prev {
  height: 27px;
  width: 26px;
  line-height: 26px;
  border-radius: 0;
  color: var(--sinace-black);
  background-color: var(--sinace-primary);
  font-size: 14px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: inline-block;
}

.brand-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 2.5px;
}

.brand-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 2.5px;
}

.brand-one__carousel.owl-theme .owl-nav .owl-next span,
.brand-one__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-one__carousel.owl-theme .owl-nav .owl-next:hover,
.brand-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--sinace-base);
  color: var(--sinace-white);
}


/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background-color: var(--sinace-black);
  z-index: 1;
}

.contact-one::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  height: 1px;
  width: 1170px;
  background-color: var(--sinace-white);
  transform: translateX(-50%);
  z-index: 1;
}

.contact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .60;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.contact-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.contact-one__shape-1 img {
  width: auto;
}

.contact-one__left {
  position: relative;
  display: block;
  margin-right: 100px;
  padding: 50px 50px 50px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
  height: 58px;
  width: 100%;
  border: none;
  background-color: var(--sinace-primary);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--sinace-gray);
  display: block;
  font-weight: 400;
}

.contact-one__input-box textarea {
  font-size: 14px;
  color: var(--sinace-gray);
  height: 138px;
  width: 100%;
  background-color: var(--sinace-primary);
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.contact-one__input-box.text-message-box {
  height: 138px;
}

.contact-one__btn {
  border: none;
}

.contact-one__right {
  position: relative;
  display: block;
}

.contact-one__right .section-title {
  margin-bottom: 41px;
}

.contact-one__right .section-title__tagline {
  color: var(--sinace-white);
}

.contact-one__right .section-title__title {
  color: var(--sinace-white);
}

.contact-one__points {
  position: relative;
  display: block;
}

.contact-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-one__points li+li {
  margin-top: 20px;
}

.contact-one__points li .icon {
  position: relative;
  display: inline-block;
}

.contact-one__points li .icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 22px;
  color: var(--sinace-white);
  background-color: var(--sinace-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__points li .icon span:hover {
  color: var(--sinace-base);
  background-color: var(--sinace-white);
}

.contact-one__points li .text {
  position: relative;
  display: block;
  margin-left: 30px;
}

.contact-one__points li .text p {
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sinace-white);
}

.contact-one__points li .text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--sinace-white);
  letter-spacing: 0;
  margin-top: 1px;
}

.contact-one__points li .text h3 a {
  color: var(--sinace-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__points li .text h3 a:hover {
  color: var(--sinace-base);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

.contact-page__left {
  position: relative;
  display: block;
}

.contact-page__form-box {
  position: relative;
  display: block;
  padding: 50px 50px 50px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"] {
  height: 58px;
  width: 100%;
  border: none;
  background-color: var(--sinace-primary);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--sinace-gray);
  display: block;
  font-weight: 400;
}

.contact-page__input-box textarea {
  font-size: 14px;
  color: var(--sinace-gray);
  height: 138px;
  width: 100%;
  background-color: var(--sinace-primary);
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.contact-page__input-box.text-message-box {
  height: 138px;
}

.contact-page__btn {
  border: none;
}

.contact-page__right {
  position: relative;
  display: block;
  margin-left: 100px;
}

.contact-page__right .section-title {
  margin-bottom: 41px;
}

.contact-page__points {
  position: relative;
  display: block;
}

.contact-page__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-page__points li+li {
  margin-top: 20px;
}

.contact-page__points li .icon {
  position: relative;
  display: inline-block;
}

.contact-page__points li .icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 22px;
  color: var(--sinace-white);
  background-color: var(--sinace-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__points li .icon span:hover {
  color: var(--sinace-white);
  background-color: var(--sinace-black);
}

.contact-page__points li .text {
  position: relative;
  display: block;
  margin-left: 30px;
}

.contact-page__points li .text p {
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sinace-gray);
}

.contact-page__points li .text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--sinace-black);
  letter-spacing: 0;
  margin-top: 1px;
}

.contact-page__points li .text h3 a {
  color: var(--sinace-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__points li .text h3 a:hover {
  color: var(--sinace-base);
}



/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
  position: relative;
  display: block;
  padding: 50px 0 30px;
  z-index: 1;
}

.news-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
}

.news-one__img-box {
  position: relative;
  display: block;
}

.news-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-one__img img {
  width: 100%;
  transition: all 500ms ease;
  transform: scale(1);
}

.news-one__single:hover .news-one__img img {
  transform: scale(1.05);
}

.news-one__img>a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--sinace-black-rgb), 0.4);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--thm-base);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30%);
}

.news-one__img>a>span {
  position: relative;
}

.news-one__img>a>span::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--sinace-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.news-one__img>a>span::after {
  content: '';
  transition: all 500ms ease;
  width: 2px;
  height: 20px;
  background-color: var(--sinace-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-one__img>a:hover>span::before,
.news-one__img>a:hover>span::after {
  background-color: var(--sinace-white);
}

.news-one__single:hover .news-one__img>a {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.news-one__date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--sinace-base);
  padding: 10px 20px 12px;
}

.news-one__date p {
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  color: var(--sinace-white);
}

.news-one__content {
  position: relative;
  display: block;
  padding: 22px 40px 34px;
  background-position: center top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(1);
}

.news-one__single:hover .news-one__content {
  transform: scaleY(0.0);
}

.news-one__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-one__meta li {
  position: relative;
  display: flex;
  align-items: center;
}

.news-one__meta li+li {
  margin-left: 13px;
}

.news-one__meta li .icon {
  position: relative;
  display: inline-block;
}

.news-one__meta li .icon span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--sinace-base);
}

.news-one__meta li .text {
  margin-left: 4px;
}

.news-one__meta li .text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.news-one__meta li>span {
  font-size: 14px;
  margin-right: 12px;
}

.news-one__title {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  margin-top: 4px;
  padding-bottom: 17px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--sinace-bdr-color);
  min-height: 120px;
}

.news-one__title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 70px;
  background-color: var(--sinace-base);
}

.news-one__title a {
  color: var(--sinace-black);
}

.news-one__text {
  font-size: 15px;
}

.news-one__hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 2;
}

.news-one__single:hover .news-one__hover {
  transform: scaleY(1.0);
}

.news-one__hover-content {
  position: relative;
  display: block;
  padding: 18px 40px 23px;
}

.news-one__hover-title {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  line-height: 34px;
  margin-top: 4px;
  padding-bottom: 17px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--sinace-bdr-color);
}

.news-one__hover-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 70px;
  background-color: var(--sinace-base);
}

.news-one__hover-title a {
  color: var(--sinace-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__hover-title a:hover {
  color: var(--sinace-base);
}

.news-one__hover-text {
  font-size: 15px;
}

.news-one__hover-btn-box {
  position: relative;
  display: block;
}

.news-one__hover-btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--sinace-black);
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  color: var(--sinace-white);
  padding: 15px 40px 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__hover-btn-box a:hover {
  color: var(--sinace-base);
}

.news-one__hover-btn-box a span {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--sinace-black);
  overflow: hidden;
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.site-footer__shape-1 {
  position: absolute;
  top: -105px;
  right: -30px;
  opacity: .10;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.site-footer__shape-1 img {
  width: auto;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 93px 0 60px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 13px;
  /* padding-left: 13px; */
}

.footer-widget__title-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 6px solid transparent;
  /* border-left: 7px solid var(--sinace-base); */
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
}

.footer-widget__title {
  font-size: 20px;
  color: var(--sinace-white);
  line-height: 30px;
  font-weight: 600;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: -26px;
  margin-top: 7px;
}

.footer-widget__logo {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.footer-widget__about-text {
  font-size: 15px;
  font-weight: 400;
  color: #7e8a9b;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.site-footer__social a {
  position: relative;
  height: 42px;
  width: 42px;
  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;
  text-align: center;
  color: var(--sinace-white);
  background-color: #0b1a31;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--sinace-base);
  background-color: var(--sinace-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--sinace-white);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a+a {
  margin-left: 10px;
}

.footer-widget__link {
  position: relative;
  display: block;
  margin-left: 69px;
}

.footer-widget__link-list {
  position: relative;
  display: block;
}

.footer-widget__link-list li+li {
  margin-top: 5px;
}

.footer-widget__link-list li a {
  position: relative;
  color: #7e8a9b;
  font-size: 15px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-decoration: none;
}

.footer-widget__link-list li a:hover {
  color: var(--sinace-white);
}

.footer-widget__newsletter {
  position: relative;
  display: block;
}

.footer-widget__newsletter .footer-widget__title-box {
  margin-bottom: 22px;
}

.footer-widget__newsletter-form-input-box {
  position: relative;
  display: block;
}

.footer-widget__newsletter-form-input-box input[type="email"] {
  height: 50px;
  width: 100%;
  background-color: var(--sinace-white);
  outline: none;
  font-size: 13px;
  color: var(--sinace-gray);
  font-weight: 400;
  border: none;
  padding-right: 70px;
  padding-left: 20px;
}

.footer-widget__newsletter-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  border: none;
  width: 40px;
  height: 40px;
  background-color: var(--sinace-base);
  border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget__newsletter-btn:hover {
  background-color: var(--sinace-black);
}

.footer-widget__newsletter-btn span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--sinace-white);
}

.footer-widget__Contact-list {
  position: relative;
  display: block;
  margin-top: 20px;
}

.footer-widget__Contact-list li {
  position: relative;
  display: flex;
}

.footer-widget__Contact-list li+li {
  margin-top: 6px;
}

.footer-widget__Contact-list li .icon {
  margin-right: 14px;
}

.footer-widget__Contact-list li .icon span {
  color: var(--sinace-base);
  font-size: 15px;
}

.footer-widget__Contact-list li .text a {
  font-size: 15px;
  font-weight: 600;
  color: var(--sinace-white);
  line-height: 26px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__Contact-list li .text a:hover {
  color: var(--sinace-base);
  transition: all 500ms ease;
}

.footer-widget__portfolio {
  position: relative;
  display: block;
  margin-right: 10px;
}

.footer-widget__portfolio .footer-widget__title-box {
  margin-bottom: 22px;
}

.footer-widget__portfolio-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.footer-widget__portfolio-list li {
  position: relative;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}

.footer-widget__portfolio-img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 80px;
  z-index: 1;
}

.footer-widget__portfolio-img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--sinace-black-rgb), .30);
  transition: all 700ms ease;
  transform: translateY(-100%);
  z-index: 1;
}

.footer-widget__portfolio-list li:hover .footer-widget__portfolio-img:before {
  transform: translateY(0%);
}

.footer-widget__portfolio-img img {
  width: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.footer-widget__portfolio-list li:hover .footer-widget__portfolio-img img {
  transform: scale(1.1) rotate(2deg);
}

.footer-widget__portfolio-img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--sinace-white);
  transform: translateY(100px);
  opacity: 0;
  transition: all 700ms ease;
  z-index: 2;
}

.footer-widget__portfolio-list li:hover .footer-widget__portfolio-img a {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.footer-widget__portfolio-list li .footer-widget__portfolio-img a:hover {
  color: var(--sinace-base);
}

.site-footer__bottom {
  position: relative;
  display: block;
  padding: 12px 0 12px;
  /* background-color: #0f213c; */
  border-top: 1px solid;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
}

.site-footer__bottom-text {
  color: var(--sinace-white);
  font-size: 15px;
  font-weight: 400;
}

.site-footer__bottom-text a {
  color: var(--sinace-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: #1070ff;
}

/*--------------------------------------------------------------
# About Four
--------------------------------------------------------------*/
.about-four {
  position: relative;
  display: block;
  padding: 120px 0 50px;
}

.about-four__left {
  position: relative;
  display: block;
  margin-right: 50px;
}

.about-four__img-box {
  position: relative;
  display: block;
}

.about-four__shape-1 {
  position: absolute;
  left: -23px;
  top: 40px;
  /* border-style: solid; */
  /* border-width: 6px; */
  /* border-color: rgb(228, 0, 19); */
  background-color: rgba(24, 41, 57, 0);
  /* width: 538px; */
  /* height: 429px; */
}

.about-four__img {
  position: relative;
  display: block;
  z-index: 1;
}

.about-four__img img {
  width: 100%;
  text-align: center;
  /* margin: 0 auto; */
  /* display: block; */
}

.about-four__img-two {
  position: absolute;
  top: 0;
  right: -110px;
  z-index: 2;
}

.about-four__img-two img {
  width: auto;
}

.about-four__right {
  position: relative;
  display: block;
  margin-left: 50px;
  margin-top: 40px;
}

.about-four__right .section-title {
  margin-bottom: 31px;
}

.about-four__points {
  position: relative;
  display: block;
  margin-top: 31px;
  margin-bottom: 45px;
}

.about-four__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-four__points li+li {
  margin-top: 9px;
}

.about-four__points li .icon {
  position: relative;
  display: inline-block;
}

.about-four__points li .icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  font-size: 9px;
  color: var(--sinace-white);
  background-color: var(--sinace-base);
  border-radius: 50%;
}

.about-four__points li .text {
  margin-left: 22px;
}

.about-four__points li .text p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--sinace-black);
}

.about-four__btn-box {
  position: relative;
  display: inline-block;
}

.about-four__shape-2 {
  position: absolute;
  bottom: 5px;
  right: -145px;
}

.about-four__shape-2 img {
  width: auto;
}


/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  padding: 80px 0 30px;
  z-index: 1;
  display: block;
  /* height: 1030px; */
}

.services-two__bg-box {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 988px;
  background-color: var(--sinace-black);
  z-index: -1;
}

.services-two__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  bottom: 0;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  BACKGROUND-SIZE: 100% 100%;
}

.services-two .section-title__tagline {
  color: #7e8a9b;
}

.services-two .section-title__title {
  color: var(--sinace-white);
}

.services-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  box-shadow: 0 0 10px #767474;
}

.services-two__img-box {
  position: relative;
  display: block;
}

.services-two__img {
  position: relative;
  display: block;
}

.services-two__img img {
  width: 100%;
  /* height: 200px; */
}

.services-two__icon {
  position: absolute;
  bottom: 0;
  right: 0;
}

.services-two__icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 67px;
  font-size: 32px;
  color: var(--sinace-white);
  background-color: var(--sinace-base);
}

.services-two__content {
  position: relative;
  display: block;
  padding: 23px 30px 25px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  MIN-HEIGHT: 108PX;
}

.services-two__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  background-color: var(--sinace-base);
}

.services-two__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
}

.services-two__title a {
  color: #222232;
  font-size: 14px;
  /* line-height: 10px; */
  text-transform: uppercase;
}

.services-two__text {
  margin-top: 11px;
}

.services-two__hover-single {
  position: absolute;
  /* top: 0; */
  bottom: 0;
  left: 0;
  right: 0;
  background-position: bottom left;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  z-index: 2;
  height: 100px;
}

.services-two__single:hover .services-two__hover-single {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.services-two__hover-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  /* display: none; */
}

.services-two__hover-img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  background-color: var(--sinace-base);
  z-index: 2;
}

.services-two__hover-img::after {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(1 28 66);
  z-index: 1;
  height: 108px;
}

.services-two__hover-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 67px;
  top: 0;
  right: 0;
  background-color: var(--sinace-base);
  z-index: 2;
}

.services-two__hover-icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--sinace-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-two__hover-single:hover .services-two__hover-icon span {
  transform: scale(0.9);
}

.services-two__hover-content {
  position: absolute;
  bottom: 25px;
  left: 30px;
  z-index: 2;
  padding: 0px 15px;
  /* padding-top: 40px !important; */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  !i;
  !;
}

.services-two__hover-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  /* padding-right: 30px; */
  color: #fff;
}

.services-two__hover-title a {
  color: var(--sinace-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 16px;
  padding-right: 10px;
  text-transform: uppercase;
}

.services-two__hover-title a:hover {
  /* color: var(--sinace-base); */
}

.services-two__hover-text {
  margin-top: 11px;
  color: rgba(var(--sinace-white-rgb), .60);
}


/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--sinace-base);
  padding: 73px 60px 80px;
  padding-left: 370px;
}

.cta-one__title {
  position: relative;
  display: block;
}

.cta-one__title h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: var(--sinace-white);
}

.cta-one__btn-box {
  position: relative;
  top: 4px;
}

.cta-one__btn {
  color: var(--sinace-black);
  background-color: var(--sinace-white);
}

.cta-one__img {
  position: absolute;
  top: 0;
  left: 0;
}

.cta-one__img img {
  width: auto;
}



/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.news-details__left {
  position: relative;
  display: block;
}

.news-details__img {
  position: relative;
  display: block;
}

.news-details__img img {
  width: 100%;
}

.news-details__date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--sinace-base);
  padding: 10px 20px 12px;
}

.news-details__date p {
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  color: var(--sinace-white);
}

.news-details__content {
  position: relative;
  display: block;
  padding: 22px 42px 35px;
  border-bottom: 1px solid var(--sinace-bdr-color);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.news-details__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-details__meta li {
  position: relative;
  display: flex;
  align-items: center;
}

.news-details__meta li+li {
  margin-left: 32px;
}

.news-details__meta li .icon {
  position: relative;
  display: inline-block;
  margin-right: 4px;
}

.news-details__meta li .icon span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--sinace-base);
}

.news-details__meta li .text {
  position: relative;
  display: block;
}

.news-details__meta li .text p {
  font-size: 14px;
  font-weight: 400;
  color: #7b7e84;
}

.news-details__meta li>span {
  position: absolute;
  top: 0;
  left: -20px;
  font-size: 14px;
  color: #d9e1e9;
}

.news-details__title-1 {
  position: relative;
  display: block;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 10px;
  margin-top: 10px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--sinace-bdr-color);
}

.news-details__title-1::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 70px;
  background-color: var(--sinace-base);
}

.news-details__text-1 {
  font-size: 15px;
}

.news-details__text-2 {
  margin-top: 30px;
  margin-bottom: 31px;
}

.news-details__bottom {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 29px;
  margin-bottom: 31px;
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags span {
  color: var(--sinace-black);
  font-size: 20px;
  margin-right: 7px;
  font-weight: 600;
  letter-spacing: var(--sinace-letter-spacing);
}

.news-details__tags a {
  position: relative;
  color: var(--sinace-white);
  font-size: 13px;
  background-color: var(--sinace-base);
  display: inline-block;
  padding: 4px 20px 6px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__tags a:hover {
  background-color: var(--sinace-black);
  color: var(--sinace-white);
}

.news-details__tags a+a {
  margin-left: 7px;
}

.news-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-details__social-list a {
  position: relative;
  height: 43px;
  width: 43px;
  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;
  text-align: center;
  color: var(--sinace-black);
  background-color: var(--sinace-primary);
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.news-details__social-list a:hover {
  color: var(--sinace-white);
}

.news-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--sinace-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scalex(0);
  transform: scaleX(0);
  z-index: -1;
}

.news-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scalex(1);
  transform: scalex(1);
}

.news-details__social-list a+a {
  margin-left: 10px;
}

.news-details__pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 54px;
}

.news-details__pagenation {
  position: relative;
  display: block;
}

.news-details__pagenation li {
  position: relative;
  float: left;
  font-size: 20px;
  color: var(--sinace-black);
  font-weight: 600;
  background-color: var(--sinace-primary);
  line-height: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 53px;
  padding-bottom: 47px;
  letter-spacing: var(--sinace-letter-spacing);
}

.news-details__pagenation li+li {
  margin-left: 30px;
}

.news-details__pagenation li:hover {
  background-color: var(--sinace-black);
  color: var(--sinace-white);
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
  padding-left: 12px;
}

.sidebar__title::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  border-top: 6px solid transparent;
  border-left: 7px solid var(--sinace-base);
  border-bottom: 6px solid transparent;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--sinace-base);
  color: var(--sinace-white);
  font-size: 18px;
  font-weight: 500;
  padding-left: 50px;
  height: 76px;
  width: 100%;
  padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--sinace-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--sinace-white);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--sinace-white);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--sinace-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--sinace-white);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--sinace-white);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--sinace-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 46px 30px 30px;
  background-color: var(--sinace-primary);
  overflow: hidden;
  z-index: 1;
}

.sidebar__post .sidebar__title {
  margin-left: 20px;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 20px 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}

.sidebar__post-list li+li {
  margin-top: 10px;
}

.sidebar__post-image {
  margin-right: 17px;
}

.sidebar__post-image>img {
  width: 70px;
}

.sidebar__post-content {
  position: relative;
  top: -3px;
}

.sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
}

.sidebar__post-content-meta {
  line-height: 23px;
  font-weight: 400;
  font-size: 14px;
  color: var(--sinace-gray);
  letter-spacing: normal;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--sinace-base);
  font-size: 13px;
  padding-right: 4px;
}

.sidebar__post-content h3 a {
  color: var(--sinace-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--sinace-primary);
  padding: 46px 30px 33px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category .sidebar__title {
  margin-bottom: 9px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li+li {
  margin-top: 4px;
}

.sidebar__category-list li a {
  color: var(--sinace-gray);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 7px 20px 7px;
  font-weight: 400;
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  color: var(--sinace-black);
}

.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  color: var(--sinace-black);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--sinace-base);
  text-align: center;
  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: 15px;
}

.sidebar__category-list li a:hover span {
  color: var(--sinace-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--sinace-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background: var(--sinace-primary);
  padding: 45px 45px 50px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 13px;
  color: var(--sinace-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--sinace-white);
  display: inline-block;
  padding: 4px 20px 6px;
  margin-left: 6px;
  font-weight: 400;
}

.sidebar__tags-list a+a {
  margin-left: 6px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--sinace-white);
  background: var(--sinace-base);
}
/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0 0px;
  z-index: 1;
}

.testimonial-two__bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 483px;
  background-image: -moz-linear-gradient(90deg, rgba(254, 253, 253, 0) 0%, rgb(237, 242, 248) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(254, 253, 253, 0) 0%, rgb(237, 242, 248) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(254, 253, 253, 0) 0%, rgb(237, 242, 248) 100%);
  z-index: -1;
}

.testimonial-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 483px;
  opacity: .50;
  mix-blend-mode: luminosity;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.testimonial-two__bottom {
  position: relative;
  display: block;
  padding-bottom: 70px;
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 40px 50px 33px;
  padding-right: 160px;
  z-index: 1;
}

.testimonial-two__client-img-and-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__client-img {
  position: relative;
  display: block;
  width: 87px;
  border-radius: 50%;
}

.testimonial-two__client-img img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid var(--sinace-base);
}

.testimonial-two__client-info {
  position: relative;
  display: block;
  /* margin-left: 20px; */
}

.testimonial-two__client-info h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.testimonial-two__client-info h3 a {
  color: var(--sinace-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__client-info h3 a:hover {
  color: var(--sinace-base);
}

.testimonial-two__client-info p {
  font-size: 14px;
  color: var(--sinace-base);
  line-height: 26px;
}

.testimonial-two__text {
  font-size: 18px;
  line-height: 34px;
  margin-top: 21px;
}

.testimonial-two__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .20;
  z-index: -1;
}

.testimonial-two__shape-1 img {
  width: auto;
}

.testimonial-two__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.testimonial-two__shape-2 img {
  width: auto;
}

.testimonial-two__shape-3 {
  position: absolute;
  top: 34px;
  right: 0;
  z-index: -1;
}

.testimonial-two__shape-3 img {
  width: auto;
}

.testimonial-two__shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.testimonial-two__shape-4 img {
  width: auto;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}




/*--------------------target-amount-calculator css start -------------------*/


.tooltipe {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}
.tooltipe .fa{
   height: 25px;
}
.tooltipe .tooltiptext {
  visibility: hidden;
  width: 155px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 95%;
  left:0%;
 


  opacity: 0;
  transition: opacity 0.3s;
}

.tooltipe .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltipe:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltipe i {
  font-size: 13px;
  color: var(--sinace-black);
}
.stricky-header.stricked-menu.main-menu.stricky-fixed img {
    max-width: 182px;
    padding: 7px;
}

.stricky-header.stricked-menu.main-menu.stricky-fixed .main-menu__bottom {
    height: 95px;
    /* box-shadow: 0 0 10px #191515; */
}

.stricky-header.stricked-menu.main-menu.stricky-fixed .main-menu__bottom-inner {
    height: 95px;
}
.footer-widget__logo img {
  max-width: 170px;
}
.main-menu__logo img {
    width: auto;
    /* filter: hue-rotate(4deg) brightness(0.7); */
    max-width: 188px;
}
.testimonial-two__shape-2 img {
  filter: hue-rotate(236deg) brightness(2);

}

a.main-slider__btn.thm-btn.mainss {
  padding: 10px 30px;
  border-radius: 40px;
  border: 1px solid #1464de;
}

.main-btn {
  margin-top: 28px;
}
  .row.\32 2 {
    margin-top: 60px;
}

.row.v2 {
  margin-top: 80px;
}

h2.Values {
  font-size: 40px;
  margin-bottom: 20px;
}

ul.value-ul li {
  list-style: none;
}

ul.value-ul h3 {
  color: #1464de;
  padding-bottom: 8px;
  font-size: 26px;
}

ul.value-ul li {
  margin-bottom: 30px;
}
.row.s2 h2 {
    margin-bottom: 20px;
}

ul.s-main {
    margin-top: 20px;
}

ul.s-main ol {
    margin-bottom: 20px;
    padding-left: 0;
}

.con {
  margin-top: 150px;
}

.con h2 {
  margin-bottom: 20px;
}
section.brand-one h2 {
  margin-bottom: 30px;
  /* color: #1464de; */
  text-align: center;
  margin-bottom: 40px;
  font-size: 42px;
  font-weight: 500;
}

.con {
  text-align: center;
}

section.news-one-main {
  padding-top: 100px;
  padding-bottom: 80px;
}

.nqa-stnd-banner-wrapper {
  background-color: #f9f9f9;
}
.nqa-stnd-banner-sector {
  margin-top: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 46px;
  font-family: Montserrat,sans-serif;
  text-transform: uppercase;
  margin-bottom: -2px
}

@media (min-width: 1100px) {
  .nqa-stnd-banner-sector {
      font-size:16px
  }
}

.nqa-stnd-header {
  margin: 0;
  color: #fff;
  border-bottom: 3px solid #fff;
  padding-bottom: 16px;
  text-transform: capitalize;
}

.nqa-stnd-banner-desc {
  color: #fff;
  font-size: 18px;
  line-height: 33px;
  font-weight: 100;
  margin-top: 13px
}
.nqa-stnd-overlay {
  background-color: rgb(0 0 0 / 62%);
  height: 100%
}
@media (min-width: 1000px) {
  .nqa-stnd-banner-title-wrapper {
      text-align:left;
  }
}
@media (min-width: 1000px) {
  .preview-card__title h3 {
      margin-top: 30px;
  }
}
.nqa-stnd-banner-title-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  text-align: left;
}
  .nqa-stnd-banner-width {
      width: 40%;
  }
.nqa-stnd-banner-width {
      width: 50%;
      text-align: left;
  }
  h1 {
      line-height:48px;
      margin-top: 60px;
      font-size: 48px
  }

.nqa-stnd-banner-container {
  height: 410px;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

  .nqa-stnd-banner-desc {
      font-size: 23px;
      line-height: 40px;
      margin-top: 30px;
      font-weight: 800;
  }
  .nqa-generic-button-orange input[type=button], .nqa-generic-button-orange input[type=submit] {
      font-size: 20px;
      height: 70px;
  }
.nqa-generic-button-orange input[type=button], .nqa-generic-button-orange input[type=submit] {
  -webkit-appearance: none;
  border-radius: 4px;
  background-color: #1464de;
  border: none;
  width: 216px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 18px;
  height: 60px;
  margin-top: 20px;
}
  


.nqa-stnd-button-container {
  display: inline-flex;
}

  .nqa-bc-wrapper {
      position: absolute;
      display: block;
      top: 17px;
      left: 19px;
      z-index: 20;
  }

.nqa-stnd-cuw-description-container.nqa-stnd-cuw-description-container_no-contact-form {
    margin-top: 90px;
    padding-bottom: 30px;
}

h2.nqa-stnd-description-title {
    font-weight: 700;
}

.nqa-stnd-description-text.nqa-wysiwyg h3 {
    font-weight: 700;
    padding-bottom: 30px;
    margin-top: 30px;
}

    .nqa-stnd-helpsyouwith {
        margin-top: 0;
    }
.nqa-stnd-helpsyouwith {
    padding: 25px;
    width: 90%;
    margin-top: 60px;
    text-align: center;
    margin: 0 auto;
}
.nqa-stnd-helpsyouwith-title {
    margin-top: 0;
    flex: 0 1 100%;
    margin-top: 15px;
    font-weight: 700;
}
.nqa-stnd-description-title-underline {
    width: 78px;
    border: 2px solid #1464de;
    display: inline-block;
    /* vertical-align: top; */
    background-color: #1464de;
}
.nqa-stnd-helpsyouwith-copy {
    padding-bottom: 30px;
}

.nqa-stnd-helpsyouwith ol, .nqa-stnd-helpsyouwith ul {
    list-style: url(/assets/images/icon/tick-list.svg);
    padding-left: 60px;
    column-count: 3;
    max-width: 1240px;
    margin: 30px auto 45px;
    filter: hue-rotate(173deg) brightness(0.9);
}

.nqa-stnd-helpsyouwith ol li, .nqa-stnd-helpsyouwith ul li {
    text-align: left;
    padding-left: 6px;
    padding-top: 10px;
    padding-right: 60px;
    font-weight: 400;
    line-height: 18px;
    padding-bottom: 10px;
}
.nqa-benefits-container {
  padding: 45px 0;
}
.nqa-benefits-container {width: 100%;text-align: center;padding: 11px 0;padding-bottom: 50px;}
.nqa-bkg-grey {
background-color: #f5f5f5;
}
.nqa-benefits-header {
/* flex: 0 1 100%; */
/* margin-top: 35px; */
font-size: 40px;
line-height: 40px;
margin-top: 60px;
font-weight: 800;
margin-bottom: 40px;
};

.nqa-benefits-header:after {
content: "";
border: 2px solid #f18528;
display: block;
width: 78px;
margin: 18px auto 0;
}

.nqa-benefits-items {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.nqa-benefit-wrapper {
  flex: 0 25%;
  padding: 15px;
  -ms-flex-preferred-size: calc(25% - 30px* 2);
}

.nqa-benefits-wrapper {/* max-width: 1440px; */margin: 0 auto;padding: 0 20px;width: 100%;display: flex;flex-direction: row;align-self: flex-start;flex-wrap: wrap;justify-content: center;}

.nqa-benefit-title {
  max-width: 70%;
}
.nqa-benefit-title {
font-size: 16px;
line-height: 20px;
font-weight: 700;
margin: 0 auto;
min-height: 40px;
}

.nqa-benefit-text {font-size: 14px;line-height: 20px;margin-top: 10px;}
.nqa-benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
}
.env .nqa-benefit-wrapper {
  flex: 0 33%;
}

.nqa-benefits-items {
  margin-top: 20px;
}
.nqa-stnd-helpsyouwith-copy h3 {
  margin-bottom: 20px;
}
.nqa-stnd-banner-container.js-nqa-stnd.q12 {
  background-size: 100% 100% !important;

}

.container.self H3 {
  PADDING-BOTTOM: 20PX;
  PADDING-TOP: 30PX;
  font-weight: 700;
}

.container.self UL {
  PADDING-TOP: 13PX;
}

.container.self {}

.container.self UL li {
  padding-bottom: 19px;
}

.container.self UL strong {
  font-weight: 700;
  padding-right: 4px;
}
.nqa-stnd-banner-container.js-nqa-stnd.sir {
  background-position: unset;
}
.buss h1.nqa-stnd-header {
  font-size: 40px;
}

.buss h2.nqa-stnd-banner-desc {
  font-size: 20px;
}
h1.nqa-stnd-header.lims {
  font-size: 37px;
}
.experties h3 {
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 40px;
}
.experties {
    padding-bottom: 90px;
}

.experties li {
    padding-bottom: 20px;
    /* color: antiquewhite; */
}

.experties li a {
    color: #1342e3;
}
.abts {
    height: 300px;
}

.abts .nqa-stnd-banner-width {
    width: unset;
    display: inline-block;
}
.col-xl-2.col-lg-6.col-md-6.wow.fadeInUp.xc.animated {
  padding-right: 0;
}


.about-four__img img {
    max-width: 100%;
}
ul.value-ul {
    margin-top: 20px;
}
.min {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gt-current-lang img {
    display: none;
}

.gt_options.gt-open img {
    display: none;
}