.btnGradient {
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
}

.btnPtrn {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
  transition-duration: 0.3s;
  text-align: center;
  min-width: 130px;
  padding: 8px 20px;
  border-radius: 50px;
  position: relative;
  -webkit-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.btnPtrn:before,
.btnPtrn:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  transform: translateX(-100px) skewX(-15deg);
}

.btnPtrn:before {
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  left: 0;
  opacity: 0.5;
  filter: blur(30px);
}

.btnPtrn:after {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  left: 30px;
  opacity: 0;
  filter: blur(5px);
}

.btnPtrn:hover,
.btnPtrn:focus {
  background-color: #A50C11;
  color: #fff;
  -webkit-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
}

.btnPtrn:hover:before,
.btnPtrn:focus:before,
.btnPtrn:hover:after,
.btnPtrn:focus:after {
  transform: translateX(300px) skewX(-15deg);
  transition: 0.7s;
}

.btnPtrn:hover:before,
.btnPtrn:focus:before {
  opacity: 0.6;
}

.btnPtrn:hover:after,
.btnPtrn:focus:after {
  opacity: 1;
}

@media (min-width: 768px) {
  .btnPtrn {
    font-size: 16px;
    min-width: 160px;
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .btnPtrn {
    font-size: 20px;
    min-width: 200px;
    padding: 15px 20px;
    -webkit-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
  }
}

html {
  scrollbar-color: #c6cfd5 #d9e1e6;
  scrollbar-width: thin;
}

body {
  color: #000;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 992px) {
  body {
    font-size: 16px;
  }
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #d9e1e6;
}

body::-webkit-scrollbar-thumb {
  background: #c6cfd5;
}

body::-moz-scrollbar {
  width: 8px;
}

body::-moz-scrollbar-track {
  background: #d9e1e6;
}

body::-moz-scrollbar-thumb {
  background: #c6cfd5;
}

body::-o-scrollbar {
  width: 8px;
}

body::-o-scrollbar-track {
  background: #d9e1e6;
}

body::-o-scrollbar-thumb {
  background: #c6cfd5;
}

body::-ms-scrollbar {
  width: 8px;
}

body::-ms-scrollbar-track {
  background: #d9e1e6;
}

body::-ms-scrollbar-thumb {
  background: #c6cfd5;
}

::selection {
  background: #C72127;
  color: #fff;
}

::-moz-selection {
  background: #C72127;
  color: #fff;
}

::-webkit-selection {
  background: #C72127;
  color: #fff;
}

.navbar-brand {
  max-width: 280px;
  padding: 0;
}

@media (min-width: 768px) {
  .navbar-brand {
    max-width: 400px;
  }
}

@media (min-width: 992px) {
  .navbar-brand {
    max-width: 550px;
  }
}

.navbar {
  position: absolute;
  z-index: 1;
}

.navbar-brand img {
  width: 100%;
}

.navbar-toggler {
  padding: 0;
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  padding: 6px 0px;
  margin: 0 12px;
  color: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .navbar .navbar-nav .nav-item .nav-link {
    color: #000000;
    padding: 8px 0px;
  }
}

.navbar .navbar-nav .nav-item>.nav-link:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #C72127;
  transition-duration: 0.3s;
}

@media (min-width: 992px) {
  .navbar .navbar-nav .nav-item>.nav-link:before {
    content: '';
  }
}

.navbar .navbar-nav .nav-item>.nav-link:hover:before {
  width: 100%;
}

.navbar .navbar-nav .nav-item>.nav-link.active:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #C72127;
}

@media (min-width: 992x) {
  .navbar .navbar-nav .nav-item>.nav-link.active {
    color: #C72127;
  }

  .navbar .navbar-nav .nav-item>.nav-link.active:before {
    content: '';
  }
}

.navbar .dropdown-menu {
  border-radius: 3px;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.13);
  border: none;
}

.navbar .dropdown-menu .dropdown-item {
  text-wrap: unset;
  font-size: 14px;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    background: none;
    border: none;
    margin: 0 0 10px;
    padding: 0;
  }

  .navbar .dropdown-menu .dropdown-item {
    color: #fff;
  }

  .navbar .offcanvas-body {
    padding: 10px;
  }

  .navbar .offcanvas {
    width: 250px !important;
  }

  .navbar .offcanvas-start-lg {
    top: 0;
    left: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    background: #C72127;
    background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
    background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
    background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
  }
}

@media screen and (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: none;
  }

  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
    width: 260px;
  }
}

.container {
  max-width: 1440px;
}

@media (min-width: 1200px) {
  .container {
    width: 90%;
  }
}

@media (min-width: 1440px) {
  .container {
    width: 100%;
  }
}

.bannerSec {
  width: 100%;
  padding: 15px 0;
}

@media (min-width: 768px) {
  .bannerSec {
    padding: 30px 0;
  }
}

.bannerSec .bannerImg-wrap {
  width: 100%;
  padding-left: 30px;
  display: flex;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .bannerSec .bannerImg-wrap {
    padding-left: 18%;
  }
}

@media (min-width: 1200px) {
  .bannerSec .bannerImg-wrap:after {
    content: "";
    width: 250%;
    height: 250%;
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    opacity: 0;
    background: radial-gradient(circle closest-side, rgba(255, 255, 255, 0.3), transparent);
    transition: opacity 0.5s ease-out;
  }
}

.bannerSec .bannerImg-wrap:hover {
  opacity: 1;
}

.bannerSec .bannerImg-wrap:hover:after {
  opacity: 1;
}

.bannerSec .bannerImg-wrap img {
  width: 100%;
  border-radius: 5px;
}

.bannerSec .bannerImg-wrap img:hover {
  opacity: 1;
}

.bannerSec .bannerImg-wrap img:hover:after {
  opacity: 1;
}

.bannerSec .workExp {
  position: absolute;
  left: 13px;
  bottom: 30px;
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
  background: linear-gradient(132deg, #6d87ac 11.4%, #0A151C 70.2%);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  width: 190px;
  height: 190px;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.bannerSec .workExp:after {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  left: 50%;
  margin-left: -30px;
  z-index: -1;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: roundWaves infinite 1.5s;
  -moz-animation: roundWaves infinite 1.5s;
  animation: roundWaves infinite 1.5s;
}

@keyframes roundWaves {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
    opacity: 0;
  }
}

@-moz-keyframes roundWaves {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
    opacity: 0;
  }
}

@-webkit-keyframes roundWaves {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
    opacity: 0;
  }
}

.bannerSec .workExp .year {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  width: 100%;
  text-align: center;
}

.bannerSec .workExp p {
  color: #fff;
  font-size: 16px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
}

.bannerSec .bannerCtnt {
  width: 100%;
}

@media (min-width: 768px) {
  .bannerSec .bannerCtnt {
    padding-right: 5%;
    margin-top: 5%;
  }
}

.bannerSec .bannerCtnt h2 {
  color: #C72127;
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
}

@media (min-width: 768px) {
  .bannerSec .bannerCtnt h2 {
    font-size: 16px;
  }
}

.bannerSec .bannerCtnt h1 {
  font-weight: 700;
  font-size: 28px;
  text-transform: capitalize;
  color: #000;
  margin-top: 0;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .bannerSec .bannerCtnt h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .bannerSec .bannerCtnt h1 {
    font-size: 40px;
  }
}

.bannerSec .bannerCtnt p {
  color: #6E727D;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .bannerSec .bannerCtnt p {
    margin-bottom: 30px;
  }
}

.bannerSec .bannerCtnt ul {
  padding: 0;
  margin-bottom: 1.5em;
  width: 100%;
  list-style: none;
}

@media (min-width: 768px) {
  .bannerSec .bannerCtnt ul {
    margin-bottom: 2em;
  }
}

.bannerSec .bannerCtnt ul li {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  display: flex;
  align-items: center;
}

.bannerSec .bannerCtnt ul li:before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(../images/tick.svg);
  background-size: contain;
  position: absolute;
  left: 0;
}

@media (min-width: 768px) {
  .bannerSec .bannerCtnt ul li {
    margin-bottom: 20px;
  }

  .bannerSec .bannerCtnt ul li:before {
    width: 20px;
    height: 20px;
  }
}

.bannerSec .bannerCtnt .emerg {
  width: 100%;
  position: relative;
  padding-left: 55px;
}

@media (max-width: 767px) {
  .bannerSec .bannerCtnt .emerg {
    margin-bottom: 2em;
  }
}

.bannerSec .bannerCtnt .emerg:before {
  content: '';
  width: 40px;
  height: 40px;
  background-image: url(../images/chat.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.bannerSec .bannerCtnt .emerg h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

@media (min-width: 768pc) {
  .bannerSec .bannerCtnt .emerg h4 {
    font-size: 20px;
  }
}

.bannerSec .bannerCtnt .emerg h4 span {
  display: block;
  font-weight: 400;
  margin-bottom: 10px;
}

.bannerSec .bannerCtnt .successRate {
  width: 100%;
  background-color: #F7F8F9;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 2em;
}

@media (min-width: 768px) {
  .bannerSec .bannerCtnt .successRate {
    justify-content: center;
    margin-bottom: 0;
  }
}

.bannerSec .bannerCtnt .successRate h6 {
  color: #C72127;
  font-size: 30px;
  margin: 15px 0;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .bannerSec .bannerCtnt .successRate h6 {
    font-size: 40px;
    letter-spacing: -3px;
  }
}

@media (min-width: 992px) {
  .bannerSec .bannerCtnt .successRate h6 {
    font-size: 48px;
  }
}

.bannerSec .bannerCtnt .successRate h6 div {
  letter-spacing: normal;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  display: block;
}

.categorySec {
  width: 100%;
  padding: 30px 0;
  background-image: url("../images/bg-pattern.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-origin: content-box;
  overflow: hidden;
}

@media (min-width: 768px) {
  .categorySec {
    padding: 35px 0;
  }
}

@media (min-width: 992px) {
  .categorySec {
    padding: 45px 0;
  }
}

.categorySecimg .sectionImg {
  width: 100%;
  padding: 15px;
  background-image: url("../images/category-bg.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .categorySec .sectionImg {
    margin-bottom: 1em;
  }
}

.categorySec .sectionImg img {
  width: 100%;
  --a: -3deg;
  transform: perspective(600px) rotate3d(var(--r, 1, -1), 0, calc(var(--i, 1)*var(--a)));
  -webkit-mask: linear-gradient(135deg, #000c 40%, #000, #000c 100%) 100% 100%/250% 250%;
  transition: 0.4s;
  cursor: pointer;
}

.categorySec .sectionImg img:hover {
  --i: -1;
  -webkit-mask-position: 0 0;
}

@media (min-width: 768px) {
  .categorySec .categoryCtnt.left {
    padding-right: 8%;
  }
}

@media (min-width: 768px) {
  .categorySec .categoryCtnt.right {
    padding-left: 8%;
  }
}

.categorySec .categoryCtnt h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px;
  max-width: 350px;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .categorySec .categoryCtnt h2 {
    font-size: 35px;
    margin: 0 0 20px;
    max-width: 400px;
  }
}

@media (min-width: 992px) {
  .categorySec .categoryCtnt h2 {
    font-size: 38px;
    margin: 0 0 30px;
    max-width: 400px;
  }
}

@media (min-width: 1200px) {
  .categorySec .categoryCtnt h2 {
    font-size: 45px;
  }
}

.categorySec .categoryCtnt p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #6E727D;
}

@media (min-width: 768px) {
  .categorySec .categoryCtnt p {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .categorySec .categoryCtnt p {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.categorySec .categoryCtnt .readMore {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
  transition-duration: 0.3s;
  text-align: center;
  min-width: 130px;
  padding: 8px 20px;
  border-radius: 50px;
  position: relative;
  -webkit-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  height: 50px;
}

.categorySec .categoryCtnt .readMore:before,
.categorySec .categoryCtnt .readMore:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  transform: translateX(-100px) skewX(-15deg);
}

.categorySec .categoryCtnt .readMore:before {
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  left: 0;
  opacity: 0.5;
  filter: blur(30px);
}

.categorySec .categoryCtnt .readMore:after {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  left: 30px;
  opacity: 0;
  filter: blur(5px);
}

.categorySec .categoryCtnt .readMore:hover,
.categorySec .categoryCtnt .readMore:focus {
  background-color: #A50C11;
  color: #fff;
  -webkit-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
}

.categorySec .categoryCtnt .readMore:hover:before,
.categorySec .categoryCtnt .readMore:focus:before,
.categorySec .categoryCtnt .readMore:hover:after,
.categorySec .categoryCtnt .readMore:focus:after {
  transform: translateX(300px) skewX(-15deg);
  transition: 0.7s;
}

.categorySec .categoryCtnt .readMore:hover:before,
.categorySec .categoryCtnt .readMore:focus:before {
  opacity: 0.6;
}

.categorySec .categoryCtnt .readMore:hover:after,
.categorySec .categoryCtnt .readMore:focus:after {
  opacity: 1;
}

@media (min-width: 768px) {
  .categorySec .categoryCtnt .readMore {
    font-size: 16px;
    min-width: 160px;
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .categorySec .categoryCtnt .readMore {
    font-size: 20px;
    min-width: 200px;
    padding: 6px 20px;
    -webkit-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
  }
}

.testimonialSec {
  width: 100%;
  padding: 30px 0 20px;
  position: relative;
  overflow: hidden;
}

.testimonialSec .owl-dots {
  display: inline-flex;
  gap: 10px;
}

.testimonialSec .owl-dots .owl-dot span {
  background-color: #C72127;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  display: block;
  transition: all 0.3s cubic-bezier(0.44, -1.39, 0, 1.78);
}

.testimonialSec .owl-dots .owl-dot.active span,
.testimonialSec .owl-dots .owl-dot:hover span {
  box-shadow: 0 0 0 3px rgba(199, 33, 39, 0.2);
  -webkit-box-shadow: 0 0 0 3px rgba(199, 33, 39, 0.2);
}

@media (min-width: 768px) {
  .testimonialSec {
    padding: 40px 0 30px;
  }
}

@media (min-width: 992px) {
  .testimonialSec {
    padding: 60px 0 40px;
  }
}

@media (min-width: 1200px) {
  .testimonialSec {
    padding: 80px 0 60px;
  }
}

.testimonialSec:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-color: #f7f6fb;
  z-index: -1;
}

.testimonialSec h2 {
  font-size: 28px;
  max-width: 420px;
  font-weight: 700;
  margin-left: 6%;
  margin-bottom: 1em;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .testimonialSec h2 {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .testimonialSec h2 {
    font-size: 36px;
  }
}

@media (min-width: 1200px) {
  .testimonialSec h2 {
    font-size: 40px;
  }
}

.testimonialSec .testimonialBanner {
  position: relative;
  width: 100%;
  padding-left: 12%;
}

@media (max-width: 992px) {
  .testimonialSec .testimonialBanner {
    padding-right: 12%;
  }
}

.testimonialSec .testimonialBanner img {
  width: 100%;
  border-radius: 10px;
  transition: 0.4s;
}

@media (min-width: 1200px) {
  .testimonialSec .testimonialBanner img:hover {
    transform: scale(1.04);
    -webkit-box-shadow: 0px 18px 44px 9px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 18px 44px 9px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 18px 44px 9px rgba(0, 0, 0, 0.13);
  }
}

.testimonialSec .testimonialBanner:before,
.testimonialSec .testimonialBanner:after {
  content: '';
  position: absolute;
  background-image: url(../images/square-dots.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 92px;
  height: 92px;
  z-index: -1;
}

@media (min-width: 768px) {

  .testimonialSec .testimonialBanner:before,
  .testimonialSec .testimonialBanner:after {
    width: 142px;
    height: 142px;
  }
}

.testimonialSec .testimonialBanner:before {
  top: -46px;
  left: 0px;
}

@media (min-width: 768px) {
  .testimonialSec .testimonialBanner:before {
    top: -71px;
    left: 0px;
  }
}

.testimonialSec .testimonialBanner:after {
  bottom: -46px;
  right: 0px;
}

@media (min-width: 768px) {
  .testimonialSec .testimonialBanner:after {
    bottom: -71px;
    right: -71px;
  }
}

.testimonialSec .carousel-wrap {
  padding: 0 12%;
}

.testimonialSec .testimonialCarousel {
  width: 100%;
}

.testimonialSec .testimonialCarousel .testimonialCtnt {
  width: 100%;
  padding: 25px 0 15px;
  position: relative;
}

.testimonialSec .testimonialCarousel .testimonialCtnt:before {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0px;
  bottom: 15px;
  background-image: url(../images/quote-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: invert(100%) opacity(7%);
}

.testimonialSec .testimonialCarousel .testimonialCtnt h4 {
  font-size: 24px;
  color: #000;
  line-height: 1;
  text-transform: capitalize;
  margin: 0 0 10px;
}

.testimonialSec .testimonialCarousel .testimonialCtnt p {
  color: #6E727D;
  margin-bottom: 1.5em;
}

.testimonialSec .testimonialCarousel .testimonialCtnt h6 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0 0 5px;
  text-transform: capitalize;
}

.testimonialSec .testimonialCarousel .testimonialCtnt h5 {
  font-size: 14px;
  margin: 0;
  color: #6E727D;
}

.testimonialSec .viewAll {
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
  position: relative;
  border: none;
  margin-top: 1em;
  box-shadow: none;
  background-color: transparent;
}

.testimonialSec .viewAll:before {
  content: '';
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 1px;
  transition-duration: 0.3s;
  background-color: #C72127;
}

.testimonialSec .viewAll:hover:before,
.testimonialSec .viewAll:focus:before {
  width: 50%;
}

@media (min-width: 768px) {
  .testimonialSec .viewAll {
    font-size: 16px;
    margin-top: 1.5em;
  }
}

@media (min-width: 992px) {
  .testimonialSec .viewAll {
    font-size: 18px;
    min-width: 280px;
    margin-top: 2.2em;
  }
}

footer {
  width: 100%;
  overflow: hidden;
}

footer .newsletterSec {
  width: 100%;
  padding: 35px 0;
  margin-bottom: 1em;
  background-color: #C72127;
  background-image: url("../images/newsletter-bg.svg");
  background-position: center;
  background-attachment: fixed;
}

@media (min-width: 768px) {
  footer .newsletterSec {
    padding: 45px 0;
    margin-bottom: 2em;
  }
}

@media (min-width: 1200px) {
  footer .newsletterSec {
    margin-bottom: 3em;
    padding: 50px 0;
  }
}

footer .newsletterSec .newsletterContainer {
  width: 100%;
  max-width: 710px;
  margin: 0 auto;
  text-align: center;
}

footer .newsletterSec .newsletterContainer h3 {
  color: #fff;
  font-size: 26px;
  text-transform: capitalize;
  font-weight: 700;
}

@media (min-width: 768px) {
  footer .newsletterSec .newsletterContainer h3 {
    font-size: 36px;
  }
}

footer .newsletterSec .newsletterContainer p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 1.5em;
}

@media (min-width: 768px) {
  footer .newsletterSec .newsletterContainer p {
    font-size: 20px;
  }
}

footer .newsletterSec .newsletterContainer .newsletterForm {
  width: 100%;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2px;
  margin-top: 15px;
}

footer .newsletterSec .newsletterContainer .newsletterForm .form-control {
  background-color: transparent;
  border: none;
  height: 45px;
  padding: 8px 15px;
}

@media (min-width: 768px) {
  footer .newsletterSec .newsletterContainer .newsletterForm .form-control {
    height: 65px;
    padding: 10px 15px;
  }
}

@media (min-width: 992px) {
  footer .newsletterSec .newsletterContainer .newsletterForm .form-control {
    height: 50px;
  }
}

footer .newsletterSec .newsletterContainer .newsletterForm .form-control:focus {
  outline: none;
  box-shadow: none;
}

footer .newsletterSec .newsletterContainer .newsletterForm .newsletterBtn {
  background-color: #fff;
  color: #C72127;
  font-size: 16px;
  font-weight: 500;
  height: 41px;
  min-width: 120px;
  text-align: center;
  padding: 6px 10px;
  border: 2px solid #C72127;
  border-radius: 50px;
}

@media (min-width: 768px) {
  footer .newsletterSec .newsletterContainer .newsletterForm .newsletterBtn {
    height: 61px;
    font-size: 18px;
    min-width: 150px;
    padding: 8px 12px;
  }
}

@media (min-width: 992px) {
  footer .newsletterSec .newsletterContainer .newsletterForm .newsletterBtn {
    height: 71px;
    font-size: 20px;
    min-width: 230px;
    padding: 10px 15px;
  }
}

footer .contactWrap {
  width: 100%;
  padding: 15px;
  background-color: #F7F7F9;
  display: flex;
  -webkit-box-shadow: 0px 9px 7px -7px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 9px 7px -7px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 9px 7px -7px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  footer .contactWrap {
    margin: 0;
    min-height: 116px;
  }
}

footer .contactWrap .icon {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #C72127;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .contactWrap .icon img {
  height: 22px;
  width: 24px;
}

footer .contactWrap .contactCtnt {
  width: calc(100% - 50px);
  padding-left: 15px;
}

footer .contactWrap .contactCtnt h4 {
  color: #6D6D6D;
  margin: 0 0 10px;
  font-size: 16px;
}

footer .contactWrap .contactCtnt p {
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 15px;
}

footer .contactWrap .contactCtnt p a {
  color: #000;
  text-decoration: none;
}

footer .footer-btmSec {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

@media (min-width: 768px) {
  footer .footer-btmSec {
    padding: 40px 0;
  }
}

@media (min-width: 992px) {
  footer .footer-btmSec {
    padding: 50px 0;
  }
}

footer .footer-btmSec h2 {
  margin: 0 0 15px;
  display: inline-block;
}

footer .footer-btmSec h2 img {
  width: 100%;
  max-width: 260px;
}

@media (min-width: 768px) {
  footer .footer-btmSec h2 img {
    max-width: 320px;
  }
}

@media (min-width: 992px) {
  footer .footer-btmSec h2 img {
    max-width: 400px;
  }
}

@media (min-width: 1200px) {
  footer .footer-btmSec h2 img {
    max-width: 445px;
  }
}

footer .footer-btmSec ul {
  padding: 0;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}

@media (min-width: 768px) {
  footer .footer-btmSec ul {
    margin: 15px 0;
  }
}

footer .footer-btmSec ul li {
  margin: 0 10px;
}

footer .footer-btmSec ul li a img {
  width: 20px;
}

@media (min-width: 768px) {
  footer .footer-btmSec ul li a img {
    width: 25px;
  }
}

footer .footer-btmSec p {
  margin: 2em 0 0;
}

footer .footer-btmSec p a {
  color: #000;
  text-decoration: underline;
}

.helpDsk {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 9;
}

.helpDsk a {
  width: 45px;
  height: 45px;
  border-radius: 50px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.44, -1.39, 0, 1.78);
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
}

.helpDsk a img {
  width: 100%;
  transition-duration: 0.3s;
}

.helpDsk a:hover {
  box-shadow: 0 0 0 10px rgba(199, 33, 39, 0.2);
  -webkit-box-shadow: 0 0 0 10px rgba(199, 33, 39, 0.2);
}

.helpDsk a:hover img {
  transform: rotateY(180deg);
}

@media (min-width: 768px) {
  .helpDsk {
    bottom: 40px;
    right: 40px;
  }

  .helpDsk a {
    width: 60px;
    height: 60px;
  }
}

.targetScroll {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  display: inline-flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 767px) {
  .targetScroll {
    display: none;
  }
}

.targetScroll a {
  width: 10px;
  height: 10px;
  background-color: #C72127;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.44, -1.39, 0, 1.78);
}

.targetScroll a:hover {
  box-shadow: 0 0 0 4px rgba(199, 33, 39, 0.2);
  -webkit-box-shadow: 0 0 0 4px rgba(199, 33, 39, 0.2);
}

.innerPages {
  width: 100%;
  padding: 15px 0;
}

@media (min-width: 768px) {
  .innerPages {
    padding: 25px 0;
  }
}

@media (min-width: 992px) {
  .innerPages {
    padding: 35px 0;
  }
}

.innerPages .innertitleSec {
  width: 100%;
  margin-bottom: 1em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.innerPages .innertitleSec h1 {
  font-size: 28px;
  color: #000;
  text-transform: capitalize;
  position: relative;
  padding-left: 35px;
}

.innerPages .innertitleSec h1:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 25px;
  height: 5px;
  background-color: #C72127;
  transition-duration: 0.3s;
  border-radius: 10px;
}

.innerPages .innertitleSec h1:hover:before {
  width: 30px;
}

@media (min-width: 576px) {
  .innerPages .innertitleSec h1 {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .innerPages .innertitleSec {
    margin-bottom: 1.5em;
  }

  .innerPages .innertitleSec h1 {
    font-size: 35px;
  }
}

@media (min-width: 992px) {
  .innerPages .innertitleSec {
    margin-bottom: 2em;
  }

  .innerPages .innertitleSec h1 {
    font-size: 40px;
  }
}

.innerPages .innertitleSec .breadcrumb {
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  background-color: #f6f6f6;
}

@media (min-width: 768px) {
  .innerPages .innertitleSec .breadcrumb {
    padding: 8px 15px;
  }
}

@media (min-width: 992px) {
  .innerPages .innertitleSec .breadcrumb {
    padding: 10px 15px;
  }
}

.innerPages .innertitleSec .breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.innerPages .innertitleSec .breadcrumb-item a {
  color: #C72127;
  text-decoration: none;
  font-weight: 600;
}

.innerPages .innertitleSec .breadcrumb-item+.breadcrumb-item:before {
  content: '';
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 7x;
  height: 7px;
  margin-right: 10px;
}

.innerPages .innertitleSec .breadcrumb-item.active {
  color: #6E727D;
}

.innerPages .portfolioSec {
  width: 100%;
}

.innerPages .portfolioSec .portBox {
  width: 100%;
  margin-bottom: 1.5em;
}

.innerPages .portfolioSec .portBox a {
  display: inline-block;
  text-decoration: none;
}

.innerPages .portfolioSec .portBox .portImg {
  max-height: 190px;
  overflow: hidden;
  border: 6px solid #ededed;
  border-top: 10px solid #ededed;
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: inset 0px 10px 0px 0px #ededed;
  -moz-box-shadow: inset 0px 10px 0px 0px #ededed;
  box-shadow: inset 0px 10px 0px 0px #ededed;
  position: relative;
}

.innerPages .portfolioSec .portBox .portImg img {
  width: 100%;
  border-radius: 6px 6px 0 0;
}

.innerPages .portfolioSec .portBox .portImg:before,
.innerPages .portfolioSec .portBox .portImg:after {
  content: '';
  position: absolute;
  opacity: 0;
  transition-duration: 0.3s;
}

.innerPages .portfolioSec .portBox .portImg:after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 6px 6px 0 0;
  z-index: 1;
}

.innerPages .portfolioSec .portBox .portImg:before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  z-index: 2;
}

.innerPages .portfolioSec .portBox .portCtnt {
  padding: 6px;
  width: 100%;
}

.innerPages .portfolioSec .portBox .portCtnt h4 {
  font-size: 16px;
  margin: 0;
  color: #6E727D;
  text-transform: capitalize;
  font-weight: 600;
}

.innerPages .portfolioSec .portBox:hover .portImg:after,
.innerPages .portfolioSec .portBox:hover .portImg:before {
  opacity: 1;
}

.innerPages .portfolioSec .loadMore {
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
  transition-duration: 0.3s;
  text-align: center;
  min-width: 130px;
  padding: 8px 20px;
  border-radius: 50px;
  position: relative;
  -webkit-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.innerPages .portfolioSec .loadMore:before,
.innerPages .portfolioSec .loadMore:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  transform: translateX(-100px) skewX(-15deg);
}

.innerPages .portfolioSec .loadMore:before {
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  left: 0;
  opacity: 0.5;
  filter: blur(30px);
}

.innerPages .portfolioSec .loadMore:after {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  left: 30px;
  opacity: 0;
  filter: blur(5px);
}

.innerPages .portfolioSec .loadMore:hover,
.innerPages .portfolioSec .loadMore:focus {
  background-color: #A50C11;
  color: #fff;
  -webkit-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
}

.innerPages .portfolioSec .loadMore:hover:before,
.innerPages .portfolioSec .loadMore:focus:before,
.innerPages .portfolioSec .loadMore:hover:after,
.innerPages .portfolioSec .loadMore:focus:after {
  transform: translateX(300px) skewX(-15deg);
  transition: 0.7s;
}

.innerPages .portfolioSec .loadMore:hover:before,
.innerPages .portfolioSec .loadMore:focus:before {
  opacity: 0.6;
}

.innerPages .portfolioSec .loadMore:hover:after,
.innerPages .portfolioSec .loadMore:focus:after {
  opacity: 1;
}

@media (min-width: 768px) {
  .innerPages .portfolioSec .loadMore {
    font-size: 16px;
    min-width: 160px;
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .innerPages .portfolioSec .loadMore {
    font-size: 20px;
    min-width: 200px;
    padding: 15px 20px;
    -webkit-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
  }
}

.innerPages .portfolioSec .loadMore img {
  width: 20px;
  margin-left: 10px;
}

.innerPages .getTouch {
  width: 100%;
}

.innerPages .getTouch .getCard {
  width: 100%;
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
  margin-bottom: 25px;
  padding: 20px 15px;
  transition-duration: 0.3s;
  border-radius: 10px;
}

.innerPages .getTouch .getCard:hover {
  -webkit-box-shadow: 0px 2px 23px -1px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 2px 23px -1px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 2px 23px -1px rgba(0, 0, 0, 0.34);
}

.innerPages .getTouch .getCard h2 {
  color: #fff;
  font-size: 24px;
}

.innerPages .getTouch .getCard p {
  margin: 0;
  color: #fff;
}

.innerPages .getTouch .getCard p a {
  color: #fff;
}

@media (min-width: 768px) {
  .innerPages .getTouch .getCard {
    margin-bottom: 3em;
  }
}

.innerPages .getTouch iframe {
  filter: grayscale(100%);
  -webkit-box-shadow: 0px 2px 23px -1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 23px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 23px -1px rgba(0, 0, 0, 0.2);
}

.innerPages .getTouch h5 {
  font-weight: 500;
  line-height: 1.5;
  color: #6E727D;
  margin-bottom: 1.5em;
  font-size: 16px;
}

@media (min-width: 768px) {
  .innerPages .getTouch h5 {
    font-size: 20px;
  }
}

.innerPages .getTouch .form-control {
  border: none;
  border-bottom: 1px solid #6E727D;
  border-radius: 0;
  padding: 10px 0;
}

.innerPages .getTouch .form-control:hover,
.innerPages .getTouch .form-control:focus {
  box-shadow: none;
}

.innerPages .getTouch .sendBtn {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
  transition-duration: 0.3s;
  text-align: center;
  min-width: 130px;
  padding: 8px 20px;
  border-radius: 50px;
  position: relative;
  -webkit-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.innerPages .getTouch .sendBtn:before,
.innerPages .getTouch .sendBtn:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  transform: translateX(-100px) skewX(-15deg);
}

.innerPages .getTouch .sendBtn:before {
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  left: 0;
  opacity: 0.5;
  filter: blur(30px);
}

.innerPages .getTouch .sendBtn:after {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  left: 30px;
  opacity: 0;
  filter: blur(5px);
}

.innerPages .getTouch .sendBtn:hover,
.innerPages .getTouch .sendBtn:focus {
  background-color: #A50C11;
  color: #fff;
  -webkit-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
}

.innerPages .getTouch .sendBtn:hover:before,
.innerPages .getTouch .sendBtn:focus:before,
.innerPages .getTouch .sendBtn:hover:after,
.innerPages .getTouch .sendBtn:focus:after {
  transform: translateX(300px) skewX(-15deg);
  transition: 0.7s;
}

.innerPages .getTouch .sendBtn:hover:before,
.innerPages .getTouch .sendBtn:focus:before {
  opacity: 0.6;
}

.innerPages .getTouch .sendBtn:hover:after,
.innerPages .getTouch .sendBtn:focus:after {
  opacity: 1;
}

@media (min-width: 768px) {
  .innerPages .getTouch .sendBtn {
    font-size: 16px;
    min-width: 160px;
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .innerPages .getTouch .sendBtn {
    font-size: 20px;
    min-width: 200px;
    padding: 15px 20px;
    -webkit-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
  }
}

.innerPages .careerPage {
  width: 100%;
}

.innerPages .careerPage h2 {
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
  margin: 0 auto 1.5em;
  color: #6E727D;
}

@media (min-width: 768px) {
  .innerPages .careerPage h2 {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .innerPages .careerPage h2 {
    font-size: 20px;
  }
}

.innerPages .careerPage .careerBox {
  width: 100%;
  padding: 15px;
  margin: 12px 0;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  background-color: #f6f6f6;
  transition-duration: 0.3s;
}

.innerPages .careerPage .careerBox:hover,
.innerPages .careerPage .careerBox:focus {
  border-color: #e4e4e4;
  -webkit-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.13);
}

.innerPages .careerPage .careerBox h3 {
  font-size: 18px;
  text-transform: capitalize;
}

.innerPages .careerPage .careerBox h4 {
  font-size: 16px;
  font-weight: 400;
}

.innerPages .careerPage .careerBox .applyBtn {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
  transition-duration: 0.3s;
  text-align: center;
  min-width: 130px;
  padding: 8px 20px;
  border-radius: 50px;
  position: relative;
  -webkit-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-top: 10px !important;
  padding: 6px 18px !important;
  font-size: 14px !important;
  min-width: auto !important;
}

.innerPages .careerPage .careerBox .applyBtn:before,
.innerPages .careerPage .careerBox .applyBtn:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  transform: translateX(-100px) skewX(-15deg);
}

.innerPages .careerPage .careerBox .applyBtn:before {
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  left: 0;
  opacity: 0.5;
  filter: blur(30px);
}

.innerPages .careerPage .careerBox .applyBtn:after {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  left: 30px;
  opacity: 0;
  filter: blur(5px);
}

.innerPages .careerPage .careerBox .applyBtn:hover,
.innerPages .careerPage .careerBox .applyBtn:focus {
  background-color: #A50C11;
  color: #fff;
  -webkit-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
}

.innerPages .careerPage .careerBox .applyBtn:hover:before,
.innerPages .careerPage .careerBox .applyBtn:focus:before,
.innerPages .careerPage .careerBox .applyBtn:hover:after,
.innerPages .careerPage .careerBox .applyBtn:focus:after {
  transform: translateX(300px) skewX(-15deg);
  transition: 0.7s;
}

.innerPages .careerPage .careerBox .applyBtn:hover:before,
.innerPages .careerPage .careerBox .applyBtn:focus:before {
  opacity: 0.6;
}

.innerPages .careerPage .careerBox .applyBtn:hover:after,
.innerPages .careerPage .careerBox .applyBtn:focus:after {
  opacity: 1;
}

@media (min-width: 768px) {
  .innerPages .careerPage .careerBox .applyBtn {
    font-size: 16px;
    min-width: 160px;
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .innerPages .careerPage .careerBox .applyBtn {
    font-size: 20px;
    min-width: 200px;
    padding: 15px 20px;
    -webkit-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
  }
}

.innerPages .testimonialsPage {
  width: 100%;
}

.innerPages .testimonialsPage h2 {
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
  margin: 0 auto 1.5em;
  color: #6E727D;
}

@media (min-width: 768px) {
  .innerPages .testimonialsPage h2 {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .innerPages .testimonialsPage h2 {
    font-size: 20px;
  }
}

.innerPages .testimonialsPage .testimonialsList {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.innerPages .testimonialsPage .testimonialsList li {
  padding: 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .innerPages .testimonialsPage .testimonialsList li {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .innerPages .testimonialsPage .testimonialsList li:nth-child(even) {
    margin-top: 2em;
  }
}

.innerPages .testimonialsPage .testimonialsList li .testiBox {
  width: 100%;
  border: 1px solid #eeeeee;
  background-color: #f6f6f6;
  padding: 15px;
  border-radius: 10px;
  position: relative;
}

.innerPages .testimonialsPage .testimonialsList li .testiBox:before {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  background-image: url(../images/quote-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: invert(100%) opacity(7%);
}

@media (min-width: 768px) {
  .innerPages .testimonialsPage .testimonialsList li .testiBox {
    padding: 25px;
  }

  .innerPages .testimonialsPage .testimonialsList li .testiBox:before {
    right: 25px;
    bottom: 25px;
  }
}

.innerPages .testimonialsPage .testimonialsList li .testiBox p {
  color: #6E727D;
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .innerPages .testimonialsPage .testimonialsList li .testiBox p {
    min-height: 130px;
    line-height: 1.7;
  }
}

.innerPages .testimonialsPage .testimonialsList li .testiBox h5 {
  font-size: 18px;
}

.innerPages .testimonialsPage .testimonialsList li .testiBox h6 {
  font-size: 14px;
  color: #6E727D;
  margin-bottom: 0;
}

.innerPages .gjAbout {
  width: 100%;
}

.innerPages .gjAbout .gjContent {
  width: 100%;
  padding: 15px 0;
  margin: 0 auto 2em;
  text-align: center;
}

.innerPages .gjAbout .gjContent p {
  font-size: 18px;
  line-height: 1.6;
  color: #6E727D;
}

.innerPages .gjAbout .leaderShips {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .innerPages .gjAbout .leaderShips:before {
    content: '';
    position: absolute;
    right: 0;
    top: -45px;
    width: 69px;
    height: 119px;
    background-image: url(../images/dot-shape.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.6;
  }
}

.innerPages .gjAbout .leaderShips .missonCtnt {
  margin-bottom: 2em;
}

.innerPages .gjAbout .leaderShips .missonCtnt p {
  font-size: 18px;
  line-height: 1.6;
  color: #6E727D;
}

.innerPages .gjAbout .leaderShips .leadWrap {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  margin-bottom: 2em;
  text-align: center;
}

@media (min-width: 768px) {
  .innerPages .gjAbout .leaderShips .leadWrap {
    margin-bottom: 2em;
  }

  .innerPages .gjAbout .leaderShips .leadWrap.secPrio {
    margin-top: 20%;
    margin-bottom: 0;
  }
}

.innerPages .gjAbout .leaderShips .leadWrap img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.innerPages .gjAbout .leaderShips .leadWrap:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.innerPages .galleryPage {
  width: 100%;
}

.innerPages .galleryPage .galleryCtnt {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.innerPages .galleryPage .galleryCtnt:before {
  width: 460px;
  height: 308px;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../gallery/gj-mask.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.08;
  z-index: -1;
}

@media (min-width: 992px) {
  .innerPages .galleryPage .galleryCtnt:before {
    content: '';
  }
}

.innerPages .galleryPage .galleryCtnt p {
  color: #C72127;
  text-transform: uppercase;
  font-weight: 700;
}

.innerPages .galleryPage .galleryCtnt h2 {
  font-weight: 700;
  font-size: 28px;
  text-transform: capitalize;
  color: #000;
  margin-top: 0;
  margin-bottom: 0.8em;
}

@media (min-width: 768px) {
  .innerPages .galleryPage .galleryCtnt h2 {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .innerPages .galleryPage .galleryCtnt h2 {
    font-size: 40px;
  }
}

.innerPages .galleryPage .galleryCtnt .showMore {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
  transition-duration: 0.3s;
  text-align: center;
  min-width: 130px;
  padding: 8px 20px;
  border-radius: 50px;
  position: relative;
  -webkit-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 28px -7px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.innerPages .galleryPage .galleryCtnt .showMore:before,
.innerPages .galleryPage .galleryCtnt .showMore:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  transform: translateX(-100px) skewX(-15deg);
}

.innerPages .galleryPage .galleryCtnt .showMore:before {
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  left: 0;
  opacity: 0.5;
  filter: blur(30px);
}

.innerPages .galleryPage .galleryCtnt .showMore:after {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  left: 30px;
  opacity: 0;
  filter: blur(5px);
}

.innerPages .galleryPage .galleryCtnt .showMore:hover,
.innerPages .galleryPage .galleryCtnt .showMore:focus {
  background-color: #A50C11;
  color: #fff;
  -webkit-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 11px 5px -7px rgba(0, 0, 0, 0.3);
}

.innerPages .galleryPage .galleryCtnt .showMore:hover:before,
.innerPages .galleryPage .galleryCtnt .showMore:focus:before,
.innerPages .galleryPage .galleryCtnt .showMore:hover:after,
.innerPages .galleryPage .galleryCtnt .showMore:focus:after {
  transform: translateX(300px) skewX(-15deg);
  transition: 0.7s;
}

.innerPages .galleryPage .galleryCtnt .showMore:hover:before,
.innerPages .galleryPage .galleryCtnt .showMore:focus:before {
  opacity: 0.6;
}

.innerPages .galleryPage .galleryCtnt .showMore:hover:after,
.innerPages .galleryPage .galleryCtnt .showMore:focus:after {
  opacity: 1;
}

@media (min-width: 768px) {
  .innerPages .galleryPage .galleryCtnt .showMore {
    font-size: 16px;
    min-width: 160px;
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .innerPages .galleryPage .galleryCtnt .showMore {
    font-size: 20px;
    min-width: 200px;
    padding: 15px 20px;
    -webkit-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 11px 36px -7px rgba(0, 0, 0, 0.3);
  }
}

.innerPages .galleryPage .gallbox {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition-duration: 0.3s;
}

.innerPages .galleryPage .gallbox:hover {
  -webkit-box-shadow: 0px 2px 19px -1px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 2px 19px -1px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 2px 19px -1px rgba(0, 0, 0, 0.34);
  transform: scale(1.02);
}

.innerPages .galleryPage .gallbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .innerPages .galleryPage .gallbox img {
    width: auto;
  }
}

.innerPages .galleryPage .gallbox.box1 {
  max-height: 290px;
}

.innerPages .galleryPage .gallbox.box2 {
  max-height: 130px;
}

.innerPages .galleryPage .gallbox.box3 {
  max-height: 250px;
}

.innerPages .galleryPage .gallbox.box4 {
  max-height: 240px;
}

.innerPages .galleryPage .gallbox.box5 {
  max-height: 140px;
}

.innerPages .galleryPage .gjAlbum {
  width: 100%;
  margin: 10px 0 15px;
}

.innerPages .galleryPage .gjAlbum .gjAlbum-img,
.innerPages .galleryPage .gjAlbum .gjslide-img {
  width: 100%;
  max-height: 120px;
  overflow: hidden;
  margin-bottom: 5px;
  border-radius: 15px;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.innerPages .galleryPage .gjAlbum .gjAlbum-img:before,
.innerPages .galleryPage .gjAlbum .gjslide-img:before,
.innerPages .galleryPage .gjAlbum .gjAlbum-img:after,
.innerPages .galleryPage .gjAlbum .gjslide-img:after {
  position: absolute;
  content: '';
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}

.innerPages .galleryPage .gjAlbum .gjAlbum-img:hover:before,
.innerPages .galleryPage .gjAlbum .gjslide-img:hover:before,
.innerPages .galleryPage .gjAlbum .gjAlbum-img:hover:after,
.innerPages .galleryPage .gjAlbum .gjslide-img:hover:after {
  opacity: 1;
  visibility: visible;
}

.innerPages .galleryPage .gjAlbum .gjAlbum-img:before,
.innerPages .galleryPage .gjAlbum .gjslide-img:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.innerPages .galleryPage .gjAlbum .gjAlbum-img:after,
.innerPages .galleryPage .gjAlbum .gjslide-img:after {
  width: 25px;
  height: 25px;
  background-image: url(../images/link.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.innerPages .galleryPage .gjAlbum .gjAlbum-img img,
.innerPages .galleryPage .gjAlbum .gjslide-img img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.innerPages .galleryPage .gjAlbum .gjAlbum-img:hover,
.innerPages .galleryPage .gjAlbum .gjslide-img:hover {
  -webkit-box-shadow: 0px 2px 19px -1px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 2px 19px -1px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 2px 19px -1px rgba(0, 0, 0, 0.34);
  transform: scale(1.02);
}

.innerPages .galleryPage .gjAlbum .gjslide-img:after {
  width: 30px;
  background-image: url(../images/eye.svg);
}

.innerPages .galleryPage .gjAlbum .gjslide-img:hover {
  transform: none;
}

.innerPages .galleryPage .gjAlbum p {
  font-size: 16px;
  color: #C72127;
  text-align: center;
  margin-bottom: 0;
}

.innerPages .contentOnly {
  width: 100%;
}

.innerPages .contentOnly h2,
.innerPages .contentOnly h3,
.innerPages .contentOnly h4,
.innerPages .contentOnly h5,
.innerPages .contentOnly h6 {
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}

.innerPages .contentOnly h2 {
  font-size: 20px;
}

.innerPages .contentOnly h3 {
  font-size: 18px;
}

.innerPages .contentOnly h4 {
  font-size: 17px;
}

.innerPages .contentOnly h5 {
  font-size: 16px;
}

.innerPages .contentOnly h6 {
  font-size: 14px;
}

.innerPages .contentOnly p {
  color: #6E727D;
}

.innerPages .contentOnly ul,
.innerPages .contentOnly ol {
  padding-left: 15px;
}

.innerPages .contentOnly ul li,
.innerPages .contentOnly ol li {
  line-height: 1.2;
  margin-bottom: 10px;
  font-size: 14px;
}

@media (min-width: 768px) {

  .innerPages .contentOnly ul li,
  .innerPages .contentOnly ol li {
    font-size: 16px;
  }
}

.careerModal .text-danger {
  color: #C72127 !important;
}

.careerModal h3 {
  font-size: 20px;
  text-transform: capitalize;
}

.careerModal h4 {
  font-size: 16px;
}

.careerModal h4 span {
  font-weight: 400;
}

.careerModal p {
  font-size: 14px;
}

.careerModal ul {
  list-style: square;
}

.careerModal ul li {
  line-height: 1.2;
  margin-bottom: 10px;
  font-size: 14px;
}

.careerModal ul li:last-child {
  margin-bottom: 0;
}

/*** Screenshot ***/
.screenshot-carousel {
  position: relative;
  width: 253px;
  height: 500px;
  padding: 15px;
  margin-right: 30px;
  transform: perspective(600px) rotateY(16deg);

}

.screenshot-carousel::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/screenshot-frame.png) center center no-repeat;
  background-size: 253px 500px;
  z-index: 1;
}

.screenshot-carousel .owl-item img {
  position: relative;
  width: 223px;
  height: 470px;
}

.screenshot-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.screenshot-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 5px 0;
  width: 15px;
  height: 15px;
  background: linear-gradient(to bottom right, var(--primary), var(--secondary));
  border-radius: 15px;
  transition: .5s;
}

.screenshot-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 5px;
  left: 5px;
  background: #FFFFFF;
  border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
  box-shadow: 0 0 10px var(--dark);
}


/* ************************ web ************************ */

.screenshot-carousel-lap {
  position: relative;
  /* width: 253px; */
  height: 500px;
  padding: 15px;
  margin-right: 30px;
  transform: perspective(600px) rotateY(338deg);
}

.screenshot-carousel-lap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/screenshot-screen.png) center center no-repeat;
  background-size: 152%;
  z-index: 1;
}

.screenshot-carousel-lap .owl-item img {
  position: relative;
  width: 440px;
  height: 300px;
  top: 48px;
}

.screenshot-carousel-lap .owl-dots {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.screenshot-carousel-lap .owl-dot {
  position: relative;
  display: inline-block;
  margin: 5px 0;
  width: 15px;
  height: 15px;
  background: linear-gradient(to bottom right, var(--primary), var(--secondary));
  border-radius: 15px;
  transition: .5s;
}

.screenshot-carousel-lap .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 5px;
  left: 5px;
  background: #FFFFFF;
  border-radius: 5px;
}

.screenshot-carousel-lap .owl-dot.active {
  box-shadow: 0 0 10px var(--dark);
}


.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  margin-top: -182px;
  z-index: -1;
}

.marquee span {
  text-transform: uppercase;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  -webkit-animation: marquee 24s linear infinite;
  animation: marquee 24s linear infinite;
  font-size: 120px;
  font-family: "Gravitas One", Helvetica, Arial, sans-serif;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(214, 214, 214, 0.616);
}


@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/*========================== Gallery Area Style =========================*/


.home2-about-companys {
  background: #fff;
  padding: 120px 0 50px;
}

.gallery-area.home2 {
  background: #fff;
  padding: 80px 0 120px;
}

#Grid .mix {
  opacity: 0;
  display: none;
}

#Grid .media {
  margin-top: 0px;
}

.mixi-button {
  text-align: center;
  padding-bottom: 60px;
}

.mixi-button li {
  background: none repeat scroll 0 0 #5db9e9;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  margin-right: 4px;
  padding: 13px 31px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 700ms ease-in-out;
  -moz-transition: all 700ms ease-in-out;
  -ms-transition: all 700ms ease-in-out;
  -o-transition: all 700ms ease-in-out;
  transition: all 700ms ease-in-out;
}

.mixi-button li.active,
.mixi-button li:hover {
  background: #AB1A1E;
}

.mixi-button.green li.active,
.mixi-button.green li:hover {
  background: #3DAD66;
}

.single-gallery.home2 {
  margin-bottom: 30px;
  margin-left: 30px;
  width: 21.11%;
}

.gallery-hover.home2 ul li:first-child a {
  background: #3DAD66;
}

.gallery-hover.home2 ul li:last-child a:hover {
  color: #3DAD66;
}

.default-pagination {
  text-align: center;
  padding-top: 30px;
}

.default-pagination li {
  display: inline-block;
}

.default-pagination li a {
  background: none repeat scroll 0 0 #5db9e9;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 100;
  margin-right: 7px;
  padding: 15px 25px;
}

.default-pagination li a:hover,
.default-pagination li a.active {
  background: #DE3C2F;
}

.default-pagination.green li a:hover,
.default-pagination.green li a.active {
  background: #3DAD66;
}

/*========================== Team Area Style =========================*/
.single-gallery {
  width: 33.3333%;
  float: left;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.single-gallery img {
  -webkit-transition: all 700ms ease-in-out;
  -moz-transition: all 700ms ease-in-out;
  -ms-transition: all 700ms ease-in-out;
  -o-transition: all 700ms ease-in-out;
  transition: all 700ms ease-in-out;
  width: 100%;
}

.gallery-hover {
  background: url("../images/team_tringl_bg.png") no-repeat left top rgba(0, 0, 0, 0);
  height: 100%;
  left: -100%;
  position: absolute;
  bottom: -100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  visibility: hidden;
}

.single-gallery:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.single-gallery:hover .gallery-hover {
  opacity: 1;
  left: 0;
  bottom: 0;
  visibility: visible;
}

.single-gallery:hover .gallery-hover h4 {
  bottom: 85px;
  visibility: visible;
  opacity: 1;
}

.single-gallery:hover .gallery-hover ul {
  bottom: 25px;
  visibility: visible;
  opacity: 1;
}

.gallery-hover h4 {
  padding-left: 30px;
  position: absolute;
  left: 0px;
  bottom: -100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 1000ms ease-in-out;
  -moz-transition: all 1000ms ease-in-out;
  -ms-transition: all 1000ms ease-in-out;
  -o-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
  text-transform: uppercase;
}

.gallery-hover ul {
  position: absolute;
  left: 30px;
  bottom: -120%;
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 1200ms ease-in-out;
  -moz-transition: all 1200ms ease-in-out;
  -ms-transition: all 1200ms ease-in-out;
  -o-transition: all 1200ms ease-in-out;
  transition: all 1200ms ease-in-out;
}

.gallery-hover ul li {
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.gallery-hover ul li a {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
  border-radius: 15px 5px;
}

.gallery-hover ul li:first-child a {
  background: #DE3C2F;
}

.gallery-hover ul li:last-child a {
  background: #5db9e9;
}

.gallery-hover ul li:hover:first-child a {
  color: #5db9e9;
}

.gallery-hover ul li:hover:last-child a {
  color: #DE3C2F;
}