/*
--------------------------------------------
1.common
*/
/*
************
*************************

   Template Name: Sasup - Sass Landing WordPress Theme
   Description: Sass Landing WordPress Theme
   Author: Bdevs
   Version: 1.0

-----------------------------------------------------------------------------------

CSS INDEX
===================
1.common
2.breadcrumb
3.buttons
4.animated
5.section_title
6.back-to-top
7.header
8.form
9.hero
10.feature
11.slider
12.cta
13.development_flowchart
14.service
15.team
16.counter
17.subscribe
18.creative_task
19.pricing
20.news
21.news
22.testimonial
23.footer
24.svg
25.about
26.faq
27.breadcrumb
28.brand
29.widget
30.portfolio
31.biography
32.contact
33.error


******************************************************* 
*************************************************************** */
/*
************
*************************
01. common
******************************************************* 
*************************************************************** */
/* colors home 1*/

/* <<<<<<<    Declaration   >>>>>>>>> */
:root {
  /**
  @color declaration
  */
  --clr-theme-1: #2f75ff;
  --clr-theme-2: #fb5050;
  --clr-tertiary: #fb4e7f;
  --clr-tertiary2: #21ad94;
  --clr-tertiary3: #ff4e80;
  --clr-tertiary4: #6A55FF;
  --clr-common-white: #fff;
  --clr-common-black: #000;
  --clr-body-heading: #0a1426;
  --clr-body-text: #535559;
  --clr-body-soft_bg: #f6f6f6;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr-body-text);
  font-size: 16px;
}

body,
html {
  overflow-x: hidden;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.footer-black-bg {
  background-color: #0c1636;
}

.footer-bg-color3 {
  background-color: #eeeff4;
}

.fix {
  overflow: hidden;
}

a,
.button {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: medium none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--clr-body-heading);
  margin-top: 0px;
  font-weight: 600;
  text-transform: normal;
  margin-bottom: 15px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.86;
  margin-bottom: 15px;
  color: var(--clr-body-text);
}

hr {
  border-bottom: 1px solid #e6e7e9;
  border-top: 0 none;
  margin: 0;
  padding: 0;
  opacity: 1;
}

label {
  color: var(--clr-body-heading);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background-color: var(--clr-body-heading);
  color: var(--clr-common-sada);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--clr-body-heading);
  color: var(--clr-common-sada);
  text-shadow: none;
}

::selection {
  background-color: var(--clr-common-kalo);
  color: var(--clr-common-sada);
  text-shadow: none;
}

/* <<<<<<<    Input Placeholder   >>>>>>>>> */
input::-webkit-input-placeholder {
  color: var(--clr-common-kalo);
  font-size: 14px;
  opacity: 1;
}

input:-moz-placeholder {
  color: var(--clr-common-kalo);
  font-size: 14px;
  opacity: 1;
}

input::-moz-placeholder {
  color: var(--clr-common-kalo);
  font-size: 14px;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: var(--clr-common-kalo);
  font-size: 14px;
  opacity: 1;
}

/* <<<<<<<    Common Classes   >>>>>>>>> */
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.w_img img {
  width: 100%;
}

.p-rel {
  position: relative;
}

.p-abs {
  position: absolute;
}

/* <<<<<<<    Overlay   >>>>>>>>> */
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

[data-overlay]::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  inset-inline-end: 0;
  bottom: 0;
  content: "";
}

[data-overlay=light]::before {
  background-color: var(--clr-common-sada);
}

[data-overlay=dark]::before {
  background-color: var(--clr-common-kalo);
}

[data-overlay=theme]::before {
  background-color: #1a2b71;
}

[data-overlay=theme-2]::before {
  background-color: #00217f;
}

[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

/* <<<<<<<    Margin & Padding>>>>>>>>> */
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.pr-57 {
  padding-right: 57px;
}

.white-text {
  color: var(--clr-common-white);
}

.sasup-gray-border-btn {
  display: inline-block;
  height: 40px;
  text-decoration: none;
  line-height: 35px;
  padding: 0 20px;
  border: 2px solid #e6e7e9;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-body-heading);
}

.sasup-gray-border-btn:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}

.sasup-gray-border-btn.theme-bg {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}

.sasup-gray-border-btn.theme-bg:hover {
  background-color: #ff6600;
}

.sasup-gray-border-btn.theme-3 {
  background-color: #ff6600;
  border-color: transparent;
  color: var(--clr-common-white);
}

.sasup-gray-border-btn.theme-3:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.mb-47 {
  margin-bottom: 47px;
}

.non-fix {
  overflow: visible;
}

.love-box {
  -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
  -moz-animation: hero-thumb-animation 2s linear infinite alternate;
  -o-animation: hero-thumb-animation 2s linear infinite alternate;
  animation: hero-thumb-animation 2s linear infinite alternate;
}

.demo-width {
  width: 330px;
}

.white-fill {
  fill: var(--clr-common-white);
}

.white-color {
  color: var(--clr-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .visible-br-sm br {
    display: block;
  }
}

.pt-250 {
  padding-top: 250px;
}

.pt-290 {
  padding-top: 290px;
}

.pb-205 {
  padding-bottom: 205px;
}

.mb-28 {
  margin-bottom: 28px;
}

.pl-xxl-70 {
  padding-left: 70px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .pl-xxl-70 {
    padding-left: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .pl-xxl-70 {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pl-xxl-70 {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .pl-xxl-70 {
    padding-left: 0;
  }
}

.bg-defult {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.has-white-border-top {
  border-top: 1px solid #22458b;
}

.opacity-7 {
  opacity: 0.7;
}

/*
--------------------------------------------
27.breadcrumb
*/
.breadcrumb-title {
  font-size: 60px;
  font-weight: 700;
  color: var(--clr-common-white);
  margin-bottom: 11px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-title {
    font-size: 45px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-title {
    font-size: 43px;
  }
}

.breadcrumb-bg {
  background-color: #00208D;
}

.trail-items .trail-item {
  display: inline-block;
  list-style-type: none;
  margin: 0 16px;
}

.trail-items .trail-item:not(:first-child) {
  position: relative;
}

.trail-items .trail-item:not(:first-child)::before {
  position: absolute;
  inset-inline-start: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--clr-common-white);
  border-radius: 50px;
  content: "";
}

.trail-items .trail-item span,
.trail-items .trail-item a {
  font-size: 15px;
  color: var(--clr-common-white);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  text-decoration: none;
}

.trail-items .trail-item:hover a span {
  color: #ff6600;
}

.pt-215 {
  padding-top: 215px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-area {
    padding-top: 165px;
    padding-bottom: 117px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-area {
    padding-top: 180px;
    padding-bottom: 119px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-area {
    padding-top: 160px;
    padding-bottom: 106px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-area {
    padding-top: 155px;
    padding-bottom: 109px;
  }
}

.breadcrumb-content {
  position: relative;
  z-index: 9;
}

/*
--------------------------------------------
3.buttons
*/
.sasup-transparent-btn {
  color: var(--clr-common-white);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.sasup-transparent-btn i {
  margin-right: 10px;
}

.sasup-transparent-btn:hover {
  color: #ff6600;
}

.sasup-transparent-btn-2 {
  color: #ff6600 !important;
}

.sasup-theme-btn {
  color: var(--clr-common-white);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  height: 44px;
  padding: 0 22px;
  position: relative;
  overflow: hidden;
  background-color: var(--clr-theme-1);
  line-height: 44px;
}

.sasup-theme-btn.style-white {
  background-color: var(--clr-common-white);
  color: var(--clr-body-heading);
}

.sasup-theme-btn.style-white:hover {
  background-color: var(--clr-theme-1);
}

.sasup-theme-btn.style-2 {
  background-color: var(--clr-tertiary3);
}

.sasup-theme-btn span {
  position: relative;
  z-index: 9;
}

.sasup-theme-btn::after {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  inset-inline-start: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}

.sasup-theme-btn:hover {
  color: var(--clr-common-white);
  background-color: var(--clr-theme-1);
}

.sasup-theme-btn:hover::after {
  inset-inline-start: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.sasup-header-action-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sasup-border-btn {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  height: 40px;
  color: var(--clr-theme-1);
  line-height: 36px;
  padding: 0 28px;
  border: 2px solid var(--clr-theme-1);
  border-radius: 4px;
}

.sasup-border-btn:hover {
  border-color: transparent;
  color: var(--clr-common-white);
  background-color: #ff6600;
}

.sasup-theme-btn-2 {
  border: 50px;
  font-size: 15px;
  overflow: hidden;
  font-weight: 500;
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-radius: 4px;
  display: inline-block;
  padding: 0 25px;
  position: relative;
  line-height: 50px;
  height: 50px;
  box-shadow: 0px 10px 20px 0px rgba(6, 44, 120, 0.2);
  text-decoration: none;
}

.sasup-theme-btn-2::after {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  inset-inline-start: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}

.sasup-theme-btn-2:hover {
  background-color: #ff6600;
  color: var(--clr-common-white);
}

.sasup-theme-btn-2:hover::after {
  inset-inline-start: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.sasup-theme-btn-2.style-2 {
  padding: 0 33px;
}

.sasup-theme-btn-3 {
  border: 50px;
  font-size: 15px;
  overflow: hidden;
  font-weight: 500;
  background: var(--clr-tertiary3);
  color: var(--clr-common-white);
  border-radius: 4px;
  display: inline-block;
  padding: 0 25px;
  position: relative;
  line-height: 50px;
  height: 50px;
  box-shadow: 0px 10px 20px 0px rgba(6, 44, 120, 0.2);
  text-decoration: none;
}

.sasup-theme-btn-3::after {
  background-color: #817377;
  content: "";
  height: 150px;
  inset-inline-start: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}

.sasup-theme-btn-3:hover {
  background-color: #ff6600;
  color: var(--clr-common-white);
}

.sasup-theme-btn-3:hover::after {
  inset-inline-start: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.sasup-theme-btn-3.style-2 {
  padding: 0 33px;
}

.sasup-video-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.sasup-video-btn .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 48px;
  margin-right: 5px;
  text-align: center;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border-radius: 50px;
  color: var(--clr-theme-1);
  border: 2px solid var(--clr-theme-1);
}

.sasup-video-btn .content {
  display: inline-block;
}

.sasup-video-btn .content span {
  font-size: 15px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  color: var(--clr-body-heading);
  font-weight: 500;
}

.sasup-video-btn:hover .icon {
  background-color: #ff6600;
  color: var(--clr-common-white);
  border-color: transparent;
}

.sasup-video-btn:hover .content span {
  color: #ff6600;
}

/*
--------------------------------------------
4.animated
*/
/* circle animation effect 
----------------------------------*/
@keyframes hero-thumb-animation {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes hero-thumb-sm-animation {
  0% {
    -webkit-transform: translateY(-20px) translateX(50px);
    -moz-transform: translateY(-20px) translateX(50px);
    -ms-transform: translateY(-20px) translateX(50px);
    transform: translateY(-20px) translateX(50px);
  }

  100% {
    -webkit-transform: translateY(-20px) translateX(0px);
    -moz-transform: translateY(-20px) translateX(0px);
    -ms-transform: translateY(-20px) translateX(0px);
    transform: translateY(-20px) translateX(0px);
  }
}

@keyframes hero-thumb-sm-2-animation {
  0% {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes services-triangle {
  0% {
    -webkit-transform: rotate(0deg) translateX(-50px);
    -moz-transform: rotate(0deg) translateX(-50px);
    -ms-transform: rotate(0deg) translateX(-50px);
    transform: rotate(0deg) translateX(-50px);
  }

  100% {
    -webkit-transform: rotate(360deg) translateY(100px);
    -moz-transform: rotate(360deg) translateY(100px);
    -ms-transform: rotate(360deg) translateY(100px);
    transform: rotate(360deg) translateY(100px);
  }
}

.circle-shape-change {
  -webkit-border-radius: 45% 55% 60% 40%/59% 56% 44% 41%;
  -moz-border-radius: 45% 55% 60% 40%/59% 56% 44% 41%;
  border-radius: 45% 55% 60% 40%/59% 56% 44% 41%;
  -webkit-animation: hero-border 2s linear infinite alternate;
  -moz-animation: hero-border 2s linear infinite alternate;
  -o-animation: hero-border 2s linear infinite alternate;
  animation: hero-border 2s linear infinite alternate;
}

@keyframes hero-border {
  0% {
    -webkit-border-radius: 45% 55% 60% 40%/59% 56% 44% 41%;
    -moz-border-radius: 45% 55% 60% 40%/59% 56% 44% 41%;
    border-radius: 45% 55% 60% 40%/59% 56% 44% 41%;
  }

  100% {
    -webkit-border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
    -moz-border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
}

/* movement animation effect 
----------------------------------*/
.horizontal_move50px {
  -webkit-animation: horizontal_move50 8s linear 0s infinite alternate;
  -moz-animation: horizontal_move50 8s linear 0s infinite alternate;
  -o-animation: horizontal_move50 8s linear 0s infinite alternate;
  animation: horizontal_move50 8s linear 0s infinite alternate;
}

@keyframes horizontal_move50 {
  0% {
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }

  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.horizontal_move100px {
  -webkit-animation: horizontal_move100 5s linear 0s infinite alternate;
  -moz-animation: horizontal_move100 5s linear 0s infinite alternate;
  -o-animation: horizontal_move100 5s linear 0s infinite alternate;
  animation: horizontal_move100 5s linear 0s infinite alternate;
}

@keyframes horizontal_move100 {
  0% {
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.upward_movement200px {
  -webkit-animation: upward_movement200 8s linear 0s infinite alternate;
  -moz-animation: upward_movement200 8s linear 0s infinite alternate;
  -o-animation: upward_movement200 8s linear 0s infinite alternate;
  animation: upward_movement200 8s linear 0s infinite alternate;
}

@keyframes upward_movement200 {
  0% {
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    transform: translateY(-200px);
  }

  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}

/* image animation effect 
----------------------------------*/
.img-animation-left,
.img-animation-right {
  -webkit-animation-name: vamtam-scale-out-left;
  animation-name: vamtam-scale-out-left;
  animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-fill-mode: backwards;
}

@keyframes vamtam-scale-out-left {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.img-animation-right {
  -webkit-animation-name: vamtam-scale-out-right;
  -webkit-animation-name: vamtam-scale-out-right;
  animation-name: vamtam-scale-out-right;
  animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-fill-mode: backwards;
}

@keyframes vamtam-scale-out-right {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

/* visible animation effect 
----------------------------------*/
.top_right_visible_animation {
  -webkit-animation-name: top_right_visible;
  -webkit-animation-name: top_right_visible;
  animation-name: top_right_visible;
  animation-duration: 5s;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  animation-fill-mode: backwards;
}

@keyframes top_right_visible {
  from {
    transform: translate(100%, -100%);
  }

  to {
    transform: translate(0, 0);
  }
}

.width_visible_animation {
  -webkit-animation: width_visible 3s linear 0s;
  -moz-animation: width_visible 3s linear 0s;
  -o-animation: width_visible 3s linear 0s;
  animation: width_visible 3s linear 0s;
}

@keyframes width_visible {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* hvr-buzz-out animation effect 
----------------------------------*/
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

/* wobble-vertical animation effect 
----------------------------------*/
@-webkit-keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes animation-pulse-shrink {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  75% {
    transform: scale(0.7);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

/* video play animation */
.popup-video:before,
.popup-video:after {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #cccccc;
  animation: popupBtn 1.8s linear infinite;
}

.popup-video:before {
  animation-delay: 0.8s;
}

@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.3;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes hero-triangle-1 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* icon bounce  */
@keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    transform: translateY(0px);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes about-sm {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes hero-thumb-sm-3-animation {
  0% {
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes services-triangle-2 {
  0% {
    -webkit-transform: rotate(0deg) translateX(-15px);
    -moz-transform: rotate(0deg) translateX(-15px);
    -ms-transform: rotate(0deg) translateX(-15px);
    transform: rotate(0deg) translateX(-15px);
  }

  100% {
    -webkit-transform: rotate(360deg) translateY(30px);
    -moz-transform: rotate(360deg) translateY(30px);
    -ms-transform: rotate(360deg) translateY(30px);
    transform: rotate(360deg) translateY(30px);
  }
}

@keyframes services-circle-2 {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-15px);
  }
}

.message-box,
.map-bg-2 {
  animation-name: message-box;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.map-bg-2 {
  animation-delay: 1s;
}

.body-1-main,
.body-2-main,
.flower-box-1 {
  animation-name: message-box;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 0.9s;
}

.body-2-main {
  animation-delay: 0.5s;
}

.flower-box-1 {
  animation-delay: 0.11s;
}

@keyframes message-box {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

.dot-animated {
  animation-name: dot-animated;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.dot-animated.delay-2 {
  animation-delay: 0.3s;
}

.dot-animated.delay-3 {
  animation-delay: 0.6s;
}

@keyframes dot-animated {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(0);
  }
}

.leaves-rotate-1 {
  animation-name: leaves-rotate-1;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

.leaves-rotate-2 {
  animation-name: leaves-rotate-2;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

@keyframes leaves-rotate-1 {
  0% {
    transform: rotateY(0);
  }

  50% {
    transform: rotateY(35deg);
    transform-origin: left;
  }

  100% {
    transform: rotateY(0);
  }
}

@keyframes leaves-rotate-2 {
  0% {
    transform: rotateX(0);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: rotateX(0);
  }
}

.parcentage-box {
  -webkit-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
}

@keyframes hero-thumb-sm-3-animation {
  0% {
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.icon-animated-hidden {
  transform: translateX(120px);
  opacity: 0;
}

@keyframes shake {

  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes video-scale-up {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/*
--------------------------------------------
5.section_title
*/
/*
************
*************************
22. Section Title
******************************************************* 
*************************************************************** */
.sasup-s-subtitle {
  font-weight: 500;
  font-size: 15px;
  color: var(--clr-theme-1);
  display: block;
  margin-bottom: 14px;
}

.sasup-s-subtitle.title-white {
  color: var(--clr-common-white);
}

.sasup-s-title {
  font-size: 40px;
  line-height: 100%;
  font-weight: 700;
  line-height: 46px;
  color: var(--clr-body-heading);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-s-title {
    font-size: 35px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .sasup-s-title {
    font-size: 23px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .sasup-s-title br {
    display: none;
  }
}

.sasup-s-title-2 {
  line-height: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-s-title-2 {
    font-size: 35px;
    list-style: 1.2;
  }
}

.sasup-s-title.title-white {
  color: var(--clr-common-white);
}

.section-title-2 .s-title {
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--clr-body-heading);
  font-size: 40px;
  line-height: 50px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .section-title-2 .s-title {
    font-size: 35px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title-2 .s-title {
    font-size: 30px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .section-title-2 .s-title {
    font-size: 26px;
    line-height: 1.2;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .section-title-2 .s-title {
    font-size: 34px;
    line-height: 1.3;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-title-2 .s-title br {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-title-2 .s-title br {
    display: none;
  }
}

.section-title-2 .s-title.title-white {
  color: var(--clr-common-white);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-title-2 .s-title.visile-br-lg br {
    display: block;
  }
}

.section-title-2 .s-desc {
  color: var(--clr-body-text);
}

.section-title-2 .s-desc.title-white {
  color: var(--clr-common-white);
}

.section-title-2 .s-desc.s-desc-2 {
  line-height: 24px;
  opacity: 0.7;
}

.section-title-big .s-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 9px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .section-title-big .s-title {
    font-size: 42px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title-big .s-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .section-title-big .s-title {
    font-size: 30px;
  }
}

.section-title-big .s-title.has-extra-title-info {
  margin-bottom: 0;
}

.section-title-big .s-desc {
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.7;
}

.section-title-big .s-desc-2 {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.s-title-3 .s-title {
  font-size: 44px;
}

@media (max-width: 767px) {
  .s-title-3 .s-title {
    font-size: 25px;
    line-height: 1.4;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .s-title-3 .s-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .s-title-3 .s-title br {
    display: none;
  }
}

.section-title-3 .s-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--clr-body-heading);
  margin-bottom: 9px;
}

@media (max-width: 767px) {
  .section-title-3 .s-title {
    font-size: 25px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .section-title-3 .s-title br {
    display: none;
  }
}

.section-title-3 .s-desc {
  font-size: 20px;
  color: var(--clr-body-text);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .section-title-3 .s-desc {
    font-size: 16px;
    line-height: 1.4;
  }
}

.sasup-s-desc {
  line-height: 24px;
  color: var(--clr-body-text);
}

.line-height-24 {
  line-height: 24px;
}

.client-s-title {
  font-size: 16px;
  line-height: 22px;
  color: var(--clr-body-heading);
  font-weight: 600;
}

.section-title-4 .s-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #171a34;
}

@media (max-width: 767px) {
  .section-title-4 .s-title {
    font-size: 30px;
  }
}

.section-title-4 .s-desc {
  line-height: 24px;
  margin-bottom: 0;
}

/*
--------------------------------------------
6.back-to-top
*/
/*
************
*************************
28. Back To Top
******************************************************* 
*************************************************************** */
.progress-wrap {
  position: fixed;
  inset-inline-end: -100px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--clr-theme-3);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.progress-wrap::after {
  position: absolute;
  content: "\f176";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--clr-theme-2);
  inset-inline-start: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--clr-theme-2);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.progress-wrap.active-progress {
  opacity: 1;
  inset-inline-end: 50px;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .progress-wrap {
    bottom: 20px;
  }

  .progress-wrap.active-progress {
    inset-inline-end: 20px;
  }

}

/*
--------------------------------------------
7.header
*/
.sasup-header ul li {
  display: inline-block;
  list-style-type: none;
  margin-right: 45px;
  position: relative;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-header ul li {
    margin-right: 23px;
  }
}

.sasup-header ul li a {
  color: var(--clr-common-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 29px 0;
  display: inline-block;
}

.sasup-header ul li .sub-menu {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  inset-inline-start: 0;
  position: absolute;
  z-index: 99;
  top: 119%;
  transition: all 0.3s ease 0s;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border-top: 4px solid #ff6600;
  text-align: left;
  padding: 15px 0;
}

.sasup-header ul li .sub-menu li {
  display: block;
  margin: 0px;
  padding: 8px 25px 8px 25px;
}

.sasup-header ul li .sub-menu li a {
  padding: 0px;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
  color: #212237;
  position: relative;
}

.sasup-header ul li .sub-menu li:hover>a {
  color: #ff6600;
}

.sasup-header ul li:hover>a {
  color: #ff6600;
}

.sasup-header ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.sasup-header-2 ul li a {
  color: var(--clr-body-heading);
}

.sasup-header-2 ul li:hover>a {
  color: var(--clr-theme-1);
}

.sasup-header-2 ul li .sub-menu {
  border-color: var(--clr-theme-1);
}

.sasup-header-2 ul li .sub-menu li:hover>a {
  color: var(--clr-theme-1);
}

.sasup-header-3 ul li {
  margin-right: 0;
  margin-left: 35px;
}

.sasup-header-3 ul li a {
  color: var(--clr-common-white);
}

.sasup-header-3 ul li:hover>a {
  color: var(--clr-tertiary3);
}

.sasup-header-3 ul li .sub-menu {
  border-color: var(--clr-tertiary3);
}

.sasup-header-3 ul li .sub-menu li:hover>a {
  color: var(--clr-tertiary3);
}

.header-transparent {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  top: 0;
  z-index: 999;
}

.bg-default {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-top-left {
  background-repeat: no-repeat;
  background-position: top left;
}

.sasup-hero-content-sub {
  color: var(--clr-common-white);
  font-size: 18px;
  margin-bottom: 14px;
  display: block;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-hero-content-sub {
    font-size: 18px;
    margin-bottom: 14px;
  }
}

@media (max-width: 767px) {
  .sasup-hero-content-sub {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.sasup-hero-content-main {
  font-size: 70px;
  line-height: 1.086;
  font-weight: 600;
  color: var(--clr-common-white);
  margin-bottom: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-hero-content-main {
    font-size: 60px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-hero-content-main {
    font-size: 45px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-hero-content-main {
    font-size: 37px;
  }
}

@media (max-width: 767px) {
  .sasup-hero-content-main {
    font-size: 26px;
  }
}

.dashbord-shadow {
  box-shadow: 1px 11px 106px #00000021;
}

/* sidebar area start */
.sidebar__area {
  position: fixed;
  inset-inline-end: -340px;
  top: 0;
  width: 320px;
  height: 100%;
  background: #ffffff none repeat scroll 0 0;
  overflow-y: scroll;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.86);
  -moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.86);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 9999;
}

.sidebar__area.sidebar-opened {
  inset-inline-end: 0px;
}

.sidebar__wrapper {
  position: relative;
  padding: 30px;
}

.sidebar__close {
  position: absolute;
  top: 30px;
  inset-inline-end: 80px;
}

.sidebar__close-btn {
  transition: all 450ms cubic-bezier(0.4, 0.25, 0.3, 1.3);
  width: 40px;
  height: 40px;
  position: absolute;
  text-align: center;
  top: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222222;
  border: 1px solid rgba(0, 0, 0, 0.9);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  z-index: 99;
}

.sidebar__close-btn:focus {
  border: 1px solid #222222;
}

.sidebar__close-btn span {
  transition: all 400ms cubic-bezier(0.4, 0.25, 0.3, 1.3) 100ms;
  position: absolute;
  top: 47%;
  inset-inline-start: 50%;
  font-size: 14px;
  font-weight: 900;
  line-height: 40px;
  vertical-align: middle;
}

.sidebar__close-btn span:first-of-type {
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.sidebar__close-btn span:last-of-type {
  text-transform: uppercase;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
}

.sidebar__close-btn:hover {
  width: 80px;
  border-radius: 0;
}

.sidebar__close-btn:hover span:first-of-type {
  transform: translate(-50%, -150%);
  -webkit-transform: translate(-50%, -150%);
  -moz-transform: translate(-50%, -150%);
  -ms-transform: translate(-50%, -150%);
  -o-transform: translate(-50%, -150%);
}

.sidebar__close-btn:hover span:last-of-type {
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

@media (min-width: 768px) and (max-width: 991px) {
  .sidebar-toggle-btn {
    margin-left: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sidebar-toggle-btn {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .sidebar-toggle-btn {
    margin-left: 30px;
  }
}

.sidebar-toggle-btn .line {
  width: 30px;
  height: 3px;
  background-color: #7127ea;
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sidebar-toggle-btn:hover {
  cursor: pointer;
}

.sidebar-toggle-btn:hover .line {
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.sidebar-toggle-btn:hover .line:nth-child(1) {
  width: 10px;
}

.sidebar-toggle-btn:hover .line:nth-child(2) {
  width: 20px;
}

.sidebar-toggle-btn-2 .line {
  background-color: #2f80ed;
}

.sidebar-toggle-btn-2 .line {
  background-color: #5d41c2;
}

.sidebar-toggle-btn-5 .line {
  background-color: #1c7df8;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

.mobile-bar-control {
  margin-left: 20px;
  cursor: pointer;
  vertical-align: middle;
}

.mobile-bar-control .line {
  width: 30px;
  height: 3px;
  background-color: #7127ea;
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mobile-bar-control-white .line {
  background-color: var(--clr-common-white);
}

.sasup-broder-btn-space-3 {
  margin-left: 20px;
}

.bar-control-clicked .line {
  transform: rotate(20deg);
}

.responsive-sidebar {
  position: fixed;
  inset-inline-end: -450px;
  top: 0;
  width: 320px;
  height: 100%;
  background-color: var(--clr-common-white);
  z-index: 9999999;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.responsive-sidebar-inner {
  padding: 30px;
}

.responsive-sidebar-visible {
  inset-inline-end: 0;
}

.responsive-sidebar-close {
  background: transparent;
  border-color: var(--clr-theme-1);
  border-width: 1.5px;
  padding: 0;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  color: #222;
  font-size: 16px;
  line-height: 27px;
}

.responsive-sidebar-close:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.mobile-menu .mean-nav ul li a {
  font-weight: 500;
}

.resposive-sidebar-menu {
  max-height: 450px;
  overflow-y: auto;
}

.mean-container .mean-nav ul li a.mean-expand:hover,
.mean-container .mean-nav ul li a.mean-clicked {
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1) !important;
}

.vertical-middle {
  vertical-align: middle;
}

.has-header-border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-sticky {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.header-sticky.sticky {
  position: fixed;
  inset-inline-start: 0;
  inset-inline-end: 0;
  top: 0;
  z-index: 999;
  background-color: var(--clr-common-white);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  display: block;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  -moz-box-shadow: 0px 10px 20px 0px #08002a14;
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
}

.header-sticky.sticky .sasup-header ul li a {
  color: #222;
}

.header-sticky.sticky .sasup-header ul li:hover>a {
  color: var(--clr-theme-1);
}

.sasup-logo .logo-2 {
  display: none;
}

.sticky .logo-2 {
  display: block;
}

.sticky .logo-1 {
  display: none;
}

.sticky .sasup-transparent-btn {
  color: #222;
}

.sticky .mobile-bar-control-white .line {
  background-color: #222;
}

.sticky .sasup-theme-btn.style-white {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

/*
--------------------------------------------
8.form
*/
.sasup-hero-form {
  width: 470px;
  background: var(--clr-common-white);
  display: inline-block;
  border-radius: 10px;
  padding: 8px;
}

@media (max-width: 767px) {
  .sasup-hero-form {
    width: 100%;
  }
}

.sasup-hero-form-inner {
  height: 44px;
}

.sasup-hero-form input[type=text] {
  width: 100%;
  border: 0;
  padding-left: 16px;
  background-color: transparent;
}

.sasup-hero-form input[type=submit] {
  height: 44px;
  border: 0;
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  font-size: 15px;
  line-height: 44px;
  display: inline-block;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 500;
}

.rtl .sasup-hero-form input[type=submit] {
  right: unset;
  left: 0;
}

.sasup-hero-form input[type=submit]:hover {
  background-color: #ff6600;
}

.sasup-hero-form .epix-hero-form-label {
  position: absolute;
  inset-inline-start: calc(24px - 8px);
  top: 50%;
  font-size: 15px;
  font-weight: 300;
  cursor: auto;
  -webkit-transition: all 0.1s linear 0s;
  -moz-transition: all 0.1s linear 0s;
  -ms-transition: all 0.1s linear 0s;
  -o-transition: all 0.1s linear 0s;
  transition: all 0.1s linear 0s;
  color: #717484;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .sasup-hero-form .epix-hero-form-label {
    font-size: 13px;
    inset-inline-start: calc(24px - 19px);
  }
}

.epix-hero-form-label.epix-hero-form-clicked {
  transform: translateY(0);
  top: -22px;
  color: var(--clr-common-white);
  font-weight: 600;
  background: #ff6600;
  padding: 3px 19px;
  border-radius: 4px;
}

.started-label label {
  font-size: 16px;
  color: var(--clr-common-white);
  display: block;
  line-height: 1;
}

.hero-form-2 {
  position: relative;
  display: inline-block;
}

.hero-form-2 input {
  width: 400px;
  padding-inline-start: 24px;
  height: 55px;
  display: block;
  padding-inline-end: 140px;
  border-radius: 4px;
  border: 0;
}

@media (max-width: 767px) {
  .hero-form-2 input {
    width: 100%;
  }
}

.hero-form-2 .email-label-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 24px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  cursor: unset;
}

.hero-form-2 button[type=submit] {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.rectangle-btn-2 {
  border: 0;
  background-color: var(--clr-tertiary3);
  color: var(--clr-common-white);
  height: 55px;
  width: 140px;
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  display: inline-block;
}

@media (max-width: 767px) {
  .rectangle-btn-2 {
    width: 123px;
  }
}

.email-label-2 {
  font-size: 14px;
  color: #9b989f;
}

.sasup-trial-link {
  font-size: 13px;
  font-weight: 500;
  color: #ada6cd;
  display: block;
  margin-bottom: 0;
}

.sasup-trial-link a {
  color: #fc4199;
  text-decoration: none;
}

.sasup-trial-link a i {
  font-size: 17px;
  vertical-align: middle;
  margin-left: 3px;
}

.mb-12 {
  margin-bottom: 12px;
}

.sasup-s-form-2 {
  position: relative;
  display: inline-block;
}

@media (max-width: 767px) {
  .sasup-s-form-2 {
    display: block;
  }
}

.sasup-s-form-2 input {
  width: 400px;
  border: 0;
  background-color: var(--clr-common-white);
  border-radius: 4px;
  height: 60px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-body-text);
}

@media (max-width: 767px) {
  .sasup-s-form-2 input {
    width: 100%;
  }
}

.sasup-s-form-2 input::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-body-text);
}

.sasup-s-form-2 input:-moz-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-body-text);
}

.sasup-s-form-2 input::-moz-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-body-text);
}

.sasup-s-form-2 input:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-body-text);
}

.sasup-s-form-2 button {
  height: 60px;
  padding: 0 20px;
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  background-color: var(--clr-tertiary3);
  color: var(--clr-common-white);
  border: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 15px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  font-weight: 500;
}

.sasup-s-form-2 button:hover {
  background-color: var(--clr-theme-1);
}

.newsletter-form-input {
  position: relative;
}

.newsletter-form-input input {
  height: 50px;
  border-radius: 4px;
  padding-left: 25px;
  border: 0;
  line-height: 50px;
  width: 100%;
  background-color: var(--clr-common-white);
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-body-text);
}

.newsletter-form-input input::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-body-text);
}

.newsletter-form-input input:-moz-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-body-text);
}

.newsletter-form-input input::-moz-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-body-text);
}

.newsletter-form-input input:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-body-text);
}

.newsletter-form {
  position: relative;
}

.newsletter-form button[type=submit] {
  height: 50px;
  padding: 0 15px;
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 0;
  position: absolute;
  font-size: 15px;
  inset-inline-end: 0;
  top: 0;
  font-weight: 500;
}

/*
--------------------------------------------
9.hero
*/
.hero-shapes>* {
  z-index: -1;
}

.hero-shapes .shape1 {
  bottom: -100px;
  inset-inline-start: 100px;
}

.hero-shapes .shape2 {
  inset-inline-start: 262px;
  bottom: -60px;
}

.hero-shapes .shape3 {
  inset-inline-end: -155px;
  bottom: 235px;
  -webkit-animation: hero-circle-2 4s linear 0s infinite alternate;
  -moz-animation: hero-circle-2 4s linear 0s infinite alternate;
  -o-animation: hero-circle-2 4s linear 0s infinite alternate;
  animation: hero-circle-2 4s linear 0s infinite alternate;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-shapes .shape3 {
    inset-inline-end: -37px;
  }
}

.hero-shapes .shape4 {
  inset-inline-end: 55px;
  bottom: -62px;
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: hero-bounce;
}

.hero-inner {
  z-index: 9;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-space-1 {
    padding-top: 156px;
  }
}

@media (max-width: 767px) {
  .hero-space-1 {
    padding-top: 135px;
  }
}

@media (max-width: 767px) {
  .hero-shapes-2 {
    display: none;
  }
}

.hero-shapes-2>* {
  position: absolute;
}

.hero-shapes-2 .shape-1 {
  top: 115px;
  inset-inline-start: 100px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-shapes-2 .shape-1 {
    top: 151px;
  }
}

.hero-shapes-2 .shape-1 img {
  -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
  -moz-animation: hero-thumb-animation 2s linear infinite alternate;
  -o-animation: hero-thumb-animation 2s linear infinite alternate;
  animation: hero-thumb-animation 2s linear infinite alternate;
}

.hero-shapes-2 .shape-2 {
  top: 330px;
  inset-inline-start: 150px;
}

.hero-shapes-2 .shape-2 img {
  -webkit-animation: services-triangle 7s linear infinite alternate;
  -moz-animation: services-triangle 7s linear infinite alternate;
  -o-animation: services-triangle 7s linear infinite alternate;
  animation: services-triangle 7s linear infinite alternate;
}

.hero-shapes-2 .shape-3 {
  bottom: 200px;
  inset-inline-start: 170px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-shapes-2 .shape-3 {
    bottom: 77px;
    inset-inline-start: 132px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-shapes-2 .shape-3 {
    bottom: 134px;
    inset-inline-start: 115px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-shapes-2 .shape-3 {
    display: none;
  }
}

.hero-shapes-2 .shape-3 img {
  -webkit-animation: hero-triangle-1 6s linear infinite;
  -moz-animation: hero-triangle-1 6s linear infinite;
  -o-animation: hero-triangle-1 6s linear infinite;
  animation: hero-triangle-1 6s linear infinite;
}

/*
--------------------------------------------
10.feature
*/
.sasup-single-feature {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border-radius: 4px;
  padding: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-single-feature {
    padding: 50px 35px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-single-feature {
    padding: 40px 32px;
  }
}

@media (max-width: 767px) {
  .sasup-single-feature {
    padding: 30px;
  }
}

.sasup-single-feature .sasup-feature-title {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 500;
  margin-bottom: 25px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-single-feature .sasup-feature-title {
    font-size: 17px;
    margin-bottom: 19px;
  }
}

@media (max-width: 767px) {
  .sasup-single-feature .sasup-feature-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.sasup-single-feature .sasup-feature-title a {
  text-decoration: none;
}

.sasup-single-feature .sasup-feature-title:hover a {
  color: var(--clr-theme-1);
}

.sasup-single-feature:hover {
  transform: scale(1.04);
  box-shadow: 0px 30px 50px 0px rgba(0, 5, 39, 0.1);
}

.sasup-single-feature:hover .sasup-feature-logo img {
  animation-name: animation-pulse-shrink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.read-more-btn {
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  color: var(--clr-body-heading);
}

.read-more-btn i {
  font-size: 12px;
  margin-left: 5px;
  font-weight: 500;
}

.read-more-btn:hover {
  color: var(--clr-theme-1);
}

.feature-icon-2 {
  margin-bottom: 35px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .feature-icon-2 {
    margin-bottom: 25px;
  }
}

.feature-content-title-2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--clr-body-heading);
}

.feature-content-title-2 a {
  text-decoration: none;
}

.feature-content-title-2:hover {
  color: var(--clr-theme-1);
}

.feature-content-desc-2 {
  font-size: 15px;
  line-height: 24px;
  color: var(--clr-body-text);
  margin-bottom: 35px;
}

.icon-box-rounded {
  width: 46px;
  height: 46px;
  display: inline-block;
  text-decoration: none;
  line-height: 46px;
  text-align: center;
  border: 2px solid #e6e7e9;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.icon-box-rounded i {
  font-weight: 300;
  color: #182233;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.icon-box-rounded i:first-child {
  transform: translateY(-40px);
}

.icon-box-rounded i:nth-child(2) {
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.rtl .icon-box-rounded i:nth-child(2) {
  transform: translate(50%, -50%);
}

.icon-box-rounded:hover {
  background-color: var(--clr-theme-1);
  border-color: transparent;
}

.icon-box-rounded:hover i {
  color: var(--clr-common-white);
}

.icon-box-rounded:hover i:first-child {
  transform: translateY(0);
}

.icon-box-rounded:hover i:nth-child(2) {
  top: calc(50% + 40px);
}

.single-feature-2 {
  padding: 50px 40px;
  padding-bottom: 42px;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0px 30px 70px 0px rgba(0, 5, 39, 0.1);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .single-feature-2 {
    padding: 30px 24px;
  }
}

@media (max-width: 767px) {
  .single-feature-2 {
    padding: 40px 25px;
  }
}

.single-feature-2:hover {
  box-shadow: 0px 30px 90px 0px rgba(0, 5, 39, 0.25);
}

.single-feature-2:hover .feature-icon-2 img {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
}

.feature-link-2 a {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-body-text);
  text-decoration: none;
}

.feature-link-2 a i {
  font-size: 13px;
  color: var(--clr-body-text);
  font-weight: 500;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-left: 5px;
}

.feature-link-2 a:hover {
  color: var(--clr-theme-1);
}

.feature-link-2 a:hover i {
  color: var(--clr-theme-1);
}

.listing-feature-content-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-body-heading);
  margin-bottom: 10px;
}

.listing-feature-content-desc {
  font-size: 15px;
  line-height: 22px;
  color: var(--clr-body-text);
  margin-bottom: 0;
}

.listing-row {
  --bs-gutter-x: 16px;
}

.single-listing-feature {
  padding-right: 4px;
}

.single-listing-feature:hover .listing-feature-icon {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
}

.video-link-img {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  overflow: hidden;
}

.video-link-img::after {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  background-image: -moz-linear-gradient(90deg, rgba(10, 20, 38, 0.8) 0%, rgba(10, 20, 38, 0.8) 0%, rgba(10, 20, 38, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(10, 20, 38, 0.8) 0%, rgba(10, 20, 38, 0.8) 0%, rgba(10, 20, 38, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(10, 20, 38, 0.8) 0%, rgba(10, 20, 38, 0.8) 0%, rgba(10, 20, 38, 0) 100%);
  content: "";
}

.video-link-img img {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.video-link-img:hover img {
  transform: scale(1.1);
}

.video-link-btn {
  text-decoration: none;
}

.video-link-btn i {
  font-size: 16px;
  margin-left: 4px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  display: inline-block;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background: var(--clr-theme-1);
  text-align: center;
  line-height: 52px;
  border-radius: 50%;
  color: var(--clr-common-white);
}

.video-link-btn i::before {
  margin-left: 5px;
}

.video-link-btn span {
  font-size: 14px;
  color: var(--clr-common-white);
  font-weight: 500;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.video-link-btn:hover i {
  background-color: #ff6600;
}

.video-link-btn:hover span {
  color: #ff6600;
}

.video-link-action {
  position: absolute;
  bottom: 30px;
  inset-inline-start: 30px;
  z-index: 9;
}

@media (max-width: 767px) {
  .features-space-1 {
    padding-top: 90px;
  }
}

.has-feature-shadow {
  box-shadow: 0px 30px 50px 0px #0005271a;
}

/*
--------------------------------------------
11.slider
*/
.sasup-slider-height-2 {
  min-height: 950px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .sasup-slider-height-2 {
    min-height: 850px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-slider-height-2 {
    min-height: 750px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-slider-height-2 {
    min-height: 650px;
  }
}

@media (max-width: 767px) {
  .sasup-slider-height-2 {
    padding-bottom: 123px;
    padding-top: 110px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-slider-actions {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .sasup-slider-content {
    padding-right: 95px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-slider-content {
    padding-right: 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-slider-content {
    padding-right: 30px;
  }
}

.sasup-slider-content-subtitle {
  font-size: 14px;
  color: var(--clr-theme-1);
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: 13px;
}

.sasup-slider-content-title {
  font-size: 60px;
  font-weight: 700;
  color: var(--clr-body-heading);
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .sasup-slider-content-title {
    font-size: 45px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-slider-content-title {
    font-size: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-slider-content-title {
    font-size: 29px;
    margin-bottom: 13px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-slider-content-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .sasup-slider-content-title {
    font-size: 29px;
  }
}

.sasup-slider-content-desc {
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 26px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-slider-content-desc {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .sasup-slider-content-desc {
    margin-bottom: 15px;
    line-height: 1.3;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-slider-content-desc br {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-slider-content-desc br {
    display: none;
  }
}

@media (max-width: 767px) {
  .sasup-slider-content-desc br {
    display: none;
  }
}

.sasup-slider-content-list li {
  list-style-type: none;
  display: block;
}

.sasup-slider-content-list li:not(:last-child) {
  margin-bottom: 4px;
}

.sasup-slider-content-list li i {
  color: #2ba53f;
  font-size: 14px;
  margin-right: 10px;
}

.sasup-slider-content-list li span {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-body-text);
}

.slider-shapes>*:not(.shape-1) {
  position: absolute;
}

.slider-shapes .shape-1 img {
  -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
  -moz-animation: hero-thumb-animation 2s linear infinite alternate;
  -o-animation: hero-thumb-animation 2s linear infinite alternate;
  animation: hero-thumb-animation 2s linear infinite alternate;
  max-width: inherit;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .slider-shapes .shape-1 img {
    max-width: 568px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .slider-shapes .shape-1 img {
    max-width: 450px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .slider-shapes .shape-1 img {
    max-width: 450px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shapes .shape-1 img {
    max-width: 335px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-shapes .shape-1 img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .slider-shapes .shape-1 img {
    max-width: 100%;
  }
}

.slider-shapes .shape-2 {
  inset-inline-start: -100px;
  bottom: -60px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .slider-shapes .shape-2 {
    inset-inline-start: -41px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .slider-shapes .shape-2 {
    inset-inline-start: -47px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .slider-shapes .shape-2 {
    inset-inline-start: -40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shapes .shape-2 {
    inset-inline-start: -35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-shapes .shape-2 {
    inset-inline-start: -19px;
  }
}

@media (max-width: 767px) {
  .slider-shapes .shape-2 {
    inset-inline-start: -7px;
    bottom: -60px;
  }
}

.slider-shapes .shape-2 img {
  -webkit-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .slider-shapes .shape-2 img {
    max-width: 160px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .slider-shapes .shape-2 img {
    max-width: 150px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shapes .shape-2 img {
    max-width: 140px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-shapes .shape-2 img {
    max-width: 150px;
  }
}

@media (max-width: 767px) {
  .slider-shapes .shape-2 img {
    max-width: 88px;
  }
}

.slider-shapes .shape-4 {
  position: absolute;
  bottom: -80px;
  inset-inline-end: -90px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .slider-shapes .shape-4 {
    inset-inline-end: 24px;
  }
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .slider-shapes .shape-4 {
    position: absolute;
    bottom: -80px;
    inset-inline-end: -8px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .slider-shapes .shape-4 {
    inset-inline-end: 80px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shapes .shape-4 {
    inset-inline-end: 40px;
    inset-inline-start: auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-shapes .shape-4 {
    inset-inline-end: 39px;
  }
}

@media (max-width: 767px) {
  .slider-shapes .shape-4 {
    bottom: -40px;
    inset-inline-end: 68px;
  }
}

.slider-shapes .shape-4 img {
  -webkit-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .slider-shapes .shape-4 img {
    max-width: 205px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .slider-shapes .shape-4 img {
    max-width: 200px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shapes .shape-4 img {
    max-width: 170px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-shapes .shape-4 img {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .slider-shapes .shape-4 img {
    max-width: 100px;
  }
}

.slider-shapes .shape-3 {
  top: 150px;
  inset-inline-end: -255px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .slider-shapes .shape-3 {
    inset-inline-end: -79px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .slider-shapes .shape-3 {
    inset-inline-end: -25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .slider-shapes .shape-3 {
    top: 40px;
    inset-inline-end: 42px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shapes .shape-3 {
    top: 45px;
    inset-inline-end: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-shapes .shape-3 {
    inset-inline-end: 24px;
  }
}

@media (max-width: 767px) {
  .slider-shapes .shape-3 {
    top: 19px;
    inset-inline-end: 14px;
  }
}

.slider-shapes .shape-3 img {
  -webkit-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .slider-shapes .shape-3 img {
    max-width: 185px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .slider-shapes .shape-3 img {
    max-width: 220px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shapes .shape-3 img {
    max-width: 150px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-shapes .shape-3 img {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .slider-shapes .shape-3 img {
    max-width: 132px;
  }
}

.slider-shapes .shape-inner img {
  border-radius: 4px;
}

.has-shadow-1 {
  box-shadow: 0px 40px 40px 0px #00052724;
}

.has-shadow-2 {
  box-shadow: 0px 20px 70px 0px #00052733;
}

.has-shadow-3 {
  box-shadow: 0px 30px 70px 0px #0005271a;
}

.slider-shape-space {
  margin-top: -67px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .slider-shape-space {
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shape-space {
    margin-top: 0;
  }
}

.slider-shapes-2 .shape-default {
  position: absolute;
}

.slider-shapes-2 .shape-1 {
  top: 420px;
  inset-inline-start: 0;
  -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
  -moz-animation: hero-thumb-animation 2s linear infinite alternate;
  -o-animation: hero-thumb-animation 2s linear infinite alternate;
  animation: hero-thumb-animation 2s linear infinite alternate;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .slider-shapes-2 .shape-1 {
    inset-inline-start: -16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .slider-shapes-2 .shape-1 {
    inset-inline-start: -24px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shapes-2 .shape-1 {
    inset-inline-start: -15px;
  }
}

.slider-shapes-2 .shape-2 {
  top: 175px;
  inset-inline-start: 255px;
  -webkit-animation: hero-circle-2 4s linear 0s infinite alternate;
  -moz-animation: hero-circle-2 4s linear 0s infinite alternate;
  -o-animation: hero-circle-2 4s linear 0s infinite alternate;
  animation: hero-circle-2 4s linear 0s infinite alternate;
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shapes-2 .shape-2 {
    top: 113px;
  }
}

.slider-shapes-2 .shape-3 {
  top: 220px;
  inset-inline-end: 100px;
  -webkit-animation: hero-triangle-1 6s linear infinite;
  -moz-animation: hero-triangle-1 6s linear infinite;
  -o-animation: hero-triangle-1 6s linear infinite;
  animation: hero-triangle-1 6s linear infinite;
}

.slider-shapes-2 .shape-4 {
  inset-inline-end: 120px;
  bottom: 140px;
  -webkit-animation: hero-circle-2 4s linear 0s infinite alternate;
  -moz-animation: hero-circle-2 4s linear 0s infinite alternate;
  -o-animation: hero-circle-2 4s linear 0s infinite alternate;
  animation: hero-circle-2 4s linear 0s infinite alternate;
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-shapes-2 .shape-4 {
    bottom: 70px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .extra-slider-shape {
    display: none;
  }
}

.extra-slider-shape .shape-1 {
  position: absolute;
  bottom: 18px;
  inset-inline-start: 400px;
  -webkit-animation: services-triangle 7s linear infinite alternate;
  -moz-animation: services-triangle 7s linear infinite alternate;
  -o-animation: services-triangle 7s linear infinite alternate;
  animation: services-triangle 7s linear infinite alternate;
}

.extra-slider-shape .shape-2 {
  bottom: -297px;
  inset-inline-end: 370px;
  position: absolute;
}

@media (min-width: 768px) and (max-width: 991px) {
  .extra-slider-shape .shape-2 {
    display: none;
  }
}

.pos-visible {
  position: relative;
  z-index: 99;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-slider-actions {
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .sasup-slider-actions {
    margin-bottom: 90px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-slider-actions .sasup-video-btn {
    transform: translateY(-8px);
  }
}

.hero-gradient-2 {
  background-image: -moz-linear-gradient(60deg, #380c7f 0%, #6922fa 100%);
  background-image: -webkit-linear-gradient(60deg, #380c7f 0%, #6922fa 100%);
  background-image: -ms-linear-gradient(60deg, #380c7f 0%, #6922fa 100%);
}

.hero-subtitle-2 {
  font-size: 14px;
  color: var(--clr-common-white);
  margin-bottom: 15px;
  display: block;
}

.hero-title-2 {
  font-size: 60px;
  font-weight: 700;
  color: var(--clr-common-white);
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .hero-title-2 {
    font-size: 27px;
    margin-bottom: 12px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-title-2 {
    font-size: 55px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title-2 {
    font-size: 45px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-title-2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .hero-title-2 br {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title-2 br {
    display: none;
  }
}

.hero-content-2 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 40px;
  color: var(--clr-common-white);
  opacity: 0.7;
}

@media (max-width: 767px) {
  .hero-content-2 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .hero-content-2 br {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 br {
    display: none;
  }
}

.sasup-slider-height-3 {
  min-height: 950px;
}

@media (max-width: 767px) {
  .sasup-slider-height-3 {
    min-height: 770px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-slider-height-3 {
    min-height: 950px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .sasup-slider-height-3 {
    min-height: 880px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-slider-height-3 {
    padding-top: 140px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-slider-height-3 {
    min-height: 678px;
  }
}

.dollar {
  -webkit-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
}

.map-box {
  -webkit-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
}

.object-width {
  width: 655px;
}

@media (max-width: 767px) {
  .object-width {
    width: 100%;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .object-width {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .object-width {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .object-width {
    width: 100%;
    max-width: 100%;
  }
}

.slider-content-space-2 {
  position: relative;
  z-index: 9;
}

.hero-space-1 {
  background-size: 100vw 850px;
}

/*
--------------------------------------------
12.cta
*/
.cta-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: var(--clr-common-white);
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .cta-title {
    font-size: 29px;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-title {
    font-size: 36px;
    line-height: 1.2;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .cta-title {
    font-size: 41px;
    line-height: 1.2;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cta-title {
    font-size: 40px;
    line-height: 1.2;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-title br {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-title br {
    display: none;
  }
}

.cta-desc {
  font-size: 16px;
  color: var(--clr-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-desc {
    line-height: 1.3;
    margin-bottom: 24px;
  }
}

.sasup-white-btn {
  text-decoration: none;
  font-size: 15px;
  color: var(--clr-body-heading);
  background: var(--clr-common-white);
  display: inline-block;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
  padding: 0 22px;
}

.sasup-white-btn:hover {
  background-color: #ff6600;
  color: var(--clr-common-white);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .cta-3-spacing {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cta-3-spacing {
    padding-top: 60px;
    padding-bottom: 45px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-3-spacing {
    padding-top: 90px;
    padding-bottom: 75px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-3-spacing {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.cta-subtitle-1 {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  color: var(--clr-common-white);
  line-height: 1;
}

.cta-title-1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 54px;
  color: #f8f8f9;
  display: block;
  margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cta-title-1 {
    font-size: 35px;
    line-height: 1.4;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-title-1 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .cta-title-1 {
    font-size: 23px;
    line-height: 1.6;
  }
}

.bg-default {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-border-btn,
.cta-solid-btn {
  display: inline-block;
  height: 45px;
  line-height: 42px;
  text-decoration: none;
  border: 2px solid #6e59af;
  color: var(--clr-common-white);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  padding: 0 30px;
}

@media (max-width: 767px) {

  .cta-border-btn,
  .cta-solid-btn {
    padding: 0 20px;
  }
}

.cta-border-btn:hover,
.cta-solid-btn:hover {
  background-color: #ff6600;
  color: var(--clr-common-white);
  border-color: transparent;
}

.cta-solid-btn {
  border-color: transparent;
  background-color: var(--clr-theme-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-1-space {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .cta-1-space {
    padding: 90px 0;
  }
}

/*
--------------------------------------------
13.development_flowchart
*/
.sasup-tab-control {
  display: block;
  width: 100%;
}

.sasup-tab-control button {
  border: 0;
  display: block;
  padding: 0;
  height: 76px;
  padding: 0 20px;
  width: 100%;
  display: flex;
  border-radius: 4px;
  align-items: center;
  text-align: left;
  background: transparent;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.sasup-tab-control button.active {
  background-color: var(--clr-common-white);
  box-shadow: 0px 20px 70px 0px rgba(0, 5, 39, 0.14), -3px 0px 0px 0px rgba(47, 116, 255, 0.004);
  position: relative;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  color: var(--clr-theme-1);
}

.sasup-tab-control button.active i {
  color: var(--clr-theme-1);
}

.sasup-tab-control button.active::after {
  position: absolute;
  inset-inline-start: -3px;
  top: 0;
  content: "";
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 100%;
  width: 3px;
  background-color: #2d6ff4;
}

.sasup-tab-control button i {
  color: var(--clr-body-heading);
  font-size: 22px;
  font-weight: 400;
  margin-right: 10px;
}

.sasup-tab-control button span {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .sasup-tab-control button {
    height: 60px;
  }
}

.dashbord-tab-controls {
  max-width: 250px;
}

@media (max-width: 767px) {
  .dashbord-tab-controls {
    padding-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .dashbord-tab-controls {
    max-width: 100%;
    padding-top: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dashbord-tab-controls {
    max-width: 100%;
    padding-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .dashbord-tab-controls .nav {
    flex-direction: row;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dashbord-tab-controls .nav {
    flex-direction: row;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .dashbord-tab-controls .nav>* {
    flex: 0 0 50%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dashbord-tab-controls .nav>* {
    flex: 0 0 50%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .dashbord-tab-controls .nav>* button {
    height: 56px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dashbord-tab-controls .nav>* button {
    height: 56px;
  }
}

.sasup-single-tab-dashbord {
  margin-left: -99px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-single-tab-dashbord {
    margin-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-single-tab-dashbord {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .sasup-single-tab-dashbord {
    margin-left: 0;
  }
}

.sasup-single-tab-dashbord img {
  max-width: inherit;
  -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
  -moz-animation: hero-thumb-animation 2s linear infinite alternate;
  -o-animation: hero-thumb-animation 2s linear infinite alternate;
  animation: hero-thumb-animation 2s linear infinite alternate;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-single-tab-dashbord img {
    max-width: 550px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-single-tab-dashbord img {
    max-width: calc(100% + 78px);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-single-tab-dashbord img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .sasup-single-tab-dashbord img {
    max-width: 100%;
  }
}

.sasup-service-img-wrap {
  min-height: 530px;
  position: relative;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-service-img-wrap {
    min-height: 430px;
  }
}

@media (max-width: 767px) {
  .sasup-service-img-wrap {
    min-height: 319px;
  }
}

.sasup-service-img-wrap .sasup-single-service-thumb {
  overflow: hidden;
  position: absolute;
  box-shadow: 0px 20px 50px 0px rgba(0, 5, 39, 0.1);
}

.sasup-service-img-wrap .sasup-single-service-thumb:nth-child(1) {
  inset-inline-start: 0;
  top: 50px;
  z-index: 1;
}

.sasup-service-img-wrap .sasup-single-service-thumb:nth-child(2) {
  inset-inline-end: 0;
  top: 0;
  z-index: 3;
}

.sasup-service-img-wrap .sasup-single-service-thumb:nth-child(3) {
  inset-inline-start: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
}

.rtl .sasup-service-img-wrap .sasup-single-service-thumb:nth-child(3) {
  transform: translateX(50%);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .sasup-single-tab-dashbord img {
    max-width: calc(100% + 31px);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .dashbord-tab-wrap {
    padding: 50px 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dashbord-tab-wrap {
    padding: 40px 20px;
  }
}

@media (max-width: 767px) {
  .dashbord-tab-wrap {
    padding: 50px 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .dashbord-tab-control-space-3 {
    padding-top: 15px;
  }
}

.service-3-space {
  padding-bottom: 80px;
  padding-top: 80px;
}

/*
--------------------------------------------
14.service
*/
.service-checklist ul {
  display: flex;
  flex-wrap: wrap;
}

.service-checklist ul li {
  flex: 0 0 50%;
  list-style: none;
  color: var(--clr-common-white);
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .service-checklist ul li {
    flex: 0 0 100%;
  }
}

.service-checklist ul li i {
  font-size: 13px;
  margin-right: 7px;
}

.service-slider-shapes>* {
  position: absolute;
}

.service-slider-shapes .shape-1 {
  width: 180px;
  height: 180px;
  background-color: #fbc15d;
  border-radius: 50%;
  top: calc(-180px + 56px);
  inset-inline-start: 59px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .service-slider-shapes .shape-1 {
    width: 150px;
    height: 150px;
  }
}

.service-slider-shapes .shape-2 {
  width: 120px;
  border-radius: 50%;
  background-color: #fd8697;
  height: 120px;
  top: 215px;
  inset-inline-end: calc(-120px + 40px);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .service-slider-shapes .shape-2 {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-slider-shapes .shape-2 {
    inset-inline-end: calc(-120px + 20px);
  }
}

.service-slider-shapes .shape-3 {
  top: 180px;
  inset-inline-end: 260px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .service-slider-shapes .shape-3 {
    top: 50px;
    inset-inline-end: 50px;
  }
}

.service-slider-shapes .shape-3 img {
  -webkit-animation: hero-triangle-1 6s linear infinite;
  -moz-animation: hero-triangle-1 6s linear infinite;
  -o-animation: hero-triangle-1 6s linear infinite;
  animation: hero-triangle-1 6s linear infinite;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .service-slider-shapes .shape-3 img {
    opacity: 0.15;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-slider-shapes .shape-3 img {
    opacity: 0.15;
  }
}

.service-slider-shapes .shape-4 {
  inset-inline-end: 420px;
  bottom: 115px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-slider-shapes .shape-4 {
    bottom: 58px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-slider-shapes .shape-4 {
    bottom: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-slider-shapes .shape-4 {
    inset-inline-end: 317px;
    bottom: 31px;
  }
}

.service-slider-shapes .shape-4 img {
  -webkit-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .service-3-space {
    padding-top: 80px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-service-img-wrap-space-3 {
    padding-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-service-img-wrap-space-3 {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-service-img-wrap-space-3 {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-service-img-wrap img {
    max-width: 205px;
  }
}

@media (max-width: 767px) {

  .sasup-single-dashbord-thumb img,
  .sasup-single-service-thumb img {
    max-width: 150px;
  }
}

.sasup-single-list {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .sasup-single-list {
    display: flex;
  }
}

.sasup-single-list>* {
  display: inline-block;
}

.sasup-icon {
  vertical-align: top;
  margin-top: 4px;
}

.sasup-icon i {
  color: #2fa743;
  font-size: 16px;
  margin-right: 12px;
  display: inline-block;
}

.sasup-content p {
  color: var(--clr-body-text);
  font-size: 15px;
}

.sasup-content p span {
  font-weight: 600;
  color: var(--clr-body-heading);
}

.service-right-thumbs {
  margin-right: -50px;
  position: relative;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-right-thumbs {
    margin-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-right-thumbs {
    margin-right: 46px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-right-thumbs {
    margin-right: -21px;
  }
}

@media (max-width: 767px) {
  .service-right-thumbs {
    margin-right: -32px;
  }
}

.service-right-thumbs>img {
  max-width: inherit;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .service-right-thumbs>img {
    max-width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-right-thumbs>img {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-right-thumbs>img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-right-thumbs>img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .service-right-thumbs>img {
    max-width: 100%;
  }
}

.service-left-thumbs {
  margin-left: -50px;
  position: relative;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-left-thumbs {
    margin-left: -32px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-left-thumbs {
    margin-left: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-left-thumbs .dashbord-1 img {
    max-width: 140px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-left-thumbs .dashbord-2 img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .service-left-thumbs .dashbord-2 img {
    max-width: 100%;
  }
}

.service-left-thumbs img {
  max-width: inherit;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-left-thumbs>img {
    max-width: calc(100% + 46px);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-left-thumbs>img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-left-thumbs>img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .service-left-thumbs>img {
    max-width: 100%;
  }
}

.service-dashbord-thumb>.single-dashbord {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
}

.service-dashbord-thumb .dashbord-1 {
  bottom: 45px;
  z-index: 9;
  inset-inline-start: 70px;
  box-shadow: 5.209px 29.544px 60px 0px #20140033;
  -webkit-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-dashbord-thumb .dashbord-1 {
    inset-inline-start: 27px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-dashbord-thumb .dashbord-1 img {
    max-width: 180px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-dashbord-thumb .dashbord-1 img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .service-dashbord-thumb .dashbord-1 img {
    max-width: 150px;
  }
}

.service-dashbord-thumb .dashbord-2 {
  top: 52px;
  inset-inline-end: 55px;
  box-shadow: 0px 30px 60px 0px #613c0124;
  -webkit-animation: about-sm 1s linear infinite alternate;
  -moz-animation: about-sm 1s linear infinite alternate;
  -o-animation: about-sm 1s linear infinite alternate;
  animation: about-sm 1s linear infinite alternate;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-dashbord-thumb .dashbord-2 img {
    max-width: 100%;
  }
}

.service-dashbord-thumb .dashbord-3 {
  inset-inline-end: 0;
  top: 150px;
  -webkit-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-3-animation 4s linear infinite alternate;
}

.service-dashbord-thumb.style-2 .dashbord-1 {
  inset-inline-end: 70px;
  inset-inline-start: inherit;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-dashbord-thumb.style-2 .dashbord-1 {
    inset-inline-end: -25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-dashbord-thumb.style-2 .dashbord-1 {
    inset-inline-end: 0;
  }
}

.service-dashbord-thumb.style-2 .dashbord-2 {
  inset-inline-start: 55px;
  inset-inline-end: inherit;
}

.service-dashbord-thumb.style-2 .dashbord-3 {
  inset-inline-start: 16px;
  inset-inline-end: auto;
}

.pl-68 {
  padding-left: 68px;
}

.section-title-extra-info {
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-body-heading);
  padding-bottom: 5px;
}

.sesup-service-desc-info {
  margin-bottom: 37px;
}

.sesup-service-desc-info p {
  font-size: 15px;
  line-height: 24px;
  color: var(--clr-body-text);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg-br br {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service_right {
    padding-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service_right {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .service_right {
    padding-left: 0;
  }
}

.service-info-wrapper {
  padding: 95px 70px;
  padding-bottom: 89px;
  padding-right: 69px;
}

@media (max-width: 767px) {
  .service-info-wrapper {
    padding: 52px 29px;
    padding-bottom: 52px;
    padding-right: 29px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-info-wrapper {
    padding: 65px 38px;
    padding-bottom: 65px;
    padding-right: 38px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-info-wrapper {
    padding: 45px 35px;
    padding-bottom: 45px;
    padding-right: 35px;
  }
}

.service-info-wrapper .icon svg {
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.service-info-wrapper:hover svg {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.service-info-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .service-info-title {
    font-size: 28px;
  }
}

.service-info-title a {
  text-decoration: none;
}

.service-info-title a:hover {
  color: var(--clr-theme-1);
}

.service-info-desc {
  font-size: 15px;
  line-height: 24px;
  opacity: 0.7;
  margin-bottom: 37px;
}

.service-read-more-btn {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.service-read-more-btn:hover {
  color: var(--clr-theme-1);
}

.service-read-more-btn i {
  font-size: 12px;
  font-weight: 500;
  margin-left: 3px;
  display: inline-block;
}

.single-service-img-inner .service-img-1 {
  height: 200px;
  width: 360px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .single-service-img-inner .service-img-1 {
    height: inherit;
  }
}

.single-service-img-inner .service-img-2 {
  width: 200px;
  border-radius: 4px;
  height: 220px;
  object-fit: cover;
  position: relative;
  z-index: 9;
  object-position: top left;
}

@media (max-width: 767px) {
  .single-service-img-inner .service-img-2 {
    width: 114px;
    height: 126px;
  }
}

.service-img-boxed-group {
  padding: 75px 70px;
}

@media (max-width: 767px) {
  .service-img-boxed-group {
    padding: 52px 25px;
    padding-bottom: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-img-boxed-group {
    padding: 65px 38px;
    padding-right: 71px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-img-boxed-group {
    padding: 54px 27px;
  }
}

.single-service-img.negative-space {
  margin-top: -150px;
}

@media (max-width: 767px) {
  .single-service-img.negative-space {
    margin-top: -81px;
    margin-right: 53px;
  }
}

.single-service-img.has-shadow {
  box-shadow: 0px 30px 60px 0px #00444733;
}

.animated-top-bottom {
  -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
  -moz-animation: hero-thumb-animation 2s linear infinite alternate;
  -o-animation: hero-thumb-animation 2s linear infinite alternate;
  animation: hero-thumb-animation 2s linear infinite alternate;
}

.animated-cornar {
  -webkit-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
  box-shadow: -11.722px -27.615px 60px 0px #00153e1a;
}

.custom-h-100 {
  height: 100%;
}

.service-count-number {
  width: 40px;
  height: 40px;
  line-height: 38px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border: 2px solid #dbdde3;
  margin-right: 20px;
  border-radius: 50px;
  color: var(--clr-body-heading);
  font-weight: 600;
}

@media (max-width: 767px) {
  .service-count-number {
    margin-right: 15px;
  }
}

.service-title-list {
  font-size: 18px;
  font-weight: 700;
  display: block;
  color: var(--clr-body-heading);
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .service-title-list {
    margin-bottom: 5px;
  }
}

.service-title-list a {
  text-decoration: none;
}

.service-title-list a:hover {
  color: var(--clr-theme-1);
}

.service-content-list {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: var(--clr-body-text);
}

@media (max-width: 767px) {
  .service-content-list {
    font-size: 14px;
    line-height: 21px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-content-list br {
    display: none;
  }
}

.single-service-list {
  display: flex;
}

@media (max-width: 767px) {
  .single-service-list {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .single-service-list {
    margin-bottom: 20px;
  }
}

.single-service-list:hover .service-count-number {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
  border-color: transparent;
}

.service-left-2-thumb img {
  border-radius: 4px;
}

.service-right-area-2 {
  padding-right: 11px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .service-right-area-2 {
    padding-left: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-right-area-2 {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-right-area-2 {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .service-right-area-2 {
    padding-left: 0;
  }
}

.service-right-list-item {
  list-style: none;
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--clr-body-heading);
}

.service-right-list-item i {
  font-size: 14px;
  font-weight: 400;
  color: #2fa743;
  margin-right: 3px;
}

.w-list-50 ul {
  display: flex;
  flex-wrap: wrap;
}

.w-list-50 ul>li {
  flex: 0 0 50%;
  position: relative;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-list-50 ul>li {
    flex: 0 0 50%;
  }
}

@media (max-width: 767px) {
  .w-list-50 ul>li {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-right-list-2 {
    padding-right: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-left-2 {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .service-left-2 {
    padding-left: 0;
  }
}

.service-details-breadcrumb-btn {
  font-size: 13px;
  font-weight: 400;
  color: var(--clr-body-heading);
  background: var(--clr-common-white);
  height: 24px;
  display: inline-block;
  padding: 0 14px;
  border-radius: 4px;
  line-height: 24px;
  margin-bottom: 18px;
}

.service-details-img {
  overflow: hidden;
}

.service-details-img img {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.service-details-img:hover img {
  transform: scale(1.05);
}

.service-details-content-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--clr-body-heading);
}

@media (max-width: 767px) {
  .service-details-content-title {
    font-size: 23px;
  }
}

.service-details-content-info {
  font-size: 24px;
  color: var(--clr-body-heading);
  line-height: 34px;
  margin-bottom: 23px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-details-content-info {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .service-details-content-info {
    font-size: 15px;
    line-height: 1.6;
  }
}

.service-details-content-desc {
  line-height: 26px;
  color: var(--clr-body-text);
  margin-bottom: 25px;
}

.mb-43 {
  margin-bottom: 43px;
}

.service-details-thumb-list {
  overflow: hidden;
}

.service-details-thumb-list .thumb {
  float: left;
  margin-right: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-details-thumb-list .thumb {
    float: none;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .service-details-thumb-list .thumb {
    float: none;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.service-details-thumb-list .content {
  overflow: hidden;
  padding-right: 75px;
}

@media (max-width: 767px) {
  .service-details-thumb-list .content {
    padding-right: 0;
  }
}

.service-details-thumb-list-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-body-heading);
  margin-bottom: 11px;
}

.service-details-thumb-list-desc {
  line-height: 24px;
  color: var(--clr-body-text);
  margin-bottom: 19px;
}

.service-details-thumb-list-dotted li {
  font-size: 15px;
  line-height: 22px;
  padding-left: 20px;
  color: var(--clr-body-text);
  position: relative;
  margin-bottom: 14px;
  list-style-type: none;
}

.service-details-thumb-list-dotted li::after {
  position: absolute;
  inset-inline-start: 0;
  top: 5px;
  width: 7px;
  border-radius: 50px;
  height: 7px;
  background-color: var(--clr-theme-1);
  content: "";
}

.service-feature-boxed-2 {
  background-color: var(--clr-common-white);
  box-shadow: 0px 30px 70px 0px #0005271a;
  border-radius: 4px;
  padding: 50px 40px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-feature-boxed-2 {
    padding: 39px 20px;
  }
}

@media (max-width: 767px) {
  .service-feature-boxed-2 {
    padding: 35px 22px;
  }
}

.service-feature-boxed-2:hover .service-feature-boxed-2-thumb img {
  animation-name: animation-pulse-shrink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.service-feature-boxed-2-thumb {
  margin-bottom: 35px;
}

.service-feature-boxed-2-content-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-body-heading);
  margin-bottom: 14px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-feature-boxed-2-content-title {
    font-size: 18px;
  }
}

.service-feature-boxed-2-content-title a {
  text-decoration: none;
}

.service-feature-boxed-2-content-title:hover {
  color: var(--clr-theme-1);
}

.service-feature-boxed-2-content-desc {
  font-size: 15px;
  line-height: 24px;
  color: var(--clr-body-text);
  margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-feature-boxed-2-content-desc {
    font-size: 13px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-area-space-2 {
    padding-top: 180px;
    padding-bottom: 78px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-area-space-2 {
    padding-top: 190px;
    padding-bottom: 78px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-area-space-2 {
    padding-top: 155px;
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-area-space-2 {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .service-details-breadcrumb-title {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .service-details-breadcrumb-title br {
    display: none;
  }
}


.service-breadcrumb-meta-single {
  margin-right: 30px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .service-breadcrumb-meta-single {
    margin-right: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-breadcrumb-meta-single {
    margin-right: 30px;
    font-size: 14px;
  }
}

.service-breadcrumb-meta-single i {
  font-size: 13px;
  margin-right: 10px;
}

.service-breadcrumb-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 3px;
}

.service-breadcrumb-title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 991px) {
  .service-breadcrumb-title {
    font-size: 44px;
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .service-breadcrumb-title {
    font-size: 28px;
    line-height: 1.3;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-breadcrumb-title {
    font-size: 36px;
    line-height: 1.5;
  }
}

.service-details-shapes>* {
  position: absolute;
}

.service-details-shapes img:nth-child(1) {
  inset-inline-end: 66px;
  top: -33px;
  -webkit-animation: hero-triangle-1 6s linear infinite;
  -moz-animation: hero-triangle-1 6s linear infinite;
  -o-animation: hero-triangle-1 6s linear infinite;
  animation: hero-triangle-1 6s linear infinite;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-details-shapes img:nth-child(1) {
    inset-inline-end: 155px;
  }
}

@media (max-width: 767px) {
  .service-details-shapes img:nth-child(1) {
    inset-inline-end: 127px;
    top: -89px;
  }
}

.service-details-shapes img:nth-child(2) {
  top: -60px;
  inset-inline-start: -107px;
  -webkit-animation: services-triangle 7s linear infinite alternate;
  -moz-animation: services-triangle 7s linear infinite alternate;
  -o-animation: services-triangle 7s linear infinite alternate;
  animation: services-triangle 7s linear infinite alternate;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-details-shapes img:nth-child(2) {
    inset-inline-start: 0;
  }
}

.service-outside-shapes img {
  position: absolute;
  inset-inline-end: 0;
  top: 170px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .service-outside-shapes img {
    top: 71px;
  }
}

@media (max-width: 767px) {
  .service-outside-shapes img {
    top: 43px;
  }
}

.s-details-subtitle {
  font-size: 15px;
  color: var(--clr-body-text);
  font-weight: 400;
  display: block;
  margin-bottom: 12px;
}

.s-details-title {
  font-size: 50px;
  font-weight: 600;
  color: var(--clr-body-heading);
}

.service-details-content {
  position: relative;
  z-index: 9;
}

/*
--------------------------------------------
15.team
*/
.team-social a {
  width: 36px;
  height: 36px;
  display: inline-block;
  line-height: 36px;
  text-align: center;
  background: var(--clr-common-white);
  border-radius: 4px;
  margin: 0 4px;
  font-size: 15px;
}

.team-social a:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.single-team {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.single-team img {
  width: 100%;
}

.single-team .team-desc {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.single-team .team-social {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  visibility: hidden;
  bottom: -26px;
}

.single-team::after {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  inset-inline-end: 0;
  height: 250px;
  background-image: -moz-linear-gradient(90deg, #0a1426b3 0%, #0a1426b3 0%, #0a142600 100%);
  background-image: -webkit-linear-gradient(90deg, #0a1426b3 0%, #0a1426b3 0%, #0a142600 100%);
  background-image: -ms-linear-gradient(90deg, #0a1324b3 0%, #0a1426b3 0%, #0a142600 100%);
  content: "";
  pointer-events: none;
}

.single-team .thumb a {
  display: inline-block;
}

.single-team .content {
  position: absolute;
  inset-inline-start: 0;
  padding-bottom: 35px;
  bottom: 0;
  inset-inline-end: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  z-index: 9;
}

.single-team .content h5 {
  color: var(--clr-common-white);
  margin-bottom: 0;
}

.single-team .content h5 a {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}

.single-team .content .job {
  color: var(--clr-common-white);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 5px;
  display: block;
}

.single-team img {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.single-team:hover img {
  transform: scale(1.05);
}

.single-team:hover .team-social {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

.single-team:hover .team-desc {
  transform: translateY(65px);
  opacity: 0;
}

.team-action-btn {
  font-size: 15px;
  text-decoration: none;
  color: var(--clr-body-text);
  font-weight: 500;
  display: inline-block;
}

.team-action-btn i {
  font-weight: 500;
  margin-left: 4px;
  font-size: 14px;
  vertical-align: middle;
}

.support-sm-team-label {
  font-size: 15px;
  display: inline-block;
  font-weight: 500;
  margin-right: 13px;
  color: var(--clr-body-heading);
}

.support-sm-team-thumb-group {
  display: inline-block;
}

.support-sm-team-thumb-group>* {
  display: inline-block;
  width: 38px;
  border-radius: 50px;
  border: 2px solid var(--clr-common-white);
  height: 38px;
}

.support-sm-team-thumb-group>* img {
  border-radius: 50%;
}

.support-sm-team-thumb-group>*:not(:first-child) {
  margin-left: -12px;
}

.has-header-shadow-bottom {
  box-shadow: 0px 20px 40px 0px #0005271a;
}

/*
--------------------------------------------
16.counter
*/
.counter-box {
  box-shadow: 0px 30px 70px 0px rgba(0, 5, 39, 0.1);
  padding: 50px;
  padding-bottom: 59px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .counter-box {
    padding: 40px 30px;
  }
}

.counter-box .icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  text-align: center;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border-radius: 4px;
}

.counter-box .icon i {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  font-size: 27px;
  line-height: 1;
  line-height: 80px;
}

.counter-box .counter-count {
  font-size: 50px;
  margin-bottom: 4px;
  font-weight: 500;
}

.counter-box .counter-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-body-heading);
  margin-bottom: 0;
}

.counter-style-1 .icon {
  background: #eaf1ff;
}

.counter-style-1 .icon i {
  color: var(--clr-theme-1);
}

.counter-style-1:hover .icon {
  background-color: var(--clr-theme-1);
}

.counter-style-1:hover .icon i {
  color: var(--clr-common-white);
}

.counter-style-2 .icon {
  background: #ffedec;
}

.counter-style-2 .icon i {
  color: #fd5343;
}

.counter-style-2:hover .icon {
  background-color: #fd5343;
}

.counter-style-2:hover .icon i {
  color: var(--clr-common-white);
}

.counter-style-3 .icon {
  background: #f5eeff;
}

.counter-style-3 .icon i {
  color: #9e59ff;
}

.counter-style-3:hover .icon {
  background-color: #9e59ff;
}

.counter-style-3:hover .icon i {
  color: var(--clr-common-white);
}

.counter-style-4 .icon {
  background: #e7f7f1;
}

.counter-style-4 .icon i {
  color: #12b571;
}

.counter-style-4:hover .icon {
  background-color: #12b571;
}

.counter-style-4:hover .icon i {
  color: var(--clr-common-white);
}

/*
--------------------------------------------
17.subscribe
*/
.subscribe-form input[type=email] {
  width: 310px;
  background: var(--clr-common-white);
  height: 50px;
  border-radius: 4px;
  border: 0;
  font-size: 14px;
  padding: 0 30px;
  color: var(--clr-body-text);
}

@media (max-width: 767px) {
  .subscribe-form input[type=email] {
    width: 100%;
    margin-bottom: 15px;
  }
}

.subscribe-form button[type=submit] {
  font-size: 15px;
  font-weight: 500;
  border: 0;
  background: var(--clr-body-heading);
  height: 50px;
  color: var(--clr-common-white);
  margin-left: 8px;
  border-radius: 4px;
  padding: 0 30px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.subscribe-form button[type=submit]:hover {
  background-color: #ff6600;
}

.service-list-2 span {
  font-size: 14px;
  display: inline-block;
  margin: 0 17px;
  font-weight: 500;
}

.service-list-2 span i {
  margin-right: 7px;
}

.subscribe-s-title .s-subtitle {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: var(--clr-tertiary3);
  margin-bottom: 14px;
}

.subscribe-s-title .s-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--clr-body-heading);
}

@media (max-width: 767px) {
  .subscribe-s-title .s-title {
    font-size: 31px;
  }
}

@media (max-width: 767px) {
  .subscribe-s-title .s-title br {
    display: none;
  }
}

@media (max-width: 767px) {
  .subscribe-left-space-2 {
    padding-top: 0;
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .subscribe-left-space-2 {
    padding-top: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .subscribe-area-space-2 {
    padding: 100px 0;
  }
}

/*
--------------------------------------------
18.creative_task
*/
.creative-task-sm-info {
  font-size: 16px;
  color: var(--clr-common-white);
  opacity: 0.7;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .creative-task-sm-info {
    line-height: 1.5;
  }
}

.creative-task-tab-controls button {
  height: 36px;
  background: transparent;
  color: var(--clr-common-white);
  border: 2px solid #222d53;
  padding: 0 18px;
  margin-left: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .creative-task-tab-controls button {
    padding: 0 6px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .creative-task-tab-controls button {
    padding: 0 16px;
    margin-left: auto;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .creative-task-tab-controls button {
    margin-left: auto;
    margin-right: 6px;
    padding: 0 5px;
    margin-bottom: 10px;
  }
}

.creative-task-tab-controls button.active {
  background-color: var(--clr-theme-1);
  border-color: transparent;
}

.creative-task-tab-controls button i {
  font-size: 11px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .creative-task-tab-controls button i {
    margin-right: 9px;
  }
}

@media (max-width: 767px) {
  .creative-task-tab-controls button i {
    margin-right: 8px;
  }
}

.creative-task-tab-controls button:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}

.creative-task-dashbord-wrap {
  padding: 70px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .creative-task-dashbord-wrap {
    padding: 50px 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .creative-task-dashbord-wrap {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .creative-task-dashbord-wrap {
    padding: 25px;
  }
}

.creative-task-dashbord-wrap .icon {
  margin-bottom: 34px;
}

.creative-task-dashbord-wrap .content {
  padding-bottom: 26px;
}

.creative-task-title {
  font-weight: 600;
  color: var(--clr-common-white);
  display: block;
  margin-bottom: 11px;
}

.creative-task-content {
  font-size: 14px;
  line-height: 24px;
  opacity: 0.7;
  color: var(--clr-common-white);
}

.creative-task-service-list ul li {
  list-style: none;
  display: block;
  font-size: 14px;
}

.creative-task-service-list ul li:not(:last-child) {
  margin-bottom: 12px;
}

.creative-task-service-list ul li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  background: #293568;
  border-radius: 50%;
  margin-right: 15px;
  text-align: center;
  font-size: 10px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .creative-task-dashbord-wrap {
    padding: 60px;
  }
}

.creative-task-dashbord-wrap .row>.item-1 {
  width: 34.666667%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .creative-task-dashbord-wrap .row>.item-1 {
    width: 43.666667%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .creative-task-dashbord-wrap .row>.item-1 {
    width: 100%;
    margin-bottom: 60px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .creative-task-dashbord-wrap .row>.item-1 {
    width: 100%;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .creative-task-dashbord-wrap .row>.item-1 {
    width: 100%;
    margin-bottom: 60px;
  }
}

.creative-task-dashbord-wrap .row>.item-2 {
  width: calc(100% - 34.666667%);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .creative-task-dashbord-wrap .row>.item-2 {
    width: calc(100% - 43.666667%);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .creative-task-dashbord-wrap .row>.item-2 {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .creative-task-dashbord-wrap .row>.item-2 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .creative-task-dashbord-wrap .row>.item-2 {
    width: 100%;
  }
}

.gradient-dashbord-box {
  background-image: -moz-linear-gradient(-60deg, #6772e3 0%, #f25b96 100%);
  background-image: -webkit-linear-gradient(-60deg, #6772e3 0%, #f25b96 100%);
  background-image: -ms-linear-gradient(-60deg, #6772e3 0%, #f25b96 100%);
  padding: 60px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gradient-dashbord-box {
    padding: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .gradient-dashbord-box {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .gradient-dashbord-box {
    padding: 20px;
  }
}

/*
--------------------------------------------
19.pricing
*/
.pricing-tab-control button {
  border: 0;
  background: transparent;
  font-size: 14px;
  color: var(--clr-body-text);
  font-weight: 500;
  margin: 0;
  padding: 0 calc(85px / 2);
}

.pricing-tab-control button.active {
  color: var(--clr-theme-1);
}

.pricing-tab-control button.annual-tab-btn {
  position: relative;
}

.pricing-tab-control button.annual-tab-btn::before {
  width: 60px;
  height: 24px;
  background-color: var(--clr-theme-1);
  content: "";
  position: absolute;
  inset-inline-start: 113px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 30px;
  pointer-events: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .pricing-tab-control button.annual-tab-btn::before {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing-tab-control button.annual-tab-btn::before {
    display: block;
    inset-inline-start: 113px;
  }
}

.pricing-tab-control button.annual-tab-btn::after {
  position: absolute;
  inset-inline-start: 118px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--clr-common-white);
  border-radius: 50%;
  content: "";
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

@media (max-width: 767px) {
  .pricing-tab-control button.annual-tab-btn::after {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing-tab-control button.annual-tab-btn::after {
    display: block;
    inset-inline-start: 152px;
  }
}

.pricing-tab-control button.annual-tab-btn.pos-left-after::after {
  inset-inline-start: 152px;
}

@media (max-width: 767px) {
  .pricing-tab-control button.annual-tab-btn.pos-left-after::after {
    inset-inline-start: 118px;
  }
}

.pricing-tab-control.style-2 button.annual-tab-btn::before {
  background-color: var(--clr-tertiary);
}

.pricing-tab-control.style-2 button.active {
  color: var(--clr-tertiary);
}

.lets-chet {
  font-size: 24px;
  font-weight: 500;
  color: var(--clr-body-heading);
  margin-bottom: 68px;
}

.pricing-shapes {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.pricing-shapes.show-shapes {
  opacity: 1;
  visibility: visible;
}

.pricing-shapes>* {
  position: absolute;
}

.pricing-shapes>.shape-1 {
  inset-inline-start: 47px;
  top: 165px;
}

.pricing-shapes>.shape-1 img {
  -webkit-animation: services-triangle-2 4s linear infinite alternate;
  -moz-animation: services-triangle-2 4s linear infinite alternate;
  -o-animation: services-triangle-2 4s linear infinite alternate;
  animation: services-triangle-2 4s linear infinite alternate;
}

.pricing-shapes>.shape-2 {
  inset-inline-end: 47px;
  top: 180px;
}

.pricing-shapes>.shape-2 img {
  -webkit-animation: services-triangle-2 4s linear infinite alternate;
  -moz-animation: services-triangle-2 4s linear infinite alternate;
  -o-animation: services-triangle-2 4s linear infinite alternate;
  animation: services-triangle-2 4s linear infinite alternate;
}

.pricing-shapes>.shape-3 {
  inset-inline-start: 33px;
  line-height: 1;
  top: 160px;
}

.pricing-shapes>.shape-3 img {
  -webkit-animation: services-circle-2 1.5s linear 0s infinite alternate;
  -moz-animation: services-circle-2 1.5s linear 0s infinite alternate;
  -o-animation: services-circle-2 1.5s linear 0s infinite alternate;
  animation: services-circle-2 1.5s linear 0s infinite alternate;
}

.pricing-shapes>.shape-4 {
  inset-inline-start: 30px;
  top: 185px;
}

.pricing-shapes>.shape-4 img {
  -webkit-animation: hero-triangle-1 6s linear infinite;
  -moz-animation: hero-triangle-1 6s linear infinite;
  -o-animation: hero-triangle-1 6s linear infinite;
  animation: hero-triangle-1 6s linear infinite;
}

.pricing-shapes>.shape-5 {
  inset-inline-end: 30px;
  top: 159px;
}

.pricing-shapes>.shape-5 img {
  -webkit-animation: hero-triangle-1 6s linear infinite;
  -moz-animation: hero-triangle-1 6s linear infinite;
  -o-animation: hero-triangle-1 6s linear infinite;
  animation: hero-triangle-1 6s linear infinite;
}

.pricing-shapes>.shape-6 {
  top: 190px;
  inset-inline-end: 34px;
}

.pricing-shapes>.shape-6 img {
  -webkit-animation: services-circle-2 1.5s linear 0s infinite alternate;
  -moz-animation: services-circle-2 1.5s linear 0s infinite alternate;
  -o-animation: services-circle-2 1.5s linear 0s infinite alternate;
  animation: services-circle-2 1.5s linear 0s infinite alternate;
}

.single-pricing-title {
  font-weight: 600;
  font-size: 22px;
  color: var(--clr-body-heading);
  margin-bottom: 9px;
}

.single-pricing-info {
  font-size: 14px;
  line-height: 20px;
  color: var(--clr-body-text);
  margin-bottom: 33px;
}

.single-pricing-info.space-last {
  margin-bottom: 57px;
}

.single-pricing-amount {
  font-size: 54px;
  color: var(--clr-body-heading);
  font-weight: 500;
  margin-bottom: 0;
}

.single-pricing-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-body-heading);
  display: block;
  margin-bottom: 35px;
}

.single-price {
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 30px 70px 0px #0005271a;
  padding: 50px 35px;
  position: relative;
  min-height: 370px;
  background-color: var(--clr-common-white);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .single-price {
    padding: 50px 25px;
  }
}

.single-price:hover .pricing-shapes {
  opacity: 1;
  visibility: visible;
}

.single-price::after {
  position: absolute;
  inset-inline-start: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 5px;
  width: 170px;
  background-color: transparent;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  content: "";
}

.rtl .single-price::after {
  transform: translateX(50%);
}

.single-price.item-1::after {
  background-color: #ffaa3b;
}

.single-price.item-2-1::after {
  background-color: #ffaa3b;
}

.single-price.item-2::after {
  background-color: #33dbdb;
}

.single-price.item-2-2::after {
  background-color: var(--clr-tertiary);
}

.single-price.item-3::after {
  background-color: #af85ff;
}

.single-price.item-2-3::after {
  background-color: #af85ff;
}

.single-price.item-4::after {
  background-color: var(--clr-theme-2);
}

.single-price.item-2-4::after {
  background-color: var(--clr-theme-1);
}

.single-price-wrap {
  position: relative;
  z-index: 9;
}

.pricing-tab-extra-info>* {
  margin: 0 10px;
}

.pricing-tab-extra-info .icon {
  width: 35px;
  height: 35px;
  background: #eaebf2;
  margin-top: 5px;
  border-radius: 50%;
  line-height: 33px;
  vertical-align: top;
}

.pricing-tab-extra-info .content p {
  font-size: 14px;
  line-height: 22px;
  color: var(--clr-body-text);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .pricing-tab-extra-info .content p br {
    display: none;
  }
}

@media (max-width: 767px) {
  .pricing-space {
    padding-bottom: 90px;
  }
}

/*
--------------------------------------------
20.news
*/
.news-box {
  background-color: var(--clr-common-white);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 40px 50px 0px #0005271a;
}

.news-box .content {
  padding: 30px 34px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .news-box .content {
    padding: 30px 25px;
  }
}

@media (max-width: 767px) {
  .news-box .content {
    padding: 30px 19px;
  }
}

.news-box .thumb {
  overflow: hidden;
}

.news-box .thumb img {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.news-box:hover .thumb img {
  transform: scale(1.1);
}

.news-cat {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-body-heading);
  text-decoration: none;
  background: var(--clr-common-white);
  position: absolute;
  inset-inline-start: 30px;
  border-radius: 4px;
  top: 30px;
  height: 30px;
  padding: 0 15px;
  line-height: 30px;
}

.news-cat:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.news-meta {
  margin-bottom: 11px;
}

.news-meta>* {
  display: inline-block;
}

.news-meta .single-meta span,
.news-meta .single-meta a {
  font-size: 16px;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: var(--clr-body-text);
}

.news-meta .single-meta span {
  margin-right: 34px;
}

.news-meta .single-meta span::after {
  position: absolute;
  inset-inline-end: -20px;
  width: 1px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #a9aaac;
  content: "";
}

.news-meta .single-meta a:hover {
  color: var(--clr-theme-1);
}

.news-link {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--clr-body-heading);
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .news-link {
    font-size: 18px;
  }
}

.news-link a {
  text-decoration: none;
}

.news-link a:hover {
  color: var(--clr-theme-1);
}

.news-read-more {
  font-weight: 500;
  color: var(--clr-body-heading);
  text-decoration: none;
  font-size: 15px;
}

.news-read-more i {
  font-size: 11px;
  font-weight: 500;
  margin-left: 7px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.news-read-more:hover {
  color: var(--clr-theme-1);
}

.news-read-more:hover i {
  margin-left: 10px;
}

.news-read-more.style-2:hover {
  color: var(--clr-tertiary3);
}

.news-container {
  max-width: calc((((100% - 1170px)/2) + 1170px) + 225px);
  margin-left: auto;
  transform: translateX(225px);
}

@media (max-width: 767px) {
  .news-container {
    max-width: 540px;
    transform: translateX(0);
    padding: 0 15px;
    margin: auto;
  }
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .news-container {
    transform: translateX(18px);
    max-width: calc((((100% - 1200px)/2) + 1200px));
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .news-container {
    transform: translateX(18px);
    max-width: calc((((100% - 1140px)/2) + 1140px));
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .news-container {
    transform: translateX(18px);
    max-width: calc((((100% - 960px)/2) + 960px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .news-container {
    transform: translateX(18px);
    max-width: calc((((100% - 720px)/2) + 720px));
  }
}

.single-news-2 {
  padding: 0 40px;
  background-color: var(--clr-common-white);
  padding-top: 50px;
  border-radius: 4px;
  padding-bottom: 55px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-news-2 {
    padding: 37px 17px;
  }
}

.single-news-2 .content p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 26px;
}

.single-news-2-title {
  font-size: 20px;
  margin-bottom: 13px;
  font-weight: 600;
  color: var(--clr-body-heading);
}

.single-news-2-title a {
  text-decoration: none;
}

.single-news-2-title:hover a {
  color: var(--clr-tertiary3);
}

.single-news-2 img {
  max-width: 215px;
  margin: 0 auto;
}

.view-all-service {
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  color: var(--clr-body-text);
  text-decoration: none;
}

.view-all-service i {
  font-weight: 500;
  margin-left: 3px;
  font-size: 13px;
}

.view-all-service:hover {
  color: var(--clr-tertiary3);
}

.news-swiper-button-next,
.testi-swiper-button-next-2,
.news-swiper-button-prev,
.testi-swiper-button-prev-2 {
  width: 44px;
  height: 44px;
  display: inline-block;
  background-color: transparent;
  border-radius: 50%;
  color: var(--clr-body-heading);
  font-size: 26px;
  text-align: center;
  border: 2px solid #dadce3;
  line-height: 42px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.news-swiper-button-next:hover,
.testi-swiper-button-next-2:hover,
.news-swiper-button-prev:hover,
.testi-swiper-button-prev-2:hover {
  background: var(--clr-tertiary);
  color: var(--clr-common-white);
  border-color: transparent;
}

.testi-swiper-button-next-2:hover,
.testi-swiper-button-prev-2:hover {
  background-color: var(--clr-theme-1);
}

.sasup-news-nav-transform {
  transform: translateY(-23px);
}

@media (max-width: 767px) {
  .sasup-news-nav-transform {
    transform: translateY(0);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sasup-news-nav-transform {
    transform: translateY(-26px);
  }
}

.subscribe-right-2.has-pos {
  position: absolute;
  inset-inline-end: -144px;
  bottom: 0;
}

.subscribe-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-tertiary3);
  margin-bottom: 25px;
  display: block;
}

.subscribe-title {
  font-size: 50px;
  font-weight: 700;
  color: #000323;
  line-height: 60px;
}

.newsletter-follow .newsletter-follow-label {
  font-size: 16px;
  color: #c0c1cb;
  font-weight: 400;
  margin-bottom: 15px;
}

.social-follow a {
  height: 30px;
  width: 30px;
  border-radius: 4px;
  border: 2px solid #242d4a;
  color: var(--clr-common-white);
  margin-right: 6px;
  font-size: 13px;
  display: inline-block;
  text-align: center;
  line-height: 28px;
}

.social-follow a:hover {
  background-color: var(--clr-theme-1);
}

.social-follow-2 a {
  border-color: #e6e7eb;
  color: var(--clr-body-heading);
}

.social-follow-2 a:hover {
  border-color: transparent;
  color: var(--clr-common-white);
}

.single-blog-list-category {
  padding: 0 10px;
  color: var(--clr-common-white);
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  height: 22px;
  background: var(--clr-tertiary3);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  line-height: 22px;
  border-radius: 4px;
}

.single-blog-list-category:hover {
  background-color: var(--clr-theme-1);
}

.single-blog-list-category a {
  text-decoration: none;
}

.post-text p {
  font-size: 15px;
  line-height: 25px;
  color: var(--clr-body-text);
  margin-bottom: 25px;
}

.avatar-sm-info {
  display: flex;
  align-items: center;
}

.avatar-sm-info>* {
  flex: 0 0 auto;
}

.avatar-sm-info .avatar-thumb {
  margin-right: 10px;
}

.avatar-name {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  color: #0c1636;
}

.single-blog-list-author-meta {
  overflow: hidden;
  padding: 14px 40px;
  display: flex;
  border-top: 1px solid #e6e7eb;
  justify-content: space-between;
}

@media (min-width: 768px) and (max-width: 991px) {
  .single-blog-list-author-meta {
    padding: 14px 31px;
  }
}

@media (max-width: 767px) {
  .single-blog-list-author-meta {
    padding: 14px 22px;
    align-items: center;
  }
}

.avatar-thumb img {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.meta-item-2 a {
  text-decoration: none;
}

.meta-item-2 a:hover {
  color: var(--clr-theme-1);
}

.btn-play {
  width: 60px;
  color: var(--clr-theme-1);
  height: 60px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background: var(--clr-common-white);
}

.btn-play:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.btn-play i {
  line-height: 60px;
}

.blockquote-author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-body-heading);
  margin-bottom: 0;
}

.blockquote-shadow {
  box-shadow: 0px 20px 40px 0px #0005271a;
}

.blockquote-wrap {
  padding: 45px 50px;
  padding-bottom: 50px;
  position: relative;
}

@media (max-width: 767px) {
  .blockquote-wrap {
    padding: 20px 20px;
  }
}

.blockquote-wrap blockquote,
.blockquote-wrap .blockquote-author-name {
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {

  .blockquote-wrap blockquote,
  .blockquote-wrap .blockquote-author-name {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .quote-shapes img {
    max-width: 40px;
  }
}

.quote-shapes img:nth-child(1) {
  position: absolute;
  inset-inline-start: 65px;
  top: -2px;
}

.quote-shapes img:nth-child(2) {
  position: absolute;
  inset-inline-end: 70px;
  bottom: 0;
}

.link-shapes img:nth-child(1) {
  position: absolute;
  inset-inline-start: 87px;
  top: 0;
}

.link-shapes img:nth-child(2) {
  position: absolute;
  inset-inline-end: 93px;
  bottom: 0;
}

.basic-pagination ul li {
  display: inline-block;
}

.basic-pagination ul li .page-numbers {
  width: 35px;
  height: 35px;
  border: 2px solid #e6e7eb;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  text-decoration: none;
  color: var(--clr-body-heading);
  margin-right: 8px;
}

.basic-pagination ul li .page-numbers:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}

.basic-pagination ul li .page-numbers.current {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}

.basic-pagination ul li .next,
.basic-pagination ul li .prev {
  font-size: 18px;
}

.blog-content -main p {
  font-size: 17px;
  line-height: 28px;
  color: var(--clr-body-text);
  margin-bottom: 40px;
}

.blog-content-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--clr-body-heading);
}

.meta-sm-title {
  font-size: 16px;
  font-weight: 600;
  margin-right: 8px;
}

.flex-blog-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 40px;
}

.has-border-top-1 {
  border-top: 1px solid #e6e7eb;
}

.single-post-navigation {
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-gap: 5px;
}

.single-post-navigation>* {
  flex: 0 0 calc(50% - 2.5px);
}

.post-navigation-redirect {
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-common-white);
  margin-bottom: 5px;
  display: block;
}

.post-navigation-redirect i {
  font-size: 13px;
  margin-right: 12px;
}

.post-navigation-redirect i.right-redirect {
  margin-right: auto;
  margin-left: 12px;
}

.post-navigation-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-common-white);
  margin-bottom: 0;
}

.post-navigation-box {
  background: var(--clr-theme-1);
  padding: 15px 30px;
  border-radius: 4px;
}

.single-post-navigation>* {
  text-decoration: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-post-navigation>* {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .single-post-navigation>* {
    flex: 0 0 100%;
  }
}

.author-biography {
  box-shadow: 0px 10px 40px 0px rgba(0, 5, 39, 0.1);
  padding: 30px 50px;
  padding-bottom: 43px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .author-biography {
    padding: 26px 24px;
    padding-bottom: 24px;
  }
}

.author-biography-img {
  float: left;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .author-biography-img {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.author-biography-content {
  overflow: hidden;
}

.author-biography-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--clr-body-heading);
}

.author-biography-info {
  font-size: 15px;
  line-height: 24px;
  color: var(--clr-body-text);
  margin-bottom: 0;
}

.blog-sm-heading {
  color: var(--clr-body-heading);
}

.related-news-box {
  box-shadow: 0px 30px 70px 0px #0005271a;
  background-color: var(--clr-common-white);
}

.single-meta.meta-sm .news-date,
.single-meta.meta-sm .news-comment {
  font-size: 12px;
  font-weight: 400;
  color: var(--clr-body-text);
}

.single-meta.meta-sm .news-date {
  margin-right: 14px;
}

.single-meta.meta-sm span::after {
  inset-inline-end: -11px;
}

.related-news-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--clr-body-heading);
  margin-bottom: 7px;
}

.related-news-title:hover {
  color: var(--clr-theme-1);
}

.related-news-title a {
  text-decoration: none;
}

.meta-related-space {
  margin-bottom: 7px;
}

.related-read-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-body-heading);
  text-decoration: none;
}

.related-read-more:hover {
  color: var(--clr-theme-1);
}

.related-read-more i {
  font-size: 12px;
  font-weight: 500;
  margin-left: 6px;
}

.related-news-box {
  border-radius: 4px;
  overflow: hidden;
}

.related-news-box .thumb {
  overflow: hidden;
}

.related-news-box .thumb img {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.related-news-box .content {
  padding: 16px 20px;
  padding-bottom: 31px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .related-news-box .content {
    padding: 16px 16px;
  }
}

.related-news-box:hover .thumb img {
  transform: scale(1.1);
}

.row.g-20 {
  --bs-gutter-x: 20px;
}

/* comment box */
.post-comment-title h3 {
  font-size: 22px;
}

.latest-comments .comments-box {
  border-top: 0;
  margin-bottom: 30px;
}

.latest-comments li {
  border-radius: 4px;
}

.latest-comments li.children {
  margin-left: 105px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest-comments li.children {
    margin-left: 60px;
  }
}

@media (max-width: 767px) {
  .latest-comments li.children {
    margin-left: 15px;
  }
}

.comments-avatar {
  float: left;
  margin-right: 20px;
}

.comments-avatar img {
  border-radius: 50%;
}

@media (max-width: 767px) {
  .comments-avatar {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.comments-text {
  overflow: hidden;
}

.comments-text p {
  font-size: 15px;
  line-height: 24px;
  color: var(--clr-body-text);
  margin-bottom: 18px;
}

.avatar-name {
  margin-bottom: 7px;
  overflow: hidden;
  position: relative;
}

.avatar-name h5 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  color: #171a34;
  margin-bottom: 0px;
}

.avatar-name span {
  font-size: 14px;
  font-weight: 400;
  color: #686a6f;
  display: inline-block;
  margin-left: 20px;
  position: relative;
}

.avatar-name span::before {
  position: absolute;
  inset-inline-start: -13px;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background-color: #6f6f78;
  top: 50%;
  transform: translateY(-50%);
}

.comment-reply i {
  padding-right: 4px;
}

.comment-reply:hover {
  color: var(--clr-theme-1);
}

/* post comment */
.post-input textarea {
  background: #eeeff4;
  height: 160px;
  border: 0;
  color: #707276;
  font-size: 14px;
  width: 100%;
  border-radius: 4px;
  padding: 20px 25px;
}

.comment-reply {
  display: inline-block;
  height: 25px;
  border: 2px solid #e6e7eb;
  font-size: 13px;
  padding: 0 10px;
  text-decoration: none;
  font-weight: 500;
  color: var(--clr-body-heading);
  line-height: 19px;
  border-radius: 4px;
}

.comment-reply:hover {
  border-color: transparent;
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.transition-5 {
  transition: all 0.5s;
}

.single-news-footer-list .thumb {
  margin-right: 20px;
  float: left;
  border-radius: 4px;
  overflow: hidden;
}

.single-news-footer-list .single-news-footer-title {
  font-size: 16px;
  overflow: hidden;
  font-weight: 600;
  line-height: 22px;
  color: var(--clr-common-white);
  margin-bottom: 6px;
}

.single-news-footer-list .single-news-footer-title a {
  text-decoration: none;
}

.single-news-footer-meta {
  font-size: 13px;
  color: var(--clr-common-white);
  font-weight: 300;
}

/*
--------------------------------------------
22.testimonial
*/
.testimonial-wrapper {
  display: flex;
  border-radius: 4px;
  padding: 60px 70px;
  padding-bottom: 120px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper {
    padding: 60px 35px;
    padding-bottom: 75px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper {
    padding-bottom: 55px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrapper {
    flex-wrap: wrap;
    padding: 50px 40px;
    padding-bottom: 83px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper {
    flex-wrap: wrap;
    padding: 45px 29px;
    padding-bottom: 83px;
  }
}

.testimonial-wrapper>* {
  flex: 0 0 auto;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrapper>* {
    flex: 0 0 100%;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper>* {
    flex: 0 0 100%;
  }
}

.testimonial-wrapper .thumb {
  position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper .thumb {
    margin-right: 61px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrapper .thumb {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper .thumb {
    margin-bottom: 30px;
  }
}

.testimonial-wrapper .thumb::after {
  inset-inline-end: -75px;
  top: 0;
  height: 215px;
  width: 1px;
  background-color: #4b71ba;
  content: "";
  position: absolute;
}

@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper .thumb::after {
    inset-inline-end: -25px;
    top: -26px;
    height: 191px;
  }
}

.testimonial-wrapper .content {
  flex: inherit;
}

.testimonial-wrapper .content p {
  font-size: 24px;
  color: var(--clr-common-white);
  line-height: 34px;
  margin-bottom: 17px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper .content p {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrapper .content p {
    font-size: 18px;
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper .content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.author-name {
  font-size: 16px;
  color: var(--clr-common-white);
  font-weight: 400;
  margin-bottom: 4px;
}

.author-job {
  font-size: 14px;
  color: var(--clr-common-white);
  font-weight: 400;
  margin-bottom: 0;
}

.testimonial-active .swiper-pagination {
  display: inline-block;
  width: auto;
  position: absolute;
  inset-inline-start: 0;
  bottom: 85px;
  position: relative;
  transform: translateY(-18px);
  margin-left: 294px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-active .swiper-pagination {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-active .swiper-pagination {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-active .swiper-pagination {
    margin-left: 36px;
    display: none;
  }
}

@media (max-width: 767px) {
  .testimonial-active .swiper-pagination {
    display: none;
  }
}

.testimonial-active .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  border: 2px solid var(--clr-common-white);
  height: 8px;
  background: transparent;
}

.testimonial-active .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--clr-common-white);
}

.testimonial-shape {
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
}

.bg-testimonial-bottom-right {
  background-position: 117% 52%;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .bg-testimonial-bottom-right {
    background-position: 58% -31%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-space-1 {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-space-1 {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .testimonial-space-1 {
    margin-bottom: 40px;
  }
}

.single-testimonial-2 {
  background-color: var(--clr-common-white);
  border-radius: 4px;
}

.rating i {
  font-size: 15px;
  color: var(--clr-body-text);
  line-height: 1;
}

.rating i.active {
  color: #ff9916;
}

.single-testimonial-2-link {
  font-weight: 600;
  color: var(--clr-body-heading);
  font-size: 18px;
  margin-bottom: 13px;
}

.single-testimonial-2-content .rating {
  margin-bottom: 5px;
}

.single-testimonial-2-desc {
  font-size: 15px;
  line-height: 24px;
  color: var(--clr-body-text);
}

.single-testimonial-2-user {
  display: flex;
  align-items: center;
}

.single-testimonial-2-user>* {
  flex: 0 0 auto;
}

.testimonial-user-title {
  color: var(--clr-body-heading);
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1;
}

.testimonial-user-designation {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-body-text);
}

.single-testimonial-2 {
  padding-left: 40px;
  padding-top: 50px;
  padding-right: 35px;
  padding-bottom: 60px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

@media (max-width: 767px) {
  .single-testimonial-2 {
    padding: 30px;
  }
}

.single-testimonial-2:hover {
  box-shadow: 0px 30px 50px 0px #0005271a;
}

/*
--------------------------------------------
23.footer
*/
.widget-text {
  font-size: 15px;
  color: #686b6f;
  line-height: 22px;
  margin-bottom: 25px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget-3.space-left-0 {
    padding-left: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer-widget-3.space-left-0 {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-widget-3.space-left-0 {
    padding-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-widget-3.space-left-0 {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .footer-widget-3.space-left-0 {
    padding-left: 0;
  }
}

.footer-widget-4 ul li a {
  color: #adb0b6;
}

.footer-widget h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--clr-body-heading);
}

.footer-widget h5.font-semi-bold {
  font-weight: 600;
}

.footer-widget h5.font-medium {
  font-weight: 500;
}

.footer-widget ul li {
  list-style: none;
  color: #686b6f;
}

.footer-widget ul li a {
  text-decoration: none;
  font-size: 15px;
}

.footer-widget ul li a:hover {
  color: var(--clr-theme-1);
}

.footer-widget ul li:not(:last-child) {
  list-style: none;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: var(--clr-theme-1);
}

div.footer-widget-3 ul li a {
  color: #c0c1cb;
}

.footer-2 .footer-widget li:hover a {
  color: var(--clr-tertiary3);
}

.has-border-bottom {
  border-bottom: 1px solid #dedfe4;
}

.copyright-text {
  font-size: 15px;
  color: #686b6f;
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .copyright-text {
    font-size: 13px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright-text {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .copyright-text {
    margin-bottom: 20px;
  }
}

.copyright-text a {
  text-decoration: none;
  color: var(--clr-theme-1);
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  color: var(--clr-common-white);
  line-height: 34px;
  margin-left: 6px;
  display: inline-block;
  text-align: center;
}

.has-border-bottom-3 {
  border-bottom: 1px solid #252e4a;
}

@media (max-width: 767px) {
  .social-follow-space a {
    margin-right: -2px;
  }
}

.footer-negative-space {
  margin-top: -8px;
}

.footer-black-list ul li {
  overflow: hidden;
}

.footer-black-list ul li span {
  line-height: 24px;
}

.footer-black-list ul li:not(:last-child) {
  margin-bottom: 18px;
}

.footer-black-list .icon {
  float: left;
  margin-right: 14px;
}

.footer-black-list .icon i {
  vertical-align: middle;
  color: #ff4456;
}

.footer-black-list .content {
  overflow: hidden;
}

.footer-black-list .content span {
  color: var(--clr-common-white);
  font-size: 15px;
}

.newsletter-content-info p {
  color: var(--clr-common-white);
  opacity: 0.7;
  font-size: 14px;
  line-height: 22px;
}

.footer-widget-desc-info p {
  font-size: 18px;
  line-height: 26px;
  color: var(--clr-common-white);
  opacity: 0.7;
  margin-bottom: 0;
}

.footer-social-white a {
  width: 30px;
  height: 30px;
  text-align: center;
  border: 2px solid #22458b;
  line-height: 26px;
  border-radius: 4px;
  margin-right: 6px;
  display: inline-block;
  font-size: 12px;
  color: var(--clr-common-white);
}

.footer-social-white a:hover {
  border-color: transparent;
  color: var(--clr-theme-1);
  background-color: var(--clr-common-white);
}

/*
--------------------------------------------
24.svg
*/
.cls-1 {
  opacity: 0.2;
}

.cls-2 {
  fill: url(#linear-gradient);
}

.cls-3 {
  fill: url(#linear-gradient-2);
}

.cls-4 {
  fill: url(#linear-gradient-3);
}

.cls-5 {
  fill: url(#linear-gradient-4);
}

.cls-6 {
  fill: url(#linear-gradient-5);
}

.cls-7 {
  fill: url(#linear-gradient-6);
}

.cls-8 {
  fill: url(#linear-gradient-7);
}

.cls-9 {
  fill: url(#linear-gradient-8);
}

.cls-10 {
  fill: url(#linear-gradient-9);
}

.cls-11 {
  fill: var(--clr-common-white);
  opacity: 0.02;
}

.cls-12 {
  opacity: 0.06;
  fill: url(#linear-gradient-10);
}

.cls-13 {
  fill: url(#linear-gradient-11);
}

.cls-14 {
  fill: url(#linear-gradient-12);
}

.cls-15 {
  fill: #ffa6df;
}

.cls-16 {
  fill: url(#linear-gradient-13);
}

.cls-17 {
  fill: url(#linear-gradient-14);
}

.cls-18 {
  fill: url(#linear-gradient-15);
}

.cls-19 {
  fill: url(#linear-gradient-16);
}

.cls-20 {
  fill: url(#linear-gradient-17);
}

.cls-21 {
  fill: url(#linear-gradient-18);
}

.cls-22 {
  fill: url(#linear-gradient-19);
}

.cls-23 {
  fill: url(#linear-gradient-20);
}

.cls-24 {
  fill: url(#linear-gradient-21);
}

.cls-25 {
  fill: url(#linear-gradient-22);
}

.cls-26 {
  fill: url(#linear-gradient-23);
}

.cls-27 {
  fill: url(#linear-gradient-24);
}

.cls-28 {
  fill: url(#linear-gradient-25);
}

.cls-29 {
  fill: url(#linear-gradient-26);
}

.cls-30 {
  fill: url(#linear-gradient-27);
}

.cls-31 {
  fill: url(#linear-gradient-28);
}

.cls-32 {
  fill: url(#linear-gradient-29);
}

.cls-33 {
  fill: url(#linear-gradient-30);
}

.cls-34 {
  fill: url(#linear-gradient-31);
}

.cls-35 {
  fill: url(#linear-gradient-32);
}

.cls-36 {
  fill: url(#linear-gradient-33);
}

.cls-37 {
  fill: url(#linear-gradient-34);
}

.cls-38 {
  fill: url(#linear-gradient-35);
}

.cls-39 {
  fill: url(#linear-gradient-36);
}

.cls-40 {
  fill: url(#linear-gradient-37);
}

.cls-41 {
  fill: url(#linear-gradient-38);
}

.cls-42 {
  fill: url(#linear-gradient-39);
}

.cls-43 {
  fill: url(#linear-gradient-40);
}

.cls-44 {
  fill: url(#linear-gradient-41);
}

.cls-45 {
  fill: url(#linear-gradient-42);
}

.cls-46 {
  fill: url(#linear-gradient-43);
}

.cls-47 {
  fill: url(#linear-gradient-44);
}

.cls-48 {
  fill: url(#linear-gradient-45);
}

.cls-49 {
  fill: url(#linear-gradient-46);
}

.cls-50 {
  fill: url(#linear-gradient-47);
}

.cls-51 {
  fill: url(#linear-gradient-48);
}

.cls-52 {
  fill: url(#linear-gradient-49);
}

.cls-53 {
  fill: url(#linear-gradient-50);
}

.cls-54 {
  fill: url(#linear-gradient-51);
}

.cls-55 {
  fill: url(#linear-gradient-52);
}

.cls-56 {
  fill: url(#linear-gradient-53);
}

.cls-57 {
  fill: url(#linear-gradient-54);
}

.cls-58 {
  fill: url(#linear-gradient-55);
}

.cls-59 {
  fill: url(#linear-gradient-56);
}

.cls-60 {
  fill: url(#linear-gradient-57);
}

.cls-61 {
  fill: url(#linear-gradient-58);
}

.cls-62 {
  fill: url(#linear-gradient-59);
}

.cls-63 {
  fill: url(#linear-gradient-60);
}

.cls-64 {
  fill: url(#linear-gradient-61);
}

.cls-65 {
  fill: url(#linear-gradient-62);
}

.cls-66 {
  fill: url(#linear-gradient-63);
}

.cls-67 {
  fill: url(#linear-gradient-64);
}

.cls-68 {
  fill: url(#linear-gradient-65);
}

.cls-69 {
  fill: url(#linear-gradient-66);
}

.cls-70 {
  fill: url(#linear-gradient-67);
}

.cls-71 {
  fill: url(#linear-gradient-68);
}

.cls-72 {
  fill: url(#linear-gradient-69);
}

.cls-73 {
  fill: url(#linear-gradient-70);
}

.cls-74 {
  fill: url(#linear-gradient-71);
}

.cls-75 {
  fill: url(#linear-gradient-72);
}

/*
--------------------------------------------
25.about
*/
.about-img-group {
  position: relative;
}

.about-img-group .about-img-1 {
  box-shadow: 0px 30px 70px 0px #00153e1a;
  display: inline-block;
  z-index: 3;
  position: relative;
  -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
  -moz-animation: hero-thumb-animation 2s linear infinite alternate;
  -o-animation: hero-thumb-animation 2s linear infinite alternate;
  animation: hero-thumb-animation 2s linear infinite alternate;
}

.about-img-group .about-img-1 .about-img-inner {
  z-index: 3;
  background-color: var(--clr-common-white);
  position: relative;
}

.about-img-group .about-img-2 {
  position: absolute;
  inset-inline-start: -30px;
  z-index: 9;
  -webkit-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
  bottom: -40px;
  box-shadow: 0px 30px 70px 0px #00153e1a;
}

@media (max-width: 767px) {
  .about-img-group .about-img-2 {
    inset-inline-start: 17px;
  }
}

.about-img-group .about-img-2 .about-img-inner {
  z-index: 9;
  background-color: var(--clr-common-white);
  position: relative;
}

.about-img-group .about-img-3 {
  position: absolute;
  inset-inline-start: 15px;
  bottom: -40px;
}

.about-img-group .about-img-4 {
  position: absolute;
  inset-inline-start: -5px;
  bottom: 155px;
}

@media (max-width: 767px) {
  .about-img-group .about-img-4 {
    inset-inline-start: 16px;
  }
}

.about-img-group .about-img-5 {
  position: absolute;
  inset-inline-start: -42px;
  top: 42px;
}

@media (max-width: 767px) {
  .about-img-group .about-img-5 {
    inset-inline-start: 7px;
  }
}

.about-subtitle-2 {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-tertiary3);
  display: block;
  margin-bottom: 10px;
}

.about-title-2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--clr-body-heading);
}

@media (max-width: 767px) {
  .about-title-2 {
    font-size: 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-title-2 {
    font-size: 27px;
  }
}

@media (max-width: 767px) {
  .about-title-2 br {
    display: none;
  }
}

.about-content-2 {
  line-height: 26px;
  color: var(--clr-body-text);
}

.about-img-group-2 {
  display: inline-block;
  position: relative;
}

.about-img-group-2 .about-img-1 {
  -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
  -moz-animation: hero-thumb-animation 2s linear infinite alternate;
  -o-animation: hero-thumb-animation 2s linear infinite alternate;
  animation: hero-thumb-animation 2s linear infinite alternate;
  box-shadow: 0px 30px 70px 0px #00153e1a;
  z-index: 3;
  background-color: var(--clr-common-white);
  position: relative;
}

.about-img-group-2 .about-img-2 {
  bottom: -81px;
  position: absolute;
  inset-inline-start: -50px;
  -webkit-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
  box-shadow: -11.722px -27.615px 60px 0px #00153e1a;
  z-index: 9;
  background-color: var(--clr-common-white);
}

.about-img-group-2 .about-img-3 {
  position: absolute;
  top: -30px;
  inset-inline-end: 0;
}

.about-img-group-2 .about-img-4 {
  position: absolute;
  inset-inline-start: -85px;
  bottom: 48px;
}

@media (max-width: 767px) {
  .about-img-group-2 .about-img-4 {
    inset-inline-start: -61px;
  }
}

.about-img-group-2 .about-img-4 img {
  -webkit-animation: hero-triangle-1 6s linear infinite;
  -moz-animation: hero-triangle-1 6s linear infinite;
  -o-animation: hero-triangle-1 6s linear infinite;
  animation: hero-triangle-1 6s linear infinite;
}

.about-img-group-2 .about-img-5 {
  position: absolute;
  top: 70px;
  inset-inline-start: -47px;
}

@media (max-width: 767px) {
  .about-img-group-2 .about-img-5 {
    inset-inline-start: -4px;
  }
}

.about-img-group-2 .about-img-5 img {
  -webkit-animation: services-triangle 7s linear infinite alternate;
  -moz-animation: services-triangle 7s linear infinite alternate;
  -o-animation: services-triangle 7s linear infinite alternate;
  animation: services-triangle 7s linear infinite alternate;
}

.mb-37 {
  margin-bottom: 37px;
}

.mb-215 {
  margin-bottom: 215px;
}

@media (max-width: 767px) {
  .about-left-2 {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .about-img-group .about-img-1 .about-img-inner img {
    max-width: 235px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-img-group .about-img-1 .about-img-inner img {
    max-width: 210px;
  }
}

@media (max-width: 767px) {
  .about-img-group .about-img-2 img {
    max-width: 185px;
  }
}

@media (max-width: 767px) {
  .about-right-2 {
    padding-left: 0;
  }
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .about-right-2 {
    padding-left: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .about-right-2 {
    padding-left: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-right-2 {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-right-2 {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .about-img-group-2 .about-img-inner img {
    max-width: 230px;
  }
}

@media (max-width: 767px) {
  .about-left-2-space {
    margin-bottom: 0;
  }
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .about-left-2-space {
    padding-right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-left-2 {
    padding-right: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-left-2 {
    padding-right: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-content-2 {
    font-size: 15px;
  }
}

.about-content {
  position: relative;
  z-index: 9;
}

@media (min-width: 768px) and (max-width: 991px) {
  .s-title-about {
    font-size: 33px;
  }
}

@media (max-width: 767px) {
  .best-bottom-space {
    margin-bottom: 90px;
  }
}

/*
--------------------------------------------
26.faq
*/
.sasup-cta-content-4 .sasup-cta-action-wrapper-4 {
  flex-wrap: wrap;
}

.sasup-accordion-item {
  margin-bottom: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.sasup-accordion-item.sasup-active-item {
  box-shadow: 0px 30px 70px 0px #00052729;
  background-color: var(--clr-common-white);
}

.sasup-accordion-item button {
  font-size: 16px;
  font-weight: 600;
  padding: 0 30px;
  border: 0;
  display: block;
  height: 60px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  width: 100%;
  background-color: transparent;
  color: var(--clr-tertiary3);
  text-align: left;
}

@media (max-width: 767px) {
  .sasup-accordion-item button {
    height: inherit;
    padding-bottom: 13px;
    font-size: 15px;
    padding-top: 13px;
  }
}

.sasup-accordion-item button.collapsed {
  background: #f2f3f8;
  color: var(--clr-body-heading);
}

.sasup-accordion-desc {
  padding: 0 30px;
}

.sasup-accordion-desc p {
  font-size: 15px;
  line-height: 24px;
  color: var(--clr-body-text);
  padding-bottom: 40px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .sasup-accordion-desc p {
    padding-bottom: 20px;
  }
}

.sasup-accordion-item i.fa-minus {
  display: none;
}

.sasup-accordion-item.sasup-active-item i.fa-minus {
  display: none;
}

/*
--------------------------------------------
28.brand
*/
.single-brand img {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  filter: grayscale(1);
}

.single-brand img:hover {
  filter: grayscale(0);
}

.mb-28 {
  margin-bottom: 28px;
}

/*
--------------------------------------------
29.widget
*/
.widget-shadow-default {
  box-shadow: 0px 20px 40px 0px #0005271a;
}

.right-widget-area {
  padding: 45px 40px;
}

.right-widget-area.has-space {
  padding-top: 50px;
}

@media (max-width: 767px) {
  .right-widget-area {
    padding: 36px 27px;
  }
}

.widget-title {
  font-weight: 700;
  color: var(--clr-body-heading);
  margin-bottom: 30px;
  font-size: 20px;
}

.widget li {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-body-text);
  list-style-type: none;
}

.widget li a:hover {
  color: var(--clr-theme-1);
}

.widget li a {
  text-decoration: none;
}

.widget li a i {
  margin-right: 14px;
  color: var(--clr-theme-1);
}

.form-touch-service-input input {
  height: 50px;
  border: 0;
  font-size: 14px;
  border-radius: 4px;
  color: #707276;
  padding: 0 23px;
  background: #eeeff4;
  width: 100%;
  margin-bottom: 10px;
}

.form-touch-service-input input:focus {
  border: 2px solid var(--clr-theme-1);
}

.widget-contact-title {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--clr-body-heading);
}

.widget-contact-info {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--clr-body-text);
}

.widget-contact-list-single:not(:last-child) {
  margin-bottom: 15px;
}

.sidebar--widget__search .sidebar-search-form {
  position: relative;
}

.sidebar--widget__search .sidebar-search-form input {
  border: 0;
  background: #f0f1f5;
  width: 100%;
  height: 50px;
  border-radius: 4px;
  padding-left: 15px;
}

.sidebar--widget__search .sidebar-search-form button[type=submit] {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.single-rc-post {
  overflow: hidden;
}

.single-rc-post .thumb {
  margin-right: 20px;
  float: left;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .single-rc-post .thumb {
    margin-right: 11px;
  }
}

@media (max-width: 767px) {
  .single-rc-post .thumb {
    margin-right: 10px;
  }
}

.single-rc-post .content {
  overflow: hidden;
}

.single-rc-post-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: var(--clr-body-heading);
  margin-bottom: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .single-rc-post-title {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .single-rc-post-title {
    font-size: 13px;
  }
}

.single-rc-post-title:hover {
  color: var(--clr-theme-1);
}

.single-rc-post-title a {
  text-decoration: none;
}

.single-rc-post-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-body-text);
  display: block;
}

div.tagcloud a {
  height: 30px;
  display: inline-block;
  border: 2px solid #e6e7eb;
  padding: 0 13px;
  text-decoration: none;
  font-size: 13px !important;
  border-radius: 4px;
  font-weight: 500;
  color: var(--clr-body-text);
  margin-bottom: 10px;
  margin-right: 2px;
  line-height: 26px;
}

@media (max-width: 767px) {
  div.tagcloud a {
    padding: 0 7px;
    font-size: 13px;
  }
}

div.tagcloud a:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}

.post-input input {
  height: 50px;
  width: 100%;
  background: #eeeff4;
  border: 0;
  color: #707276;
  border-radius: 4px;
  font-size: 14px;
  padding: 0 25px;
}

.post-input input:focus,
.post-input textarea:focus {
  border: 2px solid transparent;
  border-color: var(--clr-theme-1);
}

.post-input-2 {
  margin-bottom: 30px;
}

.post-input.has-textarea {
  margin-bottom: 18px;
}

.post-check {
  line-height: 1;
}

.post-check input {
  transform: translateY(1px);
  margin-right: 5px;
}

.post-check span {
  font-size: 15px;
  color: var(--clr-body-text);
}

@media (max-width: 767px) {
  .post-check span {
    line-height: 1.5;
  }
}

.sasup-submit-btn {
  background: #2a5cff;
  color: var(--clr-common-white);
  border: 0;
  height: 50px;
  padding: 0 23px;
  border-radius: 4px;
}

/*
--------------------------------------------
30.portfolio
*/
.portfolio-btn-group button {
  color: var(--clr-body-heading);
  font-size: 15px;
  font-weight: 500;
  background-color: transparent;
  padding: 0;
  border: 0;
  margin: 0 18px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  position: relative;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .portfolio-btn-group button {
    margin: 0 8px;
  }
}

@media (max-width: 767px) {
  .portfolio-btn-group button {
    margin: 0 5px;
    margin-bottom: 7px;
  }
}

.portfolio-btn-group button::after {
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background-color: #779eff;
}

.portfolio-btn-group button:hover,
.portfolio-btn-group button.active {
  color: var(--clr-theme-1);
}

.portfolio-btn-group button:hover::after,
.portfolio-btn-group button.active::after {
  inset-inline-start: 0;
  width: 100%;
}

.portfolio-popup-link a {
  width: 45px;
  height: 45px;
  border: 1px solid #9cbdff;
  display: inline-block;
  line-height: 43px;
  color: #f8faff;
  text-align: center;
  border-radius: 50px;
}

.portfolio-popup-link a:hover {
  background-color: var(--clr-common-white);
  border-color: transparent;
  color: var(--clr-theme-1);
}

.portfolio-info-main {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  bottom: -70px;
  padding: 0 40px;
  padding-bottom: 35px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio-info-main {
    padding: 0 25px;
    padding-bottom: 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .portfolio-info-main {
    padding: 0 18px;
    padding-bottom: 19px;
  }
}

@media (max-width: 767px) {
  .portfolio-info-main {
    padding: 0 21px;
    padding-bottom: 18px;
  }
}

.portfolio-info-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-common-white);
  margin-bottom: 5px;
}

.portfolio-info-title a {
  text-decoration: none;
}

.portfolio-info-main .portfolio-info-content {
  font-size: 15px;
  margin-bottom: 0;
  color: var(--clr-common-white);
}

.single-portfolio {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 30px 70px 0px #0005271a;
}

.single-portfolio .portfolio-popup-link {
  position: absolute;
  inset-inline-end: 40px;
  top: -60px;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  transition-timing-function: ease-in-out;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.single-portfolio::after {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  visibility: hidden;
  background-color: var(--clr-theme-1);
}

.single-portfolio:hover::after {
  opacity: 0.8;
  visibility: visible;
}

.single-portfolio:hover .portfolio-popup-link {
  opacity: 1;
  visibility: visible;
  top: 40px;
}

.single-portfolio:hover .portfolio-info-main {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.portfolio-details-category-btn {
  height: 25px;
  background: var(--clr-theme-1);
  line-height: 25px;
  font-size: 13px;
  color: var(--clr-common-white);
  padding: 0 10px;
  display: inline-block;
  border-radius: 4px;
}

.portfolio-details-title {
  font-size: 50px;
  line-height: 60px;
  color: var(--clr-body-heading);
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .portfolio-details-title {
    font-size: 24px;
    line-height: 1.3;
  }
}

.portfolio-shapes>* {
  position: absolute;
}

.portfolio-shape-outside {
  position: absolute;
  inset-inline-end: 0;
  top: 51px;
}

@media (max-width: 767px) {
  .portfolio-shape-outside {
    display: none;
  }
}

.portfolio-shapes img:nth-child(1) {
  inset-inline-end: 60px;
  top: -13px;
  -webkit-animation: hero-triangle-1 6s linear infinite;
  -moz-animation: hero-triangle-1 6s linear infinite;
  -o-animation: hero-triangle-1 6s linear infinite;
  animation: hero-triangle-1 6s linear infinite;
}

.portfolio-shapes img:nth-child(2) {
  inset-inline-start: -107px;
  top: -48px;
  -webkit-animation: services-triangle 7s linear infinite alternate;
  -moz-animation: services-triangle 7s linear infinite alternate;
  -o-animation: services-triangle 7s linear infinite alternate;
  animation: services-triangle 7s linear infinite alternate;
}

.portfolio-shapes img:nth-child(3) {
  inset-inline-end: 502px;
  bottom: -19px;
  -webkit-animation: services-triangle 7s linear infinite alternate;
  -moz-animation: services-triangle 7s linear infinite alternate;
  -o-animation: services-triangle 7s linear infinite alternate;
  animation: services-triangle 7s linear infinite alternate;
}

.portfolio-details-content-inner {
  position: relative;
  z-index: 9;
}

.portfolio-content-main-wrap {
  padding: 0 70px;
}

@media (max-width: 767px) {
  .portfolio-content-main-wrap {
    padding: 0;
  }
}

.portfolio-meta-label {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--clr-body-heading);
}

.portfolio-meta-info {
  font-size: 15px;
  color: var(--clr-body-text);
  margin-bottom: 0;
}

.meta-share-social a {
  font-size: 15px;
  color: var(--clr-body-text);
  display: inline-block;
  margin-right: 13px;
}

.meta-share-social a:hover {
  color: var(--clr-theme-1);
}

.portfolio-details-content p {
  font-size: 16px;
  line-height: 26px;
  color: var(--clr-body-text);
}

.portfolio-details-content p span {
  color: var(--clr-body-heading);
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .portfolio-details-content p span {
    font-size: 17px;
    line-height: 27px;
  }
}

.portfolio-swiper-active {
  box-shadow: 0px 30px 70px 0px #0005271a;
}

.portfolio-pagination {
  text-align: center;
}

.portfolio-pagination .swiper-pagination-clickable .swiper-pagination-bullet {
  height: 6px;
  width: 18px;
  margin: 0 5px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border-radius: 4px;
}

.portfolio-pagination .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  background: var(--clr-theme-1);
}

@media (max-width: 767px) {
  .portfolio-details-content-top {
    padding-top: 64px;
    padding-bottom: 70px;
  }
}

/*
--------------------------------------------
31.biography
*/
.author-biography-thumb {
  border-radius: 4px;
  overflow: hidden;
}

.single-author-biography-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-body-heading);
  margin-bottom: 15px;
}

.single-author-biography-title.space-2 {
  margin-bottom: 33px;
}

.single-author-biography-desc {
  font-size: 15px;
  color: var(--clr-body-text);
  line-height: 24px;
  margin-bottom: 31px;
}

.single-author-biography-address-list {
  margin-bottom: 28px;
}

.single-author-biography-address-list ul li {
  font-size: 15px;
  color: var(--clr-body-heading);
  list-style: none;
  margin-bottom: 14px;
}

.single-author-biography-address-list ul li i {
  color: var(--clr-theme-1);
  font-size: 13px;
  margin-right: 8px;
  display: inline-block;
}

.single-author-biography-social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #e6e7e9;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  color: var(--clr-body-heading);
  margin-right: 6px;
}

.single-author-biography-social a:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}

.bar-title h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-body-heading);
  display: block;
  margin-bottom: 0;
}

.single-skill .bar-title {
  margin-bottom: 12px;
}

.single-skill .progress {
  position: relative;
  overflow: visible;
  height: 4px;
}

.single-skill .progress .progress-bar {
  background-color: var(--clr-theme-1);
  position: relative;
  overflow: visible;
}

.single-skill .progress .progress-bar span {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-body-heading);
  position: absolute;
  inset-inline-end: 0;
  top: -28px;
}

.prev-arrow-redirect,
.next-arrow-redirect {
  height: 25px;
  border-radius: 4px;
  display: inline-block;
  font-size: 13px;
  padding: 0 13px;
  text-decoration: none;
  line-height: 20px;
  font-weight: 500;
}

.prev-arrow-redirect i,
.next-arrow-redirect i {
  font-size: 13px;
}

.prev-arrow-redirect {
  border: 2px solid #e6e7e9;
  color: var(--clr-body-text);
}

.prev-arrow-redirect i {
  margin-right: 4px;
}

.prev-arrow-redirect:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: transparent;
}

.next-arrow-redirect {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border: 2px solid transparent;
}

.next-arrow-redirect i {
  margin-left: 4px;
}

.next-arrow-redirect:hover {
  background-color: #ff6600;
  color: var(--clr-common-white);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .biography-info-space {
    padding-left: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .biography-info-space {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .biography-info-space {
    padding-left: 0;
  }
}

/*
--------------------------------------------
32.contact
*/
.contact-info-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--clr-body-heading);
  margin-bottom: 11px;
}

@media (max-width: 767px) {
  .contact-info-title {
    font-size: 26px;
  }
}

.contact-info-subtitle {
  font-size: 16px;
  color: var(--clr-body-text);
  display: block;
}

.single-contact-left-item {
  padding: 23px 30px;
  border-radius: 4px;
  box-shadow: 0px 30px 70px 0px #0005271a;
  overflow: hidden;
  background-color: var(--clr-common-white);
}

.single-contact-left-item .icon {
  float: left;
  margin-right: 20px;
}

.single-contact-left-item .icon i {
  color: var(--clr-theme-1);
  font-size: 20px;
}

.single-contact-left-item .content {
  overflow: hidden;
}

.single-contact-left-label {
  font-weight: 600;
  color: var(--clr-body-heading);
  font-size: 20px;
  margin-bottom: 0;
  display: block;
}

.single-contact-left-label.contact-left-label-space {
  margin-bottom: 7px;
}

.single-contact-left-info {
  font-size: 15px;
  display: block;
  color: var(--clr-body-text);
}

.share-social {
  line-height: 1;
}

.share-social a {
  font-size: 15px;
  margin-right: 15px;
  display: inline-block;
}

.post-input-label-defualt {
  display: block;
  margin-bottom: 20px;
  color: var(--clr-body-heading);
}

.contact-map iframe {
  width: 100%;
  height: 500px;
  margin-bottom: -7px;
}

/*
--------------------------------------------
33.error
*/
.error-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--clr-body-heading);
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .error-title {
    font-size: 30px;
  }
}

.error-subtitle {
  font-size: 18px;
  color: var(--clr-body-text);
  margin-bottom: 26px;
}

#loading {
  background-color: var(--clr-theme-1);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  height: 50px;
  width: 50px;
  margin-top: -25px;
  margin-left: -25px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: loading-center-absolute 1.5s infinite;
  animation: loading-center-absolute 1.5s infinite;
}

.object {
  width: 25px;
  height: 25px;
  background-color: var(--clr-common-white);
  float: left;
}

#object_one {
  -webkit-animation: object_one 1.5s infinite;
  animation: object_one 1.5s infinite;
}

#object_two {
  -webkit-animation: object_two 1.5s infinite;
  animation: object_two 1.5s infinite;
}

#object_three {
  -webkit-animation: object_three 1.5s infinite;
  animation: object_three 1.5s infinite;
}

#object_four {
  -webkit-animation: object_four 1.5s infinite;
  animation: object_four 1.5s infinite;
}

@-webkit-keyframes loading-center-absolute {
  100% {
    -webkit-transform: rotate(-45deg);
  }
}

@keyframes loading-center-absolute {
  100% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
}

@-webkit-keyframes object_one {
  25% {
    -webkit-transform: translate(0, -50px) rotate(-180deg);
  }

  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

@keyframes object_one {
  25% {
    transform: translate(0, -50px) rotate(-180deg);
    -webkit-transform: translate(0, -50px) rotate(-180deg);
  }

  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

@-webkit-keyframes object_two {
  25% {
    -webkit-transform: translate(50px, 0) rotate(-180deg);
  }

  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

@keyframes object_two {
  25% {
    transform: translate(50px, 0) rotate(-180deg);
    -webkit-transform: translate(50px, 0) rotate(-180deg);
  }

  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

@-webkit-keyframes object_three {
  25% {
    -webkit-transform: translate(-50px, 0) rotate(-180deg);
  }

  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

@keyframes object_three {
  25% {
    transform: translate(-50px, 0) rotate(-180deg);
    -webkit-transform: translate(-50px, 0) rotate(-180deg);
  }

  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

@-webkit-keyframes object_four {
  25% {
    -webkit-transform: translate(0, 50px) rotate(-180deg);
  }

  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

@keyframes object_four {
  25% {
    transform: translate(0, 50px) rotate(-180deg);
    -webkit-transform: translate(0, 50px) rotate(-180deg);
  }

  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

/*# sourceMappingURL=main.css.map */

.elementor-element.elementor-element-c631f31.elementor-widget.elementor-widget-google_maps {
  margin: 0;
}

/**
* css for home 5
*/
.sasup-header-logo-5 img {
  max-width: 120px;
}

.sasup-header-menu-5 ul li {
  display: inline-block;
  position: relative;
  margin: 0 17px;
}

.sasup-header-menu-5 ul li a {
  color: var(--clr-common-white);
  display: inline-block;
  position: relative;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 25px 0;
}

.sasup-header-menu-5 ul li a::after {
  width: 0;
  height: 1px;
  background-color: var(--clr-common-white);
  content: "";
  transition: all .3s;
  inset-inline-start: 0;
  position: absolute;
  bottom: 27px;
}

.sasup-header-menu-5 ul li a:hover::after {
  inset-inline-start: auto;
  inset-inline-end: 0;
  width: 100%;
}

.sasup-header-menu-5 ul li .sub-menu {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  inset-inline-start: 0;
  position: absolute;
  top: 119%;
  transition: all 0.3s ease 0s;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border-top: 4px solid #ff6600;
  text-align: left;
  padding: 15px 0;
}

.sasup-header-menu-5 ul li:hover>a::after {
  inset-inline-start: auto;
  inset-inline-end: 0;
  width: 100%;
}

.sasup-header-menu-5 ul li .sub-menu li:hover>a {
  color: #ff6600;
}

.sasup-header-menu-5 ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.sasup-header-menu-5 ul li .sub-menu a {
  padding: 0px;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
  color: #212237;
  position: relative;
}

.sasup-header-menu-5 ul li .sub-menu li {
  display: block;
  margin: 0;
  padding: 3px 25px;
}

.sasup-header-menu-5 ul li .sub-menu a::after {
  bottom: 0;
  background-color: #ff6600;
}

.sasup-header-menu-5 ul li .sub-menu li:not(:last-child) {
  margin-bottom: 7px;
}

.sasup-login-btn-5 {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-common-white);
  font-family: 'Roboto', sans-serif;
}

.sasup-login-btn-5:hover {
  color: #FF6D4D;
}

.sasup-header-white-btn-5 {
  display: inline-block;
  height: 40px;
  line-height: 39px;
  background: var(--clr-common-white);
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--clr-body-heading);
  padding: 0 0;
  position: relative;
  border-radius: 6px;
  padding: 0 23px;
}

.sasup-header-white-btn-5:hover {
  background-color: #FF6D4D;
  color: var(--clr-common-white);
}

.sasup-header-action-5 .sasup-header-white-btn-5 {
  margin-left: 23px;
}

/*
* Hero css
*/
.sasup-banner-title-4 {
  font-family: Space Grotesk;
  font-size: 64px;
  color: var(--clr-common-white);
  line-height: 1.134;
  margin-bottom: 0;
  letter-spacing: -0.04em;
}

.sasup-banner-list-4 ul li {
  font-size: 15px;
  display: inline-block;
  list-style-type: none;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  margin: 0 17px;
  color: var(--clr-common-white);
}

.sasup-banner-list-4 ul li i {
  display: inline-block;
  font-size: 14px;
  color: var(--clr-common-white);
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  width: 30px;
  margin-right: 10px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

.sasup-banner-content-4 .sasup-banner-title-4 {
  margin-bottom: 24px;
}

.sasup-black-theme-btn-4 {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  position: relative;
  overflow: hidden;
  background: var(--clr-body-heading);
  color: var(--clr-common-white);
  border: 0;
  position: relative;
  padding: 0 33px;
  border-radius: 6px;
}

.sasup-black-theme-btn-4:before {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  inset-inline-start: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}

.sasup-black-theme-btn-4:hover {
  background-color: var(--clr-tertiary2);
  color: var(--clr-common-white);
}

.sasup-black-theme-btn-4:hover:before {
  inset-inline-start: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.sasup-hero-image-group-4 {
  position: relative;
  display: inline-block;
}

.sasup-hero-image-group-item-4-1 {
  -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
  -moz-animation: hero-thumb-animation 2s linear infinite alternate;
  -o-animation: hero-thumb-animation 2s linear infinite alternate;
  animation: hero-thumb-animation 2s linear infinite alternate;
}

.sasup-hero-image-group-item-4-2 {
  position: absolute;
  inset-inline-start: -211px;
  top: 96px;
  -webkit-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
}

.sasup-hero-image-group-item-4-3 {
  inset-inline-end: -210px;
  top: 228px;
  position: absolute;
  -webkit-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
}

.sasup-banner-title-4 span {
  position: relative;
  display: inline-block;
}

@keyframes line_movement {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.sasup-banner-title-4 span::before {
  background-image: url('../img/shape/line.png');
  content: "";
  inset-inline-start: 30px;
  bottom: -32px;
  width: 180px;
  height: 40px;
  position: absolute;
  animation-name: line_movement;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 1.5s;
  animation-delay: 6s;
  background-repeat: no-repeat;
}

.sasup-shape-pos-shape-4-1 {
  position: absolute;
  inset-inline-end: -104px;
  top: -117px;
}

.sasup-brand-heading-text-3 {
  font-size: 46px;
  font-weight: 600;
  font-family: Space Grotesk;
  color: var(--clr-body-heading);
  margin-bottom: 0;
}

.sasup-brand-wrapper-3 {
  padding: 0 70px;
}

.sasup-section-heading-5-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-tertiary2);
  font-family: Space Grotesk;
  display: block;
  margin-bottom: 7px;
}

.sasup-section-heading-5-title {
  font-size: 46px;
  color: var(--clr-body-heading);
  font-weight: 700;
  font-family: Space Grotesk;
  line-height: 1.19;
}

.sasup-section-heading-5-title span {
  position: relative;
  display: inline-block;
}

.sasup-section-heading-5-title span::before {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  background-image: url("../img/shape/title_line.png");
  content: "";
}

.sasup-section-heading-5-title span::before {
  position: absolute;
  inset-inline-start: 30px;
  bottom: -8px;
  background-image: url("../img/shape/title_line.png");
  content: "";
  width: 120px;
  height: 17px;
  background-position: left bottom;
  background-repeat: no-repeat;
  animation-name: line_movement;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 1.5s;
  animation-delay: 6s;
}

.sasup-service-box-4 {
  border-radius: 10px;
  border: 2px solid rgba(22, 161, 128, .1);
  transition: all .3s;
  padding: 57px 43px;
  transition: all .3s;
  padding-bottom: 51px;
}

.sasup-service-icon-4 {
  transition: all .3s;
}

.sasup-service-box-4 i {
  transition: all .3s;
}

.sasup-service-box-4:hover {
  border-color: transparent;
  box-shadow: 0px 20px 50px rgba(32, 27, 89, 0.08);
}

.sasup-service-box-4:hover .sasup-service-icon-4 {
  background-color: var(--clr-tertiary2);
}

@keyframes wobble-vertical2 {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

.sasup-service-box-4:hover .sasup-service-icon-4 i {
  color: var(--clr-common-white);
  animation-name: wobble-vertical2;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}


.sasup-service-icon-4 {
  width: 100px;
  height: 100px;
  background: rgba(33, 173, 148, 0.08);
  border-radius: 6px;
  margin: 0 auto;
}

.sasup-service-icon-4 i {
  font-size: 40px;
  color: var(--clr-tertiary2);
  line-height: 100px;
}

.sasup-service-content-title-4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-body-heading);
  font-family: Space Grotesk;
  margin-bottom: 14px;
}

.mb-35 {
  margin-bottom: 35px;
}

.sasup-service-content-desc-4 {
  font-family: Roboto;
  font-size: 16px;
  line-height: 24px;
  color: #4D5765;
  margin-bottom: 19px;
}

.sasup-service-action-link-4 {
  color: var(--clr-body-heading);
  font-weight: 500;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
}

.sasup-service-action-link-4:hover {
  color: var(--clr-tertiary2);
}

.sasup-service-action-link-4 i {
  margin-left: 4px;
}

.title.sasup-service-content-title-4:hover {
  color: var(--clr-tertiary2);
}

.sasup-image-features-dashbord-img-wrap-2 {
  display: inline-block;
  margin: 0 auto;

}

.sasup-image-features-dashbord-img-parent-wrap-2 {
  position: relative;
  padding: 0 70px;
}

.features-circle-shape-group>* {
  position: absolute;
  z-index: 9;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-4 {
  inset-inline-start: 1px;
  top: 85px;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-3 {
  inset-inline-start: 135px;
  top: 180px;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-2 {
  bottom: 63px;
  inset-inline-start: 28px;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-5 {
  inset-inline-end: 77px;
  top: 93px;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-6 {
  inset-inline-end: -11px;
  top: 202px;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-7 {
  bottom: 107px;
  inset-inline-end: 60px;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-7 {
  bottom: 107px;
  inset-inline-end: 136px;
}

.sasup-features-circle-line-shape-2>* {
  position: absolute;
}

.sasup-features-circle-line-shape-2 .sasup-single-features-line-shape-inner-left {
  inset-inline-start: 70px;
  top: -32px;
}

.sasup-features-circle-line-shape-2 .sasup-single-features-line-shape-inner-right {
  inset-inline-end: 70px;
  top: -32px;
}

.sasup-features-single-dashbord-img-1 {
  position: relative;
  z-index: 9;
}

.sasup-bg-gray-1 {
  background-color: #F8F9FA;
}

.sasup-features-area-section-shape-group-2>* {
  position: absolute;
}

.sasup-features-area-section-shape-group-2 .sasup-features-area-single-section-shape-1 {
  top: 100px;
  inset-inline-start: 0;
}

.sasup-features-area-section-shape-group-2 .sasup-features-area-single-section-shape-2 {
  inset-inline-start: 76px;
  top: 345px;
}

.sasup-features-area-section-shape-group-2 .sasup-features-area-single-section-shape-3 {
  top: 5px;
  inset-inline-end: 90px;
}

.sasup-features-container-inner-shape-group-2>* {
  position: absolute;
}

.sasup-features-container-inner-shape-group-2 .sasup-features-container-single-shape-1 {
  top: 90px;
  inset-inline-start: 94px;
}

.sasup-features-container-inner-shape-group-2 .sasup-features-container-single-shape-2 {
  inset-inline-end: -36px;
  top: 103px;
}

.sasup-feature-content-wrap-2 .sasup-feature-content-title-2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-body-heading);
  margin-bottom: 5px;
  font-family: Space Grotesk;
}

.sasup-feature-content-wrap-2 {
  margin-top: -18px;
}

.sasup-feature-content-wrap-2 .sasup-feature-content-desc-2 {
  font-size: 16px;
  font-family: 'Roboto';
  color: #4D5765;
  margin-bottom: 27px;
}

.sasup-theme-started-btn {
  display: inline-block;
  background: var(--clr-tertiary2);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  color: var(--clr-common-white);
  padding: 0 47px;
  font-size: 15px;
  font-family: 'Roboto';
}

.sasup-features-container-inner-shape-group-2 .sasup-features-container-single-shape-3 {
  inset-inline-start: 37px;
  bottom: -6px;
}

.sasup-features-container-inner-shape-group-2 .sasup-features-container-single-shape-4 {
  inset-inline-end: 174px;
  bottom: 0px;
}

.sasup-theme-started-btn:before {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  inset-inline-start: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}

.sasup-theme-started-btn:hover:before {
  inset-inline-start: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.sasup-theme-started-btn:hover {
  background-color: #FF7D61;
  color: var(--clr-common-white);
}

@keyframes hero-circle-2 {
  0% {
    -webkit-transform: translateX(-200px);
    -moz-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
  }

  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.sasup-features-container-inner-shape-group-2 .sasup-features-container-single-shape-1 img {
  -webkit-animation: hero-circle-2 4s linear 0s infinite alternate;
  -moz-animation: hero-circle-2 4s linear 0s infinite alternate;
  -o-animation: hero-circle-2 4s linear 0s infinite alternate;
  animation: hero-circle-2 4s linear 0s infinite alternate;
}

@keyframes hero-bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.sasup-features-container-inner-shape-group-2 .sasup-features-container-single-shape-2 img,
.sasup-features-area-section-shape-group-2 .sasup-features-area-single-section-shape-2 img {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: hero-bounce;
}

.sasup-features-single-dashbord-img-1 img {
  -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
  -moz-animation: hero-thumb-animation 2s linear infinite alternate;
  -o-animation: hero-thumb-animation 2s linear infinite alternate;
  animation: hero-thumb-animation 2s linear infinite alternate;
}

@keyframes roundScaleZoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.3);
  }

  100% {
    transform: scale(1);
  }
}

.features-circle-shape-group>* img {
  animation-name: roundScaleZoom;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-2 img {
  animation-duration: 2s;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-3 img {
  animation-duration: 2.5s;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-4 img {
  animation-duration: 2.8s;
}

.features-circle-shape-group .sasup-features-single-dashbord-img-5 img {
  animation-duration: 3s;
}

.sasup-features-container-inner-shape-group-2 .sasup-features-container-single-shape-3 img {
  -webkit-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-animation 4s linear infinite alternate;
}


/**
* timeline
*/


.sasup-timeline-item-single-right-title-1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: Space Grotesk;
}

.sasup-timeline-item-single-right-desc-1 {
  font-size: 16px;
  color: #4D5765;
  font-family: 'Roboto';
  margin-bottom: 30px;
}

.sasup-timeline-single-list-item-icon-1 i {
  font-size: 28px;
  color: var(--clr-tertiary2);
  transform: translateY(6px);
}

.sasup-timeline-item-list-wrap-1 li {
  list-style-type: none;
  overflow: hidden;
}

.sasup-timeline-item-list-wrap-1 li:not(:last-child) {
  margin-bottom: 23px;
}

.sasup-timeline-single-list-item-1 .sasup-timeline-single-list-item-icon-1 {
  float: left;
  margin-right: 25px;
}

.sasup-timeline-single-list-item-title-1 {
  font-weight: 700;
  font-size: 22px;
  color: var(--clr-body-heading);
  font-family: Space Grotesk;
  margin-bottom: 10px;
}

.sasup-timeline-single-list-item-content-1 {
  overflow: hidden;
}

.sasup-timeline-single-list-item-desc-1 {
  font-size: 15px;
  font-family: 'Roboto';
  line-height: 22px;
  color: #4D5765;
  margin-bottom: 0;
}

.sasup-timeline-item-single-1 {
  position: relative;
}

.sasup-timeline-item-single-1:not(.active) {
  padding-top: 115px;
}

.sasup-timeline-item-single-1:not(.active) .sasup-timeline-item-single-count {
  top: 111px;
}

.sasup-timeline-item-single-1::after {
  position: absolute;
  inset-inline-end: 50%;
  transform: translateX(-50%);
  height: 100%;
  content: "";
  width: 2px;
  background-color: #EFF3F8;
  top: 0;
}

.sasup-timeline-item-single-1.active::after {
  background-color: var(--clr-tertiary2);
}

.sasup-timeline-item-single-count {
  width: 36px;
  height: 36px;
  color: var(--clr-body-heading);
  background-color: #F2F5F8;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 36px;
}

.sasup-timeline-item-single-count.active {
  background: var(--clr-tertiary2);
  color: var(--clr-common-white);
}

.sasup-timeline-item-single-1 .sasup-timeline-item-single-count {
  position: absolute;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  outline: 14px solid var(--clr-common-white);
  z-index: 9;
}

.sasup-gray-bordered-btn-1 {
  display: inline-block;
  height: 40px;
  border: 2px solid rgba(32, 27, 89, 0.1);
  line-height: 36px;
  font-family: Roboto;
  font-weight: 500;
  padding: 0 26px;
  position: relative;
  overflow: hidden;
  font-size: 15px;
  border-radius: 6px;
}

.sasup-gray-bordered-btn-1:hover {
  background-color: #FF7D61;
  color: var(--clr-common-white);
  border-color: transparent;
}

.sasup-gray-bordered-btn-1:before {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  inset-inline-start: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}

.sasup-gray-bordered-btn-1:hover:before {
  inset-inline-start: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.sasup-timeline-item-single-1 .sasup-timeline-item-single-right-1 {
  padding-left: 71px;
}

.sasup-timeline-wrap-pos-reverce .sasup-timeline-item-single-left-1 {
  padding-left: 71px;
}

.sasup-timeline-wrap-pos-reverce .sasup-timeline-item-single-right-1 {
  padding-left: 30px;
  padding-right: 89px;
}

.timeline-area .sasup-timeline-wrap-1:last-child .sasup-timeline-item-single-1 {
  padding-bottom: 10px;
}

/* features list */
.sasup-features-list-right-content li {
  list-style: none;
}

.sasup-features-list-right-content span.left-img i {
  color: #FF5194;
  width: 50px;
  font-size: 24px;
  display: inline-block;
  background-color: rgba(255, 108, 108, .06);
  height: 50px;
  border-radius: 6px;
  transition: all .3s;
  text-align: center;
  line-height: 50px;
}

.sasup-features-list-right-content a:hover span.left-img i {
  background-color: rgba(50, 105, 255, .06);
  color: #3269FF;
}

.sasup-features-list-right-content span.content {
  font-size: 20px;
  color: var(--clr-body-heading);
  transition: all .3s;
  font-weight: 500;
  font-family: Space Grotesk;
}

.sasup-features-list-right-content span.arrow i {
  font-size: 29px;
  color: #201B59;
}

.rtl .sasup-features-list-right-content span.arrow i {
  transform: rotate(180deg);
}

.sasup-features-list-right-content span.left-img {
  margin-right: 13px;
}

.sasup-features-list-right-content a:hover span.content,
.sasup-features-list-right-content a:hover span.arrow i {
  color: rgb(50, 105, 255);
}

.sasup-features-list-right-content ul li {
  margin-bottom: 20px;
}

.sasup-features-list-right-content ul li a {
  box-shadow: 0px 4px 14px rgba(32, 27, 89, 0.04);
  border-radius: 10px;
  background-color: var(--clr-common-white);
  display: block;
  border: 2px solid transparent;
  padding: 17px 25px;
}

.sasup-features-list-right-content ul li a:hover {
  border: 2px solid #3269FF;
  box-shadow: none;
}

.sasup-features-list-right-content span.arrow {
  float: right;
  transform: translateY(13px);
}

.sasup-features-list-left-img {
  position: relative;
}

.sasup-features-list-left-img .sasup-feature-list-left-main-img {
  position: relative;
  z-index: 99;
}

.sasup-features-list-left-img .sasup-feature-list-left-img-shape {
  position: absolute;
  inset-inline-start: -23px;
  top: -26px;
}

.sasup-feature-list-outside-shape-group-1>* {
  position: absolute;
}

.sasup-feature-list-outside-shape-group-1 .outlside-shape-4 {
  position: absolute;
  inset-inline-start: 0;
  top: 80px;
}

.sasup-feature-list-outside-shape-group-1 .outlside-shape-3 {
  top: 0;
  inset-inline-end: 84px;
}

.sasup-feature-list-outside-shape-group-1 .outlside-shape-1 {
  inset-inline-end: 185px;
  top: 337px;
}

.sasup-feature-list-outside-shape-group-1 .outlside-shape-2 {
  inset-inline-end: 0;
  bottom: 192px;
}

.sasup-features-list-left-img .sasup-feature-list-left-img-shape-1 {
  position: absolute;
  inset-inline-start: -6px;
  top: 87px;
}

.sasup-features-list-left-img .sasup-feature-list-left-img-shape-2 {
  bottom: -3px;
  position: absolute;
  inset-inline-start: 117px;
}

.sasup-features-list-left-img .sasup-feature-list-left-img-shape-1 img {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: hero-bounce;
}

.sasup-feature-list-outside-shape-group-1 .outlside-shape-1 img {
  -webkit-animation: hero-circle-2 4s linear 0s infinite alternate;
  -moz-animation: hero-circle-2 4s linear 0s infinite alternate;
  -o-animation: hero-circle-2 4s linear 0s infinite alternate;
  animation: hero-circle-2 4s linear 0s infinite alternate;
}

.sasup-features-list-right-content {
  position: relative;
  z-index: 9;
}

.sasup-features-list-left-img .sasup-feature-list-left-img-shape-2 img {
  -webkit-animation: hero-circle-2 4s linear 0s infinite alternate;
  -moz-animation: hero-circle-2 4s linear 0s infinite alternate;
  -o-animation: hero-circle-2 4s linear 0s infinite alternate;
  animation: hero-circle-2 4s linear 0s infinite alternate;
}

.sasup-feature-list-outside-shape-group-1 .outlside-shape-2 img {
  -webkit-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  -moz-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  -o-animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
  animation: hero-thumb-sm-2-animation 4s linear infinite alternate;
}

/**
  * pricing box
*/
.sasup-pricing-box-bottom-list-2 li {
  list-style: none;
}

.sasup-pricing-box-2 {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #EFF3F8;
}

.sasup-pricing-box-2 .sasup-pricing-box-top-2 {
  transition: all .3s;
  background: #EFF3F8;
  padding: 40px 30px;
  min-height: 280px;
}

.sasup-pricing-box-top-2 .sasup-pricing-box-top-subtitle-2 {
  font-size: 13px;
  color: var(--clr-tertiary2);
  text-transform: uppercase;
  line-height: 1;
  font-family: Space Grotesk;
  display: block;
  transition: all .3s;
  margin-bottom: 12px;
  letter-spacing: 0.14em;
}

.sasup-pricing-box-top-2 .sasup-pricing-box-top-title-2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--clr-body-heading);
  margin-bottom: 23px;
  font-family: Space Grotesk;
  transition: all .3s;
}

.sasup-pricing-box-top-2 .sasup-pricing-box-top-desc-2 {
  font-size: 15px;
  font-family: 'Roboto';
  color: #4D5765;
  line-height: 20px;
  transition: all .3s;
  margin-bottom: 25px;
}

.sasup-pricing-box-top-action-2 {
  border: 2px solid rgba(32, 27, 89, 0.1);
  border-radius: 6px;
  height: 44px;
  line-height: 40px;
  display: inline-block;
  padding: 0 35px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  font-family: 'Roboto';
  color: #201B59;
}

.sasup-pricing-box-top-action-2:hover {
  background-color: var(--clr-tertiary2);
  color: var(--clr-common-white);
  border-color: transparent !important;
}

.sasup-pricing-box-top-action-2:before {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  inset-inline-start: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}

.sasup-pricing-box-top-action-2:hover:before {
  inset-inline-start: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.sasup-pricing-box-bottom-2 .sasup-pricing-box-bottom-price-2 {
  font-size: 40px;
  font-weight: 700;
  font-family: Space Grotesk;
  color: var(--clr-body-heading);
  margin-bottom: 3px;
}

.sasup-pricing-box-bottom-2 .sasup-pricing-box-bottom-subtitle-2 {
  font-size: 18px;
  color: #4D5765;
  font-family: Space Grotesk;
}

.sasup-pricing-box-bottom-list-2 ul li:not(:last-child) {
  margin-bottom: 13px;
}

.sasup-pricing-box-bottom-list-2 ul li i {
  width: 20px;
  height: 20px;
  display: inline-block;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  color: var(--clr-tertiary2);
  background-color: #E7F5ED;
  font-size: 10px;
  margin-right: 10px;
  font-weight: 500;
}

.sasup-pricing-box-bottom-list-2 ul li span {
  font-family: 'Roboto';
  font-size: 15px;
  color: #4D5765;
}

.sasup-pricing-box-bottom-title-wrap-2 {
  margin-bottom: 20px;
}

.sasup-pricing-box-bottom-2 {
  padding: 35px 40px;
  min-height: 370px;
}

.sasup-pricing-box-2:hover .sasup-pricing-box-top-2 {
  background: linear-gradient(180deg, #FF6D4D 0%, #FF4820 100%);
}

.sasup-pricing-box-2:hover .sasup-pricing-box-top-subtitle-2,
.sasup-pricing-box-2:hover .sasup-pricing-box-top-title-2,
.sasup-pricing-box-2:hover .sasup-pricing-box-top-desc-2 {
  color: var(--clr-common-white);
}

.sasup-pricing-box-2:hover .sasup-pricing-box-top-action-2 {
  border-color: var(--clr-common-white);
  color: var(--clr-common-white);
}

.sasup-pricing-box-2:hover {
  border-color: #FF4D25;
}

.pricing-box-hover-shape {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  transition: all .3s;
  opacity: 0;
  visibility: hidden;
}

.sasup-pricing-box-2 {
  transition: all .3s;
}

.sasup-pricing-box-2:hover .pricing-box-hover-shape {
  opacity: 1;
  visibility: visible;
}

.advanced-pricing-widget-tab-keys-2 ul {
  justify-content: center;
}

.advanced-pricing-widget-tab-keys-2 ul li a {
  font-size: 14px;
  line-height: 1;
  color: #4D5765;
  display: inline-block;
  font-weight: 500;
  font-family: 'Roboto';
  padding: 0 55px;
}

.advanced-pricing-widget-tab-keys-2 ul li a.active {
  color: #FF785A;
}

.advanced-tab-1 {
  position: relative;
}

.advanced-tab-1::before {
  width: 70px;
  height: 8px;
  background-color: #F2EAE8;
  border-radius: 100px;
  content: "";
  position: absolute;
  inset-inline-end: -33px;
  top: 50%;
  transform: translateY(-50%);
}

.advanced-tab-1::after {
  width: 34px;
  position: absolute;
  top: 50%;
  transition: all .5s;
  transform: translateY(-50%);
  content: "";
  height: 34px;
  inset-inline-end: -40px;
  background-color: #FF785A;
  box-shadow: 0px 2px 4px rgba(213, 49, 12, 0.34);
  border-radius: 50%;
}

.advanced-tab-1.active::after {
  inset-inline-end: 8px;
}

.advanced-tab-2 {
  position: relative;
  z-index: 9;
}

.advanced-pricing-widget-tab-keys-wrapper-2 {
  position: relative;
}

.advanced-pricing-widget-tab-key-shape-text-wrap-2>.advanced-pricing-widget-tab-key-shape {
  position: absolute;
}

.advanced-pricing-widget-tab-key-shape-text-wrap-2 .advance-pricing-widget-tab-key-text {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-family: 'Roboto';
  text-align: right;
  transform: translateX(82px);
}

.pos-rel {
  position: relative;
}

.advanced-pricing-widget-tab-key-shape-text-wrap-2>.advanced-pricing-widget-tab-key-shape {
  position: absolute;
  inset-inline-end: -27px;
  top: 18px;
}

.advanced-pricing-widget-tab-key-shape-text-wrap-2 .advance-pricing-widget-tab-key-text span {
  color: #FF785A;
  font-weight: 500;
}

.sasup-pricing-box-top-action-2.active {
  background: var(--clr-tertiary2);
  box-shadow: 0px 10px 16px rgb(2 115 95 / 30%);
  color: var(--clr-common-white);
  border-color: transparent !important;
}

.advanced-pricing-widget-tab-keys-wrapper-2 {
  margin-bottom: 52px;
}

.sasup-testimonial-box-author-part-4 .sasup-testimonial-box-author-img-4 {
  float: left;
}

.sasup-testimonial-box-author-content-4 .sasup-author-title-4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-body-heading);
  margin-bottom: 0;
  font-family: Space Grotesk;
}

.sasup-testimonial-box-author-content-4 .sasup-author-designation-4 {
  font-size: 14px;
  font-family: 'Roboto';
  color: #4D5765;
  margin-bottom: 0;
}

.sasup-testimonial-box-author-content-4 {
  overflow: hidden;
}

.sasup-testimonial-box-author-part-4 .sasup-testimonial-box-author-img-4 {
  float: left;
  margin-right: 14px;
}

.sasup-testimonial-box-author-part-4 {
  overflow: hidden;
  margin-bottom: 22px;
}

.sasup-testimonial-box-author-content-4 {
  padding-top: 6px;
}

.sasup-testimonial-box-4 {
  box-shadow: 2px 13px 14px rgb(0 0 0 / 3.2%);
  padding: 40px 30px;
  padding-bottom: 45px;
}

.sasup-testimonial-box-content-part-4 p {
  font-size: 16px;
  line-height: 26px;
  font-family: 'Roboto';
  color: #4D5765;
}

.sasup-testimonial-box-content-part-4 p {
  font-size: 16px;
  line-height: 26px;
  font-family: 'Roboto';
  color: #4D5765;
  margin-bottom: 32px;
}

.testimonial-active-4 {
  padding: 0 20px;
  padding-bottom: 30px;
  margin: 0 -20px !important;
  margin-bottom: -30px;
}

.sasup-swiper-arrow-style-4 {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  transition: all .3s;
  border: 1px solid #F5F5F5;
  text-align: center;
  color: #0F1216;
}

.sasup-swiper-arrow-style-4 i {
  font-size: 22px;
  line-height: 48px;
  color: #0F1216;
  transition: all .3s;
}

.rtl .sasup-swiper-arrow-style-4 i {
  transform: rotate(180deg);
}

.sasup-swiper-arrow-style-4:hover {
  background: #FF785A;
  border-color: transparent;
  box-shadow: 6px 20px 30px rgba(251, 74, 34, 0.2);
}

.sasup-swiper-arrow-style-4:hover i {
  color: var(--clr-common-white);
}

.sasup-arrow-right-4>* {
  display: inline-block;
}

.sasup-arrow-right-4 {
  text-align: right;
}

.sasup-arrow-right-4 .swiper-button-next-4 {
  margin-left: 10px;
}

.sasup-arrow-right-4 {
  text-align: right;
  transform: translateY(-18px);
}

.pb-30 {
  padding-bottom: 30px;
}

.sasup-service-content-4 .content-desc {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #4D5765;
}

.sasup-cta-content-4 {
  background: linear-gradient(180deg, #FF7E62 0%, #FF4820 100%);
  box-shadow: 0px 40px 50px rgba(183, 38, 7, 0.2);
  border-radius: 20px;
  text-align: center;
}

.sasup-cta-title-4 {
  font-size: 54px;
  font-weight: 700;
  color: var(--clr-common-white);
  font-family: Space Grotesk;
  margin-bottom: 36px;
}

.sasup-cta-title-4 span {
  position: relative;
  display: inline-block;
}

.sasup-cta-title-4 span::after {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  background-image: url('../img/shape/line-cta.png');
  content: "";
  height: 10px;
  width: 94px;
  background-repeat: no-repeat;
}

.sasup-cta-action-link-4 {
  background: var(--clr-common-white);
  box-shadow: 0px 10px 10px #e0350f !important;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  font-family: 'Roboto';
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-body-heading);
  padding: 0 43px;
}

.sasup-cta-action-link-4:hover:before {
  inset-inline-start: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.sasup-cta-action-link-4:before {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  inset-inline-start: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}

.sasup-cta-action-link-4:hover {
  background-color: var(--clr-tertiary2);
  color: var(--clr-common-white);
}

.sasup-cta-action-transparent-link-4 {
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  height: 50px;
  line-height: 45px;
  font-size: 15px;
  font-family: 'Roboto';
  position: relative;
  overflow: hidden;
  font-weight: 500;
  padding: 0 40px;
  color: var(--clr-common-white);
  border-radius: 6px;
}

.sasup-cta-action-transparent-link-4:hover:before {
  inset-inline-start: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.sasup-cta-action-transparent-link-4:before {
  background-color: var(--clr-common-white);
  content: "";
  height: 150px;
  inset-inline-start: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}

.sasup-cta-action-transparent-link-4:hover {
  background-color: var(--clr-tertiary2);
  color: var(--clr-common-white);
}

.sasup-cta-action-wrapper-4 {
  display: flex;
  justify-content: center;
  grid-gap: 20px;
}

.sasup-cta-content-4 {
  background: linear-gradient(180deg, #FF7E62 0%, #FF4820 100%);
  box-shadow: 0px 40px 50px rgba(183, 38, 7, 0.2);
  border-radius: 20px;
  text-align: center;
  padding: 67px 50px;
  padding-top: 57px;
}

.sasup-footer-space-4 {
  padding-top: 290px;
  margin-top: -175px;
}

.sasup-footer-style-4 .logo {
  padding-bottom: 25px;
}

.sasup-widget-5 p {
  line-height: 24px;
  color: #4D5765;
  font-family: 'Roboto';
  margin-bottom: 27px;
}

.sasup-footer-col-4-1.sasup-widget-5 {
  padding-right: 20px;
}

.sasup-subscribe-form-4 input[type="email"] {
  background: var(--clr-common-white);
  box-shadow: 0px 1px 2px rgb(32 27 89 / 10%);
  border-radius: 6px;
  border: 0;
  padding: 0 24px;
  width: 100%;
  height: 50px;
  font-size: 14px;
  color: #818790;
  font-family: 'Roboto';
}

.sasup-subscribe-form-4 {
  max-width: 270px;
}

.sasup-subscribe-theme-btn-4 {
  border: 0;
  width: 120px;
  transition: all .3s;
  height: 40px;
  background: var(--clr-tertiary2);
  border-radius: 6px;
  color: var(--clr-common-white);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Roboto';
}

.sasup-subscribe-form-4 .input-group {
  margin-bottom: 14px;
}

.sasup-subscribe-theme-btn-4:hover {
  background-color: #FF7E62;
}

.sasup-footer-title-4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-body-heading);
  margin-bottom: 31px;
  font-family: Space Grotesk;
}

.sasup-widget-5 ul li a {
  color: #4D5765;
  font-size: 16px;
  font-family: 'Roboto';
  display: inline-block;
}

.sasup-widget-5 ul li a:hover {
  color: var(--clr-tertiary2);
}

.sasup-widget-5 ul li:not(:last-child) {
  margin-bottom: 8px;
}

.sasup-footer-col-4-2.sasup-widget-5 ul li {
  width: 50%;
  float: left;
}

.sasup-footer-col-4-3.sasup-widget-5 {
  margin-left: -30px;
}

.sasup-footer-list-action-4 .icon {
  font-size: 25px;
  margin-right: 16px;
  float: left;
}

.sasup-footer-list-action-4 .content {
  overflow: hidden;
}

.sasup-footer-list-action-4 .list-label {
  color: var(--clr-body-heading);
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0;
}

.sasup-footer-list-action-4 .list-value {
  font-size: 15px;
  font-family: 'Roboto';
  color: #4D5765;
  margin-bottom: 0;
}

.sasup-footer-list-action-4 ul li {
  margin-bottom: 28px !important;
  overflow: hidden;
}

.sasup-footer-copyright-left-4 p {
  font-size: 14px;
  font-family: 'Roboto';
  color: #94999E;
  margin-bottom: 0;
}

.sasup-footer-social-4 .label {
  color: var(--clr-body-heading);
  font-size: 16px;
  font-family: Space Grotesk;
  display: inline-block;
}

.sasup-footer-social-4 .footer-links {
  display: inline;
}

.sasup-footer-social-4 .footer-links a {
  width: 44px;
  height: 44px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid rgba(32, 27, 89, 0.06);
  text-align: center;
  margin-left: 6px;
  color: #4D5765;
  line-height: 41px;
  font-size: 14px;
}

.sasup-footer-social-4 .footer-links a:hover {
  color: var(--clr-common-white);
  background-color: var(--clr-tertiary2);
  border-color: transparent;
}

.sasup-footer-copyright-4 {
  padding-bottom: 30px;
  padding-top: 20px;
}

.sasup-footer-space-4 .container {
  border-bottom: 1px solid #E3E6EE;
  padding-bottom: 90px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .sasup-section-heading-5-title {
    font-size: 40px;
    line-height: 1.19;
  }

  .sasup-cta-title-4 {
    font-size: 45px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-hero-image-group-item-4-2 {
    inset-inline-start: -121px;
  }

  .sasup-hero-image-group-item-4-3 {
    inset-inline-end: -104px;
  }

  .sasup-timeline-item-single-left-1 .sasup-timeline-item-single-img-1 img {
    max-width: 400px;
  }

  .sasup-timeline-item-single-1 .sasup-timeline-item-single-right-1 {
    padding-left: 50px;
  }

  .sasup-timeline-wrap-pos-reverce .sasup-timeline-item-single-left-1 {
    padding-left: 50px;
  }

  .sasup-timeline-wrap-pos-reverce .sasup-timeline-item-single-right-1 {
    padding-left: 8px;
  }

  .sasup-features-list-right-content span.content {
    font-size: 17px;
  }

  .sasup-features-list-right-content span.left-img i {
    width: 40px;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
  }

  .sasup-features-list-right-content ul li a {
    padding: 10px 12px;
  }

  .sasup-features-list-left-img .sasup-feature-list-left-img-shape img {
    max-width: 350px;
  }

  .sasup-section-heading-5-title {
    font-size: 35px;
  }

  .sasup-testimonial-row-space-4 {
    margin-bottom: 40px;
  }

  .sasup-cta-title-4 {
    font-size: 43px;
  }

  .sasup-footer-col-4-3.sasup-widget-5 {
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  header.header-area.sasup-header-style-5 {
    padding-top: 30px;
  }

  header.header-area.sasup-header-style-5 .mobile-bar-control {
    margin-left: 0;
  }

  .sasup-banner-title-4 {
    font-size: 45px;
  }

  .sasup-banner-list-4 ul li {
    margin: 0 9px;
  }

  .sasup-banner-content-4 .sasup-banner-title-4 {
    margin-bottom: 47px;
  }

  div.sasup-hero-image-group-item-4-2 img {
    max-width: 300px;
  }

  div.sasup-hero-image-group-item-4-2 {
    inset-inline-start: -90px;
  }

  div.sasup-hero-image-group-item-4-3 img {
    max-width: 300px;
  }

  div.sasup-hero-image-group-item-4-3 {
    inset-inline-end: -76px;
  }

  .sasup-shape-pos-shape-4-1 {
    inset-inline-end: -45px;
    top: -107px;
    max-width: 110px;
  }

  .sasup-section-heading-5-title {
    font-size: 38px;
  }

  .sasup-timeline-item-single-1 .sasup-timeline-item-single-count {
    inset-inline-start: 0;
    transform: translateX(0);
  }

  .sasup-timeline-item-single-1::after {
    inset-inline-end: auto;
    transform: translateX(0);
    top: 0;
    inset-inline-start: 17px;
  }

  .sasup-timeline-item-single-left-1 {
    padding-left: 70px;
    margin-bottom: 50px;
  }

  .sasup-timeline-wrap-pos-reverce .sasup-timeline-item-single-right-1 {
    padding-left: 0;
  }

  .sasup-timeline-item-single-1:not(.active) {
    padding-top: 35px;
  }

  .sasup-timeline-wrap-pos-reverce .sasup-timeline-item-single-right-1 {
    padding-left: 70px;
    padding-right: 59px;
  }

  .sasup-timeline-item-single-right-content-1 {
    margin-bottom: 50px;
  }

  .sasup-testimonial-row-space-4 {
    margin-bottom: 40px;
  }

  .sasup-cta-title-4 {
    font-size: 40px;
  }

  .sasup-cta-title-4 span::after {
    bottom: -5px;
  }

  .sasup-footer-col-flex-4-1 {
    order: -2;
  }

  .sasup-footer-col-flex-4-2 {
    order: -1;
  }

  .sasup-footer-col-4-3.sasup-widget-5 {
    margin-left: 0;
  }

  .sasup-features-circle-line-shape-2 .sasup-single-features-line-shape-inner-left {
    inset-inline-start: 10px;
    top: -40px;
  }

  .sasup-features-circle-line-shape-2 .sasup-single-features-line-shape-inner-left img {
    max-height: 460px;
  }

  sasup-features-circle-line-shape-2 .sasup-single-features-line-shape-inner-right {
    inset-inline-end: 10px;
    top: -40px;
  }

  .sasup-features-circle-line-shape-2 .sasup-single-features-line-shape-inner-right img {
    max-height: 460px;
  }
}

@media (max-width: 767px) {
  .advanced-pricing-widget-tab-key-shape-text-wrap-2>.advanced-pricing-widget-tab-key-shape {
    inset-inline-end: 63px;
    top: -22px;
    max-width: 60px;
  }

  .advanced-pricing-widget-tab-key-shape-text-wrap-2 .advance-pricing-widget-tab-key-text {
    transform: translateX(0);
  }

  header.header-area.sasup-header-style-5 {
    padding-top: 25px;
  }

  .sasup-banner-title-4 {
    font-size: 26px;
    line-height: 1.5;
  }

  .sasup-banner-list-4 {
    text-align: center;
    margin-bottom: 30px;
  }

  .sasup-banner-list-4 ul li {
    margin: 8px 0;
  }

  .sasup-banner-list-4 ul {
    display: inline-grid;
    text-align: left;
  }

  .sasup-banner-action-btn-4 {
    margin-bottom: 100px;
  }

  .sasup-shape-pos-shape-4-1 {
    inset-inline-end: 7px;
    top: -88px;
    max-width: 60px;
  }

  div.sasup-banner-content-4 {
    padding-top: 140px;
  }

  div.sasup-hero-image-group-item-4-2 {
    max-width: 160px;
    inset-inline-start: -52px;
  }

  div.sasup-hero-image-group-item-4-3 {
    inset-inline-end: -29px;
    top: 10px;
  }

  div.sasup-hero-image-group-item-4-3 img {
    max-width: 160px;
  }

  .sasup-section-heading-5-title br {
    display: none;
  }

  .sasup-section-heading-5-title {
    font-size: 21px;
  }

  .sasup-section-heading-5-title span::before {
    bottom: -18px;
  }

  .sasup-service-box-4 {
    padding: 36px 20px;
  }

  .sasup-service-content-4 .content-desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .sasup-image-features-dashbord-img-parent-wrap-2 {
    padding: 0;
  }

  .sasup-image-features-dashbord-img-wrap-2 .features-circle-shape-group {
    display: none;
  }

  .sasup-image-features-dashbord-img-wrap-2 .sasup-features-circle-line-shape-2 {
    display: none;
  }

  .sasup-features-single-dashbord-img-1 {
    margin-bottom: 50px;
  }

  .sasup-features-container-inner-shape-group-2 {
    display: none;
  }

  .sasup-section-heading-5-title span::before {
    inset-inline-start: 0;
  }

  .sasup-timeline-item-single-count {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 15px;
  }

  .sasup-timeline-item-single-1 .sasup-timeline-item-single-count {
    outline: 7px solid var(--clr-common-white);
  }

  .sasup-timeline-item-single-1 .sasup-timeline-item-single-count {
    position: absolute;
    inset-inline-start: 0;
    transform: translateX(0);
  }

  .sasup-timeline-item-single-1::after {
    inset-inline-end: auto;
    transform: translateX(0);
    width: 2px;
    inset-inline-start: 12px;
  }

  .sasup-timeline-item-single-img-1 img {
    max-width: 230px;
  }

  .sasup-timeline-item-single-left-1 {
    padding-left: 53px;
    margin-bottom: 30px;
  }

  .sasup-timeline-item-single-right-title-1 {
    font-size: 23px;
  }

  .sasup-timeline-item-single-1 .sasup-timeline-item-single-right-1 {
    padding-left: 53px;
    padding-right: 0px;
  }

  .sasup-timeline-single-list-item-1 .sasup-timeline-single-list-item-icon-1 {
    margin-right: 19px;
  }

  .sasup-timeline-item-single-1:not(.active) {
    padding-top: 0;
  }

  .sasup-timeline-item-single-right-content-1 {
    margin-bottom: 53px;
  }

  .sasup-timeline-wrap-pos-reverce .sasup-timeline-item-single-left-1 {
    padding-left: 53px;
  }

  .sasup-feature-list-outside-shape-group-1 .outlside-shape-4 {
    position: absolute;
    top: 0;
  }

  .sasup-feature-list-outside-shape-group-1 .outlside-shape-3 {
    inset-inline-end: 0;
  }

  .sasup-feature-list-left-img-shape-group-1 {
    display: none;
  }

  .sasup-features-list-right-content span.content {
    display: block;
  }

  .sasup-features-list-right-content ul li {
    text-align: center;
  }

  .sasup-features-list-right-content ul li .left-img {
    margin-bottom: 6px;
    float: none;
    margin-right: 0;
    display: inline-block;
    margin-bottom: 14px;
  }

  .sasup-features-list-right-content ul li a {
    padding: 30px 20px;
  }

  .sasup-features-list-right-content span.arrow {
    display: none;
  }

  .sasup-pricing-box-2 .sasup-pricing-box-top-2 {
    padding: 29px;
    min-height: auto;
  }

  .sasup-pricing-box-bottom-2 {
    padding: 29px 29px;
  }

  .sasup-arrow-right-4 {
    text-align: left;
  }

  .sasup-section-left-content-4 {
    margin-bottom: 70px;
  }

  .sasup-testimonial-row-space-4 {
    margin-bottom: 30px;
  }

  .sasup-cta-content-4 {
    padding: 45px 25px;
  }

  .sasup-cta-title-4 br {
    display: none;
  }

  .sasup-cta-title-4 {
    font-size: 25px;
    line-height: 1.5;
  }

  .sasup-cta-title-4 span::after {
    bottom: -5px;
    background-image: url('../img/shape/line-cta.png');
    width: 54px;
  }

  .sasup-cta-content-4 .sasup-cta-action-wrapper-4>* {
    flex: 0 0 100%;
  }

  .sasup-widget-5.sasup-footer-col-4-2 {
    overflow: hidden;
  }

  .sasup-footer-col-4-3.sasup-widget-5 {
    margin-left: 0;
  }

  .sasup-footer-social-4 .footer-links a {
    width: 39px;
    height: 39px;
    line-height: 38px;
  }

  .sasup-footer-copyright-left-4 {
    margin-bottom: 20px;
  }

  .advanced-pricing-widget-tab-key-shape-text-wrap-2 {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-pricing-box-2 .sasup-pricing-box-top-2 {
    padding: 40px 30px;
  }

  .sasup-pricing-box-bottom-2 {
    padding: 35px 28px;
  }

  .sasup-service-box-4 {
    padding: 57px 41px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-service-box-4 {
    padding: 57px 21px;
  }
}

@media (max-width: 575px) {
  .sasup-brand-wrapper-3 {
    padding: 0 0;
  }
}

@media (max-width: 575px) {
  .advanced-pricing-widget-tab-keys-2 ul li a {
    padding: 0 49px;
  }
}

.new-homepage-added-menu::after {
  content: "NEW";
  position: absolute;
  background: var(--clr-tertiary2);
  inset-inline-end: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  display: inline-block;
  height: 19px;
  line-height: 19px;
  color: var(--clr-common-white);
  padding: 0 12px;
  border-radius: 0;
  clip-path: polygon(5px 0, 100% 0, 100% 100%, 5px 100%, 0 50%);
}

.sasup-login-btn-5:hover {
  color: var(--clr-common-white);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-features-list-right-content span.arrow {
    transform: translateY(7px);
  }
}


/**
 * Prevent Home 04
 * */
.single-portfolio .portfolio-popup-link {
  inset-inline-end: auto;
  inset-inline-start: 40px;
}

.sasup-timeline-wrap-1.sasup-timeline-num-0 .sasup-timeline-item-single-left-1 {
  padding-right: 105px;
}

.sasup-timeline-wrap-1.sasup-timeline-wrap-pos-reverce.sasup-timeline-num-1 .sasup-timeline-item-single-right-1.bdevs-el-content {
  padding-left: 50px;
}

.sasup-timeline-wrap-1.sasup-timeline-num-2 .sasup-timeline-item-single-left-1 {
  padding-right: 100px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .sasup-timeline-wrap-1.sasup-timeline-num-0 .sasup-timeline-item-single-left-1 {
    padding-right: 15px;
  }

  .sasup-timeline-wrap-1.sasup-timeline-num-2 .sasup-timeline-item-single-left-1 {
    padding-right: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sasup-timeline-wrap-1.sasup-timeline-num-0 .sasup-timeline-item-single-left-1 {
    padding-right: 0;
  }

  .sasup-timeline-wrap-1.sasup-timeline-num-2 .sasup-timeline-item-single-left-1 {
    padding-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sasup-timeline-wrap-1.sasup-timeline-num-2 .sasup-timeline-item-single-left-1 {
    padding-right: 68px;
  }

  .sasup-timeline-wrap-1.sasup-timeline-num-0 .sasup-timeline-item-single-left-1 {
    padding-right: 69px;
  }
}

@media (max-width: 767px) {
  .sasup-timeline-wrap-1.sasup-timeline-num-2 .sasup-timeline-item-single-left-1 {
    padding-right: 54px;
  }

  .sasup-timeline-wrap-1.sasup-timeline-num-0 .sasup-timeline-item-single-left-1 {
    padding-right: 54px;
  }
}

.sasup-hero-content .wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-email {
  padding-top: 30px;
}

@keyframes hero-triangle-2 {
  0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}