* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --primary-color: #857a42;
  --secondary-color: #aaaaaa;
  --dark-color: #000000;
  --white: #fff;
  --header-bg: #ccedf9;

  --c_dark: #0e0e2c;
  --c_light: rgba(14, 14, 44, 0.6);
  --bg_white: #ffffff;

  --ff_arial: Arial, Helvetica, sans-serif;
  --ff_lexend: "Lexend", sans-serif;
  --ff_nunito_sans: "Nunito Sans", sans-serif;
  --ff_poppins: "Poppins", sans-serif;
}

html {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  /* font-family: 'Arial'; */
  background-color: var(--primary);
  color: var(--primary);
  font-style: normal;
  max-width: 100vw;
  overflow-x: hidden;

  padding-top: 112px;
}

.wrapper {
  overflow: hidden;
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0px;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

.c_light {
  color: var(--c_light);
}
.c_dark {
  color: var(--c_dark);
}
.bg_white {
  background-color: var(--bg_white);
}
.ff_lexend {
  font-family: var(--ff_lexend);
}

.ff_nunito_sans {
  font-family: var(--ff_nunito_sans);
}

.ff_poppins {
  font-family: var(--ff_poppins);
}

/*--------------- custom scroll-bar --------------------*/

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

/*------------- custom scroll-bar end here -------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: black;
}

h1 {
  margin: 0px;
  font-weight: 900;
  font-size: 45px;
  line-height: 65px;
}

h2 {
  margin: 0px;
  font-weight: 900;
  font-size: 40px;
  line-height: 60px;
}

h3 {
  margin: 0px;
  font-weight: 900;
  font-size: 30px;
  line-height: 44px;
}

p,
.fs_def {
  font-weight: 400;
  font-size: 22px;
  line-height: 35px;
  font-family: poppins;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

.pb-87 {
  padding-bottom: 87px;
}

.custom-pr-22 {
  padding-right: 38px;
}

.custom-pl-22 {
  padding-left: 22px;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--white);
  border: none;
}

.btn-primary:focus {
  -webkit-box-shadow: 0px 0px 0px 0.25rem rgba(133, 122, 66, 0.25);
  box-shadow: 0px 0px 0px 0.25rem rgba(133, 122, 66, 0.25);
}

.common-btn {
  border-radius: 0px;
  position: relative;
  outline: unset;
  border: unset;
  padding: 16px 44px;
  text-transform: capitalize;
  -webkit-box-shadow: 0px 16.3422px 30.4558px -15.5993px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 16.3422px 30.4558px -15.5993px rgba(0, 0, 0, 0.25);
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 18px;
}

.common-btn:hover {
  background-color: #686035 !important;
  color: #fff;
}
.common-btn .fa-arrow-right-long {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.common-btn:hover .fa-arrow-right-long {
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
}
.common-btn::after {
  content: "";
  width: 25px;
  position: absolute;
  left: -13px;
  top: -11px;
  background-color: #fff;
  -webkit-transform: rotate(42deg);
  -ms-transform: rotate(42deg);
  transform: rotate(42deg);
  height: 25px;
}

.common-talk-btn {
  padding: 15px 22px;
  font-weight: 600;
  font-size: 18.6667px;
  line-height: 28px;
  outline: unset;
  border: unset;
}

.common-talk-btn img {
  width: 22px;
  height: 22px;
  margin-left: 17px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.common-talk-btn:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  border-color: unset !important;
}

/************************ header css  *******************/

.custom-header .navbar {
  position: relative;
  border-bottom: 1px solid var(--dark-color);
  z-index: 9;
  background-color: var(--bg_white);
  padding: 0px;
}

.custom-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* gap: 0 56px; */
  margin-right: 44px;
}

.navbar-brand img {
  width: 210px;
}

.custom-navbar .nav-item {
  position: relative;
  z-index: 1;
}

.custom-navbar .nav-item a {
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  color: var(--dark-color);
  display: block;
  padding: 42px 26px !important;
}
.custom-navbar .nav-link.active {
  font-weight: bold;
  color: var(--primary-color) !important;
  -webkit-box-shadow: inset 0px -3px 0px 0px var(--primary-color);
  box-shadow: inset 0px -3px 0px 0px var(--primary-color);
}
.custom-navbar .nav-link:hover {
  color: var(--primary-color);
}
.custom-navbar .custom-nav-item a {
  color: var(--white);
}

/* ====== responsive sidebar css ======*/

.sidebar {
  /* display: none; */
  position: fixed;
  width: 275px;
  top: 0px;
  left: -300px;
  background-color: var(--white);
  height: 100%;
  z-index: 999;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.overlay {
  display: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 99;
  top: 0px;
  left: 0px;
  left: 0px;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.sidebar-toggle {
  display: none;
}

/* ====== responsive sidebar css end here ===== */

/************************ header css end-here  *******************/

/* custom-text-card-slider */

.slick-arrow {
  background-color: var(--primary-color);
  width: 80px;
  height: 80px;
  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;
  cursor: pointer;
  font-size: 28px;
}

.slick-arrow:hover {
  background-color: #5a532d;
}

.slick-arrow i {
  color: var(--white);
}

.right-slide {
  position: absolute;
  right: 34px;
  bottom: -60px;
  z-index: 2;
}

.left-slide {
  position: absolute;
  right: -46px;
  bottom: -60px;
}

/* custom-text-card-slider css end here */

/**********************Hero section css **************************/

.hero-section {
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  /* height: 100vh; */
  min-height: 100%;
  /* overflow: hidden; */
  position: relative;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.top-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  max-width: 852px;
}

.text-img-wrapper {
  position: relative;
}

.hero-side-img .vector-img {
  position: absolute;
  top: 0px;
  right: 52px;
}

.heading-text {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-color);
  text-transform: uppercase;
  margin-bottom: 27px;
  display: inline-block;
}

.hero-side-img {
  position: relative;
}

.hero-side-img .vehicle-img {
  position: absolute;
  top: 265px;
  z-index: 5;
  /*! width: 60vw; */
  left: -294px;
  z-index: 9;
}
.vehicle-img.car_xl {
  display: none;
}

.common-underline-text {
  color: var(--primary-color);
  text-decoration: underline;
}

.top-heading p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 35px;
  color: var(--dark-color);
  display: inline-block;
  width: 650px;
  height: auto;
  margin: 0px;
}

.hero-section {
  margin-bottom: 144px;
}

/**********************Hero section css end-here **************************/

/**********************About section css  **************************/

.about-section {
  margin-bottom: 112px;
}

.right-img-side img {
  /*! width: 100%; */
  /*! height: auto; */
  max-width: 590px;
  max-width: 100%;
}

.right-img-side {
  position: relative;
}

.right-img-side::after {
  content: "";
  width: 157px;
  height: 157px;
  border: 10px solid #857a42;
  right: -36px;
  position: absolute;
  bottom: -105px;
}

.common-heading h2 {
  color: var(--dark-color);
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 50px;
  font-size: 40px;
  line-height: 50psx;
  margin-left: -15px;
  padding-top: 10px;
}

.custom-card {
  border: unset;
  border-radius: unset;
  background: var(--bg_white);
  -webkit-box-shadow: 0px 7px 55px -21px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 7px 55px -21px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  left: -110px;
  margin-right: -136px;
}

.custom-card .card-body {
  padding: 46px 46px 60px 46px;
}

.about-teat-card p {
  margin: 0px;
  font-weight: 400;
  color: var(--dark-color);
}

/**********************About section css end-here **************************/

/**********************Service section css  **************************/

.top-heading-center {
  margin-bottom: 107px;
}

.top-side-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: black;
  margin-bottom: 30px;
}

.mobile-service .top-side-heading {
  margin-bottom: 20px;
}

.service .top-heading-center .text-center {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: black;
}

.service .top-heading-center .text-center:before {
  content: "";
  display: block;
  height: 68px;
  width: 2px;
  margin: 0px auto 20px auto;
  background-color: black;
}

.right-side-img {
  position: relative;
  /* display:flex;
  justify-content:flex-end; */
  margin-left: auto;
  max-width: 570px;
}

.right-side-img:after {
  content: "";
  width: 109px;
  height: 109px;
  right: 116px;
  border: 10px solid #857a42;
  position: absolute;
  bottom: -34px;
  z-index: 6;
  pointer-events: none;
}

.right-side-img .emp-img {
  width: 100%;
  /*! max-width: 530px; */
  height: auto;
  z-index: 4;
  position: relative;
}

.right-side-img::before {
  content: "";
  background-image: url("../images/security-worker.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: -90px;
  width: 120px;
  height: 120px;
  bottom: 20px;
  z-index: -1;
  pointer-events: none;
}

.left-side-content {
  position: relative;
  padding-left: 86px;
  padding-top: 32px;
  padding-right: 10px;
}

.mobile-service .left-side-content {
  position: relative;
  padding-left: 0px;
  padding-top: 14px;
  padding-right: 0px;
  margin-left: -6px;
  max-width: 650px;
}

.left-side-content p {
  font-weight: 400;
  line-height: 44px;
  margin-bottom: 74px;
}

.mobile-service .left-side-content p {
  margin-bottom: 45px;
}

.top-side-heading {
  text-transform: uppercase;
}

.series-number {
  top: -72px;
  position: absolute;
  left: 0px;
  font-weight: 700;
  font-size: 100.556px;
  line-height: 179px;
  color: #33333340;
  z-index: -1;
}

.four-number .series-number {
  top: -80px;
  left: -104px;
}

.series-number::after {
  content: "";
  width: 67px;
  height: 67px;
  background-color: #fff;
  position: absolute;
  bottom: 21px;
  right: -36px;
  z-index: 2;
  border-left: 2px solid #33333340;
  -webkit-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  transform: rotate(55deg);
}

.four-number .series-number::after {
  bottom: 14px;
  right: -24px;
}

.three-number .series-number {
  /*! top: -115px; */
  /*! left: -85px; */
}

.three-number .series-number::after {
  bottom: 12px;
  right: -29px;
}

.two-number .series-number {
  top: -107px;
  left: -86px;
}

.two-number .series-number::after {
  bottom: 12px;
  right: -26px;
}

.service {
  margin-bottom: 322px;
}

.service.videosec {
  margin-bottom: 42px;
}
.service.videosec.abp {
  margin-bottom: 150px;
}

/**********************Service section css end-here **************************/

/**********************mobile Service section css  **************************/

.mobile-service .right-side-img {
  position: relative;
  margin-left: 0px;
}

.mobile-service .right-side-img::before {
  content: "";
  background-image: url("../images/lock.png");
  background-repeat: no-repeat;
  /* background-size: cover; */
  position: absolute;
  width: 160px;
  height: 160px;
  bottom: 32px;
  opacity: 0.2;
  right: -120px;
  left: unset;
  background-size: contain;
}

.mobile-service .right-side-img:after {
  top: -52px;
  left: 82px;
}

.mobile-service {
  margin-bottom: 212px;
}

/**********************mobile Service section css end-here  **************************/

/**********************Client  section   **************************/

.client-section {
  background-color: var(--primary-color);
  padding: 136px 0px;
}

.client_secContainer {
  /* margin-left: auto;
    margin-right:0px; */
}

.img-client-name img {
  width: 80px;
  height: 80px;
  margin-bottom: 13px;
  margin-left: 12px;
  border-radius: 50%;
  border: 1px solid #d1d1d1;
}

.img-client-name h5 {
  font-family: "Nunito Sans";
  font-weight: 600;
  font-size: 21.3029px;
  line-height: 29px;
  color: #000000;
}

.img-client-name p {
  font-family: "Nunito Sans";
  font-weight: 400;
  font-size: 18.64px;
  line-height: 25px;
  letter-spacing: 0.665714px;
  color: #aaa;
}

.client-card {
  border-radius: 27px;
}

.client-card .card-body {
  padding: 40px 67px;
}

.img-client-name {
  margin-bottom: 26px;
  /*! display: flex; */
  /*! align-items: center; */
  /*! justify-content: center; */
  /*! flex-direction: column; */
}

.text-rating p {
  font-weight: 400;
  opacity: 0.6;
  margin-bottom: 27px;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.67px;
}

.list-rating {
  padding: 0px;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 9px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.list-rating li a {
  color: var(--dark-color);
}

.client-say {
  margin-left: 80px;
}

.client-progrss {
  height: 2px;
  border-radius: unset;
  background-color: #ffffff5c;
}

.client-progrss .progress-bar {
  color: #fff;
  background-color: #fff;
}

.client-heading-text {
  max-width: 518px;
  padding-top: 110px;
  /* margin-left: -40px; */
  padding-left: 6px;
}

.client-heading-text h1 {
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 55px;
}

.left_arrow,
.right_arrow {
  position: absolute;
  font-size: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--bg_white);
}

.left_arrow:hover,
.right_arrow:hover {
  background: var(--bg_white);
}

.left_arrow:focus,
.right_arrow:focus {
  -webkit-box-shadow: 0px 0px 0px 0.25rem rgba(255, 255, 255, 0.25);
  box-shadow: 0px 0px 0px 0.25rem rgba(255, 255, 255, 0.25);
}

.left_arrow i,
.right_arrow i {
  color: #857a42;
}

.left_arrow {
  bottom: -100px;
  left: 0px;
}

.right_arrow {
  bottom: -100px;
  left: 237px;
}
.bottom-logo {
  display: inline-block;
}
.bottom-logo img {
  height: 53px;
}

/**********************Client  section end here   **************************/

/**********************Emp slider  section   **************************/

.emp-section {
  content: "";
  background-image: url("../images/emp-bg.png");
  width: 100%;
  height: auto;
  /*! margin-bottom: 30px; */
  background-repeat: no-repeat;
  background-size: cover;
  /* min-height: 758px; */
  background-color: var(--primary-color);
  position: relative;
  padding-top: 95px;
  overflow: hidden;
}

.emp-wrapper {
  position: relative;
}

.emp-1,
.emp-2,
.emp-3,
.emp-4,
.emp-5 {
  position: relative;
}

.emp-1 img {
  position: absolute;
  right: -37px;
  top: 73px;
}

.emp-2 img {
  position: absolute;
  top: 84px;
  right: 24%;
}

.emp-3 img {
  position: absolute;
  right: 47%;
  top: 30px;
}

.emp-4 img {
  position: absolute;
  right: 69%;
  top: 85px;
}

.emp-5 img {
  position: absolute;
  left: 0px;
  top: 85px;
}

.emp-1 h1 {
  position: absolute;
  top: 190px;
  right: 0px;
  font-weight: 800;
  font-size: 40px;
  line-height: 162px;
  /* identical to box height, or 406% */
  letter-spacing: 0.245em;
  text-transform: uppercase;
  mix-blend-mode: normal;
  opacity: 0.5;
  border: 3px solid #ffffff;
  text-shadow: 0px 4px 18px rgba(0, 0, 0, 0.72);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/**********************Emp slider  section css end-here  **************************/

/**********************center section css   **************************/

.center-section {
  margin-bottom: 219px;
  padding-top: 156px;
}

.center-wrapper {
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.center-wrapper h2 {
  margin-bottom: 24px;
}

.center-wrapper h1 {
  margin-bottom: 30px;
}

.center-wrapper p {
  margin-bottom: 40px;
  font-weight: 400;
}

/**********************center section css end-here  **************************/

/**********************specialist section css end-here  **************************/

.specialist-section .right-side-img:after {
  top: 46px;
  left: -72px;
  width: 124px;
  height: 124px;
}

.specialist-section .right-side-img::before {
  content: "";
  background-image: url("../images/lock-1.png");
  opacity: 0.2;
  bottom: 42px;
  -o-object-fit: contain;
  object-fit: contain;
  left: -82px;
  width: 110px;
  height: 150px;
  background-size: contain;
}

.specialist-section {
  margin-bottom: 288px;
}

.specialist-section .left-side-content {
  /*! padding-top: 100px; */
  margin-top: 62px;
}

.specialist-section .left-side-content p {
  margin-bottom: 45px;
}

/**********************specialist section css end here  **************************/

/**********************training services section css   **************************/

/* .training-section .right-side-img{
   justify-content: flex-start;
  } */

.training-section .right-side-img:after {
  right: 242px;
  bottom: -92px;
  width: 124px;
  height: 124px;
}

.training-section .right-side-img::before {
  content: "";
  background-image: url("../images/p-lock.png");
  width: 85px;
  /*! max-width: 194px; */
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.2;
  right: -75px;
  bottom: 28px;
  left: unset;
  background-size: contain;
}

.training-section {
  margin-bottom: 142px;
}

.training-section .right-side-img {
  margin-left: 0px;
}

.training-section .left-side-content {
  margin-top: 30px;
  padding-left: 0px;
  padding-top: 32px;
  padding-right: 0px;
  margin-left: -6px;
  max-width: 650px;
}

.training-section .top-side-heading {
  margin-bottom: 20px;
}

.training-section .left-side-content p {
  margin-bottom: 45px;
}

/**********************training services section css end here   **************************/

/**********************About hero-services section css   **************************/

.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 136px 0px 139px 0px;
  position: relative;
  max-width: 972px;
  margin: auto;
}

.left-img .side-img {
  position: absolute;
  left: -11%;
  width: 100%;
  max-width: 158px;
  top: 18%;
}

.About-section {
  position: relative;
}

.About-section::before {
  content: "";
  background-image: url(../images/r1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0px;
  top: 85px;
  width: 330px;
  height: 619px;
  z-index: -1;
  -webkit-animation: linear;
  -webkit-animation-name: run;
  -webkit-animation-duration: 1s;
}

.background-card {
  content: "";
  background-image: url("../images/card-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  left: 116px;
  top: 0px;
  position: relative;
}

.About-section::after {
  content: "";
  background-image: url(../images/r2.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0px;
  top: 104px;
  width: 382px;
  height: 534px;
  z-index: -1;
  -webkit-animation: linear;
  -webkit-animation-name: runtwo;
  -webkit-animation-duration: 1s;
}

.meme {
}

.mSec_imgBox {
  position: relative;
  margin-left: 98px;
  overflow: hidden;
}

.mSec_img {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
}

.about-wrapper span {
  display: block;
  font-weight: 700;
  font-size: 29.3333px;
  line-height: 171.5%;
  color: var(--primary-color);
  margin-bottom: 22px;
}

.about-wrapper h1 {
  text-align: center;
  font-weight: 700;
  font-size: 53.333px;
  line-height: 171.5%;
  color: var(--dark-color);
  margin-bottom: 0.566em;
  font-family: var(--ff_poppins);
}

.about-wrapper p {
  font-weight: 400;
  text-align: center;
  color: var(--c_light);
  margin-bottom: 142px;
}

.About-section {
  border-bottom: 1px solid var(--dark-color);
}

.About-section .common-talk-btn {
  padding: 1.1em 1.6em;
  font-size: 18px;
}

.more-about h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-color);
  margin-bottom: 21px;
  text-transform: uppercase;
}

.more-about {
  padding-top: 132px;
  padding-left: 10px;
  margin-right: -72px;
}

.more-about p {
  margin-bottom: 1.9091em;
  line-height: 2.0455em;
}

.mSection-text {
  margin-bottom: 305px;
}
.mSection-text.abtp {
  margin-bottom: 75px;
}
.mission-section {
  margin-bottom: 218px;
}
.mission-img {
  position: relative;
  /* z-index: 1; */
  margin-left: 85px;
  margin-right: -20px;
}
.mission-img figure {
  position: relative;
  z-index: -1;
}
.mission-img img {
  position: relative;
  z-index: -1;
}

.mission-img::before {
  content: "";
  position: absolute;
  width: 109px;
  height: 109px;
  left: 116px;
  top: -44px;
  border: 10px solid var(--primary-color);
  z-index: 2;
  pointer-events: none;
}

.mission_content {
  margin-left: 96px;
  /* padding-top: 156px; */
}

.mission_content .top-side-heading {
  margin-bottom: 0.6667em;
}

.mission_content p {
  line-height: 2.0455em;
}

.uniformed-security .mission-img::before {
  bottom: -49px;
  right: 68px;
  top: unset;
  left: unset;
}
.reporting-text {
  margin-bottom: 136px;
}
.reporting-text .mission-img {
  max-width: 570px;
  margin-right: 4px;
  margin-left: auto;
}

.reporting-text .mission-img::before {
  bottom: unset;
  right: unset;
  top: 118px;
  left: -50px;
}

/**********************About hero-services section css end here   **************************/

/**********************Mission section section css   **************************/

.left-side-ht h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-color);
  text-transform: uppercase;
}

.left-side-ht p,
.left-side-ht .def_list {
  color: var(--dark-color);
  margin: 0px;
  line-height: 2em;
}

.uniformed-security .left-side-ht {
  max-width: 876px;
}

.uniformed-security .mission-img {
  margin-left: auto;
  margin-right: 0px;
  max-width: 570px;
}

.uniformed-security .mission-img img {
  width: 100%;
}

.uniformed-security .mission-img::before {
  bottom: -34px;
  right: 118px;
}

/**********************Mission section section css end here   **************************/

/**********************parallax-section  css    **************************/

.parallax-section {
  margin-bottom: 127px;
  background-image: url("../images/kmrCI5xY\ 1.png");
  min-height: 780px;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.abouts {
  background-image: url("../images/pl.png");
}

.custom-ss {
  background-image: url("../images/_yafL43A\ 1.png");
  min-height: 685px;
  margin-bottom: 164px;
}

.training_pg_parallax {
  background-image: url("../images/training.jpg");
}

/**********************parallax-section  css end here   **************************/

/**********************vision-section css  **************************/

.vision-img {
  position: relative;
  margin-left: 106px;
  margin-right: -16px;
}

.vision-img::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 109px;
  height: 109px;
  left: -52px;
  top: 92px;
  border: 10px solid var(--primary-color);
}

.vision-section {
  padding-bottom: 157px;
}

.vision_sec_content {
  padding-top: 0px;
  padding-left: 10px;
  padding-right: 0px;
}

/**********************vision-section css end here  **************************/

/********************** meet-our team section css   **************************/

.center-text-heading {
  text-align: center;
}

.center-text-heading span {
  display: block;
  margin-bottom: 0.7586em;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 29.3333px;
  line-height: 171.5%;
}

.center-text-heading h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: var(--c_dark);
  margin-bottom: 61px;
}

.team-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 27px;
  padding: 0px 4px;
}
[data-team_member]:hover {
  cursor: pointer;
}
.wrapper-card .card {
  border: unset;
  border-radius: 8px;
  margin-bottom: 16px;
}

.wrapper-card .card img {
  height: auto;
  max-width: 241px;
  min-height: 353px;
  -o-object-fit: cover;
  object-fit: cover;
}

.wrapper-card .t-card {
  background-color: var(--primary-color);
  width: 241px;
  max-width: 241px;
  min-height: 353px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: unset;
  border-radius: 8px;
}

.wrapper-card .card img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  border-radius: 10px;
}

.wrapper-card .card img:hover,
.wrapper-card.active_member .card img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.wrapper-card .t-card img {
  width: 91px;
  height: 91px;
  margin-bottom: 19px;
}

.out-team-section {
  padding-bottom: 170px;
}

.out-team-section h1 {
  font-family: var(--ff_poppins);
  font-weight: 700;
  font-size: 53.3333px;
  line-height: 1.5094em;
  margin-bottom: 1.1321em;
}

.wrapper-card h5 {
  font-family: var(--ff_poppins);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.52em;
  color: var(--c_dark);
  margin-bottom: 0px;
}

.wrapper-card p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5em;
  color: var(--c_light);
  margin: 0px;
}

.out-team-section .wrapper-card .btn {
  font-size: 12px;
  padding: 1.25em 1.6667em;
}

.company-content {
  padding-top: 10px;
  max-width: 470px;
}

.member_info {
  display: none;
}
.member_info:first-child {
  display: block;
}

.company-content h3 {
  font-family: var(--ff_poppins);
  font-weight: 600;
  font-size: 30px;
  line-height: 150%;
  color: var(--c_dark);
  margin-bottom: 8px;
}

.company-content span {
  font-weight: 400;
  font-size: 25px;
  line-height: 1em;
  color: var(--c_light);
  margin-bottom: 0.9em;
  display: block;
}

.company-content p {
  margin: 0px;
  line-height: 2.0455em;
}

.wrapper-card .jt {
  font-weight: 600;
  font-size: 22px;
  line-height: 112.5%;
  text-align: center;
  color: var(--white);
  margin-bottom: 33px;
}

/********************** meet-our team section css end here  **************************/

/********************** our-services section css   **************************/

.our-service-section {
  border-bottom: unset;
  margin-bottom: 140px;
}

.our-service-section .about-wrapper {
  padding: 196px 0px 116px 0px;
}

@-webkit-keyframes run {
  0% {
    left: -250px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes runtwo {
  0% {
    right: -250px;
  }
  100% {
    right: 0;
  }
}

.our-service-section:before {
  content: "";
  background-image: url(../images/ss1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 389px;
  height: 562px;
  position: absolute;
  left: 0px;
  top: 85px;
  z-index: -1;
  -webkit-animation: linear;
  -webkit-animation-name: run;
  -webkit-animation-duration: 1s;
}

.our-service-section:after {
  content: "";
  background-image: url(../images/ss1-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 358px;
  height: 546px;
  position: absolute;
  right: 0px;
  top: 105px;
  z-index: -1;
  -webkit-animation: linear;
  -webkit-animation-name: runtwo;
  -webkit-animation-duration: 1s;
}

.csss:before,
.ssss:before {
  content: "";
  background-image: url(../images/cs1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0px;
  top: 84px;
  width: 275px;
  height: 560px;
  z-index: -1;
}

.csss:after,
.ssss:after {
  content: "";
  background-image: url(../images/cs2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0px;
  top: 104px;
  width: 357px;
  height: 542px;
  z-index: -1;
}

.ssss:before {
  background-image: url(../images/sss1.png);
}

.ssss:after {
  background-image: url(../images/sss2.png);
}

.csss,
.ssss {
  margin-bottom: 62px;
}

.csss .about-wrapper,
.ssss .about-wrapper {
  padding: 218px 0px 80px 0px;
}

.csss .about-wrapper h1,
.ssss .about-wrapper h1 {
  margin-bottom: 0.4em;
}

.csss .about-wrapper p,
.ssss .about-wrapper p {
  margin-bottom: 65px;
}

.service-list-common {
  margin-bottom: 50px;
}

.service-list-common .service-list-ul {
  padding: 0px;
  margin: 0px;
  margin-left: -5px;
}

.service-list-common .service-list-ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 8px;
  margin-bottom: 30px;
}

.service-list-common .service-list-ul li img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
  object-fit: contain;
}

.service-list-common .service-list-ul li:last-child {
  /* margin-bottom: 55px; */
}

.service-list-common .services-text {
  margin: 0px;
}

.security_serviceSec {
  margin-bottom: 302px;
}

/********************** our-services section css end here  **************************/

/********************** mobile section-common css   **************************/

.mobile-response-service {
  margin-bottom: 260px;
}

.mobile-response-service .right-side-img {
  margin-left: -11px;
  margin-right: auto;
  max-width: 562px;
}

.mobile-response-service .right-side-img::before {
  background-image: url("../images/lock.png");
  opacity: 0.2;
  bottom: 12px;
  right: -85px;
  background-size: contain;
  width: 100px;
  height: 120px;
  left: auto;
}

.mobile-response-service .right-side-img:after {
  left: 68px;
  top: -92px;
}

.mobile-response-service .left-side-content {
  position: relative;
  padding-left: 0px;
  padding-top: 38px;
  padding-right: 0px;
  margin-left: -4px;
  margin-right: -10px;
}

.mobile-response-service .series-number::after {
  bottom: 5px;
  right: -27px;
}

.mobile-response-service .series-number {
  top: -72px;
  left: -104px;
}

.parallax_2 {
  margin-bottom: 190px;
}

.sss-service {
  margin-bottom: 220px;
}

.sss-service .left-side-content {
  margin-top: 70px;
}

.sss-service .series-number::after {
  bottom: 18px;
  right: -23px;
}

.sss-service .series-number {
  top: -80px;
  left: 4px;
}

.sss-service .right-side-img::before {
  background-image: url("../images/lock-1.png");
  opacity: 0.2;
  background-size: contain;
  left: -80px;
  bottom: 40px;
  width: 120px;
  height: 120px;
}

.sss-service .right-side-img::after {
  left: -68px;
  top: 48px;
  width: 120px;
  height: 120px;
}

.sss-service .special-ser {
  font-family: var(--ff_arial);
  font-weight: 700;
  font-size: 25px;
  line-height: 176%;
  margin-bottom: 0.6em;
  text-transform: uppercase;
}

.ts-service {
  margin-bottom: 363px;
}

.ts-service .right-side-img {
  margin-left: 0px;
}

.ts-service .series-number::after {
  bottom: 18px;
  right: -23px;
}

.ts-service .series-number {
  top: -106px;
  left: -94px;
}

.ts-service .right-side-img::before {
  background-image: url("../images/p-lock.png");
  opacity: 0.2;
  background-size: contain;
  right: -80px;
  bottom: 70px;
  left: auto;
  width: 100px;
  height: 120px;
}

.ts-service .right-side-img::after {
  width: 120px;
  height: 120px;
  right: 242px;
  bottom: -92px;
  z-index: 6;
}

.ts-service .left-side-content {
  padding-left: 0px;
  padding-top: 16px;
  padding-right: 10px;
  margin-top: 142px;
}

/********************** mobile section-common css end here   **************************/

/********************** cs-security section-common css   **************************/

.security-provider {
  max-width: 333px;
}

.cs-s-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 21px;
  min-height: 68px;
  margin-bottom: 8px;
}

.security-provider .cs-s-wrapper h2 {
  font-family: var(--ff_poppins);
  font-weight: 700;
  font-size: 40px;
  line-height: 171.5%;
  color: var(--primary-color);
}

.cs-s-wrapper h3 {
  font-family: var(--ff_poppins);
  font-weight: 600;
  font-size: 29.3333px;
  line-height: 119%;
  color: var(--c_dark);
  margin-top: 14px;
}

.security-provider p {
  font-family: var(--ff_poppins);
  font-weight: 400;
  font-size: 21.3333px;
  line-height: 171.5%;
  color: var(--c_light);
}

.bottom-arrow-sign {
  position: relative;
}

.bottom-arrow-sign::after {
  content: "";
  background-image: url("../icon/Vector\ 2.png");
  background-repeat: no-repeat;
  min-height: 169px;
  position: absolute;
  width: 100%;
  max-width: 370px;
  bottom: -154px;
  left: 135px;
  background-size: contain;
}

.top-arrow-sign {
  position: relative;
}

.progress-sign_bottom div:nth-child(2) .security-provider,
.progress-sign_bottom div:nth-child(3) .security-provider {
  margin: 0px auto;
}

.progress-sign_bottom div:last-child .security-provider {
  margin-left: auto;
}

.top-arrow-sign::before {
  content: "";
  background-image: url("../icon/Vector\ 3.png");
  background-repeat: no-repeat;
  min-height: 169px;
  position: absolute;
  width: 100%;
  max-width: 370px;
  top: -175px;
  left: 82px;
  background-size: contain;
}

.progress-sign {
  padding-bottom: 266px;
}

.progress-sign_top {
  padding-bottom: 265px;
}

.para-konw {
  font-weight: 400;
  margin-top: 56px;
  color: var(--c_light);
  margin-left: -24px;
  max-width: 590px;
  margin-bottom: 0px;
}

.our-progress-sec span {
  font-weight: 700;
  font-size: 29.3333px;
  line-height: 171.5%;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 22px;
  display: block;
}

.our-progress-sec h1 {
  font-family: var(--ff_poppins);
  font-style: normal;
  font-weight: 700;
  font-size: 53.3333px;
  line-height: 1.5094em;
  color: var(--c_dark);
  max-width: 13.6226em;
}

.ambassadors-text {
  margin-bottom: 160px;
}

.ambassadors-text .mission-img::before {
  bottom: unset;
  right: unset;
  top: -46px;
  left: 122px;
}

.ambassadors-text .mission-img {
  margin-left: 0px;
  max-width: 592px;
}

.ambassadors-text .left-side-ht {
  max-width: 100%;
}

.executive-text {
  margin-bottom: 150px;
}

.executive-text .mission-img {
  margin-left: auto;
  max-width: 605px;
  margin-right: 8px;
}

.executive-text .mission-img::before {
  bottom: unset;
  right: unset;
  top: 56px;
  left: -40px;
}

.surveys-text {
  margin-bottom: 195px;
}

.surveys-text .mission-img {
  margin-left: 0px;
  margin-left: 6px;
  max-width: 591px;
}

.surveys-text .mission-img::before {
  bottom: -55px;
  right: 104px;
  top: unset;
  left: unset;
}

/********************** cs-security section-common css end here   **************************/

/********************** common-css  section-common css    **************************/

.mobile-responses {
  position: relative;
  margin-bottom: 46px;
}
.mobile-responses:before {
  content: "";
  background-image: url(../images/ss1png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0px;
  top: 40px;
  max-width: 246px;
  min-height: 470px;
  z-index: -1;
}

.mobile-responses:after {
  content: "";
  background-image: url(../images/ss.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  position: absolute;
  right: 0px;
  top: 40px;
  max-width: 246px;
  min-height: 470px;
  z-index: -1;
}
.mobile-responses:before,
.mobile-responses:after {
  content: none;
}

.mobile-responses .about-wrapper {
  padding: 178px 0px 140px 0px;
  max-width: 1060px;
}

.mobile-responses .about-wrapper p {
  margin-bottom: 65px;
}
.mobile-responses video {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  -o-object-fit: cover;
  object-fit: cover;
}

/********************** common-css  section-common css end here   **************************/

/********************** contact-section css    **************************/

.contact-section {
  content: "";
  padding: 89px 0px;
  background-image: url("../images/contact_bg.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}
.contact_container {
  max-width: 716px;
  margin: auto;
}
.sm_title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 29.3333px;
  line-height: 171.5%;
  margin-bottom: 0.85em;
  display: block;
}
.sec_title {
  font-family: var(--ff_poppins);
  font-weight: 700;
  font-size: 53.3333px;
  line-height: 1.5094em;
  color: var(--c_dark);
  margin-bottom: 1em;
}
.contact-us-heading {
}
.contact-us-heading h1 {
  margin-bottom: 55px;
}
.inp_item {
  margin-bottom: 24px;
}
.inp_item .form-label {
  font-family: var(--ff_poppins);
  font-weight: 600;
  font-size: 18.6667px;
  line-height: 1.4737em;
  color: var(--c_dark);
  margin-bottom: 0.6316em;
}

.form-control {
  background: var(--bg_white);
  border: 1px solid #767676;
  border-radius: 5px;
  padding: 19px;
}

.inp_item textarea.form-control {
  height: 230px;
}
.message-btn {
  font-family: var(--ff_poppins);
  font-weight: 600;
  font-size: 18.6667px;
  line-height: 1.5556em;
  padding: 1.1667em 3.5556em;
  margin-top: 1.1111em;
}

.risk-slide {
  position: relative;
  z-index: 5;
}

.risk-slide::after {
  content: "";
  background-image: url("../images/Titik-titik.png");
  position: absolute;
  top: -77px;
  background-repeat: no-repeat;
  /* background-size: 400px; */
  left: 80px;
  width: 100%;
  height: auto;
  z-index: -1;
  min-height: 379px;
}

.faq-section {
  padding-top: 74px;
  margin-bottom: 190px;
}
.faq_content {
  max-width: 650px;
  padding-top: 66px;
  padding-left: 6px;
}
.faq_accordion {
  padding-left: 10px;
}
.faq_accordion .accordion-item {
  border: 2px solid #857a42 !important;
  border-radius: 5px !important;
  margin-bottom: 45px;
  overflow: hidden;
}
.faq_accordion .accordion-button {
  font-family: var(--ff_poppins);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5em;
  color: var(--c_dark);
  padding: 1.0417em 1.5em;
  border: none;
}

.faq_accordion .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.faq_accordion .accordion-button::after {
  font: var(--fa-font-solid);
  content: "\2b";
  background: none;
  color: var(--primary-color);
}
.faq_accordion .accordion-button:focus {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.faq_accordion .accordion-button:not(.collapsed) {
  color: var(--c_dark);
  background: var(--bg_white);
}
.faq_accordion .accordion-body {
  padding: 15px 36px 27px 36px;
}
.faq_accordion .accordion-body p {
  font-family: var(--ff_poppins);
  font-weight: 400;
  font-size: 21.3333px;
  line-height: 171.5%;
}

.slider-section {
  padding-bottom: 214px;
}
.slider_container {
  padding: 27px 126px 0px 0px;
  background-image: url("../images/Titik-titik.png");
  background-size: 400px;
  background-repeat: no-repeat;
  background-position: top right;
}
.slider_item {
}
.slider_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: var(--bg_white);
  overflow: hidden;
}
.slider_contentBox {
  max-width: 636px;
  padding-top: 40px;
}
.slider_contentBox .sm_title {
  margin-bottom: 32px;
}
.slider_title {
  font-family: var(--ff_poppins);
  font-weight: 700;
  font-size: 45.3333px;
  line-height: 1.5111em;
  margin-bottom: 0.7111em;
  color: var(--c_dark);
}
.slider_desc {
  margin-bottom: 30px;
}
.slider_actBtn {
  font-size: 20px;
  padding: 0.6em 1.2em;
}
.slider_imgBox {
  max-width: 466px;
  margin-left: 30px;
}
.slider_imgBox_1 {
  display: none;
}
.slider_img {
}

.s_left_arrow,
.s_right_arrow {
  font-size: 20px;
  width: 64px;
  height: 64px;
  border: 3px solid var(--primary-color);
  background-color: var(--bg_white);
  border-radius: 50%;

  position: absolute;
  bottom: -108px;
}
.s_left_arrow {
  right: 147px;
}
.s_right_arrow {
  right: 20px;
}
.s_left_arrow:hover,
.s_right_arrow:hover {
  background-color: var(--primary-color);
}
.s_left_arrow i,
.s_right_arrow i {
  color: var(--primary-color);
}
.s_left_arrow:hover i,
.s_right_arrow:hover i {
  color: var(--white);
}

/********************** contact-section css end here   **************************/

/**********************footer css   **************************/

.top-footer {
  background-color: #eaeaea;
  padding: 55px 0px;
}

.ul-list-menu {
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 54px;
  margin: 0px;
}

.ul-list-menu li a {
  font-weight: 400;
  font-size: 22.4953px;
  line-height: 34px;
  display: block;
  color: var(--dark-color);
}
.ul-list-menu li a:hover {
  text-decoration: underline;
}

.social-menu-list li a {
  color: var(--dark-color);
}

.social-menu-list li {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.social-menu-list li:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.social-menu-list li a i {
  font-size: 33px;
}

.social-menu-list {
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 58px;
  margin: 0px;
  margin-left: 60px;
}

.social-w-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bottom-footer {
  font-family: var(--ff_lexend);
  background-color: var(--primary-color);
  padding: 25px 0px;
}

.copy-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.copy,
.love {
  font-family: "Lexend";
  font-weight: 400;
  font-size: 20.0328px;
  line-height: 25px;
  margin: 0px;
  color: var(--white);
  opacity: 0.6;
}
.copy:hover {
  text-decoration: underline;
  color: var(--white);
}
.copy i {
  font-size: 1em;
}

.love i {
  color: red;
  font-size: 1em;
}

/**********************footer css end-here  **************************/

.hero_head {
  padding: 210px 0px 396px 0px;
}

.hero_head p {
  width: 100%;
  max-width: 670px;
  height: auto;
}

.teams_each {
  display: block;
}

.teams_each h2 {
  text-transform: uppercase;
  mix-blend-mode: normal;
  opacity: 0.5;
  /* text-shadow: 0px 4px 18px rgba(0, 0, 0, 0.72); */
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: transparent;
  /* width: 100%; */
  /* height: 100%; */
  position: absolute;
  left: -46%;
  top: 50%;
  -webkit-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #fff;
}

.teams_each img {
  -webkit-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}

.teams_each:hover img {
  scale: 1.3;
}

.teams_each:hover h2 {
  opacity: 1;
}

.teams_all .col-lg-2 {
  width: 264px;
  text-align: center;
  position: relative;
}

.slick-initialized .slick-slide {
  display: block;
  /* margin: 20px; */
  line-height: 2.24em;
}

.unique_menu {
  /* padding: 17px;
    margin: -19px; */
  background: black;
  float: right;
  color: #fff !important;
}

.unique_menu a {
  color: #fff !important;
}

.unique_menu:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: #000000;
  top: 100%;
  left: 0;
  z-index: 10;
  top: -13px;
  right: 0;
  height: calc(100% + 14px);
  width: 100000px;
  z-index: -2;
}

figure {
  margin: 0;
}

.ItemCard {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* overflow: hidden; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  border-radius: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
}
.ItemCard img {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.ItemCard .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ItemCard__dest {
  z-index: 30;
  display: block;
}

.ItemCard__thumb {
  position: relative;
  z-index: 3;
  padding: 0;
  /* transition: transform .2s; */
}

.ItemCard__thumb img {
  display: block;
  /* transition: box-shadow 0.2s; */
}

.ItemCard__summary {
  z-index: 20;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: perspective(600px) translate3d(0, 100%, 0);
  transform: perspective(600px) translate3d(0, 100%, 0);
  text-align: center;
  color: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ItemCard__title {
  margin: 8px 0;
  font-weight: 900;
  -webkit-transform: translate3d(0, 150px, 50px);
  transform: translate3d(0, 150px, 50px);
  text-transform: uppercase;
  color: #fff;
  font-size: 19px;
  line-height: 1.48;
}

@media screen and (max-width: 1050px) {
  .ItemCard__title {
    font-size: 24px;
  }
}

.ItemCard__meta.category {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  -webkit-transform: translate3d(0, 150px, 40px);
  transform: translate3d(0, 150px, 40px);
  text-transform: uppercase;
  color: #f53794;
  font-size: 14px;
}

.ItemCard__meta.designer {
  font-style: italic;
  -webkit-transform: translate3d(0, 150px, 20px);
  transform: translate3d(0, 150px, 20px);
  font-size: 12px;
}

.ItemCard__meta.designer:before {
  margin-right: 3px;
  content: "by";
}

.ItemCard__title,
.ItemCard__meta {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

.yt_videoContainer {
  position: relative;
  padding-bottom: 56.25%;
}

.yt_videoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
