@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
/*===========================
  COMMON css 
===========================*/
:root {
  --primary-exprivia: #022E42;
  --orange-exprivia:#df6426;
  --font-family: "Inter", sans-serif;
  --primary: #155bd5;
  --primary-dark: #1c3ab6;
  --primary-light: #e2f1ff;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}

body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7 {
  font-weight: 600;
  color: var(--primary-exprivia);
  margin: 0px;
}

h1,
.h1 {
  font-size: 2.75em;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 2.25em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.75em;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
}

h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: 1em;
  line-height: 1.25;
}

h7,
.h7 {
  font-size: 0.875em;
  line-height: 1.25;
}

.display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}

.display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}

.display-3 {
  font-size: 4em;
  line-height: 1.25;
}

.display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
}

p > b {
  color: var(--orange-exprivia);
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.btn:hover {
  color: inherit;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}
.btn.btn-sm {
  padding: 8px 16px;
}
.btn.square {
  border-radius: 0px;
}
.btn.semi-rounded {
  border-radius: 12px;
}
.btn.rounded-full {
  border-radius: 50px;
}
.btn.icon-left span,
.btn.icon-left i {
  margin-right: 8px;
}
.btn.icon-right span,
.btn.icon-right i {
  margin-left: 8px;
}
.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}
.btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}
.btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}


/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary-exprivia);
  color: var(--primary-exprivia);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}


/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--primary-exprivia);
  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;
  font-size: 14px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 5px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--orange-exprivia);
}

/*============================
  Section Title Three CSS
==============================*/
.section-title-three {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-three {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-title-three {
    margin-bottom: 35px;
  }
}
.section-title-three h5 {
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--primary-exprivia);
  font-size: 1rem;
}
@media (max-width: 767px) {
  .section-title-three h5 {
    font-size: 0.8rem;
  }
}
.section-title-three h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-three h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-three h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.section-title-three p {
  color: var(--dark-3);
}

.made-in-ayroui{
  position: fixed;
  left: 5px;
  bottom: 5px;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.made-in-ayroui:hover{
  transform: translateY(-5px);
}



/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

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


/*===== NAVBAR ONE =====*/
.navbar-one {
  background: var(--primary-exprivia);
  position: absolute;
  width: 100%;
  z-index: 999;
}

.sticky {
  position: fixed;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one {
    padding: 20px 0;
  }
}
.navbar-one .navbar {
  position: relative;
  padding: 0;
}
.navbar-one .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-one .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-collapse {
    position: absolute;
    top: 140%;
    left: 0;
    width: 100%;
    background-color: var(--primary-exprivia);
    z-index: 99;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
  }
}
.navbar-one .navbar .navbar-nav .nav-item {
  /*margin: 0 5px; topbar*/
  position: relative;
}
.navbar-one .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 28px 15px;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-one .navbar .navbar-nav .nav-item a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0%;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-one .navbar .navbar-nav .nav-item a.active::before {
  opacity: 0.1;
  visibility: visible;
  width: 100%;
}
.navbar-one .navbar .navbar-nav .nav-item a:hover::before {
  opacity: 0.1;
  visibility: visible;
  width: 100%;
}
.navbar-one .navbar .navbar-nav .nav-item a i {
  font-weight: 700;
  padding-left: 8px;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item a {
    padding: 10px 10px;
    display: block;
  }
  .navbar-one .navbar .navbar-nav .nav-item a::before {
    border-radius: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item {
    margin-bottom: 5px;
  }
  .navbar-one .navbar .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 260px;
  background-color: var(--white);
  box-shadow: var(--shadow-4);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a {
    border-radius: 5px !important;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  font-weight: 500;
  position: relative;
  color: var(--dark);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 5;
  text-transform: capitalize;
  /*border-radius: 5px;*/
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover {
  background-color: var(--primary-exprivia);
  color: var(--white);
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a::before {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover {
    background-color: var(--primary-exprivia);
    color: var(--white);
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
    color: var(--primary-dark);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a:hover i {
    color: var(--white);
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
    height: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-one .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.navbar-one .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-one .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-one .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 3px;
  }
}
@media (max-width: 767px) {
  .navbar-one .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 3px;
  }
}
.navbar-one .navbar .navbar-btn ul {
  display: flex;
}
.navbar-one .navbar .navbar-btn ul li {
  display: inline-block;
  margin-right: 12px;
}
.navbar-one .navbar .navbar-btn ul li a {
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0;
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-exprivia);
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn {
  background-color: var(--white);
  color: var(--primary-exprivia);
  border-color: var(--white);
}
.navbar-one .navbar .navbar-btn ul li a.primary-btn:hover {
  background-color: var(--orange-exprivia);
  color: var(--white);
}
/* ===== Buttons Css ===== */
.header-ten .header-text .light-rounded-buttons .primary-btn {
  background: var(--primary-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-ten .header-text .light-rounded-buttons .active.primary-btn, .header-ten .header-text .light-rounded-buttons .primary-btn:hover, .header-ten .header-text .light-rounded-buttons .primary-btn:focus {
  background: var(--orange-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-ten .header-text .light-rounded-buttons .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-ten {
  position: relative;
  background: var(--light-2);
  overflow: hidden;
  padding: 160px 0 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-ten {
    padding: 150px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .header-ten {
    padding: 130px 0 60px 0;
  }
}
.header-ten .header-inner {
  height: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 3;
}
.header-ten .header-text {
  float: none;
}
.header-ten .header-text h6 {
  color: var(--primary-exprivia);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}
.header-ten .header-text h1 {
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--primary-exprivia);
  letter-spacing: -1px;
}
.header-ten .header-text p {
  color: var(--dark-3);
}
.header-ten .header-text .light-rounded-buttons {
  margin-top: 30px;
}
.header-ten .header-image {
  float: right;
  height: 500px;
  width: 500px;
  display: block;
  border-radius: 50%;
  background-image: url(/static/images/site/istockphoto-479801072-612x612.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
  border: 3px solid var(--orange-exprivia);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-ten .header-image {
    display: none;
  }
}
.header-ten .header-image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-image: url("assets/images/header/shape2.png");
  background-repeat: no-repeat;
  height: 100px;
  width: 100px;
  z-index: -1;
  background-size: contain;
  background-position: center;
}
.header-ten .header-image .shape3 {
  position: absolute;
  bottom: 35px;
  right: 60px;
  z-index: -1;
}
.header-ten .verticle-lines .vlines {
  width: 3px;
  height: 100%;
  background: #473bf036;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-animation-name: lineanim;
  animation-name: lineanim;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  opacity: 0.2;
}
.header-ten .verticle-lines .vlines.vlines.one {
  left: 20%;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.header-ten .verticle-lines .vlines.vlines.two {
  left: 40%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.header-ten .verticle-lines .vlines.vlines.three {
  left: 60%;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.header-ten .verticle-lines .vlines.vlines.four {
  left: 80%;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

@-webkit-keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}
@keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

/* ===== Buttons Css ===== */
.services-seven .single-service .light-rounded-buttons .primary-btn {
  background: var(--primary-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.services-seven .single-service .light-rounded-buttons .active.primary-btn, .services-seven .single-service .light-rounded-buttons .primary-btn:hover, .services-seven .single-service .light-rounded-buttons .primary-btn:focus {
  background: var(--orange-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.services-seven .single-service .light-rounded-buttons .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===========================
  services css 
===========================*/
.services-seven {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  /* Section Title Six */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-seven {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .services-seven {
    padding: 60px 0 60px 0;
  }
}
.services-seven .single-service {
  position: relative;
  text-align: left;
  padding: 50px;
  box-shadow: var(--shadow-2);
  border-radius: 5px;
  border: 1px solid var(--light-3);
  background-color: var(--white);
  overflow: hidden;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-seven .single-service {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .services-seven .single-service {
    padding: 35px;
  }
}
.services-seven .single-service::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0%;
  content: "";
  background-color: var(--primary-exprivia);
  transition: all 0.4s ease-in-out;
}
.services-seven .single-service:hover {
  box-shadow: var(--shadow-4);
}
.services-seven .single-service:hover::before {
  width: 100%;
}
.services-seven .single-service .serial {
  font-size: 45px;
  display: block;
  margin-bottom: 7px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--primary-exprivia);
  font-weight: 800;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.services-seven .single-service:hover .serial {
  -webkit-text-stroke-color: transparent;
  -webkit-text-fill-color: var(--primary-exprivia);
}
.services-seven .single-service h3 {
  color: var(--black);
  font-weight: 600;
}
.services-seven .single-service p {
  color: var(--dark-3);
  margin-top: 25px;
  height: 100px;
}
.services-seven .single-service .light-rounded-buttons {
  margin-top: 25px;
}

/*===========================
  about-03 css
===========================*/
.about-three {
  /*background-color: var(--light-3);*/
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-three {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .about-three {
    padding: 60px 0 60px 0;
  }
}
.about-feature-three .about-feature-image img {
  /*width: 100%;*/
  border-radius: 5px;
}

.about-feature-items-three {
  padding-left: 50px;
  padding-right: 100px;
  display: flex;
  align-items: center;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-feature-items-three {
    padding: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .about-feature-items-three {
    padding: 0;
    margin-top: 30px;
  }
}
.about-feature-items-three ul li {
  position: relative;
  margin-bottom: 40px;
}
.about-feature-items-three ul li:last-child {
  margin: 0;
}
.about-feature-items-three ul li span {
  max-width: 45px;
  min-width: 45px;
  max-height: 45px;
  min-height: 45px;
  border-radius: 50%;
  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;
  background-color: var(--primary-exprivia);
  color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  border: 3px solid transparent;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
.about-feature-items-three ul li .content {
  display: inline-block;
  padding-left: 70px;
}
.about-feature-items-three ul li .content .list-title {
  margin-bottom: 10px;
}

/*===== VIDEO TWO =====*/
.video-two {
  background-color: var(--primary-exprivia);
  position: relative;
  z-index: 9;
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .video-two {
    padding-top: 60px;
  }
}
.video-two .section-title {
  margin-bottom: 140px;
  padding: 0 265px;
}
.video-two .section-title span {
  font-weight: 600;
}
.video-two .section-title h2 {
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .section-title {
    padding: 0 50px;
    margin-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .video-two .section-title {
    padding: 0 30px;
    margin-bottom: 100px;
  }
  .video-two .section-title h2 {
    font-size: 20px;
  }
}
.video-two .section-title span {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-exprivia);
}
@media (max-width: 767px) {
  .video-two .section-title span {
    margin-bottom: 10px;
  }
}
.video-two .section-title p {
  margin-top: 15px;
}
.video-two::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 200px;
  width: 100%;
  background-color: var(--white);
  z-index: -1;
}
.video-two .inner-content-head {
  padding: 30px;
  border: 1px solid #eeeeee40;
  border-radius: 30px;
  background: #ffffff24;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .inner-content-head {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .video-two .inner-content-head {
    padding: 0;
    border: none;
  }
}
.video-two .inner-content {
  background-color: var(--white);
  padding: 100px 0;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.09);
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .inner-content {
    padding: 50px 30px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .video-two .inner-content {
    padding: 50px 0;
  }
}
.video-two .inner-content .shape1 {
  height: 120px;
  width: 120px;
  position: absolute;
  right: -60px;
  bottom: 58px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .inner-content .shape1 {
    width: 90px;
    height: 80px;
    right: -50px;
    bottom: 90px;
  }
}
@media (max-width: 767px) {
  .video-two .inner-content .shape1 {
    width: 80px;
    height: 80px;
    right: -50px;
    bottom: 20px;
  }
}
.video-two .inner-content .shape2 {
  width: 30px;
  position: absolute;
  left: 20px;
  top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .inner-content .shape2 {
    width: 25px;
  }
}
@media (max-width: 767px) {
  .video-two .inner-content .shape2 {
    width: 20px;
  }
}
.video-two .intro-video-play {
  position: relative;
  z-index: 9;
}
.video-two .intro-video-play .play-thumb a {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 83px;
  background: var(--primary-exprivia);
  border-radius: 50%;
  padding-left: 5px;
  font-size: 22px;
  color: var(--white);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.video-two .intro-video-play .play-thumb a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid var(--primary-exprivia);
  border-radius: 50%;
  -webkit-animation: pulse-border-2 1.5s linear infinite;
  -moz-animation: pulse-border-2 1.5s linear infinite;
  -o-animation: pulse-border-2 1.5s linear infinite;
  animation: pulse-border-2 1.5s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-two .intro-video-play .play-thumb a {
    height: 70px;
    width: 70px;
    font-size: 20px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  .video-two .intro-video-play .play-thumb a {
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 18px;
  }
}
.video-two .intro-video-play .play-thumb a:hover {
  background-color: var(--orange-exprivia);
  color: var(--white);
}
@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ===== Buttons Css ===== */
.pricing-style-fifteen .primary-btn {
  background: var(--primary-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.pricing-style-fifteen .active.primary-btn, .pricing-style-fifteen .primary-btn:hover, .pricing-style-fifteen .primary-btn:focus {
  background: var(--orange-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.pricing-style-fifteen .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== PRICING THIRTEEN =====*/
.pricing-fifteen {
  padding: 100px 0;
  /* Section Title Five */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fifteen {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .pricing-fifteen {
    padding: 60px 0 60px 0;
  }
}
.pricing-fifteen .section-title-three {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fifteen .section-title-three {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .pricing-fifteen .section-title-three {
    margin-bottom: 35px;
  }
}
.pricing-fifteen .section-title-three h5 {
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--primary-exprivia);
  font-size: 1rem;
}
@media (max-width: 767px) {
  .pricing-fifteen .section-title-three h5 {
    font-size: 0.8rem;
  }
}
.pricing-fifteen .section-title-three h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fifteen .section-title-three h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .pricing-fifteen .section-title-three h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
    margin-top: 50px;
  }
}
.pricing-fifteen .section-title-three p {
  color: var(--dark-3);
}

.pricing-style-fifteen {
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  margin-top: 30px;
  background-color: var(--white);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}
.pricing-style-fifteen:hover {
  box-shadow: var(--shadow-4);
}
.pricing-style-fifteen .table-head {
  padding: 25px;
  border-bottom: 1px solid var(--gray-4);
}
.pricing-style-fifteen .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-style-fifteen p {
  font-weight: 400;
  line-height: 22px;
  color: var(--dark-3);
}
.pricing-style-fifteen .price {
  padding: 30px 0;
  text-align: center;
}
.pricing-style-fifteen .amount {
  font-size: 40px;
  font-weight: 700;
  display: inline-block;
}
.pricing-style-fifteen .duration {
  display: inline-block;
  font-size: 16px;
  color: var(--dark-3);
  font-weight: 400;
  margin-left: 5px;
  display: inline-block;
}
.pricing-style-fifteen .primary-btn {
  font-size: 15px;
  text-transform: none;
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 20px;
}
.pricing-style-fifteen .table-content {
  padding: 20px;
  white-space: nowrap;
}

.pricing-style-fifteen .table-content-badges {
  padding: 20px 20px 0 20px;
  height: 70px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
  margin-bottom: 20px;

}

.pricing-style-fifteen .middle-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.pricing-style-fifteen .table-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 13px;
  color: var(--dark-3);
}
.pricing-style-fifteen .table-list li:last-child {
  margin: 0;
}
.pricing-style-fifteen .table-list li i {
  color: var(--primary-exprivia);
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 4px;
}

/*======================================
	Team CSS
========================================*/
.team-style-eight {
  padding: 100px 0;
  background: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-style-eight {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .team-style-eight {
    padding: 60px 0 60px 0;
  }
}
.team-style-eight .title-line {
  margin-bottom: 40px;
}
.team-style-eight .section-title {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-style-eight .section-title {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .team-style-eight .section-title {
    margin-bottom: 25px;
  }
}
.team-style-eight .section-title span {
  text-transform: uppercase;
  color: var(--primary-exprivia);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.team-style-eight .section-title h2 {
  font-size: 30px;
  margin-bottom: 18px;
  line-height: 40px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
}
.team-style-eight .section-title h3 {
  font-size: 62px;
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  top: -27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--gray-4);
  z-index: -1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--gray-4);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-style-eight .section-title h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .team-style-eight .section-title h3 {
    font-size: 35px;
  }
}
.team-style-eight .section-title h3.gray-bg {
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--primary-exprivia) !important;
  opacity: 0.1 !important;
}
.team-style-eight .section-title p {
  color: var(--dark-3);
}
.team-style-eight .single-team {
  margin-top: 30px;
  position: relative;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  display: inline-block;
  overflow: hidden;
  text-align: left;
  background: transparent;
  background-color: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.team-style-eight .single-team .info-head {
  background: transparent;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 25px;
}
.team-style-eight .single-team .image {
  position: relative;
  text-align: center;
}
.team-style-eight .single-team .image::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background: linear-gradient(transparent, var(--primary-exprivia));
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-style-eight .single-team .image img {
  height: 100%;
  width: 100%;
}
.team-style-eight .single-team .image .social {
  position: absolute;
  left: 0;
  bottom: -30px;
  padding: 25px;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.team-style-eight .single-team .image .social li {
  display: inline-block;
  margin-right: 15px;
}
.team-style-eight .single-team .image .social li:last-child {
  margin-right: 0px;
}
.team-style-eight .single-team .image .social li a {
  color: var(--white);
  display: block;
  font-size: 16px;
}
.team-style-eight .single-team .image .social li a:hover {
  opacity: 0.7;
}
.team-style-eight .single-team .info-box {
  text-align: left;
}
.team-style-eight .single-team .info-box .name {
  display: block;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 3px;
  text-transform: capitalize;
}
.team-style-eight .single-team .info-box .designation {
  color: var(--dark-3);
  font-size: 14px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.team-style-eight .single-team:hover {
  box-shadow: var(--shadow-4);
}
.team-style-eight .single-team:hover .info-head:before {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.team-style-eight .single-team:hover .info-head {
  border-color: transparent;
}
.team-style-eight .single-team:hover .image::before {
  opacity: 1;
  visibility: visible;
  height: 150px;
}
.team-style-eight .single-team:hover .social {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

/* ===== Buttons Css ===== */
.call-action-four .call-action-form .action-btn .primary-btn {
  background: var(--primary-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.call-action-four .call-action-form .action-btn .active.primary-btn, .call-action-four .call-action-form .action-btn .primary-btn:hover, .call-action-four .call-action-form .action-btn .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.call-action-four .call-action-form .action-btn .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action-four {
  background-color: var(--primary-exprivia);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action-four {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .call-action-four {
    padding: 60px 0 60px 0;
  }
}
.call-action-four .call-action-content .action-title {
  font-weight: 600;
  color: var(--white);
}
.call-action-four .call-action-content .text {
  color: var(--white);
  margin-top: 16px;
}
.call-action-four .call-action-form {
  position: relative;
  max-width: 480px;
  margin: 45px auto 0;
}
.call-action-four .call-action-form input {
  width: 100%;
  height: 60px;
  border: 1px solid var(--white);
  background: none;
  padding: 0 25px;
  border-radius: 50px;
  color: var(--white);
}
@media (max-width: 767px) {
  .call-action-four .call-action-form input {
    height: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .call-action-four .call-action-form input {
    height: 60px;
  }
}
.call-action-four .call-action-form input::placeholder {
  opacity: 1;
  color: var(--white);
}
.call-action-four .call-action-form .action-btn {
  position: absolute;
  top: 7px;
  right: 7px;
}
@media (max-width: 767px) {
  .call-action-four .call-action-form .action-btn {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .call-action-four .call-action-form .action-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    margin-top: 0;
  }
}
.call-action-four .call-action-form .action-btn .primary-btn {
  background: var(--white);
  color: var(--primary-exprivia);
}
.call-action-four .call-action-form .action-btn .primary-btn:hover {
  background: var(--white);
  color: var(--orange-exprivia);
}
@media (max-width: 767px) {
  .call-action-four .call-action-form .action-btn .primary-btn {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .call-action-four .call-action-form .action-btn .primary-btn {
    width: auto;
  }
}

/*===== TESTIMONIAL STYLE FOUR =====*/
.testimonial-6 {
  background-color: var(--white);
  position: relative;
  padding-bottom: 100px;
  padding-top: 100px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-6 {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .testimonial-6 {
    padding: 60px 0 60px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-6 {
    padding-bottom: 120px;
  }
}
.testimonial-6 .tns-nav {
  text-align: center;
  position: absolute;
  bottom: 80px;
  transform: translateX(-50%);
  width: 100%;
  left: 50%;
  z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-6 .tns-nav {
    bottom: 50px;
  }
}
@media (max-width: 767px) {
  .testimonial-6 .tns-nav {
    bottom: 40px;
  }
}
.testimonial-6 .tns-nav button {
  height: 6px;
  width: 14px;
  background-color: var(--primary-exprivia);
  opacity: 0.3;
  border-radius: 5px;
  display: inline-block;
  border: none;
  margin: 0px 5px;
  transition: all 0.4s ease;
}
.testimonial-6 .tns-nav button:hover {
  opacity: 1;
}
.testimonial-6 .tns-nav button.tns-nav-active {
  opacity: 1;
  width: 25px;
}
.testimonial-6 .testimonial-patern1 {
  width: 200px;
  position: absolute;
  left: -100px;
  bottom: -90px;
}
@media (max-width: 767px) {
  .testimonial-6 .testimonial-patern1 {
    display: none;
  }
}
.testimonial-6 .testimonial-patern2 {
  width: 200px;
  position: absolute;
  right: -100px;
  top: -90px;
}
@media (max-width: 767px) {
  .testimonial-6 .testimonial-patern2 {
    display: none;
  }
}
.testimonial-6 .single-testimonial {
  text-align: center;
  padding: 0px 80px 40px 80px;
}
@media (max-width: 767px) {
  .testimonial-6 .single-testimonial {
    padding: 0px 10px 20px 20px;
  }
}
.testimonial-6 .single-testimonial .text .brand-icon {
  margin-bottom: 30px;
}
.testimonial-6 .single-testimonial .text .brand-icon img {
  width: 140px;
}
.testimonial-6 .single-testimonial .text p {
  color: var(--dark-3);
}
.testimonial-6 .single-testimonial .author {
  margin-top: 30px;
  display: inline-block;
  position: relative;
}
.testimonial-6 .single-testimonial .author img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: inline-block;
}
.testimonial-6 .single-testimonial .author .name {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  display: block;
  margin-top: 15px;
}
.testimonial-6 .single-testimonial .author .name span {
  color: var(--dark-3);
  display: block;
  margin-top: 4px;
}

/* ===== Buttons Css ===== */
.contact-us .form-main .form-group .primary-btn {
  background: var(--primary-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.contact-us .form-main .form-group .active.primary-btn, .contact-us .form-main .form-group .primary-btn:hover, .contact-us .form-main .form-group .primary-btn:focus {
  background: var(--orange-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.contact-us .form-main .form-group .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*===========================
    CONTACT css 
===========================*/
.contact-us {
  position: relative;
  background-color: var(--light-3);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-us {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .contact-us {
    padding: 60px 0 60px 0;
  }
}
.contact-us .inner-content {
  border-radius: 5px;
  overflow: hidden;
}
.contact-us .title {
  margin-bottom: 30px;
}
.contact-us .contact-inner-title {
  margin-bottom: 45px;
}
.contact-us .single-head {
  position: relative;
  z-index: 5;
}
.contact-us .single-info {
  text-align: left;
  margin-bottom: 30px;
  padding-left: 70px;
  position: relative;
}
.contact-us .single-info i {
  font-size: 22px;
  display: inline-block;
  margin-right: 20px;
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  display: block;
  text-align: center;
  background: var(--primary-exprivia);
  color: var(--white);
  line-height: 50px;
  border-radius: 5px;
}
.contact-us .single-info ul {
  display: inline-block;
}
.contact-us .single-info ul li {
  font-weight: 500;
  display: inline-block;
  font-size: 15px;
  color: var(--black);
  display: block;
  margin-bottom: 4px;
}
.contact-us .single-info ul li a {
  font-weight: 500;
  display: inline-block;
  font-size: 15px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-us .single-info ul li a:hover {
  color: var(--primary-exprivia);
}
.contact-us .single-info ul li span {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
}
.contact-us .single-info ul li:last-child {
  margin-bottom: 0;
}
.contact-us .single-info .title {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--white);
}
.contact-us .single-info .title span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}
.contact-us .form-main {
  padding-right: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-us .form-main {
    padding: 0;
    margin-bottom: 30px;
  }
}
.contact-us .form-main .form-group {
  margin-bottom: 15px;
  display: block;
  position: relative;
}
.contact-us .form-main .form-group textarea,
.contact-us .form-main .form-group input {
  height: 55px;
  line-height: 55px;
  width: 100%;
  border: 2px solid var(--gray-4);
  padding: 0px 20px;
  color: var(--black);
  border-radius: 0px;
  font-weight: 400;
  border-radius: 5px;
}
.contact-us .form-main .form-group textarea:focus,
.contact-us .form-main .form-group input:focus {
  border-color: var(--primary-exprivia);
}
.contact-us .form-main .form-group textarea {
  height: 180px;
  resize: none;
}

/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 80px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .brand-area {
    padding: 60px 0 60px 0;
  }
}
.brand-area .section-title {
  text-align: left;
  margin-bottom: 0;
  padding-right: 50px;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area .section-title {
    margin-bottom: 40px;
  }
}
.brand-area .section-title span {
  text-transform: uppercase;
  color: var(--primary-exprivia);
  display: inline-block;
  margin-bottom: 10px;
}
.brand-area .section-title h2 {
  margin-bottom: 18px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
  padding-bottom: 14px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area .section-title h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.brand-area .section-title h2:before {
  position: absolute;
  left: 0;
  margin-left: 0;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background: var(--primary-exprivia);
  content: "";
}
.brand-area .section-title p {
  color: var(--dark-3);
}
.brand-area .section-title.white-text h2 {
  color: var(--white);
}
.brand-area .section-title.white-text h2::before {
  background-color: var(--white);
}
.brand-area .section-title.white-text span {
  color: var(--white);
}
.brand-area .section-title.white-text p {
  color: var(--white);
}
.brand-area .brand-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.brand-area .brand-list li {
  flex-basis: 33.33%;
}
@media (max-width: 767px) {
  .brand-area .brand-list li {
    flex-basis: 50%;
  }
}
.brand-area .brand-list li a {
  display: block;
  text-align: center;
  height: 150px;
  line-height: 150px;
  border: 1px solid var(--gray-4);
}
.brand-area .brand-list li a:hover {
  background-color: var(--primary-light);
}
.brand-area .brand-list li a:hover img {
  transform: scale(1);
  opacity: 1;
}
.brand-area .brand-list li a img {
  transition: all 0.4s ease;
  transform: scale(0.9);
  opacity: 0.7;
  max-width: 90%;
}
.brand-area .bg-color-white .brand-list::before {
  background: var(--light-1);
}

/*===== FOOTER FIVE =====*/
.footer-five {
  background-color: var(--light-3);
}
.footer-five .footer-logo {
  margin-bottom: 30px;
}
.footer-five .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}
.footer-five .footer-top-content {
  padding: 100px 0 60px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-five .footer-top-content {
    padding: 80px 0 60px 0;
  }
}
@media (max-width: 767px) {
  .footer-five .footer-top-content {
    padding: 50px 0 50px 0;
  }
}
.footer-five .social {
  margin-top: 25px;
}
.footer-five .social li {
  display: inline-block;
  margin: 0 4px;
}
@media (max-width: 767px) {
  .footer-five .social li {
    margin: 4px;
  }
}
.footer-five .social a {
  font-size: 18px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid var(--gray-4);
  border-radius: 50%;
}
.footer-five .social a:hover {
  color: var(--white);
  /*background-color: var(--primary-exprivia);*/
  background-color: var(--orange-exprivia);
  border-color: transparent;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
.footer-five .footer-support {
  padding-top: 21px;
}
.footer-five .footer-support span {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  font-weight: 600;
  margin-top: 9px;
  display: block;
}
@media (max-width: 767px) {
  .footer-five .footer-support span {
    display: block;
  }
}
.footer-five .footer-copyright {
  padding: 25px 0;
  border-top: 1px solid var(--gray-4);
}
.footer-five .footer-copyright .copyright .text {
  color: var(--dark-3);
}



/*======================================
    Item Details CSS
========================================*/
.item-details {
  /*background-color: #f9f9f9;*/
  position: relative;
  background: var(--light-2);
  overflow: hidden;
  padding: 160px 0 100px 0;
}

.item-details .top-area {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 4px;
}

.item-details .product-images img {
  width: 100%;
  cursor: pointer;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  padding: 5px;
}

.item-details .product-images .images {
  display: -ms-grid;
  display: grid;
  Grid-template-columns: repeat(5, 1fr);
  Grid-gap: 1em 1em;
  Margin-top: 1em;
}

@media (max-width: 767px) {
  .item-details .product-images .images {
    Grid-template-columns: repeat(3, 1fr);
  }
}

@-webkit-keyframes fadeIn {
  to {
    Opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    Opacity: 1;
  }
}

.item-details .product-images .fade-in {
  -webkit-animation: fadeIn 0.5s ease-in 1 forwards;
          animation: fadeIn 0.5s ease-in 1 forwards;
}

.item-details .product-info {
  padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .item-details .product-info {
    padding: 0;
    margin-top: 30px;
  }
}

.item-details .product-info .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .item-details .product-info .title {
    font-size: 18px;
  }
}

.item-details .product-info .category {
  display: block;
  margin-bottom: 15px;
}

.item-details .product-info .category i {
  display: inline-block;
  margin-right: 5px;
  color: #888;
}

.item-details .product-info .category a {
  color: #888;
  font-weight: 400;
  display: inline-block;
  margin-left: 5px;
  text-decoration: underline;
  text-decoration-color: var(--orange-exprivia);
}

.item-details .product-info .category a:hover {
  color: var(--orange-exprivia);
}

.item-details .product-info .price {
  color: #081828;
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .item-details .product-info .price {
    font-size: 20px;
  }
}

.item-details .product-info .price span {
  display: inline-block;
  margin-left: 15px;
  color: #888;
  text-decoration: line-through;
  font-size: 23px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .item-details .product-info .price span {
    font-size: 20px;
  }
}

.item-details .product-info .info-text {
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.item-details .product-info .form-group {
  margin-top: 20px;
}

.item-details .product-info .form-group.color-option .title-label {
  display: block !important;
}

.item-details .product-info .form-group.color-option .single-checkbox {
  margin-top: 8px;
  display: inline-block;
  margin-right: 5px;
}

.item-details .product-info .form-group.color-option .single-checkbox:last-child {
  margin-right: 0;
}

.item-details .product-info .form-group.color-option .single-checkbox label {
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  bottom: -2px;
}

.item-details .product-info .form-group.color-option .single-checkbox input[type="checkbox"] {
  display: none;
}

.item-details .product-info .form-group.color-option .single-checkbox input[type="checkbox"] + label span {
  border-color: #0167F3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
  border: 1px solid #d5d5d5;
}

.item-details .product-info .form-group.color-option .single-checkbox input[type="checkbox"] + label span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  font-size: 10px;
  line-height: 1.2;
  background-color: #0167F3;
  font-family: "Lineicons";
  content: "\ea5b";
  padding-left: 0px;
  padding-top: 3px;
  border-radius: 50%;
  margin-top: -9px;
  margin-left: -9px;
  text-align: center;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-1 input[type="checkbox"] + label span {
  border: 2px solid #081828;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-1 input[type="checkbox"] + label span::before {
  background-color: #081828;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-2 input[type="checkbox"] + label span {
  border: 2px solid #0167F3;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-2 input[type="checkbox"] + label span::before {
  background-color: #0167F3;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-3 input[type="checkbox"] + label span {
  border: 2px solid #ca0f05;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-3 input[type="checkbox"] + label span::before {
  background-color: #ca0f05;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-4 input[type="checkbox"] + label span {
  border: 2px solid #029c07;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-4 input[type="checkbox"] + label span::before {
  background-color: #029c07;
}

.item-details .product-info .form-group.color-option .single-checkbox input[type="checkbox"]:checked + label span {
  border-color: transparent;
}

.item-details .product-info .form-group.color-option .single-checkbox input[type="checkbox"]:checked + label span::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  border-radius: 50%;
  color: #fff;
}

.item-details .product-info .form-group input:focus {
  outline: 0;
}

.item-details .product-info .form-group select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.item-details .product-info .form-group label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
}

.item-details .product-info .form-group select.form-control {
  padding-right: 38px;
  padding-left: 15px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.item-details .product-info .form-group select.form-control:not([size]):not([multiple]) {
  height: 46px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e1e1e1;
}

.item-details .product-info .quantity .inner-content {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-details .product-info .quantity .inner-content input.text {
  width: 60px;
  height: 46px;
  border: 1px solid #e1e1e1;
  font-size: 14px;
  font-weight: 500;
  border-right: none;
  border-left: none;
}

.item-details .product-info .quantity .inner-content input.button {
  width: 35px;
  height: 46px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  font-size: 17px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.item-details .product-info .quantity .inner-content input.button.first {
  border-radius: 4px 0px 0px 4px;
  overflow: hidden;
}

.item-details .product-info .quantity .inner-content input.button.last {
  border-radius: 0px 4px 4px 0px;
  overflow: hidden;
}

.item-details .product-info .quantity .inner-content input.button:hover {
  background-color: #0167F3;
  border-color: transparent;
  color: #fff;
}

.item-details .product-info .cart-button {
  width: 100%;
}

.item-details .product-info .cart-button .btn {
  width: 100%;
  height: 46px;
  padding: 0;
}

.item-details .product-info .wish-button {
  display: inline-block;
  width: 100%;
}

@media (max-width: 767px) {
  .item-details .product-info .wish-button {
    margin-top: 12px;
  }
}

.item-details .product-info .wish-button .btn {
  display: inline-block;
  margin-right: 7px;
  border: 1px solid #eee;
  border-radius: 4px;
  color: #555;
  padding: 10px 18px;
  font-size: 13px;
/*  font-weight: 600;*/
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100%;
  background-color: var(--orange-exprivia);
}

.item-details .product-info .wish-button .btn:hover {
  color: #fff;
  background-color: var(--orange-exprivia);
  border-color: transparent;
}

.item-details .product-info .wish-button .btn:last-child {
  margin: 0;
}

.item-details .product-info .wish-button .btn i {
  font-size: 16px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.item-details .product-info .list-info {
  border-top: 1px solid #eee;
  margin-top: 30px;
  padding-top: 30px;
}

.item-details .product-info .list-info h4 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.item-details .product-info .list-info ul li {
  display: block;
  margin-bottom: 6px;
}

.item-details .product-info .list-info ul li:last-child {
  margin: 0;
}

.item-details .product-info .list-info ul li span {
  display: inline-block;
  font-weight: 500;
  min-width: 100px;
}

.item-details .product-info .bottom-content {
  margin-top: 20px;
}

.item-details .product-info .social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: -5px;
}

@media (max-width: 767px) {
  .item-details .product-info .social-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
  }
}

.item-details .product-info .social-share h4 {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  display: inline-block;
  margin-right: 13px;
  position: relative;
  top: 11px;
}

.item-details .product-info .social-share ul {
  display: inline-block;
  float: right;
}

@media (max-width: 767px) {
  .item-details .product-info .social-share ul {
    float: none;
  }
}

.item-details .product-info .social-share ul li {
  display: inline-block;
  margin-right: 2px;
  margin-top: 5px;
}

.item-details .product-info .social-share ul li:last-child {
  margin-right: 0;
}

.item-details .product-info .social-share ul li a {
  height: 30px;
  width: 30px;
  text-align: center;
  display: block;
  border-radius: 4px;
  border: 1px solid #eee;
  background-color: #fff;
  color: #0167F3;
  line-height: 30px;
  font-size: 12px;
}

.item-details .product-info .social-share ul li a.facebook {
  color: #3b5999;
}

.item-details .product-info .social-share ul li a.facebook:hover {
  border-color: transparent;
  background-color: #3b5999;
  color: #fff;
}

.item-details .product-info .social-share ul li a.twitter {
  color: #55acee;
}

.item-details .product-info .social-share ul li a.twitter:hover {
  border-color: transparent;
  background-color: #55acee;
  color: #fff;
}

.item-details .product-info .social-share ul li a.google {
  color: #dd4b39;
}

.item-details .product-info .social-share ul li a.google:hover {
  border-color: transparent;
  background-color: #dd4b39;
  color: #fff;
}

.item-details .product-info .social-share ul li a.linkedin {
  color: #0077B5;
}

.item-details .product-info .social-share ul li a.linkedin:hover {
  border-color: transparent;
  background-color: #0077B5;
  color: #fff;
}

.item-details .product-info .social-share ul li a.pinterest {
  color: #bd081c;
}

.item-details .product-info .social-share ul li a.pinterest:hover {
  border-color: transparent;
  background-color: #bd081c;
  color: #fff;
}

/* Product Details Info */
.product-details-info .single-block {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .product-details-info .info-body.custom-responsive-margin {
    margin-bottom: 30px;
  }
}

.product-details-info .info-body h4 {
  font-size: 20px;
  font-weight: 550;
  margin-bottom: 10px;
}

.product-details-info .info-body p {
  margin: 20px 0;
}

.product-details-info .info-body .features li {
  display: block;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.product-details-info .info-body .features li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  height: 6px;
  width: 6px;
  background-color: #0167F3;
  border-radius: 6px;
}

.product-details-info .info-body .features li:last-child {
  margin: 0;
}

.product-details-info .info-body .normal-list {
  margin-bottom: 30px;
}

.product-details-info .info-body .normal-list:last-child {
  margin-bottom: 0;
}

.product-details-info .info-body .normal-list li {
  display: block;
  margin-bottom: 12px;
  position: relative;
}

.product-details-info .info-body .normal-list li span {
  font-weight: 500;
  color: #555;
}

.product-details-info .info-body .normal-list li:last-child {
  margin: 0;
}

.product-details-info .give-review h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.product-details-info .give-review ul li {
  display: block;
  margin-bottom: 12px;
}

.product-details-info .give-review ul li span {
  color: #666;
  display: inline-block;
  margin-right: 8px;
  min-width: 80px;
}

.product-details-info .give-review ul li i {
  display: inline-block;
  color: #ffa000;
  font-size: 14px;
}

.product-details-info .give-review .review-btn {
  margin-top: 30px;
  padding: 12px 30px;
  width: 100%;
  background-color: #ffa000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.product-details-info .give-review .review-btn:hover {
  color: #fff;
  background-color: #081828;
}

.product-details-info .reviews .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.product-details-info .reviews .single-review {
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review {
    padding-left: 60px;
  }
}

.product-details-info .reviews .single-review:last-child {
  margin-bottom: 0;
}

.product-details-info .reviews .single-review img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review img {
    height: 40px;
    width: 40px;
  }
}

.product-details-info .reviews .single-review .review-info {
  position: relative;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 25px;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info {
    padding: 20px;
  }
}

.product-details-info .reviews .single-review .review-info::before {
  position: absolute;
  top: 12px;
  right: 100%;
  width: 0;
  height: 0;
  border: solid transparent;
  content: '';
  pointer-events: none;
  margin-top: 9px;
  border-width: 10px;
  border-color: transparent;
  border-right-color: #e5e5e5;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info::before {
    top: 5px;
  }
}

.product-details-info .reviews .single-review .review-info::after {
  position: absolute;
  top: 12px;
  right: 100%;
  width: 0;
  height: 0;
  border: solid transparent;
  content: '';
  pointer-events: none;
  margin-top: 10px;
  border-width: 9px;
  border-color: transparent;
  border-right-color: #fff;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info::after {
    top: 5px;
  }
}

.product-details-info .reviews .single-review .review-info h4 {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info h4 {
    font-size: 14px;
  }
}

.product-details-info .reviews .single-review .review-info h4 span {
  font-size: 14px;
  display: block;
  color: #888;
  margin-top: 7px;
}

.product-details-info .reviews .single-review .review-info .stars {
  margin-top: 8px;
}

.product-details-info .reviews .single-review .review-info .stars li {
  display: inline-block;
  color: #ffa000;
  font-size: 14px;
}

.product-details-info .reviews .single-review .review-info p {
  margin-top: 15px;
}

.review-modal .modal-dialog {
  max-width: 600px;
}

.review-modal .modal-header {
  padding: 25px;
}

.review-modal .modal-header h5 {
  font-size: 20px;
  font-weight: 500;
}

.review-modal .modal-body {
  padding: 25px;
}

.review-modal .modal-body .form-group {
  margin-bottom: 15px;
}

.review-modal .modal-body .form-group label {
  color: #888;
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}

.review-modal .modal-body .form-group input {
  height: 45px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 0px 18px;
  font-size: 14px;
}

.review-modal .modal-body .form-group select {
  padding-right: 38px;
  padding-left: 15px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  font-size: 14px;
  font-weight: 500;
}

.review-modal .modal-body .form-group select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.review-modal .modal-body .form-group select {
  height: 45px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e1e1e1;
}

.review-modal .modal-body .form-group select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.review-modal .modal-body .form-group textarea {
  padding: 18px;
  font-size: 14px;
}

.review-modal .modal-footer {
  padding: 25px;
}

/* Product Grids */
.product-grids {
  background-color: #f9f9f9;
}

.product-grids .product-grid-topbar {
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #eee;
  padding-right: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .product-grids .product-grid-topbar {
    margin-top: 30px;
  }
}

.product-grids .product-grid-topbar .product-sorting label {
  display: inline-block;
  margin: 0;
  padding: 8px 5px 8px 0;
  color: #999;
  font-size: 14px;
  font-weight: normal;
}

.product-grids .product-grid-topbar .product-sorting .form-control {
  width: 100%;
  max-width: 186px;
  margin-right: 10px;
  display: inline-block;
}

.product-grids .product-grid-topbar .product-sorting select.form-control:not([size]):not([multiple]) {
  height: 42px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #eee;
  padding-right: 38px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.product-grids .product-grid-topbar .product-sorting select.form-control:not([size]):not([multiple]):focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.product-grids .product-grid-topbar .product-sorting .total-show-product {
  display: inline-block;
  color: #888;
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 767px) {
  .product-grids .product-grid-topbar .product-sorting .total-show-product {
    display: block;
    margin-top: 15px;
  }
}

.product-grids .product-grid-topbar .nav {
  border: none;
  float: right;
}

@media (max-width: 767px) {
  .product-grids .product-grid-topbar .nav {
    float: none;
    text-align: left;
    margin-top: 20px;
  }
}

.product-grids .product-grid-topbar .nav button {
  border: none;
  padding: 5px 10px 5px 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-right: 6px;
  font-size: 16px;
}

.product-grids .product-grid-topbar .nav button.active {
  background-color: #0167F3;
  border-color: transparent;
  color: #fff;
}

.product-grids .product-grid-topbar .nav button:last-child {
  margin: 0;
}

/* Product Sidebar */
.product-sidebar .single-widget {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 30px;
}

.product-sidebar .single-widget:last-child {
  margin-bottom: 0;
}

.product-sidebar .single-widget h3 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
  color: #232323;
  font-size: 15px;
  font-weight: 500;
}

.product-sidebar .single-widget.search form {
  position: relative;
}

.product-sidebar .single-widget.search form input {
  height: 50px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 6px;
  color: #081828;
  padding: 0px 15px;
  padding-right: 50px;
}

.product-sidebar .single-widget.search form button {
  height: 40px;
  width: 40px;
  text-align: center;
  display: block;
  border-radius: 6px;
  border: none;
  background-color: transparent;
  color: #081828;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 16px;
}

.product-sidebar .single-widget.search form button:hover {
  color: #0167F3;
}

.product-sidebar .single-widget.range input {
  color: #081828;
  cursor: pointer;
}

.product-sidebar .single-widget.range ::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #081828;
  opacity: 1;
  /* Firefox */
}

.product-sidebar .single-widget.range :-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #081828;
  opacity: 1;
  /* Firefox */
}

.product-sidebar .single-widget.range ::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #081828;
  opacity: 1;
  /* Firefox */
}

.product-sidebar .single-widget.range ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #081828;
  opacity: 1;
  /* Firefox */
}

.product-sidebar .single-widget.range :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #081828;
}

.product-sidebar .single-widget.range ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #081828;
}

.product-sidebar .single-widget.range .range-inner {
  position: relative;
  padding-left: 15px;
}

.product-sidebar .single-widget.range label {
  color: #081828;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 15px;
}

.product-sidebar .single-widget.range #rangePrimary {
  display: inline-block;
  border: none;
}

.product-sidebar .single-widget.range input[type="range"]::-webkit-slider-thumb {
  background: #0167F3 !important;
}

.product-sidebar .single-widget.range input[type="range"]::-moz-range-thumb {
  background: #0167F3 !important;
}

.product-sidebar .single-widget.range input[type="range"]::-ms-thumb {
  background: #0167F3 !important;
}

.product-sidebar .single-widget.condition .form-check {
  display: block;
  margin-bottom: 10px;
}

.product-sidebar .single-widget.condition .form-check:last-child {
  margin: 0;
}

.product-sidebar .single-widget.condition .form-check-label {
  cursor: pointer;
}

.product-sidebar .single-widget.condition .form-check-input {
  cursor: pointer;
  margin-top: 4px;
}

.product-sidebar .single-widget.condition .form-check-input:checked {
  background-color: #0167F3;
  border-color: #0167F3;
}

.product-sidebar .single-widget .list li {
  margin-bottom: 12px;
}

.product-sidebar .single-widget .list li:last-child {
  margin: 0;
}

.product-sidebar .single-widget .list li a {
  color: #666;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-right: 3px;
}

.product-sidebar .single-widget .list li a:hover {
  color: #0167F3;
}

.product-sidebar .single-widget .list li span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
}

.product-sidebar .single-widget.banner a img {
  width: 100%;
}


/* PARTNER BLOCK */
/*===========================
    clients-01 css 
===========================*/
.client-logo-area .section-title-two {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo-area .section-title-two {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .client-logo-area .section-title-two {
    margin-bottom: 35px;
  }
}
.client-logo-area .section-title-two span {
  text-transform: capitalize;
  color: var(--white);
  background: var(--primary);
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 15px;
  border-radius: 4px;
}
.client-logo-area .section-title-two h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo-area .section-title-two h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .client-logo-area .section-title-two h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.client-logo-area .section-title-two p {
  color: var(--dark-3);
}

/*===== Client Logo One =====*/
.client-logo-one {
  padding-top: 100px;
  padding-bottom: 100px;
}
.client-logo-one .single-client {
  margin-top: 30px;
}


/*===== FOOTER ONE =====*/
.footer-one {
  background-color: var(--light-2);
}
.footer-one .footer-logo {
  margin-top: 30px;
}
.footer-one .footer-widget {
  padding-top: 70px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-one .footer-widget {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .footer-one .footer-widget {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.footer-one .footer-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--black);
  position: relative;
}
.footer-one .footer-app-store {
  padding-top: 22px;
}
.footer-one .footer-app-store .download-title {
  font-size: 15px;
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--dark-1);
}
.footer-one .footer-app-store li {
  display: inline-block;
  margin-right: 8px;
}
.footer-one .footer-app-store li img {
  max-width: 140px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-one .footer-app-store li {
    margin-right: 6px;
  }
}
.footer-one .footer-app-store li:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .footer-one .footer-app-store li {
    width: 120px;
    display: block;
    margin-bottom: 10px;
  }
  .footer-one .footer-app-store li:last-child {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-one .footer-app-store li {
    width: auto;
  }
}
.footer-one .footer-app-store li a {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.footer-one .footer-app-store li a:hover {
  box-shadow: var(--shadow-4);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}
.footer-one .f-about {
  margin-top: 30;
}
.footer-one .f-about .text {
  margin-top: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .footer-one .f-about {
    padding-right: 200px;
  }
}
.footer-one .footer-link {
  margin-top: 30px;
}
.footer-one .footer-link ul {
  margin-top: 8px;
}
.footer-one .footer-link ul a {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-3);
  margin-top: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .footer-one .footer-link ul a {
    margin-top: 12px;
  }
}
.footer-one .footer-link ul a:hover {
  color: var(--orange-exprivia);
}
.footer-one .footer-contact {
  margin-top: 30px;
}
.footer-one .footer-contact ul {
  margin-top: 24px;
}
.footer-one .footer-contact ul li {
  display: block;
  margin-top: 15px;
  position: relative;
  padding-left: 24px;
  color: var(--dark-3);
}
.footer-one .footer-contact ul li:first-child {
  margin: 0;
}
.footer-one .footer-contact ul li i {
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 4px;
}
.footer-one .footer-copyright {
  border-top: 1px solid var(--gray-4);
}
.footer-one .copyright {
  padding-bottom: 23px;
  padding-top: 13px;
}
.footer-one .copyright .text {
  color: var(--dark-3);
  margin-top: 10px;
}
.footer-one .social {
  margin-top: 10px;
}
.footer-one .social li {
  display: inline-block;
  margin-right: 15px;
}
.footer-one .social li:last-child {
  margin-right: 0;
}
.footer-one .social li a {
  font-size: 18px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.footer-one .social li a:hover {
  /*color: var(--primary);*/
  color:#FFF;
}

/* ********************************************************************** */
/* *********** c u s t o m   C S S ************************************** */
/* ********************************************************************** */
.table-content-col1-2 {
  width: 50%;
  float: left;
  padding-bottom: 8px;
}

h4.course-title{
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  background: #fff;
  height: 45px;
}
p.course-subtitle {
  height: 65px;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

}

.align-right {
  text-align: right;
}


.circular-image {
  /*border: 1px solid var(--primary-exprivia);*/
  border-radius: 3px;
}

.header-image-404 {
  float: none;
  height: 350px;
  width: 350px;
  margin:0 auto;
  display: block;
  border-radius: 50%;
  background-image: url("../images/site/404_mod.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
  border: 3px solid var(--orange-exprivia);
}

.header-image-mail-sent {
  float: none;
  height: 350px;
  width: 350px;
  margin:0 auto;
  display: block;
  border-radius: 50%;
  background-image: url("../images/site/email_sent.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
  border: 3px solid var(--orange-exprivia);
}

.content-page-par p {
  padding-bottom: 15px;
}

/* RIBBON - start */
.ribbon-box {
  width: 200px; height: 300px;
  position: relative;
  border: 1px solid #BBB;
  background: #EEE;
}
.ribbon {
  position: absolute;
  right: -5px; top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}
.ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(#F76F2A 0%, #DF6426 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px; right: -21px;
}
.ribbon span::before {
  content: "";
  position: absolute; left: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid #DF6426;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #DF6426;
}
.ribbon span::after {
  content: "";
  position: absolute; right: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #DF6426;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #DF6426;
}

#share-buttons a {
  font-size: 190%; 
  padding-right: 5px;
  padding-left: 5px;
  color: var(--primary-exprivia);
}

#share-buttons a :hover{
  color: var(--orange-exprivia);
}

.privacy-box a:hover {
  color: var(--orange-exprivia);
}

.col-custom {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.info-body-custom {
  margin-left: 100px;
}

.info-body-custom li {
  color: dimgrey;
}


.nav-active {
  /*border-bottom-color: var(--orange-exprivia);*/
  background-color: var(--orange-exprivia);
}

.star-checked {
  color: var(--orange-exprivia);
}

.custom-stars {
  padding-bottom: 15px;
}

@media (min-width: 992px) {
  .main-desc-badge {
    width: 80%;
  }
  .main-img-badge {
    max-width: 20%;
  }
  .desc-bottom-badge {
    width: 100%;
  }
  .desc-bottom-badge ul {
    color: dimgrey;
  }

}

.details-container {
  display: flex;
  flex-wrap: nowrap;
}

.category {
  max-width: 100%;
  flex: 0 0 35%;
}

.tags-container {
  flex: 0 0 60%;
  text-align: left;
}

.game-img-custom {
  width: 65% !important; 
}

.custom-button {
  background-color: var(--orange-exprivia);
  font-size: 13px;
  width: 110%;
}

/**********************************
 * BADGE OVERRIDE
 * ********************************/

.badge-title-sub-container {
  max-width: 100% !important;
}

.badge-title {

}

p.big-text,
h5.badge-subtitle {
  font-size: 22px !important;
  font-weight: 300 !important;
  text-align: left !important;
  color: var(--primary-exprivia) !important;
  line-height: 1.5em;
}

.badges-container a {
  color: var(--orange-exprivia);
}

/**********************************
 * TRAINING OVERRIDE
 * ********************************/

.cta-banner {
    border: 2px solid var(--primary-exprivia);
}

.training-cta .primary-btn {
  background: var(--primary-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.training-container.active.primary-btn, 
.training-container .primary-btn:hover, 
.training-container .primary-btn:focus {
  background: var(--orange-exprivia);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.training-container .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}
/*
.cta-button {
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--orange-exprivia);
    border-color: var(--orange-exprivia);
}
*/

/**********************************
 * PLAYER VIDEO
 * ********************************/

/* Stile per il contenitore del video */
.video-container {
    position: relative;
    /*width: 640px;*/
    margin: 0 auto;
}

/* Stile per il video */
video {
    width: 100%;
    height: auto;
}

/* Stile per i controlli personalizzati */
/*.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px;
    color: white;
}*/
/*
button {
    background-color: #444;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

input[type="range"] {
    width: 150px;
}
*/