/*
************
*************************

   Template Name: Phondit - Creative Personal Portfolio HTML Template
   Description: Phondit is a modern unique design layout focused for resume, cv, vCard, startup business, companies, agencies, all types of professions person which need a professional way to showcase their projects and services with 100% super responsive experience.
   Author: _CodeSculptor
   Version: 1.0

-----------------------------------------------------------------------------------

CSS INDEX
=================== 
01. common
02. header
03. banner
04. about
05. services
06. service details
07. portfolio
08. portfolio details
09. qualific
10. skill
11. testimonial
12. counter
13. blog
14. blog details
15. cta
16. brand
17. breadcrumb
18. process
19. contact
20. error
21. sidebar
22. footer
23. back to top

******************************************************* 
*************************************************************** */
/*
************
*************************
01. common
******************************************************* 
*************************************************************** */
@import url('/newmoban/_external/fonts.googleapis.com/_hashed/a205a75d0c2764ae34d2.css');
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr-body-text);
  font-size: 16px;
  line-height: 26px;
}

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

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

a,
.button, button {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: medium none;
}

button:focus, input:focus, input:focus, textarea, textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: var(--clr-body-heading);
  margin-top: 0px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
}

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

h1 {
  font-size: 80px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s linear 0s;
}

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

hr {
  border-bottom: 1px solid var(--clr-bg-gray-3);
  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::-webkit-input-placeholder {
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  opacity: 1;
  transition: 0.5s;
}
input:-moz-placeholder {
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  opacity: 1;
  transition: 0.5s;
}
input::-moz-placeholder {
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  opacity: 1;
  transition: 0.5s;
}
input:-ms-input-placeholder {
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  opacity: 1;
  transition: 0.5s;
}

textarea::-webkit-input-placeholder {
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  opacity: 1;
  transition: 0.5s;
}
textarea:-moz-placeholder {
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  opacity: 1;
  transition: 0.5s;
}
textarea::-moz-placeholder {
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  opacity: 1;
  transition: 0.5s;
}
textarea:-ms-input-placeholder {
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  opacity: 1;
  transition: 0.5s;
}

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

.w_img img {
  width: 100%;
}

/* <<<<<<<    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: "";
}

/* <<<<<<<    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;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  --bs-gutter-x: 30px;
}
.row.g-0 {
  --bs-gutter-x: 0;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1326px;
  }
  .container.container-full-1 {
    max-width: 1326px;
  }
}
@media (min-width: 1600px) {
  .container.container-full-1 {
    max-width: 1750px;
  }
}
/* <<<<<<<    Declaration   >>>>>>>>> */
:root {
  /**
  @color declaration
  */
  --clr-common-white: #fff;
  --clr-common-black: #161616;
  --clr-common-black-soft: #4A4847;
  --clr-common-black-deep: #000;
  --clr-body-heading: #161616;
  --clr-body-text: #515151;
  --clr-color-orange: #FCAA04;
  --clr-color-orange-2: #ffd139;
  --clr-color-orange-3: #FFCD00;
  --clr-theme-primary: #5F41FF;
  --clr-theme-primary-dark: #5839FF;
  --clr-theme-primary-soft: #fff5f5;
  --clr-bg-gray: #F6F6F6;
  --clr-bg-gray-2: #F1F1F1;
  --clr-bg-gray-3: #EEEEEE;
  --clr-bg-gray-4: #E2E2E2;
  --clr-bg-gray-5: #DFDFDF;
  --clr-bg-gray-6: #BFBFBF;
  --clr-bg-gray-7: #b2b2b2;
  --clr-bg-gray-8: #AEABAB;
  --clr-bg-gray-9: #737373;
  --clr-bg-gray-10: #434343;
  --clr-bg-gray-11: #C1C1C1;
  --clr-bg-gray-12: #7E7E7E;
  --clr-bg-gray-13: #dbdbdb;
  --clr-bg-gray-14: #B9B9B9;
  --clr-bg-gray-15: #393838;
  --clr-bg-gray-16: #F8F8F8;
}

.bg-default {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.pl-72 {
  padding-left: 72px;
}

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

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

.mb-33 {
  margin-bottom: 33px;
}

.portfolio-nav-space-reverce {
  margin-bottom: -15px;
}

.pt-224 {
  padding-top: 224px;
}

.pt-235 {
  padding-top: 235px;
}

.pt-410 {
  padding-top: 410px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-43 {
  margin-bottom: 43px;
}

.mb-27 {
  margin-bottom: 27px;
}

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

.no-after::after {
  display: none;
}

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

i[class^=flaticon-]:before, i[class*=" flaticon-"]:before {
  line-height: inherit;
}

.pt-5-px {
  padding-top: 5px;
}

.mt-minus-20 {
  margin-top: -20px;
}

.mb-5-px {
  margin-bottom: 5px;
}

/*---------------------------------------------------*/
/*  mouse cursor animation
/*---------------------------------------------------*/
.mouseCursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #5F41FF;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -50px;
  margin-top: -50px;
  width: 90px;
  height: 90px;
  background-color: #5F41FF;
  opacity: 0.5;
}

.cursor-outer {
  margin-left: -20px;
  margin-top: -20px;
  width: 45px;
  height: 45px;
  border: 2px solid #5F41FF;
  box-sizing: border-box;
  z-index: 10000000;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.mim_tm_all_wrap[data-magic-cursor=hide] .mouseCursor {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -1111;
}

/*
************
*************************
02. header
******************************************************* 
*************************************************************** */
.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.pl-header-nav-menu nav ul li {
  display: inline-block;
  margin-right: 40px;
  position: relative;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-header-nav-menu nav ul li {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-header-nav-menu nav ul li {
    margin-right: 30px;
  }
}
.pl-header-nav-menu nav ul li:last-child {
  margin-right: 0;
}
.pl-header-nav-menu nav ul li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-common-white);
  padding: 50px 0;
  text-transform: capitalize;
  transition: all 0.3s linear 0s;
}
.pl-header-nav-menu nav ul li:is(.has-dropdown) > a:after {
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}
.pl-header-nav-menu nav ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 240px;
  background: var(--clr-common-white);
  text-align: left;
  padding: 0;
  box-shadow: 0 5px 10px rgba(51, 51, 51, 0.3);
  transition: all 0.3s ease 0s;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform-origin: top;
  transform: scaleY(0);
  border-top: 3px solid var(--clr-theme-primary);
}
.pl-header-nav-menu nav ul li .submenu li {
  margin-right: 0;
  display: block;
}
.pl-header-nav-menu nav ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.pl-header-nav-menu nav ul li .submenu li a {
  padding: 0;
  padding: 10px 25px;
  display: block;
  transition: all 0.3s linear 0s;
  color: var(--clr-common-black);
}
.pl-header-nav-menu nav ul li .submenu li:hover > a {
  color: var(--clr-theme-primary);
  background-color: #eee;
}
.pl-header-nav-menu nav ul li .submenu li .submenu {
  left: 100%;
  top: -3px;
}
.pl-header-nav-menu nav ul li:hover > a {
  color: var(--clr-theme-primary);
}
.pl-header-nav-menu nav ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transform-origin: top;
}
.pl-header-action-search {
  color: var(--clr-common-white);
  font-size: 18px;
}
.pl-header-action-search:hover {
  color: var(--clr-common-white);
}
.pl-header-action-bar {
  background: transparent;
  border: none;
  margin-left: 35px;
  color: var(--clr-common-white);
  font-size: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-header-action-bar {
    margin-left: 25px;
  }
}
@media (max-width: 767px) {
  .pl-header-action-bar {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-header-action-bar {
    margin-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-header-area {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .pl-header-area {
    padding: 30px 0;
  }
}

.solid-header .pl-header-nav-menu nav ul li a {
  color: var(--clr-common-black);
}
.solid-header .pl-header-nav-menu nav ul li:hover > a {
  color: var(--clr-theme-primary);
}
.solid-header .pl-header-action-search {
  color: var(--clr-common-black);
}
.solid-header .pl-header-action-bar {
  color: var(--clr-common-black);
}

/*
************
*************************
03. banner
******************************************************* 
*************************************************************** */
.banner-height {
  min-height: 920px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .banner-height {
    min-height: 840px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .banner-height {
    min-height: 840px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-height {
    min-height: 810px;
  }
}
@media (max-width: 767px) {
  .banner-height {
    min-height: 700px;
  }
}

.pl-banner-area.banner-height {
  position: relative;
  z-index: 1;
}
.pl-banner-area.banner-height:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(#350163 0%, #040017 100%);
  z-index: -1;
}

.pl-banner-content .cd-words-wrapper {
  width: auto !important;
}

.pl-banner-area {
  overflow-x: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-banner-content {
    padding-top: 130px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .pl-banner-content {
    padding-top: 130px;
    padding-bottom: 40px;
  }
}
.pl-banner-content-subtitle {
  color: var(--clr-common-white);
  font-size: 22px;
  line-height: 1.2;
  display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-banner-content-subtitle {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-banner-content-subtitle {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-banner-content-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .pl-banner-content-subtitle {
    font-size: 16px;
  }
}
.pl-banner-content-title {
  color: var(--clr-common-white);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
}
.pl-banner-content-title span {
  color: var(--clr-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-banner-content-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-banner-content-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-banner-content-title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-banner-content-title {
    font-size: 50px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .pl-banner-content-title {
    font-size: 42px;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-banner-content-title {
    font-size: 50px;
    line-height: 1.3;
  }
}
.pl-banner-content-action {
  display: flex;
  gap: 45px;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-banner-content-action {
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .pl-banner-content-action {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-banner-content-action {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .pl-banner-content-action .pl-theme-btn {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-banner-content-action .pl-theme-btn {
    margin-bottom: 0;
  }
}
.pl-banner-content-action .pl-play-btn .pl-icon {
  width: 60px;
  height: 60px;
  background: var(--clr-common-white);
  text-align: center;
  border-radius: 50%;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-banner-content-action .pl-play-btn .pl-icon {
    margin-right: 20px;
  }
}
.pl-banner-content-action .pl-play-btn .pl-icon::after, .pl-banner-content-action .pl-play-btn .pl-icon::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #cccccc;
  animation-name: popupBtn;
  animation-duration: 1.8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.pl-banner-content-action .pl-play-btn .pl-icon:before {
  animation-delay: 0.8s;
}
.pl-banner-content-action .pl-play-btn .pl-icon i {
  color: var(--clr-theme-primary);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 700;
}
.pl-banner-content-action .pl-play-btn:hover .pl-icon {
  background-color: var(--clr-theme-primary);
}
.pl-banner-content-action .pl-play-btn:hover .pl-icon::after {
  border-color: var(--clr-theme-primary);
}
.pl-banner-content-action .pl-play-btn:hover .pl-icon i {
  color: var(--clr-common-white);
}
.pl-banner-content-action .pl-play-btn span {
  color: var(--clr-common-white);
  font-family: "Nunito Sans", sans-serif;
  transition: all 0.3s ease;
}
.pl-banner-content-action .pl-play-btn:hover > span {
  color: var(--clr-theme-primary);
}
.pl-banner-social span {
  display: inline-block;
  color: var(--clr-common-white);
  margin-bottom: 10px;
  position: relative;
}
.pl-banner-social span::after {
  position: absolute;
  content: "";
  left: 86px;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--clr-common-white);
  transform: translateX(-50%);
}
.pl-banner-social-icon a {
  font-size: 16px;
  color: var(--clr-bg-gray-9);
  margin-right: 15px;
  display: inline-block;
}
.pl-banner-img {
  text-align: end;
}
.pl-banner-img .pl-img {
  position: relative;
}
.pl-banner-img .pl-circle {
  -webkit-animation: plSpin 10s linear infinite;
  animation: plSpin 10s linear infinite;
  position: absolute;
  top: 110px;
  right: -215px;
}
.pl-banner-img .pl-element-1 {
  position: absolute;
  top: 365px;
  right: -80px;
  animation: upNdown 8s linear infinite;
}
.pl-banner-img .pl-element-2 {
  position: absolute;
  top: 270px;
  left: 120px;
  animation: leftNright 6s linear infinite;
}
.pl-banner-img .pl-element-3 {
  position: absolute;
  top: 245px;
  left: 0;
  animation: upNdown 8s linear infinite;
}

.pl-banner-social-icon a {
  display: inline-block;
  color: #737373;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #737373));
  background-image: -o-linear-gradient(left, #fff, #fff 50%, #737373 50%);
  background-image: linear-gradient(to right, #fff, #fff 50%, #737373 50%);
}

.pl-banner-social-icon a:hover {
  background-position: 0;
  -webkit-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  -o-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
}

.pl-theme-btn {
  background: var(--clr-theme-primary);
  font-size: 16px;
  color: var(--clr-common-white);
  font-weight: 500;
  padding: 21px 50px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
}
.pl-theme-btn i {
  display: inline-block;
  transform: translateY(1px);
  margin-left: 5px;
}
.pl-theme-btn:hover {
  border-color: var(--clr-theme-primary);
  color: var(--clr-theme-primary);
  background-color: var(--clr-common-white);
}
.pl-theme-btn:focus {
  color: var(--clr-common-white);
}

@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes plSpin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes upNdown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes leftNright {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}
/*
************
*************************
04. about
******************************************************* 
*************************************************************** */
.w-76 {
  width: 76%;
}

.w-90 {
  width: 90%;
}

.w-83 {
  width: 83%;
}

.pl-about-area {
  background-color: var(--clr-bg-gray);
}
.pl-about-img {
  position: relative;
  text-align: end;
}
.pl-about-img img {
  z-index: 1;
  position: relative;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-about-img img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pl-about-img img {
    width: 100%;
  }
}
.pl-about-img-cta {
  position: absolute;
  left: 10px;
  bottom: 90px;
  background: var(--clr-common-white);
  width: 155px;
  height: 140px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-about-img-cta {
    left: -5px;
  }
}
@media (max-width: 767px) {
  .pl-about-img-cta {
    bottom: 40px;
    width: 120px;
    height: 110px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-img-cta {
    bottom: 50px;
    width: 155px;
    height: 140px;
  }
}
.pl-about-img-cta-title {
  font-size: 60px;
  color: var(--clr-theme-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}
.pl-about-img-cta-title span {
  font-size: 60px;
  color: var(--clr-theme-primary);
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 767px) {
  .pl-about-img-cta-title span {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-img-cta-title span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .pl-about-img-cta-title {
    font-size: 35px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-img-cta-title {
    font-size: 60px;
    margin-bottom: 5px;
  }
}
.pl-about-img-cta .text {
  font-size: 16px;
  display: inline-block;
  color: var(--clr-theme-primary);
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  .pl-about-img-cta .text {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-img-cta .text {
    font-size: 16px;
  }
}
.pl-about-img::before {
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 155px;
  height: 140px;
  background: var(--clr-theme-primary);
  content: "";
  border-radius: 8px;
  z-index: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-about-img::before {
    left: -15px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-about-img::before {
    z-index: 2;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-about-img::before {
    z-index: 2;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-about-img::before {
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .pl-about-img::before {
    z-index: 2;
    bottom: 30px;
    width: 120px;
    height: 110px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-img::before {
    z-index: 2;
    bottom: 40px;
    width: 155px;
    height: 140px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-about-img.pr-30 {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-about-img.pr-30 {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-about-img.pr-30 {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-about-img.pr-30 {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .pl-about-img.pr-30 {
    padding-right: 0;
  }
}
.pl-skill-label-heading {
  display: flex;
  justify-content: space-between;
}
.pl-skill-label-heading-title {
  color: var(--clr-common-black-soft);
  font-size: 18px;
  line-height: 1.35;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}
.pl-skill-label-heading span {
  color: var(--clr-common-black-soft);
  font-size: 18px;
  line-height: 1.33;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: inline-block;
}
.pl-skill-label .progress {
  height: 8px;
  border-radius: 5px;
  background-color: #E6E6E6;
}
.pl-skill-label .progress-bar {
  background: var(--clr-theme-primary);
  border-radius: 8px;
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-about-content.ml-30 {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-about-content.ml-30 {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-about-content.ml-30 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .pl-about-content.ml-30 {
    margin-left: 0;
  }
}

.pl-section-subtitle {
  color: var(--clr-theme-primary);
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
  display: inline-block;
}
.pl-section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--clr-body-heading);
  font-family: "Roboto", sans-serif;
  display: block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-section-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-section-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .pl-section-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-section-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .pl-section-text br {
    display: none;
  }
}

.pl-about-section {
  background-color: var(--clr-common-white);
}
.pl-about-section .pl-about-img-content {
  padding: 0 30px;
  background: var(--clr-bg-gray);
  border-radius: 8px;
}
.pl-about-section .about-img-border {
  border: 20px solid var(--clr-common-white);
  border-radius: 8px;
  text-align: center;
  transform: translateY(-124px);
}
.pl-about-section .pl-about-img::before {
  display: none;
}
.pl-about-section .pl-about-personal-content {
  padding-top: 42px;
  padding-bottom: 35px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: -124px;
}
@media (max-width: 767px) {
  .pl-about-section .pl-about-personal-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-section .pl-about-personal-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pl-about-section .pl-about-personal-name-title {
  font-size: 24px;
  color: var(--clr-bg-gray-15);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.41;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .pl-about-section .pl-about-personal-name-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-section .pl-about-personal-name-title {
    font-size: 24px;
  }
}
.pl-about-section .pl-about-personal-name span {
  color: #717171;
  font-size: 16px;
  display: inline-block;
}
.pl-about-section .pl-about-personal-social a {
  color: var(--clr-bg-gray-9);
  width: 35px;
  height: 35px;
  display: inline-block;
  border: 1px solid var(--clr-bg-gray-9);
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  background: transparent;
  transition: all 0.3s ease;
}
.pl-about-section .pl-about-personal-social a:hover {
  background-color: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.pl-about-section .pl-about-personal-info-title {
  font-size: 24px;
  color: var(--clr-common-black);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.41;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .pl-about-section .pl-about-personal-info-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-section .pl-about-personal-info-title {
    font-size: 24px;
  }
}
.pl-about-section .pl-about-personal-info-table {
  width: 65%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-about-section .pl-about-personal-info-table {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-about-section .pl-about-personal-info-table {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-about-section .pl-about-personal-info-table {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-about-section .pl-about-personal-info-table {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pl-about-section .pl-about-personal-info-table {
    width: 100%;
  }
}
.pl-about-section .pl-about-personal-info-table tr th {
  color: var(--clr-common-black);
  font-size: 18px;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  line-height: 2.22;
}
.pl-about-section .pl-about-personal-info-table tr td {
  color: var(--clr-body-text);
  font-size: 18px;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  line-height: 2.22;
}
.pl-about-section .pl-about-personal-info-table tr .table-space {
  width: 65px;
}
@media (max-width: 767px) {
  .pl-about-section .pl-about-personal-info-table tr .table-space {
    width: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-section .pl-about-personal-info-table tr .table-space {
    width: 65px;
  }
}
.pl-about-section .pl-section-text {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-about-section .pl-about-content.ml-50 {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-about-section .pl-about-content.ml-50 {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-about-section .pl-about-content.ml-50 {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-about-section .pl-about-content.ml-50 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .pl-about-section .pl-about-content.ml-50 {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-about-section .pl-theme-btn.mr-15 {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-about-section .pl-theme-btn.mr-15 {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pl-about-section .pl-theme-btn.mr-15 {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-section .pl-theme-btn.mr-15 {
    margin-right: 15px;
    margin-bottom: 0;
  }
}

.pl-about-content .nav-tabs .tab-btn {
  background: var(--clr-bg-gray);
  font-size: 16px;
  color: #393838;
  font-weight: 500;
  padding: 20px 45px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  line-height: 1;
}
@media (max-width: 767px) {
  .pl-about-content .nav-tabs .tab-btn {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-content .nav-tabs .tab-btn {
    margin-bottom: 0;
  }
}
.pl-about-content .nav-tabs .active {
  color: var(--clr-common-white);
  background-color: var(--clr-theme-primary);
}
.pl-about-content #nav-tab {
  border: none;
}
.pl-about-content .pl-experience-area {
  position: relative;
}
.pl-about-content .pl-experience-area::after {
  position: absolute;
  content: "";
  top: 0;
  left: 192px;
  background: #F6F6F6;
  height: 100%;
  width: 2px;
  z-index: 1;
}
@media (max-width: 767px) {
  .pl-about-content .pl-experience-area::after {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-content .pl-experience-area::after {
    display: block;
  }
}
.pl-about-content .pl-experience-date span {
  width: 160px;
  height: 60px;
  background: #5f41ff;
  color: #fff;
  display: inline-block;
  line-height: 60px;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
.pl-about-content .pl-experience-item {
  display: flex;
}
@media (max-width: 767px) {
  .pl-about-content .pl-experience-item {
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-content .pl-experience-item {
    flex-direction: row;
  }
}
.pl-about-content .pl-experience-date {
  margin-right: 30px;
  padding-right: 35px;
  position: relative;
}
@media (max-width: 767px) {
  .pl-about-content .pl-experience-date {
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 30px;
    padding-bottom: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-content .pl-experience-date {
    margin-right: 30px;
    padding-right: 35px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .pl-about-content .pl-experience-date::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    content: "";
    height: 2px;
    background-color: #F6F6F6;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-content .pl-experience-date::before {
    display: none;
  }
}
.pl-about-content .pl-experience-date span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  background: #5f41ff;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 575px) {
  .pl-about-content .pl-experience-date span::after {
    transform: translateY(0);
    bottom: -37px;
    top: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
.pl-about-content .pl-experience-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
}
.pl-about-content .pl-experience-info span {
  display: inline-block;
  color: #161616;
  font-size: 14px;
  margin-bottom: 15px;
}
.pl-about-content .pl-experience-info p {
  margin-bottom: 0;
  color: #737373;
}

/*
************
*************************
05. services
******************************************************* 
*************************************************************** */
.pl-services-item {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-services-item {
    padding: 50px 30px;
  }
}
@media (max-width: 767px) {
  .pl-services-item {
    padding: 30px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-services-item {
    padding: 30px 30px;
  }
}
.pl-services-item-icon {
  transition: all 0.8s ease;
}
.pl-services-item-icon i {
  font-size: 60px;
  display: inline-block;
  color: var(--clr-theme-primary);
}
.pl-services-item:hover .pl-services-item-icon {
  transform: translateY(-10px);
}
.pl-services-item-content-title {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--clr-common-black);
  transition: all 0.3s ease;
}
.pl-services-item-content-title:hover {
  color: var(--clr-theme-primary);
}
.pl-services-item-content-text {
  margin-bottom: 0;
  color: var(--clr-bg-gray-9);
}
@media (max-width: 767px) {
  .pl-services-area .col-xl-4.col-lg-6.col-md-6:last-child .pl-services-item {
    padding-bottom: 0;
  }
}

.pl-services-item-icon i {
  display: inline-block;
  color: #5f41ff;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#161616), color-stop(50%, #161616), color-stop(50%, #5f41ff));
  background-image: -o-linear-gradient(left, #161616, #161616 50%, #5f41ff 50%);
  background-image: linear-gradient(to right, #161616, #161616 50%, #5f41ff 50%);
}

.pl-services-item:hover .pl-services-item-icon i {
  background-position: 0;
  -webkit-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  -o-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
}

.pl-border {
  border-right: 1px solid var(--clr-bg-gray-3);
  border-bottom: 1px solid var(--clr-bg-gray-3);
}
.pl-border:nth-child(3) {
  border-right: 0;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-border:nth-child(3) {
    border-right: 1px solid var(--clr-bg-gray-3);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-border:nth-child(3) {
    border-right: 1px solid var(--clr-bg-gray-3);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-border:nth-child(3) {
    border-right: 1px solid var(--clr-bg-gray-3);
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-border:nth-child(2) {
    border-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-border:nth-child(2) {
    border-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-border:nth-child(2) {
    border-right: 0;
  }
}
.pl-border:nth-last-child(-n+3) {
  border-bottom: 0px;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-border:nth-child(4) {
    border-bottom: 1px solid var(--clr-bg-gray-3);
    border-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-border:nth-child(4) {
    border-bottom: 1px solid var(--clr-bg-gray-3);
    border-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-border:nth-child(4) {
    border-bottom: 1px solid var(--clr-bg-gray-3);
    border-right: 0;
  }
}
.pl-border:nth-child(6) {
  border-right: 0;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-border:nth-child(7) {
    border-bottom: 1px solid var(--clr-bg-gray-3);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-border:nth-child(7) {
    border-bottom: 1px solid var(--clr-bg-gray-3);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-border:nth-child(7) {
    border-bottom: 1px solid var(--clr-bg-gray-3);
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-border:nth-child(8) {
    border-bottom: 1px solid var(--clr-bg-gray-3);
    border-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-border:nth-child(8) {
    border-bottom: 1px solid var(--clr-bg-gray-3);
    border-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-border:nth-child(8) {
    border-bottom: 1px solid var(--clr-bg-gray-3);
    border-right: 0;
  }
}
.pl-border:nth-child(9) {
  border-right: 0;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-border:nth-child(9) {
    border-bottom: 0;
    border-right: 1px solid var(--clr-bg-gray-3);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-border:nth-child(9) {
    border-bottom: 0;
    border-right: 1px solid var(--clr-bg-gray-3);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-border:nth-child(9) {
    border-bottom: 0;
    border-right: 1px solid var(--clr-bg-gray-3);
  }
}
@media (max-width: 767px) {
  .pl-border {
    border: none;
  }
}

@media (max-width: 767px) {
  .pl-services-area .pl-section-text.mb-25 {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .pl-services-area .pl-section.text-center.pb-35 {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-services-area .pl-section.text-center.pb-35 {
    padding-bottom: 30px;
  }
}

/*
************
*************************
06. service details
******************************************************* 
*************************************************************** */
.pl-services-details-img {
  overflow: hidden;
  border-radius: 10px;
}
.pl-services-details-title {
  font-size: 34px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .pl-services-details-title {
    font-size: 30px;
  }
}
.pl-services-details-content p {
  margin-bottom: 15px;
  color: var(--clr-bg-gray-9);
}
.pl-services-details-content-list p {
  color: var(--clr-bg-gray-9);
}
.pl-services-details-content-list ul li {
  color: var(--clr-bg-gray-9);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  display: flex;
}
.pl-services-details-content-list ul li i {
  margin-right: 10px;
  margin-top: 5px;
  color: var(--clr-theme-primary);
}
.pl-services-details-content-img {
  border-radius: 10px;
  overflow: hidden;
}
.pl-services-details-item {
  border: 1px solid var(--clr-bg-gray-13);
  padding: 30px 20px;
  display: flex;
  gap: 20px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .pl-services-details-item {
    display: block;
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-services-details-item {
    display: flex;
    gap: 20px;
    text-align: start;
  }
}
.pl-services-details-item-content-title {
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 1.3;
  transition: all 0.3s ease;
}
.pl-services-details-item-content-title:hover {
  color: var(--clr-theme-primary);
}
.pl-services-details-item-content p {
  color: var(--clr-bg-gray-9);
  margin-bottom: 0;
}
.pl-services-details-item-icon {
  transition: 0.8s;
}
.pl-services-details-item-icon svg {
  color: var(--clr-theme-primary);
}
.pl-services-details-item:hover .pl-services-details-item-icon {
  transform: translateY(-10px);
}
.pl-services-details-challeng-item {
  padding: 30px 13px;
  background: var(--clr-common-white);
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--clr-bg-gray-3);
  transition: all 0.3s ease;
}
.pl-services-details-challeng-item:hover {
  background-color: var(--clr-bg-gray);
  border-color: var(--clr-bg-gray);
}
.pl-services-details-challeng-item-icon {
  margin-bottom: 25px;
  transition: 0.8s;
}
.pl-services-details-challeng-item-icon svg {
  color: var(--clr-theme-primary);
}
.pl-services-details-challeng-item:hover .pl-services-details-challeng-item-icon {
  transform: translateY(-10px);
}
.pl-services-details-challeng-item-content-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.pl-services-details-challeng-item-content-title:hover {
  color: var(--clr-theme-primary);
}
.pl-services-details-challeng-item-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--clr-bg-gray-9);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-services-widget {
    margin-left: 40px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-services-widget {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-services-widget {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-services-widget {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .pl-services-widget {
    margin-left: 0;
  }
}
.pl-services-widget-title {
  font-size: 20px;
  line-height: 1.3;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}
.pl-services-widget-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100px;
  height: 1px;
  background-color: var(--clr-theme-primary);
}
.pl-services-widget-list a {
  display: block;
  border: 1px solid var(--clr-bg-gray-3);
  padding: 0 20px;
  height: 60px;
  line-height: 60px;
  border-radius: 10px;
  color: var(--clr-bg-gray-9);
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.pl-services-widget-list a:last-child {
  margin-bottom: 0;
}
.pl-services-widget-list a i {
  text-align: right;
  display: block;
  color: var(--clr-bg-gray-9);
  float: right;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.pl-services-widget-list a:hover {
  border-color: var(--clr-theme-primary);
  color: var(--clr-theme-primary);
}
.pl-services-widget-list a:hover i {
  color: var(--clr-theme-primary);
}
.pl-services-widget-contact {
  position: relative;
  border-radius: 10px;
  background-image: url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601066/html/assets/img/services/services-3.jpg');
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  padding: 40px 50px;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-services-widget-contact {
    padding: 35px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-services-widget-contact {
    padding: 35px 25px;
  }
}
@media (max-width: 767px) {
  .pl-services-widget-contact {
    padding: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-services-widget-contact {
    padding: 40px 50px;
  }
}
.pl-services-widget-contact::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 22, 0.7);
  border-radius: 8px;
}
.pl-services-widget-contact-content {
  z-index: 10;
  position: relative;
}
.pl-services-widget-contact-subtitle {
  color: var(--clr-common-white);
  display: inline-block;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.7;
}
.pl-services-widget-contact-title {
  color: var(--clr-common-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.pl-services-widget-contact-text {
  color: var(--clr-bg-gray);
  font-family: "Libre Franklin", sans-serif;
}
.pl-services-widget-download-title {
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 500;
}
.pl-services-widget-download-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100px;
  height: 1px;
  background-color: var(--clr-theme-primary);
}
.pl-services-widget-download a {
  display: block;
  border: 1px solid var(--clr-bg-gray-3);
  padding: 0 20px;
  height: 60px;
  line-height: 60px;
  border-radius: 10px;
  color: var(--clr-bg-gray-9);
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 16px;
}
.pl-services-widget-download a:last-child {
  margin-bottom: 0;
}
.pl-services-widget-download a i {
  text-align: right;
  display: block;
  color: var(--clr-bg-gray-9);
  float: right;
  transform: translateY(21px);
}
.pl-services-widget-download a:hover {
  border-color: var(--clr-theme-primary);
  color: var(--clr-theme-primary);
}
.pl-services-widget-download a:hover i {
  color: var(--clr-theme-primary);
}

/*
************
*************************
07. portfolio
******************************************************* 
*************************************************************** */
.pl-portfolio-area {
  background-color: var(--clr-bg-gray);
}
.pl-portfolio-menu button {
  background: transparent;
  border: none;
  font-size: 22px;
  padding: 0;
  margin-right: 15px;
  color: var(--clr-bg-gray-11);
  line-height: 1;
}
@media (max-width: 767px) {
  .pl-portfolio-menu button {
    margin-right: 10px;
    margin-bottom: 15px;
  }
}
.pl-portfolio-menu button:last-child {
  margin-right: 0;
}
.pl-portfolio-menu .active {
  color: var(--clr-theme-primary);
}
.pl-portfolio-item {
  position: relative;
  overflow: hidden;
}
.pl-portfolio-item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 22, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.pl-portfolio-item:hover::after {
  opacity: 1;
  visibility: visible;
}
.pl-portfolio-item-img {
  position: relative;
}
.pl-portfolio-item-img img {
  transition: all 0.8s ease;
  transform: scale(1);
}
.pl-portfolio-item:hover .pl-portfolio-item-img img {
  transform: scale(1.09);
}
.pl-portfolio-item-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.pl-portfolio-item-content:hover {
  opacity: 1;
}
.pl-portfolio-item-content-title {
  color: var(--clr-common-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  z-index: 15;
}
@media (max-width: 767px) {
  .pl-portfolio-item-content-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.pl-portfolio-item-content-title:hover a {
  color: var(--clr-bg-gray-5);
  letter-spacing: 0.5px;
}
.pl-portfolio-item-content-icon {
  color: var(--clr-common-white);
  line-height: 1;
  z-index: 15;
}
.pl-portfolio-item-content-icon a {
  font-size: 30px;
  margin-right: 15px;
  color: var(--clr-common-white);
}
.pl-portfolio-item-content-icon a:last-child {
  margin-right: 0;
}

.pl-portfolio-item-content-icon a {
  display: inline-block;
  color: #fff;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#DFDFDF), color-stop(50%, #DFDFDF), color-stop(50%, #ffffff));
  background-image: -o-linear-gradient(left, #DFDFDF, #DFDFDF 50%, #ffffff 50%);
  background-image: linear-gradient(to right, #DFDFDF, #DFDFDF 50%, #ffffff 50%);
}

.pl-portfolio-item-content-icon a:hover {
  background-position: 0;
  -webkit-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  -o-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
}

.pl-portfolio-inner::before {
  display: block;
  content: "";
  width: 150px;
  height: 1px;
  position: absolute;
  top: 70px;
  left: 50px;
  transition: all 0.3s ease 0s;
  background-color: var(--clr-common-white);
  transform: scale(0);
  transform-origin: top left;
}
@media (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1023px), only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-portfolio-inner::before {
    top: 45px;
    left: 25px;
    width: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .pl-portfolio-inner::before {
    top: 60px;
    left: 40px;
    width: 120px;
  }
}
.pl-portfolio-inner::after {
  display: block;
  content: "";
  width: 1px;
  height: 150px;
  position: absolute;
  top: 50px;
  left: 70px;
  transition: all 0.3s ease 0s;
  background-color: var(--clr-common-white);
  transform: scale(0);
  transform-origin: top left;
}
@media (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1023px), only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-portfolio-inner::after {
    top: 25px;
    left: 45px;
    height: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .pl-portfolio-inner::after {
    top: 40px;
    left: 60px;
    height: 120px;
  }
}

.pl-portfolio-inner-2::before {
  display: block;
  content: "";
  width: 150px;
  height: 1px;
  position: absolute;
  bottom: 70px;
  right: 50px;
  transition: all 0.3s ease 0s;
  background-color: var(--clr-common-white);
  transform: scale(0);
  transform-origin: bottom right;
}
@media (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1023px), only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-portfolio-inner-2::before {
    bottom: 45px;
    right: 25px;
    width: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .pl-portfolio-inner-2::before {
    bottom: 60px;
    right: 40px;
    width: 120px;
  }
}
.pl-portfolio-inner-2::after {
  display: block;
  content: "";
  width: 1px;
  height: 150px;
  position: absolute;
  bottom: 50px;
  right: 70px;
  transition: all 0.3s ease 0s;
  background-color: var(--clr-common-white);
  transform: scale(0);
  transform-origin: bottom right;
}
@media (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1023px), only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-portfolio-inner-2::after {
    bottom: 25px;
    right: 45px;
    height: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .pl-portfolio-inner-2::after {
    bottom: 40px;
    right: 60px;
    height: 120px;
  }
}

.pl-portfolio-item:hover .pl-portfolio-inner::before,
.pl-portfolio-item:hover .pl-portfolio-inner::after,
.pl-portfolio-item:hover .pl-portfolio-inner-2::before,
.pl-portfolio-item:hover .pl-portfolio-inner-2::after {
  transform: scale(1);
}

.pl-about-portfolio .pl-portfolio-item-img {
  border-radius: 8px;
  overflow: hidden;
}
.pl-about-portfolio .pl-portfolio-item::after {
  background: linear-gradient(to bottom right, rgba(53, 1, 99, 0.7), rgba(94, 65, 255, 0.7));
  border-radius: 8px;
}
.pl-about-portfolio .pl-about-portfolio-item-content {
  position: absolute;
  bottom: 0;
  left: 30px;
  z-index: 10;
  opacity: 0;
  transition: all 0.4s ease;
}
.pl-about-portfolio .pl-portfolio-item:hover .pl-about-portfolio-item-content {
  opacity: 1;
  bottom: 30px;
}
.pl-about-portfolio .pl-portfolio-item-content-title {
  color: var(--clr-common-white);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.41;
  margin-bottom: 0;
}
.pl-about-portfolio .pl-about-portfolio-item-content span {
  color: var(--clr-common-white);
  font-size: 16px;
}
.pl-about-portfolio .pl-portfolio-menu button {
  padding: 5px 15px;
  border: 1px solid var(--clr-bg-gray-9);
  border-radius: 8px;
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  line-height: 1.71;
  position: relative;
  margin-bottom: 20px;
}
.pl-about-portfolio .pl-portfolio-menu button.active {
  color: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
}
.pl-about-portfolio .pl-portfolio-menu button span {
  display: none;
}
.pl-about-portfolio .pl-portfolio-menu button.active span {
  position: absolute;
  top: -6px;
  right: 6px;
  background: var(--clr-bg-gray);
  font-size: 10px;
  display: inline-block;
  line-height: 1.2;
  width: 18px;
}

.pl-portfolio-section {
  background-color: var(--clr-common-white);
}
.pl-portfolio-section .pl-portfolio-item {
  border-radius: 10px;
}
.pl-portfolio-section .pl-portfolio-item-img {
  border-radius: 8px;
  overflow: hidden;
}
.pl-portfolio-section .pl-portfolio-item::after {
  background: linear-gradient(to bottom right, rgba(53, 1, 99, 0.7), rgba(94, 65, 255, 0.7));
  border-radius: 8px;
}
.pl-portfolio-section .pl-about-portfolio-item-content {
  position: absolute;
  top: 60%;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  text-align: center;
  right: 0;
}
.pl-portfolio-section .pl-portfolio-item:hover .pl-about-portfolio-item-content {
  opacity: 1;
  top: 50%;
}
.pl-portfolio-section .pl-portfolio-item-content-title {
  color: var(--clr-common-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0;
}
.pl-portfolio-section .pl-about-portfolio-item-content span {
  color: var(--clr-common-white);
  font-size: 16px;
}
.pl-portfolio-section .pl-portfolio-menu button {
  padding: 5px 15px;
  border: 1px solid var(--clr-bg-gray-9);
  border-radius: 8px;
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  line-height: 1.71;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .pl-portfolio-section .pl-portfolio-menu button {
    margin-bottom: 15px;
    margin-right: 10px;
  }
}
.pl-portfolio-section .pl-portfolio-menu button.active {
  color: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
}
.pl-portfolio-section .pl-portfolio-menu button span {
  display: none;
}
.pl-portfolio-section .pl-portfolio-menu button.active span {
  position: absolute;
  top: -6px;
  right: 6px;
  background: var(--clr-bg-gray);
  font-size: 10px;
  display: inline-block;
  line-height: 1.2;
  width: 18px;
}

.pl-portfolio-contact-area {
  background-color: var(--clr-bg-gray);
}

/*
************
*************************
08. portfolio details
******************************************************* 
*************************************************************** */
.pl-portfolio-details-img {
  overflow: hidden;
  border-radius: 10px;
}
.pl-portfolio-details-title {
  font-size: 34px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .pl-portfolio-details-title {
    font-size: 30px;
  }
}
.pl-portfolio-details-content p {
  margin-bottom: 15px;
  color: var(--clr-bg-gray-9);
}
.pl-portfolio-details-content-list p {
  margin-bottom: 15px;
  color: var(--clr-bg-gray-9);
}
.pl-portfolio-details-content-list p:last-child {
  margin-bottom: 0;
}
.pl-portfolio-details-content-list ul li {
  color: var(--clr-bg-gray-9);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  display: flex;
}
.pl-portfolio-details-content-list ul li i {
  margin-right: 10px;
  margin-top: 5px;
  color: var(--clr-theme-primary);
}
.pl-portfolio-details-content-img {
  border-radius: 10px;
  overflow: hidden;
}
.pl-portfolio-details-item {
  padding: 40px 30px;
  background: var(--clr-bg-gray);
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-portfolio-details-item {
    padding: 30px 20px;
  }
}
.pl-portfolio-details-item-icon {
  margin-bottom: 25px;
  transition: 0.8s;
}
.pl-portfolio-details-item-icon svg {
  color: var(--clr-theme-primary);
}
.pl-portfolio-details-item:hover .pl-portfolio-details-item-icon {
  transform: translateY(-10px);
}
.pl-portfolio-details-item-content-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.pl-portfolio-details-item-content-title:hover {
  color: var(--clr-theme-primary);
}
.pl-portfolio-details-item-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-bg-gray-9);
}
.pl-portfolio-details-challeng ul li {
  color: var(--clr-bg-gray-9);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  display: flex;
}
.pl-portfolio-details-challeng ul li:last-child {
  margin-bottom: 0;
}
.pl-portfolio-details-challeng ul li i {
  margin-right: 10px;
  margin-top: 5px;
  color: var(--clr-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-portfolio-details-right {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-portfolio-details-right {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-portfolio-details-right {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-portfolio-details-right {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .pl-portfolio-details-right {
    margin-left: 0;
  }
}
.pl-portfolio-details-right-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
}
.pl-portfolio-details-right-box {
  background: var(--clr-bg-gray);
  padding: 35px 40px;
  border-radius: 10px;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-portfolio-details-right-box {
    padding: 30px 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-portfolio-details-right-box {
    padding: 30px 25px;
  }
}
@media (max-width: 767px) {
  .pl-portfolio-details-right-box {
    padding: 35px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-portfolio-details-right-box {
    padding: 35px 40px;
  }
}
.pl-portfolio-details-right-table-item {
  color: var(--clr-bg-gray-9);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  overflow: hidden;
  clear: both;
  position: relative;
  border-bottom: 1px solid var(--clr-bg-gray-5);
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.pl-portfolio-details-right-table-item::after {
  position: absolute;
  content: ":";
  top: 0;
  left: 50%;
}
.pl-portfolio-details-right-table-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.pl-portfolio-details-right-table-item span {
  color: var(--clr-bg-gray-9);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  float: right;
  display: inline-block;
  text-align: right;
}
.pl-portfolio-details-right-service {
  position: relative;
  border-radius: 10px;
  background-image: url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601066/html/assets/img/portfolio/portfolio-details-3.jpg');
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  padding: 50px 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-portfolio-details-right-service {
    padding: 50px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-portfolio-details-right-service {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-portfolio-details-right-service {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .pl-portfolio-details-right-service {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-portfolio-details-right-service {
    padding: 50px 55px;
  }
}
.pl-portfolio-details-right-service::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(53, 1, 99, 0.8), rgba(94, 65, 255, 0.8));
  border-radius: 10px;
}
.pl-portfolio-details-right-service-content {
  z-index: 10;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 45px;
}
.pl-portfolio-details-right-service-content-title {
  font-size: 20px;
  color: var(--clr-common-white);
  font-weight: 500;
  line-height: 1.3;
}
.pl-portfolio-details-right-service-content p {
  color: #F5F5F5;
  margin-bottom: 0;
}
.pl-portfolio-details-right-service-content::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #DCDCDC;
}
.pl-portfolio-details-right-service-info {
  z-index: 10;
  position: relative;
}
.pl-portfolio-details-right-service-info-title {
  font-size: 16px;
  color: var(--clr-common-white);
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1.6;
}
.pl-portfolio-details-right-service-info span {
  color: var(--clr-common-white);
  font-size: 14px;
  margin-bottom: 25px;
  display: block;
  line-height: 1.7;
}

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1023px), only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-portfolio-details-content-list.pl-10 {
    padding-left: 0;
  }
}

/*
************
*************************
09. qualific
******************************************************* 
*************************************************************** */
.pl-qualific-item {
  padding: 30px;
  box-shadow: 0 3px 10px rgba(22, 22, 22, 0.08);
}
.pl-qualific-item-img {
  margin-bottom: 32px;
}
.pl-qualific-item-content {
  text-align: center;
}
.pl-qualific-item-content-title {
  font-size: 24px;
  line-height: 1.4;
  color: var(--clr-theme-primary);
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .pl-qualific-item-content-title {
    font-size: 22px;
  }
}
.pl-qualific-item-content span {
  font-size: 12px;
  color: var(--clr-bg-gray-9);
  line-height: 1;
  display: inline-block;
  margin-bottom: 25px;
}
.pl-qualific-item-content-text {
  color: var(--clr-bg-gray-9);
  font-size: 16px;
  margin-bottom: 20px;
}

.pl-qualific-box {
  position: relative;
}

.pl-qualific-box-icon {
  width: 150px;
  height: 150px;
  background: var(--clr-bg-gray);
  text-align: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  transition: all 0.4s ease;
}

.pl-qualific-bottom .pl-qualific-box-icon {
  bottom: 20px;
  left: 0;
  right: 0;
  top: auto;
}

.pl-qualific-box-icon i {
  font-size: 60px;
  color: var(--clr-theme-primary);
}

.pl-top-angle {
  width: 45px;
  height: 45px;
  background: var(--clr-common-white);
  border-radius: 50%;
  text-align: center;
  line-height: 46px;
  margin: auto;
  box-shadow: 0 3px 10px rgba(22, 22, 22, 0.08);
  z-index: 10;
  position: relative;
}

.pl-qualific-box.pl-qualific-bottom .pl-top-angle {
  margin-top: -20px;
}

.pl-qualific-box.pl-qualific-top .pl-top-angle {
  margin-bottom: -20px;
}

.pl-top-angle i {
  color: var(--clr-theme-primary);
  font-size: 16px;
  line-height: 1;
}

.pl-qualific-box .pl-qualific-item {
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease 0s;
}
@media (max-width: 767px) {
  .pl-qualific-box .pl-qualific-item {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
    visibility: visible;
    z-index: 9;
    position: relative;
    background-color: #fff;
  }
}

.pl-qualific-box.pl-qualific-bottom .pl-qualific-item {
  transform-origin: bottom;
}

.pl-qualific-box.item-active .pl-qualific-item {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.pl-qualific-box.item-active .pl-qualific-box-icon {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.pl-section .pl-section-title.pl-right-border {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  padding-right: 30px;
}
.pl-section .pl-section-title.pl-right-border::after {
  position: absolute;
  content: "";
  right: 0;
  top: 12px;
  width: 1px;
  height: 40px;
  background-color: var(--clr-bg-gray-9);
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-section .pl-section-title.pl-right-border::after {
    top: 9px;
    height: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-section .pl-section-title.pl-right-border::after {
    top: 9px;
    height: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-section .pl-section-title.pl-right-border::after {
    top: 8px;
    height: 32px;
  }
}
@media (max-width: 767px) {
  .pl-section .pl-section-title.pl-right-border::after {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-section .pl-section-title.pl-right-border::after {
    display: block;
    height: 30px;
    top: 6px;
  }
}
@media (max-width: 767px) {
  .pl-section .pl-section-title.pl-right-border {
    margin-right: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-section .pl-section-title.pl-right-border {
    margin-right: 20px;
    padding-right: 20px;
  }
}

.pl-qualific-tab .pl-section .nav-link .pl-section-title {
  text-decoration: line-through;
}

.pl-qualific-tab .pl-section .nav-link.active .pl-section-title {
  text-decoration: none;
}

@media (max-width: 767px) {
  .pl-section #nav-tab {
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-section #nav-tab {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .pl-section #nav-tab .pl-right-border.mb-20 {
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-section #nav-tab .pl-right-border.mb-20 {
    margin-bottom: 20px;
  }
}

.pl-qualific-tab #nav-home-tab {
  border: none;
  padding: 0;
  margin: 0;
}
.pl-qualific-tab #nav-profile-tab {
  border: none;
  padding: 0;
  margin: 0;
}
.pl-qualific-tab #nav-tab {
  border: none;
  justify-content: center;
}

/*
************
*************************
10. skill
******************************************************* 
*************************************************************** */
.pl-skill-area {
  background-color: var(--clr-bg-gray);
}
.pl-skill-img {
  position: relative;
  border-radius: 8px;
  background-image: url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601066/html/assets/img/skill/skill.jpg');
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 165px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-skill-img {
    padding-right: 100px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-skill-img {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-skill-img {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .pl-skill-img {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-skill-img {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.pl-skill-img-content {
  z-index: 10;
  position: relative;
}
.pl-skill-img-content-subtitle {
  color: var(--clr-bg-gray-4);
  display: inline-block;
  margin-bottom: 5px;
  line-height: 1.5;
}
.pl-skill-img-content-title {
  color: var(--clr-common-white);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-skill-img-content-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .pl-skill-img-content-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-skill-img-content-title {
    font-size: 34px;
  }
}
.pl-skill-img-content-text {
  color: var(--clr-bg-gray-5);
  font-family: "Nunito Sans", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-skill-img-content-text {
    margin-bottom: 30px;
  }
}
.pl-skill-img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 22, 0.6);
  border-radius: 8px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-skill-content.ml-55 {
    margin-left: 40px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-skill-content.ml-55 {
    margin-left: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-skill-content.ml-55 {
    margin-left: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-skill-content.ml-55 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .pl-skill-content.ml-55 {
    margin-left: 0;
  }
}

.pl-transparent-btn {
  border: 1px solid var(--clr-common-white);
  color: var(--clr-common-white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 45px;
  display: inline-block;
  border-radius: 8px;
  line-height: 1.25;
  font-family: "Raleway", sans-serif;
  background-color: transparent;
}
.pl-transparent-btn:hover {
  background-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-primary);
}

/*
************
*************************
11. testimonial
******************************************************* 
*************************************************************** */
.pl-testimonial-box {
  text-align: center;
  padding: 0 5px;
}
.pl-testimonial-author-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.pl-testimonial-author-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.pl-testimonial-author-info-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.4;
  text-transform: capitalize;
}
.pl-testimonial-author-info span {
  color: var(--clr-theme-primary);
  font-size: 16px;
  line-height: 1;
}
.pl-testimonial-text {
  color: var(--clr-bg-gray-9);
}

.swiper-container .swiper-pagination-bullets {
  bottom: 0;
  line-height: 1;
}
.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 5px !important;
}
.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--clr-theme-primary);
}

.pl-about-testimonial .pl-testimonial-box {
  padding: 60px 85px 125px;
  text-align: start;
  border: 1px solid var(--clr-bg-gray-4);
  border-radius: 8px;
  margin-bottom: 1px;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-about-testimonial .pl-testimonial-box {
    padding: 40px 50px 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-about-testimonial .pl-testimonial-box {
    padding: 40px 50px 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-about-testimonial .pl-testimonial-box {
    padding: 40px 50px 80px;
  }
}
@media (max-width: 767px) {
  .pl-about-testimonial .pl-testimonial-box {
    padding: 40px 30px 80px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-about-testimonial .pl-testimonial-content {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-about-testimonial .pl-testimonial-content {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-about-testimonial .pl-testimonial-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .pl-about-testimonial .pl-testimonial-content {
    margin-left: 0;
  }
}
.pl-about-testimonial .pl-testimonial-author-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-about-testimonial .pl-testimonial-author-img {
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pl-about-testimonial .pl-testimonial-author-img {
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
  }
}
.pl-about-testimonial .pl-testimonial-author-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.pl-about-testimonial .pl-testimonial-content-quote {
  font-size: 40px;
  color: var(--clr-theme-primary);
  display: inline-block;
  line-height: 1;
}
.pl-about-testimonial .pl-testimonial-text {
  color: var(--clr-body-heading);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  margin-bottom: 25px;
  line-height: 1.41;
}
@media (max-width: 767px) {
  .pl-about-testimonial .pl-testimonial-text {
    font-size: 20px;
    line-height: 1.5;
  }
}
.pl-about-testimonial .pl-testimonial-author-info h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.62;
  text-transform: capitalize;
  color: var(--clr-body-text);
  position: relative;
  margin-left: 80px;
}
.pl-about-testimonial .pl-testimonial-author-info h4::before {
  position: absolute;
  content: "";
  left: -80px;
  top: 50%;
  width: 60px;
  height: 1px;
  background-color: var(--clr-bg-gray-12);
  transform: translateY(-50%);
}
.pl-about-testimonial .swiper-container .swiper-pagination-bullets {
  bottom: 55px;
  line-height: 1;
  z-index: 10;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-about-testimonial .swiper-container .swiper-pagination-bullets {
    bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-about-testimonial .swiper-container .swiper-pagination-bullets {
    bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-about-testimonial .swiper-container .swiper-pagination-bullets {
    bottom: 40px;
  }
}
@media (max-width: 767px) {
  .pl-about-testimonial .swiper-container .swiper-pagination-bullets {
    bottom: 40px;
  }
}
.pl-about-testimonial .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 4px;
  margin: 0 5px !important;
  background: var(--clr-bg-gray-12);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.pl-about-testimonial .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--clr-theme-primary);
  width: 25px;
}

/*
************
*************************
12. counter
******************************************************* 
*************************************************************** */
.pl-counter-area {
  background-color: var(--clr-bg-gray);
}
.pl-counter-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-counter-item {
    justify-content: center !important;
  }
}
@media (max-width: 767px) {
  .pl-counter-item {
    justify-content: center !important;
  }
}
.pl-counter-item-icon i {
  color: var(--clr-theme-primary);
  font-size: 60px;
}
.pl-counter-item-count {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}
.pl-counter-item-label {
  font-size: 16px;
  color: var(--clr-body-text);
  line-height: 1;
}

.pl-about-counter {
  background-color: var(--clr-common-white);
}

.pl-counter-item-icon i {
  display: inline-block;
  color: #5f41ff;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#161616), color-stop(50%, #161616), color-stop(50%, #5f41ff));
  background-image: -o-linear-gradient(left, #161616, #161616 50%, #5f41ff 50%);
  background-image: linear-gradient(to right, #161616, #161616 50%, #5f41ff 50%);
}

.pl-counter-item:hover .pl-counter-item-icon i {
  background-position: 0;
  -webkit-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  -o-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
}

/*
************
*************************
13. blog
******************************************************* 
*************************************************************** */
.pl-blog-item {
  box-shadow: 0 3px 10px rgba(22, 22, 22, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.pl-blog-item-img {
  overflow: hidden;
  position: relative;
}
.pl-blog-item-img img {
  transition: all 0.3s linear 0s;
  transform: scale(1);
}
.pl-blog-item-content {
  padding: 25px 30px 30px;
  background: var(--clr-common-white);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media (max-width: 767px) {
  .pl-blog-item-content {
    padding: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-blog-item-content {
    padding: 30px;
  }
}
.pl-blog-item-content-meta {
  margin-bottom: 5px;
}
.pl-blog-item-content-meta span {
  font-size: 14px;
  color: var(--clr-bg-gray-9);
  margin-right: 35px;
  display: inline-block;
}
@media (max-width: 767px) {
  .pl-blog-item-content-meta span {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-blog-item-content-meta span {
    margin-right: 20px;
  }
}
.pl-blog-item-content-meta span i {
  color: var(--clr-theme-primary);
  margin-right: 10px;
}
.pl-blog-item-content-meta p {
  font-size: 14px;
  color: var(--clr-bg-gray-9);
  display: inline-block;
  margin-bottom: 0;
}
.pl-blog-item-content-meta p i {
  color: var(--clr-theme-primary);
  margin-right: 10px;
}
.pl-blog-item-content-title {
  font-size: 24px;
  line-height: 1.5;
  transition: all 0.3s ease;
  font-weight: 700;
}
.pl-blog-item-content-title:hover a {
  color: var(--clr-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-blog-item-content-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-blog-item-content-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .pl-blog-item-content-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-blog-item-content-title {
    font-size: 22px;
  }
}
.pl-blog-item-content-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pl-blog-item-content-author .pl-admin {
  display: flex;
  align-items: center;
}
.pl-blog-item-content-author .pl-admin img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-right: 10px;
}
.pl-blog-item-content-author .pl-admin a {
  color: var(--clr-body-text);
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}
.pl-blog-item-content-author .pl-admin a:hover {
  color: var(--clr-theme-primary);
}
.pl-blog-item-content-author .pl-read-btn {
  font-size: 14px;
  color: var(--clr-body-text);
  font-weight: 500;
  transition: all 0.3s ease;
}
.pl-blog-item-content-author .pl-read-btn i {
  margin-left: 10px;
  font-size: 10px;
}
.pl-blog-item-content-author .pl-read-btn:hover {
  color: var(--clr-theme-primary);
}

.pl-blog-item-img a::before, .pl-blog-item-img a::after {
  content: "";
  background: #fff;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  -o-transition-duration: 1s;
  -webkit-transition-duration: 1s !important;
  transition-duration: 1s !important;
}

.pl-blog-item-img a::after {
  top: 0;
  opacity: 0.7;
  left: 0;
}

.pl-blog-item-img a::before {
  right: 0;
  opacity: 1;
  bottom: 0;
}

.pl-blog-item:hover .pl-blog-item-img a::after, .pl-blog-item:hover .pl-blog-item-img a::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}

.pl-blog-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(22, 22, 22, 0.08);
}
.pl-blog-box-img {
  overflow: hidden;
  position: relative;
}
.pl-blog-box-content {
  padding: 50px;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-blog-box-content {
    padding: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-blog-box-content {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .pl-blog-box-content {
    padding: 40px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-blog-box-content {
    padding: 40px;
  }
}
.pl-blog-box-content-meta a {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-right: 40px;
  color: var(--clr-bg-gray-9);
  margin-bottom: 10px;
}
.pl-blog-box-content-meta a img {
  margin-right: 10px;
  border-radius: 50%;
}
.pl-blog-box-content-meta a:hover {
  color: var(--clr-theme-primary);
}
@media (max-width: 767px) {
  .pl-blog-box-content-meta a {
    margin-right: 20px;
  }
}
.pl-blog-box-content-meta span {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-right: 40px;
  color: var(--clr-bg-gray-9);
  margin-bottom: 10px;
}
.pl-blog-box-content-meta span i {
  margin-right: 10px;
  color: var(--clr-theme-primary);
  display: inline-block;
}
@media (max-width: 767px) {
  .pl-blog-box-content-meta span {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-blog-box-content-meta span {
    margin-left: 20px;
  }
}
.pl-blog-box-content-title {
  font-size: 34px;
  line-height: 1.3;
}
.pl-blog-box-content-title:hover {
  color: var(--clr-theme-primary);
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-blog-box-content-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-blog-box-content-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .pl-blog-box-content-title {
    font-size: 22px;
    line-height: 1.45;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-blog-box-content-title {
    font-size: 25px;
    line-height: 1.45;
  }
}
.pl-blog-box-content-text {
  font-size: 16px;
  color: var(--clr-bg-gray-9);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-blog-sidebar {
    margin-left: 35px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-blog-sidebar {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-blog-sidebar {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-blog-sidebar {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .pl-blog-sidebar {
    margin-left: 0;
  }
}
.pl-blog-widget-search {
  position: relative;
}
.pl-blog-widget-search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding-left: 20px;
  padding-right: 60px;
  border-radius: 4px;
  border: 1px solid var(--clr-bg-gray-3);
}
.pl-blog-widget-search input:focus {
  border-color: var(--clr-theme-primary);
}
.pl-blog-widget-search button {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  padding: 0 20px;
  background: transparent;
  border: none;
  line-height: 60px;
  color: var(--clr-bg-gray-9);
}
.pl-blog-widget-search button:hover {
  color: var(--clr-theme-primary);
}
.pl-blog-widget-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
.pl-blog-widget-title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 60px;
  height: 1px;
  background: var(--clr-theme-primary);
}
.pl-blog-widget-post {
  display: flex;
  gap: 15px;
}
.pl-blog-widget-post-img {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  position: relative;
}
.pl-blog-widget-post-info-title {
  font-size: 16px;
  line-height: 1.62;
  margin-bottom: 5px;
  font-weight: 500;
}
.pl-blog-widget-post-info-title:hover {
  color: var(--clr-theme-primary);
}
.pl-blog-widget-post-info span {
  color: var(--clr-bg-gray-9);
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  line-height: 1.7;
}
.pl-blog-widget-category a {
  display: block;
  color: var(--clr-bg-gray-9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 5px;
}
.pl-blog-widget-category a:last-child {
  margin-bottom: 0;
}
.pl-blog-widget-category a i {
  margin-right: 10px;
  display: inline-block;
  color: var(--clr-theme-primary);
}
.pl-blog-widget-category a:hover {
  color: var(--clr-theme-primary);
}
.pl-blog-widget-tag a {
  display: inline-block;
  height: 30px;
  border: 1px solid var(--clr-bg-gray-3);
  padding: 0 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-right: 5px;
  font-size: 14px;
  color: var(--clr-bg-gray-9);
  line-height: 30px;
}
.pl-blog-widget-tag a:hover {
  background-color: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}

.pl-blog-box-img a::before, .pl-blog-box-img a::after {
  content: "";
  background: #fff;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  transition-duration: 1s !important;
}

.pl-blog-box-img a::after {
  top: 0;
  opacity: 0.7;
  left: 0;
}

.pl-blog-box-img a::before {
  right: 0;
  opacity: 1;
  bottom: 0;
}

.pl-blog-box:hover .pl-blog-box-img a::after, .pl-blog-box:hover .pl-blog-box-img a::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}

.pl-blog-widget-post-img a::before, .pl-blog-widget-post-img a::after {
  content: "";
  background: #fff;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  transition-duration: 1s !important;
}

.pl-blog-widget-post-img a::after {
  top: 0;
  opacity: 0.7;
  left: 0;
}

.pl-blog-widget-post-img a::before {
  right: 0;
  opacity: 1;
  bottom: 0;
}

.pl-blog-widget-post:hover .pl-blog-widget-post-img a::after, .pl-blog-widget-post:hover .pl-blog-widget-post-img a::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}

.pl-pagination-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px solid var(--clr-bg-gray-3);
  margin-right: 10px;
  text-align: center;
  line-height: 50px;
  color: var(--clr-bg-gray-9);
  font-weight: 500;
  border-radius: 4px;
}

.pl-pagination-btn:hover {
  background-color: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}

.pl-pagination-btn.active {
  background-color: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}

/*
************
*************************
14. blog details
******************************************************* 
*************************************************************** */
.pl-blog-details-wrapper {
  border: 1px solid var(--clr-bg-gray-3);
  border-radius: 10px;
  overflow: hidden;
}
.pl-blog-details-content {
  padding: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-blog-details-content {
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .pl-blog-details-content {
    padding: 40px 25px;
  }
}
.pl-blog-details-content-meta a {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-right: 40px;
  color: var(--clr-bg-gray-9);
  margin-bottom: 10px;
}
.pl-blog-details-content-meta a img {
  margin-right: 10px;
  border-radius: 50%;
}
.pl-blog-details-content-meta a:hover {
  color: var(--clr-theme-primary);
}
@media (max-width: 767px) {
  .pl-blog-details-content-meta a {
    margin-right: 20px;
  }
}
.pl-blog-details-content-meta span {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-right: 40px;
  color: var(--clr-bg-gray-9);
  margin-bottom: 10px;
}
.pl-blog-details-content-meta span i {
  margin-right: 10px;
  color: var(--clr-theme-primary);
  display: inline-block;
}
@media (max-width: 767px) {
  .pl-blog-details-content-meta span {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-blog-details-content-meta span {
    margin-left: 20px;
  }
}
.pl-blog-details-content-title {
  font-size: 34px;
  line-height: 1.3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-blog-details-content-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-blog-details-content-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-blog-details-content-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-blog-details-content-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .pl-blog-details-content-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-blog-details-content-title {
    font-size: 26px;
  }
}
.pl-blog-details-content-text {
  font-size: 16px;
  color: var(--clr-bg-gray-9);
}
.pl-blog-details-tag-title {
  font-size: 16px;
  color: var(--clr-theme-primary);
  font-weight: 400;
  line-height: 1.62;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
}
.pl-blog-details-tag-list {
  display: inline-block;
}
.pl-blog-details-tag-list a {
  display: inline-block;
  height: 30px;
  border: 1px solid var(--clr-bg-gray-3);
  padding: 0 10px;
  border-radius: 4px;
  margin-right: 5px;
  font-size: 14px;
  color: var(--clr-bg-gray-9);
  line-height: 30px;
}
.pl-blog-details-tag-list a:hover {
  background-color: var(--clr-theme-primary);
  border-color: var(--clr-theme-primary);
  color: var(--clr-common-white);
}
.pl-blog-quote {
  background: var(--clr-bg-gray);
  padding: 40px 40px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .pl-blog-quote {
    padding: 30px 25px;
  }
}
.pl-blog-quote-icon {
  color: var(--clr-theme-primary);
  display: inline-block;
  font-size: 40px;
}
.pl-blog-quote-text {
  font-size: 20px;
  line-height: 1.5;
  font-family: "Mulish", sans-serif;
}
.pl-blog-quote-author {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-theme-primary);
  line-height: 1.62;
  margin-left: 95px;
  font-family: "Roboto", sans-serif;
}
.pl-blog-quote-author::before {
  position: absolute;
  content: "";
  left: -95px;
  top: 50%;
  width: 80px;
  height: 1px;
  background-color: var(--clr-bg-gray-12);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .pl-blog-quote-author {
    margin-left: 70px;
  }
  .pl-blog-quote-author::before {
    left: -70px;
    width: 55px;
  }
}

/* comment area  */
.blog-details-comments-title {
  font-size: 24px;
  color: #161616;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .blog-details-comments-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-comments-title {
    font-size: 22px;
  }
}

.pl-comments-box-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 20px;
  border: 1px solid var(--clr-theme-primary);
}
@media (max-width: 767px) {
  .pl-comments-box-author-img {
    float: none;
    margin-bottom: 20px;
  }
}
.pl-comments-box-author-content {
  overflow: hidden;
}
.pl-comments-box-author-content .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}
.pl-comments-box-author-content .title a {
  color: #161616;
}
.pl-comments-box-author-content .title a:hover {
  color: var(--clr-theme-primary);
}
.pl-comments-box-author-content p {
  font-size: 16px;
  margin-bottom: 17px;
  color: var(--clr-bg-gray-9);
}
.pl-comments-box-author-content .date {
  font-size: 14px;
  display: block;
  margin-bottom: 17px;
  color: var(--clr-bg-gray-9);
  line-height: 1.6;
}
.pl-comments-box-single {
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--clr-bg-gray-3);
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-comments-box-single {
    padding: 40px 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-comments-box-single {
    padding: 40px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-comments-box-single {
    padding: 40px 40px;
  }
}
@media (max-width: 767px) {
  .pl-comments-box-single {
    padding: 40px 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .children.ml-130 {
    margin-left: 100px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .children.ml-130 {
    margin-left: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .children.ml-130 {
    margin-left: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .children.ml-130 {
    margin-left: 60px;
  }
}
@media (max-width: 767px) {
  .children.ml-130 {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .children.ml-130 {
    margin-left: 30px;
  }
}

.pl-reply-btn a {
  color: var(--clr-bg-gray-9);
}
.pl-reply-btn a span {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
}
.pl-reply-btn a i {
  display: inline-block;
  transform: rotateY(180deg);
}
.pl-reply-btn a:hover {
  color: var(--clr-theme-primary);
}

.blog-replay-form input, .blog-replay-form textarea {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  margin-bottom: 20px;
  border: 1px solid var(--clr-bg-gray-3);
  font-size: 14px;
  color: var(--clr-bg-gray-9);
  border-radius: 8px;
}
.blog-replay-form input:focus, .blog-replay-form textarea:focus {
  border-color: var(--clr-theme-primary);
}
.blog-replay-form textarea {
  height: 120px;
}

.blog-replay-form textarea {
  height: 180px;
}

/*
************
*************************
15. cta
******************************************************* 
*************************************************************** */
.pl-cta-area {
  margin-bottom: -125px;
  position: relative;
  z-index: 5;
}
.pl-cta-wrapper {
  background: var(--clr-theme-primary);
  padding: 75px 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-cta-wrapper {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .pl-cta-wrapper {
    padding: 40px 30px;
    padding-top: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-cta-wrapper {
    padding: 50px 40px;
    padding-top: 45px;
  }
}
.pl-cta-content-title {
  font-size: 36px;
  color: var(--clr-common-white);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-cta-content-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .pl-cta-content-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-cta-content-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .pl-cta-content {
    margin-bottom: 25px;
  }
}
.pl-cta-btn {
  text-align: end;
}
@media (max-width: 767px) {
  .pl-cta-btn {
    text-align: start;
  }
}

.pl-white-btn {
  background: var(--clr-common-white);
  color: var(--clr-theme-primary);
  font-size: 16px;
  font-weight: 500;
  padding: 20px 50px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
}
.pl-white-btn:hover {
  background: var(--clr-theme-primary);
  color: var(--clr-common-white);
  border-color: var(--clr-common-white);
}

.pl-about-cta-section {
  background-color: var(--clr-theme-primary);
  padding: 50px;
}
@media (max-width: 767px) {
  .pl-about-cta-section {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-about-cta-section {
    padding: 50px;
  }
}
.pl-about-cta-section.pl-cta-area {
  margin-bottom: 0;
}
.pl-about-cta-section .pl-cta-wrapper {
  background: var(--clr-theme-primary);
  padding: 0;
  border-radius: 0;
}

/*
************
*************************
16. brand
******************************************************* 
*************************************************************** */
.pl-brand-img {
  transition: all 0.3s ease;
}

.pl-brand-img {
  display: flex;
  gap: 15px;
  cursor: pointer;
}
@media (max-width: 480px) {
  .pl-brand-img {
    justify-content: center;
  }
}

.pl-brand-img-info {
  position: relative;
  width: 45%;
}
@media (max-width: 480px) {
  .pl-brand-img-info {
    width: 135px;
  }
}

.pl-brand-img-info img {
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.4s;
  transform: translate(-50%, -50%);
}

.pl-brand-img-info img:first-child {
  top: -100%;
}

.pl-brand-img:hover .pl-brand-img-info img:first-child {
  top: 50%;
}

.pl-brand-img:hover .pl-brand-img-info img:last-child {
  top: 150%;
}

/*
************
*************************
17. breadcrumb
******************************************************* 
*************************************************************** */
.breadcrumb-height {
  min-height: 480px;
}
@media (max-width: 767px) {
  .breadcrumb-height {
    min-height: 320px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-height {
    min-height: 380px;
  }
}

.pl-breadcrumb-banner {
  position: relative;
}
.pl-breadcrumb-banner::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.79);
}
.pl-breadcrumb-banner .pl-breadcrumb-wrap {
  position: relative;
  z-index: 5;
}
.pl-breadcrumb-banner .pl-breadcrumb-title {
  color: var(--clr-common-white);
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .pl-breadcrumb-banner .pl-breadcrumb-title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-breadcrumb-banner .pl-breadcrumb-title {
    font-size: 40px;
  }
}
.pl-breadcrumb-banner .pl-breadcrumb-list a {
  color: var(--clr-bg-gray-14);
  display: inline-block;
  position: relative;
  margin-right: 5px;
  padding-right: 10px;
}
.pl-breadcrumb-banner .pl-breadcrumb-list a::after {
  position: absolute;
  content: "";
  top: 9px;
  right: 0;
  height: 10px;
  width: 1px;
  background-color: var(--clr-bg-gray-14);
}
.pl-breadcrumb-banner .pl-breadcrumb-list a:hover {
  color: var(--clr-common-white);
}
.pl-breadcrumb-banner .pl-breadcrumb-list span {
  color: var(--clr-common-white);
  display: inline-block;
}

/*
************
*************************
18. process
******************************************************* 
*************************************************************** */
.pl-process-area {
  background: var(--clr-bg-gray);
}
.pl-process-item {
  border: 3px solid var(--clr-bg-gray-4);
  border-radius: 25px;
  margin-right: 55px;
  position: relative;
  transition: all 0.5s ease;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-process-item {
    margin-right: 65px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-process-item {
    margin-right: 65px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-process-item {
    margin-right: 65px;
  }
}
.pl-process-item-icon {
  background: var(--clr-bg-gray-4);
  width: 70px;
  height: 70px;
  position: absolute;
  top: -35px;
  right: 50px;
  border-radius: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
  transition: all 0.6s ease;
}
.pl-process-item-icon svg {
  color: var(--clr-theme-primary);
  transition: all 0.5s ease;
}
.pl-process-item-number {
  position: absolute;
  top: 44%;
  right: -48px;
  transform: translateY(-44%);
}
.pl-process-item-number-title {
  font-size: 36px;
  margin-bottom: 0;
  color: var(--clr-bg-gray-9);
  transition: all 0.5s ease;
}
.pl-process-item-text {
  padding: 60px 40px 30px;
}
.pl-process-item-text-title {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.4;
  color: var(--clr-bg-gray-9);
  transition: all 0.5s ease;
}
.pl-process-item-inner::after {
  position: absolute;
  content: "\f054";
  top: 100px;
  right: -58px;
  transform: translateY(-62%);
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  font-size: 20px;
  color: var(--clr-bg-gray-4);
  transition: all 0.5s ease;
}
.pl-process-item-inner::before {
  position: absolute;
  content: "";
  top: 98px;
  right: -54px;
  transform: translateY(-62%);
  background-color: var(--clr-bg-gray-4);
  width: 54px;
  height: 3px;
  transition: all 0.5s ease;
}
.pl-process-item::before {
  position: absolute;
  content: "";
  top: -5px;
  right: -5px;
  width: 165px;
  height: 18px;
  background: #f6f6f6;
}
.pl-process-item::after {
  position: absolute;
  content: "";
  top: 0;
  right: -4px;
  width: 6px;
  height: 96px;
  background: #f6f6f6;
}
.pl-process-item:hover {
  border-color: var(--clr-theme-primary);
}
.pl-process-item:hover .pl-process-item-inner::after {
  color: var(--clr-theme-primary);
}
.pl-process-item:hover .pl-process-item-inner::before {
  background-color: var(--clr-theme-primary);
}
.pl-process-item:hover .pl-process-item-number-title {
  color: var(--clr-theme-primary);
}
.pl-process-item:hover .pl-process-item-text-title {
  color: var(--clr-body-heading);
}
.pl-process-item:hover .pl-process-item-icon {
  background-color: var(--clr-theme-primary);
}
.pl-process-item:hover .pl-process-item-icon svg {
  color: var(--clr-common-white);
}

/*
************
*************************
19. contact
******************************************************* 
*************************************************************** */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-contact-left {
    margin-right: 50px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-contact-left {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-contact-left {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-contact-left {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .pl-contact-left {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-contact-info {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-contact-info {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .pl-contact-info {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-contact-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pl-contact-info.mb-50 {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-contact-info.mb-50 {
    margin-bottom: 30px;
  }
}
.pl-contact-info-details {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-contact-info-details {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-contact-info-details {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pl-contact-info-details {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-contact-info-details {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-contact-info .pl-social {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-contact-info .pl-social {
    margin-bottom: 0;
  }
}
.pl-contact-info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-theme-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}
.pl-contact-info-icon i {
  color: var(--clr-theme-primary);
  display: inline-block;
  font-size: 20px;
}
.pl-contact-info-content p {
  margin-bottom: 0;
  color: var(--clr-bg-gray-9);
}
.pl-contact-info-content a {
  display: block;
  color: var(--clr-bg-gray-9);
}
.pl-contact-info-content a:hover {
  color: var(--clr-theme-primary);
}
.pl-contact-info-social span {
  color: var(--clr-theme-primary);
  display: inline-block;
  margin-bottom: 5px;
  line-height: 1;
}
.pl-contact-info-social-icon a {
  font-size: 16px;
  color: var(--clr-bg-gray-12);
  margin-right: 15px;
}
.pl-contact-info-social-icon a:last-child {
  margin-right: 0;
}
.pl-contact-form {
  background: var(--clr-bg-gray);
  padding: 50px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .pl-contact-form {
    padding: 40px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-contact-form {
    padding: 40px 30px;
  }
}
.pl-contact-form input, .pl-contact-form textarea {
  width: 100%;
  height: 60px;
  margin-bottom: 25px;
  background: var(--clr-common-white);
  border: none;
  padding: 20px 30px;
  border-radius: 8px;
}
.pl-contact-form textarea {
  height: 120px;
}
.pl-contact-form .nice-select {
  width: 100%;
  height: 60px;
  margin-bottom: 25px;
  background: var(--clr-common-white);
  border: none;
  line-height: 60px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--clr-bg-gray-9);
}
.pl-contact-form .nice-select::after {
  width: 8px;
  height: 8px;
  right: 35px;
  border-bottom: 1px solid var(--clr-bg-gray-9);
  border-right: 1px solid var(--clr-bg-gray-9);
}
.pl-contact-form .nice-select .list {
  width: 100%;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: none;
}
.pl-contact-form .nice-select .option {
  height: 50px;
  line-height: 50px;
  padding-left: 30px;
  padding-right: 30px;
}
.pl-contact-form .nice-select .option:hover, .pl-contact-form .nice-select .option.focus, .pl-contact-form .nice-select .option.selected.focus {
  background-color: var(--clr-bg-gray-4);
}

.pl-contact-info-social-icon a {
  display: inline-block;
  color: #7E7E7E;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#5f41ff), color-stop(50%, #5f41ff), color-stop(50%, #7E7E7E));
  background-image: -o-linear-gradient(left, #5f41ff, #5f41ff 50%, #7E7E7E 50%);
  background-image: linear-gradient(to right, #5f41ff, #5f41ff 50%, #7E7E7E 50%);
}

.pl-contact-info-social-icon a:hover {
  background-position: 0;
  -webkit-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  -o-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
}

.contact-info-item-2 {
  background: var(--clr-bg-gray);
  text-align: center;
  padding: 40px;
  border-radius: 10px;
}

.contact-info-item-2:hover .contact-info-item-icon {
  transform: translateY(-10px);
}

.contact-info-item-icon {
  margin-bottom: 30px;
  transition: 0.8s;
}

.contact-info-item-icon i {
  color: var(--clr-theme-primary);
  font-size: 60px;
  display: inline-block;
}

.contact-info-item-icon i {
  display: inline-block;
  color: #5f41ff;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#161616), color-stop(50%, #161616), color-stop(50%, #5f41ff));
  background-image: -o-linear-gradient(left, #161616, #161616 50%, #5f41ff 50%);
  background-image: linear-gradient(to right, #161616, #161616 50%, #5f41ff 50%);
}

.contact-info-item-2:hover .contact-info-item-icon i {
  background-position: 0;
  -webkit-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  -o-transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
  transition: all 0.8s cubic-bezier(0, 0, 0.23, 1);
}

.contact-info-content-2 .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.contact-info-content-2 p {
  color: var(--clr-bg-gray-9);
  margin-bottom: 0;
}

.contact-info-content-2 a {
  color: var(--clr-bg-gray-9);
  display: block;
}
.contact-info-content-2 a:hover {
  color: var(--clr-theme-primary);
}

.contact-form-2 {
  background: var(--clr-bg-gray);
  border-radius: 10px;
  padding: 45px;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .contact-form-2 {
    padding: 40px 25px;
    padding-top: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-2 {
    padding: 40px 40px;
    padding-top: 35px;
  }
}

.contact-form-title {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .contact-form-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-title {
    font-size: 35px;
  }
}

.contact-form-2 input {
  width: 100%;
  border: none;
  margin-bottom: 30px;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--clr-common-white);
  color: var(--clr-bg-gray-9);
  font-size: 14px;
}

.contact-form-2 textarea {
  width: 100%;
  background: var(--clr-common-white);
  border: none;
  margin-bottom: 30px;
  border-radius: 4px;
  padding: 20px;
  height: 120px;
  font-size: 14px;
  color: var(--clr-bg-gray-9);
}

.pl-contact-subject-2 {
  width: 100%;
  border: none;
  margin-bottom: 30px;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--clr-common-white);
  color: var(--clr-bg-gray-9);
  font-size: 14px;
}

.pl-contact-subject-2 .nice-select {
  width: 100%;
  height: 60px;
  margin-bottom: 25px;
  background: var(--clr-common-white);
  border: none;
  line-height: 60px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--clr-bg-gray-9);
}

.nice-select::after {
  width: 8px;
  height: 8px;
  right: 20px;
  border-bottom: 1px solid var(--clr-bg-gray-9);
  border-right: 1px solid var(--clr-bg-gray-9);
}

.pl-contact-subject-2 .option {
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
}

.pl-contact-subject-2 .list {
  width: 100%;
  transition: all 0.3s ease;
  border-radius: 4px;
  box-shadow: none;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: var(--clr-bg-gray-4);
}

.pl-map-area {
  width: 100%;
  height: 560px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pl-map-area {
    height: 556px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-map-area {
    height: 500px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-map-area {
    height: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-map-area {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .pl-map-area {
    height: 300px;
  }
}

.pl-map-area iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.full-width {
  width: 100%;
  display: block;
}

.pl-contact-border {
  border-bottom: 1px solid var(--clr-bg-gray-3);
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-contact-border {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-contact-border {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .pl-contact-border {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-contact-border {
    border-bottom: 1px solid var(--clr-bg-gray-3);
  }
}

/*
************
*************************
20. error
******************************************************* 
*************************************************************** */
.pl-error-title {
  margin-bottom: 10px;
  font-size: 48px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .pl-error-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-error-title {
    font-size: 36px;
  }
}

.pl-error-text {
  color: var(--clr-bg-gray-9);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .pl-error-text br {
    display: none;
  }
}

.pl-border-bottom {
  border-bottom: 1px solid var(--clr-bg-gray-3);
}

/*
************
*************************
21. sidebar
******************************************************* 
*************************************************************** */
.side-info {
  width: 100%;
  max-width: 400px;
  background-color: #040017;
  box-shadow: 0 13px 29px rgba(4, 0, 23, 0.1);
  height: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  right: -400px;
  transition: 0.4s;
}

.side-info:is(.info-open) {
  right: 0;
  overflow-y: scroll;
  scrollbar-width: thin;
}

.offcanvas-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(4, 0, 23, 0.5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  cursor: url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601066/html/assets/img/bg/close.png'), auto;
}

.offcanvas-overlay:is(.overlay-open) {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.pl-header-nav-menu .mean-container {
  display: block !important;
}

.pl-header-nav-menu .mean-container .mean-bar {
  display: none;
}

.pl-sidebar-informations {
  padding: 45px 35px;
}

.mean-container .mean-nav {
  background: transparent;
}

.mean-container .mean-nav ul li a {
  border-color: #2c2a2a;
  font-size: 15px;
  color: #cacaca;
}

.pl-sidebar-close.side-info-close {
  background: transparent;
  border: none;
  font-size: 25px;
  color: #fff;
}

.mean-container .mean-nav ul li a.mean-expand {
  padding: 9px 12px;
  border-color: #2c2a2a;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: #554d5b;
}

.contact-list.mobile_contact h4 {
  color: #fff;
  font-size: 22px;
}

.contact-list.mobile_contact > span, .contact-list.mobile_contact a {
  display: flex;
  margin-bottom: 15px;
  text-decoration: none;
  align-items: center;
  font-size: 16px;
  color: #cacaca;
}

.contact-list.mobile_contact i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 10px;
  flex: 0 0 40px;
  max-width: 40px;
}

.contact-list.mobile_contact > span, .contact-list.mobile_contact a {
  font-size: 16px;
  color: #cacaca;
}

.dark_mode .contact-list.mobile_contact > span, .contact-list.mobile_contact a {
  color: #cacaca;
}

.contact-list.mobile_contact a:hover {
  color: #fff;
}

nav.right_menu_togle {
  font-size: 15px;
}

.footer_social.offset_social a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-right: 5px;
  color: #fff;
}

.top_social.footer_social.offset_social a:hover {
  background-color: #554d5b;
}

/* Search */
.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601066/html/assets/img/bg/close.png'), auto;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.97;
}

.td-search-popup .search-form {
  width: 35%;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999;
}

.td-search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
  width: 40%;
}
@media (max-width: 767px) {
  .td-search-popup.active .search-form {
    width: calc(100% - 50px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .td-search-popup.active .search-form {
    width: 70%;
  }
}

.td-search-popup.active .search-form {
  visibility: visible;
}

.td-search-popup .search-form .form-group .form-control {
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 60px;
  padding: 0 75px 0 25px;
  background: #f7f9fb;
  line-height: 60px;
}

.td-search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0;
  text-align: center;
  cursor: pointer;
  background: var(--clr-theme-primary);
}

/*
************
*************************
22. footer
******************************************************* 
*************************************************************** */
.pl-footer-top {
  background-color: var(--clr-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-footer-widget-logo {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pl-footer-widget-logo {
    margin-bottom: 20px;
  }
}
.pl-footer-widget-text {
  color: var(--clr-bg-gray-6);
  margin-bottom: 35px;
}
.pl-footer-widget-form {
  width: 306px;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .pl-footer-widget-form {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .pl-footer-widget-form {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pl-footer-widget-form {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pl-footer-widget-form {
    width: 300px;
  }
}
.pl-footer-widget-form input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  margin-bottom: 20px;
  background: transparent;
  border: 1px solid var(--clr-bg-gray-6);
  border-radius: 8px;
  font-size: 14px;
  color: var(--clr-bg-gray-8);
}
.pl-footer-widget-form input::placeholder, .pl-footer-widget-form input::-moz-placeholder {
  color: var(--clr-bg-gray-8);
  font-size: 14px;
  opacity: 1;
}
.pl-footer-widget-form button {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: var(--clr-theme-primary);
  border: none;
  color: var(--clr-common-white);
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
}
.pl-footer-widget-form button i {
  margin-left: 10px;
}
.pl-footer-widget-form button:hover {
  border-color: var(--clr-theme-primary);
  color: var(--clr-theme-primary);
  background-color: var(--clr-common-white);
}
.pl-footer-widget-title {
  font-size: 20px;
  color: var(--clr-common-white);
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-footer-widget-title {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .pl-footer-widget-title {
    margin-bottom: 20px;
  }
}
.pl-footer-widget-menu ul li {
  display: block;
}
.pl-footer-widget-menu ul li a {
  color: var(--clr-bg-gray-6);
  margin-bottom: 10px;
  display: inline-block;
}
.pl-footer-widget-menu ul li a:hover {
  color: var(--clr-common-white);
}
@media (max-width: 767px) {
  .pl-footer-widget-menu ul li a {
    margin-bottom: 6px;
  }
}
.pl-footer-widget-menu ul li:last-child a {
  margin-bottom: 0;
}
.pl-footer-widget-blog {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-footer-widget-blog.mb-25 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pl-footer-widget-blog.mb-25 {
    margin-bottom: 20px;
  }
}
.pl-footer-widget-blog-img {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  position: relative;
}
.pl-footer-widget-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pl-footer-widget-blog-info .pl-blog-info-title {
  font-size: 16px;
  color: var(--clr-bg-gray-6);
  margin-bottom: 0;
  line-height: 1.6;
  transition: all 0.3s ease;
}
.pl-footer-widget-blog-info .pl-blog-info-title:hover {
  color: var(--clr-common-white);
}
.pl-footer-widget-blog-info .pl-blog-info-date {
  color: var(--clr-bg-gray-6);
  font-size: 13px;
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
  font-family: "Nunito Sans", sans-serif;
}
.pl-footer-widget-blog-info .pl-blog-info-date::after {
  background: var(--clr-bg-gray-12);
  position: absolute;
  content: "";
  right: 0;
  top: 4px;
  width: 1px;
  height: 13px;
}
.pl-footer-widget-blog-info .pl-blog-info-admin {
  color: var(--clr-bg-gray-6);
  font-size: 13px;
  display: inline-block;
  font-family: "Nunito Sans", sans-serif;
}
.pl-footer-widget-blog-info .pl-blog-info-admin:hover {
  color: var(--clr-common-white);
}
.pl-footer-widget-contact span {
  font-size: 16px;
  color: var(--clr-common-white);
  margin-bottom: 6px;
  line-height: 1;
  display: block;
}
.pl-footer-widget-contact a {
  color: var(--clr-bg-gray-6);
  display: block;
  font-size: 16px;
}
.pl-footer-widget-contact a:hover {
  color: var(--clr-common-white);
}
@media (max-width: 767px) {
  .pl-footer-widget-contact a {
    font-size: 15px;
  }
}
.pl-footer-widget-contact p {
  color: var(--clr-bg-gray-6);
  display: block;
  font-size: 16px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .pl-footer-widget-contact p {
    font-size: 15px;
  }
}
.pl-footer-copyright {
  background-color: var(--clr-common-black);
  border-top: 1px solid #272727;
}
.pl-footer-copyright-text p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--clr-bg-gray-6);
  font-family: "Nunito Sans", sans-serif;
}
.pl-footer-copyright-text p a {
  font-weight: 600;
}
.pl-footer-copyright-text p a:hover {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-footer-copyright-text p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .pl-footer-copyright-text p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .pl-footer-copyright-text {
    text-align: center;
  }
}
.pl-footer-copyright-menu {
  text-align: end;
}
@media (max-width: 767px) {
  .pl-footer-copyright-menu {
    text-align: center;
  }
}
.pl-footer-copyright-menu ul li {
  display: inline-block;
}
.pl-footer-copyright-menu ul li a {
  font-size: 14px;
  color: var(--clr-bg-gray-6);
  display: inline-block;
  position: relative;
  margin-right: 20px;
  padding-right: 25px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl-footer-copyright-menu ul li a {
    margin-right: 10px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .pl-footer-copyright-menu ul li a {
    margin-right: 10px;
    padding-right: 15px;
  }
}
.pl-footer-copyright-menu ul li a:hover {
  color: var(--clr-common-white);
}
.pl-footer-copyright-menu ul li a::after {
  position: absolute;
  content: "";
  right: 0;
  top: 6px;
  height: 15px;
  width: 1px;
  background-color: var(--clr-bg-gray-12);
}
.pl-footer-copyright-menu ul li a:last-child {
  margin-right: 0;
  padding-right: 0;
}
.pl-footer-copyright-menu ul li a:last-child::after {
  display: none;
}

.pl-footer-widget-blog-img a::before, .pl-footer-widget-blog-img a::after {
  content: "";
  background: #fff;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  transition-duration: 1s !important;
}

.pl-footer-widget-blog-img a::after {
  top: 0;
  opacity: 0.7;
  left: 0;
}

.pl-footer-widget-blog-img a::before {
  right: 0;
  opacity: 1;
  bottom: 0;
}

.pl-footer-widget-blog:hover .pl-footer-widget-blog-img a::after, .pl-footer-widget-blog:hover .pl-footer-widget-blog-img a::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}

/*
************
*************************
23. back to top
******************************************************* 
*************************************************************** */
.progress-wrap {
  position: fixed;
  right: -100px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #161616;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background-color: #fff;
}
.progress-wrap::after {
  position: absolute;
  content: "\f176";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: #878c8f;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #5F41FF;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.progress-wrap:is(.progress-wrap-dark) {
  box-shadow: inset 0 0 0 2px #f6f8fa;
  background-color: transparent;
}
.progress-wrap:is(.progress-wrap-dark)::after {
  color: #f6f8fa;
}
.progress-wrap:is(.progress-wrap-dark) svg.progress-circle path {
  stroke: #1a1a1a;
}

.progress-wrap.active-progress {
  opacity: 1;
  right: 50px;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .progress-wrap.active-progress {
    right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .progress-wrap.active-progress {
    right: 30px;
  }
}

/*# sourceMappingURL=main.css.map */
