/*
************
*************************
   Template Name:  Nafiab - Broadband & Internet HTML Template
   Description: Nafiab. It is a modern Template and fits for all kind of internet, broadband service provier website.
   Author: Website_Stock
   Author URL: https://themeforest.net/user/website_stock
   Version: 1.0
-----------------------------------------------------------------------------------

CSS INDEX
=================== 
01. Common
02. Animation
03. Button
04. Header
05. Hero
06. feature-list
07. about
08. Section Title
09. CTA
10. Service
11. Internet Item
12. Pricing
12. Movie
13. Testimonial
14. Blog
15. Footer
16. Sidebar
17. Breadcrumb
18. Blog Details
19. Like Us
22. Video
21. Brand
22. Faq
23. Widget
24. Team Details
25. Contact
******************************************************* 
*************************************************************** */
/*=================== 
01. Common

******************************************************* 
*************************************************************** */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@400;500;700&display=swap");
/* <<<<<<<    Declaration   >>>>>>>>> */
:root {
  /**
  @color declaration
  */
  --clr-common-white: #fff;
  --clr-common-black: #292930;
  --clr-common-black-deep: #000;
  --clr-body-heading: #292930;
  --clr-body-text: #9399a9;
  --clr-theme-primary: #e6004a;
  --clr-bg-gray: #8a90a2;
  --clr-bg-black: #212529;
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr-body-text);
  font-size: 16px;
}

.img,
img {
  max-width: 100%;
  transition: all 0.3s linear 0s;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

a,
.button,
button,
input,
textarea {
  transition: all 0.3s linear 0s;
}

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 {
  color: var(--clr-body-heading);
  line-height: 1.2;
}

h2,
h1 {
  font-weight: 700;
}

h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 37px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 20px;
}

small {
  font-size: 13px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--clr-body-text);
}

hr {
  border-bottom: 1px solid #9399a9;
  border-top: 0 none;
  padding: 0;
  opacity: 1;
}

label {
  color: var(--clr-common-black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-shadow: none;
}

/* <<<<<<<    Input Placeholder   >>>>>>>>> */
input::-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
input:-ms-input-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
textarea::-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
textarea:-ms-input-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -ms-transition: 0.5s;
  transition: 0.5s;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

/* <<<<<<<    Common Classes   >>>>>>>>> */
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.p-rel {
  position: relative;
}

.p-abs {
  position: absolute;
}

.p-static {
  position: static;
}

/* <<<<<<<    Overlay   >>>>>>>>> */
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--clr-common-black-deep);
}

[data-overlay="3"]::before {
  opacity: 0.3;
}

[data-overlay="4"]::before {
  opacity: 0.4;
}

[data-overlay="5"]::before {
  opacity: 0.5;
}

[data-overlay="6"]::before {
  opacity: 0.6;
}

[data-overlay="7"]::before {
  opacity: 0.7;
}

[data-overlay="8"]::before {
  opacity: 0.8;
}

[data-overlay="9"]::before {
  opacity: 0.9;
}

[data-overlay] > * {
  position: relative;
  z-index: 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    padding: 0 15px;
  }
  .container.style-2 {
    max-width: 1480px;
  }
}
.bg-default {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-theme {
  background-color: var(--clr-theme-primary);
}

/**
* other generic css
*/
.ba-rating i {
  color: #ffc107;
  font-size: 15px;
  font-weight: 400;
}
.ba-rating i.active {
  font-weight: 700;
}

.white-text {
  color: var(--clr-common-white);
}

.soft-white-text {
  color: #f9f9f9;
}

blockquote {
  background: #ffffff;
  text-align: center;
  padding: 30px 40px;
  font-size: 18px;
}
@media (max-width: 767px) {
  blockquote {
    padding: 30px 30px;
  }
}

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

.ba-mb-0 {
  margin-bottom: 0;
}

.circle-animation {
  position: absolute;
  width: 500px;
  height: 500px;
  opacity: 0.4;
  -webkit-animation: spin 25s linear infinite;
          animation: spin 25s linear infinite;
}
.circle-animation.dir-top-left {
  top: -150px;
  left: -150px;
}

/*=================== 
02. Animation
******************************************************* 
*************************************************************** */
@-webkit-keyframes play-scale-up {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes play-scale-up {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes offer {
  0% {
    border-color: var(--clr-theme-primary);
  }
  25% {
    border-color: #b7cc12;
  }
  50% {
    border-color: #1bcc12;
  }
  75% {
    border-color: #b312cc;
  }
  100% {
    border-color: #ededed;
  }
}
@keyframes offer {
  0% {
    border-color: var(--clr-theme-primary);
  }
  25% {
    border-color: #b7cc12;
  }
  50% {
    border-color: #1bcc12;
  }
  75% {
    border-color: #b312cc;
  }
  100% {
    border-color: #ededed;
  }
}
/*=================== 
03. Button
******************************************************* 
*************************************************************** */
.ba-submit-btn {
  display: inline-block;
  border: 0;
  height: 50px;
  padding: 0 28px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--clr-common-white);
  background-color: var(--clr-theme-primary);
  font-weight: 500;
  line-height: 48px;
}
@media only screen and (max-width:479px) {
  .ba-submit-btn {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    padding: 0 18px;
  }
}
.ba-submit-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.ba-submit-btn.hover-white:hover {
  background-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}
.ba-submit-btn.white-btn {
  color: var(--clr-theme-primary);
  background-color: var(--clr-common-white);
}
.ba-submit-btn.white-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}

/*=================== 
04. Header
******************************************************* 
*************************************************************** */
.ba-header-logo a {
  display: inline-block;
}
.ba-header-logo img {
  max-width: 135px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .ba-header-logo img {
    max-width: 90px;
  }
}
.ba-header-top-area {
  padding-top: 12px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .ba-header-top-content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .ba-header-top-content .ba-header-top-list {
    padding-bottom: 5px;
  }
}
.ba-header-top-list {
  color: var(--clr-common-white);
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
}
.ba-header-top-list i {
  margin-right: 5px;
}
.ba-header-top-list:hover {
  color: var(--clr-common-white);
}
.ba-header-top-right a {
  margin-left: 10px;
}
.ba-header-top-right a:first-child {
  margin-left: 0;
}
.ba-header-nav-inner {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .ba-header-nav-inner {
    padding: 20px 20px;
  }
}
.ba-header-right-actions {
  display: inline-block;
}
.ba-header-nav-menu {
  display: inline-block;
}
.ba-header-nav-menu ul li {
  list-style: none;
  display: inline-block;
  position: relative;
}
.ba-header-nav-menu ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  text-align: left;
  background: var(--clr-common-white);
  transform-origin: top;
  min-width: 230px;
  transform: scaleY(0);
  padding: 25px 20px;
  transition: all 0.3s linear 0s;
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
}
.ba-header-nav-menu ul li .submenu li {
  margin-left: 0;
  display: block;
}
.ba-header-nav-menu ul li .submenu li a {
  display: block;
  padding: 0 0;
}
.ba-header-nav-menu ul li .submenu li:not(:last-child) a {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.ba-header-nav-menu ul li:hover > .submenu {
  transform: scaleY(1);
}
.ba-header-nav-menu ul li:hover > a {
  color: var(--clr-theme-primary);
}
.ba-header-nav-menu ul li:not(:first-child) {
  margin-left: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-header-nav-menu ul li:not(:first-child) {
    margin-left: 30px;
  }
}
.ba-header-nav-menu ul li a {
  color: #8a90a2;
  text-decoration: none;
  padding: 30px 0;
  display: inline-block;
}
.ba-header-nav-menu ul li.active a {
  color: var(--clr-theme-primary);
}
.ba-header-right-link {
  width: 40px;
  background: transparent;
  height: 40px;
  display: inline-block;
  border: 1px solid var(--clr-theme-primary);
  line-height: 36px;
  border-radius: 4px;
  position: relative;
  text-align: center;
  color: var(--clr-theme-primary);
}
.ba-header-right-link:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-header-right-link i {
  font-weight: 400;
}
.ba-header-right-link .count {
  width: 25px;
  height: 25px;
  display: inline-block;
  color: var(--clr-common-white);
  background-color: var(--clr-theme-primary);
  line-height: 25px;
  font-size: 15px;
  border-radius: 50%;
  position: absolute;
  right: -13px;
  top: -13px;
}
.ba-header-nav-inner {
  background: #fff;
  border-radius: 4px;
  position: relative;
  z-index: 9;
  margin-top: -43px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-header-nav-inner {
    padding: 20px 20px;
  }
}
.ba-header-right-actions .ba-header-sidebar-action {
  margin-left: 5px;
  height: 30px;
  width: 30px;
  line-height: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-header-right-actions .ba-header-sidebar-action {
    width: 40px;
    height: 40px;
    line-height: 36px;
  }
}

.ba-search-popup .ba-color-layer {
  position: fixed;
  content: "";
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.ba-search-popup::after {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 560px;
  background-image: url(../img/bg/waves-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0px;
  content: "";
}

.search-active .ba-search-popup {
  transform: translateY(0%);
  margin-top: var(--margin-zero);
}

.ba-search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-110%);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.ba-search-popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.ba-search-popup-inner form {
  position: relative;
}
.ba-search-popup-inner form input {
  width: 700px;
  height: 70px;
  border: 0;
  border-radius: 4px;
  padding: 0 20px;
  padding-right: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-search-popup-inner form input {
    width: 540px;
  }
}
@media (max-width: 767px) {
  .ba-search-popup-inner form input {
    width: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ba-search-popup-inner form input {
    width: 460px;
  }
}
.ba-search-popup-inner form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 70px;
  border: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: var(--clr-theme-primary);
  color: #fff;
  font-size: 20px;
}

.mean-container .mean-nav ul li a.mean-expand {
  height: 24px;
}

/*--------------- INDEX-1 PAGE HEADER STYLES---------------*/
.header-banner-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg/banner.jpg);
  background-position: center center;
  background-size: cover;
}

.header-top {
  color: #fff;
  padding: 15px 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .header-top {
    padding: 15px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .header-top {
    font-size: 14px;
    text-align: center;
  }
  .header-top .row {
    row-gap: 10px;
  }
}
.header-top-contact {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .header-top-contact {
    justify-content: center;
  }
}
.header-top-contact a {
  text-decoration: none;
}

.header-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 0px 40px;
  border-radius: 5px;
  margin-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .header-bottom {
    padding: 10px 15px;
  }
}

.ba-header-nav-menu ul li .index-1-submenu a {
  color: #8a90a2;
}
.ba-header-nav-menu ul li .index-1-submenu a:hover {
  color: var(--clr-theme-primary);
}

.index-1-header-btns {
  display: inline-flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.btn-index-1 {
  color: var(--clr-common-white);
  border-color: var(--clr-common-white);
  margin-left: 0;
}
.btn-index-1:hover {
  background-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}
.btn-index-1:hover .index-1-cart-number-popup span {
  color: var(--clr-common-white);
}
.btn-index-1--cart {
  position: relative;
}
.btn-index-1--cart .index-1-cart-number-popup {
  display: block;
  position: absolute;
  content: "";
  top: -10px;
  right: -10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--clr-theme-primary);
  line-height: 25px;
  text-align: center;
}

.header-bottom__nav ul li a {
  color: var(--clr-common-white);
}

/*=================== 
05. Hero
******************************************************* 
*************************************************************** */
.hero-height {
  min-height: 930px;
}
@media only screen and (max-width:479px) {
  .hero-height {
    min-height: 700px;
  }
}

.hero-space-reverce {
  margin-top: -45px;
}

.has-hero-overlay {
  position: relative;
}
.has-hero-overlay > * {
  position: relative;
  z-index: 1;
}
.has-hero-overlay::after {
  position: absolute;
  left: 0;
  opacity: 0.502;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--clr-common-black-deep);
}

.ba-hero-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--clr-common-white);
}
.ba-hero-title {
  font-size: 65px;
  color: var(--clr-common-white);
  font-weight: 700;
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .ba-hero-title {
    font-size: 50px;
  }
}
@media only screen and (max-width:479px) {
  .ba-hero-title {
    font-size: 30px;
  }
}

.ba-form-control {
  display: inline-block;
}
@media (max-width: 767px) {
  .ba-form-control {
    display: block;
  }
}
.ba-form-control label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--clr-common-white);
}
.ba-form-control input {
  height: 55px;
  border: 0;
  padding: 0 15px;
  border-radius: 4px;
  font-size: 14px;
  color: #808080;
}
.ba-form-control input::-webkit-input-placeholder {
  font-size: 14px;
  color: #808080;
}
.ba-form-control input:-moz-placeholder {
  font-size: 14px;
  color: #808080;
}
.ba-form-control input::-moz-placeholder {
  font-size: 14px;
  color: #808080;
}
.ba-form-control input:-ms-input-placeholder {
  font-size: 14px;
  color: #808080;
}
.ba-form-control.control-1 {
  margin-right: 11px;
}
@media (max-width: 767px) {
  .ba-form-control.control-1 {
    margin-right: 0;
    display: block;
  }
}
.ba-form-control.control-1 input {
  width: 335px;
}
@media (max-width: 767px) {
  .ba-form-control.control-1 input {
    width: 100%;
  }
}
@media only screen and (max-width:479px) {
  .ba-form-control.control-1 input {
    height: 40px;
  }
}
@media only screen and (max-width:479px) {
  .ba-form-control.control-1.pb-30 {
    padding-bottom: 20px;
  }
}
.ba-form-control.control-2 input {
  width: 150px;
}
@media (max-width: 767px) {
  .ba-form-control.control-2 input {
    width: 100%;
  }
}
@media only screen and (max-width:479px) {
  .ba-form-control.control-2 input {
    height: 40px;
  }
}

.hero-content-space-top {
  margin-top: -102px;
}

/*--------------- INDEX-1 PAGE HERO STYLES---------------*/
#banner-section {
  padding: 200px 0 210px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #banner-section {
    padding: 150px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px) {
  #banner-section {
    padding: 130px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (max-width:479px) {
  #banner-section {
    padding: 70px 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .index-1-hero-title {
    font-size: 55px;
    margin-top: -9px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .index-1-hero-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .index-1-hero-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .index-1-hero-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .index-1-hero-title {
    font-size: 35px;
  }
}
@media only screen and (max-width:479px) {
  .index-1-hero-title {
    font-size: 30px;
    font-weight: 500;
    margin-top: -5px;
    margin-bottom: 20px;
  }
}

.hero-txt {
  margin-bottom: 36px;
  color: #fff;
}
@media only screen and (max-width:479px) {
  .hero-txt {
    margin-bottom: 26px;
  }
}

/*=================== 
06. feature-list
******************************************************* 
*************************************************************** */
.ba-feature-list-box .icon {
  transition: all 0.3s linear 0s;
}
.ba-feature-list-box:hover .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);
}
.ba-feature-list-play-btn.has-pos {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ba-feature-list-vertical-item .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .ba-feature-list-vertical-item .title span {
    overflow: hidden;
  }
}
.ba-feature-list-vertical-item .title i {
  font-size: 25px;
  color: var(--clr-body-text);
  display: inline-block;
  transition: all 0.3s linear 0s;
  margin-right: 5px;
  display: inline-block;
  transform: translateY(3px);
}
@media (max-width: 767px) {
  .ba-feature-list-vertical-item .title i {
    margin-bottom: 10px;
    float: left;
    margin-right: 15px;
    transform: translateY(6px);
  }
}
.ba-feature-list-vertical-item .title:hover i {
  color: var(--clr-theme-primary);
}
.ba-feature-list-vertical-item p {
  margin-bottom: 0;
}
.ba-feature-list-vertical-item:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .ba-feature-list-vertical {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.ba-feature-list-play-btn {
  position: relative;
  display: inline-block;
}
.ba-feature-list-play-btn::after, .ba-feature-list-play-btn::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-white);
  content: "";
  border-radius: 50%;
  -webkit-animation-name: play-scale-up;
          animation-name: play-scale-up;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
.ba-feature-list-play-btn:hover::after, .ba-feature-list-play-btn:hover::before {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
}
.ba-feature-list-play-btn::before {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.ba-feature-list-play-btn a {
  height: 92px;
  position: relative;
  z-index: 2;
  width: 92px;
  display: inline-block;
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
  text-align: center;
  line-height: 92px;
  border-radius: 50%;
  font-size: 36px;
}
.ba-feature-list-play-btn a i {
  margin-left: 7px;
}
.ba-feature-list-play-btn a:hover {
  background-color: var(--clr-common-black);
}
@media only screen and (max-width:479px) {
  .ba-feature-list-play-btn a {
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 30px;
  }
}
.ba-feature-list-vertical-left-wrap {
  position: relative;
}
.ba-feature-list-vertical-left-img-2 {
  position: absolute;
  bottom: -50px;
  right: -85px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-vertical-left-img-2 {
    bottom: -50px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .ba-feature-list-vertical-left-img-2 {
    right: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ba-feature-list-vertical-left-img-2 img {
    width: 80px;
  }
}
.ba-feature-list-wrapper {
  padding: 55px 75px;
  background-color: var(--clr-common-white);
  border-radius: 5px;
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-feature-list-wrapper {
    padding: 50px 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-wrapper {
    padding: 45px 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-feature-list-wrapper {
    padding: 50px 45px;
  }
}
@media (max-width: 767px) {
  .ba-feature-list-wrapper {
    padding: 35px 35px;
  }
}
.ba-feature-list-box .icon {
  width: 60px;
  display: inline-block;
  height: 60px;
  transition: all 0.3s linear 0s;
  display: inline-block;
  vertical-align: top;
  background: var(--clr-bg-gray);
  color: var(--clr-common-white);
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-box .icon {
    display: block;
  }
}
@media (max-width: 767px) {
  .ba-feature-list-box .icon {
    margin-bottom: 15px;
  }
}
.ba-feature-list-box .content {
  display: inline-block;
  padding-left: 30px;
  margin-left: 5px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-feature-list-box .content {
    padding-left: 15px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-box .content {
    padding-left: 0;
    padding-top: 20px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-feature-list-box .content {
    padding-left: 11px;
    padding-top: 0;
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .ba-feature-list-box .content {
    padding-left: 0;
    margin-left: 0;
    display: block;
  }
}
.ba-feature-list-box .content::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 213px;
  content: "";
  background-color: #ddd;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-box .content::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-feature-list-box .content::before {
    display: none;
  }
}
.ba-feature-list-box .content .ba-feature-list-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 17px;
}
.ba-feature-list-box .content .ba-feature-list-title a {
  text-decoration: none;
}
.ba-feature-list-box .content .ba-feature-list-title a:hover {
  color: var(--clr-theme-primary);
}
.ba-feature-list-box .content ul li {
  list-style: none;
  margin-bottom: 12px;
  color: var(--clr-bg-gray);
}
.ba-feature-list-box .content ul li i {
  vertical-align: top;
  margin-right: 8px;
  margin-top: 4px;
}
.ba-feature-list-box .content ul li span {
  display: inline-block;
}
.ba-feature-list-box .content ul li.active i, .ba-feature-list-box .content ul li.active span {
  color: var(--clr-theme-primary);
}
.ba-feature-list-box:hover .icon {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-feature-list-box.active .icon {
  background-color: var(--clr-theme-primary);
}
.ba-feature-list-box.active .icon i {
  color: var(--clr-common-white);
}

.feature-list-space-top {
  margin-top: -150px;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .has-ba-feature-list-title br {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ba-feature-list-vertical-content.pt-20 {
    padding-top: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-vertical-space {
    padding-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-feature-list-vertical.pt-120.pb-165 {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-feature-list-vertical.pt-120.pb-165 {
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .pr-135.ba-feature-list-vertical-space {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .ba-feature-list-vertical-list-wrapper.pr-60.pb-30 {
    padding-right: 0;
  }
}

/*=================== 
07. about
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .about-area {
    padding-top: 60px;
    padding-bottom: 55px;
  }
}

.ba-about-right-img-box-2 {
  position: relative;
}
.ba-about-right-img-box-2::before {
  position: absolute;
  right: -40px;
  top: 40px;
  width: 100%;
  height: 100%;
  background-color: var(--clr-theme-primary);
  content: "";
  z-index: -1;
}
@media (max-width: 767px) {
  .ba-about-right-img-box-2::before {
    right: -20px;
    top: 20px;
  }
}
.ba-about-right-count-box-2 {
  background: var(--clr-theme-primary);
  display: inline-block;
  text-align: center;
  padding: 42px 50px;
  padding-bottom: 20px;
  border-radius: 5px;
}
.ba-about-right-count-box-2.has-pos {
  position: absolute;
  left: -85px;
  top: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-about-right-count-box-2.has-pos {
    left: 30px;
  }
}
@media (max-width: 767px) {
  .ba-about-right-count-box-2.has-pos {
    left: 20px;
    padding: 30px 35px;
  }
}
.ba-about-right-count-box-2 .title {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 0;
  color: var(--clr-common-white);
}
@media (max-width: 767px) {
  .ba-about-right-count-box-2 .title {
    line-height: 1.2;
  }
}
.ba-about-right-count-box-2 .title .count {
  color: var(--clr-common-white);
  font-size: 45px;
  font-weight: 600;
  display: block;
  margin-bottom: 9px;
}
@media (max-width: 767px) {
  .ba-about-right-count-box-2 .title .count {
    font-size: 40px;
    margin-bottom: 2px;
  }
}
@media (max-width: 767px) {
  .ba-about-left-wrapper {
    max-width: 320px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ba-about-left-wrapper {
    max-width: 100%;
  }
}
.ba-about-left-wrapper img {
  border-radius: 6px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-about-left-wrapper img {
    max-width: 290px;
  }
}
.ba-about-left-wrapper .item-2 {
  margin-top: -340px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-about-left-wrapper .item-2 {
    margin-top: -300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-about-left-wrapper .item-2 {
    margin-top: -248px;
  }
}
@media (max-width: 767px) {
  .ba-about-left-wrapper .item-2 {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ba-about-left-wrapper .item-2 {
    margin-top: -345px;
  }
}
.ba-about-left-wrapper .item-2 img {
  filter: brightness(0.38);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-about-left-wrapper .item-2 img {
    max-width: 233px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-about-right-wrapper.pt-30 {
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .ba-about-right-wrapper.pb-50 {
    padding-bottom: 0;
  }
}
.ba-about-experience-box.has-pos-tr {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .ba-about-experience-box.has-pos-tr {
    position: static;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ba-about-experience-box.has-pos-tr {
    position: absolute;
  }
}
.ba-about-experience-title {
  background: var(--clr-theme-primary);
  top: 0;
  display: inline-block;
  font-weight: 500;
  color: var(--clr-common-white);
  font-size: 28px;
  text-align: center;
  padding: 17px 40px;
  border-radius: 6px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-about-experience-title {
    font-size: 18px;
    padding: 10px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-about-experience-title {
    padding: 17px 53px;
  }
}
.ba-about-experience-title span {
  display: block;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-about-experience-title span {
    font-size: 35px;
    margin-bottom: 5px;
  }
}
.ba-about-right-content {
  margin-bottom: 36px;
}
.ba-about-right-content .text a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  vertical-align: top;
  text-decoration: none;
  color: var(--clr-theme-primary);
}
.ba-about-right-content .text p {
  color: var(--clr-bg-gray);
}
.ba-about-right-actions .ba-submit-btn {
  vertical-align: top;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .ba-about-right-actions .ba-submit-btn {
    margin-right: 15px;
    margin-bottom: 20px;
  }
}
.ba-about-right-call-num {
  display: inline-block;
}
.ba-about-right-call-num .icon {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  margin-top: 12px;
}
.ba-about-right-call-num .icon i {
  font-size: 33px;
  color: var(--clr-theme-primary);
}
.ba-about-right-call-num .content {
  display: inline-block;
}
.ba-about-right-call-num .content .title {
  font-size: 22px;
  color: #e6004a;
  font-weight: 500;
}
.ba-about-right-call-num .content .number {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #8a90a2;
}
.ba-about-right-call-num .content .number:hover {
  color: var(--clr-theme-primary);
}
.ba-about-right-list {
  margin-bottom: 28px;
}
.ba-about-right-list ul li {
  list-style: none;
  overflow: hidden;
  margin-bottom: 21px;
}
.ba-about-right-list ul li:last-child {
  margin-bottom: 45px;
}
.ba-about-right-list ul li .icon {
  float: left;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .ba-about-right-list ul li .icon {
    float: none;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.ba-about-right-list ul li .icon img {
  max-width: 40px;
}
.ba-about-right-list ul li .content {
  overflow: hidden;
}
.ba-about-right-list ul li .content .title {
  font-size: 24.2927px;
  margin-bottom: 13px;
}
.ba-about-right-list ul li .content p {
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pr-30.ba-about-banner-space-right {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .pr-30.ba-about-banner-space-right {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .ba-about-right-list.pr-95 {
    padding-right: 0;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ba-about-right-wrapper.pt-30 {
    padding-top: 0;
  }
}

/*--------------- INDEX-1 PAGE ABOUT STYLES---------------*/
#about-section .row {
  row-gap: 55px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #about-section {
    padding: 60px 0;
  }
  #about-section .row {
    row-gap: 30px;
  }
}

.about-img {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
}
.about-img__txt {
  padding: 21px 20px 17px 20px;
  position: absolute;
  top: 30px;
  left: 30px;
  width: 190px;
  background: var(--clr-theme-primary);
  border-radius: 5px;
}
.about-img__txt p {
  color: var(--clr-common-white);
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-img__txt {
    width: 175px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .about-img__txt {
    width: 165px;
  }
  .about-img__txt p {
    font-size: 16px;
  }
}
@media only screen and (max-width:479px) {
  .about-img__txt {
    padding: 10px;
    top: 20px;
    left: 20px;
    width: 135px;
  }
  .about-img__txt p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .about-content {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .about-content .section-title {
    margin-bottom: 13px;
  }
}
.about-content .ba-section-subtitle {
  margin-top: -5px;
  margin-bottom: 19px;
}
@media only screen and (max-width:479px) {
  .about-content .ba-section-subtitle {
    margin-bottom: 20px;
  }
}
.about-content .ba-section-title {
  margin-bottom: 22px;
}
@media only screen and (max-width:479px) {
  .about-content .ba-section-title {
    margin-bottom: 18px;
  }
}

.section-subtitle {
  font-weight: 600;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 13px;
}

.about__txt {
  margin-bottom: 31px;
  color: var(--clr-bg-gray);
}

.highlighted {
  gap: 30px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .highlighted {
    justify-content: center;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .highlighted {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .highlighted .free-install-question {
    text-align: left;
  }
}
.highlighted .free-install-question h6 {
  font-size: 23px;
  color: #292930;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 4px;
}
.highlighted .free-install-question ul {
  list-style: none;
}
.highlighted .free-install-question ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 7px;
}
.highlighted .free-install-question ul li:last-child {
  margin-bottom: 0;
}
.highlighted .free-install-question ul li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  left: 0;
  background: var(--clr-theme-primary);
  border-radius: 50%;
  translate: 0 -50%;
}
.highlighted .free-install-question ul li a {
  text-decoration: none;
  color: var(--clr-bg-gray);
}

.about-statics {
  margin-bottom: 31px;
  display: flex;
  align-items: center;
  gap: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .about-statics {
    justify-content: center;
    text-align: left;
    gap: 20px;
  }
}
.about-statics .single-statics {
  display: flex;
  align-items: center;
  gap: 25px;
}
.about-statics .single-statics__number {
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 600;
  color: var(--clr-theme-primary);
}
.about-statics .single-statics__label {
  font-size: 20px;
  font-weight: 600;
  color: #292930;
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .about-statics .single-statics {
    gap: 15px;
  }
  .about-statics .single-statics img {
    max-width: 35px;
  }
  .about-statics .single-statics__number {
    font-size: 25px;
  }
  .about-statics .single-statics__label {
    font-size: 14px;
    font-weight: 500;
  }
}

/*=================== 
08. Section Title
******************************************************* 
*************************************************************** */
.ba-section-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--clr-theme-primary);
  margin-bottom: 15px;
}
.ba-section-title {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-section-title {
    font-size: 42px;
    margin-top: -6px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-section-title {
    font-size: 42px;
    margin-top: -6px;
  }
}
@media (max-width: 767px) {
  .ba-section-title {
    font-size: 32px;
  }
}
@media only screen and (max-width:479px) {
  .ba-section-title {
    font-size: 25px;
  }
}
@media (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-section-title br {
    display: none;
  }
}
.ba-section-title-2 {
  position: relative;
  padding-bottom: 16px;
}
.ba-section-title-2::after {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 90px;
  background: var(--clr-theme-primary);
  content: "";
  left: 0;
}
@media (max-width: 767px) {
  .ba-section-title-wrapper p br {
    display: none;
  }
}

/*=================== 
09. CTA
******************************************************* 
*************************************************************** */
.ba-cta-content-left .title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--clr-common-white);
}
@media (max-width: 767px) {
  .ba-cta-content-left .title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .ba-cta-content-left .title br {
    display: none;
  }
}
.ba-cta-content-right img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-cta-content-right img {
    max-width: 540px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .service-area.pt-145 {
    padding-top: 110px;
  }
}

/*--------------- INDEX-1 PAGE CTA/NEWSLETTER STYLES---------------*/
#nws-section {
  background-image: url(../img/bg/cta-2.jpg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #nws-section {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #nws-section .row {
    row-gap: 35px;
  }
}

.nwsletter-content {
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media only screen and (max-width:479px) {
  .nwsletter-content {
    flex-direction: column;
    row-gap: 10px;
  }
}
@media only screen and (max-width:479px) {
  .nwsletter-icon {
    width: 50px;
  }
}
.nwsletter-txt {
  color: var(--clr-common-white);
}
@media only screen and (max-width:479px) {
  .nwsletter-txt {
    text-align: center;
  }
}
.nwsletter-txt h3 {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nwsletter-txt h3 {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px) {
  .nwsletter-txt h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (max-width:479px) {
  .nwsletter-txt h3 {
    font-size: 25px;
  }
}
.nwsletter-form {
  position: relative;
}
.nwsletter-email {
  width: 100%;
  border: 0;
  padding: 10px 130px 10px 20px;
  border-radius: 5px;
  height: 50px;
}
.nwsletter-btn {
  border: 0;
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
  padding: 0 20px;
  height: 40px;
  border-radius: 5px;
  position: absolute;
  right: 5px;
  top: 50%;
  translate: 0% -50%;
}

/*=================== 
10. Service
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .service-area {
    padding-top: 60px;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .ba-service-details-title {
    font-size: 34px;
  }
}
.ba-service-box.ba-service-box-has-padding {
  padding-right: 124px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-service-box.ba-service-box-has-padding {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-service-box.ba-service-box-has-padding {
    padding-right: 0;
  }
}
.ba-service-box:hover .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);
}
.ba-service-box .icon {
  transition: all 0.3s linear 0s;
  margin-bottom: 30px;
}
.ba-service-box .icon i {
  font-size: 43.5px;
  transition: all 0.3s linear 0s;
  color: var(--clr-theme-primary);
}
.ba-service-box .content p {
  margin-bottom: 25px;
  transition: all 0.3s linear 0s;
}
.ba-service-box .content .title {
  font-size: 24px;
  margin-bottom: 29px;
}
.ba-service-box .content .title a {
  text-decoration: none;
}
.ba-service-box .content .title a:hover {
  color: var(--clr-theme-primary);
}
.ba-service-box-2 {
  box-shadow: 0 2px 60px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  position: relative;
  border-radius: 5px;
}
.ba-service-box-2-wrapper {
  position: relative;
  z-index: 2;
}
.ba-service-box-2-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s linear 0s;
  opacity: 0;
  visibility: hidden;
}
.ba-service-box-2-bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.57);
}
.ba-service-box-2-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--clr-common-black);
}
.ba-service-box-2-link:hover {
  -webkit-text-decoration-color: var(--clr-theme-primary);
          text-decoration-color: var(--clr-theme-primary);
  text-decoration: underline;
  color: var(--clr-theme-primary);
}
.ba-service-box-2-title {
  margin-bottom: 13px;
}
.ba-service-box-2-title a {
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: 0px 95%;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.ba-service-box-2-title a:hover {
  background-size: 100% 1px;
  color: var(--clr-theme-primary);
}
.ba-service-box-2 .icon {
  display: block;
  margin-bottom: 28px;
}
.ba-service-box-2 .icon i {
  font-size: 42px;
  color: var(--clr-theme-primary);
}
.ba-service-box-2 .content p {
  margin-bottom: 23px;
}
.ba-service-box-2:hover .ba-service-box-2-bg-img {
  opacity: 1;
  visibility: visible;
}
.ba-service-box-2:hover .ba-service-box-2-title a {
  color: var(--clr-common-white);
}
.ba-service-box-2:hover .content p {
  color: var(--clr-common-white);
}
.ba-service-box-2:hover .icon i {
  color: var(--clr-common-white);
}
.ba-service-box-2:hover .ba-service-box-2-link {
  color: var(--clr-common-white);
}
.ba-service-box-3 {
  box-shadow: 0 2px 60px rgba(0, 0, 0, 0.1);
  padding: 40px 29px;
  border-radius: 5px;
}
.ba-service-box-3-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--clr-theme-primary);
}
.ba-service-box-3-link:hover {
  color: var(--clr-theme-primary);
  text-decoration: underline;
}
.ba-service-box-3 .icon {
  margin-bottom: 20px;
}
.ba-service-box-3 .icon i {
  font-size: 40px;
  color: var(--clr-common-black);
  transition: all 0.3s linear 0s;
}
.ba-service-box-3 .content .title {
  margin-bottom: 10px;
}
.ba-service-box-3 .content .title a {
  text-decoration: none;
}
.ba-service-box-3 .content .title a:hover {
  color: var(--clr-theme-primary);
}
.ba-service-box-3:hover .icon i {
  color: var(--clr-theme-primary);
}

.read-more-btn {
  font-size: 17px;
  font-weight: 500;
  color: #292930;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.read-more-btn:hover {
  color: var(--clr-theme-primary);
}
.read-more-btn::after {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--clr-theme-primary);
  content: "";
  width: 0;
  height: 2px;
  transition: all 0.3s linear 0s;
}
.read-more-btn:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-service-details-left-content.pr-30 {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-service-details-left-content.pr-30 {
    padding-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-has-wrapped-br br {
    display: block;
  }
}

@media (max-width: 767px) {
  .ba-feature-list-vertical.pb-150 {
    padding-bottom: 115px;
  }
}

/*=================== 
11. Internet Item
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .choose-internet {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.ba-choose-internet-item {
  text-decoration: none;
  display: block;
  padding: 34px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  background-color: var(--clr-common-white);
}
.ba-choose-internet-item i {
  font-size: 23.5px;
  display: block;
  text-align: center;
  margin-bottom: 6px;
  transition: all 0.3s linear 0s;
}
.ba-choose-internet-item .ba-count {
  display: block;
  font-size: 40px;
  text-align: center;
  color: var(--clr-common-black);
  font-weight: 600;
}
.ba-choose-internet-item .ba-label {
  font-size: 18px;
  display: block;
  text-align: center;
}
.ba-choose-internet-item:hover {
  border-color: var(--clr-theme-primary);
}
.ba-choose-internet-item:hover i {
  color: var(--clr-theme-primary);
}
.ba-choose-internet-item.active {
  border-color: var(--clr-theme-primary);
}
.ba-choose-internet-item.active i {
  color: var(--clr-theme-primary);
}

@media (max-width: 767px) {
  .choose-internet-box-wrapper.pr-65 {
    padding-right: 0;
  }
}

/*=================== 
12. Pricing
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .pricing-area {
    padding-bottom: 60px;
  }
}

.ba-pricing-box {
  padding: 50px 40px;
  border-radius: 6px;
}
.ba-pricing-box-tab nav .nav-tabs {
  box-shadow: 0 2px 60px rgba(0, 0, 0, 0.1);
  background: var(--clr-common-white);
  border-radius: 27.5px;
  padding: 10px;
}
.ba-pricing-box-tab nav .nav-tabs button.nav-link {
  font-weight: 500;
  height: 42px;
  margin: 0 5px;
  padding: 0 20px;
  border: 0;
  border-radius: 50px;
  background-color: transparent;
}
.ba-pricing-box-tab nav .nav-tabs button.nav-link.active {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-pricing-box {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .ba-pricing-box {
    padding: 40px 30px;
  }
}
.ba-pricing-box-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-common-white);
  margin-bottom: 21px;
}
.ba-pricing-box-count {
  font-size: 34px;
  font-weight: 500;
  color: var(--clr-common-white);
}
.ba-pricing-box-count span {
  font-size: 20px;
}
.ba-pricing-box-list-wrap {
  border-radius: 6px;
  background-color: var(--clr-common-white);
  padding: 40px 60px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-pricing-box-list-wrap {
    padding: 40px 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-pricing-box-list-wrap {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-pricing-box-list-wrap {
    padding: 40px 40px;
  }
}
@media (max-width: 767px) {
  .ba-pricing-box-list-wrap {
    padding: 35px 25px;
  }
}
.ba-pricing-box-list-wrap > * {
  position: relative;
  z-index: 2;
}
.ba-pricing-box-list-wrap::after {
  position: absolute;
  transition: all 0.3s linear 0s;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--clr-theme-primary);
  content: "";
}
.ba-pricing-box-list-wrap ul {
  text-align: left;
}
.ba-pricing-box-list-wrap ul li {
  list-style: none;
  transition: all 0.3s linear 0s;
}
.ba-pricing-box-list-wrap ul li:not(:last-child) {
  margin-bottom: 15px;
}
.ba-pricing-box-list-wrap ul li i {
  transition: all 0.3s linear 0s;
  margin-right: 9px;
}
.ba-pricing-box-list-wrap ul li.active i {
  color: var(--clr-theme-primary);
}
.ba-pricing-box-icons-wrap .ba-pricing-box-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  border: 1px solid var(--clr-common-white);
  margin: 0 10px;
}
.ba-pricing-box-icons-wrap .ba-pricing-box-icon.active {
  background-color: var(--clr-theme-primary);
  border-color: transparent;
}
.ba-pricing-box-icons-wrap .ba-pricing-box-icon i {
  color: var(--clr-common-white);
  font-size: 18px;
}
.ba-pricing-box.active .ba-pricing-box-list-wrap::after {
  width: 100%;
}
.ba-pricing-box.active .ba-pricing-box-list-wrap .ba-submit-btn {
  background-color: var(--clr-common-white);
}
.ba-pricing-box.active .ba-pricing-box-list-wrap .ba-submit-btn:hover {
  color: var(--clr-theme-primary);
}
.ba-pricing-box.active .ba-pricing-box-list-wrap ul li {
  color: var(--clr-common-white);
}
.ba-pricing-box.active .ba-pricing-box-list-wrap ul li.active i {
  color: var(--clr-common-white);
}
.ba-pricing-box:hover .ba-submit-btn {
  background-color: var(--clr-common-black);
}
.ba-pricing-box:hover .ba-pricing-box-list-wrap ul li, .ba-pricing-box:hover .ba-pricing-box-list-wrap ul li i {
  color: var(--clr-common-white);
}
.ba-pricing-box:hover .ba-pricing-box-list-wrap::after {
  left: 0;
  right: auto;
  width: 100%;
}

/*--------------- INDEX-1 PAGE TV SHOW/LIVE SPORTS STYLES---------------*/
#liveTV-section {
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #liveTV-section {
    padding: 60px 0;
  }
}
#liveTV-section .section-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: -8px;
  margin-bottom: 13px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #liveTV-section .section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  #liveTV-section .section-title {
    font-size: 30px;
  }
}
@media only screen and (max-width:479px) {
  #liveTV-section .section-title {
    font-size: 25px;
    margin-top: -5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .section-heading {
    margin-bottom: 41px;
  }
}

.single-stream {
  text-align: left;
  margin-bottom: 22px;
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .single-stream {
    text-align: center;
  }
}
.single-stream__img-container {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.single-stream__img-container .stream-popup-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--clr-common-white);
  font-size: 30px;
  line-height: 30px;
}
.single-stream__img {
  margin-bottom: 26px;
}
.single-stream__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .single-stream__title {
    font-size: 22px;
  }
}
@media only screen and (max-width:479px) {
  .single-stream__title {
    font-size: 20px;
  }
}
.single-stream__btn {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-theme-primary);
  text-decoration: none;
}

.custom-btn {
  background: var(--clr-common-white);
  border: 1px solid var(--clr-theme-primary);
  border-radius: 5px;
  text-decoration: none;
  color: var(--clr-theme-primary);
  height: 60px;
  line-height: 57px;
  padding: 0 60px;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
}
.custom-btn:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-btn {
    height: 40px;
    line-height: 37px;
    padding: 0 25px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .custom-btn {
    height: 40px;
    line-height: 37px;
    padding: 0 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width:479px) {
  .custom-btn {
    height: 35px;
    line-height: 32px;
    padding: 0px 15px;
    font-size: 14px;
  }
}

/*--------------- INDEX-1 PAGE STATS STYLES---------------*/
#stats-section {
  padding-top: 415px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #stats-section .row {
    row-gap: 85px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #stats-section {
    padding-bottom: 65px;
  }
}

.single-stat {
  text-align: center;
}
.single-stat:hover .single-stat__number {
  color: var(--clr-common-white);
}
.single-stat:hover .single-stat__number::before {
  background: var(--clr-theme-primary);
}
.single-stat__number {
  display: flex;
  justify-content: center;
  position: relative;
  color: var(--clr-theme-primary);
  z-index: 1;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 75px;
  transition: 0.4s ease;
}
.single-stat__number::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  top: -40px;
  left: 50%;
  width: 105px;
  height: 105px;
  background: #fff;
  z-index: -1;
  transform: rotate(45deg);
  translate: -50% 0;
  transition: 0.4s ease;
}
@media only screen and (max-width:479px) {
  .single-stat__number {
    margin-bottom: 65px;
  }
}
.single-stat__label {
  font-size: 26px;
  font-weight: 600;
  color: var(--clr-common-white);
  display: block;
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .single-stat__label {
    font-size: 24px;
  }
}
@media only screen and (max-width:479px) {
  .single-stat__label {
    font-size: 16px;
  }
}

/*--------------- INDEX-1 PAGE PACKAGE STYLES---------------*/
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #package-section {
    padding: 60px 0;
  }
}
#package-section .section-title {
  color: var(--clr-common-white);
  margin-bottom: 39px;
  color: var(--clr-common-white);
  margin-top: -6px;
}

.package-section__btns {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .package-section__btns {
    margin-bottom: 30px;
  }
}
.package-section__btns .custom-btn {
  background: transparent;
  color: var(--clr-common-white);
  height: auto;
  padding: 15px 20px;
  line-height: normal;
  display: grid;
  place-items: center;
}
@media only screen and (max-width:479px) {
  .package-section__btns .custom-btn {
    padding: 10px 20px;
  }
}
.package-section__btns .custom-btn:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}

.nav {
  gap: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav {
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .nav {
    gap: 15px;
    margin-bottom: 15px;
    padding: 0 35px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .nav {
    gap: 10px;
    margin-bottom: 15px;
  }
}

.nav-pills .nav-link {
  border: 2px solid transparent;
  border-radius: 6px;
  width: 180px;
  height: 180px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .nav-pills .nav-link {
    width: 157px;
    height: 157px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .nav-pills .nav-link {
    width: 100%;
    height: auto;
  }
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #f0f0f0;
  border-color: var(--clr-theme-primary);
  color: unset;
}
.nav-pills .nav-link.active .package-nav-btn__title,
.nav-pills .show > .nav-link .package-nav-btn__title {
  color: var(--clr-theme-primary);
}

@media only screen and (max-width:479px) {
  .package-tabs .nav-link {
    padding: 5px 24px;
  }
}

.package-nav-btn__icon {
  margin-bottom: 9px;
}
@media only screen and (max-width:479px) {
  .package-nav-btn__icon {
    max-width: 18px;
    margin-bottom: 5px;
  }
}
.package-nav-btn__title {
  font-size: 40px;
  line-height: 100%;
  color: #292930;
  display: block;
  font-weight: 600;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .package-nav-btn__title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px) {
  .package-nav-btn__title {
    font-size: 30px;
  }
}
@media only screen and (max-width:479px) {
  .package-nav-btn__title {
    font-size: 20px;
  }
}
@media only screen and (max-width:479px) {
  .package-nav-btn__subtitle {
    font-size: 14px;
    line-height: 100%;
  }
}

.package-tabs {
  padding: 0 11px;
}
@media only screen and (max-width:479px) {
  .package-tabs {
    padding: 0;
  }
}

.package-details {
  background-color: var(--clr-common-white);
  border-radius: 6px;
  padding: 30px 40px;
  text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .package-details .row {
    row-gap: 25px;
  }
}
@media only screen and (max-width:479px) {
  .package-details {
    padding: 20px;
  }
}
.package-details__title {
  margin-bottom: 13px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .package-details__title {
    text-align: center;
  }
}
.package-details__txt {
  margin-bottom: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .package-details__txt {
    text-align: center;
  }
}
.package-details__features-container {
  margin-bottom: 15px;
  -moz-column-gap: 70px;
       column-gap: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .package-details__features-container {
    justify-content: center;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .package-details__features-container {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media only screen and (max-width:479px) {
  .package-details__features-container {
    flex-wrap: wrap;
    row-gap: 25px;
    text-align: center;
  }
}
.package-details__img {
  display: block;
  margin: auto;
}

.single-pack-feature__title {
  margin-bottom: 20px;
}
.single-pack-feature-list {
  list-style: inside none;
}
.single-pack-feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}
.single-pack-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  background: url(../img/icons/check-package.png) no-repeat center center;
}
.single-pack-feature--colored {
  color: var(--clr-theme-primary);
}
.single-pack-feature--colored .single-pack-feature__title {
  color: var(--clr-theme-primary);
}

.special-offer {
  display: flex;
  align-items: center;
  background: #ededed;
  padding: 25px;
  border: 1px solid #ededed;
  border-radius: 8px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  -webkit-animation: offer 4s linear infinite;
          animation: offer 4s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .special-offer {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .special-offer {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    row-gap: 20px;
  }
}
@media only screen and (max-width:479px) {
  .special-offer {
    padding: 10px;
  }
}
.special-offer__img {
  width: 45px;
}
.special-offer__title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-common-black);
}
.special-offer__subtitle {
  display: block;
}
.special-offer__price {
  color: var(--clr-theme-primary);
  font-size: 17px;
  font-weight: 500;
}

/*=================== 
12. Movie
******************************************************* 
*************************************************************** */
@media only screen and (max-width:479px) {
  .movie-area {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.ba-movie-title {
  font-size: 46px;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .ba-movie-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 767px) {
  .ba-movie-title br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-movie-content.pr-185 {
    padding-right: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ba-movie-content.pr-185 {
    padding-right: 0;
  }
}
.ba-movie-content p {
  margin-bottom: 32px;
}
.ba-movie-price {
  font-size: 28px;
  font-weight: 500;
  color: var(--clr-theme-primary);
}
.ba-movie-price-service-duration-wrap .ba-movie-price {
  display: inline-block;
  border-right: 2px solid #e6e6e6;
  padding-right: 13px;
  margin-right: 12px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .ba-movie-price-service-duration-wrap .ba-movie-price {
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
    display: block;
  }
}
.ba-movie-price-service-duration-wrap .ba-movie-service-duration {
  display: inline-block;
}
.ba-movie-price span {
  font-size: 18px;
  color: var(--clr-body-text);
}
.ba-movie-service-duration i {
  font-size: 32px;
  color: var(--clr-theme-primary);
  margin-right: 10px;
}
.ba-movie-service-duration span {
  font-weight: 500;
  color: var(--clr-theme-primary);
}

/*--------------- INDEX-1 PAGE MOVIE STYLES---------------*/
.movie-content__title, .movie-content__txt, .movie-content__price, .movie-content__price span, .movie-content__duration i, .movie-content__duration span {
  color: var(--clr-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .ba-movie-price-service-duration-wrap .movie-content__price {
    border: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .movie-section__content {
    text-align: center;
    padding: 0;
    margin: 0 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .movie-section__content {
    text-align: center;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .movie-section__play-btn.has-pos {
    top: -20px;
    transform: translate(-50%, 0);
  }
}

/*=================== 
13. Testimonial
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .testimonial-area {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.ba-testimonial-2-box {
  padding: 50px 50px;
  border-radius: 10px;
  background: #f9f9f9;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-testimonial-2-box {
    padding: 35px 35px;
  }
}
@media (max-width: 767px) {
  .ba-testimonial-2-box {
    padding: 30px 30px;
  }
}
.ba-testimonial-2-box::before {
  position: absolute;
  right: 35px;
  top: 25px;
  content: "\f10d";
  font-family: "Font awesome 5 pro";
  color: var(--clr-theme-primary);
  font-size: 45px;
}
@media (max-width: 767px) {
  .ba-testimonial-2-box::before {
    display: none;
  }
}
.ba-testimonial-2-content p {
  margin-bottom: 0;
}
.ba-testimonial-2-author-wrapper {
  display: flex;
  align-items: center;
  grid-gap: 0 20px;
}
@media (max-width: 767px) {
  .ba-testimonial-2-author-wrapper.mb-30 {
    margin-bottom: 15px;
  }
}
.ba-testimonial-2-author-wrapper .image img {
  max-width: 80px;
  max-height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.ba-testimonial-2-author-wrapper .content .title {
  margin-bottom: 0;
}
.ba-testimonial-boxed-single {
  background: #f9f9f9;
  border-radius: 4px;
  padding: 50px 34px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-testimonial-boxed-single {
    padding: 40px 30px;
  }
}
.ba-testimonial-boxed-single::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  border-radius: 50%;
  background-image: url(../img/bg/line.png);
  content: "";
}
.ba-testimonial-boxed-single .icon {
  margin-bottom: 15px;
}
.ba-testimonial-boxed-single .icon i {
  font-size: 37px;
  color: #292930;
  font-weight: 700;
}
.ba-testimonial-boxed-single .content p {
  margin-bottom: 13px;
}
.ba-testimonial-boxed-single .content .title {
  font-size: 24px;
  margin-bottom: 9px;
}
.ba-testimonial-boxed-single .content .designation {
  font-size: 20px;
  font-weight: 500;
  color: var(--clr-theme-primary);
  display: block;
  margin-bottom: 15px;
}

/*--------------- INDEX-1 PAGE TESTIMONIAL STYLES---------------*/
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #testimonial-section {
    padding: 80px 0;
  }
}

.single-testimonial {
  padding: 20px;
  background: var(--clr-common-white);
  border-radius: 10px;
}

.swiper-slide-next .single-testimonial,
.swiper-slide-active .single-testimonial {
  box-shadow: 0px 5px 65px 0px rgba(0, 0, 0, 0.09);
}

.testimonial-slider-container {
  margin-right: -60px;
}

.testimonial-slider-container .mySwiper {
  max-width: 100%;
  padding: 55px 30px;
  margin: -55px -30px;
}

.stars {
  color: #ffa21d;
  margin-bottom: 18px;
}

.testimonial-writer {
  gap: 20px;
}
.testimonial-writer__img {
  width: 60px;
  height: 60px;
}
.testimonial-writer__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-writer__name {
  text-transform: capitalize;
  color: var(--clr-common-black);
  margin-bottom: 0;
}
.testimonial-writer__label {
  color: var(--clr-theme-primary);
}

/*=================== 
14. Blog
******************************************************* 
*************************************************************** */
@media only screen and (max-width:479px) {
  .ba-blog-area {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}

.ba-blog-box-list-item {
  border-bottom: 1px solid #ebecef;
  margin-bottom: 24px;
  padding-bottom: 5px;
}
.ba-blog-box-list-wrapper {
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 42px 40px;
  background-color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-blog-box-list-wrapper {
    padding: 37px 35px;
  }
}
@media (max-width: 767px) {
  .ba-blog-box-list-wrapper {
    padding: 30px 25px;
  }
}
.ba-blog-box-img {
  overflow: hidden;
}
.ba-blog-box-img a {
  position: relative;
  display: block;
}
.ba-blog-box-img a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-black-deep);
  content: "";
  opacity: 0.141;
}
.ba-blog-box-img img {
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transition: all 0.3s linear 0s;
}
.ba-blog-box-solid-white {
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.ba-blog-box-solid-white:hover img {
  transform: scale(1.1);
}
.ba-blog-box-content {
  width: 100%;
  background: var(--clr-common-white);
  padding: 30px;
}
@media (max-width: 767px) {
  .ba-blog-box-content {
    padding: 25px 25px;
  }
}
.ba-blog-box-transparent-height {
  min-height: 546px;
  display: flex;
  align-items: flex-end;
  background-color: #f9f9f9;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-blog-box-transparent-height {
    min-height: 600px;
  }
}
@media (max-width: 767px) {
  .ba-blog-box-transparent-height {
    min-height: 460px;
  }
}
.ba-blog-box-transparent {
  transition: all 0.3s linear 0s;
  position: relative;
}
.ba-blog-box-transparent > * {
  position: relative;
  z-index: 9;
}
.ba-blog-box-transparent::after {
  position: absolute;
  left: 0;
  border-radius: 5px;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-black-deep);
  opacity: 0.459;
  content: "";
}
.ba-blog-box-transparent:hover {
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
}
.ba-blog-box-transparent .ba-blog-box-meta-single i, .ba-blog-box-transparent .ba-blog-box-meta-single a, .ba-blog-box-transparent .ba-blog-box-meta-single span {
  color: var(--clr-common-white);
}
.ba-blog-box-transparent .ba-blog-box-meta-single i:hover, .ba-blog-box-transparent .ba-blog-box-meta-single a:hover, .ba-blog-box-transparent .ba-blog-box-meta-single span:hover {
  color: #fff;
}
.ba-blog-box-transparent .ba-blog-box-content {
  background-color: transparent;
}
.ba-blog-box-transparent .ba-blog-box-title, .ba-blog-box-transparent .ba-blog-box-content p, .ba-blog-box-transparent .read-more-btn {
  color: var(--clr-common-white);
}
.ba-blog-box-transparent .ba-blog-box-title:hover, .ba-blog-box-transparent .ba-blog-box-content p:hover, .ba-blog-box-transparent .read-more-btn:hover {
  color: #fff;
}
.ba-blog-box-transparent .ba-blog-box-title a:hover {
  color: var(--clr-common-white);
}
.ba-blog-box-transparent .read-more-btn::after {
  background-color: var(--clr-common-white);
}
.ba-blog-box-btn {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-theme-primary);
  position: relative;
}
.ba-blog-box-title {
  font-size: 24px;
  margin-bottom: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-blog-box-title br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-blog-box-title {
    font-size: 22px;
  }
}
.ba-blog-box-title a {
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: 0px 95%;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-blog-box-title a br {
    display: none;
  }
}
.ba-blog-box-title a:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-box-title:hover a {
  background-size: 100% 1px;
}
.ba-blog-box-meta-wrapper {
  margin-bottom: 13px;
}
.ba-blog-box-meta-single {
  display: inline-block;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .ba-blog-box-meta-single {
    margin-right: 12px;
  }
}
.ba-blog-box-meta-single a {
  text-decoration: none;
  display: inline-block;
}
.ba-blog-box-meta-single a:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-box-meta-single i {
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
  color: var(--clr-theme-primary);
}
.ba-blog-box-content p {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-area.pt-120.pb-170 {
    padding-bottom: 65px;
  }
}

.ba-blog-area .read-more-btn {
  margin-bottom: -7px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/**
*********** blog box ************
*/
.ba-blog-widget-subscribe-form form {
  position: relative;
}
.ba-blog-widget-subscribe-form input {
  border: 0;
  width: 100%;
  padding-right: 30px;
  border-bottom: 1px solid #DDD;
  color: var(--clr-bg-gray);
  padding-bottom: 3px;
  transition: all 0.3s linear 0s;
}
.ba-blog-widget-subscribe-form input::-moz-placeholder {
  color: var(--clr-bg-gray);
}
.ba-blog-widget-subscribe-form input:-ms-input-placeholder {
  color: var(--clr-bg-gray);
}
.ba-blog-widget-subscribe-form input::placeholder {
  color: var(--clr-bg-gray);
}
.ba-blog-widget-subscribe-form input:focus {
  border-color: var(--clr-theme-primary);
}
.ba-blog-widget-subscribe-form button[type=submit] {
  padding: 0;
  position: absolute;
  right: 0;
  bottom: 2px;
  background: transparent;
  border: 0;
  color: var(--clr-theme-primary);
}
.ba-blog-box-archive {
  box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.ba-blog-box-archive-meta > a span, .ba-blog-box-archive-meta > span span {
  display: inline-block;
}
.ba-blog-box-archive-meta > a i, .ba-blog-box-archive-meta > span i {
  font-size: 14px;
  color: var(--clr-theme-primary);
  margin-right: 5px;
}
.ba-blog-box-archive-meta a {
  text-decoration: none;
  display: inline-block;
}
.ba-blog-box-archive-meta a:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-box-archive-meta a.item-1 {
  margin-right: 15px;
}
.ba-blog-box-archive-title {
  font-size: 30px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .ba-blog-box-archive-title {
    font-size: 26px;
  }
}
.ba-blog-box-archive-title a {
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: 0px 95%;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.ba-blog-box-archive-title a:hover {
  color: var(--clr-theme-primary);
  background-size: 100% 1px;
}
.ba-blog-box-archive .content {
  padding: 30px;
}
.ba-blog-box-archive .content p {
  margin-bottom: 30px;
}

/* =================== widget =================== */
.ba-blog-comment-input-wrap input, .ba-blog-comment-input-wrap textarea {
  height: 50px;
  width: 100%;
  background: #F4F4F4;
  border: 0;
  font-weight: 500;
  padding: 0 20px;
  border-radius: 4px;
}
.ba-blog-comment-input-wrap textarea {
  padding: 20px 20px;
  height: 220px;
}
.ba-blog-comment-list ul li {
  overflow: hidden;
}
.ba-blog-comment-list ul li:not(:last-child) {
  margin-bottom: 50px;
}
.ba-blog-comment-list ul li .ba-blog-comment-box {
  border-bottom: 1px solid #DDD;
  padding-bottom: 10px;
}
.ba-blog-comment-list ul li .image {
  float: left;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .ba-blog-comment-list ul li .image {
    float: none;
    margin-bottom: 30px;
  }
}
.ba-blog-comment-list ul li .image img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.ba-blog-comment-list ul li .content {
  overflow: hidden;
}
.ba-blog-comment-list ul li .replay-link {
  text-decoration: none;
}
.ba-blog-comment-list ul li .replay-link:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-comment-list ul li ul {
  padding-left: 70px;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .ba-blog-comment-list ul li ul {
    padding-left: 0;
  }
}
.ba-blog-comment-list .title {
  margin-bottom: 5px;
}
.ba-blog-widget-title {
  font-size: 24px;
  margin-bottom: 25px;
}
.ba-blog-widget-post-wrapper .ba-blog-widget-post:last-child {
  margin-bottom: 0;
}
.ba-blog-widget-post .image {
  margin-right: 16px;
  display: inline-block;
  float: left;
  border-radius: 5px;
  overflow: hidden;
}
.ba-blog-widget-post .image img {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s linear 0s;
}
.ba-blog-widget-post .content {
  overflow: hidden;
  padding-top: 5px;
}
.ba-blog-widget-post .content .title {
  font-size: 20px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-blog-widget-post .content .title {
    font-size: 18px;
  }
}
.ba-blog-widget-post .content .title a {
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: 0px 95%;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.ba-blog-widget-post .content .title a:hover {
  color: var(--clr-theme-primary);
  background-size: 100% 1px;
}
.ba-blog-widget-post .content .date-meta i {
  margin-right: 6px;
  display: inline-block;
}
.ba-blog-widget-post:hover .image img {
  transform: scale(1.1);
}
.ba-blog-widget-list ul li {
  list-style: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
  position: relative;
  margin-bottom: 10px;
}
.ba-blog-widget-list ul li:last-child {
  margin-bottom: 0;
}
.ba-blog-widget-list ul li::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  transition: all 0.3s linear 0s;
  background-color: var(--clr-theme-primary);
  content: "";
}
.ba-blog-widget-list ul li:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.ba-blog-widget-list ul li a {
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.ba-blog-widget-list ul li a span.count {
  float: right;
}
.ba-blog-widget-list ul li a:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-search-form form {
  position: relative;
}
.ba-blog-search-form input[type=search] {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  color: #606060;
  padding: 0 13px;
  padding-right: 70px;
}
.ba-blog-search-form input[type=search]::-moz-placeholder {
  color: #606060;
}
.ba-blog-search-form input[type=search]:-ms-input-placeholder {
  color: #606060;
}
.ba-blog-search-form input[type=search]::placeholder {
  color: #606060;
}
.ba-blog-search-form button[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 60px;
  background-color: var(--clr-theme-primary);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border: 0;
  color: var(--clr-common-white);
}

.tagcloud a {
  padding: 5px 17px;
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 3px;
  text-decoration: none;
  margin-bottom: 15px;
  margin-right: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tagcloud a {
    padding: 5px 15px;
    margin-right: 5px;
  }
}
.tagcloud a:hover {
  background-color: var(--clr-theme-primary);
  border-color: transparent;
  color: var(--clr-common-white);
}

.ba-blog-sidebar-widget-wrapper.pl-50 .ba-blog-widget:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-blog-sidebar-widget-wrapper.pl-50 {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-blog-sidebar-widget-wrapper.pl-50 {
    padding-left: 0;
  }
}

/*=================== 
15. Footer
******************************************************* 
*************************************************************** */
.ba-footer-overlay {
  position: relative;
}
.ba-footer-overlay::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--clr-common-black-deep);
  opacity: 0.86;
}
.ba-footer-overlay > * {
  position: relative;
  z-index: 9;
}
.ba-footer-copyright-text {
  margin-bottom: 0;
  font-size: 14px;
}
@media (max-width: 767px) {
  .ba-footer-copyright-text {
    text-align: center;
    padding-bottom: 10px;
  }
}
.ba-footer-copyright-list ul {
  text-align: right;
}
@media (max-width: 767px) {
  .ba-footer-copyright-list ul {
    text-align: center;
  }
}
.ba-footer-copyright-list ul li {
  list-style: none;
  display: inline-block;
}
.ba-footer-copyright-list ul li a {
  display: inline-block;
  margin-left: 25px;
  text-decoration: none;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-footer-copyright-list ul li a {
    flex: 0 0 30.33%;
  }
}
.ba-footer-copyright-list ul li:first-child a {
  margin-left: 0;
}
.ba-footer-social-list a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #323334;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  border-radius: 50%;
  margin-right: 10px;
}
.ba-footer-social-list a:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-footer-widget-working-hours-list ul li {
  overflow: hidden;
  list-style: none;
  margin-bottom: 7px;
  border-bottom: 1px solid #838384;
  padding-bottom: 5px;
}
.ba-footer-widget-working-hours-list ul li .label, .ba-footer-widget-working-hours-list ul li .value {
  display: inline-block;
  font-size: 18px;
  color: var(--clr-common-white);
}
.ba-footer-widget-working-hours-list ul li .label {
  float: left;
}
.ba-footer-widget-working-hours-list ul li .value {
  float: right;
}
.ba-footer-widget ul li {
  list-style: none;
  margin-bottom: 7px;
}
.ba-footer-widget ul li a {
  color: var(--clr-common-white);
  text-decoration: none;
  font-size: 17px;
}
.ba-footer-widget-title {
  font-size: 24px;
  color: var(--clr-common-white);
  margin-bottom: 35px;
}
.ba-footer-widget .call {
  display: block;
  margin-bottom: 10px;
}
.ba-footer-widget .title {
  font-weight: 400;
}
.ba-footer-widget .title a {
  text-decoration: none;
  color: var(--clr-theme-primary);
  position: relative;
}
.ba-footer-widget .title a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.3s linear 0s;
  width: 0;
  height: 1px;
  background-color: var(--clr-theme-primary);
  content: "";
}
.ba-footer-widget .title a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.ba-footer-widget-instagram-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.ba-footer-widget-instagram-wrapper ul li {
  margin-bottom: 0;
  list-style: none;
}
.ba-footer-logo img {
  max-width: 90px;
}
.ba-footer-cta-title {
  font-size: 26px;
  margin-bottom: 0;
}
.ba-footer-cta-border-bottom {
  border-bottom: 1px solid #5f6060;
}
.ba-footer-cta-border-bottom .ba-submit-btn:hover {
  background-color: var(--clr-common-white);
  color: var(--clr-theme-primary);
}
.ba-footer-content p {
  margin-bottom: 17px;
}

/*--------------- INDEX-1 PAGE FOOTER STYLES---------------*/
#footer-section {
  background: url(../img/bg/footer-2.jpg) no-repeat center center;
  background-size: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #footer-section {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  #footer-section {
    padding: 30px 0;
  }
}
@media only screen and (max-width:479px) {
  #footer-section {
    padding: 40px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .footer-heading {
    text-align: center;
  }
}
.footer-heading h3 {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-heading h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .footer-heading h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width:479px) {
  .footer-heading h3 {
    font-size: 22px;
  }
}

.footer-one {
  border-bottom: 1px solid #3e3e3e;
  padding: 70px 0 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-one {
    padding: 70px 0 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-one {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .footer-one {
    padding: 30px 0;
  }
}
@media only screen and (max-width:479px) {
  .footer-one {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-one .row {
    row-gap: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-one .row {
    row-gap: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .footer-one .row {
    row-gap: 15px;
  }
}

.footer-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 110px;
  height: 90px;
  -o-object-position: top;
     object-position: top;
}

.footer-two {
  border-bottom: 1px solid #3e3e3e;
  padding: 60px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px) {
  .footer-two .row {
    row-gap: 35px;
  }
}
@media only screen and (max-width:479px) {
  .footer-two .row {
    row-gap: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-two {
    padding: 35px 0;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .footer-two {
    padding: 25px 0;
  }
}
@media only screen and (max-width:479px) {
  .footer-two {
    padding: 20px 0;
  }
}
.footer-two__logo {
  width: 110px;
  margin-bottom: 35px;
}
@media only screen and (max-width:479px) {
  .footer-two__logo {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .footer-two-widget {
    text-align: center;
  }
}
.footer-two-widget__title {
  font-weight: 500;
  color: #dddddd;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .footer-two-widget__title {
    text-align: center;
  }
}
@media only screen and (max-width:479px) {
  .footer-two-widget__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.footer-two-widget ul li a {
  font-size: 16px;
  color: #dddddd;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .footer-two-widget--last {
    padding: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px) {
  .footer-two-widget--last {
    text-align: left;
  }
}

.company-info__txt {
  color: var(--clr-common-white);
  line-height: 37px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ebebeb;
}
@media only screen and (max-width:479px) {
  .company-info__txt {
    line-height: 30px;
  }
}
.company-info__txt span {
  display: block;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .company-info {
    text-align: center;
  }
}

.company__numbers a {
  text-decoration: none;
}

.footer-two-widget__working-hours ul li .label, .footer-two-widget__working-hours ul li .value {
  color: #dddddd;
  border-bottom-color: #dddddd;
}
.footer-two-widget__working-hours ul li:last-child {
  border-bottom: none;
}

.footer-three__copyright-text {
  color: #ebebeb;
  font-family: "Roboto";
  font-weight: 500;
}
.footer-three .payment-methods {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-three .payment-methods {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-three {
    padding: 25px 0;
  }
  .footer-three .row {
    row-gap: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px) {
  .footer-three {
    padding: 20px 0;
  }
  .footer-three .row {
    row-gap: 10px;
  }
}
@media only screen and (max-width:479px) {
  .footer-three {
    padding: 15px 0;
  }
  .footer-three .row {
    row-gap: 15px;
  }
  .footer-three__copyright-text {
    font-size: 12px;
  }
}

/*=================== 
16. Sidebar
******************************************************* 
*************************************************************** */
.ba-sidebar-info-content {
  padding: 0 30px;
}
.ba-sidebar-logo-action-wrapper {
  padding: 20px 0px;
}
.ba-sidebar-logo-action-wrapper .action button {
  background: transparent;
  width: 42px;
  height: 42px;
  font-size: 17px;
  color: var(--clr-theme-primary);
  border: 1px solid var(--clr-theme-primary);
  border-radius: 50%;
}
.ba-sidebar-logo-action-wrapper .action button:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-sidebar-top nav button.nav-link {
  background: var(--clr-common-white);
  border-radius: 0;
  width: 50%;
  color: var(--clr-theme-primary);
  border: 0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.ba-sidebar-top nav button.nav-link.active {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-sidebar-area {
  position: fixed;
  right: -330px;
  top: 0;
  z-index: 9;
  width: 320px;
  transition: all 0.3s linear 0s;
  height: 100%;
  background: var(--clr-common-white);
}
.ba-sidebar-area.active {
  right: 0;
}

.mean-container .mean-nav {
  margin-top: 0;
}
.mean-container .mean-nav > ul {
  display: block !important;
  overflow: hidden;
}
.mean-container a.meanmenu-reveal {
  display: none;
}
.mean-container .mean-bar {
  padding: 0;
}

.ba-sidebar-navigation-main {
  overflow: hidden;
}

.ba-sidebar-nav-content {
  padding: 0 30px;
}

.mean-container .mean-nav {
  float: none;
  background: var(--clr-theme-primary);
  margin-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mean-container .mean-nav {
    margin-top: 0;
  }
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 90%;
  padding: 10px 5%;
  margin: 0;
  text-align: left;
  color: var(--clr-common-white);
  border-top: 1px solid rgba(255, 255, 255, 0.5019607843);
  text-decoration: none;
  text-transform: uppercase;
}
.mean-container .mean-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2392156863);
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-black);
  opacity: 0;
  z-index: 9;
  transition: all 0.3s linear 0s;
  visibility: hidden;
}
.overlay.active {
  opacity: 0.5;
  visibility: visible;
}

.header-1 #mobile-menu {
  display: inline-block !important;
}

/*=================== 
17. Breadcrumb
******************************************************* 
*************************************************************** */
.has-breadcrumb-overlay {
  position: relative;
}
.has-breadcrumb-overlay::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-black-deep);
  opacity: 0.6;
  content: "";
}
.has-breadcrumb-overlay > * {
  position: relative;
  z-index: 4;
}

.ba-breadcrumb-reverce-space {
  margin-top: -41px;
}
.ba-breadcrumb-navs {
  background: #f4fbff;
  padding: 23px 35px;
  border-radius: 5px 5px 0 0;
}
.ba-breadcrumb-navs a, .ba-breadcrumb-navs span.current {
  font-size: 16px;
  font-weight: 600;
  color: #8a90a2;
  text-decoration: none;
}
.ba-breadcrumb-navs a:hover {
  color: var(--clr-theme-primary);
}
.ba-breadcrumb-navs span.current::before {
  content: "/";
  padding-right: 6px;
  color: currentColor;
}
.ba-breadcrumb-navs.ba-breadcrumb-navs-has-pos {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .ba-breadcrumb-navs.ba-breadcrumb-navs-has-pos {
    left: 0;
    right: auto;
  }
}
.ba-breadcrumb-title {
  font-size: 56px;
  color: var(--clr-common-white);
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .ba-breadcrumb-title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .ba-breadcrumb-inner-wrapper {
    padding-top: 95px;
    padding-bottom: 160px;
    padding-left: 0;
  }
}

/*=================== 
18. Blog Details
******************************************************* 
*************************************************************** */
.ba-blog-details-wrapper blockquote {
  background-color: #F4F4F4;
}
.ba-blog-details-social-box {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  padding-bottom: 7px;
}
@media (max-width: 767px) {
  .ba-blog-details-social-box {
    padding: 20px 0;
  }
}
.ba-blog-details-comment-count i {
  font-size: 15px;
  color: var(--clr-theme-primary);
}
.ba-blog-details-comment-count span {
  display: inline-block;
  margin-left: 10px;
}
.ba-blog-details-social-icons a {
  margin-right: 10px;
  font-size: 20px;
  vertical-align: middle;
}
.ba-blog-details-social-icons a:hover {
  color: var(--clr-theme-primary);
}
.ba-blog-details-social-icons h6 {
  display: inline-block;
  margin-right: 15px;
}
.ba-blog-details-social-icons h6 i {
  display: inline-block;
  font-size: 20px;
}
.ba-blog-details-list-wrap ul li {
  list-style: none;
  margin-bottom: 12px;
}
.ba-blog-details-list-wrap ul li i {
  font-size: 20px;
  padding-right: 15px;
}
.ba-blog-details-list-wrap ul li span {
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-body-heading);
  display: inline-block;
}
.ba-blog-details-list-wrap ul li.active i {
  color: var(--clr-theme-primary);
}
.ba-blog-details-title {
  margin-bottom: 17px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-blog-details-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .ba-blog-details-title {
    font-size: 36px;
  }
}
.ba-blog-details-title-inner {
  margin-bottom: 8px;
}
.ba-blog-details-img {
  margin-bottom: 30px;
}
.ba-blog-details-img img {
  border-radius: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-blog-details-list-wrap.pt-20 {
    padding-top: 0;
  }
  .ba-blog-sidebar-widget-wrapper.pl-50 {
    padding-left: 30px;
  }
}
/*=================== 
19. Like Us
******************************************************* 
*************************************************************** */
.ba-like-us-2-image-left img {
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-like-content-space.pl-50 {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-like-content-space.pl-50 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-like-us-content {
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .ba-like-us-content br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-like-us-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .ba-like-us-title {
    font-size: 32px;
  }
}
.ba-like-us-section-img-50 {
  max-width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-like-us-section-img-50 {
    max-width: 100%;
    width: 100%;
  }
}
.ba-like-us-section-img-50 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-like-us-section-img-50 img {
    width: 100%;
    filter: brightness(0.25);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-like-list-wrapper.pr-185 {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-like-list-wrapper.pr-185 {
    padding-right: 95px;
  }
}
@media (max-width: 767px) {
  .ba-like-list-wrapper.pr-185 {
    padding-right: 0;
  }
}
.ba-like-list-wrapper ul li {
  list-style: none;
  overflow: hidden;
  margin-bottom: 35px;
}
.ba-like-list-wrapper ul li:last-child {
  margin-bottom: 0;
}
.ba-like-list-wrapper ul li .icon {
  float: left;
}
.ba-like-list-wrapper ul li .icon i {
  font-size: 38px;
}
.ba-like-list-wrapper ul li .content {
  overflow: hidden;
}
.ba-like-list-wrapper ul li .content .title {
  margin-bottom: 13px;
}
.ba-like-list-wrapper ul li .content p {
  margin-bottom: 0;
}

.has-like-us-2-primary-shape {
  position: relative;
}
.has-like-us-2-primary-shape::before {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--clr-theme-primary);
  height: 100%;
  width: 36.63%;
  content: "";
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .has-like-us-2-primary-shape::before {
    display: none;
  }
}
.has-like-us-2-primary-shape > * {
  position: relative;
  z-index: 2;
}

/*=================== 
20. Team
******************************************************* 
*************************************************************** */
@media only screen and (max-width:479px) {
  .team-area {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}

.ba-team-card-box {
  box-shadow: 0 3px 63px rgba(0, 0, 0, 0.07);
}
.ba-team-card-box .image {
  overflow: hidden;
}
.ba-team-card-box .image img {
  transition: all 0.3s linear 0s;
  width: 100%;
}
.ba-team-card-box:hover .image img {
  transform: scale(1.1);
}
.ba-team-card-box .content {
  padding: 25px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-team-card-box .content {
    padding: 25px 20px;
  }
}
.ba-team-card-box-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #f3f3f3;
  text-align: center;
  margin: 0 5px;
}
.ba-team-card-box-social a:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-team-card-box-social.ba-has-social-left a {
  margin: 0;
}
.ba-team-card-box-social.ba-has-social-left a:not(:last-child) {
  margin-right: 10px;
}
.ba-team-card-box-title {
  margin-bottom: 8px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-team-card-box-title {
    font-size: 24px;
  }
}
.ba-team-card-box-title a {
  text-decoration: none;
}
.ba-team-card-box-title a:hover {
  color: var(--clr-theme-primary);
}
.ba-team-card-box-designation {
  text-decoration: none;
  display: block;
  margin-bottom: 18px;
}

.single-member {
  text-align: center;
  box-shadow: 0px 0px 100px 0px #d9d9d9;
}
.single-member__img {
  margin-bottom: 12px;
}
.single-member__name {
  margin-bottom: 10px;
}
.single-member__role {
  margin-bottom: 15px;
  display: inline-block;
}
.single-member__socials {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-bottom: 15px;
}
.single-member__socials a {
  width: 40px;
  height: 40px;
  background: #f3f3f3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #000;
}

/*=================== 
21. Video
******************************************************* 
*************************************************************** */
.ba-video-icon {
  position: relative;
  display: inline-block;
}
.ba-video-icon::after, .ba-video-icon::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-common-white);
  content: "";
  border-radius: 50%;
  -webkit-animation-name: play-scale-up;
          animation-name: play-scale-up;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
.ba-video-icon::before {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.ba-video-icon:hover::after, .ba-video-icon:hover::before {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
}
.ba-video-icon-link {
  width: 55px;
  height: 55px;
  background: var(--clr-common-white);
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 9;
  line-height: 55px;
  color: var(--clr-theme-primary);
  border-radius: 50%;
}
.ba-video-icon-link:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-video-content-subtitle {
  font-weight: 500;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ba-video-content-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-video-content-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .ba-video-content-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ba-video-content-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ba-video-content-title br {
    display: none;
  }
}
.ba-video-content .ba-video-content-subtitle {
  margin-bottom: 20px;
}

/*=================== 
22. Brand
******************************************************* 
*************************************************************** */
.ba-brand-active-wrapper {
  box-shadow: 0 0 83px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 9;
  padding: 80px 60px;
  border-radius: 4px;
}
.ba-brand-active-wrapper.has-space-top-reverce {
  margin-top: -105px;
  background-color: var(--clr-common-white);
}

/*=================== 
22. Faq
******************************************************* 
*************************************************************** */
.ba-faq-left-content .ba-section-title {
  margin-bottom: 7px;
}
.ba-faq-question-form {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 50px 75px;
}
@media (max-width: 767px) {
  .ba-faq-question-form-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ba-faq-question-form {
    padding: 40px 35px;
  }
}
@media (max-width: 767px) {
  .ba-faq-question-form {
    padding: 35px 30px;
  }
}
.ba-faq-question-form-input-wrap input, .ba-faq-question-form-input-wrap textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #f2f2f2;
}
.ba-faq-question-form-input-wrap textarea {
  padding: 15px;
  height: 120px;
}
.ba-faq-accordion .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
.ba-faq-accordion .accordion-button {
  font-weight: 500;
  line-height: 26px;
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid transparent;
}
@media (max-width: 767px) {
  .ba-faq-accordion .accordion-button {
    text-align: left;
  }
}
.ba-faq-accordion .accordion-button::after {
  background-image: none;
  content: "\f107";
  font-family: "Font awesome 5 pro";
  color: var(--clr-common-white);
}
.ba-faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.ba-faq-accordion .accordion-button.collapsed {
  background-color: transparent;
  border-radius: 5px;
  border-color: #ddd;
  color: var(--clr-common-black);
}
.ba-faq-accordion .accordion-button.collapsed::after {
  color: var(--clr-common-black);
}
.ba-faq-accordion .accordion-collapse {
  border: 0;
}
.ba-faq-accordion .accordion-collapse .accordion-body {
  border: 1px solid #ddd;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 18px 22.5px;
}
.ba-faq-accordion .accordion-collapse .accordion-body p {
  margin-bottom: 0;
}

/*--------------- INDEX-1 PAGE FAQ STYLES---------------*/
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #index-1-faq-section {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .faq-img {
    margin: 0;
    text-align: center;
  }
}

/*=================== 
23. Widget
******************************************************* 
*************************************************************** */
.ba-service-widget {
  background-color: #F5F5F5;
  padding: 30px 20px;
  border-radius: 5px;
}
.ba-service-widget-form-search {
  position: relative;
}
.ba-service-widget-form-search input[type=search] {
  border: 0;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  padding: 0 20px;
  padding-right: 75px;
}
.ba-service-widget-form-search button[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 55px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 0;
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.ba-service-widget-form-search button[type=submit]:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.ba-service-widget-category-list ul li {
  list-style: none;
  overflow: hidden;
}
.ba-service-widget-category-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.ba-service-widget-category-list ul li a {
  display: block;
  font-size: 18px;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  background: var(--clr-common-white);
  color: var(--clr-bg-black);
  padding: 15px 20px;
  position: relative;
}
.ba-service-widget-category-list ul li a i {
  float: right;
}
.ba-service-widget-category-list ul li a::before {
  position: absolute;
  left: 0;
  transition: all 0.3s linear 0s;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--clr-theme-primary);
  content: "";
}
.ba-service-widget-category-list ul li a > * {
  position: relative;
  z-index: 1;
}
.ba-service-widget-category-list ul li a:hover {
  color: var(--clr-common-white);
}
.ba-service-widget-category-list ul li a:hover::before {
  width: 100%;
}
.ba-service-widget-info-box {
  background: var(--clr-common-white);
  padding: 25px 20px;
}
.ba-service-widget-info-social-links ul li {
  list-style: none;
}
.ba-service-widget-info-social-links ul li:not(:last-child) a {
  padding-bottom: 10px;
}
.ba-service-widget-info-social-links ul li a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  color: var(--clr-common-black);
  display: block;
}
.ba-service-widget-info-social-links ul li a i {
  display: inline-block;
  margin-right: 10px;
}
.ba-service-widget-info-social-links ul li a:hover {
  color: var(--clr-theme-primary);
}

/*=================== 
24. Team Details
******************************************************* 
*************************************************************** */
.ba-team-details-input-wrap input[type=text], .ba-team-details-input-wrap input[type=email], .ba-team-details-input-wrap textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.ba-team-details-input-wrap textarea {
  height: 135px;
  padding: 11px 15px;
}
.ba-team-details-form-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.ba-team-details-info-title {
  margin-bottom: 23px;
}
.ba-team-details-skill-progress-wrapper .ba-team-details-skill-progress-item:not(:last-child) {
  margin-bottom: 20px;
}
.ba-team-details-skill-progress-item {
  overflow: hidden;
}
.ba-team-details-skill-progress-item .ba-content {
  padding-bottom: 10px;
}
.ba-team-details-skill-progress-item .progress {
  height: 7px;
  border-radius: 3.5px;
}
.ba-team-details-skill-progress-item .progress .progress-bar {
  background-color: var(--clr-theme-primary);
}
.ba-team-details-skill-progress-item .label {
  font-weight: 500;
}
.ba-team-details-skill-progress-item .value {
  float: right;
}
.ba-team-details-skill-progress-title {
  margin-bottom: 25px;
}
.ba-team-details-author-img img {
  border-radius: 4px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ba-team-details-author-content.pt-10 {
    padding-top: 0;
  }
}
.ba-team-details-author-name {
  margin-bottom: 4px;
}
.ba-team-details-author-experience-list ul li {
  overflow: hidden;
  list-style: none;
  margin-bottom: 12px;
}
.ba-team-details-author-experience-list ul li a {
  text-decoration: none;
}
.ba-team-details-author-experience-list ul li a:hover {
  color: var(--clr-theme-primary);
}
.ba-team-details-author-experience-list ul li .label {
  min-width: 152px;
  float: left;
  font-weight: 500;
}
@media (max-width: 767px) {
  .ba-team-details-author-experience-list ul li .label {
    min-width: 122px;
  }
}
.ba-team-details-author-experience-list ul li .value {
  overflow: hidden;
  display: block;
}

/*=================== 
25. Contact
******************************************************* 
*************************************************************** */
.ba-contact-global-location-widget.has-pos {
  position: absolute;
  left: 0;
  top: 0;
  position: relative;
}
.ba-contact-map {
  line-height: 1;
}
.ba-contact-map-area.has-ba-contact-overlay {
  position: relative;
}
.ba-contact-map iframe {
  width: 100%;
  height: 743px;
  line-height: 1;
}
.ba-contact-left-content-list ul li {
  list-style: none;
  overflow: hidden;
}
.ba-contact-left-content-list ul li:not(:last-child) {
  margin-bottom: 30px;
}
.ba-contact-left-content-list ul li .icon {
  width: 60px;
  height: 60px;
  font-size: 24px;
  float: left;
  margin-right: 20px;
  text-align: center;
  line-height: 60px;
  background: var(--clr-common-black);
  border-radius: 50%;
  color: var(--clr-common-white);
  transition: all 0.3s linear 0s;
}
.ba-contact-left-content-list ul li .content {
  overflow: hidden;
}
.ba-contact-left-content-list ul li .content .ba-contact-left-title {
  margin-bottom: 3px;
}
.ba-contact-left-content-list ul li .content .ba-contact-left-title a {
  text-decoration: none;
}
.ba-contact-left-content-list ul li .content .ba-contact-left-title a:hover {
  color: var(--clr-theme-primary);
}
.ba-contact-left-content-list ul li .content p {
  margin-bottom: 0;
}
.ba-contact-left-content-list ul li .content a {
  text-decoration: none;
}
.ba-contact-left-content-list ul li .content a:hover {
  color: var(--clr-theme-primary);
}
.ba-contact-left-content-list ul li:hover .icon {
  color: var(--clr-common-white);
  background-color: var(--clr-theme-primary);
}

/*--------------- INDEX-1 PAGE CONTACT STYLES---------------*/
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  #contact-section {
    padding-top: 80px;
  }
}

.conatct-section-bg {
  border-radius: 5px;
  box-shadow: 3.5px 6.062px 76px 0px rgba(0, 0, 0, 0.11);
  background: var(--clr-common-white);
  margin-bottom: -235px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .conatct-section-bg {
    text-align: center;
    margin-bottom: -275px;
  }
}

.contact-form__input-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 45px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .contact-form__input-fields {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 25px;
    margin-bottom: 30px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .contact-form__input-fields {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 15px;
  }
}
.contact-form__input-fields > * {
  position: relative;
}
.contact-form__input-fields > *::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 18px;
  height: 18px;
  font-family: "Font Awesome 5 Pro";
  line-height: 16px;
}
.contact-form__input-fields > *:focus-within::after {
  color: var(--clr-theme-primary);
}

.input-field-container-name::after {
  content: "\f007";
}
.input-field-container-email::after {
  content: "\f2b6";
}
.input-field-container-number::after {
  content: "\f879";
}
.input-field-container-subject::after {
  content: "\f044";
}
.input-field-container-message {
  grid-area: 3/1/auto/3;
}
@media only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .input-field-container-message {
    grid-area: auto;
  }
}
.input-field-container-message::after {
  content: "\f4ad";
  top: 15px;
  translate: 0;
}

#contact-form__name, #contact-form__email, #contact-form__number, #contact-form__subject, #contact-form__message {
  border: none;
  border-bottom: 1px solid #ebebeb;
  padding: 12px 0;
  width: 100%;
  padding-right: 25px;
  color: var(--clr-theme-primary);
}
#contact-form__name:focus, #contact-form__email:focus, #contact-form__number:focus, #contact-form__subject:focus, #contact-form__message:focus {
  border-color: var(--clr-theme-primary);
}
#contact-form__message {
  resize: none;
}

.contact-section-form-container {
  padding: 60px 0px 60px 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .contact-section-form-container {
    padding: 60px 30px 60px 30px;
  }
}
.contact-section-form-container h2 {
  margin-bottom: 48px;
}

.conatct-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 480px) and (max-width:575px), only screen and (max-width:479px) {
  .conatct-img {
    position: static;
    translate: 0;
  }
}/*# sourceMappingURL=main.css.map */















/*---------- custom ---------------*/

.hero-area h1{
	font-size: 32px;
}


.hero-area h4{
	font-size: 36px;
	line-height: 54px;
	margin-top: 40px;
	margin-bottom: 70px;
}

.hero-area h5{
	margin-top: 20px;
}


a.ba-submit-btn {
	font-size: 20px;
	padding: 10px 36px;
	height: auto;
	letter-spacing: 1px;
}


.feature-list-area .ba-feature-list-wrapper .ba-feature-list-box ul{
	display: flex;
}


.feature-list-area .ba-feature-list-wrapper .ba-feature-list-box ul a:hover li span{
	color: #5F5555;
}

.fw-100{
	font-weight: 100;
}
.fw-200{
	font-weight: 200;
}
.fw-300{
	font-weight: 300;
}
.fw-400{
	font-weight: 400;
}
.fw-500{
	font-weight: 500;
}
.fw-600{
	font-weight: 600;
}
.fw-700{
	font-weight: 700;
}
.fw-800{
	font-weight: 800;
}
.fw-900{
	font-weight: 900;
}


.ba-section-title{
	font-size: 34px;
}

.service-area h4{
	font-size: 26px;
	line-height: 36px;
}

.service-area h3{
	font-size: 22px;
	line-height: 36px;
}

.serv-concept .container{
	text-align: center;
}



.ba-header-nav-inner {
    background: #f5f5f5;
}

.ba-header-nav-menu ul li a {
    color: #483b7b;
}

.bg-theme {
    background-color: #ec6675;
}

.ba-header-nav-menu ul li:hover > a {
    color: #ec6675;
}

.ba-submit-btn {
    color: #483b7b;
    background-color: #f5f5f5;
	border: 3px solid #ec6675;
	border-radius: 40px;
}

.ba-submit-btn:hover {
    color: #f5f5f5;
    background-color: #483b7b;
	border: 3px solid #483b7b;
	border-radius: 40px;
}




@media (max-width:480px){
	.list-contents{
		display: none;
	}
	
	.column-reverse{
		display: flex;
    	flex-direction: column-reverse;
	}

}


@media (max-width:480px){
	.mb-menu-sec{
		display: block;
		padding-top: 20px;
		padding-bottom: 60px;
	}
	
	.mb-menu-sec .tagcloud{
		text-align: center;
	}

	.mb-menu-sec .mb-menu{
		font-size: 20px;
		margin-bottom: 0;
	}
	
	.mb-menu-sec .tagcloud a {
		margin: 6px 0;
		padding: 14px 18px;
	}
	
	.mb-menu-sec .mb-main-menu{
		display: block;
		width: 100%;
		padding-left: 4px;
		padding-right: 4px;
	}
	
	.col-xs-12 {
		max-width: 100%;
		width: 100%;
		position: relative;
		display: flex;
		
	}
	
	.col-xs-6 {
	    max-width: 50%;
		width: 50%;
		position: relative;
		flex-shrink: 1;
		padding-left: 4px;
		padding-right: 4px;
		
	}
	
	.mb-menu-sec .tagcloud a {
		width: 100%;
	}
	
}


@media (min-width:481px){
	.mb-menu-sec{
		display: none;
	}
	
}



.index-cta .ba-cta-content-center{
	text-align: center;
}

@media (max-width:480px){
	.index-cta{
		display: block;
	}
}

@media (min-width:481px){
	.index-cta{
		display: none;
	}
}


.index-fix.column-reverse{
	display: flex;
}






.ser-pg-banner .ba-video-content-title{
	font-size: 30px;
	line-height: 44px;
	padding-bottom: 30px;
}

.ser-pg-banner a.ba-submit-btn {
    font-size: 20px;
    padding: 15px 40px;
    line-height: 34px;
	letter-spacing: 0;
}

.ser-pg-banner .content .ba-hero-subtitle{
	display: inline-flex;
	margin-bottom: 0;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.ser-pg-banner.video-area{
	margin-top: 0;
}

.ser-pg-sersec h3{
	font-size: 24px;
}


.ba-service-box-3{
	margin-bottom: 24px;
}


.service-area .service-part.row{
	padding-bottom: 80px;
}


.mb-menu-service-sec .mb-menu a{
	display: flex;
    flex-direction: column;
	margin: 6px 0;
    padding: 14px 4px;
	border: none;
}

.mb-menu-service-sec .mb-menu a i{
	padding-bottom: 10px;
}

.mb-menu-service-sec .mb-menu{
	font-size: 17px;
}

.mb-menu-service-sec .col-xs-12{
	justify-content: center;
}

.mb-menu-service-sec .tagcloud {
    padding-left: 6px;
    padding-right: 6px;
}

.mb-menu-service-sec {
	padding-top: 6px;
    padding-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px){
	.ser-pg-banner br{
		display: block;
	}
}






@media (max-width: 767px){
	.ser-pg-sersec .ba-like-us-content br {
		display: block;
	}
}



.serv-contents .ba-service-box-2 .ba-service-box-2-bg-img {
    opacity: 1;
    visibility: visible;
}

.serv-contents .ba-service-box-2 .ba-service-box-2-title a {
    color: var(--clr-common-white);
}

.serv-contents .ba-service-box-2 .ba-service-box-2-title a p {
    color: var(--clr-common-white);
}







.index-about .ba-about-left-wrapper{
	text-align: right;
	padding-right: 20px;
}

.index-about .ba-about-right-wrapper {
	padding-right: 24%;
	padding-top: 40px;
}




.index-about .index-fix .ba-about-left-wrapper{
	text-align: left;
	padding-left: 20px;
}

.index-about .index-fix .ba-about-right-wrapper {
	padding-left: 24%;
	padding-right: 0;
	padding-top: 60px;
}

.index-about .index-fix{
	padding-top: 90px;
}

#index-1-faq-section .faq-img{
	text-align: center;
}

.step-sec .step-img img{
	width: 1100px;
	height: auto;
}

.step-sec .step-img{
	text-align: center;
}

.step-sec .ba-section-title{
	text-align: center;
}

.step-sec .step-word{
	text-align: center;
}

.step-sec .row{
	padding-left: 10%;
    padding-right: 10%;
}

.step-sec .step-word .title{
	font-size: 24px;
}

.step-sec .step-word .content{
	padding-left: 20px;
	padding-right: 20px;	
}


.ba-header-nav-inner {
    margin-top: 0;
}




.header-area .container.style-2 {
		max-width: 100%;
		padding: 0 0;
	}


.header-area .ba-header-nav-menu .menu-btn{
	display: inline-block;
	padding-left: 80px;
}


.header-area .ba-header-nav-menu a.ba-submit-btn {
    font-size: 18px;
    padding: 4px 24px;
    color: #ed6674;
	border: 2px solid #ec6675;
	line-height: 38px;
}

.has-hero-overlay::after {
    background-color: #ffd0b7;
}


.ba-hero-subtitle {
    color: #483B7B;
}

.ba-hero-title {
    color: #483B7B;
}

.hero-area .hero-content-space-top{
	padding-left: 120px;
}


.hero-area h1 {
    font-size: 26px;
    font-weight: 500;
	margin-bottom: 8px;
}

.hero-area h4 {
    font-size: 38px;
    line-height: 54px;
    margin-top: 4px;
}

.hero-area .ba-hero-subtitle.extra-wd {
    font-size: 18px;
}


.ba-feature-list-box .content ul li.active span {
    color: #483B7B;
}


.feature-list-area .ba-feature-list-wrapper .ba-feature-list-box ul a:hover li span {
    color: #ec6675;
}

h1, h2, h3, h4, h5, h6 {
    color: #483b7b;
		}


.ba-feature-list-box .content::before{
	display: none;
}

.ba-feature-list-box .content {
    padding-left: 0;
    margin-left: 0;
	width: 100%;
}

.ba-feature-list-box .content .ba-feature-list-title {
	text-align: center;
    padding-bottom: 32px;
	padding-top: 18px;
    margin-bottom: 0;
}

/*
.ba-feature-list-wrapper {
    padding: 20px 92px;
    border-radius: 140px;
	background-color: #f0e5db;
}
*/


.ba-feature-list-box .content .ba-feature-list-title {
    color: #ec6675;
    font-weight: 400;
}

.ba-feature-list-box .content ul li.active span {
    color: #483B7B;
    font-weight: 500;
}

.hero-height {
    min-height: 880px;
}

/*
.ba-feature-list-wrapper {
    padding: 80px 92px 100px 92px;
    border-radius: 0;
    background: linear-gradient(180deg, #e5cdc1, white);
	box-shadow: none;
}

.list-contents .container {
    max-width: 100%;
    padding: 0 0;
}
*/

.ba-footer-area.ba-footer-overlay::after {
    background-color: #f0e5db;
}


.ba-footer-widget-title {
    color: #483b7b;
}

.ba-footer-area .white-text {
    color: #483b7b;
}


.ba-footer-widget-working-hours-list ul li {
    border-bottom: 1px solid #483b7b;
}


.ba-footer-widget-working-hours-list ul li .label, .ba-footer-widget-working-hours-list ul li .value {
    color: #483b7b;
}

.ba-footer-widget ul li a {
    color: #483b7b;
}

.ba-footer-copyright-list ul li a {
    color: #483b7b;
}

.ba-footer-area .ba-footer-cta-border-bottom.pb-100 {
    padding-bottom: 44px;
}

.ba-footer-area .container{
	text-align: center;
}

.ba-footer-area .ba-footer-widget{
	padding-left: 60px;
	padding-right: 60px;
}

.ba-footer-area  .container {
    padding: 0 70px;
}


.serv-group .ba-service-box-2-title{
	font-size: 22px;
	text-align: center;
}

.serv-group .ba-service-box-2 .content p {
    text-align: center;
}

.ba-header-logo img {
    max-width: 200px;
}



.serv-concept .row p span{
	color: #f74649;
}

.btn-index-1 {
    color: #483a7b;
    border-color: #483a7b;
}


@media only screen and (max-width: 479px){
	.ba-submit-btn {
		font-size: 16px;
		height: 48px;
		line-height: 36px;
		}
}



#sidebar-nav-2-control .row .col-7{
	padding-left: 0;
	padding-right: 0;
}


#ba-sidebar-nav.nav {
    flex-wrap: nowrap;
}

#nav-tabContent .row .col-7{
	padding-left: 0;
	padding-right: 0;
}


#sidebar-nav-1-control a.ba-submit-btn {
    padding: 4px 18px;
    margin-left: 6px;
    margin-bottom: 10px;
    font-size: 18px;
}

@media (max-width:480px){
	.hero-area{
		background: url("../img/hero/hero-img-mb.jpg");
		background-position: -39% 24%;
	}
	
	.hero-area .hero-content-space-top {
		padding-left: 0;
	}
	
	.hero-content-space-top {
		margin-top: 3px;
	}
	
	.hero-area h4 {
		font-size: 28px;
		line-height: 36px;
		margin-top: 4px;
		margin-bottom: 20px;
	}
	
	.hero-height {
		min-height: 370px;
	}
	
	.has-hero-overlay::after {
    	opacity: 0.8;
	}
	
	.serv-concept .pb-55 {
		padding-bottom: 10px;
	}
	
	.service-area {
		padding-top: 60px;
		padding-bottom: 45px;
	}
	
	.ba-section-title {
		font-size: 28px;
	}
	
	.serv-concept.service-area h4 {
		font-size: 20px;
		line-height: 30px;
	}

	
}


.tagcloud a {
    border: 1px solid #eeeeee;
}


@media (max-width:480px){
	.serv-contents .ba-section-title-wrapper.pb-55 {
		padding-bottom: 20px;
	}
	
	.serv-contents.service-area {
		padding-top: 100px;
		padding-bottom: 80px;
	}
	
	.index-about .ba-about-left-wrapper {
		text-align: center;
		padding-right: 0;
	}
	
	.ba-about-left-wrapper {
		max-width: 100%;
	}
	
	.index-about .ba-about-right-wrapper {
		padding-right: 0;
		padding-top: 40px;
	}
	
	.index-about .index-fix .ba-about-left-wrapper {
		text-align: center;
		padding-left: 0;
	}
	
	.index-about .index-fix .ba-about-right-wrapper {
		padding-left: 0;
		padding-right: 0;
		padding-top: 40px;
	}
	
	.index-about .index-fix {
		padding-top: 50px;
	}
	
	.index-about{
		padding-top: 100px;
		padding-bottom: 80px;
	}
	
}






.mb-on{
	display: none;
}

@media(max-width:480px){
	.mb-on{
		display: block;
	}
}


@media (min-width:1201px){
	.pc-on{
		display: block !important;
	}
}


@media (max-width:480px){
	.pc-on{
		display: none;
	}
}




.pad-on{
	display: none;
}

@media (min-width:481px) and (max-width:768px){
	.pad-on{
		display: block;
	}
}




.ipad-on{
	display: none;
}

@media (min-width:769px) and (max-width:1200px){
	.ipad-on{
		display: block;
	}
}
















@media (max-width:480px){
	.step-sec.mb-on .step-word .step-img{
		width: 100%;
		height: auto;
		padding-bottom: 10px;
	}

	.step-sec.mb-on .step-word .content {
		text-align: center;
		padding-left: 10px;
		padding-right: 0;
	}

	.step-sec.mb-on .step-img img {
		width: auto;
		height: auto;
	}



	.step-sec.mb-on .step-word {
		padding-top: 10px;
		padding-bottom: 20px;
	}


	.step-sec.mb-on{
		padding-top: 80px;
		padding-bottom: 70px;
	}
	
	

}


@media (max-width:480px){
	.ba-footer-area .ba-footer-widget {
		padding-left: 0;
		padding-right: 0;
	}
	
	.ba-footer-area .container {
		padding: 0 40px;
	}
	
	.ba-footer-widget-title {
		margin-bottom: 20px;
		margin-top: 20px;
	}
	
	.ba-footer-area .ba-footer-cta-border-bottom.pb-100 {
		padding-bottom: 0;
		padding-top: 70px;
	}
	
	.ba-footer-copyright-text {
		margin-bottom: 8px;
		line-height: 20px;
	}
	
	.ba-footer-copyright-wrapper{
		line-height: 24px;
		padding-bottom: 0px;
		padding-top: 12px;
	}
	
	.ba-footer-copyright-list ul li a {
		font-size: 15px;
		margin-left: 6px;
		margin-right: 6px;
	}
	
	.ba-footer-copyright-wrapper .row{
		display: flex;
    	flex-direction: column-reverse;
	}
	
	.ba-footer-copyright-list{
		padding-bottom: 14px;
	}
	
	.ba-footer-copyright-wrapper .ba-footer-copyright-text{
		color: #515151;
	}


}



.ba-service-box-2-bg-img img {
    filter: brightness(0.35);
}





@media (min-width: 480px) and (max-width:768px){
	.hero-area {
		background: url(../img/hero/hero-img-mb.jpg);
		background-position: -100% 8%;
	}
	
	.hero-area .hero-content-space-top {
		padding-left: 55px;
	}
	
	.service-area.serv-concept{
		padding-top: 70px;
		padding-bottom: 50px;
	}
	
	.service-area.serv-concept .ba-section-title-wrapper.pb-55 {
		padding-bottom: 26px;
	}
	
	.service-area.serv-concept .ba-section-title-wrapper .ba-section-title {
		border-bottom: 2px solid #483a7b;
		display: inline-block;
		padding-bottom: 3px;
	}
	
	.index-about .ba-about-left-wrapper {
		text-align: center;
		padding-right: 0;
	}
	
	.index-about .ba-about-right-wrapper {
		padding-right: 12%;
		padding-left: 12%;
		padding-top: 40px;
		text-align: center;
	}
	
	.index-about .index-fix .ba-about-left-wrapper {
		text-align: center;
		padding-left: 0;
	}
	
	.index-about .index-fix .ba-about-right-wrapper {
		padding-left: 12%;
		padding-right: 12%;
		padding-top: 60px;
	}
	
	.index-about .index-fix.column-reverse {
		display: flex;
		flex-direction: column-reverse;
	}
	
	.service-area.serv-group .ba-section-title-wrapper.pb-55 {
		padding-bottom: 16px;
	}
	
	.serv-contents .ba-section-title-wrapper.pb-55{
		padding-bottom: 16px;
	}
	
	.serv-contents{
		padding-top: 110px;
    	padding-bottom: 70px;
	}
	
	.index-about{
		padding-top: 110px;
    	padding-bottom: 70px;
	}
	
	.step-sec{
		padding-top: 110px;
    	padding-bottom: 70px;
	}
	
	#index-1-faq-section .ba-section-title-wrapper{
		text-align: center;
	}
	
	
	#index-1-faq-section .faq-img img{
		width: 80%;
	}
	
	.ba-footer-area .ba-footer-widget {
    	padding-left: 6px;
		padding-right: 6px;
	}
	
	.ba-footer-area .container {
		padding: 0 10px;
	}
	
	.ba-footer-widget-working-hours-list ul li .value {
		float: inherit;
	}
	
	.ba-footer-widget-working-hours-list ul li .label{
		float: inherit;
	}
	
	.ba-footer-area .ba-footer-cta-border-bottom.pb-100 {
		padding-bottom: 0;
	}
	
	.ba-footer-copyright-list ul {
		text-align: center;
	}

}



@media (min-width:769px) and (max-width:1200px){
	.index-about .ba-about-right-wrapper {
		padding-right: 0;
		padding-top: 0;
	}
	
	.index-about .index-fix .ba-about-right-wrapper {
		padding-left: 0;
		padding-right: 0;
		padding-top: 0;
	}
	
	.about-area.index-about{
		padding-left: 10%;
		padding-right: 9%;
	}
	
	.step-sec .row {
		padding-left: 0%;
		padding-right: 0%;
	}
	
	.about-area.step-sec{
		padding-left: 6%;
		padding-right: 6%;
	}
	
	.ba-footer-area .ba-footer-widget {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.ba-footer-area .container {
		padding: 0 42px;
	}
	
	.ba-footer-area .ba-footer-cta-border-bottom.pb-100 {
		padding-bottom: 0px;
	}
	
	.ba-footer-copyright-list ul li a {
    	margin-left: 10px;
	}
	
	.ba-footer-area .ba-footer-copyright-wrapper .container {
		padding: 0 23px;
	}
	
	.ba-footer-copyright-list ul {
		text-align: left;
	}
	
	.header-area .ba-header-nav-menu .menu-btn {
		padding-left: 20px;
	}


}


.ba-blog-area .row.pb-60 {
    padding-bottom: 10px;
}


@media (min-width:769px) and (max-width:1200px){
	.ba-blog-area .iframe-control{
		height: 441px !important;
	}
	
	.ba-blog-area .iframe-control iframe{
		    margin-top: -2355px !important;
    		height: 3915px !important;
	}
}


@media (min-width:481px) and (max-width:768px){
	.ba-blog-area .iframe-control{
		height: 580px !important;
	}
	
	.ba-blog-area .iframe-control iframe{
		    margin-top: -2927px !important;
    		height: 3915px !important;
	}
}


@media (max-width:480px){
	.ba-blog-area .iframe-control{
		height: 630px !important;
	}
	
	.ba-blog-area .iframe-control iframe{
		margin-top: -3150px !important;
    	height: 3915px !important;
	}
}


#index-1-faq-section .ba-faq-accordion .accordion-button.collapsed{
	text-align: left;
}


.charge-pg-bn .ba-video-content-title{
	font-weight: 400;
}





/*------------mb-bottom-cta--------------*/

.footer-mobile-cta{
        display: none;
    }

@media (max-width:480px){
    .footer-mobile-cta{
        font-family: Arial,Helvetica,sans-serif;
        display: block !important;
        width: 100%;
        box-sizing: border-box;
        font-size: 20px;
    }
    #LRdiv0{
        display: none !important;
    }
	
	.footer-mobile-cta a{
		text-decoration: none;
	}
}

#footer-cta-call{
    z-index: 999;
    position: fixed;
    bottom: 15px;
    float: left;
    height: 100px;
    width: 30%;
    background: #a72a2a;
    text-align: center;
    padding-top: 15px;
    margin-left: 2.5%;
    border-radius: 10px;
}

#footer-cta-line{
    z-index: 999;
    position: fixed;
    bottom: 15px;
    float: left;
    height: 100px;
    width: 30%;
    background: #1aa51a;
    text-align: center;
    padding-top: 15px;
    margin-left: 35%;
    border-radius: 10px;
}

#footer-cta-service{
    z-index: 999;
    position: fixed;
    bottom: 15px;
    float: left;
    height: 100px;
    width: 30%;
    background: #cea973;
    text-align: center;
    padding-top: 15px;
    margin-left: 67.5%;
    border-radius: 10px;
}


/*------------mb-bottom-cta--------------*/




@media (max-width:480px){
		.progress-wrap {
			bottom: 125px;
	}
}




.ba-service-box-2 {
    padding: 44px 60px;
	text-align: center;
	margin-bottom: 24px;

}

.ba-service-box-2 .content p {
    margin-bottom: 4px;
}

.ba-service-box-2-title a {
	font-size: 22px;	
}


.charge-main-word .ba-section-title{
	font-size: 26px;
	padding-bottom: 10px;
}


.charge-main-word .serv-concept p span{
	font-weight: 800;
	color: #4f4f4f !important;
}
	




.charge-main-word .serv-concept .mark-red{
	    color: #f74649 !important;
}


.charge-main-word .serv-concept{
	padding-left: 20%;
	padding-right: 20%;
}


.charge-main-word .serv-concept p{
	padding-bottom: 50px;
}


.video-area.bg-default{
	width: 100%;
    height: auto;
}



.price-a-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-1.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.w01{
	background-color: #483b7b !important;
	width: 20%;
	color: #fff;
	text-align: center;
	vertical-align: middle;
}

.normal-w02{
	background-color: #f0e5db !important;
	padding-left: 14px !important;
}

.brand-area .price-content p{
	color: #9399a9;
}

table tfoot tr p{
	color: #656a79 !important;
}

tfoot tr th{
	padding-top: 50px !important;
	padding-left: 40px !important;
	padding-right: 40px !important;
	padding-bottom: 30px !important;
	text-align: left;
}


.price-content.ba-brand-active-wrapper {
    padding: 80px 110px;
}

.price-content .ba-section-title {
    font-size: 26px;
}

.price-content table {
	margin-top: 40px;
}


.price-b-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-2.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-c-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-3.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-d-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-4.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-e-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-5.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-f-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-6.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-g-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-7.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-h-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-8.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-i-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-9.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-j-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-10.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-k-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-11.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-l-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-12.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.price-m-sec .video-area.bg-default{
	background: url("../img/bg/charge-img-c-2-13.jpg");
	background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}


.video-area{
	margin-top: 120px;
}


.brand-area-title  .white-text {
	margin-bottom: 0;
	font-size: 20px;
}

.price-content.ba-brand-active-wrapper.has-space-top-reverce {
    margin-top: 0;
	display: flex;
	border-radius: 21px 21px 0 0;
	
}


.brand-area-title .price-content.ba-brand-active-wrapper {
    padding: 12px 0 12px 0;
	background: #483a7b;
}

.brand-area-title .container {
    max-width: 240px;
	position: relative;
    left: 34%;
	
}

.brand-area-title{
	margin-top: -4%;
}


.brand-area .price-content p span{
	color: #4f4f4f;
}

.brand-area .price-content p .mark-red{
    color: #f74649;
	font-weight: 500;
}


.price-sec-end .price-content{
	background: none;
	box-shadow: none;
}

.price-sec-end{
	margin-top: 80px;
}

.charge-pg-bn.video-area{
	margin-top: 0;
}


.charge-menu{
	background: linear-gradient(180deg, transparent, transparent 30%, #f0e5db 30.01% ,#f0e5db 100%);
}

.ba-sidebar-area {
    z-index: 11;
}

@media (max-width:480px){
	.charge-main-word .serv-concept {
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.brand-area-title .container {
		left: 0%;
	}
	
	.price-content.ba-brand-active-wrapper {
		padding: 46px 22px;
	}
	
	.video-area {
   		margin-top: 25px;
	}
	
	.brand-area-title {
		margin-top: -40.5%;
	}
	
	.charge-pg-bn .content{
		display: flex;
	}
	
	.charge-pg-bn .ba-hero-subtitle{
		font-size: 18px;
		padding-top: 30px;
	}
	
	.w01 {
    	width: 35%;
	}
}


@media (max-width:480px){
	.service-area.serv-contents .ba-service-box-2 {
    	padding: 30px 12px;
		margin-bottom: 4px;
	}
	
	.index-cta{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	#index-1-faq-section{
		padding-bottom: 30px;
	}
	
	.our-service.service-area .ba-service-box-2 {
    	padding: 30px 12px;
		margin-bottom: 4px;
	}
	
	.charge-pg-bn.ser-pg-banner a.ba-submit-btn {
		padding: 15px 24px;
	}
	
}


@media (min-width:481px) and (max-width:768px){
	.charge-main-word .serv-concept {
		padding-left: 10%;
		padding-right: 10%;
	}
	
	.service-area.serv-concept {
		padding-top: 100px;
		padding-bottom: 16px;
	}
	
	.brand-area-title .container {
		left: 20%;
	}
	
	.price-content.ba-brand-active-wrapper {
		padding: 50px 50px 70px 50px;
	}
	
	.w01 {
    	width: 32%;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	.price-content .ba-section-title {
		margin-top: 9px;
	}
	
	.price-sec-end {
		margin-top: 40px;
	}
		
}

	
@media (min-width:769px) and (max-width:1200px){
	.charge-menu .content ul li{
		margin-left: 8px;
		margin-right: 8px;
	}
	
	
	.charge-menu .ba-feature-list-wrapper {
		padding: 45px 45px;
	}
	
	.charge-main-word .serv-concept {
		padding-left: 10%;
		padding-right: 10%;
	}
	
	
	.brand-area-title .container {
		left: 20%;
	}
	
	.w01 {
    	width: 27%;
	}
	
	.price-sec-end {
		margin-top: 40px;
	}

	
}	


	
	
.service-sec-a .about-content{
	text-align: center;
}	
	
	
.service-sec-a .about-content .img-null{
	width: 500px;
	height: auto;
    float: right;
}
	
	
.service-sec-a .about-statics {
    display: block;
	margin-bottom: 0;
}
	
	
.service-sec-a .about-statics .single-statics {
    padding-bottom: 30px;
}	
	

.service-sec-a .highlighted{
	padding-top: 60px;
	padding-bottom: 60px;
}

	
	
.service-pg-cta .ba-movie-title {
    font-size: 34px;
}


.service-pg-cta .fix-left{
	padding-left: 12%;
	padding-top: 5%;
}

.service-pg-cta img{
	width:500px;
}

.service-pg-cta .fix-right{
	padding-right: 12%;
}

.service-pg-cta a.ba-submit-btn {
    font-size: 20px;
    padding: 4px 24px;
}


.service-pg-cta .ba-submit-btn {
    color: #f5f5f5;
    background-color: #483b7b;
    border: 3px solid #483b7b;
    border-radius: 40px;
}


.service-pg-cta .ba-submit-btn:hover {
    color: #483b7b;
    background-color: #f5f5f5;
    border: 3px solid #ec6675;
    border-radius: 40px;
}

.service-pg-cta .ba-movie-content p {
    margin-bottom: 20px;
    font-size: 19px;
    color: #ed6674;
    font-weight: 500;
}


.servic-pg-main .row{
	display: block;
	text-align: center;
}


.servic-pg-main .row .ba-feature-list-vertical-item p{
	text-align: left;
	display: block;
}

.servic-pg-main .ba-feature-list-vertical-content{
	padding-left: 10%;
	padding-right: 10%;
}

.servic-pg-main .ba-feature-list-vertical-content .row p span {
    color: #f74649;
}



.case-sec .ba-pricing-box:hover .ba-pricing-box-list-wrap{
    background-color: transparent;
}


.service-tag .ba-blog-widget{
	text-align: center;
}



.case-sec .ba-pricing-box p{
	    color: #483b7b;
}

.case-sec .ba-pricing-box p:hover{
	    color: #ed6674;
}


@media (max-width:480px){
	.service-sec-a .about-content .img-null {
		margin-left: 0;
	}
}


@media (max-width:480px){	
	.service-sec-a .highlighted {
		padding-top: 0;
		padding-bottom: 0px;
	}
	
	.service-sec-a .ba-section-title {
		font-size: 26px;
	}
	
	.service-sec-a .ba-section-subtitle {
		font-size: 20px;
	}
	
	.service-sec-a .about-statics .single-statics {
		padding-bottom: 12px;
	}
	
	.service-sec-a .about-statics .single-statics {
		gap: inherit;
	}

}


@media(min-width:481px){
	#service-page-sec-a{
		display: block;
	}
	
	#service-page-sec-b{
		display: none;
	}
}

@media(max-width:480px){
	#service-page-sec-a{
		display: none;
	}
	
	#service-page-sec-b{
		display: block;
	}
	
	#service-page-sec-b .about-statics .single-statics__label {
    	font-size: 18px;
	}
	
	#service-page-sec-b.pt-120{
		padding-top: 100px
	}
	
	#service-page-sec-b.pb-120{
		padding-bottom: 60px
	}
	
	.service-pg-cta .fix-left {
		padding-left: 16px;
		padding-right: 16px;
		padding-bottom: 10px;
	}
	
	.service-pg-cta .ba-movie-title {
		font-size: 27px;
	}
	
	.service-pg-cta{
		text-align: center;
	}
	
	.service-pg-cta .ba-movie-right-img img{
		display: none;
	}
	
	.servic-pg-main .pic-gp.pb-80{
		padding-bottom: 40px;
	}
	
	.servic-pg-main .ba-section-title {
		font-size: 26px;
		padding-bottom: 20px;
	}
	
	.case-sec .case-group{
		text-align: left;
	}
	
	.case-sec .ba-pricing-box p {
		padding-bottom: 15px;
		line-height: 26px;
	}
	
	.case-sec .row.pb-60{
		padding-bottom: 0;
	}
	
	.service-tag .row.pt-80{
		padding-top: 40px;
	}

	.service-tag .row.pb-90{
		padding-bottom: 20px;
	}
	
}


.horrible-lover-sec .ba-service-box .icon i{
	font-style: normal;
}

.horrible-lover-sec .ba-service-box .icon{
	margin-bottom: 0;
}


.horrible-lover-sec .row.fix{
	text-align: center;
}

.horrible-lover-sec .ba-service-box.ba-service-box-has-padding {
    padding-right: 30px;
    padding-left: 30px;
}

.horrible-lover-sec .container{
	padding-left: 160px;
	padding-right: 160px;
}

.horrible-lover-sec.service-area h4 {
    font-size: 24px;
    line-height: 26px;
    padding-top: 10px;
}

@media (min-width: 769px){
	
	.case-sec .container {
    	max-width: 920px;
	}

}


.divorce04-sec .fix-main-wd{
	font-weight: 800;
	color: #ed6674;
}

.bold{
	font-weight: 800;
	color: #595959 !important;
}



@media (max-width:480px){
	.price-a-sec .video-area.bg-default,
	.price-b-sec .video-area.bg-default,
	.price-c-sec .video-area.bg-default,
	.price-d-sec .video-area.bg-default,
	.price-e-sec .video-area.bg-default,
	.price-f-sec .video-area.bg-default,
	.price-g-sec .video-area.bg-default,
	.price-h-sec .video-area.bg-default,
	.price-i-sec .video-area.bg-default,
	.price-j-sec .video-area.bg-default,
	.price-k-sec .video-area.bg-default,
	.price-l-sec .video-area.bg-default,
	.price-m-sec .video-area.bg-default{
		background-size: 85%;
	}
	
	.price-content .ba-section-title {
		font-size: 22px;
	}
	

}

.price-content .fix-wd{
		color: #fff;
		font-size: 24px;
	}

@media (max-width:480px){
	.charge-pg-bn.pt-140 {
		padding-top: 70px;
	}
	
	.charge-pg-bn.pb-215 {
		padding-bottom: 56px;
	}
	
}


.charge-pg-bn .ba-hero-subtitle{
	color: #ec6675;
}



@media (min-width:481px) and (max-width:768px){
	
	.charge-pg-bn.pb-215 {
		padding-bottom: 140px;
	}
	
}


@media (min-width:481px) and (max-width:768px){
	.price-a-sec .video-area.bg-default,
	.price-b-sec .video-area.bg-default,
	.price-c-sec .video-area.bg-default,
	.price-d-sec .video-area.bg-default,
	.price-e-sec .video-area.bg-default,
	.price-f-sec .video-area.bg-default,
	.price-g-sec .video-area.bg-default,
	.price-h-sec .video-area.bg-default,
	.price-i-sec .video-area.bg-default,
	.price-j-sec .video-area.bg-default,
	.price-k-sec .video-area.bg-default,
	.price-l-sec .video-area.bg-default,
	.price-m-sec .video-area.bg-default{
		background-size: 85%;
	}
	
	.brand-area-title {
		margin-top: -10%;
	}

}


@media (min-width:769px) and (max-width:1200px){
	.price-a-sec .video-area.bg-default,
	.price-b-sec .video-area.bg-default,
	.price-c-sec .video-area.bg-default,
	.price-d-sec .video-area.bg-default,
	.price-e-sec .video-area.bg-default,
	.price-f-sec .video-area.bg-default,
	.price-g-sec .video-area.bg-default,
	.price-h-sec .video-area.bg-default,
	.price-i-sec .video-area.bg-default,
	.price-j-sec .video-area.bg-default,
	.price-k-sec .video-area.bg-default,
	.price-l-sec .video-area.bg-default,
	.price-m-sec .video-area.bg-default{
		background-size: 85%;
	}
	
	.brand-area-title {
		margin-top: -10%;
	}

}


@media (min-width:1201px){
	.brand-area-title .container {
		left: 20%;
	}
}



.service-about .ba-about-banner-space-right{
	padding-left: 30px;
}






.our-service .service-part .ba-service-box-2 .ba-service-box-2-bg-img {
    opacity: 1;
    visibility: visible;
}

.our-service .service-part .ba-service-box-2 .ba-service-box-2-title a {
    color: var(--clr-common-white);
}

.our-service .service-part .ba-service-box-2 .ba-service-box-2-title a p {
    color: var(--clr-common-white);
}



.ser-pg-banner .ba-hero-subtitle{
	color: #ec6675;
}


.our-service .ba-section-title-wrapper {
	text-align: center;
	padding-bottom: 30px;
	padding-top: 60px;
	padding-left: 20%;
	padding-right: 20%;
}


.our-service .row{
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
}




.serv-all .ba-like-us-section-img-50 {
    max-width: 60%;
}

.serv-all {
	margin-left: 70px;
	margin-right: 70px;
	padding-bottom: 40px;
	padding-top: 30px;
}


.serv-all .ba-like-list-wrapper.pr-185{
	padding-right: 0px;
}



.serv-all .content .white-text {
    color: #d64251;
}

.serv-all .content .soft-white-text {
    color: #ed6674;
}


.serv-all .pl-50{
	padding-left: 40px;
}


.serv-all-faq .ba-section-title-wrapper-top.pb-40{
	padding-bottom: 0;
}


.serv-all-faq .ba-section-title-wrapper.pb-25{
	padding-bottom: 0;
}

.serv-all-faq .ba-section-title{
	padding-bottom: 15px;
}

.our-service .ba-section-title-wrapper {
    padding-bottom: 10px;
}

.our-service .icon-extra{
	font-size: 14px;
	color: #ed6674;
}


.our-service .ba-section-title-wrapper {
    padding-top: 30px;
}







@media (max-width:480px){
	.ser-pg-banner{
		padding-top: 78px;
		padding-bottom: 60px;
	}
	
	.ser-pg-banner a.ba-submit-btn {
    padding: 15px 30px;
	}
	
	.ser-pg-banner .content{
		display: flex;
	}
	
	.ser-pg-banner .ba-hero-subtitle{
		font-size: 18px;
		padding-top: 27px !important;
	}
	
	.serv-all-faq .ba-section-title {
		font-size: 24px;
	}
	
	.serv-all .ba-like-us-section-img-50 img{
		background:url("../img/bg/ser-all-c-01-mb.jpg") !important;	
		filter: brightness(1);
		height: 190px;
	}
	
	.serv-all .ba-like-us-section-img-50{
		position: relative !important;
		max-width: 100% !important;
		padding-bottom: 40px;
	}
	
	.serv-all{
		margin-left: 20px;
    	margin-right: 20px;
    	padding-bottom: 40px;
    	padding-top: 30px;
	}
	
	.serv-all .pl-50 {
		padding-left: 0;
	}
	
	.serv-all .wd-fix.container{
		padding-left: 2px;
		padding-right: 2px;
	}
	
	.serv-all .content .white-text {
		color: #d64251;
	}

	.serv-all .content .soft-white-text {
		color: #ed6674;
	}
	
	.our-service .ba-section-title-wrapper {
		padding-left: 4%;
		padding-right: 4%;
	}
	
	.our-service .ba-section-title-wrapper {
		padding-bottom: 0;
	}
	
	.our-service .service-part.row {
		padding-bottom: 18px;
	}
	
	.service-about .ba-about-banner-space-right {
		padding-left: 0;
	}
	
	.service-about .ba-section-title-wrapper.pb-25{
		padding-bottom: 7px;
	}
	
	.service-about .ba-about-right-content .text .title{
		text-align: center;
	}
	
	.service-about  .ba-section-title {
		font-size: 24px;
	}
	
	.service-about{
		padding-left: 2%;
		padding-right: 2%;
	}
	
	.service-about {
		padding-top: 80px;
		padding-bottom: 20px;
	}

}





@media (min-width:481px) and (max-width:768px){
	.ser-pg-banner{
		padding-top: 120px;
		padding-bottom: 120px;
	}
	
	.serv-all-faq .ba-section-title {
		font-size: 24px;
	}
	
	.serv-all .ba-like-us-section-img-50 img{
		background:url("../img/bg/ser-all-c-01-mb.jpg") !important;	
		filter: brightness(1);
		height: 400px;
	}
	
	.serv-all .ba-like-us-section-img-50{
		position: relative !important;
		max-width: 100% !important;
		padding-bottom: 40px;
	}
	
	.serv-all{
		margin-left: 20px;
    	margin-right: 20px;
    	padding-bottom: 40px;
    	padding-top: 30px;
	}
	
	.serv-all .pl-50 {
		padding-left: 0;
	}
	
	.serv-all .wd-fix.container{
		padding-left: 2px;
		padding-right: 2px;
	}
	
	.serv-all .content .white-text {
		color: #d64251;
	}

	.serv-all .content .soft-white-text {
		color: #ed6674;
	}
	
	
	.close-on-pad{
		display: none;
	}
	
	.serv-all .content{
		padding-left: 7%;
		padding-right: 7%;
	}
	
	.our-service .ba-section-title-wrapper {
		padding-bottom: 0;
	}
	
	.our-service .ba-section-title-wrapper {
		padding-left: 8%;
		padding-right: 8%;
	}
	
	.our-service .row .mb-30 {
		margin-bottom: 0;
	}
	
	.service-about .ba-section-title {
		font-size: 28px;
	}
	
	.service-about .ba-section-title-wrapper.pb-25{
		padding-bottom: 12px;
	}


}




@media (max-width:480px){
	.open-on-pad{
			display: none !important;
	}
}


@media (min-width:769px){
	.open-on-pad{
			display: none !important;
	}
}



@media (min-width:769px) and (max-width:1200px){
	.ser-pg-banner{
		padding-top: 120px;
		padding-bottom: 96px;
	}
	
	.serv-all-faq .ba-section-title {
		font-size: 24px;
	}
	
	.serv-all .ba-like-us-section-img-50 img{
		filter: brightness(1);
	}
	
	.serv-all .ba-like-us-section-img-50 {
		max-width: 50%;
	}
	
	.serv-all .pl-50 {
		padding-left: 0px;
	}
	
	.serv-all .wd-fix.container .col-lg-5 {
		flex: 0 0 auto;
		width: 48% !important;
	}

	.serv-all{
		margin-left: 20px;
    	margin-right: 20px;
    	padding-bottom: 40px;
    	padding-top: 30px;
	}
	
	.serv-all {
		margin-left: 40px;
		margin-right: 40px;
	}
	
	.our-service .ba-section-title-wrapper {
		padding-left: 12%;
		padding-right: 12%;
	}
	
	.our-service .row .mb-30 {
		margin-bottom: 0;
	}
	
	.our-service.pb-120 {
		padding-bottom: 60px;
	}
	
	.service-about.pb-115 {
		padding-bottom: 45px;
	}
	
	.service-about .index-fix .ba-about-left-wrapper{
		padding-left: 0;
		padding-right: 0;
	}
	
	.service-about .ba-about-left-wrapper{
		padding-right: 0;
	}
	
	.service-about .index-fix {
		padding-top: 20px;
	}

	
	
}




@media (min-width:769px) and (max-width:1200px){
	.serv-group .row .mb-30 {
			margin-bottom: 0;
		}
	
	.serv-group .ba-section-title-wrapper.pb-55 {
		padding-bottom: 20px;
	}
	
	.charge-menu.feature-list-space-top {
    	margin-top: -49px;
		background: linear-gradient(180deg, transparent, transparent 3%, #f0e5db 97.01% ,#f0e5db 100%);
	}
}

@media(min-width:1441px){
	.serv-all .ba-like-us-section-img-50{
		text-align: right;
		padding-right: 4%;
	}
}


@media (min-width:481px) and (max-width:768px){
	.service-sec-a .about-content .img-null{
		margin-left: 0;
		width:408px;
	}
	
	.service-sec-a .about-statics .single-statics {
		gap: 10px;
	}
	
	.service-sec-a .about-statics .single-statics {
		padding-bottom: 10px;
		padding-top: 6px;
	}
	
	.service-sec-a .highlighted {
		padding-top: 16px;
		padding-bottom: 6px;
	}
	
	.service-sec-a.pb-120 {
		padding-bottom: 74px;
	}
	
	.service-pg-cta .ba-movie-right-img{
		display: none;
	}
	
	.service-pg-cta .fix-left {
		padding: 0;
		text-align: center;
	}
	
	.service-pg-cta{
		padding-top: 80px;
		padding-bottom: 70px;
	}
	
	.servic-pg-main.ba-feature-list-vertical {
    	padding-top: 120px;
	}
	
	.servic-pg-main .ba-feature-list-vertical-list-wrapper.pr-60 {
		padding-right: 0;
	}
	
	.servic-pg-main .has-ba-feature-list-title.pb-40 {
		padding-bottom: 30px;
	}
	
	
}


@media (max-width:480px){
	#service-page-sec-b.pb-120 {
		padding-bottom: 30px;
	}
	
	.servic-pg-main .ba-feature-list-vertical-content.pt-80 {
		padding-top: 60px;
	}
	
	.servic-pg-main.ba-feature-list-vertical {
    	padding-top: 90px;
	}
	
	.servic-pg-main .pic-gp.pb-80 {
		padding-bottom: 20px;
	}
	
	.service-sec-a .about-statics .single-statics {
		gap: 10px;
	}
	
	.service-sec-a .about-statics .single-statics {
		padding-bottom: 6px;
	}
	
	#service-page-sec-b .ba-section-title {
		padding-top: 20px;
	}
	
}


@media (min-width:769px) and (max-width:1200px){
	.service-sec-a .highlighted .col-lg-12 {
		display: contents;
	}
	
	.service-sec-a .about-content .img-null {
		margin-left: 0;
	}
	
	.service-sec-a .highlighted {
		padding-top: 20px;
		padding-bottom: 10px;
	}
	
	.service-sec-a.pb-120 {
		padding-bottom: 90px;
	}
	
	.service-sec-a .about-statics .single-statics {
		padding-bottom: 10px;
		padding-top: 10px;
	}
	
	.service-pg-cta .ba-movie-title {
		font-size: 28px;
	}
	
	.service-pg-cta .fix-left {
		padding-top: 2%;
	}
	
	.servic-pg-main .has-ba-feature-list-title.pb-40 {
		padding-bottom: 20px;
	}
	
	.servic-pg-main .ba-feature-list-vertical-list-wrapper.pr-60 {
		padding-right: 0;
	}

}

@media (min-width:1201px) and (max-width:1440px){
	.service-sec-a .about-statics {
		margin-left: 10%;
	}
}

@media (min-width:1441px){
	.ser-pg-banner.pb-215 {
		padding-bottom: 150px;
	}
	
	.service-sec-a .highlighted {
    	padding-top: 30px;
	}
	
	.service-sec-a.pb-120 {
		padding-bottom: 60px;
		padding-top: 160px;
	}
	
	.servic-pg-main .ba-feature-list-vertical-list-wrapper.pr-60 {
		padding-right: 0;
	}
	
	.service-sec-a .about-statics {
		margin-left: 10%;
	}
}




@media (min-width:481px){
	.service-bottom-tag.service-tag{
		display: none;
	}
}


@media (max-width:480px){
	.service-bottom-tag.service-tag{
		display: block;
	}
	
	.service-bottom-tag.service-tag .col-xs-6.mb-30 {
		margin-bottom: 14px;
	}
	
	.service-bottom-tag.service-tag .serv-contents.service-area{
		padding-top: 40px;
    	padding-bottom: 60px;
	}
}


.ba-sidebar-area.active .tab-content a.ba-submit-btn {
    font-size: 16px;
    padding: 2px 18px;
}

#sidebar-nav-1-control a.ba-submit-btn {
    padding: 2px 18px;
    margin-left: 11px;
    margin-bottom: 10px;
    font-size: 16px;
    margin-top: 4px;
}



@media (max-width:480px){
	.horrible-lover-sec .container {
		padding-left: 8px;
		padding-right: 8px;
	}
	
	.horrible-lover-sec .row .col-xl-4{
		flex: 0 0 auto;
		width: 50%;
	}
	
	.horrible-lover-sec .ba-service-box.ba-service-box-has-padding {
		padding-right: 0px;
		padding-left: 0px;
	}
	
	.horrible-lover-sec .row{
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.horrible-lover-sec.service-area .title {
		font-size: 22px;
		margin-bottom: 10px;
		padding-top: 4px;
	}
	
	.horrible-lover-sec .row.pb-60 {
		padding-bottom: 24px;
	}
	
	.horrible-lover-sec {
		padding-top: 90px;
		padding-bottom: 45px;
	}
}

@media (min-width:481px) and (max-width:768px){
	.horrible-lover-sec .container {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.horrible-lover-sec .row  .col-md-6 {
		flex: 0 0 auto;
		width: 33.333%;
	}
	
	.horrible-lover-sec .ba-service-box.ba-service-box-has-padding {
		padding-right: 0px;
		padding-left: 0px;
	}
	
	.horrible-lover-sec .row.pb-60 {
		padding-bottom: 24px;
	}
	
	.horrible-lover-sec {
		padding-top: 90px;
		padding-bottom: 45px;
	}
	
}


@media (min-width:769px) and (max-width:1200px){
	.horrible-lover-sec .container {
		padding-left: 40px;
		padding-right: 40px;
	}
	
	.horrible-lover-sec .ba-service-box.ba-service-box-has-padding {
		padding-right: 10px;
		padding-left: 10px;
	}
	
	.horrible-lover-sec .row.pb-60 {
		padding-bottom: 24px;
	}
	
	.service-pg-cta a.ba-submit-btn {
    	font-size: 18px;
	}

}



/*=================== 
track page
******************************************************* 
*************************************************************** */

#about.pb-0 {
    padding-bottom: 0!important;
}

#about .container {
    width: 1170px;
}
#about .row {
    margin-right: -15px;
    margin-left: -15px;
}
#about .msg-container {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
}

#about .msg-content {
    height: 700px;
    background-color: #ffe2e7;
}

#about .relative {
    position: relative;
}


#about .msg-container h4 {
    max-width: 100%;
    border-radius: 10px 10px 0 0;
    border-top: 1px solid #e44b67;
    font-size: 1.8em;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    background-color: #e44b67;
    margin: 0;
    padding: 10px;
}


#about .msg-receive-img {
    margin-left: 0;
    background-color: #ffe2e7;
    margin-top: 0;
}

#about .msg-receive {
    position: absolute;
    animation-iteration-count: 1;
    animation-duration: 4s;
    font-size: 1.3em;
    border-radius: 10px;
    padding: 10px;
    animation-fill-mode: forwards;
    color: #000;
}

#about img {
    border: 0;
    vertical-align: middle;
}
#msg1 {
    animation-name: msg1;
}


@keyframes msg1{
	0% {
		top: 21.25em;
		left: -4em;
		transform: scale(0);
	}
	
	5% {
		top: 21.25em;
		left: 0;
		transform: scale(1);
	}
	
	12% {
		top: 21.25em;
	}
	
	17%, 30% {
		top: 16.25em;
	}
	
	35%, 49% {
		top: 12.75em;
	}
	
	54%, 70% {
		top: 9.25em;
	}
	
	75%, 95% {
		top: 4.25em;
	}
	
	100% {
		top: 0;
		left: 0;
	}
	
}



.msg-send-img {
    margin-right: 0;
    background-color: #ffe2e7;
    margin-top: 0;
}

#msg2 {
    animation-name: msg2;
}


.msg-send {
    position: absolute;
    animation-iteration-count: 1;
    animation-duration: 4s;
    animation-fill-mode: forwards;
    font-size: 1.3em;
    border-radius: 10px;
    padding: 10px;
    color: #fff;
}

@keyframes msg2{
	0% {
		top: 20.75em;
		right: 0;
		transform: scale(0);
		opacity: 0;
	}
	
	12% {
		top: 20.75em;
		right: -4em;
		transform: scale(0);
	}
	
	17% {
		top: 20.75em;
		right: 0;
		transform: scale(1);
		opacity: 1;
	}
	
	30% {
		top: 20.75em;
	}
	
	35%, 49% {
		top: 17.25em;
	}
	
	54%, 70% {
		top: 13.75em;
	}
	
	75% {
		top: 8.75em;
		right: 0;
	}
	
	95% {
		top: 8.75em;
	}
	
	100% {
		top: 4.5em;
		right: 0;
	}
	
}


.msg-send {
    position: absolute;
    animation-iteration-count: 1;
    animation-duration: 4s;
    animation-fill-mode: forwards;
    font-size: 1.3em;
    border-radius: 10px;
    padding: 10px;
    background-color: #2d67ff;
    color: #fff;
    margin-right: 70px;
    margin-top: 15px;
}


#msg3 {
    animation-name: msg3;
}



@keyframes msg3{
	0% {
		top: 23.25em;
		left: -4em;
		opacity: 0;
		transform: scale(0);
	}

	30% {
		top: 23.25em;
		opacity: 0;
		transform: scale(0);
	}
	
	35% {
		top: 23.25em;
		left: 0;
		transform: scale(1);
		opacity: 1;
	}
	
	49% {
		top: 23.25em;
	}
	
	54%, 70% {
		top: 19.75em;
	}
	
	75% {
		top: 14.75em;
		left: 0;
	}
	
	95% {
		top: 14.75em;
	}
	
	100% {
		top: 11em;
		left: 0;
	}
	
}




#msg4 {
    animation-name: msg4;
}


.msg-send {
    position: absolute;
    animation-iteration-count: 1;
    animation-duration: 4s;
    animation-fill-mode: forwards;
    font-size: 1.3em;
    border-radius: 10px;
    padding: 10px;
    color: #fff;
}

@keyframes msg4{
	0%, 49% {
		top: 24.25em;
		right: -4em;
		opacity: 0;
		transform: scale(0);
	}

	54% {
		top: 24.25em;
		right: 0;
		transform: scale(1);
		opacity: 1;
	}
	70% {
		top: 24.25em;
	}
	75% {
		top: 19.25em;
		right: 0;
	}
	95% {
		top: 19.25em;
	}
	100% {
		top: 15em;
		right: 0;
	}
}

.msg-send {
    position: absolute;
    animation-iteration-count: 1;
    animation-duration: 4s;
    animation-fill-mode: forwards;
    font-size: 1.3em;
    border-radius: 10px;
    padding: 10px;
    background-color: #2d67ff;
    color: #fff;
    margin-right: 70px;
    margin-top: 15px;
}



#msg5 {
    animation-name: msg5;
}


@keyframes msg5{
	0% {
		top: 27.75em;
		left: -4em;
		opacity: 0;
		transform: scale(0);
	}
	70% {
		top: 25.75em;
		left: -4em;
		opacity: 0;
		transform: scale(0);
	}
	75% {
		top: 25.75em;
		left: 0;
		transform: scale(1);
		opacity: 1;
	}
	95% {
		top: 25.75em;
	}
	100% {
		top: 21.5em;
		left: 0;
		transform: scale(1);
		opacity: 1;
	}
}



#msg6 {
    animation-name: msg6;
}


@keyframes msg6{
	0% {
		top: 28.5em;
		right: -4em;
		opacity: 0;
		transform: scale(0);
	}

	95% {
		top: 28.5em;
		right: 0;
		opacity: 0;
		transform: scale(0);
	}
	100% {
		top: 28.5em;
		right: 0;
		opacity: 1;
		transform: scale(1);
	}
}

.msg-receive {
    position: absolute;
    animation-iteration-count: 1;
    animation-duration: 4s;
    font-size: 1.3em;
    border-radius: 10px;
    padding: 10px;
    animation-fill-mode: forwards;
    margin-left: 70px;
    margin-top: 15px;
    background-color: #fff;
    color: #000;
}

#about .msg-hover:hover {
    transform: scale(.9);
    background-color: #2d67ff;
    color: #fff;
}

#about a:hover {
    color: #e44b67;
    opacity: .5!important;
    text-decoration: none;
}

.msg-send-img {
    margin-right: 0;
    background-color: #ffe2e7;
    margin-top: 0;
}

#about{
	padding-top: 120px;
	padding-bottom: 120px;
	
}

@media (max-width:480px){
	#about .container{
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
		width: 100%;
	}
	
	#about .msg-container h4 {
    	font-size: 22px;
	}
	
	#about .msg-receive {
    	font-size: 18px;
	}
	
	.msg-send {
    	font-size: 18px;
	}
	
	#about {
    	padding-top: 40px;
	}
	
	#about .msg-content {
    	height: 658px;
	}
}

@media (min-width:481px) and (max-width:768px){
	#about .container{
		padding-right: 10px;
		padding-left: 10px;
		margin-right: auto;
		margin-left: auto;
		width: 100%;
	}
	
	#about .msg-container h4 {
    	font-size: 22px;
	}
	
	#about .msg-receive {
    	font-size: 18px;
	}
	
	.msg-send {
    	font-size: 18px;
	}
	
	#about .msg-content {
    	height: 613px;
	}
}

@media (min-width:769px) and (max-width:1200px){
	#about {
    	padding-top: 70px;
	}
}



/*=================== 
track page end
******************************************************* 
*************************************************************** */



.ba-footer-area .img-sec.ba-footer-widget {
    padding-left: 0px;
    padding-right: 0px;
}

.ba-footer-area .footer-line-sec img{
	float: right;
}

@media (min-width:481px) and (max-width:768px){
	.ba-footer-area .footer-line-sec img{
		float: inherit;
	}
}



@media (max-width: 480px){
	.mb-menu-sec .tagcloud a{
		box-shadow: 3px 3px 7px #f4f4f4;	
		border: 1px outset #beb7d9;
	}
	
	.mb-menu-service-sec.mb-menu-sec .tagcloud a{
		box-shadow: none;	
		border: none;
	}
	
}






