/* --------------- variable --------------- */
:root {
  --color-main: #0066ff;
  --color-primary: #0066ff;
  --color-secondary: #02b5ff;
  --color-blue2: #4a00e1;
  --color-blue4: #5842bc;
  --color-blue5: #157efb;
  --color-blue6: #6640f4;
  --color-blue7: #8169f1;
  --color-lightBlue: #15f1ff;
  --color-darkBlue: #010049;
  --color-darkBlue2: #1f227d;
  --color-orange1: #ff7a41;
  --color-orange2: #f6c463;
  --color-orange3: #f9a41f;
  --color-red1: #cc2131;
  --color-red2: #ef1552;
  --color-green: #00c057;
  --color-yellowGreen: #cef54b;
  --color-gray: #eef4f8;
  --color-gray2: #f0eff5;
  --color-main-grad: linear-gradient(to right, #0c3df4 0%, #02b5ff 100%);
  --color-dark: #04000C;
  /* --color-dark: #212429; */
  --color-white: #fff;
  --color-cherry: #3667b1;
}


.color-main {
  color: var(--color-cherry) !important;
}

.border-main {
  border-color: var(--color-cherry) !important;
}

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

.color-lightBlue {
  color: var(--color-lightBlue) !important;
}

.border-lightBlue {
  border-color: var(--color-lightBlue) !important;
}

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

.color-darkBlue {
  color: var(--color-darkBlue) !important;
}

.border-darkBlue {
  border-color: var(--color-darkBlue) !important;
}

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

.hover-darkBlue:hover {
  color: var(--color-darkBlue) !important;
}

.color-darkBlue2 {
  color: var(--color-darkBlue2) !important;
}

.border-darkBlue2 {
  border-color: var(--color-darkBlue2) !important;
}

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

.hover-darkBlue2:hover {
  color: var(--color-darkBlue2) !important;
}

.bg-gradient {
  background-image: var(--color-main-grad) !important;
}

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

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

.color-blue2 {
  color: var(--color-blue2) !important;
}

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

.border-blue2 {
  border-color: var(--color-blue2) !important;
}

.color-blue4 {
  color: var(--color-blue4) !important;
}

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

.border-blue4 {
  border-color: var(--color-blue4) !important;
}

.color-blue5 {
  color: var(--color-blue5) !important;
}

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

.border-blue5 {
  border-color: var(--color-blue5) !important;
}

.color-blue6 {
  color: var(--color-blue6) !important;
}

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

.border-blue6 {
  border-color: var(--color-blue6) !important;
}

.color-blue7 {
  color: var(--color-blue7) !important;
}

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

.border-blue7 {
  border-color: var(--color-blue7) !important;
}

.hover-blue7 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-blue7:hover {
  background-color: var(--color-blue7) !important;
}

.color-orange1 {
  color: var(--color-orange1) !important;
}

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

.border-orange1 {
  border-color: var(--color-orange1) !important;
}

.hover-orange1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-orange1:hover {
  background-color: var(--color-orange1) !important;
}

.color-orange2 {
  color: var(--color-orange2) !important;
}

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

.border-orange2 {
  border-color: var(--color-orange2) !important;
}

.hover-orange2 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-orange2:hover {
  background-color: var(--color-orange2) !important;
}

.color-green {
  color: var(--color-green) !important;
}

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

.border-green {
  border-color: var(--color-green) !important;
}

.hover-green {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-green:hover {
  background-color: var(--color-green) !important;
}

.hover-green:hover * {
  color: #fff;
}

.color-yellowGreen {
  color: var(--color-yellowGreen) !important;
}

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

.border-yellowGreen {
  border-color: var(--color-yellowGreen) !important;
}

.hover-yellowGreen {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-yellowGreen:hover {
  background-color: var(--color-yellowGreen) !important;
}

.hover-yellowGreen:hover * {
  color: #000;
}

.color-orange3 {
  color: var(--color-orange3) !important;
}

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

.border-orange3 {
  border-color: var(--color-orange3) !important;
}

.hover-orange3 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-orange3:hover {
  background-color: var(--color-orange3) !important;
}

.hover-orange3:hover * {
  color: #fff;
}

.color-red1 {
  color: var(--color-red1) !important;
}

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

.border-red1 {
  border-color: var(--color-red1) !important;
}

.hover-red1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-red1:hover {
  background-color: var(--color-red1) !important;
}

.hover-red1:hover * {
  color: #fff;
}

.color-red2 {
  color: var(--color-red2) !important;
}

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

.border-red2 {
  border-color: var(--color-red2) !important;
}

.hover-red2 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-red2:hover {
  background-color: var(--color-red2) !important;
}

.hover-red2:hover * {
  color: #fff;
}

/* ===============================================================
			[ * global Section ] 
================================================================*/
/* --------------- global --------------- */
*,
* button:focus {
  outline: 0;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  /* border-radius: 10px; */
}

html::-webkit-scrollbar-thumb {
  background: #999;
  -webkit-border-radius: 0;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

/* #chat-widget-container{
  left: auto !important;
  right: 0;
} */
body {
  font-family: 'Oswald';
  font-display: swap;
  /* font-family: "Inter", sans-serif; */
  text-decoration: none;
  font-size: 0.9em;
  /* overflow-x: hidden; */
  position: relative;
  font-weight: 400;
  line-height: 1.5;
  overscroll-behavior: none;
  overflow: hidden;
}
a, h1,h2,h3,h4,h5,h6,p{
  font-family: 'Oswald';
}
.home-style-8 {
  color: #313131;
}

.home-style-8 a:hover {
  color: var(--color-main);
}

.container,
.container-fluid {
  position: relative;
  z-index: 5;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1170px;
  padding-right: 15px;
  padding-left: 15px;
}
.row{
  row-gap: 24px;
}
.row:not(.gx-0):not(.gx-1):not(.gx-2):not(.gx-3):not(.gx-4):not(.gx-5) {
  margin-right: -15px;
  margin-left: -15px;
}

.row:not(.gx-0):not(.gx-1):not(.gx-2):not(.gx-3):not(.gx-4):not(.gx-5)>* {
  padding-right: 15px;
  padding-left: 15px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

h5,
h6,
.h5 {
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  outline: 0;
}

a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--color-white);
  text-decoration: none !important;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.bi {
  display: inline-block;
}

.text {
  font-size: 14px;
  line-height: 2;
}

.small,
small {
  font-size: 13px;
  line-height: 1.7;
  display: inline-block;
}

small.text {
  font-size: 12px;
}

.text-gray {
  color: #666;
}

.bg-gray5 {
  background-color: #f3f7fe;
}

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

/* --------------- dropdown --------------- */
.dropdown-toggle::after {
  position: relative;
  top: 3px;
  opacity: 0.8;
  content: "\f078";
  font-weight: 900;
  font-family: "Font Awesome 5 pro";
  font-display: swap;
  border: 0;
  font-size: 80%;
}

.dropdown-menu {
  min-width: 170px;
  padding: 15px 0;
  /* border-radius: 15px; */
  border: 0;
  -webkit-box-shadow: 0 0 20px #0001;
  box-shadow: 0 0 20px #0001;
  top: 100%;
}

.dropdown-menu .dropdown-item {
  padding: 8px 20px;
  font-size: 12px;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-switch .form-check-input {
  margin: 0 15px !important;
  width: 2.5em !important;
  height: 1.3em;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

.form-switch .form-check-input.color-lightBlue:checked {
  background-color: var(--color-lightBlue);
  border-color: var(--color-lightBlue);
  background-image: url(../img/icons/toggle_dot.svg);
}

/* --------------- Start Preloader --------------- */
.pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99999999999999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: 0px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  pointer-events: none;
}

.pace .pace-progress {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 300px;
  position: fixed;
  z-index: 99999999999999;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100% !important;
  background: #fff;
}

.pace.pace-inactive {
  width: 100vw;
  opacity: 0;
}

.pace.pace-inactive .pace-progress {
  max-width: 100vw;
}

#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  pointer-events: none;
  background-color: #fff;
}

/* --------------- End Preloader --------------- */
/* --------------- to_top button --------------- */
.to_top {
  position: fixed;
  z-index: 9999;
  bottom: 30px;
  right: -50px;
  width: 35px;
  height: 35px;
  border-radius: 7px;
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding: 7px;
  line-height: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 5px 10px #0002;
  box-shadow: 0 5px 10px #0002;
  background-color: #CC3333;
}

.to_top small {
  display: block;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 8px;
}

.to_top i {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.to_top.show {
  right: 30px;
  opacity: 1;
}
button{
  box-shadow: none !important;
}
/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
*/
.rotate-center {
  -webkit-animation: rotate-center 100s linear infinite both;
  animation: rotate-center 100s linear infinite both;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**
 * ----------------------------------------
 * animation slide_up_down
 * ----------------------------------------
*/
.slide_up_down {
  -webkit-animation: slide_up_down 1.7s ease-in-out infinite alternate both;
  animation: slide_up_down 1.7s ease-in-out infinite alternate both;
}

/* ------- */
@-webkit-keyframes slide_up_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes slide_up_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

/**
 * ----------------------------------------
 * animation wave
 * ----------------------------------------
*/
.wave {
  -webkit-animation: wave 2s ease-in-out infinite alternate both;
  animation: wave 2s ease-in-out infinite alternate both;
}

/* ------- */
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }

  100% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
}

@keyframes wave {
  0% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }

  100% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
}

/**
 * ----------------------------------------
 * animation scale_up_down
 * ----------------------------------------
*/
.scale_up_down {
  -webkit-animation: scale_up_down 1s ease-in-out infinite alternate both;
  animation: scale_up_down 1s ease-in-out infinite alternate both;
}

/* ------- */
@-webkit-keyframes scale_up_down {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale_up_down {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.left_to_right_apperance {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all .8s ease-in-out;
  -o-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
  -webkit-transition-delay: .4s;
  -o-transition-delay: .4s;
  transition-delay: .4s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.left_to_right_apperance.animated {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* ===============================================================
			[ * buttons Section ] 
================================================================*/
/* --------------- helper classes --------------- */
/* --------------- radius classes --------------- */
.radius-1 {
  border-radius: 3px !important;
}

.radius-2 {
  border-radius: 5px !important;
}

.radius-3 {
  border-radius: 8px !important;
}

.radius-4 {
  border-radius: 10px !important;
}

.radius-5 {
  border-radius: 12px !important;
}

.radius-6 {
  border-radius: 15px !important;
}

.radius-7 {
  border-radius: 20px !important;
}

.radius-8 {
  border-radius: 25px !important;
}

.radius-9 {
  border-radius: 30px !important;
}

.radius-10 {
  border-radius: 50px !important;
}

/* --------------- margin classes --------------- */
.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

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

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

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

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

/* --------------- padding classes --------------- */
.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pb-200 {
  padding-bottom: 200px !important;
}

/* --------------- opacity classes --------------- */
.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-8 {
  opacity: 0.8;
}

.op-9 {
  opacity: 0.9;
}

.op-10 {
  opacity: 1;
}

/* --------------- lineHeight classes --------------- */
.lh-1 {
  line-height: 1;
}

.lh-2 {
  line-height: 1.2;
}

.lh-3 {
  line-height: 1.4;
}

.lh-4 {
  line-height: 1.6;
}

.lh-5 {
  line-height: 1.8;
}

.lh-6 {
  line-height: 2;
}

.lh-7 {
  line-height: 2.5;
}

.lh-8 {
  line-height: 3;
}

/* --------------- border color classes --------------- */
.brd-light {
  border-color: #fff4 !important;
}

.brd-gray {
  border-color: #0002 !important;
}

.bg-black {
  background-color: #000 !important;
}

/* ---------------  color classes --------------- */
.color-000 {
  color: #000 !important;
}

.color-111 {
  color: #111 !important;
}

.color-222 {
  color: #222 !important;
}

.color-333 {
  color: #333 !important;
}

.color-444 {
  color: #444 !important;
}

.color-555 {
  color: #555 !important;
}

.color-666 {
  color: #666 !important;
}

.color-777 {
  color: #777 !important;
}

.color-888 {
  color: #888 !important;
}

.color-999 {
  color: #999 !important;
}

/* --------------- icons size --------------- */
.icon-10 {
  width: 10px;
  height: 10px;
}

.icon-15 {
  width: 15px;
  height: 15px;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-25 {
  width: 25px;
  height: 25px;
}

.icon-30 {
  width: 30px;
  height: 30px;
}

.icon-35 {
  width: 35px;
  height: 35px;
}

.icon-40 {
  width: 40px;
  height: 40px;
}

.icon-45 {
  width: 45px;
  height: 45px;
}

.icon-50 {
  width: 50px;
  height: 50px;
}

.icon-55 {
  width: 55px;
  height: 55px;
}

.icon-60 {
  width: 60px;
  height: 60px;
}

.icon-65 {
  width: 65px;
  height: 65px;
}

.icon-70 {
  width: 70px;
  height: 70px;
}

.icon-75 {
  width: 75px;
  height: 75px;
}

.icon-80 {
  width: 80px;
  height: 80px;
}

/* --------------- img classes --------------- */
.img-cover {
  display: block;
}

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

.img-contain {
  display: block;
}

.img-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.imgrotate-scale-hover {
  overflow: hidden;
  display: block;
}

.imgrotate-scale-hover img {
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}

.imgrotate-scale-hover:hover img {
  -webkit-transform: rotate(-10deg) scale(1.2);
  -ms-transform: rotate(-10deg) scale(1.2);
  transform: rotate(-10deg) scale(1.2);
}

/* --------------- letter spacing classes --------------- */
.ltspc-1 {
  letter-spacing: 1px;
}

.ltspc-2 {
  letter-spacing: 2px;
}

.ltspc-3 {
  letter-spacing: 3px;
}

.ltspc-4 {
  letter-spacing: 4px;
}

.ltspc-5 {
  letter-spacing: 5px;
}

.ltspc-8 {
  letter-spacing: 8px;
}

.ltspc-10 {
  letter-spacing: 10px;
}

.ltspc-12 {
  letter-spacing: 12px;
}

.ltspc-15 {
  letter-spacing: 15px;
}

.ltspc-17 {
  letter-spacing: 17px;
}

.ltspc-20 {
  letter-spacing: 20px;
}

.fs-10px {
  font-size: 10px !important;
}

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

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

/* ===============================================================
			[ * buttons Section ] 
================================================================*/
/* --------------- buttons styles --------------- */
.butn,
.btn {
  padding: 12px 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.butn span,
.btn span {
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: capitalize;
}

.butn small,
.btn small {
  font-size: 12px;
  position: relative;
  z-index: 2;
  text-transform: capitalize;
}

.butn.butn-gard::before,
.btn.butn-gard::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 150%;
  height: 100%;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #0c3df4), color-stop(45%, #02b5ff), color-stop(#02b5ff), to(#0c3df4));
  background: -webkit-linear-gradient(left, #0c3df4 10%, #02b5ff 45%, #02b5ff, #0c3df4);
  background: -o-linear-gradient(left, #0c3df4 10%, #02b5ff 45%, #02b5ff, #0c3df4);
  background: linear-gradient(to right, #0c3df4 10%, #02b5ff 45%, #02b5ff, #0c3df4);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.butn.butn-gard:hover::before,
.btn.butn-gard:hover::before {
  left: -50%;
}

.butn.dark-butn,
.btn.dark-butn {
  background: #000;
}

.butn.dark-butn span,
.butn.dark-butn small,
.btn.dark-butn span,
.btn.dark-butn small {
  color: #fff;
}

.butn.butn-blue6,
.btn.butn-blue6 {
  background: var(--color-blue6);
}

.butn.butn-blue6 span,
.butn.butn-blue6 small,
.btn.butn-blue6 span,
.btn.butn-blue6 small {
  color: #fff;
}

.butn.blue5-3Dbutn,
.btn.blue5-3Dbutn {
  background: var(--color-blue5);
  -webkit-box-shadow: 0px 4px 0px 0px var(--color-blue4);
  box-shadow: 0px 4px 0px 0px var(--color-blue4);
  -webkit-filter: drop-shadow(0 13px 20px #07397235);
  filter: drop-shadow(0 13px 20px #07397235);
  font-size: 12px;
}

.butn.blue5-3Dbutn span,
.butn.blue5-3Dbutn small,
.btn.blue5-3Dbutn span,
.btn.blue5-3Dbutn small {
  color: #fff;
}

.butn.sm-butn,
.btn.sm-butn {
  padding: 10px 25px;
}

.butn.sm-butn span,
.btn.sm-butn span {
  font-size: 12px;
}

.butn:hover,
.btn:hover {
  background: var(--color-main);
  border-color: transparent !important;
}

.butn:hover span,
.btn:hover span {
  color: #fff;
}

.butn.hover-darkBlue:hover,
.btn.hover-darkBlue:hover {
  background: var(--color-darkBlue);
  border-color: transparent !important;
}

.butn.hover-darkBlue:hover span,
.butn.hover-darkBlue:hover small,
.btn.hover-darkBlue:hover span,
.btn.hover-darkBlue:hover small {
  color: #fff;
}

.butn.hover-blue2:hover,
.btn.hover-blue2:hover {
  background: var(--color-blue2);
  border-color: transparent !important;
}

.butn.hover-blue2:hover span,
.butn.hover-blue2:hover small,
.btn.hover-blue2:hover span,
.btn.hover-blue2:hover small {
  color: #fff;
}

.butn.hover-blue4:hover,
.btn.hover-blue4:hover {
  background: var(--color-blue4);
  border-color: transparent !important;
}

.butn.hover-blue4:hover span,
.butn.hover-blue4:hover small,
.btn.hover-blue4:hover span,
.btn.hover-blue4:hover small {
  color: #fff;
}

.butn.hover-blue5:hover,
.btn.hover-blue5:hover {
  background: var(--color-blue5) !important;
  border-color: transparent !important;
}

.butn.hover-blue5:hover span,
.butn.hover-blue5:hover small,
.btn.hover-blue5:hover span,
.btn.hover-blue5:hover small {
  color: #fff;
}

.butn.hover-lightBlue:hover,
.btn.hover-lightBlue:hover {
  background: var(--color-lightBlue);
  border-color: transparent !important;
}

.butn.hover-lightBlue:hover span,
.butn.hover-lightBlue:hover small,
.btn.hover-lightBlue:hover span,
.btn.hover-lightBlue:hover small {
  color: var(--color-darkBlue);
}

.butn.btn-icon-circle,
.btn.btn-icon-circle {
  position: relative;
  padding-right: 50px;
  text-transform: capitalize;
}

.butn.btn-icon-circle i,
.btn.btn-icon-circle i {
  position: absolute;
  right: -43px;
  bottom: -5px;
  width: 30px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  font-size: 16px;
}

.butn.btn-icon-circle:hover,
.btn.btn-icon-circle:hover {
  -webkit-box-shadow: 0 5px 10px #0003;
  box-shadow: 0 5px 10px #0003;
}

.butn.btn-icon-circle:hover i,
.btn.btn-icon-circle:hover i {
  -webkit-animation: RL_smooth 1s ease-in-out infinite alternate both;
  animation: RL_smooth 1s ease-in-out infinite alternate both;
}

.butn.hover-shadow,
.btn.hover-shadow {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.scale_up_down {
  -webkit-animation: RL_smooth 1s ease-in-out infinite alternate both;
  animation: RL_smooth 1s ease-in-out infinite alternate both;
}

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

  50% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }

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

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

  50% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }

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

/* ===============================================================
			[ * section title ] 
================================================================*/
/* --------------- section head styles --------------- */
.section-head h6 {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* --------------- section style-8 --------------- */
.section-head.style-8 h6 {
  font-weight: normal;
  font-size: 14px;
  color: var(--color-white);
  /* text-decoration: underline; */
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head.style-8 h2 {
  font-family: 'Oswald';
  color: #110000;
  font-size: 52px;
  font-weight: 600;
  text-transform: capitalize;
}


/* ===============================================================
			[ * top side menu Section ] 
================================================================*/
.side_menu.style-7 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--color-gray2);
  height: 100vh;
  width: 40%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.side_menu.style-7 .content {
  width: 100%;
}

.side_menu.style-7 .content .logo {
  padding: 30px 7vw;
  border-bottom: 1px solid #9993;
}

.side_menu.style-7 .content .logo img {
  width: 300px;
  max-width: 50%;
}

.side_menu.style-7 .content .side_foot {
  padding: 30px 7vw;
  border-top: 1px solid #9993;
}

.side_menu.style-7 .content .side_foot h5 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.side_menu.style-7 .pages_links {
  padding: 15px 7vw;
  height: calc(100vh - 240px);
  overflow: auto;
}

.side_menu.style-7 .pages_links::-webkit-scrollbar {
  height: 5px;
  width: 3px;
  background: #8169f122;
  border-radius: 10px;
}

.side_menu.style-7 .pages_links::-webkit-scrollbar-thumb {
  background: var(--color-blue7);
  -webkit-border-radius: 0;
  border-radius: 10px;
}

.side_menu.style-7 .pages_links::-webkit-scrollbar-corner {
  background: #8169f122;
  border-radius: 10px;
}

.side_menu.style-7 .pages_links li {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.side_menu.style-7 .pages_links li a {
  color: #222;
  font-size: calc(14px + 1.5vw);
  font-weight: bold;
  margin: 10px 0;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-transform: capitalize;
}

.side_menu.style-7 .pages_links li a::after {
  position: absolute;
  content: "";
  left: 110%;
  top: 60%;
  width: 0;
  height: 2px;
  background-color: var(--color-blue7);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.side_menu.style-7 .pages_links li a:hover,
.side_menu.style-7 .pages_links li a.active {
  color: var(--color-blue7);
}

.side_menu.style-7 .pages_links li a:hover::after,
.side_menu.style-7 .pages_links li a.active::after {
  width: 50px;
}

.side_menu.style-7 .pages_links ul li {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.side_menu.style-7 .pages_links ul li:nth-of-type(1) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.side_menu.style-7 .pages_links ul li:nth-of-type(2) {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.side_menu.style-7 .pages_links ul li:nth-of-type(3) {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.side_menu.style-7 .pages_links ul li:nth-of-type(4) {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.side_menu.style-7 .pages_links ul li:nth-of-type(5) {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.side_menu.style-7 .pages_links ul li:nth-of-type(6) {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.side_menu.style-7 .pages_links ul li:nth-of-type(7) {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.side_menu.style-7 .pages_links ul li:nth-of-type(8) {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.side_menu.style-7 .side_menu_cls {
  position: absolute;
  top: 40px;
  right: 30px;
}

.side_menu.style-7 .side_menu_cls:hover {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.side_menu.style-7.show {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  pointer-events: all;
  border-radius: 0;
}

.side_menu.style-7.show li {
  opacity: 1;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

.side_menu.style-7.dark_theme {
  background-color: #000;
  color: #fff;
}

.side_menu.style-7.dark_theme .pages_links li a {
  color: #999;
}

.side_menu.style-7.dark_theme .pages_links li a::after {
  background: #999;
}

.side_menu.style-7.dark_theme .pages_links li a:hover {
  color: #fff;
}

.side_menu.style-7.dark_theme .pages_links li a:hover::after {
  background: #999;
}

.side_menu.style-7.dark_theme::-webkit-scrollbar {
  background: #fff3;
}

.side_menu.style-7.dark_theme::-webkit-scrollbar-thumb {
  background: #fff3;
}

.side_menu.style-7.dark_theme::-webkit-scrollbar-corner {
  background: #fff3;
}

.side_overlay {
  position: fixed;
  z-index: 99998;
  width: 100vw;
  height: 100vh;
  background-color: #0009;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.side_overlay.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 480px) {
  .side_menu.style-7 {
    width: 100%;
  }

  .side_menu.style-7 .pages_links {
    height: calc(100vh - 273px);
  }
}

/* ===============================================================
			[ * navbar Section ] 
================================================================*/
/* --------------- navbar styles --------------- */
.nav-container {
  z-index: 999;
}

.navbar {
  z-index: 999;
  background-color: #313131;
}

.navbar .nav-link {
  cursor: pointer;
}

.navbar.nav-scroll {
  /* background: #fff !important; */
  background-image: linear-gradient(101deg, rgba(245, 247, 250, .12), rgba(245, 247, 250, .06) 52%, rgba(245, 247, 250, 0));
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
  position: fixed !important;
  top: -100px !important;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  border-radius: 0 !important;
  margin: 0 !important;
}

.navbar.style-1 {
  padding: 30px 0;
}

.navbar.style-1 .navbar-brand {
  margin-right: 40px;
}

.nav-link {
  font-size: 12px;
  color: #000;
  font-weight: 700;
  line-height: 2;
  margin: 0 7px;
  text-transform: capitalize;
}

.nav-link.active {
  color: var(--color-main);
}

.navbar.style-1 .nav-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar.style-1 .nav-side .hotline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #9993;
}

.navbar.style-1 .nav-side .hotline .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--color-main-grad);
  color: #fff;
  font-size: 13px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.navbar.style-1 .nav-side .hotline .cont h6 {
  color: #000;
  font-size: 15px;
  font-weight: bold;
}

.navbar.style-1 .qoute-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar.style-1 .qoute-nav a .cart-num {
  font-size: 9px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-main-grad);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.navbar.style-8 {
  padding: 16px 0;
}

.navbar.style-8 .navbar-brand {
  width: 150px;
}

.navbar.style-8 .navbar-nav .nav-item .nav-link {
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  padding: 0;
  margin: 15px 20px;
  color: var(--color-white);
  text-transform: capitalize;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.btn-cherry-outline {
  border: 1px solid #381D6A;
}

.max-w-620 {
  max-width: 620px !important;
}

.max-w-560 {
  max-width: 560px !important;
}

.max-w-320 {
  max-width: 320px !important;
}

.min-h-100 {
  min-height: 100vh !important;
}

@media screen and (max-width:1200px) {
  .back-drop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(22, 28, 36, 0.8);
    opacity: 0;
    display: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  }

  .back-drop.active {
    display: block;
    opacity: 1;
  }

  /* .navbar {
    background-image: linear-gradient(101deg, rgba(245, 247, 250, .12), rgba(245, 247, 250, .06) 52%, rgba(245, 247, 250, 0));
    backdrop-filter: blur(40px);
  } */
  .navbar-collapse {
    position: fixed;
    left: -300px;
    top: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    padding: 48px 16px;
    background-color: #04000C;
    transition: left 0.25s ease;
    z-index: 1000;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .nav-side .btn {
    margin-left: 20px;
  }

  .nav-side .btn-cherry-outline {
    margin-bottom: 16px;
  }

  .nav-link {
    width: fit-content;
  }
}

/* ===============================================================
			[ * header Section ] 
================================================================*/


header.style-8 {
  background-image: url(../img/hero_bg.png);
  min-height: 100vh;
  background-size: auto;
  background-position: center;
}

header.style-8 .info h1 {
  font-size: 60px;
  margin-bottom: 30px;
  margin-top: 10px;
}

header.style-8 .info .form h5 {
  font-size: 20px;
  font-weight: 300;
}



header {
  position: relative;
}

header>.container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width:991px) {
  header .header-img {
    max-width: 400px;
    width: 100%;
  }

  header.style-8 .info h1 {
    font-size: 40px;
  }
}

/* ===============================================================
			[ * about Section ] 
================================================================*/
.about.style-8 .info ul li {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about.style-8 .info ul li .icon {
  width: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-margin-end: 15px;
  margin-inline-end: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.about.style-8 .info ul li p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.about.style-8 .info .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about.style-8 .info .author .inf p {
  color: var(--color-main);
}

.about.style-8 .info .author .inf h6 {
  font-size: 18px;
  font-weight: bold;
}

/* ===============================================================
			[ * services Section ] 
================================================================*/
/* --------------- services styles --------------- */



/* ===============================================================
			[ * testimonials Section ] 
================================================================*/
/* --------------- testimonials styles --------------- */

.text-ellipsis-box {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

footer{
  background-image: url(../img/footer_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-title{
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}
/* ===============================================================
			[ * about 2 page Style ] 
================================================================*/
/* --------------- about2 page style-5 --------------- */

.about .info {
  /* border: 1px solid #1d2d40; */
  --border-width: 1px;
  position: relative;
  border-radius: 12px;
  background: #19161C;
  padding: 40px;
  border: 1px solid transparent;
}

.about .info::before {
  content: " ";
  position: absolute;
  inset: calc(var(--border-width) * -1);
  border: inherit;
  border-radius: inherit;
  background-image: conic-gradient(from var(--angle), #1d2d40 80%, #fff 88%, #fff 92%, #1d2d40 100%);
  background-origin: border-box;
  -webkit-mask:
    linear-gradient(black, black) content-box,
    linear-gradient(black, black);
  mask: linear-gradient(black, black),
    linear-gradient(black, black);
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 3s linear infinite;
}

@supports not (background: paint(something)) {
  .about .info::before {
    background-image: conic-gradient(#381D6A 80%, #E0D1FF 88%, #E0D1FF 92%, #381D6A 100%);
  }
}

.about .info:hover::before {
  animation-play-state: paused;
}

@property --angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}

@keyframes spin {
  to {
    --angle: 1turn;
  }
}

/* -------------------- responsive style ------------------------- */

@media screen and (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-head h2 {
    font-size: 25px;
  }

  .numbers.style-8 .content .plat-icons .icon {
    width: 50px !important;
    height: 50px !important;
    padding: 10px !important;
  }

  .pricing.style-8 .pricing-tabsHead {
    margin-top: 80px;
  }

  .pricing.style-8 .pricing-body .pricing-card {
    border-radius: 10px;
  }

  .blog.style-8 .main-post {
    margin-bottom: 50px;
  }

  .blog.style-8 .side-posts .item .info h4.title {
    font-size: 18px;
  }

  footer.style-8 .content .logo-social .foot-logo img {
    margin-bottom: 30px;
  }

  .career-details-page p {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  body {
    overflow: auto;
  }

  
}

/* ======== */
/* ======= */
@media screen and (max-width: 480px) {
  .screenshots.style-4 .screenshots-slider .img {
    margin: 0 auto;
    width: 150px;
    height: 300px;
  }

  .screenshots.style-4 .mob-hand {
    bottom: 165px;
    height: 435px;
    -webkit-transform: translateX(-35%);
    -ms-transform: translateX(-35%);
    transform: translateX(-35%);
  }
}

.numbers.style-8 .content ul li p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding-bottom: 10px
}

.numbers.style-8 .content ul {
  list-style-type: auto !important;
}

.numbers.style-8 .content {
  border-radius: 24px;
  min-height: 230px;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  box-shadow: 8px 8px 24px 0 rgba(9, 13, 20, .4), -4px -4px 8px 0 rgba(224, 224, 255, .04), 0 1px 1px 0 rgba(9, 13, 20, .4);
  border: 1px solid rgba(245, 247, 250, .06);
  background-image: linear-gradient(102deg, rgba(245, 247, 250, .12), rgba(245, 247, 250, .06) 52%, rgba(245, 247, 250, 0));
  padding: 10px;
  transition: .35s;
  margin-bottom: 40px;
}

.numbers.style-8 .content .accordion .accordion-item {
  background: #212429;
  border-radius: 24px;
  background-image: linear-gradient(102deg, rgba(245, 247, 250, .12), rgba(245, 247, 250, .06) 52%, rgba(245, 247, 250, 0));
  margin-bottom: 1em;
}

.numbers.style-8 .numbers-btm .numbers-content .number-card .icon img {
  width: 60px;
}


.numbers.style-8 .accordion .accordion-button {
  background: transparent !important;
  color: var(--color-white) !important;
  font-size: 18px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-weight: bold;
  padding: 25px 16px;
}

.numbers.style-8 .accordion .accordion-button span {
  color: var(--color-green);
  -webkit-margin-end: 15px;
  margin-inline-end: 15px;
}

.numbers.style-8 .accordion .accordion-button::after {
  background-size: 12px;
}

.numbers.style-8 .accordion .accordion-body {
  font-size: 16px;
  color: var(--color-white);
  padding-left: 20px;
  padding-top: 0;
}

@media screen and (max-width: 576px) {
  .numbers.style-8 .numbers-btm .numbers-content .number-card .icon img {
    width: 40px;
  }

  .numbers.style-8 .numbers-btm .numbers-content .number-card .inf h3 {
    font-size: 28px;
  }

  .numbers.style-8 .numbers-btm .numbers-content .number-card .inf p {
    font-size: 11px;
  }

  .section-head.style-8 h2 {
    font-size: 26px;
  }
}

.btn-cherry {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -.4px;
  padding: 12px 24px;
  color: rgb(255, 255, 255);
  transition: all 0.4s ease 0s;
  overflow: hidden;
}

.btn-cherry-default {
  border-radius: 100px;
  color: rgb(255, 255, 255);
  transition: all 0.4s ease 0s;
  overflow: hidden;
  z-index: 2;
  background-color: #381D6A;
  border: 1px solid transparent !important;
}

.btn-cherry-outline {
  border-radius: 100px;
  color: rgb(255, 255, 255);
  transition: all 0.4s ease 0s;
  overflow: hidden;
  z-index: 2;
  box-shadow: none !important;
}

.btn-cherry-default:hover {
  background-color: #381D6A;
}

.btn-cherry-outline:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.btn-cherry-default::before,
.btn-cherry-outline::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 100%;
  transition: all 0.5s ease 0s;
  border-radius: 0px;
  z-index: -1;
}

.btn-cherry-default::before {
  background: rgba(0, 0, 0, 0.7);
}

.btn-cherry-outline::before {
  background: #381D6A;
}

.btn-cherry-default:hover::before,
.btn-cherry-outline:hover::before {
  width: 100%;
  border-radius: 0px;
}

.text-gradient1 {
  background: linear-gradient(57deg, rgba(249, 119, 255, 1) 8%, rgba(54, 212, 255, 1) 47%, rgba(43, 252, 135, 1) 83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.font-bold {
  font-weight: bold;
}

/* section title css start */
.section-title-box {
  width: fit-content;
  color: #CC3333;
}

.section-title-box div {
  background: rgba(204, 51, 51, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
}

canvas.background {
  position: fixed;
  left: 0;
  top: 0;
  background-image: linear-gradient(120deg, #170733 0%, var(--color-dark) 50%, var(--color-dark) 100%);
}
#model_viewer{
  background-color: transparent;
}
.new-badge {
  position: absolute;
  top: -5px;
  left: 78px;
  animation: heartbeat 3s cubic-bezier(.175, .885, .32, 1.3) infinite;
}

.catalog .container>div {
  position: relative;
  border-radius: 12px;
  border: 1px solid #1d2d40;
  background: #19161C;
  padding: 40px;
}

.reveal {
  /* visibility: hidden; */
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
  transition: none !important;
}

@keyframes heartbeat {

  0%,
  10%,
  20% {
    transform: scale(1);
  }

  5%,
  15% {
    transform: scale(1.1);
  }
}

.text-body1{
  font-size: 18px;
}
.text-body2{
  font-size: 16px;
}
.text-body3{
  font-size: 14px;
}
.card {
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding: 30px;
}

.icon-container {
  width: 50px;
  height: 50px;
  background-color: #fde8e8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.iconify {
  color: #CC3333;
  font-size: 24px;
}

.card-title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}
.card-text{
  margin-bottom: 16px;
  font-size: 14px;
}
.btn-outline-cherry {
  color: #CC3333;
  border-color: #CC3333;
  border-radius: 5px;
  font-size: 0.8rem;
  padding: 0.375rem 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-outline-cherry:hover {
  background-color: #CC3333;
  color: white;
}
.text-cherry {
    color: #CC3333;
}

.bg-cherry {
    background-color: #CC3333;
}

.btn-cherry {
    background-color: #CC3333;
    border-color: #CC3333;
    color: white;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
}

.btn-cherry:hover {
    background-color: #fff;
    border-color: #CC3333 !important;
    color: #CC3333 !important;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-color: #222222;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
}

.nav-link {
    color: white;
    margin: 0 1rem;
}

.nav-link:hover {
    color: #CC3333 !important;
}
footer .nav-link{
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  -webkit-text-stroke: 2px #CC3333;
  margin-bottom: 15px;
  line-height: 1;
}
footer .foot-title {
  font-size: 18px;
  font-weight: 600;
}
footer .foot{
  border-top: 1px solid #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.effect-bounce:hover {
    animation: bounce 0.8s infinite;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    animation: rotate 2s linear infinite;
}

.path {
    stroke: #e53e3e;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

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

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}