@font-face {
  font-family: "BebasNeue";
  src: url("../fonts/bebasneue-regular-webfont.woff2") format("woff2"), url("../fonts/bebasneue-regular-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-lightitalic-webfont.woff2") format("woff2"), url("../fonts/poppins-lightitalic-webfont.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular-webfont.woff2") format("woff2"), url("../fonts/poppins-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/firasans-light-webfont.woff2") format("woff2"), url("../fonts/firasans-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/firasans-lightitalic-webfont.woff2") format("woff2"), url("../fonts/firasans-lightitalic-webfont.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/firasans-regular-webfont.woff2") format("woff2"), url("../fonts/firasans-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/firasans-italic-webfont.woff2") format("woff2"), url("../fonts/firasans-italic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/firasans-medium-webfont.woff2") format("woff2"), url("../fonts/firasans-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/firasans-semibold-webfont.woff2") format("woff2"), url("../fonts/firasans-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/firasans-bold-webfont.woff2") format("woff2"), url("../fonts/firasans-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/firasans-extrabold-webfont.woff2") format("woff2"), url("../fonts/firasans-extrabold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Color Variables */
:root {
  --FiraSans-family: "FiraSans", Arial, sans-serif;
  --BebasNeue-family: "BebasNeue", Arial, sans-serif;
  --Poppins-family: "Poppins", Arial, sans-serif;
  --primary: #eb4803;
  --secondary: #172B36;
  --white: #fff;
  --black: #000;
  --gray: #fefefe;
  --transition: all 0.3s ease;
  --lt-gray: #f2f2f2;
  --dk-gray: #666;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 360px;
  color: var(--black);
  font: 400 15px/1.75 var(--FiraSans-family);
}

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

@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
}

@media (min-width: 1440px) {
  body {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  body.nav-active {
    overflow: hidden;
  }
}

/* Typography Styles */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h4 {
  font-family: var(--BebasNeue-family);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--secondary);
}

h1,
.h1 {
  font-size: 45px;
  color: var(--primary);
}

@media (min-width: 768px) {

  h1,
  .h1 {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {

  h1,
  .h1 {
    font-size: 70px;
  }
}

@media (min-width: 1200px) {

  h1,
  .h1 {
    font-size: 85px;
  }
}

@media (min-width: 1440px) {

  h1,
  .h1 {
    font-size: 100px;
  }
}

@media (min-width: 1600px) {

  h1,
  .h1 {
    font-size: 130px;
  }
}

h1:last-child,
.h1:last-child {
  margin-bottom: 0;
}

h2,
.h2 {
  font-size: 28px;
  line-height: 1.2;
}

@media (min-width: 768px) {

  h2,
  .h2 {
    font-size: 34px;
  }
}

@media (min-width: 1024px) {

  h2,
  .h2 {
    font-size: 40px;
  }
}

@media (min-width: 1200px) {

  h2,
  .h2 {
    font-size: 45px;
  }
}

h2:last-child,
.h2:last-child {
  margin-bottom: 0;
}

h3,
.h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.166;
}

@media (min-width: 768px) {

  h3,
  .h3 {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {

  h3,
  .h3 {
    font-size: 22px;
  }
}

@media (min-width: 1200px) {

  h3,
  .h3 {
    font-size: 24px;
  }
}

h4,
.h4 {
  font-size: 17px;
  font-weight: 600;
}

@media (min-width: 768px) {

  h4,
  .h4 {
    font-size: 19px;
  }
}

@media (min-width: 1024px) {

  h4,
  .h4 {
    font-size: 21px;
  }
}

h5,
.h5 {
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 768px) {

  h5,
  .h5 {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {

  h5,
  .h5 {
    font-size: 18px;
  }
}

p {
  margin: 0 0 15px;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

/* Input Styles */
.text-input {
  color: var(--black);
  background: var(--lt-gray);
  font: 400 15px/20px var(--Poppins-family);
  padding: 8px 15px;
  text-align: left;
  height: 44px;
  border-radius: 0;
  border: 1px solid var(--lt-gray);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  width: 100%;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 1px;
  -webkit-transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
  display: block;
  margin: 0;
}

@media (min-width: 1024px) {
  .text-input {
    font-size: 16px;
    height: 55px;
    padding: 12px 16px;
  }
}

.text-input::-webkit-input-placeholder {
  color: var(--dk-gray);
  opacity: 1;
}

.text-input::-moz-placeholder {
  color: var(--dk-gray);
  opacity: 1;
}

.text-input:-ms-input-placeholder {
  color: var(--dk-gray);
  opacity: 1;
}

.text-input::-ms-input-placeholder {
  color: var(--dk-gray);
  opacity: 1;
}

.text-input::placeholder {
  color: var(--dk-gray);
  opacity: 1;
}

.text-input:focus {
  outline: none;
  border-color: #1a1a1a;
  -webkit-box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.07);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.07);
}

textarea.text-input {
  height: 180px;
  resize: none;
}

@media (min-width: 768px) {
  textarea.text-input {
    height: 150px;
  }
}

@media (min-width: 1024px) {
  textarea.text-input {
    height: 200px;
  }
}

@media (min-width: 1440px) {
  textarea.text-input {
    height: 270px;
  }
}

/* Button Styles */
.btn {
  font: 700 14px/1.35 var(--FiraSans-family);
  padding: 7px 12px;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--white);
  background-color: transparent;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  min-width: 112px;
}

@media (min-width: 768px) {
  .btn {
    font-size: 16px;
    padding: 9px 15px;
  }
}

@media (min-width: 1024px) {
  .btn {
    font-size: 18px;
    padding: 9px 20px;
  }
}

@media (min-width: 1200px) {
  .btn {
    font-size: 20px;
    padding: 17px 32px;
  }
}

.btn:hover {
  color: var(--white);
  background-color: var(--secondary);
}

.btn .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn.btn-primary {
  background-color: var(--primary);
}

.btn.btn-primary:hover {
  background-color: var(--secondary);
}

.btn.btn-secondary {
  background-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background-color: var(--black);
}

.btn.btn-white {
  color: var(--white);
  border-color: var(--white);
}

.btn.btn-white:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}

.btn.btn-white-outline {
  color: var(--white);
  border-color: var(--white);
}

.btn.btn-white-outline:hover {
  color: var(--secondary);
  border-color: var(--secondary);
  background-color: transparent;
}

.btn.btn-sm {
  padding: 7px 15px;
  font-size: 12px;
  min-width: inherit;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .btn.btn-sm {
    font-size: 14px;
    padding: 8px 25px;
  }
}

@media (min-width: 1200px) {
  .btn.btn-sm {
    font-size: 16px;
  }
}

@media (min-width: 1440px) {
  .btn.btn-sm {
    padding: 10px 49px;
  }
}

.btn.btn-icon:after {
  width: 13px;
  height: 19px;
  content: "";
  background: url("../images/boult.svg") no-repeat;
  background-size: 100% 100%;
}

/* Slick slider styles */
.slick-slider {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slick Dots Styles */
.slick-dots {
  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;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  font-size: 0;
  line-height: 0;
}

@media (min-width: 768px) {
  .slick-dots {
    margin-top: 35px;
  }
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  border: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  display: block;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
  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;
}

.slick-dots li button:before {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  content: "";
  display: block;
  border-radius: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.slick-dots li button:hover:before {
  background: var(--primary);
}

.slick-dots li.slick-active button:before {
  width: 11px;
  height: 11px;
  background: var(--primary);
}

.slick-arrow {
  width: 36px;
  height: 36px;
  background: var(--secondary);
  padding: 0;
  position: absolute;
  top: -80px;
  border: 2px solid var(--secondary);
  border-radius: 14px;
  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;
  color: var(--white);
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .slick-arrow {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .slick-arrow svg {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

.slick-arrow:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.slick-arrow.slick-next {
  right: 15px;
}

.slick-arrow.slick-prev {
  right: 75px;
}

.slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Wrapper Styles */
.wrapper {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Container Styles */
.container {
  max-width: 1350px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

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

.container.container-lg {
  max-width: 1650px;
}

/* Header Styles */
.header {
  width: 100%;
  padding: 15px 0;
  background: var(--secondary);
  position: relative;
  z-index: 9;
}

.header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gray);
  opacity: 0.76;
}

.header .container {
  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;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.header .logo {
  width: 85px;
  display: block;
}

@media (min-width: 768px) {
  .header .logo {
    width: 110px;
  }
}

@media (min-width: 1024px) {
  .header .logo {
    width: 127px;
  }
}

.header .logo a {
  display: block;
}

.header .logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.header .header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

/* Mobile Nav Opener Styles */
.nav-opener {
  position: relative;
  width: 24px;
  height: 20px;
  border-top: 2px solid var(--primary);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: none;
}

.nav-active .nav-opener {
  border-top: none;
}

@media (max-width: 1023px) {
  .nav-opener {
    display: block;
  }
}

@media (max-width: 767px) {
  .nav-active .nav-opener {
    border-top-color: var(--white);
  }
}

.nav-opener:after,
.nav-opener:before {
  background: var(--primary);
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  content: "";
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.nav-active .nav-opener:after,
.nav-active .nav-opener:before {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: var(--white);
}

.nav-opener:after {
  top: 14px;
}

.nav-active .nav-opener:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-opener.nav-close {
  position: absolute;
  right: 20px;
  top: 20px;
}

/* Nav Holder Styles */
.nav-holder {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1023px) {
  .nav-holder {
    padding: 80px 0;
    width: 300px;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--primary);
    position: fixed;
    display: block;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    overflow: auto;
  }

  .nav-active .nav-holder {
    z-index: 3;
    -webkit-transform: none;
    transform: none;
    -webkit-box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
  }
}

.resize-active .nav-holder {
  -webkit-transition: none;
  transition: none;
}

.nav-holder .btn.btn-secondary {
  font-size: 16px;
  width: calc(100% - 48px);
  margin: 25px auto 0;
  padding: 8px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .nav-holder .btn.btn-secondary {
    display: none;
  }
}

/* Menu Styles */
.menu {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  font: 400 16px/1.5 var(--FiraSans-family);
}

@media (min-width: 1024px) {
  .menu {
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .menu {
    font-size: 16px;
    gap: 8px;
  }
}

.menu li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  .menu li {
    border-bottom: 0;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
  }
}

@media (min-width: 1200px) {
  .menu li {
    padding: 0 10px;
  }
}

@media (min-width: 1440px) {
  .menu li {
    padding: 0 10px;
  }
}

.menu li a {
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: block;
  padding: 10px 24px;
  color: var(--white);
  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;
  gap: 5px;
}

@media (min-width: 1024px) {
  .menu li a {
    padding: 10px 0;
    position: relative;
    color: var(--secondary);
  }
}

.menu li .drop-opener {
  width: 16px;
  height: 16px;
  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;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 44px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu li .drop-opener {
    position: static;
    width: auto;
    height: auto;
  }
}

.menu li .drop-opener:before {
  width: 13px;
  height: 8px;
  content: "";
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-image: url('data:image/svg+xml,<svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.89959 7.55805L0.20595 1.86438C-0.0686499 1.58978 -0.0686499 1.14459 0.20595 0.870015L0.870022 0.205943C1.14415 -0.0681879 1.58844 -0.0687154 1.86322 0.204771L6.39679 4.71711L10.9303 0.204771C11.2051 -0.0687154 11.6494 -0.0681879 11.9235 0.205943L12.5876 0.870015C12.8622 1.14461 12.8622 1.58981 12.5876 1.86438L6.89399 7.55805C6.61939 7.83262 6.17419 7.83262 5.89959 7.55805Z" fill="%23ffffff"/></svg>');
}

@media (min-width: 1024px) {
  .menu li .drop-opener:before {
    background-image: url('data:image/svg+xml,<svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.89959 7.55805L0.20595 1.86438C-0.0686499 1.58978 -0.0686499 1.14459 0.20595 0.870015L0.870022 0.205943C1.14415 -0.0681879 1.58844 -0.0687154 1.86322 0.204771L6.39679 4.71711L10.9303 0.204771C11.2051 -0.0687154 11.6494 -0.0681879 11.9235 0.205943L12.5876 0.870015C12.8622 1.14461 12.8622 1.58981 12.5876 1.86438L6.89399 7.55805C6.61939 7.83262 6.17419 7.83262 5.89959 7.55805Z" fill="%232D292A"/></svg>');
  }
}

.menu li:hover>a {
  color: var(--secondary);
}

@media (min-width: 1024px) {
  .menu li:hover>a {
    color: var(--primary);
  }
}

.menu li:hover .drop-opener:before {
  background-image: url('data:image/svg+xml,<svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.89959 7.55805L0.20595 1.86438C-0.0686499 1.58978 -0.0686499 1.14459 0.20595 0.870015L0.870022 0.205943C1.14415 -0.0681879 1.58844 -0.0687154 1.86322 0.204771L6.39679 4.71711L10.9303 0.204771C11.2051 -0.0687154 11.6494 -0.0681879 11.9235 0.205943L12.5876 0.870015C12.8622 1.14461 12.8622 1.58981 12.5876 1.86438L6.89399 7.55805C6.61939 7.83262 6.17419 7.83262 5.89959 7.55805Z" fill="%23172b36"/></svg>');
}

@media (min-width: 1024px) {
  .menu li:hover .drop-opener:before {
    background-image: url('data:image/svg+xml,<svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.89959 7.55805L0.20595 1.86438C-0.0686499 1.58978 -0.0686499 1.14459 0.20595 0.870015L0.870022 0.205943C1.14415 -0.0681879 1.58844 -0.0687154 1.86322 0.204771L6.39679 4.71711L10.9303 0.204771C11.2051 -0.0687154 11.6494 -0.0681879 11.9235 0.205943L12.5876 0.870015C12.8622 1.14461 12.8622 1.58981 12.5876 1.86438L6.89399 7.55805C6.61939 7.83262 6.17419 7.83262 5.89959 7.55805Z" fill="%23eb4803"/></svg>');
  }
}

@media (min-width: 1024px) {
  .menu li:hover>ul {
    opacity: 1;
    visibility: visible;
  }
}

.menu li.active>a {
  font-weight: 700;
}

.current-menu-item>a {
  font-weight: 700;
}

.menu li.drop-active>a {
  color: var(--secondary);
}

@media (min-width: 1024px) {
  .menu li.drop-active>a {
    color: var(--white);
  }
}

@media (max-width: 1023px) {
  .menu li.drop-active .drop-opener:before {
    background-image: url('data:image/svg+xml,<svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.89959 7.55805L0.20595 1.86438C-0.0686499 1.58978 -0.0686499 1.14459 0.20595 0.870015L0.870022 0.205943C1.14415 -0.0681879 1.58844 -0.0687154 1.86322 0.204771L6.39679 4.71711L10.9303 0.204771C11.2051 -0.0687154 11.6494 -0.0681879 11.9235 0.205943L12.5876 0.870015C12.8622 1.14461 12.8622 1.58981 12.5876 1.86438L6.89399 7.55805C6.61939 7.83262 6.17419 7.83262 5.89959 7.55805Z" fill="%23172b36"/></svg>');
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@media (min-width: 1024px) {
  .menu li.drop-active>ul {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .menu li.drop-active:hover>a {
    color: var(--primary);
  }
}

@media (min-width: 1024px) {
  .menu li.drop-active:hover>ul {
    opacity: 1;
    visibility: visible;
  }
}

.menu li>ul {
  list-style: none;
  padding: 0 30px;
  margin: 0;
  display: none;
}

@media (min-width: 1024px) {
  .menu li>ul {
    display: block !important;
    position: absolute;
    left: -10px;
    top: 100%;
    background: var(--secondary);
    padding: 12px 20px;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.menu li>ul>li {
  padding: 0;
  display: block;
  border-bottom: 0;
}

@media (max-width: 1023px) {
  .menu li>ul>li {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.menu li>ul>li+li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.menu li>ul>li>a {
  padding: 8px 0;
  color: var(--white);
  display: block;
}

@media (min-width: 1024px) {
  .menu li>ul>li>a {
    color: var(--white);
  }
}

.menu li>ul>li>a:hover {
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .menu li>ul>li>a:hover {
    opacity: 1;
    color: var(--primary);
  }
}

/* Main Styles */
.main {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .main {
    overflow: hidden;
  }
}

/* Visual Block Styles */
.visual-block {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .visual-block {
    overflow: visible;
  }
}

.visual-block .visual-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

@media (min-width: 1440px) {
  .visual-block .visual-image {
    position: static;
  }
}

.visual-block .visual-image:before,
.visual-block .visual-image:after {
  position: absolute;
  content: "";
  border-style: solid;
  opacity: 0.5;
}

.visual-block .visual-image:before {
  left: 0;
  top: 0;
  border-width: 200px 90px 0 0;
  border-color: var(--primary) transparent transparent transparent;
}

@media (min-width: 7684px) {
  .visual-block .visual-image:before {
    border-width: 300px 130px 0 0;
  }
}

@media (min-width: 1024px) {
  .visual-block .visual-image:before {
    border-width: 400px 175px 0 0;
  }
}

@media (min-width: 1440px) {
  .visual-block .visual-image:before {
    border-width: 535px 215px 0 0;
  }
}

.visual-block .visual-image:after {
  right: 0;
  bottom: 0;
  border-width: 0 0 200px 90px;
  border-color: transparent transparent var(--primary) transparent;
}

@media (min-width: 7684px) {
  .visual-block .visual-image:after {
    border-width: 0 0 300px 130px;
  }
}

@media (min-width: 1024px) {
  .visual-block .visual-image:after {
    border-width: 0 0 400px 175px;
  }
}

@media (min-width: 1440px) {
  .visual-block .visual-image:after {
    border-width: 0 0 580px 260px;
  }
}

.visual-block .visual-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1439px) {
  .visual-block .visual-image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right top;
    object-position: right top;
  }
}

.visual-block .visual-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 1440px) {
  .visual-block .visual-holder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.visual-block .container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.visual-block .textbox {
  padding: 45px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: var(--white);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 0;
}

@media (min-width: 768px) {
  .visual-block .textbox {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 60px 0;
    max-width: 450px;
  }
}

@media (min-width: 1024px) {
  .visual-block .textbox {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 500px;
    padding: 75px 0;
  }
}

@media (min-width: 1200px) {
  .visual-block .textbox {
    max-width: 620px;
  }
}

@media (min-width: 1440px) {
  .visual-block .textbox {
    max-width: 750px;
  }
}

@media (min-width: 1600px) {
  .visual-block .textbox {
    max-width: 900px;
    padding: 50px 0 93px;
  }
}

.visual-block .textbox h1 {
  color: var(--white);
  margin-bottom: 8px;
}

@media (min-width: 1200px) {
  .visual-block .textbox h1 {
    letter-spacing: -0.075rem;
  }
}

.visual-block .textbox p {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
}

@media (min-width: 1024px) {
  .visual-block .textbox p {
    font-size: 17px;
  }
}

@media (min-width: 1200px) {
  .visual-block .textbox p {
    font-size: 21px;
  }
}

@media (min-width: 1440px) {
  .visual-block .textbox p {
    font-size: 26px;
  }
}

.visual-block .textbox p:last-child {
  margin-bottom: 0;
}

.visual-block .textbox .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

.visual-block .textbox .breadcrumbs li {
  position: relative;
}

.visual-block .textbox .breadcrumbs li+li::before {
  position: absolute;
  left: -18px;
  top: -2px;
  content: ">";
  color: var(--white);
  font-size: 22px;
}

.visual-block .textbox .breadcrumbs a {
  color: var(--white);
  text-decoration: none;
  display: block;
}

/* Section Header Styles */
.section-header {
  width: 100%;
  overflow: hidden;
  text-align: center;
  margin-bottom: 20px;
}

.section-header h2 {
  margin: 0 0 10px;
  text-transform: uppercase;
  color: var(--primary);
}

.section-header h2:last-child {
  margin-bottom: 0;
}

/* About Block Styles */
.about-block {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--white);
  padding: 40px 0 90px;
  margin-bottom: -40px;
}

@media (min-width: 768px) {
  .about-block {
    padding: 50px 0 100px;
    margin-bottom: -50px;
  }
}

@media (min-width: 1024px) {
  .about-block {
    padding: 70px 0 160px;
    margin-bottom: -70px;
  }
}

.about-block .pattern-top,
.about-block .pattern-bottom {
  position: absolute;
}

.about-block .pattern-top img,
.about-block .pattern-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

.about-block .pattern-top {
  right: 0;
  top: 0;
  width: 82.75%;
}

.about-block .pattern-bottom {
  left: 0;
  bottom: 0;
  width: 60%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.about-block .container {
  position: relative;
  z-index: 1;
  max-width: 1296px;
}

.about-block .about-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 768px) {
  .about-block .about-columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.about-block .column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.about-block.active .pattern-bottom {
  opacity: 1;
  visibility: visible;
}

/* Opne Close Styles */
.open-close {
  position: relative;
}

.open-close .opener {
  color: var(--white);
  background: var(--primary);
  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;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .open-close .opener {
    padding: 20px;
  }
}

@media (min-width: 1440px) {
  .open-close .opener {
    padding: 30px 20px;
  }
}

.open-close .opener .icon {
  width: 18px;
  height: 18px;
  position: relative;
}

@media (min-width: 1024px) {
  .open-close .opener .icon {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 1440px) {
  .open-close .opener .icon {
    width: 28px;
    height: 28px;
  }
}

.open-close .opener .icon:before,
.open-close .opener .icon:after {
  width: 100%;
  height: 3px;
  content: "";
  background: var(--secondary);
  border-radius: 3px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (min-width: 1024px) {

  .open-close .opener .icon:before,
  .open-close .opener .icon:after {
    height: 4px;
  }
}

@media (min-width: 1440px) {

  .open-close .opener .icon:before,
  .open-close .opener .icon:after {
    height: 5px;
  }
}

.open-close .opener .icon:after {
  height: 100%;
  width: 3px;
}

@media (min-width: 1024px) {
  .open-close .opener .icon:after {
    width: 4px;
  }
}

@media (min-width: 1440px) {
  .open-close .opener .icon:after {
    width: 5px;
  }
}

.open-close .slide {
  display: none;
  padding: 0 15px 25px;
  color: #f2f2f2;
  background: var(--secondary);
  font-weight: 300;
}

@media (min-width: 1024px) {
  .open-close .slide {
    padding: 0 25px 50px;
  }
}

.open-close p {
  letter-spacing: -0.01rem;
  word-spacing: -1px;
}

.open-close .subtitle {
  display: inline-block;
  position: relative;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  background: var(--white);
  margin-right: 10px;
  padding-right: 5px;
}

.open-close .subtitle:before,
.open-close .subtitle:after {
  content: "";
  position: absolute;
  top: 0;
}

.open-close .subtitle:before {
  left: -25px;
  width: 25px;
  height: 100%;
  background: var(--white);
}

.open-close .subtitle:after {
  left: 100%;
  border-style: solid;
  border-width: 20px 8px 0 0;
  border-color: var(--white) transparent transparent transparent;
}

@media (min-width: 1200px) {
  .open-close .subtitle:after {
    border-width: 23px 8px 0 0;
  }
}

@media (min-width: 1440px) {
  .open-close .subtitle:after {
    border-width: 26px 8px 0 0;
  }
}

.open-close.active .opener {
  color: var(--primary);
  background: var(--secondary);
}

.open-close.active .opener .icon:before,
.open-close.active .opener .icon:after {
  background: var(--primary);
}

.open-close.active .opener .icon:after {
  opacity: 0;
}

/* Servies Block Styles */
.servies-block {
  position: relative;
}

/* Servies Slider Styles */
.servies-slider {
  background: var(--secondary);
  padding: 6px 0;
}

@media (min-width: 1024px) {
  .servies-slider {
    padding: 12px 0;
  }
}

.servies-slider .slick-list {
  padding: 0 7%;
}

@media (min-width: 768px) {
  .servies-slider .slick-list {
    padding: 0 10%;
  }
}

@media (min-width: 1024px) {
  .servies-slider .slick-list {
    padding: 0 18.9%;
  }
}

.servies-slider .slick-slide {
  padding: 6px;
}

@media (min-width: 1024px) {
  .servies-slider .slick-slide {
    padding: 12px;
  }
}

.servies-slider .img-holder {
  width: 100%;
  overflow: hidden;
}

.servies-slider .img-holder img {
  width: 100%;
  height: auto;
  display: block;
}

/* Partners Block Styles */
.partners-block {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .partners-block {
    padding: 50px 0;
  }
}

@media (min-width: 1024px) {
  .partners-block {
    padding: 68px 0 65px;
  }
}

.partners-block .pattern-top,
.partners-block .pattern-bottom {
  position: absolute;
}

.partners-block .pattern-top img,
.partners-block .pattern-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

.partners-block .pattern-top {
  right: 0;
  top: 0;
  width: 71.5%;
}

.partners-block .pattern-bottom {
  left: 0;
  bottom: 0;
  width: 37.75%;
}

.partners-block .container {
  position: relative;
  z-index: 1;
}

.partners-block .btn-holder {
  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;
  position: relative;
  z-index: 1;
}

.partners-block.affairs {
  padding-top: 0;
  background: var(--lt-gray);
}

@media (max-width: 767px) {
  .partners-block.affairs .container {
    padding: 0;
  }
}

.partners-block.affairs .section-header {
  padding: 25px 0;
  background: var(--secondary);
}

@media (min-width: 768px) {
  .partners-block.affairs .section-header {
    padding: 36px 0;
  }
}

.partners-block.affairs .partners-slider {
  padding: 0;
  max-width: 1300px;
  margin: 0 auto;
}

@media (min-width: 1600px) {
  .partners-block.affairs .partners-slider .slick-center .img-holder img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@media (min-width: 1800px) {
  .partners-block.affairs .partners-slider .slick-center .img-holder img {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}

/* Partners Slider Styles */
.partners-slider {
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .partners-slider {
    padding: 15px;
  }
}

@media (min-width: 1440px) {
  .partners-slider {
    padding: 30px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1800px) {
  .partners-slider {
    padding: 44px 50px;
  }
}

.partners-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .partners-slider .slick-list {
    padding: 0 100px !important;
  }
}

.partners-slider .slick-slide {
  height: auto;
  padding: 12px;
}

@media (min-width: 1200px) {
  .partners-slider .slick-slide.is-prev .img-holder {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
}

@media (min-width: 1200px) {
  .partners-slider .slick-slide.is-prev+.slick-slide .img-holder {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
}

.partners-slider .img-holder {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 150px;
}

@media (min-width: 768px) {
  .partners-slider .img-holder {
    min-height: 220px;
  }
}

@media (min-width: 1440px) {
  .partners-slider .img-holder {
    min-height: 360px;
  }
}

.partners-slider .img-holder img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}

@media (min-width: 1440px) {
  .partners-slider .img-holder img {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@media (min-width: 1800px) {
  .partners-slider .img-holder img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media (min-width: 1200px) {
  .partners-slider .slick-active .img-holder {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (min-width: 1200px) {
  .partners-slider .slick-center .img-holder {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

.partners-slider .slick-center .img-holder img {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

@media (min-width: 768px) {
  .partners-slider .slick-center .img-holder img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@media (min-width: 1440px) {
  .partners-slider .slick-center .img-holder img {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}

@media (min-width: 1600px) {
  .partners-slider .slick-center .img-holder img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@media (min-width: 1800px) {
  .partners-slider .slick-center .img-holder img {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
  }
}

@media (min-width: 1200px) {
  .partners-slider .slick-center~.slick-slide .img-holder {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

/* Contact Block Styles */
.contact-block {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 768px) {
  .contact-block {
    padding: 0 0 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .contact-block {
    padding: 0 0 64px;
  }
}

/* Contact Box Styles */
.contact-box {
  width: 100%;
  position: relative;
  padding: 75px 15px 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 768px) {
  .contact-box {
    width: 50%;
    padding: 75px 15px 0 15px;
  }
}

@media (min-width: 1024px) {
  .contact-box {
    padding: 75px 20px 0 20px;
  }
}

@media (min-width: 1200px) {
  .contact-box {
    padding: 75px 30px 0 30px;
  }
}

@media (min-width: 1700px) {
  .contact-box {
    padding: 75px 60px 0 75px;
  }
}

@media (min-width: 1850px) {
  .contact-box {
    padding: 75px 80px 0 75px;
  }
}

.contact-box:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-style: solid;
  border-width: 75px 150px 0 0;
  border-color: var(--primary) transparent transparent transparent;
}

@media (min-width: 768px) {
  .contact-box:before {
    border-width: 100px 100px 0 0;
  }
}

@media (min-width: 1024px) {
  .contact-box:before {
    border-width: 150px 150px 0 0;
  }
}

@media (min-width: 1200px) {
  .contact-box:before {
    border-width: 225px 150px 0 0;
  }
}

@media (min-width: 1600px) {
  .contact-box:before {
    border-width: 300px 150px 0 0;
  }
}

@media (min-width: 1700px) {
  .contact-box:before {
    border-width: 450px 200px 0 0;
  }
}

@media (min-width: 1850px) {
  .contact-box:before {
    border-width: 570px 244px 0 0;
  }
}

.contact-box h2 {
  color: var(--primary);
  margin: 0 0 20px;
}

@media (min-width: 1200px) {
  .contact-box h2 {
    margin: 0 0 25px;
  }
}

@media (min-width: 1440px) {
  .contact-box h2 {
    margin: 0 0 35px;
  }
}

@media (min-width: 1660px) {
  .contact-box h2 {
    margin: 0 0 48px;
  }
}

/* Contact Form Styles */
.contact-form {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .contact-form {
    max-width: 670px;
    margin-left: auto;
  }
}

.contact-form .form-group {
  overflow: hidden;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 1024px) {
  .contact-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 15px;
  }
}

@media (min-width: 1200px) {
  .contact-form .form-group {
    margin-bottom: 22px;
  }
}

.contact-form .form-group:last-child {
  margin-bottom: 0;
}

.contact-form .form-group .wpcf7-spinner {
  position: absolute;
}

.contact-form .form-group:last-of-type {
  margin-bottom: 0 !important;
}

.contact-form .input-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.contact-form .btn {
  width: 100%;
}

.contact-form .btn:hover {
  opacity: 0.85;
  background: var(--primary);
}

/* Testimonials Box Styles */
.testimonials-box {
  width: 100%;
  padding: 45px 15px 90px 15px;
  background: var(--lt-gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media (min-width: 768px) {
  .testimonials-box {
    width: 50%;
    min-height: 650px;
    padding: 75px 15px 150px 15px;
  }
}

@media (min-width: 1024px) {
  .testimonials-box {
    padding: 75px 20px 140px 20px;
    min-height: 775px;
  }
}

@media (min-width: 1200px) {
  .testimonials-box {
    padding: 75px 30px 150px 30px;
    min-height: 850px;
  }
}

@media (min-width: 1440px) {
  .testimonials-box {
    min-height: 970px;
  }
}

@media (min-width: 1700px) {
  .testimonials-box {
    padding: 75px 75px 150px 60px;
  }
}

@media (min-width: 1850px) {
  .testimonials-box {
    padding: 75px 75px 150px 95px;
  }
}

.testimonials-box:before,
.testimonials-box:after {
  position: absolute;
  right: 20px;
  bottom: 0;
  content: "";
  background: var(--primary);
  width: 60px;
}

@media (min-width: 768px) {

  .testimonials-box:before,
  .testimonials-box:after {
    width: 100px;
  }
}

@media (min-width: 1200px) {

  .testimonials-box:before,
  .testimonials-box:after {
    width: 150px;
  }
}

@media (min-width: 1440px) {

  .testimonials-box:before,
  .testimonials-box:after {
    width: 175px;
  }
}

@media (min-width: 1700px) {

  .testimonials-box:before,
  .testimonials-box:after {
    width: 210px;
  }
}

.testimonials-box:before {
  height: 40px;
  -webkit-transform: skew(-20deg);
  transform: skew(-20deg);
  right: 80px;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .testimonials-box:before {
    right: 120px;
    height: 70px;
  }
}

@media (min-width: 1200px) {
  .testimonials-box:before {
    height: 120px;
    right: 170px;
  }
}

@media (min-width: 1440px) {
  .testimonials-box:before {
    height: 150px;
    right: 190px;
  }
}

@media (min-width: 1700px) {
  .testimonials-box:before {
    height: 180px;
    right: 230px;
  }
}

.testimonials-box:after {
  height: 80px;
  -webkit-transform: skew(-20deg);
  transform: skew(-20deg);
}

@media (min-width: 768px) {
  .testimonials-box:after {
    height: 120px;
  }
}

@media (min-width: 1200px) {
  .testimonials-box:after {
    height: 200px;
  }
}

@media (min-width: 1440px) {
  .testimonials-box:after {
    height: 250px;
  }
}

@media (min-width: 1700px) {
  .testimonials-box:after {
    height: 300px;
  }
}

.testimonials-box h2 {
  color: var(--primary);
  margin: 0 0 20px;
}

@media (min-width: 1200px) {
  .testimonials-box h2 {
    margin: 0 0 25px;
  }
}

.testimonials-box blockquote {
  margin: 0;
  display: block;
  font: italic 300 15px/1.51 var(--Poppins-family);
}

@media (min-width: 768px) {
  .testimonials-box blockquote {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .testimonials-box blockquote {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .testimonials-box blockquote {
    font-size: 21px;
  }
}

@media (min-width: 1440px) {
  .testimonials-box blockquote {
    font-size: 25px;
  }
}

.testimonials-box blockquote q {
  display: block;
  quotes: none;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .testimonials-box blockquote q {
    margin-bottom: 40px;
  }
}

.testimonials-box blockquote cite {
  font-style: normal;
  font-weight: 400;
  display: block;
}

/* Testimonials Slider Styles */
.testimonials-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonials-slider {
    max-width: 660px;
  }
}

/* Services Grid Styles */
.services-grid {
  padding: 235px 0 533px;
  position: relative;
}

@media (max-width: 1439px) {
  .services-grid {
    padding: 180px 0 180px;
  }
}

@media (max-width: 1023px) {
  .services-grid {
    padding: 100px 0 140px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    padding: 70px 0 100px;
  }
}

.services-grid .container {
  max-width: 1685px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 1;
  position: relative;
}

.services-grid .card-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 135px 62px;
}

@media (max-width: 1439px) {
  .services-grid .card-holder {
    gap: 110px 40px;
  }
}

@media (max-width: 1023px) {
  .services-grid .card-holder {
    gap: 100px 30px;
  }
}

@media (max-width: 767px) {
  .services-grid .card-holder {
    gap: 80px 0;
  }
}

.services-grid .service-card {
  display: block;
  text-decoration: none;
  position: relative;
  width: calc(33.333% - 42px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .services-grid .service-card {
    width: calc(50% - 31px);
  }
}

@media (max-width: 767px) {
  .services-grid .service-card {
    width: 100%;
  }
}

.services-grid .service-card:hover .image-box img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.services-grid .service-card:hover .arrow-img {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.services-grid .image-box {
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
}

.services-grid .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.services-grid .service-label {
  position: absolute;
  bottom: -74px;
  left: 50%;
  width: 77%;
  background: var(--primary);
  padding: 27px 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 10;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-height: 228px;
}

@media (max-width: 1439px) {
  .services-grid .service-label {
    min-height: 170px;
    padding: 20px;
  }
}

@media (max-width: 1023px) {
  .services-grid .service-label {
    min-height: 155px;
  }
}

@media (max-width: 767px) {
  .services-grid .service-label {
    width: 90%;
    bottom: -10%;
  }
}

@media (max-width: 480px) {
  .services-grid .service-label {
    min-height: 150px;
  }
}

.services-grid .service-label h2 {
  color: var(--white);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -1px;
  max-width: 65%;
}

@media (max-width: 1439px) {
  .services-grid .service-label h2 {
    font-size: 42px;
  }
}

@media (max-width: 1023px) {
  .services-grid .service-label h2 {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .services-grid .service-label h2 {
    font-size: 32px;
    letter-spacing: normal;
  }
}

.services-grid .arrow-img {
  width: 41px;
  height: 41px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: absolute;
  right: 40px;
  bottom: 40px;
}

@media (max-width: 1439px) {
  .services-grid .arrow-img {
    right: 20px;
    bottom: 20px;
    width: 30px;
    height: 30px;
  }
}

/* pattern design style */
.pattern-design {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.pattern-design img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pattern-design.bottom {
  top: auto;
  bottom: 0;
}

/* Teams Grid styles */
.team-section {
  padding: 77px 0 90px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.team-section .container {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 1;
  position: relative;
}

.team-section .ceo-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 85px;
  padding-left: 125px;
}

@media (max-width: 1439px) {
  .team-section .ceo-block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .team-section .ceo-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

.team-section .ceo-block .image-box {
  border-radius: 51px 51px 0 51px;
  max-width: 453px;
  height: auto;
  width: 100%;
}

.team-section .ceo-block .main-ceo {
  padding: 8px 39px 35px 34px;
}

@media (max-width: 1023px) {
  .team-section .ceo-block .main-ceo {
    width: 50%;
  }
}

.team-section .ceo-details {
  padding: 50px 0 0;
}

.team-section .ceo-details h2 {
  font-size: 120px;
  color: var(--secondary);
  margin: 0;
  line-height: 86%;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .team-section .ceo-details h2 {
    font-size: 60px;
  }
}

.team-section .ceo-details .designation {
  font-size: 90px;
  color: var(--primary);
  font-weight: 400;
  display: block;
  margin-top: 5px;
  font-family: var(--BebasNeue-family);
  line-height: 86%;
  text-align: right;
}

@media (max-width: 1199px) {
  .team-section .ceo-details .designation {
    font-size: 45px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .team-section .ceo-details .designation {
    text-align: center;
  }
}

.team-section .member-image-wrapper {
  position: relative;
  padding: 35px 34px 35px 31px;
  display: inline-block;
}

.team-section .member-image-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 85%;
  background-color: var(--secondary);
  z-index: 1;
}

.team-section .image-box {
  position: relative;
  z-index: 2;
  background-color: var(--primary);
  overflow: hidden;
  width: 100%;
  max-width: 338px;
}

.team-section .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.team-section .team-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0 6.5%;
}

@media (max-width: 991px) {
  .team-section .team-grid {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px 4%;
  }
}

@media (max-width: 767px) {
  .team-section .team-grid {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 4%;
  }
}

.team-section .team-member {
  width: 29%;
  margin-bottom: 40px;
}

.team-section .team-member .member-image-wrapper {
  margin-bottom: 25px;
}

.team-section .team-member h3 {
  font-size: 50px;
  color: var(--secondary);
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 1199px) {
  .team-section .team-member h3 {
    font-size: 35px;
  }
}

.team-section .team-member p {
  font-size: 30px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  font-family: var(--BebasNeue-family);
}

@media (max-width: 1199px) {
  .team-section .team-member p {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .team-section .team-member {
    width: 48%;
  }
}

@media (max-width: 650px) {
  .team-section .team-member {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 50px 0;
  }

  .team-section .ceo-details h2 {
    font-size: 40px;
  }

  .team-section .ceo-details .designation {
    font-size: 30px;
  }

  .team-section .team-member {
    width: 100% !important;
    margin-bottom: 40px;
  }

  .team-section .team-member .member-image-wrapper {
    padding: 20px;
  }

  .team-section .image-box {
    max-width: 280px !important;
    height: auto !important;
    margin: 0 auto;
  }
}

/* blogs styles */
.blog-section {
  padding: 102px 0 120px;
  position: relative;
  min-height: 1000px;
}

.blog-section .container {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
}

.blog-section .blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 57px;
  margin-bottom: 30px;
  gap: 30px;
  border-radius: 4px;
}

.blog-section .blog-card:nth-child(odd) {
  background-color: var(--secondary);
}

.blog-section .blog-card:nth-child(odd) .title {
  color: var(--primary);
}

.blog-section .blog-card:nth-child(even) {
  background-color: var(--primary);
}

.blog-section .blog-card:nth-child(even) .title,
.blog-section .blog-card:nth-child(even) p {
  color: #000000;
}

@media (max-width: 1199px) {
  .blog-section .blog-card {
    padding: 30px;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .blog-section .blog-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
}

.blog-section .content-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.blog-section .content-col .title {
  font-size: 60px;
  font-weight: 400;
  line-height: 86%;
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .blog-section .content-col .title br {
    display: none;
  }
}

@media (max-width: 1399px) {
  .blog-section .content-col .title {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .blog-section .content-col .title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .blog-section .content-col .title {
    font-size: 32px;
    line-height: 1;
  }
}

.blog-section .desc-col {
  -webkit-box-flex: 1.4;
  -ms-flex: 1.4;
  flex: 1.4;
}

.blog-section .desc-col p {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.3px;
}

@media (max-width: 1399px) {
  .blog-section .desc-col p {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .blog-section .desc-col p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-section .desc-col p {
    font-size: 18px;
  }
}

.blog-section .image-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.blog-section .image-col img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .blog-section .image-col img {
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  .blog-section .image-col img {
    max-width: 200px;
  }
}

.blog-section .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  margin-top: 120px;
}

@media (max-width: 767px) {
  .blog-section .pagination {
    margin-top: 60px;
    gap: 5px;
  }
}

.blog-section .pagination .page-link {
  width: 48px;
  height: 48px;
  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;
  border: 1px solid #0f1e29;
  text-decoration: none;
  color: #0f1e29;
  font-size: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-section .pagination .page-link.active,
.blog-section .pagination .page-link:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.blog-section .pagination .page-link.dots {
  display: none;
  border: none;
}

@media (max-width: 767px) {
  .blog-section .pagination .page-link.dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
  }
}

@media (max-width: 767px) {
  .blog-section .pagination .page-link.mobile-hide {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-section .pagination .page-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.blog-section .pagination .page-link svg {
  fill: currentColor;
}

/* Previous aur Next buttons ke liye specific adjustment */
.blog-section .pagination .page-link.prev-btn,
.blog-section .pagination .page-link.next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Jab pehli page par ho toh prev button ko disable/hide dikhane ke liye (Optional) */
.blog-section .pagination .page-link.disabled {
  opacity: 0.5;
  pointer-events: none;
  border-color: #ccc;
}

/* products styles */
.products-section {
  padding: 57px 0 484px;
  position: relative;
}

@media (max-width: 1199px) {
  .products-section {
    padding: 50px 0 150px;
  }
}

@media (max-width: 767px) {
  .products-section {
    padding: 40px 0 60px;
  }
}

.products-section .container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

.products-section .product-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 350px;
  overflow: hidden;
}

.products-section .product-row:nth-child(odd) {
  background-color: var(--secondary);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.products-section .product-row:nth-child(even) {
  background-color: var(--primary);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.products-section .product-row+.product-row {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .products-section .product-row+.product-row {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .products-section .product-row {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    min-height: auto;
  }
}

.products-section .image-col {
  width: auto;
}

@media (min-width: 768px) and (max-width: 1339px) {
  .products-section .image-col {
    width: 50%;
  }
}

.products-section .image-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .products-section .image-col img {
    height: 250px;
  }
}

.products-section .content-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 40px;
  text-align: left;
}

@media (max-width: 1199px) {
  .products-section .content-col {
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .products-section .content-col {
    padding: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1339px) {
  .products-section .content-col {
    width: 50%;
  }
}

.products-section .content-col .title a {
  font-size: 96px;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.8;
  margin: 0;
  text-transform: uppercase;
  text-decoration: none;
  max-width: 60%;
  display: block;
}

@media (max-width: 1023px) {
  .products-section .content-col .title a br {
    display: none;

  }
}

@media (max-width: 1399px) {
  .products-section .content-col .title a {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .products-section .content-col .title a {
    font-size: 40px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .products-section .content-col .title a {
    font-size: 28px;
    padding: 20px 0;
  }
}

.privacy-block {
  padding: 60px 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .privacy-block {
    padding: 40px 0;
  }
}

.privacy-block .box-holder {
  max-width: 1186px;
}

@media (max-width: 1023px) {
  .privacy-block .box-holder {
    max-width: 100%;
  }
}

.privacy-block .privacy-header {
  margin-bottom: 24px;
}

.privacy-block .privacy-header .last-updated {
  font-size: 24px;
  color: #585858;
  margin-bottom: 8px;
  font-weight: 400;
}

.privacy-block .privacy-header .main-title {
  font-size: 72px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: #000000;
  line-height: 1;
}

@media (max-width: 1023px) {
  .privacy-block .privacy-header .main-title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .privacy-block .privacy-header .main-title {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .privacy-block .privacy-header .main-title {
    font-size: 28px;
  }
}

.privacy-block .privacy-content .intro-text {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--secondary);
  max-width: 1057px;
}

@media (max-width: 1023px) {
  .privacy-block .privacy-content .intro-text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .privacy-block .privacy-content .intro-text {
    text-align: justify;
    margin-bottom: 20px;
  }
}

.privacy-block .privacy-content .policy-section {
  margin-bottom: 35px;
}

.privacy-block .privacy-content .policy-section .section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
  text-transform: capitalize;
  font-family: var(--FiraSans-family);
}

@media (max-width: 480px) {
  .privacy-block .privacy-content .policy-section .section-title {
    font-size: 22px;
  }
}

.privacy-block .privacy-content .policy-section p {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.privacy-block .privacy-content .policy-section p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .privacy-block .privacy-content .policy-section p {
    text-align: justify;
  }
}

/* blog detail Styles */
.security-blog-section {
  padding: 60px 0;
}

.security-blog-section .blog-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 115px;
  max-width: 1512px;
}

@media (max-width: 1439px) {
  .security-blog-section .blog-wrapper {
    gap: 50px;
  }
}

@media (max-width: 1200px) {
  .security-blog-section .blog-wrapper {
    gap: 30px;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .security-blog-section .blog-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}

.security-blog-section .main-post {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
}

@media (max-width: 991px) {
  .security-blog-section .main-post {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
  }
}

.security-blog-section .featured-image {
  margin-bottom: 12px;
}

.security-blog-section .featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .security-blog-section .featured-image img {
    max-width: 100%;
    width: 100%;
  }
}

.security-blog-section .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #585858;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
}

@media (max-width: 1023px) {
  .security-blog-section .post-meta {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .security-blog-section .post-meta {
    font-size: 14px;
  }
}

.security-blog-section .recent-posts-sidebar {
  width: 422px;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .security-blog-section .recent-posts-sidebar {
    width: auto;
  }
}

@media (max-width: 991px) {
  .security-blog-section .recent-posts-sidebar {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.security-blog-section .sidebar-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 27px;
  position: relative;
  padding-bottom: 14px;
  font-family: var(--FiraSans-family);
}

@media (max-width: 1023px) {
  .security-blog-section .sidebar-title {
    font-size: 26px;
  }
}

.security-blog-section .sidebar-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
}

.security-blog-section .recent-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.security-blog-section .recent-post-item:hover .title {
  color: var(--primary);
}

@media (max-width: 1199px) {
  .security-blog-section .recent-post-item {
    margin-bottom: 25px;
  }
}

.security-blog-section .recent-post-item:last-child {
  margin-bottom: 0;
}

.security-blog-section .post-thumb {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.security-blog-section .post-thumb img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.security-blog-section .post-info .date {
  display: block;
  font-size: 13px;
  color: #585858;
  margin-bottom: 5px;
}

.security-blog-section .post-info .title {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: var(--secondary);
  line-height: 35px;
  font-family: var(--FiraSans-family);
}

@media (max-width: 1399px) {
  .security-blog-section .post-info .title {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 1023px) {
  .security-blog-section .post-info .title {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 575px) {
  .security-blog-section .post-info .title {
    font-size: 15px;
  }
}

.why-choose-section {
  padding: 0 0 60px;
}

.why-choose-section .container {
  max-width: 1512px;
}

.why-choose-section .box-holder {
  max-width: 1057px;
}

@media (max-width: 767px) {
  .why-choose-section .box-holder {
    max-width: 100%;
  }
}

.why-choose-section .why-header {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .why-choose-section .why-header {
    margin-bottom: 30px;
  }
}

.why-choose-section h2 {
  font-size: 72px;
  font-weight: 400;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .why-choose-section h2 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .why-choose-section h2 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .why-choose-section h2 {
    font-size: 36px;
  }
}

.why-choose-section .intro-para {
  font-size: 20px;
  color: #172B36;
  line-height: 1.6;
  max-width: 1100px;
}

@media (max-width: 768px) {
  .why-choose-section .intro-para {
    font-size: 18px;
  }
}

.why-choose-section .why-content-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.why-choose-section .content-item {
  margin-bottom: 10px;
}

.why-choose-section .image-box {
  width: auto;
  max-width: 1057px;
}

.why-choose-section .item-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  font-family: var(--FiraSans-family);
}

@media (max-width: 768px) {
  .why-choose-section .item-title {
    font-size: 19px;
  }
}

.why-choose-section .item-para {
  font-size: 20px;
  color: #172B36;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .why-choose-section .item-para {
    font-size: 18px;
  }
}

.why-choose-section .item-para:last-child {
  margin-bottom: 0;
}

.security-steps {
  padding: 50px 0;
  font-family: var(--FiraSans-family);
}

.security-steps .steps-main-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  font-family: var(--FiraSans-family);
}

@media (max-width: 768px) {
  .security-steps .steps-main-title {
    font-size: 32px;
    margin-bottom: 25px;
  }
}

.security-steps .steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.security-steps .step-item {
  font-size: 18px;
  font-weight: 400;
  color: #172B36;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  line-height: 35px;
}

@media (max-width: 575px) {
  .security-steps .step-item {
    font-size: 16px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 1.5;
    gap: 10px;
    letter-spacing: -1.2px;
  }
}

.security-steps .check-icon {
  width: 24px;
  height: 24px;
  background-color: var(--primary);
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  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;
}

.security-steps .check-icon::before {
  content: "";
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -2px;
}

@media (max-width: 575px) {
  .security-steps .check-icon::before {
    margin-top: -1px;
  }
}

@media (max-width: 575px) {
  .security-steps .check-icon {
    margin-top: 3px;
    width: 20px;
    height: 20px;
  }
}

/* contatc us Styles */
.contact {
  padding: 143px 0 0;
}

@media (max-width: 1023px) {
  .contact {
    padding: 60px 0 0;
  }
}

.contact .text-holder {
  max-width: 1236px;
}

@media (max-width: 1023px) {
  .contact .text-holder {
    max-width: 100%;
    text-align: justify;
  }
}

.contact h2 {
  font-size: 72px;
  line-height: 1;
}

@media (max-width: 1023px) {
  .contact h2 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .contact h2 {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .contact h2 {
    font-size: 40px;
  }
}

.contact p {
  font-size: 20px;
  color: var(--secondary);
}

@media (max-width: 1023px) {
  .contact p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contact p {
    font-size: 16px;
  }
}

.form-section {
  width: 100%;
  overflow: hidden;
  padding: 75px 0 365px;
}

@media (max-width: 1440px) {
  .form-section {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .form-section {
    padding: 60px 0;
  }
}

.form-section .contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 700px;
}

@media (max-width: 991px) {
  .form-section .contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.form-section .contact-form-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: var(--secondary);
  padding: 186px 100px 112px 200px;
  position: relative;
}

.form-section .contact-form-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 0 45%);
  z-index: 1;
}

@media (max-width: 1400px) {
  .form-section .contact-form-col::before {
    width: 120px;
  }
}

@media (max-width: 1400px) {
  .form-section .contact-form-col {
    padding: 120px 60px 80px 120px;
  }
}

@media (max-width: 1200px) {
  .form-section .contact-form-col {
    padding: 80px 40px;
  }
}

@media (max-width: 575px) {
  .form-section .contact-form-col {
    padding: 60px 20px;
  }
}

.form-section .form-header {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  color: #fff;
}

.form-section .form-header h2 {
  font-size: 40px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--FiraSans-family);
  line-height: 1.1;
}

@media (max-width: 1200px) {
  .form-section .form-header h2 {
    font-size: 32px;
  }

  .form-section .form-header h2 br {
    display: none;
  }
}

@media (max-width: 767px) {
  .form-section .form-header h2 {
    font-size: 28px;
  }
}

.form-section .main-form {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.form-section .main-form .row-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

@media (max-width: 575px) {
  .form-section .main-form .row-inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.form-section .main-form .input-group {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.form-section .main-form .input-group input,
.form-section .main-form .input-group textarea {
  width: 100%;
  padding: 18px;
  background: #f0f0f0;
  border: none;
  outline: none;
  font-family: inherit;
  color: #0B0B0B;
}

.form-section .main-form .input-group input::-webkit-input-placeholder,
.form-section .main-form .input-group textarea::-webkit-input-placeholder {
  color: #0B0B0B;
}

.form-section .main-form .input-group input::-moz-placeholder,
.form-section .main-form .input-group textarea::-moz-placeholder {
  color: #0B0B0B;
}

.form-section .main-form .input-group input:-ms-input-placeholder,
.form-section .main-form .input-group textarea:-ms-input-placeholder {
  color: #0B0B0B;
}

.form-section .main-form .input-group input::-ms-input-placeholder,
.form-section .main-form .input-group textarea::-ms-input-placeholder {
  color: #0B0B0B;
}

.form-section .main-form .input-group input::placeholder,
.form-section .main-form .input-group textarea::placeholder {
  color: #0B0B0B;
}

.form-section .main-form .input-group textarea {
  height: 180px;
  resize: none;
}

.form-section .main-form .submit-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 45px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--FiraSans-family);
  font-size: 20px;
}

@media (max-width: 767px) {
  .form-section .main-form .submit-btn {
    width: 100%;
    padding: 12px 20px;
  }
}

.form-section .contact-info-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #F2F2F2;
  padding: 80px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media (max-width: 1400px) {
  .form-section .contact-info-col {
    padding: 60px 60px;
  }
}

@media (max-width: 1200px) {
  .form-section .contact-info-col {
    padding: 60px 40px;
  }
}

@media (max-width: 991px) {
  .form-section .contact-info-col {
    padding: 80px 40px;
    min-height: 500px;
  }
}

@media (max-width: 575px) {
  .form-section .contact-info-col {
    padding: 60px 20px;
  }
}

.form-section .contact-info-col::before,
.form-section .contact-info-col::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary);
}

.form-section .contact-info-col::before {
  width: 348px;
  height: 298px;
  right: -75px;
  clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
  z-index: 2;
}

@media (max-width: 1400px) {
  .form-section .contact-info-col::before {
    width: 250px;
    height: 200px;
    right: -30px;
  }
}

@media (max-width: 991px) {
  .form-section .contact-info-col::before {
    width: 180px;
    height: 140px;
    right: -20px;
  }
}

.form-section .contact-info-col::after {
  width: 294px;
  height: 178px;
  opacity: 0.5;
  right: 200px;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  z-index: 1;
}

@media (max-width: 1400px) {
  .form-section .contact-info-col::after {
    width: 200px;
    height: 120px;
    right: 160px;
  }
}

@media (max-width: 991px) {
  .form-section .contact-info-col::after {
    width: 150px;
    height: 90px;
    right: 120px;
    clip-path: polygon(27% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
}

.form-section .info-content {
  position: relative;
  z-index: 3;
}

.form-section .info-content .info-title {
  color: var(--primary);
  font-size: 45px;
  font-weight: 400;
  margin-bottom: 19px;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .form-section .info-content .info-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .form-section .info-content .info-title {
    font-size: 30px;
  }
}

.form-section .info-content .info-desc {
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 35px;
  color: #333;
  font-size: 25px;
}

@media (max-width: 1200px) {
  .form-section .info-content .info-desc {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .form-section .info-content .info-desc {
    font-size: 18px;
  }
}

.form-section .contact-details {
  list-style: none;
  padding: 0;
}

.form-section .contact-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  font-size: 25px;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .form-section .contact-details li {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .form-section .contact-details li {
    font-size: 16px;
  }
}

.form-section .contact-details .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30px;
}

.form-section {
  width: 100%;
  overflow: hidden;
  padding: 75px 0 365px;
}

@media (max-width: 767px) {
  .form-section.conatct {
    display: block;
    margin: 0 auto;
    max-width: 1057px;
  }
}

@media (max-width: 1440px) {
  .form-section {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .form-section {
    padding: 60px 0;
  }
}

.form-section .contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 700px;
}

@media (max-width: 991px) {
  .form-section .contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.form-section .contact-form-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: var(--secondary);
  padding: 186px 100px 112px 200px;
  position: relative;
}

.form-section .contact-form-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 0 45%);
  z-index: 1;
}

@media (max-width: 1400px) {
  .form-section .contact-form-col::before {
    width: 120px;
  }
}

@media (max-width: 1400px) {
  .form-section .contact-form-col {
    padding: 120px 60px 80px 120px;
  }
}

@media (max-width: 1200px) {
  .form-section .contact-form-col {
    padding: 80px 40px;
  }
}

@media (max-width: 575px) {
  .form-section .contact-form-col {
    padding: 60px 20px;
  }
}

.form-section .form-header {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  color: #fff;
}

.form-section .form-header h2 {
  font-size: 40px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--FiraSans-family);
  line-height: 1.1;
}

@media (max-width: 1200px) {
  .form-section .form-header h2 {
    font-size: 32px;
  }

  .form-section .form-header h2 br {
    display: none;
  }
}

@media (max-width: 767px) {
  .form-section .form-header h2 {
    font-size: 28px;
  }
}

.form-section .main-form {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.form-section .main-form .row-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

@media (max-width: 575px) {
  .form-section .main-form .row-inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.form-section .main-form .input-group {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.form-section .main-form .input-group input,
.form-section .main-form .input-group textarea {
  width: 100%;
  padding: 18px;
  background: #f0f0f0;
  border: none;
  outline: none;
  font-family: inherit;
  color: #0B0B0B;
}

.form-section .main-form .input-group input::-webkit-input-placeholder,
.form-section .main-form .input-group textarea::-webkit-input-placeholder {
  color: #0B0B0B;
}

.form-section .main-form .input-group input::-moz-placeholder,
.form-section .main-form .input-group textarea::-moz-placeholder {
  color: #0B0B0B;
}

.form-section .main-form .input-group input:-ms-input-placeholder,
.form-section .main-form .input-group textarea:-ms-input-placeholder {
  color: #0B0B0B;
}

.form-section .main-form .input-group input::-ms-input-placeholder,
.form-section .main-form .input-group textarea::-ms-input-placeholder {
  color: #0B0B0B;
}

.form-section .main-form .input-group input::placeholder,
.form-section .main-form .input-group textarea::placeholder {
  color: #0B0B0B;
}

.form-section .main-form .input-group textarea {
  height: 180px;
  resize: none;
}

.form-section .main-form .submit-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 45px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--FiraSans-family);
  font-size: 20px;
}

@media (max-width: 767px) {
  .form-section .main-form .submit-btn {
    width: 100%;
    padding: 12px 20px;
  }
}

.form-section .contact-info-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #F2F2F2;
  padding: 80px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media (max-width: 1400px) {
  .form-section .contact-info-col {
    padding: 60px 60px;
  }
}

@media (max-width: 1200px) {
  .form-section .contact-info-col {
    padding: 60px 40px;
  }
}

@media (max-width: 991px) {
  .form-section .contact-info-col {
    padding: 80px 40px;
    min-height: 500px;
  }
}

@media (max-width: 575px) {
  .form-section .contact-info-col {
    padding: 60px 20px;
  }
}

.form-section .contact-info-col::before,
.form-section .contact-info-col::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary);
}

.form-section .contact-info-col::before {
  width: 348px;
  height: 298px;
  right: -75px;
  clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
  z-index: 2;
}

@media (max-width: 1400px) {
  .form-section .contact-info-col::before {
    width: 250px;
    height: 200px;
    right: -30px;
  }
}

@media (max-width: 991px) {
  .form-section .contact-info-col::before {
    width: 180px;
    height: 140px;
    right: -20px;
  }
}

.form-section .contact-info-col::after {
  width: 294px;
  height: 178px;
  opacity: 0.5;
  right: 200px;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  z-index: 1;
}

@media (max-width: 1400px) {
  .form-section .contact-info-col::after {
    width: 200px;
    height: 120px;
    right: 160px;
  }
}

@media (max-width: 991px) {
  .form-section .contact-info-col::after {
    width: 150px;
    height: 90px;
    right: 120px;
    clip-path: polygon(27% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
}

.form-section .info-content {
  position: relative;
  z-index: 3;
}

.form-section .info-content .info-title {
  color: var(--primary);
  font-size: 45px;
  font-weight: 400;
  margin-bottom: 19px;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .form-section .info-content .info-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .form-section .info-content .info-title {
    font-size: 30px;
  }
}

.form-section .info-content .info-desc {
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 35px;
  color: #333;
  font-size: 25px;
}

@media (max-width: 1200px) {
  .form-section .info-content .info-desc {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .form-section .info-content .info-desc {
    font-size: 18px;
  }
}

.form-section .contact-details {
  list-style: none;
  padding: 0;
}

.form-section .contact-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  font-size: 25px;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .form-section .contact-details li {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .form-section .contact-details li {
    font-size: 16px;
  }
}

.form-section .contact-details .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30px;
}

/* Footer Styles */
.footer {
  background-color: var(--secondary);
  padding-top: 145px;
  color: var(--white);
}

@media (max-width: 1440px) {
  .footer {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 40px;
  }
}

.footer .container {
  max-width: 1201px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 85px;
  padding-bottom: 145px;
}

@media (max-width: 1440px) {
  .footer .footer-content {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    gap: 20px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding-bottom: 40px;
  }
}

.footer .footer-col {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

@media (max-width: 767px) {
  .footer .footer-col {
    min-width: 100%;
    margin-bottom: 10px;
  }
}

.footer .footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
  text-transform: capitalize;
  font-family: var(--Poppins-family);
}

@media (max-width: 767px) {
  .footer .footer-col h3 {
    margin-bottom: 20px;
  }
}

.footer .footer-logo img {
  max-width: 257px;
  height: auto;
  display: block;
  margin: 0 auto;
  width: auto;
}

@media (max-width: 991px) {
  .footer .footer-logo img {
    max-width: 200px;
  }
}

.footer .links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .links-col li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 22px;
  font-size: 16px;
}

.footer .links-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: url("../images/chevron_right.svg") no-repeat center;
  background-size: auto;
  background-size: contain;
  width: 12px;
  height: 12px;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

@media (max-width: 767px) {
  .footer .links-col li::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer .links-col li {
    padding-left: 0;
  }
}

.footer .links-col li:last-child {
  margin-bottom: 0;
}

.footer .links-col a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer .links-col a:hover {
  color: var(--primary);
}

.footer .contact-col address {
  font-style: normal;
  line-height: 1.8;
  font-size: 16px;
}

.footer .contact-col address a {
  color: var(--white);
  text-decoration: none;
  display: block;
}

.footer .contact-col address a:hover {
  color: var(--primary);
}

.footer .copyright-bar {
  background-color: var(--primary);
  padding: 35px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .footer .copyright-bar {
    padding: 20px 15px;
  }
}

.footer .copyright-bar p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.82;
  letter-spacing: 1.2px;
  color: var(--white);
}

@media (max-width: 767px) {
  .footer .copyright-bar p {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}

/* abdula pags styling */

.services-about-block {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .services-about-block {
    padding: 50px 0;
  }
}

@media (min-width: 1024px) {
  .services-about-block {
    padding: 130px 0 114px;
  }
}

.services-about-block .container {
  max-width: 1650px;
}

.services-about-block .box-holder {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .services-about-block .box-holder {
    gap: 33px;
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .services-about-block .box-holder {
    gap: 33px;
  }
}

.services-about-block .box-holder .col-left {
  width: 100%;
}

@media (min-width: 768px) {
  .services-about-block .box-holder .col-left {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .services-about-block .box-holder .col-left {
    width: 42.46%;
  }
}

.services-about-block .box-holder .col-right {
  width: 100%;
}

@media (min-width: 768px) {
  .services-about-block .box-holder .col-right {
    width: 50%;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .services-about-block .box-holder .col-right {
    width: 56%;
    margin-right: 47px;
  }
}

.services-about-block .box-holder .col-right .image-holder {
  margin: 20px auto 0;
}

@media (min-width: 768px) {
  .services-about-block .box-holder .col-right .image-holder {
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .services-about-block .box-holder .col-right .image-holder {
    margin-top: 90px;
  }
}

.services-about-block .section-header {
  text-align: left;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .services-about-block .section-header {
    margin-bottom: 28px;
  }
}

.services-about-block .section-header h2 {
  font-family: var(--BebasNeue-family);
  font-weight: 400;
  color: var(--black);
}

@media (min-width: 1200px) {
  .services-about-block .section-header h2 {
    font-size: 72px;
  }
}

.services-about-block .section-header h2 br {
  display: none;
}

@media (min-width: 768px) {
  .services-about-block .section-header h2 br {
    display: block;
  }
}

.services-about-block .security-steps {
  padding: 0px;
}

.services-about-block .security-steps .steps-main-title {
  font-size: 28px;
  margin-top: 24px;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .services-about-block .security-steps .steps-main-title {
    font-size: 24px;
    margin: 20px 0;
  }
}

.services-about-block .security-steps .steps-list {
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .services-about-block .security-steps .steps-list {
    margin-bottom: 24px;
  }
}

.services-about-block .security-steps .step-item {
  gap: 10px;
  font-size: 15px;
  line-height: 1;
}

@media (min-width: 1200px) {
  .services-about-block .security-steps .step-item {
    font-size: 18px;
    line-height: 35px;
  }
}

.services-about-block .pattern-design {
  max-width: 738px;
}

.services-about-block .pattern-design.right {
  left: auto;
  right: 0px;
}

.escort-services-block {
  background: #172B36;
  padding: 40px 0 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .escort-services-block {
    padding: 50px 0;
  }
}

@media (min-width: 1024px) {
  .escort-services-block {
    padding: 75px 0 128px;
  }
}

.escort-services-block .container {
  max-width: 1737px;
}

.escort-services-block .box-holder {
  display: flex;
  width: 100%;
  padding: 40px 0 0;
  flex-direction: column;
  position: relative;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .escort-services-block .box-holder {
    padding: 50px 0 0;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .escort-services-block .box-holder {
    padding: 116px 0 0;
  }
}

.escort-services-block .box-holder .left-column {
  width: 100%;
}

@media (min-width: 768px) {
  .escort-services-block .box-holder .left-column {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .escort-services-block .box-holder .left-column {
    width: 33.333%;
  }
}

.escort-services-block .box-holder .middle-column {
  width: 100%;
}

@media (min-width: 768px) {
  .escort-services-block .box-holder .middle-column {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .escort-services-block .box-holder .middle-column {
    width: 33.333%;
  }
}

.escort-services-block .box-holder .right-column {
  width: 100%;
}

@media (min-width: 768px) {
  .escort-services-block .box-holder .right-column {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .escort-services-block .box-holder .right-column {
    width: 33.333%;
  }
}

.escort-services-block .section-header {
  text-align: center;
}

.escort-services-block .section-header p,
.escort-services-block .section-header h2 {
  color: var(--white);
}

.escort-services-block .section-header h2 {
  margin: 0 0 29px;
}

@media (min-width: 1200px) {
  .escort-services-block .section-header h2 {
    font-size: 72px;
  }
}

.escort-services-block .image-holder {
  position: relative;
  min-height: 317px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

@media (max-width: 1699px) {
  .escort-services-block .image-holder {
    align-items: center;
    justify-content: center;
  }
}

.escort-services-block .image-holder.alt::after {
  left: 47.5%;
}

.escort-services-block .image-holder.alt img {
  padding-top: 0px;
  margin-left: 0px;
}

@media (min-width: 1670px) {
  .escort-services-block .image-holder.alt img {
    padding-top: 27px;
    margin-right: 65px;
  }
}

.escort-services-block .image-holder.second img {
  padding-top: 0px;
  margin-right: 0px;
}

@media (min-width: 1024px) {
  .escort-services-block .image-holder.second img {
    padding-top: 15px;
    margin-right: -37px;
  }
}

.escort-services-block .image-holder.third img {
  margin-right: 0px;
}

@media (min-width: 1820px) {
  .escort-services-block .image-holder.third img {
    margin-right: -94px;
  }
}

@media (min-width: 1024px) {
  .escort-services-block .image-holder.third img {
    margin-right: -37px;
  }
}

.escort-services-block .image-holder::after {
  content: "";
  position: absolute;
  background: var(--primary);
  z-index: 1;
  top: -10px;
  left: 52%;
  width: 88%;
  height: 88%;
  transform: translateX(-50%);
}

@media (min-width: 1670px) {
  .escort-services-block .image-holder::after {
    width: 475px;
    height: 288px;
  }
}

@media (min-width: 1024px) {
  .escort-services-block .image-holder::after {
    transform: skewX(10deg) translateX(-50%);
  }
}

.escort-services-block .image-holder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 88%;
  height: 88%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
}

@media (min-width: 1670px) {
  .escort-services-block .image-holder::before {
    width: 476px;
    height: 288px;
  }
}

@media (min-width: 1024px) {
  .escort-services-block .image-holder::before {
    transform: skewX(10deg) translateX(-50%);
  }
}

.escort-services-block .image-holder img {
  position: relative;
  z-index: 3;
  width: 100%;
  display: block;
}

@media (max-width: 1699px) {
  .escort-services-block .image-holder img {
    width: 88.8%;
  }
}

.escort-services-block .detail-box {
  margin-bottom: 0px;
}

@media (max-width: 1023px) {
  .escort-services-block .detail-box {
    margin-bottom: 40px;
  }
}

.escort-services-block .detail-box .spec-title {
  font-family: var(--FiraSans-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin: 0 0 12px;
}

@media (min-width: 768px) {
  .escort-services-block .detail-box .spec-title {
    font-size: 20px;
    margin-left: 57px;
  }
}

@media (min-width: 1200px) {
  .escort-services-block .detail-box .spec-title {
    font-size: 24px;
  }
}

@media (min-width: 1670px) {
  .escort-services-block .detail-box .spec-title {
    margin-left: 69px;
  }
}

.escort-services-block .detail-box .spec-lists {
  margin: 0;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .escort-services-block .detail-box .spec-lists {
    padding-left: 81px;
  }
}

@media (min-width: 1670px) {
  .escort-services-block .detail-box .spec-lists {
    padding-left: 92px;
  }
}

.escort-services-block .detail-box .spec-lists .spec-item {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
}

@media (min-width: 1200px) {
  .escort-services-block .detail-box .spec-lists .spec-item {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 1200px) {
  .services-btn-block {
    padding: 272px 0 48px;
  }
}

.services-btn-block .box-holder {
  justify-content: flex-start;
}

@media (min-width: 1200px) {
  .services-btn-block .box-holder {
    gap: 67px;
  }
}

@media (min-width: 1200px) {
  .services-btn-block .box-holder .col-left {
    width: 47.54%;
  }
}

.services-btn-block .box-holder .col-left .textbox {
  max-width: none;
}

@media (min-width: 1200px) {
  .services-btn-block .box-holder .col-left .textbox {
    max-width: 700px;
  }
}

@media (min-width: 1200px) {
  .services-btn-block .box-holder .col-left .top-space {
    margin-top: 31px;
    padding-left: 41px;
    padding-right: 41px;
  }
}

.services-btn-block .box-holder .col-right {
  margin: 0;
  width: 39.57%;
}

@media (max-width: 1200px) {
  .services-btn-block .box-holder .col-right {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .services-btn-block .box-holder .col-right {
    width: 90%;
  }
}

.services-btn-block .video-box {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: 33px 0 0;
  position: relative;
}

@media (max-width: 767px) {
  .services-btn-block .video-box {
    margin: 20px 0 0;
  }
}

.services-btn-block .video-box::before {
  content: "";
  position: absolute;
  background: var(--primary);
  z-index: 1;
  top: -13px;
  left: -12px;
  width: 92.78%;
  height: 92.4%;
  border-radius: 4px;
}

.services-btn-block .video-box::after {
  display: block;
  content: "";
  padding-top: 96.5%;
}

.services-btn-block .video-box img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 3;
}

.services-btn-block .video-box .button-play {
  display: block;
}

.services-btn-block .video-box.playing .video-thumb,
.services-btn-block .video-box.playing .button-play {
  display: none;
}

.services-btn-block .video-box .video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  object-fit: cover;
  object-position: center;
}

.services-btn-block .video-box .video-iframe::after {
  display: block;
  content: "";
  padding-top: 96.5%;
}

.services-btn-block .video-box .button-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 100%;
  border: 0;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  box-shadow: 0 0 0 10px rgba(255, 203, 12, 0.2);
}

@media (min-width: 1200px) {
  .services-btn-block .video-box .button-play {
    width: 52px;
    height: 52px;
  }
}

.services-btn-block .video-box .button-play img {
  width: 12px;
  height: 14px;
}

@media (min-width: 1200px) {
  .services-btn-block .video-box .button-play img {
    width: 14px;
    height: 16px;
  }
}

.services-btn-block .video-box .button-play:hover {
  background: var(--primary);
}

@media (min-width: 1024px) {
  .adjust-block-space {
    padding: 68px 0 104px;
  }
}

@media (min-width: 1024px) {
  .security-system-about-block {
    padding: 166px 0 182px;
  }
}

@media (min-width: 1200px) {
  .security-system-about-block .top-space {
    margin-top: 14px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1024px) {
  .security-system-about-block .box-holder {
    gap: 171px;
  }
}

@media (min-width: 1024px) {
  .security-system-about-block .box-holder .col-left {
    width: 41%;
  }
}

.security-system-about-block .box-holder .col-right {
  margin-right: 0;
}

@media (min-width: 1024px) {
  .security-system-about-block .box-holder .col-right {
    width: 39.64%;
  }
}

.security-system-about-block .box-holder .col-right .image-holder {
  margin-top: 13px;
}

@media (min-width: 1024px) {
  .security-system-test-block {
    padding: 115px 0 5px;
  }
}

@media (min-width: 1024px) {
  .security-system-test-block .box-holder {
    gap: 210px;
  }
}

@media (min-width: 1024px) {
  .security-system-test-block .box-holder .col-left {
    width: 42%;
  }
}

.security-system-test-block .box-holder .col-right {
  margin-top: 20px;
}

@media (min-width: 767px) {
  .security-system-test-block .box-holder .col-right {
    margin-top: 103px;
  }
}

@media (min-width: 1024px) {
  .security-system-test-block .box-holder .col-right {
    width: 36%;
  }
}

@media (min-width: 1200px) {
  .security-system-test-block .security-steps {
    margin-top: 23px;
  }
}

.security-system-test-block .security-steps .steps-list {
  width: 100%;
  flex-flow: wrap;
}

.security-system-test-block .security-steps .step-item {
  width: 47%;
}

@media (min-width: 1200px) {
  .security-system-test-block .security-steps .step-item {
    font-size: 16px;
    line-height: 35px;
  }
}

@media (min-width: 1024px) {
  .security-system-adjust-space {
    padding: 68px 0 130px;
  }
}

.equipments-details-slider-block {
  background: #172B36;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .equipments-details-slider-block {
    padding: 50px 0;
  }
}

@media (min-width: 1024px) {
  .equipments-details-slider-block {
    padding: 76px 0 74px;
  }
}

.equipments-details-slider-block .section-header h2 {
  font-size: 72px;
  line-height: 85px;
  color: var(--white);
}

.equipments-details-slider-block .container {
  max-width: 1510px;
}

.equipments-details-slider-block .security-slider-wrapper {
  position: relative;
  padding-top: 46px;
}

@media (min-width: 1024px) {
  .equipments-details-slider-block .security-slider {
    margin: 0 -11px;
  }
}

.equipments-details-slider-block .slick-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  will-change: transform;
}

.equipments-details-slider-block .slick-slide {
  float: none !important;
  padding: 0 11px;
  display: flex !important;
  height: auto !important;
}

.equipments-details-slider-block .slick-list {
  overflow: hidden;
}

.equipments-details-slider-block .eq-card {
  outline: none;
  height: 402px;
  display: flex;
}

.equipments-details-slider-block .eq-card-inner {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  align-items: center;
  padding: 16px;
  gap: 24px;
  border-radius: 4px;
  width: 100%;
}

@media (max-width: 767px) {
  .equipments-details-slider-block .eq-card-inner {
    gap: 16px;
  }
}

.equipments-details-slider-block .eq-card-inner:hover {
  transform: translateY(-4px);
}

.equipments-details-slider-block .eq-card-img {
  max-width: none;
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .equipments-details-slider-block .eq-card-img {
    max-width: 319px;
  }
}

.equipments-details-slider-block .eq-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.equipments-details-slider-block .eq-card-title {
  color: var(--black);
  font-family: var(--FiraSans-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 0;
  margin: 0 0 9px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.equipments-details-slider-block .eq-card-desc {
  font-family: var(--FiraSans-family);
  color: var(--black);
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 5px;
  max-width: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 576px) {
  .equipments-details-slider-block .eq-card-desc {
    max-width: 315px;
  }
}

.equipments-details-slider-block .eq-card-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--FiraSans-family);
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  line-height: 35px;
  position: relative;
}

.equipments-details-slider-block .eq-card-link::after {
  content: "";
  display: inline-block;
  background-image: url("../images/arrow.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10px;
  height: 10px;
  margin-left: 9px;
}

.equipments-details-slider-block .eq-card-link:hover {
  gap: 10px;
}

.equipments-details-slider-block .slider-nav {
  position: relative;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 0 0;
}

@media (min-width: 768px) {
  .equipments-details-slider-block .slider-nav {
    padding: 50px 0;
  }
}

@media (min-width: 1024px) {
  .equipments-details-slider-block .slider-nav {
    padding: 55px 0;
  }
}

.equipments-details-slider-block .slider-nav .slick-btn {
  background: #2B4959;
  color: #EFEAD4;
  font-family: var(--FiraSans-family);
  border: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 80px;
  height: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .equipments-details-slider-block .slider-nav .slick-btn {
    width: 112px;
    height: 48px;
  }
}

.equipments-details-slider-block .slider-nav .slick-btn.slider-previous-btn::before {
  content: "";
  display: inline-block;
  margin-left: 9px;
  width: 10px;
  height: 10px;
  background-color: #EFEAD4;
  -webkit-mask-image: url("../images/arrow.webp");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url("../images/arrow.webp");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  transform: scaleX(-1);
}

.equipments-details-slider-block .slider-nav .slick-btn.slider-next-btn::after {
  content: "";
  display: inline-block;
  margin-left: 9px;
  width: 10px;
  height: 10px;
  background-color: #EFEAD4;
  -webkit-mask-image: url("../images/arrow.webp");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url("../images/arrow.webp");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

.equipments-details-slider-block .slider-nav .slick-prev,
.equipments-details-slider-block .slider-nav .slick-next {
  display: none !important;
}

.equipments-details-slider-block .slider-nav .slick-dots {
  display: none !important;
}