/*
===============================================
           CSS Table of Content
===============================================
1)  reset css
2)  global css
3)  spacing css
4)  extend css
5)  list-style css
6)  animation css
7)  typography css
8)  preloader css
9)  buttons css
10) badge css
11) table css
12) form css
13) card css
14) modal css
15) accordion css
16) nav-tabs css
17) pagination css
18) header css
19) footer css
20) inner-banner css
21) banner css
22) service css
23) service-details css
24) ticker css
25) about css
26) project css
27) project-details css
28) message css
29) brand css
30) newsletter css
31) testimonial css
32) team css
33) team-details css
34) faq css
35) blog css
36) blog-details css
37) pricing css
38) overview css
39) gallery css
40) video css
41) choose css
42) contact css
=========================================== */
/* === global css start === */
/* === reset css start === */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400..900&family=Roboto:wght@400;500;600;700&family=Prata&display=swap");

:root {
  --primary: #fa7d09;
  --secondary: #ff4301;
  --dark-700: #171931;
  --dark-800: #4a3f35;
  --dark-900: #0b0d26;
  --light-100: #fff8f3;
  --light-200: #d0d0d0;
  --blue: #54acd6;
  --border-color: #d0d0d0;
  --display-font: "Playfair Display", serif;
  --body-font: "Roboto", sans-serif;
}

*:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-800);
  font-size: 1rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  line-height: 1.7;
  background-color: #fff;
  overflow-x: hidden;
}

main {
  display: block;
}

footer {
  margin-top: auto;
}

img {
  max-width: 100%;
  height: auto;
  user-select: none;
}

select {
  cursor: pointer;
}

dt {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
  opacity: 0.15;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
}

button:focus {
  outline: none;
}

span {
  display: inline-block;
}

p,
li,
span {
  margin: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  color: inherit;
}

a,
button {
  cursor: revert;
}

a:hover {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

a:hover {
  color: var(--primary);
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type="number"] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* === reset css end === */
.text-primary {
  color: var(--primary) !important;
}

.text-dark {
  color: var(--dark-900) !important;
}

.text-h {
  color: var(--dark-900) !important;
}

.text-p {
  color: var(--dark-800) !important;
}

.text-light {
  color: var(--light-200) !important;
}

/* background color css start */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-dark {
  background-color: var(--dark-900) !important;
}

.bg-light {
  background-color: var(--light-100) !important;
}

/* background color css end */
.section-top {
  padding-bottom: 3.75rem;
}

@media (max-width: 1399px) {
  .section-top {
    padding-bottom: 3.125rem;
  }
}

@media (max-width: 991px) {
  .section-top {
    padding-bottom: 2.5rem;
  }
}

.section-top-title-two {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.section-title {
  font-family: var(--display-font);
  font-size: 2.625rem;
  font-weight: 700;
}

@media (max-width: 1399px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.625rem;
  }
}

.rounded-sm {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* === global css end === */
/* === spacing css start === */
.mt-30 {
  margin-top: 1.875rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mt-60 {
  margin-top: 3.75rem;
}

.pt-120 {
  padding-top: 7.5rem;
}

@media (max-width: 1399px) {
  .pt-120 {
    padding-top: 6.25rem;
  }
}

@media (max-width: 991px) {
  .pt-120 {
    padding-top: 5rem;
  }
}

@media (max-width: 767px) {
  .pt-120 {
    padding-top: 4.375rem;
  }
}

@media (max-width: 575px) {
  .pt-120 {
    padding-top: 3.125rem;
  }
}

.pb-120 {
  padding-bottom: 7.5rem;
}

@media (max-width: 1399px) {
  .pb-120 {
    padding-bottom: 6.25rem;
  }
}

@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 5rem;
  }
}

@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 4.375rem;
  }
}

@media (max-width: 575px) {
  .pb-120 {
    padding-bottom: 3.125rem;
  }
}

.pb-100 {
  padding-bottom: 6.25rem;
}

@media (max-width: 1399px) {
  .pb-100 {
    padding-bottom: 5rem;
  }
}

@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 4.375rem;
  }
}

@media (max-width: 767px) {
  .pb-100 {
    padding-bottom: 3.75rem;
  }
}

@media (max-width: 575px) {
  .pb-100 {
    padding-bottom: 3.125rem;
  }
}
/* === spacing css end === */
/* === extend css start === */
.custom-checkbox label::before,
body {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.card {
  background-color: #fff;
}

[data-label]::before {
  color: #082032;
}

.btn-close {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btn-close {
  justify-content: center;
}

.btn-close {
  align-items: center;
}

.card {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

/* === extend css end === */
/* === list-style css start === */
.check-list li + li {
  margin-top: 1.25rem;
}

.check-list li {
  position: relative;
  padding-left: 1.875rem;
}

.check-list li::before {
  position: absolute;
  top: 0.3125rem;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f058";
  font-size: 1rem;
  color: var(--primary);
  line-height: 1;
}

.arrow-list li + li {
  margin-top: 1.25rem;
}

.arrow-list li {
  position: relative;
  padding-left: 1.875rem;
}

.arrow-list li::before {
  position: absolute;
  top: 0.3125rem;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f101";
  font-size: 1rem;
  color: var(--primary);
  line-height: 1;
}

.line-dot-list {
  position: relative;
  margin-top: -0.625rem;
}

.line-dot-list li {
  position: relative;
  padding-left: 1.875rem;
  margin-block: 0.625rem;
}

.line-dot-list li:last-child::after {
  display: none;
}

.line-dot-list li::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.line-dot-list li::after {
  position: absolute;
  content: "";
  top: 11px;
  left: 3px;
  width: 1px;
  height: 145%;
  background-color: var(--border-color);
  z-index: -1;
}

/* === list-style css end === */
/* === animation css start === */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/* === animation css end === */
/* === typography css start === */
h1 {
  font-size: 2.625rem;
  font-family: var(--display-font);
}

@media (max-width: 1399px) {
  h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 1.75rem;
  }
}

h2 {
  font-size: 1.875rem;
}

@media (max-width: 991px) {
  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h5 {
  font-size: 0.875rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--body-font);
  color: var(--dark-900);
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  font-family: var(--body-font);
  color: var(--dark-900);
  font-weight: 500;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.4;
  word-break: break-word;
}

p,
li,
span {
  margin: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  font-family: var(--body-font);
  font-weight: 400;
}

a:hover {
  text-decoration: none;
}

strong {
  font-weight: 500;
}

.fs-18px {
  font-size: 1.125rem !important;
}

.fs-16px {
  font-size: 1rem !important;
}

.fs-15px {
  font-size: 0.9375rem !important;
}

.fs-14px {
  font-size: 0.875rem !important;
}

.fs-12px {
  font-size: 0.75rem !important;
}

.h-font {
  font-family: var(--display-font) !important;
}

.p-font {
  font-family: var(--body-font) !important;
}

.max-18ch {
  max-width: 18ch;
}

.max-20ch {
  max-width: 20ch;
}

.max-55ch {
  max-width: 55ch;
}

.max-65ch {
  max-width: 65ch;
}

/* === typography css end === */
/* === preloader css start === */
body.loaded .preloader-holder {
  opacity: 0;
  visibility: hidden;
}

.preloader-holder {
  position: fixed;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.preloader {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation: rotatePreloader 2s infinite ease-in;
}

.preloader div {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.preloader div:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  width: 10%;
  height: 10%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: var(--primary);
}

.preloader div:nth-child(1) {
  transform: rotateZ(0deg);
  animation: rotateCircle1 2s infinite linear;
  z-index: 9;
}

.preloader div:nth-child(2) {
  transform: rotateZ(36deg);
  animation: rotateCircle2 2s infinite linear;
  z-index: 8;
}

.preloader div:nth-child(3) {
  transform: rotateZ(72deg);
  animation: rotateCircle3 2s infinite linear;
  z-index: 7;
}

.preloader div:nth-child(4) {
  transform: rotateZ(108deg);
  animation: rotateCircle4 2s infinite linear;
  z-index: 6;
}

.preloader div:nth-child(5) {
  transform: rotateZ(144deg);
  animation: rotateCircle5 2s infinite linear;
  z-index: 5;
}

.preloader div:nth-child(6) {
  transform: rotateZ(180deg);
  animation: rotateCircle6 2s infinite linear;
  z-index: 4;
}

.preloader div:nth-child(7) {
  transform: rotateZ(216deg);
  animation: rotateCircle7 2s infinite linear;
  z-index: 3;
}

.preloader div:nth-child(8) {
  transform: rotateZ(252deg);
  animation: rotateCircle8 2s infinite linear;
  z-index: 2;
}

.preloader div:nth-child(9) {
  transform: rotateZ(288deg);
  animation: rotateCircle9 2s infinite linear;
  z-index: 1;
}

.preloader div:nth-child(10) {
  transform: rotateZ(324deg);
  animation: rotateCircle10 2s infinite linear;
  z-index: 0;
}

@keyframes rotatePreloader {
  0% {
    transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
  }

  100% {
    transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
  }
}

@keyframes rotateCircle1 {
  0% {
    opacity: 0;
  }

  0% {
    opacity: 1;
    transform: rotateZ(36deg);
  }

  7% {
    transform: rotateZ(0deg);
  }

  57% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle2 {
  5% {
    opacity: 0;
  }

  5.0001% {
    opacity: 1;
    transform: rotateZ(0deg);
  }

  12% {
    transform: rotateZ(-36deg);
  }

  62% {
    transform: rotateZ(-36deg);
  }

  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle3 {
  10% {
    opacity: 0;
  }

  10.0002% {
    opacity: 1;
    transform: rotateZ(-36deg);
  }

  17% {
    transform: rotateZ(-72deg);
  }

  67% {
    transform: rotateZ(-72deg);
  }

  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle4 {
  15% {
    opacity: 0;
  }

  15.0003% {
    opacity: 1;
    transform: rotateZ(-72deg);
  }

  22% {
    transform: rotateZ(-108deg);
  }

  72% {
    transform: rotateZ(-108deg);
  }

  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle5 {
  20% {
    opacity: 0;
  }

  20.0004% {
    opacity: 1;
    transform: rotateZ(-108deg);
  }

  27% {
    transform: rotateZ(-144deg);
  }

  77% {
    transform: rotateZ(-144deg);
  }

  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle6 {
  25% {
    opacity: 0;
  }

  25.0005% {
    opacity: 1;
    transform: rotateZ(-144deg);
  }

  32% {
    transform: rotateZ(-180deg);
  }

  82% {
    transform: rotateZ(-180deg);
  }

  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle7 {
  30% {
    opacity: 0;
  }

  30.0006% {
    opacity: 1;
    transform: rotateZ(-180deg);
  }

  37% {
    transform: rotateZ(-216deg);
  }

  87% {
    transform: rotateZ(-216deg);
  }

  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle8 {
  35% {
    opacity: 0;
  }

  35.0007% {
    opacity: 1;
    transform: rotateZ(-216deg);
  }

  42% {
    transform: rotateZ(-252deg);
  }

  92% {
    transform: rotateZ(-252deg);
  }

  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle9 {
  40% {
    opacity: 0;
  }

  40.0008% {
    opacity: 1;
    transform: rotateZ(-252deg);
  }

  47% {
    transform: rotateZ(-288deg);
  }

  97% {
    transform: rotateZ(-288deg);
  }

  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle10 {
  45% {
    opacity: 0;
  }

  45.0009% {
    opacity: 1;
    transform: rotateZ(-288deg);
  }

  52% {
    transform: rotateZ(-324deg);
  }

  102% {
    transform: rotateZ(-324deg);
  }

  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}




.scroll-to-top {
  position: fixed;
  bottom: 30px;
  inset-inline-end: 30px;
  z-index: 9;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  display: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  background: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* === preloader css end === */
/* === buttons css start === */
button:focus {
  outline: none;
}

.btn {
  padding: 1.0625rem 1.875rem;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .btn {
    padding: 0.9375rem 1.875rem;
  }
}

@media (max-width: 1199px) {
  .btn {
    padding: 0.75rem 1.875rem;
  }
}

@media (max-width: 575px) {
  .btn {
    padding: 0.625rem 1.5625rem;
  }
}

.btn:focus {
  box-shadow: none;
  outline: none;
}

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

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--primary);
  background-color: var(--primary);
}

.btn-outline-primary {
  color: var(--dark-900);
  border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-secondary-primary {
  color: var(--dark-900);
  border-color: var(--border-color);
}

.btn-outline-secondary-primary:hover,
.btn-outline-secondary-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

[class*="btn"].btn-md {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}

[class*="btn"].btn-sm {
  padding: 0.375rem 0.625rem;
  font-size: 0.875rem;
}

/* === buttons css end === */
/* === badge css start === */
.badge-primary {
  background-color: rgba(250, 125, 9, 0.15);
  border: 1px solid #fa7d09;
  color: #fa7d09;
}

.badge-secondary {
  background-color: rgba(134, 142, 150, 0.15);
  border: 1px solid #868e96;
  color: #868e96;
}

.badge-success {
  background-color: rgba(40, 199, 111, 0.15);
  border: 1px solid #28c76f;
  color: #28c76f;
}

.badge-danger {
  background-color: rgba(234, 84, 85, 0.15);
  border: 1px solid #ea5455;
  color: #ea5455;
}

.badge-warning {
  background-color: rgba(255, 159, 67, 0.15);
  border: 1px solid #ff9f43;
  color: #ff9f43;
}

.badge-info {
  background-color: rgba(30, 159, 242, 0.15);
  border: 1px solid #1e9ff2;
  color: #1e9ff2;
}

.badge-light {
  background-color: rgba(188, 199, 218, 0.15);
  border: 1px solid #bcc7da;
  color: #bcc7da;
}

.badge-dark {
  background-color: rgba(8, 32, 50, 0.15);
  border: 1px solid #082032;
  color: #082032;
}

.badge-base {
  background-color: rgba(250, 125, 9, 0.15);
  border: 1px solid #fa7d09;
  color: #fa7d09;
}

/* === badge css end === */
/* === table css start === */
.table thead {
  background-color: #f6f9fc;
}

.table thead th {
  border-top: 1px solid #e9ecef !important;
  border-bottom: 1px solid #e9ecef !important;
  padding: 0.75rem 1.25rem;
  color: #7991ad;
  font-size: 0.875rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
}

.table thead th:first-child {
  text-align: left;
}

.table thead th:last-child {
  text-align: right;
}

.table tbody td {
  border-top: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  color: #666666;
  text-align: center;
  vertical-align: middle;
}

.table tbody td:first-child {
  text-align: left;
}

.table tbody td:last-child {
  text-align: right;
}

.table tbody tr:last-child td {
  border-bottom: none;
}

[data-label] {
  position: relative;
}

[data-label]::before {
  position: absolute;
  content: attr(data-label);
  font-weight: 700;
  top: 0;
  left: 0;
  padding: 0.8125rem 0.9375rem;
  display: none;
  font-size: 0.875rem;
}

@media (max-width: 991px) {
  .table-responsive--md thead {
    display: none;
  }

  .table-responsive--md tbody tr:nth-child(odd) {
    background-color: whitesmoke;
  }

  .table-responsive--md tbody tr:last-child td {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .table-responsive--md tbody tr td {
    padding-right: 15px;
  }

  .table-responsive--md tbody tr td:last-child {
    padding-right: 15px;
  }

  .table-responsive--md tr th,
  .table-responsive--md tr td {
    display: block;
    padding-left: 45% !important;
    text-align: right !important;
  }

  .table-responsive--md tr th:first-child,
  .table-responsive--md tr td:first-child {
    border-top: none !important;
  }

  .table-responsive--md [data-label]::before {
    display: block;
  }
}

@media (max-width: 767px) {
  .table-responsive--sm thead {
    display: none;
  }

  .table-responsive--sm tbody tr:nth-child(odd) {
    background-color: f7f7f7;
  }

  .table-responsive--sm tbody tr td {
    padding-right: 15px;
  }

  .table-responsive--sm tbody tr td:last-child {
    padding-right: 15px;
  }

  .table-responsive--sm tr th,
  .table-responsive--sm tr td {
    display: block;
    padding-left: 45% !important;
    text-align: right !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .table-responsive--sm tr th:first-child,
  .table-responsive--sm tr td:first-child {
    border-top: none !important;
  }

  .table-responsive--sm [data-label]::before {
    display: block;
  }
}
/* === table css end === */
/* === form css start === */
.form-control {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
  width: 100%;
  background-color: transparent;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  height: 3.625rem;
}

.form-control::-webkit-input-placeholder {
  color: var(--dark-800);
}

.form-control::-moz-placeholder {
  color: var(--dark-800);
}

.form-control:-ms-input-placeholder {
  color: var(--dark-800);
}

.form-control:-moz-placeholder {
  color: var(--dark-800);
}

.form-control:focus {
  background-color: #fff;
  border-color: var(--primary) !important;
  box-shadow: 0 0 5px rgba(var(--primary), 0.35);
  color: #000;
}

.form-control[readonly] {
  background-color: #fafaf7;
}

.form-control.form-control-md {
  height: 45px;
}

.form-control.form-control-sm {
  height: 35px;
}

.form-select {
  padding: 1rem 1.25rem;
  width: 100%;
  border: 1px solid form;
  cursor: pointer;
  background-color: transparent;
  height: 3.625rem;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  color: var(--dark-800);
}

.form-select:focus {
  background-color: #fff;
  border-color: var(--primary);
  box-shadow: none;
}

.form-select.select-sm {
  height: 2.1875rem;
  font-size: 0.875rem;
  padding: 0.3125rem;
}

textarea {
  min-height: 8.125rem !important;
  resize: none;
  width: 100%;
}

label {
  color: #000;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.input-group > .form-control,
.input-group > .select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group select {
  background-color: transparent;
  border: none;
}

.custom-radio {
  position: relative;
  padding-left: 0;
}

.custom-radio input[type="radio"] {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  cursor: pointer;
}

.custom-radio input[type="radio"]:checked ~ label::before {
  border-width: 2px;
  border-color: #fa7d09;
}

.custom-radio input[type="radio"]:checked ~ label::after {
  opacity: 1;
}

.custom-radio label {
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  font-weight: 400;
}

.custom-radio label::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #888888;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-radio label::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 4px;
  width: 7px;
  height: 7px;
  background-color: #fa7d09;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-checkbox {
  padding-left: 1.5625rem;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox input:checked ~ label::before {
  content: "\f14a";
  color: #fa7d09;
}

.custom-checkbox label {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
}

.custom-checkbox label::before {
  position: absolute;
  content: "\f04d";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 3px;
  left: -1.5625rem;
  font-size: 1.25rem;
  line-height: 1;
}

/* === form css end === */
/* === card css start === */
.card {
  box-shadow: 0 3px 15px rgba(136, 152, 170, 0.1490196078);
  overflow: hidden;
}

.card .card-header {
  background-color: #fff;
  padding: 0.9375rem 1.25rem;
  border-color: #dadce0;
}

.card .card-body {
  padding: 1.25rem;
}

@media (max-width: 575px) {
  .card .card-body {
    padding: 0.9375rem;
  }
}
/* === card css end === */
/* === modal css start === */
.modal {
  z-index: 99;
}

.modal-open {
  overflow: hidden;
  overflow-y: auto;
  padding-right: 0 !important;
}

.btn-close {
  width: 18px;
  height: 18px;
  background-color: #ea5455;
  opacity: 1;
}

.btn-close:hover {
  opacity: 1;
}

.btn-close:focus {
  box-shadow: none;
}

.modal.fade .modal-dialog {
  transform: scale(0.85, 0.85) translate(0);
}

.modal.show .modal-dialog {
  transform: scale(1, 1) translate(0);
}

/* === modal css end === */
/* === accordion css start === */
.accordion-item {
  box-shadow: 0 4px 20px -1px rgba(19, 16, 34, 0.05);
  border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  -ms-border-radius: 30px !important;
  -o-border-radius: 30px !important;
  border: none;
  --bs-accordion-btn-icon-transform: rotate(90deg);
}

.accordion-item + .accordion-item {
  margin-top: 1.875rem;
}

.accordion-item .accordion-header .accordion-button {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  font-size: 1.25rem;
  padding: 0.9375rem 1.875rem;
}

@media (max-width: 1199px) {
  .accordion-item .accordion-header .accordion-button {
    font-size: 1.125rem;
  }
}

@media (max-width: 575px) {
  .accordion-item .accordion-header .accordion-button {
    font-size: 1rem;
  }
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: #fff;
  border-radius: 30px 30px 0 0;
  -webkit-border-radius: 30px 30px 0 0;
  -moz-border-radius: 30px 30px 0 0;
  -ms-border-radius: 30px 30px 0 0;
  -o-border-radius: 30px 30px 0 0;
}

.accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.accordion-item .accordion-header .accordion-button::after {
  background-image: none;
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.accordion-item .accordion-body {
  padding: 1.25rem 1.875rem;
}

.accordion.style-pill .accordion-item {
  box-shadow: none;
  background-color: transparent;
  overflow: hidden;
}

.accordion.style-pill .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 0.625rem 0.625rem 0.625rem 1.875rem;
}

@media (max-width: 1399px) {
  .accordion.style-pill .accordion-item .accordion-header .accordion-button {
    font-size: 1.125rem;
  }
}

@media (max-width: 575px) {
  .accordion.style-pill .accordion-item .accordion-header .accordion-button {
    font-size: 1rem;
    padding-inline-start: 1.25rem;
  }
}

.accordion.style-pill
  .accordion-item
  .accordion-header
  .accordion-button::after {
  content: "+";
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
}

@media (max-width: 575px) {
  .accordion.style-pill
    .accordion-item
    .accordion-header
    .accordion-button::after {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1rem;
  }
}

.accordion.style-pill
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: var(--dark-900);
  background-color: #fff;
  border-radius: 30px 30px 0 0;
  -webkit-border-radius: 30px 30px 0 0;
  -moz-border-radius: 30px 30px 0 0;
  -ms-border-radius: 30px 30px 0 0;
  -o-border-radius: 30px 30px 0 0;
  border-color: transparent;
}

.accordion.style-pill
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: "\f068";
  transform: rotate(0deg);
  background-color: var(--primary);
  color: #fff;
}

.accordion.style-pill .accordion-item .accordion-collapse {
  background-color: #fff;
}

.accordion.style-pill .accordion-item .accordion-body {
  padding-top: 0.625rem;
}

/* === accordion css end === */
/* === nav-tabs css start === */
.basic-tabs {
  border-bottom: none;
}

.basic-tabs .nav-item .nav-link {
  border: none;
  padding: 0.625rem 1.25rem;
  font-weight: 800;
  color: var(--dark-900);
  font-size: 1.125rem;
}

.basic-tabs .nav-item .nav-link.active {
  color: var(--primary);
}

/* === nav-tabs css end === */
/* === pagination css start === */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  margin-top: 5rem;
}

@media (max-width: 991px) {
  .pagination {
    margin-top: 3.125rem;
  }
}

.pagination li {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: var(--dark-900);
  font-weight: 700;
  font-size: 1.875rem;
}

@media (max-width: 991px) {
  .pagination li {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

.pagination li.active {
  border-color: var(--primary);
}

.pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

/* === pagination css end === */
/* === header css start === */
.header-one,
.header-two,
.header-three {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.site-header.site-header-fixed {
  position: fixed;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.site-header.site-header-fixed .header-top {
  display: none;
}

.header-one {
  display: flex;
  flex-wrap: wrap;
}

.header-one .header-right {
  flex-grow: 1;
}

.header-one .header-top {
  padding-inline: 3.75rem;
}

@media (max-width: 1399px) {
  .header-one .header-top {
    padding-inline: 1.875rem;
  }
}

.header-one .header-bottom {
  padding: 1.25rem 3.75rem;
}

@media (max-width: 1399px) {
  .header-one .header-bottom {
    padding: 0.625rem 1.875rem;
  }
}

@media (max-width: 575px) {
  .header-one .header-bottom {
    padding: 0.3125rem 0.9375rem;
  }
}

.header-two .header-call-btn {
  margin-inline-start: 6.25rem;
}

@media (max-width: 1399px) {
  .header-two .header-call-btn {
    margin-inline-start: 2.5rem;
  }
}

@media (max-width: 1199px) {
  .header-two .header-call-btn {
    padding-inline-start: 3.75rem;
  }
}

@media (max-width: 575px) {
  .header-two .header-call-btn {
    padding-inline-start: 0;
    margin-inline-start: 0.9375rem;
  }
}

@media (max-width: 1199px) {
  .header-two .header-call-btn i {
    border-color: var(--border-color) !important;
    color: var(--dark-900) !important;
    width: 3.125rem;
    height: 3.125rem;
    margin-top: -1.5625rem;
  }
}

@media (max-width: 575px) {
  .header-two .header-call-btn i {
    position: static;
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .header-two .header-call-btn span {
    color: var(--dark-900) !important;
  }
}

@media (max-width: 575px) {
  .header-two .header-call-btn span {
    display: none;
  }
}

.header-two .header-bottom {
  background-color: var(--primary);
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .header-two .header-bottom {
    background-color: #fff;
  }
}

.header-two .header-bottom::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 33vw;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, 88% 100%, 0% 100%);
}

@media (max-width: 1550px) {
  .header-two .header-bottom::before {
    width: 30vw;
  }
}

@media (max-width: 1399px) {
  .header-two .header-bottom::before {
    width: 25vw;
  }
}

.header-two .header-menu > li.has-dropmenu::after {
  color: #fff;
}

.header-two .header-menu > li > a {
  color: #fff;
}

.header-three .header-top {
  background-color: var(--primary);
}

.header-three .header-bottom {
  background-color: var(--dark-900);
}

.header-three .header-info li {
  color: #fff;
}

.header-three .header-info li i {
  color: #fff;
}

.header-three .header-social li span {
  color: #fff;
}

.header-three .header-social li a {
  color: #fff;
}

.header-three .header-social li a:hover {
  color: #fff;
}

.header-three .header-menu > li.has-dropmenu::after {
  color: #fff;
}

.header-three .header-menu > li > a {
  color: #fff;
}
.header-three .header-menu > li > a:hover {
  color: rgb(255, 170, 12);
}

.header-three .header-bottom-action {
  margin-inline-start: 3.75rem;
}

@media (max-width: 1199px) {
  .header-three .header-bottom-action {
    margin-inline-start: 2.5rem;
  }
}

@media (max-width: 767px) {
  .header-three .header-bottom-action {
    margin-inline-start: 1.25rem;
  }
}

@media (max-width: 575px) {
  .header-three .header-bottom-action .header-search-btn {
    padding-inline-end: 0;
  }
}

.header-three .header-search-btn,
.header-three .btn-outline-primary,
.header-three .mobile-menu-open-btn {
  color: #fff;
}

.bg-header-logo {
  width: 315px;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1399px) {
  .bg-header-logo {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .bg-header-logo {
    width: 200px;
  }
}

@media (max-width: 575px) {
  .bg-header-logo {
    width: 120px;
  }
}

.bg-header-logo img {
  max-width: 280px;
}

@media (max-width: 1399px) {
  .bg-header-logo img {
    max-width: 220px;
  }
}

@media (max-width: 767px) {
  .bg-header-logo img {
    max-width: 170px;
  }
}

@media (max-width: 575px) {
  .bg-header-logo img {
    max-width: 100px;
  }
}

.header-top {
  background-color: #fff;
  padding: 0.8125rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
  justify-content: space-between;
}

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

.header-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.875rem;
}

.header-info li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--dark-900);
}

.header-info li i {
  color: var(--primary);
}

.header-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9375rem;
}

.header-social li {
  font-size: 0.875rem;
  color: var(--dark-900);
}

.header-social li a:hover {
  color: var(--primary);
}

.header-bottom {
  background-color: var(--light-100);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}

@media (max-width: 1199px) {
  .header-bottom {
    padding: 0.625rem 0;
  }
}

.header-menu {
  display: flex;
  flex-wrap: wrap;
  margin: -0.625rem -1.25rem;
}

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

.header-menu li.has-dropmenu {
  position: relative;
}

.header-menu li.has-dropmenu::after {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 12px;
  right: 2px;
  font-size: 13px;
}

.header-menu li.has-dropmenu:hover .dropmenu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.header-menu li a {
  color: var(--dark-900);
  font-weight: 500;
  padding: 0.625rem 1.25rem;
}

.header-menu .dropmenu {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #fff;
  width: 275px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.header-menu .dropmenu li {
  border-bottom: 1px solid #e5e5e5;
}

.header-menu .dropmenu li a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--dark-800);
}

.header-menu .dropmenu li a:hover {
  color: var(--primary);
}

.header-bottom-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

@media (max-width: 1199px) {
  .header-bottom-action {
    gap: 0.5rem;
  }
}

@media (max-width: 575px) {
  .header-bottom-action {
    gap: 0rem;
  }
}

.header-bottom-action .btn {
  padding: 0.875rem 1.5625rem;
}

@media (max-width: 575px) {
  .header-bottom-action .btn {
    display: none;
  }
}

.header-search-btn {
  color: var(--dark-900);
  font-size: 1.125rem;
  padding: 0.9375rem;
}

.header-call-btn {
  position: relative;
  display: inline-flex;
  flex-flow: column;
  justify-content: center;
  min-height: 3.75rem;
  padding-inline-start: 4.6875rem;
}

.header-call-btn:hover i {
  background-color: var(--primary);
  color: #fff;
}

.header-call-btn i {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1.875rem;
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.header-call-btn span {
  font-size: 0.875rem;
  display: block;
}

.header-call-btn span.header-call-btn-number {
  font-size: 1.125rem;
  font-weight: 500;
}

.header-call-btn.style-white:hover i {
  background-color: #fff;
  color: var(--primary);
}

.header-call-btn.style-white i {
  border-color: #fff;
  color: #fff;
}

.header-call-btn.style-white span {
  color: #fff;
}

.mobile-menu-open-btn {
  color: var(--dark-900);
  font-weight: 500;
  padding: 0.625rem 0;
  display: none;
}

@media (max-width: 1199px) {
  .mobile-menu-open-btn {
    display: inline-flex;
    gap: 6px;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .mobile-menu-open-btn span {
    display: none;
  }
}

.header-search-main {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 0;
  background-color: var(--light-100);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 9;
}

.header-search-main.active {
  height: 100vh;
  opacity: 1;
  visibility: visible;
}

.header-search-main .header-search-close-btn {
  position: absolute;
  top: 30px;
  right: 50px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2.1875rem;
  height: 2.1875rem;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search-main .header-search-close-btn:hover {
  color: var(--primary);
}

@media (max-width: 575px) {
  .header-search-main .header-search-close-btn {
    right: 30px;
  }
}

.header-search-main .header-search-form {
  display: flex;
  width: 500px;
}

@media (max-width: 575px) {
  .header-search-main .header-search-form {
    width: 300px;
  }
}

.header-search-main .header-search-form input {
  height: 52px;
  border: 1px solid var(--border-color);
  border-right: none;
  flex-grow: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.625rem 1.25rem;
}

.header-search-main .header-search-form input:focus {
  border-color: var(--primary);
}

.header-search-main .header-search-form button {
  width: 50px;
  height: 52px;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu-sidebar {
  position: fixed;
  inset-block-start: 0;
  inset-inline-end: -350px;
  width: 320px;
  height: 100vh;
  background-color: var(--dark-900);
  display: flex;
  flex-flow: column;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 75px;
  padding-bottom: 50px;
  overflow-y: auto;
  z-index: 99999;
}

@media (max-width: 575px) {
  .mobile-menu-sidebar {
    inset-inline-end: -105%;
    width: 100%;
  }
}

.mobile-menu-sidebar.active {
  inset-inline-end: 0;
}

.mobile-menu-sidebar .logo-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  padding: 0.3125rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-sidebar .logo-area img {
  max-width: 180px;
}

.mobile-menu-sidebar .logo-area .mobile-menu-close-btn {
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.mobile-menu-sidebar .mobile-menu-bottom {
  padding: 1.25rem;
  margin-top: auto;
}

.mobile-menu-sidebar .header-info {
  display: flex;
  flex-flow: column;
  gap: 0.625rem;
  align-items: flex-start;
}

.mobile-menu-sidebar .header-info li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--light-100);
}

.mobile-menu-sidebar .header-info li i {
  color: var(--primary);
}

.mobile-menu-sidebar .header-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9375rem;
  margin-top: 0.9375rem;
}

.mobile-menu-sidebar .header-social li {
  font-size: 0.875rem;
  color: var(--light-100);
}

.mobile-menu-sidebar .header-social li a:hover {
  color: var(--primary);
}

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

.mobile-menu li a {
  padding: 0.5rem 1.25rem;
  color: var(--light-100);
  position: relative;
  display: block;
}

.mobile-menu li a .dropmenu-arrow {
  position: absolute;
  width: 40px;
  height: 100%;
  inset-inline-end: 0;
  inset-block-start: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu li .dropmenu {
  display: none;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.3125rem 0.625rem 0.3125rem 1.25rem;
}

.mobile-menu li .dropmenu li {
  border-bottom: none;
}

.mobile-menu li .dropmenu li a {
  font-size: 0.875rem;
}

/* === header css end === */
/* === footer css start === */
.footer-top {
  padding: 5rem 0;
  background-color: var(--dark-900);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 575px) {
  .footer-top {
    padding: 3.75rem 0;
  }
}

.footer-top .footer-logo {
  margin-bottom: 1.875rem;
}

.footer-top .footer-info-list {
  margin-top: 1.25rem;
}

.footer-top .footer-top-line {
  position: absolute;
  top: 0;
  left: 0;
  max-inline-size: initial;
  max-block-size: initial;
  opacity: 0.4;
  z-index: -1;
}

.footer-info-list li + li {
  margin-top: 1.25rem;
}

.footer-info-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-info-list li:hover .icon {
  background-color: var(--primary);
}

.footer-info-list li .icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-info-list li p {
  color: var(--light-200);
  width: calc(100% - 40px);
  padding-inline-start: 1.25rem;
}

.footer-info-list li p a {
  color: var(--light-200);
}

.dark-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.dark-social-list li a {
  width: 1.875rem;
  height: 1.875rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dark-social-list li a:hover {
  background-color: var(--primary);
}

.footer-contact-list li + li {
  margin-top: 1.25rem;
}

.footer-contact-list li {
  display: flex;
  flex-wrap: wrap;
}

.footer-contact-list .icon {
  width: 1.875rem;
  height: 1.875rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.footer-contact-list .caption {
  width: calc(100% - 30px);
  padding-inline-start: 0.625rem;
  color: #fff;
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.footer-contact-list p:not(.caption) {
  width: 100%;
  color: #fff;
  margin-top: 0.3125rem;
}

.footer-img-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.footer-img-post-list li {
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.footer-img-post-list li a {
  display: block;
}

.footer-img-post-list li a:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.footer-img-post-list li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-section-two .footer-top {
  padding-top: 215px;
}

.subscription-wrapper {
  position: relative;
  z-index: 2;
  padding: 4.375rem 3.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -135px;
}

@media (max-width: 1199px) {
  .subscription-wrapper {
    padding: 3.125rem 2.5rem;
  }
}

@media (max-width: 575px) {
  .subscription-wrapper {
    padding: 2.5rem 1.25rem;
  }
}

.subscription-wrapper .section-top-title-two,
.subscription-wrapper .section-title {
  color: #fff;
}

.subscription-wrapper .section-title span {
  display: block;
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

.subscription-wrapper .subscribe-form {
  width: 500px;
}

.subscription-wrapper .subscribe-form input:focus {
  border-color: #fff;
}

.subscription-wrapper .subscribe-form button {
  background-color: #fff;
  color: var(--dark-900);
}

.subscription-wrapper-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  z-index: -1;
}

.footer-bottom {
  padding: 1.875rem 0;
  background-color: var(--dark-700);
}

.footer-logo {
  max-height: 95px;
}

.footer-title {
  color: #fff;
  margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
  .footer-title {
    margin-bottom: 1.5625rem;
  }
}

.footer-menu li + li {
  margin-top: 0.9375rem;
}

.footer-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-200);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-menu li a:hover {
  color: var(--primary);
}

.footer-menu li a i {
  color: #fff;
}

.footer-post-list .footer-single-post + .footer-single-post {
  margin-top: 1.5625rem;
}

.footer-post-list .footer-single-post {
  display: flex;
  flex-wrap: wrap;
}

.footer-post-list .footer-single-post .thumb {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
}

.footer-post-list .footer-single-post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.footer-post-list .footer-single-post .content {
  width: calc(100% - 80px);
  padding-inline-start: 1.25rem;
}

.footer-post-list .footer-single-post .content .title a {
  font-size: 1rem;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-post-list .footer-single-post .content .title a:hover {
  color: var(--primary);
}

.footer-post-list .footer-single-post .content span {
  color: var(--light-200);
  font-size: 0.875rem;
}

.footer-inline-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -0.3125rem -0.9375rem;
}

.footer-inline-menu li a {
  color: var(--light-200);
  padding: 0.3125rem 0.9375rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-inline-menu li a:hover {
  color: var(--primary);
}

.footer-section-three {
  position: relative;
  z-index: 1;
  background-color: var(--dark-900);
}

.footer-section-three-el {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-section-three .footer-top {
  background-color: transparent;
  position: static;
}

.footer-section-three .footer-three-subscription-tile {
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--display-font);
}

@media (max-width: 1399px) {
  .footer-section-three .footer-three-subscription-tile {
    font-size: 4.125rem;
  }
}

@media (max-width: 1199px) {
  .footer-section-three .footer-three-subscription-tile {
    font-size: 3.375rem;
  }
}

@media (max-width: 991px) {
  .footer-section-three .footer-three-subscription-tile {
    font-size: 2.625rem;
  }
}

@media (max-width: 575px) {
  .footer-section-three .footer-three-subscription-tile {
    font-size: 2rem;
  }
}

.footer-section-three .footer-three-subscription-tile span {
  display: block;
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}

.footer-section-three .subscribe-form input {
  background-color: #0f1133;
  border-color: rgba(255, 255, 255, 0.1);
  height: 66px;
}

.footer-section-three .subscribe-form button {
  width: 46px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.footer-section-three .footer-bottom {
  background-color: transparent;
}

.footer-section-three .footer-bottom-area {
  background-color: var(--dark-700);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 1.875rem;
}

/* === footer css end === */
/* === inner-banner css start === */
.inner-banner {
  padding-top: 18.75rem;
  padding-bottom: 9.375rem;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .inner-banner {
    padding-top: 9.4rem;
    padding-bottom: 6.25rem;
  }
}

@media (max-width: 1199px) {
  .inner-banner {
    padding-top: 11.25rem;
  }
}

@media (max-width: 575px) {
  .inner-banner {
    padding-top: 7.5rem;
    padding-bottom: 3.75rem;
  }
}

.inner-banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-900);
  opacity: 0.8;
  z-index: -1;
}

.inner-banner-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  z-index: -2;
}

.inner-banner .title {
  font-family: var(--display-font);
  color: #fff;
  font-size: 2.625rem;
  font-weight: 700;
}

@media (max-width: 1399px) {
  .inner-banner .title {
    font-size: 2.25rem;
  }
}

@media (max-width: 1199px) {
  .inner-banner .title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .inner-banner .title {
    font-size: 1.75rem;
  }
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.25rem;
}

@media (max-width: 575px) {
  .page-breadcrumb {
    margin-top: 0.625rem;
  }
}

.page-breadcrumb li {
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
}

@media (max-width: 575px) {
  .page-breadcrumb li {
    font-size: 1rem;
  }
}

.page-breadcrumb li:last-child::after {
  display: none;
}

.page-breadcrumb li::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.875rem;
  margin: 0 0.9375rem;
}

.page-breadcrumb li a {
  /* color: var(--dark-900); */
  color: var(--blue);
}

/* === inner-banner css end === */
/* === banner css start === */
.banner-section {
  padding-top: 18.75rem;
  padding-bottom: 10.9375rem;
  background-color: var(--dark-900);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 1750px) {
  .banner-section {
    padding-top: 15.625rem;
    padding-bottom: 7.5rem;
  }
}

@media (max-width: 992px) {
  .banner-section {
    padding-top: 9.375rem;
    padding-bottom: 4.375rem;
  }
}

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

@media (max-width: 575px) {
  .banner-section {
    padding-top: 7.5rem;
  }
}

.banner-section .banner-top-title {
  color: #fff;
  text-transform: uppercase;
}

.banner-section .banner-title {
  color: #fff;
  font-size: 80px;
  font-family: var(--display-font);
  max-width: 15ch;
  font-weight: 700;
}

@media (max-width: 1750px) {
  .banner-section .banner-title {
    font-size: 4.125rem;
  }
}

@media (max-width: 1399px) {
  .banner-section .banner-title {
    font-size: 3.375rem;
  }
}

@media (max-width: 1199px) {
  .banner-section .banner-title {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .banner-section .banner-title {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .banner-section .banner-title {
    font-size: 2.25rem;
  }
}

.banner-section .banner-description {
  color: #fff;
  max-width: 65ch;
  margin-top: 2.5rem;
}

@media (max-width: 1750px) {
  .banner-section .banner-description {
    max-width: 55ch;
  }
}

@media (max-width: 991px) {
  .banner-section .banner-description {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5625rem;
  }
}

.banner-section .banner-btns {
  margin-top: 2.8125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

@media (max-width: 991px) {
  .banner-section .banner-btns {
    justify-content: center;
    margin-top: 1.5625rem;
  }
}

.banner-section .banner-left-line-el {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  opacity: 0.65;
  z-index: -3;
}

.banner-section .banner-man-img {
  position: absolute;
  inset-inline-end: 145px;
  inset-block-end: 0;
  z-index: -1;
}

@media (max-width: 1850px) {
  .banner-section .banner-man-img {
    inset-inline-end: 105px;
  }
}

@media (max-width: 1750px) {
  .banner-section .banner-man-img {
    max-height: 550px;
  }
}

@media (max-width: 1399px) {
  .banner-section .banner-man-img {
    max-height: 455px;
  }
}

@media (max-width: 1199px) {
  .banner-section .banner-man-img {
    max-height: 420px;
    inset-inline-end: 0;
  }
}

@media (max-width: 991px) {
  .banner-section .banner-man-img {
    position: static;
    margin-top: 2.5rem;
  }
}

.banner-section .banner-angle-img {
  position: absolute;
  width: 695px;
  height: 101%;
  inset-inline-end: 135px;
  inset-block-end: 0;
  z-index: -2;
  clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
}

@media (max-width: 1850px) {
  .banner-section .banner-angle-img {
    inset-inline-end: 95px;
  }
}

@media (max-width: 1750px) {
  .banner-section .banner-angle-img {
    inset-inline-end: 0;
  }
}

@media (max-width: 1399px) {
  .banner-section .banner-angle-img {
    width: 490px;
    inset-inline-end: 35px;
  }
}

.banner-section .banner-angle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (max-width: 991px) {
  .banner-section .banner-angle-img {
    opacity: 0.35;
  }
}

.banner-section .line-shape {
  position: absolute;
  top: 0;
  inset-inline-end: 630px;
  width: 325px;
  height: 100%;
  background-color: #fff;
  opacity: 0.1;
  clip-path: polygon(75% 0%, 100% 0%, 25% 100%, 0% 100%);
  z-index: -2;
}

@media (max-width: 1850px) {
  .banner-section .line-shape {
    inset-inline-end: 590px;
  }
}

@media (max-width: 1750px) {
  .banner-section .line-shape {
    inset-inline-end: 480px;
  }
}

@media (max-width: 1399px) {
  .banner-section .line-shape {
    inset-inline-end: 375px;
    width: 235px;
  }
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.call-btn i {
  width: 3.75rem;
  height: 3.75rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 1.25rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.call-btn span small {
  font-size: 0.875rem;
  display: block;
}

.call-btn span strong {
  font-weight: 500;
  font-size: 1.125rem;
}

.call-btn.call-btn-white span small,
.call-btn.call-btn-white span strong {
  color: #fff;
}

.banner-section-two {
  position: relative;
  padding-bottom: 8.75rem;
  position: relative;
  background-color: var(--dark-900);
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .banner-section-two {
    padding-top: 0rem;
    padding-bottom: 6.25rem;
  }
}

@media (max-width: 1199px) {
  .banner-section-two {
    padding-top: 0rem;
  }
}

@media (max-width: 575px) {
  .banner-section-two {
    padding-bottom: 3.75rem;
  }
}

.banner-section-two .banner-top-title {
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  color: #fff;
}

@media (max-width: 575px) {
  .banner-section-two .banner-top-title {
    font-size: 0.875rem;
  }
}

.banner-section-two .banner-top-title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.banner-section-two .banner-title {
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--display-font);
}

@media (max-width: 1750px) {
  .banner-section-two .banner-title {
    font-size: 4.125rem;
  }
}

@media (max-width: 1399px) {
  .banner-section-two .banner-title {
    font-size: 3.375rem;
  }
}

@media (max-width: 1199px) {
  .banner-section-two .banner-title {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .banner-section-two .banner-title {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .banner-section-two .banner-title {
    font-size: 2.25rem;
  }
}

.banner-section-two .check-list li + li {
  margin-top: 0.625rem;
}

.banner-section-two .check-list li {
  color: var(--light-200);
}

.banner-section-two .banner-btns {
  margin-top: 2.8125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.banner-section-two .banner-section-two-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  z-index: -1;
}

.banner-section-two .banner-section-two-angle-img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  max-width: 9vw;
}

.banner-section-three {
  padding-top: 16.25rem;
  padding-bottom: 12.5rem;
  background-color: var(--dark-900);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 1399px) {
  .banner-section-three {
    padding-top: 13.75rem;
    padding-bottom: 10.625rem;
  }
}

@media (max-width: 1199px) {
  .banner-section-three {
    padding-top: 9.375rem;
    padding-bottom: 10rem;
  }
}

@media (max-width: 991px) {
  .banner-section-three {
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .banner-section-three {
    padding-top: 7.5rem;
  }
}

.banner-section-three::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-900);
  opacity: 0.2;
  z-index: -2;
}

.banner-section-three .banner-top-title {
  color: var(--primary);
  text-transform: uppercase;
}

.banner-section-three .banner-title {
  color: #fff;
  font-size: 80px;
  font-family: var(--display-font);
  max-width: 15ch;
  font-weight: 700;
}

@media (max-width: 1750px) {
  .banner-section-three .banner-title {
    font-size: 4.125rem;
  }
}

@media (max-width: 1399px) {
  .banner-section-three .banner-title {
    font-size: 3.375rem;
  }
}

@media (max-width: 1199px) {
  .banner-section-three .banner-title {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .banner-section-three .banner-title {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .banner-section-three .banner-title {
    font-size: 2.25rem;
  }
}

.banner-section-three .banner-description {
  color: #fff;
  max-width: 65ch;
  margin-top: 2.5rem;
}

@media (max-width: 1750px) {
  .banner-section-three .banner-description {
    max-width: 55ch;
  }
}

@media (max-width: 991px) {
  .banner-section-three .banner-description {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5625rem;
  }
}

.slick-dots li button{
  color:lightgray !important;
}

.banner-section-three .banner-btns {
  margin-top: 2.8125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

@media (max-width: 991px) {
  .banner-section-three .banner-btns {
    justify-content: center;
    margin-top: 1.5625rem;
  }
}

.banner-section-three .banner-three-social-list {
  position: absolute;
  top: 52%;
  left: 9vw;
}

@media (max-width: 1700px) {
  .banner-section-three .banner-three-social-list {
    left: 30px;
  }
}

@media (max-width: 1399px) {
  .banner-section-three .banner-three-social-list {
    display: none;
  }
}

.banner-section-three .banner-three-social-list::before {
  position: absolute;
  content: "";
  top: -100px;
  left: 50%;
  width: 1px;
  height: 72px;
  background-color: var(--primary);
}

.banner-section-three .banner-three-social-list::after {
  position: absolute;
  content: "";
  bottom: -100px;
  left: 50%;
  width: 1px;
  height: 72px;
  background-color: var(--primary);
}

.banner-section-three .banner-three-social-list li {
  margin: 10px 0;
}

.banner-section-three .banner-three-social-list li a {
  color: #fff;
  text-align: center;
}

.banner-section-three .banner-three-bg-img {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  margin: 0 auto;
  height: 75%;
  object-fit: cover;
  -o-object-fit: cover !important;
  object-position: center !important;
  -o-object-position: center !important;
  z-index: -3 !important;
  border-top: 1px solid orange !important;
  border-bottom: 1px solid orange !important;

}

.img-container{
  position:relative;
  overflow:hidden;
}


.banner-section-three .banner-man-img {
  position: absolute;
  inset-inline-end: 22%;
  inset-block-end: 0;
  z-index: 1;
}

@media (max-width: 1750px) {
  .banner-section-three .banner-man-img {
    max-height: 550px;
  }
}

@media (max-width: 1399px) {
  .banner-section-three .banner-man-img {
    max-height: 455px;
  }
}

@media (max-width: 1199px) {
  .banner-section-three .banner-man-img {
    max-height: 420px;
    inset-inline-end: 0;
  }
}

@media (max-width: 991px) {
  .banner-section-three .banner-man-img {
    position: static;
    margin-top: 2.5rem;
  }
}

.banner-section-three .banner-truck-img {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  z-index: -1;
}

@media (max-width: 1750px) {
  .banner-section-three .banner-truck-img {
    max-height: 550px;
  }
}

@media (max-width: 1399px) {
  .banner-section-three .banner-truck-img {
    max-height: 405px;
  }
}

@media (max-width: 1199px) {
  .banner-section-three .banner-truck-img {
    max-height: 300px;
    inset-inline-end: -100px;
  }
}

.banner-section-three .banner-angle-img {
  position: absolute;
  width: 695px;
  height: 101%;
  inset-inline-end: 135px;
  inset-block-end: 0;
  z-index: -1;
  clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
}

@media (max-width: 1850px) {
  .banner-section-three .banner-angle-img {
    inset-inline-end: 95px;
  }
}

@media (max-width: 1750px) {
  .banner-section-three .banner-angle-img {
    inset-inline-end: 0;
  }
}

@media (max-width: 1399px) {
  .banner-section-three .banner-angle-img {
    width: 490px;
    inset-inline-end: 35px;
  }
}

.banner-section-three .banner-angle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (max-width: 991px) {
  .banner-section-three .banner-angle-img {
    opacity: 0.35;
  }
}

.banner-section-three .line-shape {
  position: absolute;
  top: 0;
  inset-inline-end: 630px;
  width: 325px;
  height: 100%;
  background-color: #fff;
  opacity: 0.1;
  clip-path: polygon(75% 0%, 100% 0%, 25% 100%, 0% 100%);
  z-index: -1;
}

@media (max-width: 1850px) {
  .banner-section-three .line-shape {
    inset-inline-end: 590px;
  }
}

@media (max-width: 1750px) {
  .banner-section-three .line-shape {
    inset-inline-end: 480px;
  }
}

@media (max-width: 1399px) {
  .banner-section-three .line-shape {
    inset-inline-end: 375px;
    width: 235px;
  }
}

.video-btn {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
}

.video-btn.video-btn-white i {
  background-color: #fff;
}

.video-btn.video-btn-white span {
  color: #fff;
}

.video-btn i {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--dark-900);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 10px rgba(250, 125, 9, 0.15);
}

.circle-contact-btn-main {
  position: relative;
  display: inline-flex;
}

.circle-contact-btn-main .circle-contact-btn-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-contact-btn {
  --radius: 11vmin;
  --frame-size: calc(var(--radius) / 3);
  --d-outer: calc(var(--radius) * 2);
  --d-inner: calc(var(--d-outer) - var(--frame-size));
  --font-size: calc(var(--radius) / 10);
  position: relative;
  width: var(--d-outer);
  height: var(--d-outer);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

@media (max-width: 575px) {
  .circle-contact-btn {
    --radius: 25vmin;
  }
}

.circle-contact-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: 100vmax;
  z-index: -1;
}

.circle-contact-btn .circle-contact-btn-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}

.circle-contact-btn .circle-contact-btn-text span {
  position: absolute;
  left: 50%;
  font-size: 1.2em;
  transform-origin: 0 var(--radius);
  color: var(--primary);
}

@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
/* === banner css end === */
/* === service css start === */
.service-one:hover .thumb img {
  transform: scale(1.1, 1.1);
}

.service-one:hover .icon {
  background-color: var(--primary);
}

.service-one .thumb {
  height: 21.5625rem;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media (max-width: 1399px) {
  .service-one .thumb {
    height: 18.75rem;
  }
}

@media (max-width: 1199px) {
  .service-one .thumb {
    height: 15.625rem;
  }
}

.service-one .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.service-one .content {
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -2.5rem;
  padding: 2.5rem 1.875rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  text-align: center;
  position: relative;
  background-color: #fff;
}

@media (max-width: 1199px) {
  .service-one .content {
    margin-left: 15px;
    margin-right: 15px;
    padding: 1.875rem 1.25rem;
  }
}

.service-one .icon {
  width: 65px;
  height: 65px;
  position: relative;
  background-color: var(--light-100);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.service-one .icon img {
  max-height: 40px;
}

.service-one .title {
  margin-top: 0.9375rem;
  margin-bottom: 0.625rem;
}

.service-two {
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}

.service-two:hover .content .icon {
  background-color: var(--primary);
}

.service-two:hover .service-two-btn i {
  color: var(--primary);
}

.service-two .thumb {
  height: 20.5rem;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
}

@media (max-width: 1399px) {
  .service-two .thumb {
    height: 17.5rem;
  }
}

@media (max-width: 1199px) {
  .service-two .thumb {
    height: 15.625rem;
  }
}

.service-two .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.service-two .content {
  padding: 0 2.5rem 2.5rem 2.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .service-two .content {
    padding: 0 1.875rem 1.875rem 1.875rem;
  }
}

.service-two .content .icon {
  width: 5rem;
  height: 5rem;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: var(--light-100);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -2.5rem;
  margin-bottom: 1.25rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.service-two .title {
  margin-bottom: 1.25rem;
}

@media (max-width: 1199px) {
  .service-two .title {
    margin-bottom: 0.9375rem;
  }
}

.service-two .service-two-btn {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.875rem;
}

@media (max-width: 1199px) {
  .service-two .service-two-btn {
    margin-top: 1.25rem;
  }
}

.service-section-three {
  margin-top: -90px;
  position: relative;
  z-index: 1;
}

.service-three {
  padding: 2.5rem 2.5rem 0 2.5rem;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.875rem;
}

@media (max-width: 991px) {
  .service-three {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .service-three {
    padding: 1.875rem 1.875rem 0 1.875rem;
  }
}

.service-three .icon {
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-three p {
  margin-top: 1.25rem;
}

.service-three-icon-btn {
  width: 3.75rem;
  height: 3.75rem;
  background-color: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  transform: translateY(1.875rem);
}

.service-three-icon-btn:hover {
  box-shadow: 0 5px 15px var(--primary);
  color: #fff;
}

.service-four {
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-flow: column;
}

@media (max-width: 1199px) {
  .service-four {
    padding: 1.5625rem;
  }
}

@media (max-width: 767px) {
  .service-four {
    align-items: center;
    text-align: center;
  }
}

.service-four:hover {
  border-color: var(--primary);
}

.service-four .icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 1.25rem;
}

.service-four .icon img {
  height: 45px;
}

.service-four p {
  margin-top: 1.25rem;
  margin-bottom: 1.875rem;
}

.service-four-icon-btn {
  font-weight: 500;
  color: var(--dark-900);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  gap: 8px;
}

.service-four-icon-btn i {
  color: var(--primary);
}

/* === service css end === */
/* === service-details css start === */
.service-details-sidebar {
  padding: 2.5rem;
  background-color: var(--light-100);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media (max-width: 575px) {
  .service-details-sidebar {
    padding: 1.5625rem;
  }
}

.service-details-sidebar-box {
  padding: 1.5625rem 1.875rem 1.875rem 1.875rem;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 1.875rem;
}

/* === service-details css end === */
/* === ticker css start === */
.ticker-section {
  padding: 3.75rem 0;
  background-color: var(--primary);
  overflow: hidden;
}

@media (max-width: 991px) {
  .ticker-section {
    padding: 1.875rem 0;
  }
}

.ticker-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll 40s forwards linear infinite;
}

.ticker-list:hover {
  animation-play-state: paused;
}

.ticker-list li {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--display-font);
  font-size: 2.625rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1399px) {
  .ticker-list li {
    font-size: 2.25rem;
  }
}

@media (max-width: 991px) {
  .ticker-list li {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .ticker-list li {
    font-size: 1.625rem;
  }
}

.ticker-list li img {
  max-height: 2.1875rem;
}

@-webkit-keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

@-moz-keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

@-ms-keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
/* === ticker css end === */
/* === about css start === */
.about-section-one {
  position: relative;
  overflow: hidden;
}

.about-section-one .about-section-one-el {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
}

@media (max-width: 1399px) {
  .about-section-one .about-section-one-el {
    inset-inline-end: -10.9375rem;
  }
}

.about-section-two {
  position: relative;
  z-index: 1;
}

.about-section-two .about-section-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-two-item {
  padding-top: 2.1875rem;
  position: relative;
}

.about-two-item .icon {
  position: absolute;
  top: 0;
  inset-inline-start: 1.875rem;
  width: 3.75rem;
  height: 3.75rem;
  background-color: var(--primary);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two-item .content {
  padding: 2.8125rem 1.875rem 1.875rem 1.875rem;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.about-two-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3.125rem;
  margin-top: 2.5rem;
}

@media (max-width: 575px) {
  .about-two-bottom {
    gap: 1.25rem;
  }
}

.about-bottom-users {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.about-section-three {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-section-three .about-section-three-el {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  z-index: -1;
}

.about-three-thumb {
  position: relative;
  z-index: 1;
  padding: 27px 0 27px 27px;
}

.about-three-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: calc(100% - 35px);
  height: 100%;
  border: 4.5px solid var(--primary);
  border-radius: 65px 0 0 65px;
  -webkit-border-radius: 65px 0 0 65px;
  -moz-border-radius: 65px 0 0 65px;
  -ms-border-radius: 65px 0 0 65px;
  -o-border-radius: 65px 0 0 65px;
  z-index: -1;
}

.about-three-thumb img {
  border-radius: 65px 0 0 65px;
  -webkit-border-radius: 65px 0 0 65px;
  -moz-border-radius: 65px 0 0 65px;
  -ms-border-radius: 65px 0 0 65px;
  -o-border-radius: 65px 0 0 65px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.about-three-thumb-content {
  position: absolute;
  inset-inline-end: 2.1875rem;
  bottom: 62px;
  width: 120px;
  height: 120px;
  background-color: var(--dark-900);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.about-three-thumb-content span {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.3;
  margin-bottom: 0.3125rem;
}

.about-three-thumb-content small {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.about-three-content .check-list {
  margin: 0;
}

.about-three-content .call-btn {
  margin-top: 1.875rem;
}

.about-three-content .call-btn i {
  background-color: #fff;
  color: var(--dark-900);
}

.about-three-content .call-btn strong {
  color: var(--dark-900);
}

/* === about css end === */
/* === project css start === */
.project-one {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 1.25rem 2.5rem;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}

.project-one + .project-one {
  margin-top: 1.875rem;
}

@media (max-width: 1399px) {
  .project-one {
    gap: 1.875rem;
    padding: 1.25rem 1.875rem;
  }
}

@media (max-width: 767px) {
  .project-one {
    justify-content: center;
    text-align: center;
    gap: 0.9375rem;
  }
}

@media (max-width: 575px) {
  .project-one {
    padding: 1.25rem;
  }
}

.project-one:hover .thumb {
  opacity: 1;
}

.project-one:hover .icon {
  transform: rotate(-45deg);
}

.project-one .number {
  width: 65px;
  height: 65px;
  background-color: var(--light-100);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.project-one .title {
  font-size: 1.875rem;
  font-weight: 700;
  width: 20ch;
}

@media (max-width: 1399px) {
  .project-one .title {
    font-size: 1.5rem;
  }
}

@media (max-width: 1199px) {
  .project-one .title {
    width: 40ch;
  }
}

@media (max-width: 991px) {
  .project-one .title {
    width: 35ch;
    font-size: 1.25rem;
  }
}

.project-one .description {
  max-width: 40ch;
}

@media (max-width: 991px) {
  .project-one .description {
    max-width: 35ch;
  }
}

.project-one .thumb {
  width: 212px;
  height: 105px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .project-one .thumb {
    opacity: 1;
    margin-inline-start: 0;
  }
}

.project-one .icon {
  margin-inline-start: auto;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .project-one .icon {
    margin-inline-start: 0;
  }
}
/* === project css end === */
/* === project-details css start === */
.project-quote {
  position: relative;
  padding: 1.875rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .project-quote {
    padding: 1.25rem;
  }
}

.project-quote::after {
  position: absolute;
  content: "\f10e";
  bottom: 5px;
  inset-inline-end: 70px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
  font-size: 6.25rem;
  opacity: 0.1;
}

.project-quote .thumb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

.project-quote .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.project-quote .content {
  width: calc(100% - 90px);
  padding-inline-start: 1.375rem;
}

@media (max-width: 575px) {
  .project-quote .content {
    width: 100%;
    padding-inline-start: 0;
    margin-top: 1.25rem;
  }
}

.project-quote .quote-name {
  position: relative;
  padding-inline-start: 1.5625rem;
  font-weight: 500;
  margin-top: 0.625rem;
}

.project-quote .quote-name::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 0.9375rem;
  height: 1px;
  background-color: var(--dark-900);
}

.project-details-sidebar {
  padding-block: 2.5rem;
  padding-inline-end: 2.5rem;
  background-color: var(--light-100);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media (max-width: 575px) {
  .project-details-sidebar {
    padding-block: 1.25rem;
    padding-inline-end: 1.25rem;
  }
}

.project-details-sidebar-header {
  padding-inline: 2.5rem;
}

@media (max-width: 575px) {
  .project-details-sidebar-header {
    padding-inline: 1.25rem;
  }
}

.project-details-sidebar-list li + li {
  margin-top: 1.25rem;
}

.project-details-sidebar-list li {
  padding: 0.625rem 2.5rem;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 575px) {
  .project-details-sidebar-list li {
    padding: 0.625rem 1.25rem;
  }
}

.project-details-sidebar-list li span:first-child {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark-900);
  width: 95px;
}

.project-details-sidebar-list li span:last-child {
  width: calc(100% - 95px);
}

.project-details-sidebar-list li span.rating i {
  color: var(--primary);
  font-size: 0.875rem;
}

/* === project-details css end === */
/* === message css start === */
.message-section-one {
  position: relative;
  z-index: 1;
}

.message-section-one .message-section-el {
  position: absolute;
  z-index: -1;
}

.message-section-one .message-section-el.message-left-el {
  top: 0;
  left: 0;
}

.message-section-one .message-section-el.message-right-el {
  bottom: 0;
  right: 0;
}

.overview-item {
  padding: 1.875rem 2.5rem;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
  height: 100%;
}

@media (max-width: 1199px) {
  .overview-item {
    padding: 1.875rem;
  }
}

@media (max-width: 575px) {
  .overview-item {
    padding: 1.25rem;
  }
}

.overview-item .icon {
  height: 60px;
}

@media (max-width: 1399px) {
  .overview-item .icon {
    height: 50px;
  }
}

@media (max-width: 575px) {
  .overview-item .icon {
    height: 40px;
  }
}

.overview-item .amount {
  font-family: var(--display-font);
  font-size: 2.625rem;
  margin-top: 1.875rem;
  margin-bottom: 0.9375rem;
}

@media (max-width: 1399px) {
  .overview-item .amount {
    font-size: 2.25rem;
  }
}

@media (max-width: 991px) {
  .overview-item .amount {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .overview-item .amount {
    font-size: 1.625rem;
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

@media (max-width: 575px) {
  .overview-item p {
    font-size: 0.875rem;
  }
}

.message-wrapper {
  padding-inline-start: 3.125rem;
}

@media (max-width: 991px) {
  .message-wrapper {
    padding-inline-start: 0;
  }
}

.message-wrapper .message-form {
  margin-top: 2.5rem;
}

.message-section-two-inner {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .message-section-two-inner {
    padding: 3.125rem 0;
  }
}

@media (max-width: 991px) {
  .message-section-two-inner {
    padding: 0;
  }
}

.message-section-two-inner .message-section-two-thumb {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 64%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .message-section-two-inner .message-section-two-thumb {
    position: static;
    width: 100%;
  }
}

.message-section-two-inner .message-section-two-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.message-wrapper-two {
  padding: 3.75rem;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 0 -5px 20px -1px rgba(19, 16, 34, 0.05);
}

@media (max-width: 1399px) {
  .message-wrapper-two {
    padding: 2.5rem;
  }
}

@media (max-width: 575px) {
  .message-wrapper-two {
    padding: 1.875rem;
  }
}

.message-wrapper-two .section-title {
  margin-bottom: 1.25rem;
}

.message-wrapper-two .message-form {
  margin-top: 2.5rem;
}

.message-three-thumb {
  width: 512px;
  height: 512px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .message-three-thumb {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 575px) {
  .message-three-thumb {
    width: 280px;
    height: 280px;
  }
}

.message-three-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: -10px;
  width: 96%;
  height: 96%;
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: -1;
}

@media (max-width: 575px) {
  .message-three-thumb::before {
    left: -5px;
  }
}

.message-three-thumb img {
  width: 512px;
  height: 512px;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@media (max-width: 1199px) {
  .message-three-thumb img {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 575px) {
  .message-three-thumb img {
    width: 280px;
    height: 280px;
  }
}

.anasayfabanner{
  margin-top: -170px !important;
}



.message-three-thumb .message-three-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.375rem;
  height: 4.375rem;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.375rem;
}

@media (max-width: 575px) {
  .message-three-thumb .message-three-video-btn {
    width: 2.8125rem;
    height: 2.8125rem;
    font-size: 0.875rem;
  }
}

.message-three-thumb-content {
  position: absolute;
  bottom: 15px;
  inset-inline-end: 0;
  width: 130px;
  height: 130px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.message-three-thumb-content::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px dashed var(--light-200);
}

.message-three-thumb-content span {
  font-size: 0.75rem;
}

.message-three-thumb-content p {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--primary);
}

/* === message css end === */
/* === brand css start === */
.brand-section {
  overflow: hidden;
}

.brand-item {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-item img {
  display: inline-block;
}

.brand-slider .slick-list {
  margin: 0 -0.9375rem;
}

.brand-slider .brand-slide {
  padding: 0 0.9375rem;
}

/* === brand css end === */
/* === newsletter css start === */
.news-letter-wrapper {
  position: relative;
  overflow: hidden;
  padding: 3.75rem;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  z-index: 1;
}

@media (max-width: 991px) {
  .news-letter-wrapper {
    padding: 2.5rem 1.25rem;
  }

  .anasayfabanner{
    margin-top: -30px !important;
  }
}

.news-letter-wrapper::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-900);
  opacity: 0.8;
}

.news-letter-wrapper-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  z-index: -1;
}

.news-letter-wrapper-inner {
  width: 505px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .news-letter-wrapper-inner {
    width: 100%;
  }
}

.news-letter-wrapper .section-title {
  color: #fff;
}

@media (max-width: 991px) {
  .news-letter-wrapper .section-title {
    text-align: center;
  }
}

.news-letter-wrapper .subscribe-form {
  margin-top: 2.1875rem;
}

.news-letter-wrapper .news-letter-icon-wrapper {
  position: absolute;
  top: 0;
  inset-inline-end: 3.75rem;
  height: 100%;
  width: 330px;
  background-color: #fff;
  clip-path: polygon(29% 0, 100% 0, 75% 100%, 0% 100%);
}

@media (max-width: 1199px) {
  .news-letter-wrapper .news-letter-icon-wrapper {
    inset-inline-end: 1.875rem;
  }
  .anasayfabanner{
    margin-top: -80px !important;
  }
}

@media (max-width: 991px) {
  .news-letter-wrapper .news-letter-icon-wrapper {
    display: none;
  }
}

.news-letter-wrapper .news-letter-icon-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 1.25rem;
  width: 100%;
  height: 100%;
  clip-path: polygon(29% 0, 100% 0, 75% 100%, 0% 100%);
  background-color: var(--primary);
}

.news-letter-wrapper .news-letter-icon-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-height: 115px;
}

.subscribe-form {
  position: relative;
}

.subscribe-form input {
  height: 80px;
  border: 1px solid var(--border-color);
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  width: 100%;
  padding: 1.25rem 9.375rem 1.25rem 1.875rem;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.subscribe-form input::-webkit-input-placeholder {
  color: var(--light-200);
}

.subscribe-form input::-moz-placeholder {
  color: var(--light-200);
}

.subscribe-form input:-ms-input-placeholder {
  color: var(--light-200);
}

.subscribe-form input:-moz-placeholder {
  color: var(--light-200);
}

.subscribe-form input:focus {
  border-color: var(--secondary);
}

.subscribe-form button {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  height: calc(100% - 20px);
  padding: 0.625rem 1.875rem;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  text-transform: uppercase;
  font-weight: 500;
}

/* === newsletter css end === */
/* === testimonial css start === */
.testimonial-section-one {
  position: relative;
}

.testimonial-section-one .testimonial-section-one-line {
  position: absolute;
  bottom: 0;
  right: 0;
  max-inline-size: initial;
  max-block-size: initial;
}

.testimonial-section-one .testimonial-section-one-thumb {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .testimonial-section-one .section-top {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .testimonial-section-one .section-top .section-title {
    margin-left: auto;
    margin-right: auto;
  }
}

.testimonial-one .content {
  padding: 2.5rem 2.5rem 4.375rem 2.5rem;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: var(--dark-700);
}

@media (max-width: 575px) {
  .testimonial-one .content {
    padding: 1.5625rem 1.5625rem 3.75rem 1.5625rem;
    text-align: center;
  }

  .anasayfabanner{
    margin-top: -40px !important;
  }
}

.testimonial-one .content .icon i {
  color: var(--primary);
  font-size: 3.75rem;
}

@media (max-width: 991px) {
  .testimonial-one .content .icon i {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .testimonial-one .content .icon i {
    font-size: 2.625rem;
  }
}

.testimonial-one .content p {
  color: var(--light-200);
  font-size: 1.5rem;
}

@media (max-width: 1399px) {
  .testimonial-one .content p {
    font-size: 1.375rem;
  }
}

@media (max-width: 991px) {
  .testimonial-one .content p {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .testimonial-one .content p {
    font-size: 1.125rem;
  }
}

.testimonial-one .testimonial-client {
  padding-inline-start: 2.5rem;
  margin-top: -2.5rem;
}

@media (max-width: 575px) {
  .testimonial-one .testimonial-client {
    padding-inline-start: 0;
    text-align: center;
  }
}

.testimonial-one .testimonial-client .client-img {
  width: 4.5625rem;
  height: 4.5625rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 575px) {
  .testimonial-one .testimonial-client .client-img {
    margin-left: auto;
    margin-right: auto;
  }
}

.testimonial-one .testimonial-client .client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.testimonial-slider-one {
  z-index: 1;
}

@media (max-width: 575px) {
  .testimonial-slider-one {
    padding-bottom: 4.375rem;
  }
}

.testimonial-slider-one .slick-arrow {
  position: absolute;
  bottom: 0.625rem;
  inset-inline-end: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  border: 1px solid var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

@media (max-width: 575px) {
  .testimonial-slider-one .slick-arrow {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.testimonial-slider-one .slick-arrow.prev {
  inset-inline-end: 3.4375rem;
}

@media (max-width: 575px) {
  .testimonial-slider-one .slick-arrow.prev {
    inset-inline-end: 50%;
  }
}

@media (max-width: 575px) {
  .testimonial-slider-one .slick-arrow.next {
    inset-inline-end: calc(50% - 40px);
  }
}

.testimonial-slider-one .slick-arrow:hover {
  color: #fff;
  background-color: var(--primary);
}

.testimonial-two-area {
  position: relative;
  padding: 5rem 0;
}

@media (max-width: 991px) {
  .testimonial-two-area {
    padding: 0;
  }
}

.testimonial-two-area .testimonial-two-area-thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 57%;
  height: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .testimonial-two-area .testimonial-two-area-thumb {
    display: none;
  }
}

.testimonial-two-area .testimonial-two-area-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.testimonial-two-area .testimonial-two-slider-area {
  padding: 3.75rem;
  background-color: var(--dark-700);
  position: relative;
  z-index: 1;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonial-two-area .testimonial-two-slider-area {
    padding: 1.25rem;
  }
}

.testimonial-two-area .testimonial-two-slider-area .testimonial-one .content {
  padding: 0;
}

.testimonial-two-area
  .testimonial-two-slider-area
  .testimonial-one
  .testimonial-client {
  margin-top: 0;
  padding-inline-start: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2.1875rem;
}

.testimonial-two-area
  .testimonial-two-slider-area
  .testimonial-one
  .testimonial-client
  .client-img {
  width: 4.375rem;
  height: 4.375rem;
}

.testimonial-two-area
  .testimonial-two-slider-area
  .testimonial-one
  .testimonial-client
  .client-details {
  width: calc(100% - 70px);
  padding-inline-start: 1.25rem;
}

@media (max-width: 575px) {
  .testimonial-two-area
    .testimonial-two-slider-area
    .testimonial-one
    .testimonial-client
    .client-details {
    width: 100%;
    padding-inline-start: 0;
    margin-top: 0.9375rem;
  }
}

.testimonial-section-three {
  position: relative;
  z-index: 1;
}

.testimonial-section-three .testimonial-section-three-el {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.testimonial-three-slider-area {
  padding: 3.75rem;
  background-color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media (max-width: 1399px) {
  .testimonial-three-slider-area {
    padding: 2.5rem;
  }
}

@media (max-width: 575px) {
  .testimonial-three-slider-area {
    padding: 1.25rem;
  }
}

.testimonial-three-slider-area .testimonial-one .content {
  padding: 0;
  background-color: #fff;
}

.testimonial-three-slider-area .testimonial-one .content p {
  color: var(--dark-800);
}

.testimonial-three-slider-area .testimonial-one .testimonial-client {
  margin-top: 0;
  padding-inline-start: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2.1875rem;
}

.testimonial-three-slider-area
  .testimonial-one
  .testimonial-client
  .client-img {
  width: 4.375rem;
  height: 4.375rem;
}

.testimonial-three-slider-area
  .testimonial-one
  .testimonial-client
  .client-details {
  width: calc(100% - 70px);
  padding-inline-start: 1.25rem;
}

@media (max-width: 575px) {
  .testimonial-three-slider-area
    .testimonial-one
    .testimonial-client
    .client-details {
    width: 100%;
    padding-inline-start: 0;
    margin-top: 0.9375rem;
  }
}

.testimonial-three-slider-area
  .testimonial-one
  .testimonial-client
  .client-details
  p {
  margin-top: 0.3125rem;
}

.testimonial-three-slider-area .testimonial-slider-one .slick-arrow {
  color: var(--dark-900);
  border-color: var(--border-color);
}

.testimonial-three-slider-area .testimonial-slider-one .slick-arrow:hover {
  border-color: var(--primary);
  color: #fff;
}

.testimonial-section-four .testimonial-one .content {
  background-color: var(--light-100);
}

.testimonial-section-four .testimonial-one .content p {
  color: var(--dark-800);
}

.testimonial-section-four .testimonial-slider-one .slick-arrow {
  border-color: var(--border-color);
  color: var(--dark-900);
}

.testimonial-section-four .testimonial-slider-one .slick-arrow:hover {
  border-color: var(--primary);
  color: #fff;
}

/* === testimonial css end === */
/* === team css start === */
.team-section-one {
  overflow: hidden;
  padding-inline: 5.9375rem;
}

@media (max-width: 1399px) {
  .team-section-one {
    padding-inline: 2.5rem;
  }
}

@media (max-width: 991px) {
  .team-section-one {
    padding-inline: 0.9375rem;
  }
}

.team-one {
  padding: 1.875rem;
  background-color: #fff;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-bottom: 2px solid #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .team-one {
    padding: 1.25rem;
  }
}

.team-one:hover {
  border-color: var(--primary);
}

.team-one:hover .thumb .team-social-list {
  bottom: 20px;
  opacity: 1;
}

.team-one:hover .thumb .team-social-list li {
  transform: translateY(0) !important;
}

.team-one .thumb {
  position: relative;
  height: 295px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 1620px) {
  .team-one .thumb {
    height: 250px;
  }
}

@media (max-width: 1199px) {
  .team-one .thumb {
    height: 210px;
  }
}

.team-one .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.team-one .thumb .team-social-list {
  position: absolute;
  bottom: 10px;
  width: 100%;
  padding: 0 1.25rem;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.team-one .thumb .team-social-list li:nth-child(1) {
  transform: translateY(10px);
}

.team-one .thumb .team-social-list li:nth-child(2) {
  transform: translateY(30px);
}

.team-one .thumb .team-social-list li:nth-child(3) {
  transform: translateY(50px);
}

.team-one .thumb .team-social-list li:nth-child(4) {
  transform: translateY(70px);
}

.team-one .team-social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.team-one .team-social-list li {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.team-one .team-social-list li a {
  width: 35px;
  height: 35px;
  background-color: #fff;
  border: 1px solid var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-900);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.team-one .team-social-list li a:hover {
  background-color: var(--primary);
  color: #fff;
}

.team-one .content {
  text-align: center;
  margin-top: 1.875rem;
}

.team-one.style-two {
  background-color: transparent;
  border: none;
  padding: 1.875rem 2.5rem 0 2.5rem;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  .team-one.style-two {
    padding: 1.875rem 1.875rem 0 1.875rem;
  }
}

.team-one.style-two:hover::before {
  background-color: var(--light-100);
  box-shadow: none;
}

.team-one.style-two::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 0 15px 55px rgba(0, 0, 0, 0.05);
  z-index: -1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.team-one.style-two .thumb {
  height: 315px;
}

@media (max-width: 1199px) {
  .team-one.style-two .thumb {
    height: 250px;
  }
}

.team-one.style-two .content {
  margin-top: 0;
  margin-bottom: 1.875rem;
}

.team-one.style-two .content p {
  margin-top: 0.3125rem;
}

.team-one .team-social-list li a {
  border: none;
  color: var(--primary);
}

.team-two {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 2.5rem 1.25rem 2.5rem 0;
  z-index: 1;
}

@media (max-width: 1399px) {
  .team-two {
    padding: 1.875rem 1.25rem 1.875rem 0;
  }
}

@media (max-width: 1199px) {
  .team-two {
    padding: 1.25rem;
  }
}

.team-two:hover::before {
  border-color: var(--primary);
}

.team-two::before {
  position: absolute;
  content: "";
  top: 0;
  inset-inline-end: 0;
  height: 100%;
  width: calc(100% - 80px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .team-two::before {
    width: 100%;
  }
}

.team-two .thumb {
  width: 11.25rem;
  height: 11.25rem;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media (max-width: 1399px) {
  .team-two .thumb {
    width: 9.375rem;
    height: 9.375rem;
  }
}

@media (max-width: 1199px) {
  .team-two .thumb {
    width: 100%;
    height: 12.5rem;
  }
}

.team-two .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.team-two .content {
  width: calc(100% - 11.25rem);
  padding-inline-start: 1.25rem;
}

@media (max-width: 1399px) {
  .team-two .content {
    width: calc(100% - 9.375rem);
  }
}

@media (max-width: 1199px) {
  .team-two .content {
    width: 100%;
    padding-inline-start: 0;
    margin-top: 1.25rem;
    text-align: center;
  }
}

.team-two .team-social-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--light-100);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-top: 1.25rem;
}

.team-two .team-social-list li {
  position: relative;
}

.team-two .team-social-list li:last-child::after {
  display: none;
}

.team-two .team-social-list li::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 1px;
  height: 16px;
  background-color: var(--border-color);
  margin-top: -8px;
}

.team-two .team-social-list li a {
  padding: 0.625rem 0.9375rem;
  color: var(--primary);
}

.team-slider .slick-list,
.team-slider-two .slick-list {
  margin: -0.9375rem;
}

.team-slider .team-slide,
.team-slider-two .team-slide {
  padding: 0.9375rem;
}

/* === team css end === */
/* === team-details css start === */
.team-details-wrapper {
  background-color: var(--light-100);
  display: flex;
  flex-wrap: wrap;
}

.team-details-wrapper .thumb {
  width: 430px;
}

@media (max-width: 991px) {
  .team-details-wrapper .thumb {
    width: 100%;
  }
}

.team-details-wrapper .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.team-details-wrapper .content {
  width: calc(100% - 430px);
  padding: 2.5rem;
}

@media (max-width: 991px) {
  .team-details-wrapper .content {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .team-details-wrapper .content {
    padding: 1.5625rem;
  }
}

.team-details-wrapper .content .designation {
  position: relative;
  padding-bottom: 0.3125rem;
  margin-top: 0.625rem;
}

.team-details-wrapper .content .designation::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 110px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.skill-bar p {
  margin-bottom: 10px;
}

.progressbar {
  position: relative;
  display: block;
  width: 100%;
  height: 8px;
  background-color: var(--light-200);
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.progressbar .bar {
  position: absolute;
  width: 0px;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary);
  overflow: hidden;
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
}

.progressbar .label {
  position: absolute;
  top: -40px;
  left: 0;
  width: 30px;
  height: 30px;
  display: block;
  line-height: 34px;
  text-align: center;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}

/* === team-details css end === */
/* === faq css start === */
.faq-img {
  position: relative;
  padding-inline-end: 9.0625rem;
  z-index: 1;
}

@media (max-width: 575px) {
  .faq-img {
    padding-inline-end: 2.8125rem;
  }
}

.faq-img::after {
  position: absolute;
  content: "";
  inset-inline-end: 7.5rem;
  bottom: 0;
  width: 1.1875rem;
  height: 18.75rem;
  background-color: var(--primary);
  z-index: -1;
}

.faq-img .faq-main-img {
  border-radius: 20px 5px 5px 20px;
  -webkit-border-radius: 20px 5px 5px 20px;
  -moz-border-radius: 20px 5px 5px 20px;
  -ms-border-radius: 20px 5px 5px 20px;
  -o-border-radius: 20px 5px 5px 20px;
}

.faq-img .faq-float-img {
  position: absolute;
  top: 2.5rem;
  inset-inline-end: 0;
  width: 18.4375rem;
  height: 25rem;
  border: 0.875rem solid #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

@media (max-width: 575px) {
  .faq-img .faq-float-img {
    width: 12.1875rem;
    height: 15.625rem;
    border-width: 0.5rem;
  }
}

.faq-section-two {
  background-color: var(--light-100);
  padding-bottom: 3.75rem;
}

/* === faq css end === */
/* === blog css start === */
.blog-one {
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
  height: 100%;
}

.blog-one .thumb {
  position: relative;
  height: 300px;
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .blog-one .thumb {
    height: 15.625rem;
  }
}

.blog-one .thumb .blog-date {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  background-color: var(--light-100);
  color: var(--dark-900);
  font-size: 1.125rem;
  text-transform: uppercase;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

@media (max-width: 575px) {
  .blog-one .thumb .blog-date {
    font-size: 1rem;
    width: 70px;
    height: 70px;
  }
}

.blog-one .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.blog-one .content {
  padding: 1.875rem 2.5rem 2.5rem 2.5rem;
}

@media (max-width: 1399px) {
  .blog-one .content {
    padding: 1.875rem;
  }
}

.blog-one .blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.875rem;
  margin-bottom: 1.25rem;
}

.blog-one .blog-meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.blog-one .blog-meta li i {
  color: var(--dark-900);
}

.blog-one .blog-meta li span {
  margin-bottom: -1px;
}

.blog-one .blog-title {
  margin-bottom: 1.25rem;
}

.blog-one .btn {
  margin-top: 2.5rem;
}

.blog-one.style-two .content {
  padding-top: 0;
}

.blog-one.style-two .blog-meta {
  padding: 0.625rem 2.5rem;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  background-color: var(--light-100);
  border-radius: 0 0 20px 20px;
  -webkit-border-radius: 0 0 20px 20px;
  -moz-border-radius: 0 0 20px 20px;
  -ms-border-radius: 0 0 20px 20px;
  -o-border-radius: 0 0 20px 20px;
}

.blog-list-post .thumb {
  position: relative;
}

.blog-list-post .thumb a {
  display: block;
}

.blog-list-post .thumb img {
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  width: 100%;
}

.blog-list-post .thumb .post-date {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  padding: 0.5rem 1.25rem;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

@media (max-width: 575px) {
  .blog-list-post .thumb .post-date {
    font-size: 0.875rem;
  }
}

.blog-list-post .blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
}

@media (max-width: 575px) {
  .blog-list-post .blog-meta {
    gap: 0.625rem;
  }
}

.blog-list-post .content {
  padding: 2.5rem;
  background-color: var(--light-100);
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
}

@media (max-width: 575px) {
  .blog-list-post .content {
    padding: 1.5625rem;
  }
}

.blog-list-post .title {
  margin-bottom: 1.25rem;
}

.blog-list-post .title a {
  font-size: 2.625rem;
  font-family: var(--display-font);
  font-weight: 700;
}

@media (max-width: 1399px) {
  .blog-list-post .title a {
    font-size: 2.25rem;
  }
}

@media (max-width: 1199px) {
  .blog-list-post .title a {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .blog-list-post .title a {
    font-size: 1.5rem;
  }
}

.blog-list-post .btn {
  margin-top: 1.875rem;
}

.blog-list-post + .blog-list-post {
  margin-top: 3.75rem;
}

@media (max-width: 991px) {
  .blog-list-post + .blog-list-post {
    margin-top: 2.5rem;
  }
}
/* === blog css end === */
/* === blog-details css start === */
.blog-details-wrapper {
  background-color: var(--light-100);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.blog-details-wrapper .blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
}

@media (max-width: 575px) {
  .blog-details-wrapper .blog-meta {
    gap: 0.625rem;
  }
}

.blog-details-wrapper .blog-details-content {
  padding: 2.5rem;
}

@media (max-width: 575px) {
  .blog-details-wrapper .blog-details-content {
    padding: 1.25rem;
  }
}

.blog-details-wrapper .blog-quote {
  margin-top: 1.25rem;
}

.blog-details-wrapper .check-list li {
  margin-top: 10px;
}

.blog-details-wrapper .check-list li + li {
  margin-top: 10px;
}

.blog-details-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.blog-details-tags li span {
  font-weight: 500;
  color: var(--dark-900);
}

.blog-details-tags li a {
  padding: 0.25rem 0.75rem;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.blog-quote {
  position: relative;
  padding: 1.875rem 1.25rem 1.875rem 5.625rem;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media (max-width: 575px) {
  .blog-quote {
    padding: 1.25rem;
  }
}

.blog-quote::before {
  position: absolute;
  content: "\f10d";
  top: 1.875rem;
  inset-inline-start: 1.875rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
  font-size: 2.875rem;
  color: var(--primary);
}

@media (max-width: 575px) {
  .blog-quote::before {
    opacity: 0.1;
  }
}

.blog-quote p {
  font-size: 1.25rem;
}

@media (max-width: 575px) {
  .blog-quote p {
    font-size: 1rem;
  }
}

.blog-quote-name {
  position: relative;
  padding-inline-start: 5rem;
  margin-top: 1.25rem;
}

@media (max-width: 575px) {
  .blog-quote-name {
    padding-inline-start: 3.125rem;
  }
}

.blog-quote-name::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 70px;
  height: 2px;
  background-color: var(--primary);
  margin-top: -1px;
}

@media (max-width: 575px) {
  .blog-quote-name::before {
    width: 40px;
  }
}

.blog-prev-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 3.75rem;
  padding: 1.875rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
}

.blog-prev-next::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 1px;
  height: 50px;
  background-color: var(--primary);
  margin-top: -25px;
}

@media (max-width: 575px) {
  .blog-prev-next::after {
    display: none;
  }
}

.blog-arrow-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

@media (max-width: 575px) {
  .blog-arrow-item {
    width: 100%;
  }
}

.blog-arrow-item .icon {
  width: 3.75rem;
  height: 3.75rem;
  background-color: var(--light-100);
  color: var(--dark-900);
  font-size: 1.375rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

@media (max-width: 575px) {
  .blog-arrow-item .icon {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

.blog-arrow-item .icon:hover {
  background-color: var(--primary);
  color: #fff;
}

.blog-arrow-item .title {
  max-width: 13ch;
}

.blog-arrow-item.blog-next .title {
  text-align: right;
}

.comment-wrapper {
  margin-top: 3.75rem;
}

.single-comment {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.875rem;
  padding: 1.875rem;
  background-color: var(--light-100);
}

@media (max-width: 575px) {
  .single-comment {
    padding: 1.25rem;
  }
}

.single-comment .thumb {
  width: 65px;
  height: 65px;
}

.single-comment .thumb img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.single-comment .content {
  width: calc(100% - 65px);
  padding-inline-start: 1.25rem;
}

@media (max-width: 575px) {
  .single-comment .content {
    width: 100%;
    padding-inline-start: 0;
    margin-top: 1.25rem;
  }
}

.reply-btn {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-900);
  text-transform: uppercase;
  padding: 0.1875rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.reply-btn:hover {
  background-color: #fff;
}

.reply-wrapper {
  margin-top: 3.75rem;
}

.reply-wrapper form {
  margin-top: 2.5rem;
}

.reply-wrapper form .form-control,
.reply-wrapper form .form-select {
  border-width: 2px;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.blog-sidebar-box {
  padding: 1.875rem;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}

@media (max-width: 575px) {
  .blog-sidebar-box {
    padding: 1.25rem;
  }
}

.blog-sidebar-box .title {
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.blog-sidebar-search {
  position: relative;
}

.blog-sidebar-search input {
  height: 56px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 0.625rem 1.25rem;
  width: 100%;
}

.blog-sidebar-search button {
  position: absolute;
  top: 50%;
  inset-inline-end: 1.25rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--dark-900);
}

.short-blog-list .short-blog + .short-blog {
  margin-top: 1.25rem;
}

.short-blog {
  display: flex;
  flex-wrap: wrap;
}

.short-blog .thumb {
  width: 80px;
  height: 85px;
  display: block;
}

.short-blog .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.short-blog .content {
  width: calc(100% - 80px);
  padding-inline-start: 0.9375rem;
}

.short-blog .post-date {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.short-blog .post-date i {
  color: var(--primary);
  margin-inline-end: 0.3125rem;
}

.blog-category-list {
  padding: 0.625rem 1.25rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: var(--light-100);
}

.blog-category-list li {
  position: relative;
  padding-inline-start: 1.875rem;
  padding-block: 0.625rem;
}

.blog-category-list li::before {
  position: absolute;
  content: "\f07c";
  top: 10px;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: var(--primary);
}

.blog-category-list li a {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  color: var(--dark-900);
  transition: all 0.3s;
}

.blog-category-list li a:hover {
  color: var(--primary);
}

.blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-tag-list li a {
  padding: 0.3125rem 0.9375rem;
  background-color: var(--light-100);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.3s;
}

.blog-tag-list li a:hover {
  background-color: var(--primary);
  color: #fff;
}

/* === blog-details css end === */
/* === pricing css start === */
.pricing-switcher {
  width: 8.125rem;
  display: flex;
  flex-flow: column;
  gap: 0.625rem;
}

.pricing-switcher .pricing-switcher-btn {
  border-radius: 99px;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  -ms-border-radius: 99px;
  -o-border-radius: 99px;
  border: 1px solid var(--border-color);
  text-transform: capitalize;
}

.pricing-switcher .pricing-switcher-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pricing-card {
  height: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.pricing-card::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, #010d14, rgba(1, 13, 20, 0));
}

.pricing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.pricing-card-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  z-index: 1;
}

@media (max-width: 575px) {
  .pricing-card-overlay-content {
    padding: 1.25rem;
  }
}

.pricing-card-overlay-content .top {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.pricing-card-overlay-content .top i {
  color: #fff;
  font-size: 4.125rem;
  width: 3.75rem;
}

@media (max-width: 575px) {
  .pricing-card-overlay-content .top i {
    font-size: 3rem;
    width: 2.625rem;
  }
}

.pricing-card-overlay-content .top .title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  width: calc(100% - 3.75rem);
  padding-left: 0.9375rem;
  max-width: 15ch;
}

@media (max-width: 575px) {
  .pricing-card-overlay-content .top .title {
    width: calc(100% - 2.625rem);
    font-size: 1.125rem;
  }
}

@media (max-width: 575px) {
  .pricing-card-overlay-content .second-title {
    font-size: 1rem;
  }
}

.pricing-card .pricing-card-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.875rem;
}

@media (max-width: 575px) {
  .pricing-card .pricing-card-social {
    margin-top: 1.25rem;
  }
}

.pricing-card .pricing-card-social li a {
  width: 26px;
  height: 26px;
  border: 1px solid var(--light-200);
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-one {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-top: 5px solid var(--primary);
  background-color: #fff;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-flow: column;
}

.pricing-one-header {
  padding: 2.5rem 1.875rem;
  text-align: center;
  position: relative;
  background-color: #fff2e6;
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
}

@media (max-width: 575px) {
  .pricing-one-header {
    padding: 1.25rem 1.5625rem;
  }
}

.pricing-one-header .title {
  font-weight: 700;
  font-size: 1.875rem;
}

@media (max-width: 575px) {
  .pricing-one-header .title {
    font-size: 1.5rem;
  }
}

.pricing-one-body {
  padding: 1.25rem 2.5rem 1.875rem 2.5rem;
}

@media (max-width: 575px) {
  .pricing-one-body {
    padding: 1.5625rem;
  }
}

.pricing-one-body .price {
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--dark-900);
  font-family: var(--display-font);
  margin-bottom: 0.625rem;
}

@media (max-width: 575px) {
  .pricing-one-body .price {
    font-size: 2rem;
  }
}

.pricing-one-body .price sub {
  color: var(--dark-800);
  font-weight: 400;
  font-size: 1rem;
  font-family: var(--body-font);
}

.pricing-one-body .price .yearly-price {
  display: none;
}

.pricing-one .pricing-feature-list {
  margin-top: 2.5rem;
}

.pricing-one .pricing-feature-list li + li {
  margin-top: 0.625rem;
}

.pricing-one .pricing-feature-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
}

@media (max-width: 575px) {
  .pricing-one .pricing-feature-list li {
    font-size: 1rem;
  }
}

.pricing-one-footer {
  padding: 1.25rem 2.5rem 1.875rem 2.5rem;
  margin-top: auto;
}

@media (max-width: 575px) {
  .pricing-one-footer {
    padding: 1.25rem 1.5625rem 1.5625rem 1.5625rem;
  }
}

.pricing-section-two .pricing-switcher {
  flex-flow: row;
}

.pricing-section-two .pricing-switcher .btn {
  padding-block: 0.875rem;
  padding-inline: 2.1875rem;
}

.pricing-two {
  padding: 1.875rem 1.875rem 2.5rem 1.875rem;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  text-align: center;
  height: 100%;
}

.pricing-two .title {
  margin-bottom: 1.875rem;
}

.pricing-two .price {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.625rem;
  display: inline-block;
  padding: 0.3125rem 1.875rem;
  background-color: var(--light-100);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media (max-width: 575px) {
  .pricing-two .price {
    font-size: 1.5rem;
  }
}

.pricing-two .price sub {
  color: var(--dark-800);
  font-weight: 400;
  font-size: 1rem;
  font-family: var(--body-font);
}

.pricing-two .price .yearly-price {
  display: none;
}

.pricing-two-feature-list {
  margin-bottom: 1.25rem;
  margin-top: 0.625rem;
}

.pricing-two-feature-list li + li {
  border-top: 1px solid var(--border-color);
}

.pricing-two-feature-list li {
  padding: 0.75rem 0;
}

.pricing-two-feature-list li span {
  color: var(--dark-800);
  display: none;
}

@media (max-width: 1199px) {
  .pricing-two-feature-list li span {
    display: inline-block;
  }
}

.pricing-two-feature-list li i {
  color: var(--dark-900);
}

@media (max-width: 1199px) {
  .pricing-two-feature-list li i {
    margin-inline-end: 0.3125rem;
  }
}

.pricing-two.pricing-two-main {
  text-align: left;
  padding-top: 6rem;
}

.pricing-two.pricing-two-main .price {
  padding: 0;
  background-color: transparent;
}

.pricing-two.pricing-two-main .pricing-two-feature-list li span {
  display: inline-block;
}

/* === pricing css end === */
/* === overview css start === */
.overview-section {
  position: relative;
  z-index: 1;
}

.overview-section::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .overview-section::before {
    height: 140px;
  }
}

.overview-section .overview-section-line {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  opacity: 0.35;
}

@media (max-width: 991px) {
  .overview-content {
    text-align: center;
  }
}

.overview-content .section-title {
  color: #fff;
}

.overview-content p {
  color: var(--light-200);
  margin-top: 1.25rem;
}

.overview-content .btn {
  margin-top: 2.1875rem;
}

@media (max-width: 991px) {
  .overview-content .btn {
    margin-top: 1.25rem;
  }
}

.overview-item-two {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.125rem 1.25rem 1.75rem 1.25rem;
  background-color: #1b1c28;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media (max-width: 575px) {
  .overview-item-two {
    justify-content: center;
  }
}

.overview-item-two .icon {
  width: 3.75rem;
  height: 3.75rem;
  background-color: var(--primary);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -0.9375rem;
}

.overview-item-two .content {
  width: calc(100% - 60px);
  padding-inline-start: 2.1875rem;
}

@media (max-width: 1199px) {
  .overview-item-two .content {
    padding-inline-start: 1.25rem;
  }
}

@media (max-width: 575px) {
  .overview-item-two .content {
    width: 100%;
    padding-inline-start: 0;
    margin-top: 1.5625rem;
    text-align: center;
  }
}

.overview-item-two .content .amount {
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--display-font);
}

@media (max-width: 1199px) {
  .overview-item-two .content .amount {
    font-size: 2.25rem;
  }
}

@media (max-width: 575px) {
  .overview-item-two .content .amount {
    font-size: 2rem;
  }
}

.overview-item-two .content p {
  color: var(--light-200);
  margin-top: 0.5rem;
}

.overview-wrapper {
  padding-top: 5.625rem;
  position: relative;
  z-index: 2;
  margin-top: 4.375rem;
}

@media (max-width: 1199px) {
  .overview-wrapper {
    margin-top: 1.875rem;
  }
}

@media (max-width: 767px) {
  .overview-wrapper {
    padding-top: 1.875rem;
  }
}

.overview-wrapper-inner {
  position: relative;
  padding: 3.75rem;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .overview-wrapper-inner {
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .overview-wrapper-inner {
    text-align: center;
  }
}

.overview-wrapper .section-title {
  margin-bottom: 1.25rem;
}

.overview-wrapper .about-bottom-users {
  margin-top: 1.5625rem;
}

@media (max-width: 767px) {
  .overview-wrapper .about-bottom-users {
    justify-content: center;
  }
}

.overview-wrapper .overview-wrapper-shape {
  position: absolute;
  bottom: 0;
  inset-inline-end: 1.5625rem;
  z-index: -1;
}

.overview-wrapper .overview-wrapper-man {
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
}

@media (max-width: 767px) {
  .overview-wrapper .overview-wrapper-man {
    display: none;
  }
}
/* === overview css end === */
/* === gallery css start === */
.gallery-section {
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 210px;
  background-color: var(--dark-900);
}

.gallery-item {
  position: relative;
}

.gallery-item:hover .thumb img {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.gallery-item:hover .content {
  bottom: 1.875rem;
  opacity: 1;
}

.gallery-item .thumb {
  height: 34.0625rem;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media (max-width: 1399px) {
  .gallery-item .thumb {
    height: 16.8125rem;
  }
}

@media (max-width: 1199px) {
  .gallery-item .thumb {
    height: 22.125rem;
  }
}

@media (max-width: 991px) {
  .gallery-item .thumb {
    height: 15.625rem;
  }
}

.gallery-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery-item .content {
  position: absolute;
  bottom: 0.625rem;
  left: 1.875rem;
  width: calc(100% - 3.75rem);
  padding: 1.875rem;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9375rem;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .gallery-item .content {
    left: 0.9375rem;
    width: calc(100% - 1.875rem);
    padding: 1.25rem;
  }
}

.gallery-item .content .gallery-item-btn {
  width: 3.125rem;
  height: 3.125rem;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item.style-md::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, #0b0d26, rgba(217, 217, 217, 0));
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery-item.style-md:hover::before {
  opacity: 1;
}

.gallery-item.style-md .thumb {
  height: 23.75rem;
}

@media (max-width: 1399px) {
  .gallery-item.style-md .thumb {
    height: 19.375rem;
  }
}

@media (max-width: 1399px) {
  .gallery-item.style-md .thumb {
    height: 17.5rem;
  }
}

@media (max-width: 767px) {
  .gallery-item.style-md .thumb {
    height: 13.125rem;
  }
}

.gallery-item.style-md .content {
  z-index: 1;
  background-color: transparent;
  padding: 0;
}

.gallery-item.style-md .content p {
  color: #fff;
}

.gallery-item.style-md .content h3 a {
  color: #fff;
}

.gallery-item.style-md .content h3 a:hover {
  color: var(--primary);
}

.gallery-item.style-md .content .gallery-item-btn {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
}

#galleryTabContent .tab-pane.show .row div[class*="col-"] {
  opacity: 1;
  transform: translateY(0);
}

#galleryTabContent .tab-pane .row div[class*="col-"] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
}

#galleryTabContent .tab-pane .row div[class*="col-"]:nth-child(1) {
  transition-delay: 0.1s;
}

#galleryTabContent .tab-pane .row div[class*="col-"]:nth-child(2) {
  transition-delay: 0.2s;
}

#galleryTabContent .tab-pane .row div[class*="col-"]:nth-child(3) {
  transition-delay: 0.3s;
}

#galleryTabContent .tab-pane .row div[class*="col-"]:nth-child(4) {
  transition-delay: 0.4s;
}

#galleryTabContent .tab-pane .row div[class*="col-"]:nth-child(5) {
  transition-delay: 0.5s;
}

#galleryTabContent .tab-pane .row div[class*="col-"]:nth-child(6) {
  transition-delay: 0.6s;
}

#galleryTabContent .tab-pane .row div[class*="col-"]:nth-child(7) {
  transition-delay: 0.7s;
}

#galleryTabContent .tab-pane .row div[class*="col-"]:nth-child(8) {
  transition-delay: 0.8s;
}

#galleryTabContent .tab-pane .row div[class*="col-"]:nth-child(9) {
  transition-delay: 0.9s;
}

#galleryTabContent .tab-pane .row div[class*="col-"]:nth-child(10) {
  transition-delay: 0.1s;
}

.gallery-slider .slick-list {
  margin: 0 -0.9375rem;
}

@media (max-width: 991px) {
  .gallery-slider .slick-list {
    margin: 0 -0.625rem;
  }
}

.gallery-slider .gallery-slide {
  padding: 0 0.9375rem;
}

@media (max-width: 991px) {
  .gallery-slider .gallery-slide {
    padding: 0 0.625rem;
  }
}

.gallery-slider
  .gallery-slide.slick-active:not(.slick-current)
  .gallery
  .thumb {
  border-radius: 0 20px 20px 0;
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  -ms-border-radius: 0 20px 20px 0;
  -o-border-radius: 0 20px 20px 0;
}

.gallery-slider .gallery-slide.slick-current ~ .slick-active .gallery .thumb {
  border-radius: 20px 0 0 20px;
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
  -ms-border-radius: 20px 0 0 20px;
  -o-border-radius: 20px 0 0 20px;
}

/* === gallery css end === */
/* === video css start === */
.video-section-one {
  position: relative;
  z-index: 1;
}

.video-section-one::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background-color: var(--light-100);
  z-index: -1;
}

@media screen and (max-width: 3000px)
{

}

@media screen and (max-width: 2000px)
{
  .choose-section {
    margin-top:-450px !important;
  }
}

@media (max-width: 1600px)
{
  .choose-section {

    margin-top:-430px !important;
  }
}



@media (max-width: 1200px)
{
  .choose-section {

    margin-top:-450px !important;
  }
}



@media (max-width: 991px) {
  .video-section-one::before {
    height: 120px;
  }

  .choose-section {

    margin-top:-214px !important;
  }
}

@media (max-width: 767px) {
  .video-section-one::before {
    height: 80px;
  }
}

.video-wrapper {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.video-wrapper-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.375rem;
  height: 4.375rem;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.375rem;
}

@media (max-width: 575px) {
  .video-wrapper-btn {
    width: 2.8125rem;
    height: 2.8125rem;
    font-size: 0.875rem;
  }
}
/* === video css end === */
/* === choose css start === */
.choose-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top:-600px;
}





.choose-section-line {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.35;
  z-index: -1;
}

.choose-item {
  padding: 1.25rem 1.875rem;
  background-color: var(--dark-700);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-left: 1px solid var(--primary);
}

.choose-item-title {
  color: #fff;
  margin-bottom: 0.75rem;
}

.choose-item p {
  color: #fff;
}

.choose-thumb-one {
  padding-right: 30px;
  position: relative;
}

.choose-thumb-one img {
  border-radius: 50px 0 0 50px;
  -webkit-border-radius: 50px 0 0 50px;
  -moz-border-radius: 50px 0 0 50px;
  -ms-border-radius: 50px 0 0 50px;
  -o-border-radius: 50px 0 0 50px;
}

.choose-thumb-one::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.choose-thumb-two {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.875rem;
}

.choose-thumb-two .content {
  width: 190px;
  background-color: var(--primary);
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 1.875rem;
  border-radius: 20px 0 0 20px;
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
  -ms-border-radius: 20px 0 0 20px;
  -o-border-radius: 20px 0 0 20px;
}

.choose-thumb-two .content h3 {
  color: #fff;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 4.125rem;
  margin-top: -0.625rem;
}

.choose-thumb-two .content p {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}

.choose-thumb-two img {
  width: calc(100% - 190px);
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  border-radius: 0 50px 50px 0;
  -webkit-border-radius: 0 50px 50px 0;
  -moz-border-radius: 0 50px 50px 0;
  -ms-border-radius: 0 50px 50px 0;
  -o-border-radius: 0 50px 50px 0;
}

/* === choose css end === */
/* === contact css start === */
.contact-item {
  padding: 1.875rem;
  background-color: var(--light-100);
  height: 100%;
}

.contact-item .icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  color: var(--primary);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}

.contact-item .content {
  margin-top: 1.25rem;
}

.contact-item .content p {
  margin-top: 0.9375rem;
}

.contact-item .content a {
  word-break: break-all;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 1399px) {
  .contact-map iframe {
    height: 450px;
  }
}

@media (max-width: 991px) {
  .contact-map iframe {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .contact-map iframe {
    height: 300px;
  }
}

/* === contact css end === */
/*# sourceMappingURL=main.css.map */

.count-title {
  font-size: 50px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-weight: bold;
  color: #404040;
}
