/*
************
*************************
-----------------------------------------------------------------------------------

CSS INDEX
=================== 
01. common
02. header
03. sidebar
04. banner
05. section
06. brand
07. category
08. course
09. course-details
10. button
11. about
12. event
13. event-details
14. testimonial
15. counter
16. blog
17. blog-details
18. cta
19. teacher
20. price
21. breadcrumb
22. gallery
23. account
24. team details
25. contact
26. 404
27. admission
28. education
29. faq
30. feature
31. video
32. footer

******************************************************* 
*************************************************************** */
/*
************
*************************
01. common
******************************************************* 
*************************************************************** */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr-body-text);
  font-size: 16px;
  line-height: 28px;
}

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

a,
.button, button {
  -webkit-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;
  text-decoration: 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: 70px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

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

*::-moz-selection {
  background-color: #49a9b7;
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background-color: #49a9b7;
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background-color: #49a9b7;
  color: var(--clr-common-white);
  text-shadow: none;
}

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

textarea::-webkit-input-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
textarea::-moz-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
textarea:-ms-input-placeholder {
  color: var(--clr-body-text);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

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

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

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

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

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

/* <<<<<<<    Common Classes   >>>>>>>>> */
.w_img img {
  width: 100%;
}

/* <<<<<<<    Overlay   >>>>>>>>> */
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
[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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}
.row.g-15 {
  --bs-gutter-x: 15px;
}

@media (min-width: 1400px) {
  .container.container-custom-1 {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1600px) {
  .container-fluid.container-custom-1 {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* <<<<<<<    Declaration   >>>>>>>>> */
:root {
  /**
  @color declaration
  */
  --clr-common-white: #fff;
  --clr-common-black: #222222;
  --clr-common-lightBlack: #38383A;
  --clr-common-darkBlack: #000000;
  --clr-body-heading: #1E1E1E;
  --clr-body-text: rgba(30, 30, 30, 0.6);
  --clr-color-lightBlue: #BBE8EB;
  --clr-color-darkPink: #D2093C;
  --clr-color-lightPink: #F7ECF9;
  --clr-color-lightPurple: #F3F4FD;
  --clr-theme-primary: #1268EB;
  --clr-theme-primaryDark: #08449E;
  --clr-theme-primary-3: #F5530D;
  --clr-theme-primary-4: #F6BA2A;
  --clr-theme-primary-5: #F3EB1E;
  --clr-bg-gray: #F6F6F6;
  --clr-bg-gray-2: #F1F1F1;
}

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

.light-bg {
  background-color: #F8F8F8;
}

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

.p-relative {
  position: relative;
}

.theme-bg {
  background-color: #49a9b7;
}

/*
************
*************************
02. header
******************************************************* 
*************************************************************** */
.header-area {
  padding: 22px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area {
    padding: 17px 0;
  }
}
@media (max-width: 767px) {
  .header-area {
    padding: 12px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-area {
    padding: 15px 0;
  }
}
.header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.header-logo {
  position: relative;
  z-index: 1;
  padding-right: 21px;
  margin-right: 20px;
  margin-top:-10px;
}
.header-logo::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-color: rgba(30, 30, 30, 0.1);
  width: 1px;
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-logo {
    padding-right: 0;
  }
  .header-logo::after {
    display: none;
  }
}

.main-menu {
  width: auto;
}
.main-menu ul .menu-has-child {
  position: relative;
  z-index: 99;
  text-align: start;
}
.main-menu ul li {
  display: inline-block;
  margin-right: 45px;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li a {
  font-size: 16px;
  color: #1e1e1eba;
  padding: 10px 0;
  font-weight: 500;
  display: block;
}
.main-menu ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
          box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
}
.main-menu ul li .submenu li {
  display: block;
  margin-right: 0;
  position: relative;
  z-index: 99;
}
.main-menu ul li .submenu li a {
  padding: 15px 25px;
  color: var(--clr-body-heading);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.main-menu ul li .submenu li:hover > a {
  background-color: #49a9b7;
  color: #fff;
}
.main-menu ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.main-menu ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}
.main-menu ul li:hover > a {
  color: #49a9b7;
}

.header-search form {
  position: relative;
  z-index: 1;
}
.header-search form input {
  min-width: 300px;
  width: 100%;
  height: 45px;
  line-height: 45px;
  background-color: #F5F5F5;
  border: none;
  border-radius: 6px;
  padding: 0 20px;
  padding-right: 55px;
  font-size: 15px;
  color: rgba(30, 30, 30, 0.6);
}
.header-search form input::-webkit-input-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.header-search form input:-moz-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.header-search form input::-moz-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.header-search form input:-ms-input-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.header-search form button {
  position: absolute;
  right: 20px;
  top: 0;
  height: 100%;
  font-size: 15px;
  color: #1E1E1E;
  border: none;
  background: transparent;
  padding: 0;
}
.header-search form button i {
  font-weight: 300;
}

.header-menu-bar-icon {
  font-size: 25px;
  display: block;
  color: var(--clr-body-heading);
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.header-menu-bar-icon:hover {
  color: #49a9b7;
}

.h2_header-area {
  padding: 22px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_header-area {
    padding: 17px 0;
  }
}
@media (max-width: 767px) {
  .h2_header-area {
    padding: 12px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_header-area {
    padding: 15px 0;
  }
}
.h2_header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h2_header-middle {
  text-align: center;
}
.h2_header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.h2_header-logo {
  position: relative;
  z-index: 1;
  padding-right: 21px;
  margin-right: 20px;
}
.h2_header-logo::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-color: rgba(30, 30, 30, 0.1);
  width: 1px;
  height: 100%;
}
@media (max-width: 767px) {
  .h2_header-logo {
    margin-right: 10px;
    padding-right: 11px;
  }
  .h2_header-logo::after {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_header-logo {
    margin-right: 15px;
    padding-right: 16px;
  }
  .h2_header-logo::after {
    display: block;
  }
}
.h2_header-category {
  position: relative;
  z-index: 9;
}
.h2_header-category a {
  color: var(--clr-body-heading);
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px 0;
}
.h2_header-category a span {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: var(--clr-body-heading);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h2_header-category-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
          box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.h2_header-category-submenu li {
  display: block;
  margin-right: 0;
  position: relative;
  z-index: 99;
}
.h2_header-category-submenu li a {
  padding: 15px 25px;
  display: block;
  color: var(--clr-body-heading);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h2_header-category-submenu li .submenu {
  left: 100%;
  top: 0;
}
.h2_header-category-submenu li:hover > a {
  background-color: #49a9b7;
  color: #fff;
}
.h2_header-category-submenu li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.h2_header-category:hover > .h2_header-category-submenu {
  opacity: 1;
  visibility: visible;
}
.h2_header-category:hover > a {
  color: #49a9b7;
}
.h2_header-category:hover > a span {
  color: #49a9b7;
}

.h2_header-area.sticky {
  -webkit-box-shadow: 0px 6px 50px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 6px 50px rgba(30, 30, 30, 0.1);
}

.h2_main-menu ul .menu-has-child {
  position: relative;
  z-index: 99;
  text-align: start;
}
.h2_main-menu ul li {
  display: inline-block;
  margin-right: 45px;
}
.h2_main-menu ul li:last-child {
  margin-right: 0;
}
.h2_main-menu ul li:is(.menu-has-child) > a::after {
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  content: "\f107";
  font-size: 12px;
  font-weight: 500;
  margin-left: 5px;
}
.h2_main-menu ul li a {
  font-size: 16px;
  color:#5b5b5b;
  padding: 10px 0;
  font-weight: 500;
  display: block;
}
.h2_main-menu ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
          box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
}
.h2_main-menu ul li .submenu li {
  display: block;
  margin-right: 0;
  position: relative;
  z-index: 99;
}
.h2_main-menu ul li .submenu li a {
  padding: 15px 25px;
  color: var(--clr-body-heading);
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.h2_main-menu ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.h2_main-menu ul li .submenu li:hover > a {
  background-color: #49a9b7;
  color: #fff;
}
.h2_main-menu ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.h2_main-menu ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}
.h2_main-menu ul li:hover > a {
  color: #49a9b7;
}

.h3_header-area {
  padding: 16px 0;
}
.h3_header-middle {
  text-align: center;
}
.h3_header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.h3_header-logo {
  position: relative;
  z-index: 1;
  padding-right: 21px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .h3_header-logo {
    margin-right: 10px;
    padding-right: 11px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_header-logo {
    margin-right: 15px;
    padding-right: 16px;
  }
}

.h3_header-area.sticky {
  -webkit-box-shadow: 0px 6px 50px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 6px 50px rgba(30, 30, 30, 0.1);
}

.h3_main-menu ul .menu-has-child {
  position: relative;
  z-index: 99;
  text-align: start;
}
.h3_main-menu ul li {
  display: inline-block;
  margin-right: 45px;
}
.h3_main-menu ul li:last-child {
  margin-right: 0;
}
.h3_main-menu ul li:is(.menu-has-child) > a::after {
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  content: "\f107";
  font-size: 12px;
  font-weight: 500;
  margin-left: 5px;
}
.h3_main-menu ul li a {
  font-size: 16px;
  color: var(--clr-body-heading);
  padding: 10px 0;
  font-weight: 500;
  display: block;
}
.h3_main-menu ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
          box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
}
.h3_main-menu ul li .submenu li {
  display: block;
  margin-right: 0;
  position: relative;
  z-index: 99;
}
.h3_main-menu ul li .submenu li a {
  padding: 15px 25px;
  color: var(--clr-body-heading);
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.h3_main-menu ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.h3_main-menu ul li .submenu li:hover > a {
  background-color: var(--clr-theme-primary-3);
  color: #fff;
}
.h3_main-menu ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.h3_main-menu ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}
.h3_main-menu ul li:hover > a {
  color: var(--clr-theme-primary-3);
}

.h4_main-menu ul li .submenu li:hover > a {
  background-color: var(--clr-theme-primary-4);
  color: var(--clr-body-heading);
}
.h4_main-menu ul li:hover > a {
  color: var(--clr-body-heading);
}

.h4_header-category-submenu li:hover > a {
  background-color: var(--clr-theme-primary-4);
  color: var(--clr-body-heading);
}
.h4_header-category:hover > a {
  color: var(--clr-body-heading);
}
.h4_header-category:hover > a span {
  color: var(--clr-body-heading);
}

.h5_main-menu ul li .submenu li:hover > a {
  background-color: var(--clr-theme-primary-5);
  color: var(--clr-body-heading);
}
.h5_main-menu ul li:hover > a {
  color: var(--clr-body-heading);
}

.header-sticky.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 99;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running stickySlideDown;
          animation: 300ms ease-in-out 0s normal none 1 running stickySlideDown;
  display: block;
  -webkit-box-shadow: 0px 6px 50px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 6px 50px rgba(30, 30, 30, 0.1);
}

@-webkit-keyframes stickySlideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes stickySlideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.inner_page_header-area {
  position: relative;
  z-index: 9;
  -webkit-box-shadow: 0px 6px 50px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 6px 50px rgba(30, 30, 30, 0.1);
}

/*
************
*************************
03. sidebar
******************************************************* 
*************************************************************** */
.side-info {
  width: 100%;
  max-width: 400px;
  background-color: #000;
  -webkit-box-shadow: 0 13px 29px rgba(4, 0, 23, 0.1);
          box-shadow: 0 13px 29px rgba(4, 0, 23, 0.1);
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  right: -400px;
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
  padding: 30px 40px 40px 40px;
}

.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;
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
  cursor: url(../../assets/img/bg/close.png), auto;
}

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

.mean-container .mean-nav {
  background: transparent;
  margin-top: 0;
}

.mean-container .mean-nav ul li a {
  border: none;
  font-size: 16px;
  padding-left: 0;
  padding-right: 0;
  color: #fff;
}

.mean-container .mean-nav ul li:hover > a {
  background: transparent;
  color: #49a9b7;
}

.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: 8px 0;
  border: none;
  background-color: transparent;
  color: #fff;
  width: auto;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: transparent;
}

.sidebar-close {
  border: 0;
  background-color: transparent;
  font-size: 25px;
  color: #fff;
  padding-left: 0;
  padding-right: 0;
}

.sidebar-close:hover {
  color: #fff;
}

/*
************
*************************
04. banner
******************************************************* 
*************************************************************** */
.single-banner {
  min-height: 670px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  position: relative;
  z-index: 1;
  background-color: var(--clr-color-lightBlue);
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .single-banner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.banner-img {
  margin-right: -75px;
  margin-left: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-img {
    margin-right: -40px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-img {
    margin-left: 0;
    margin-right: -20px;
  }
}

.banner-content {
  padding-bottom: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content {
    padding-bottom: 135px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content {
    padding-bottom: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .banner-content {
    padding-bottom: 0;
  }
}

.banner-top-shape-1 {
  position: absolute;
  left: 85px;
  top: 60px;
  -webkit-animation: animation-leftRight-1 3s linear 0s infinite alternate;
          animation: animation-leftRight-1 3s linear 0s infinite alternate;
}
@media (max-width: 767px) {
  .banner-top-shape-1 {
    left: 30px;
  }
}
.banner-top-shape-2 {
  right: 50px;
  bottom: 150px;
  position: absolute;
  z-index: 1;
  -webkit-animation: animation-popup-2 1.2s linear 0s infinite alternate;
          animation: animation-popup-2 1.2s linear 0s infinite alternate;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .banner-top-shape-2 {
    right: 20px;
    bottom: 140px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-top-shape-2 {
    right: 20px;
    bottom: 110px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-top-shape-2 {
    right: 20px;
    bottom: 100px;
  }
}
@media (max-width: 767px) {
  .banner-top-shape-2 {
    right: 30px;
    bottom: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-top-shape-2 {
    right: 50px;
    bottom: 100px;
  }
}
.banner-top-shape-3 {
  position: absolute;
  top: 125px;
  right: 33%;
  z-index: 1;
  -webkit-animation: hero-circle-1 6s linear 0s infinite;
          animation: hero-circle-1 6s linear 0s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-top-shape-3 {
    top: 110px;
    right: 140px;
  }
}
@media (max-width: 767px) {
  .banner-top-shape-3 {
    right: 15%;
    top: 110px;
  }
}

.banner-right {
  position: relative;
  z-index: 1;
}
.banner-inner-meta {
  position: absolute;
}
.banner-inner-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.banner-meta-info {
  background-color: #fff;
  padding: 25px 30px 25px;
  bottom: 120px;
  left: -30px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
}
.banner-meta-info img.inner-img {
  position: absolute;
  left: -35px;
  top: -35px;
  z-index: 1;
  -webkit-animation: animation-popup-5 3s linear 0s infinite alternate;
          animation: animation-popup-5 3s linear 0s infinite alternate;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-meta-info {
    bottom: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .banner-meta-info {
    display: none;
  }
}
.banner-info-img {
  width: 45px;
  height: 45px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.banner-info-img img {
  width: 45px;
  height: 45px;
}
.banner-info-icon {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #FFA121;
  font-size: 12px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  top: 50px;
  left: 60px;
}
.banner-info-text h5 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
}
.banner-info-text p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}
.banner-meta-rating {
  position: absolute;
  right: -40px;
  top: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 25px 30px 25px;
  -webkit-box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
  -webkit-animation: hero-upDown-1 3s linear 0s infinite alternate;
          animation: hero-upDown-1 3s linear 0s infinite alternate;
}
.banner-meta-rating span {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.banner-meta-rating span i {
  color: #FFA121;
  font-size: 15px;
}
.banner-meta-rating h5 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-meta-rating {
    right: -30px;
    top: 160px;
  }
}

.banner-right-shape img {
  position: absolute;
  z-index: -1;
}
.banner-right-shape .banner-shape-4 {
  top: 35px;
  right: 70px;
  -webkit-animation: animation-popup-2 1.2s linear 0s infinite alternate;
          animation: animation-popup-2 1.2s linear 0s infinite alternate;
}
.banner-right-shape .banner-shape-1 {
  right: -80px;
  top: 165px;
  -webkit-animation: hero-circle-1 6s linear 0s infinite;
          animation: hero-circle-1 6s linear 0s infinite;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-right-shape .banner-shape-1 {
    right: -20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-right-shape .banner-shape-1 {
    right: 0;
    top: 150px;
  }
}
.banner-right-shape .banner-shape-2 {
  bottom: 80px;
  left: 55px;
  z-index: 1;
  -webkit-animation: animation-upDown-2 3s linear 0s infinite alternate;
          animation: animation-upDown-2 3s linear 0s infinite alternate;
}

@-webkit-keyframes hero-circle-1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes hero-circle-1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes hero-popup-1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes hero-popup-1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes animation-popup-5 {
  0% {
    -webkit-transform: scale(0.2) rotate(0deg);
            transform: scale(0.2) rotate(0deg);
  }
  40% {
    -webkit-transform: scale(0.5) rotate(180deg);
            transform: scale(0.5) rotate(180deg);
  }
  80% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
@keyframes animation-popup-5 {
  0% {
    -webkit-transform: scale(0.2) rotate(0deg);
            transform: scale(0.2) rotate(0deg);
  }
  40% {
    -webkit-transform: scale(0.5) rotate(180deg);
            transform: scale(0.5) rotate(180deg);
  }
  80% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes hero-upDown-1 {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes hero-upDown-1 {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@-webkit-keyframes hero-leftRight-1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
}
@keyframes hero-leftRight-1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
}
@-webkit-keyframes animation-upDown-2 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@keyframes animation-upDown-2 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
.h2_single-banner {
  background-color: var(--clr-color-lightPurple);
  min-height: 730px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.h2_banner-form {
  max-width: 550px;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}
.h2_banner-form input {
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 20px;
  padding-right: 55px;
  font-size: 15px;
  background: #fff;
  border: none;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  border-left: 2px solid #49a9b7;
  -webkit-box-shadow: 0px 6px 30px rgba(30, 30, 30, 0.1), inset 2px 0px 0px #1E40EC;
          box-shadow: 0px 6px 30px rgba(30, 30, 30, 0.1), inset 2px 0px 0px #1E40EC;
}
.h2_banner-form button {
  position: absolute;
  top: 0;
  color: var(--clr-body-heading);
  font-size: 16px;
  z-index: 99;
  background: transparent;
  height: 100%;
  padding: 0;
  border: 0;
  right: 20px;
}
.h2_banner-form button i {
  font-weight: 300;
}
.h2_banner-content-text {
  display: block;
  font-size: 14px;
  color: var(--clr-body-heading);
  margin-bottom: 25px;
  line-height: 22px;
}
.h2_banner-content-text a {
  color: #49a9b7;
}
.h2_banner-right {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2_banner-right {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_banner-right {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h2_banner-right {
    padding-left: 0;
  }
}
.h2_banner-inner-img {
  position: relative;
  z-index: 1;
  margin-left: -15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.h2_banner-inner-img:first-child {
  margin-left: 0;
}
.h2_banner-inner-img:last-child::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.6);
  content: "";
  border-radius: 50%;
}
.h2_banner-inner-img span {
  position: absolute;
  left: 0;
  top: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.h2_banner-tutor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.h2_banner-tutor-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.h2_banner-tutor-text span {
  display: block;
  font-size: 15px;
  color: var(--clr-body-heading);
  font-weight: 600;
  line-height: 20px;
}
.h2_banner-meta-rating {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  border-radius: 10px;
  padding: 25px 30px 25px;
  -webkit-box-shadow: 0px 16px 70px rgba(30, 30, 30, 0.14);
          box-shadow: 0px 16px 70px rgba(30, 30, 30, 0.14);
  -webkit-animation: h2_hero-leftRight-1 4.5s linear 0s infinite alternate;
          animation: h2_hero-leftRight-1 4.5s linear 0s infinite alternate;
}
.h2_banner-meta-rating span {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.h2_banner-meta-rating span i {
  color: #FFA121;
  font-size: 15px;
}
.h2_banner-meta-rating h5 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
}
.h2_banner-meta-info {
  position: absolute;
  right: -90px;
  top: 155px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px 20px;
  -webkit-box-shadow: 0px 16px 70px rgba(30, 30, 30, 0.14);
          box-shadow: 0px 16px 70px rgba(30, 30, 30, 0.14);
  -webkit-animation: h2_hero-upDown-1 4s linear 0s infinite alternate;
          animation: h2_hero-upDown-1 4s linear 0s infinite alternate;
}
.h2_banner-meta-info span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.h2_banner-meta-info h5 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .h2_banner-meta-info {
    right: -70px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2_banner-meta-info {
    right: -40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_banner-meta-info {
    right: -20px;
    top: 140px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_banner-meta-info {
    right: 0;
    top: 95px;
  }
}
.h2_banner-shape-1 {
  position: absolute;
  left: 80px;
  top: 0;
  -webkit-animation: animation-popup-1 4s linear 0s infinite alternate;
          animation: animation-popup-1 4s linear 0s infinite alternate;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2_banner-shape-1 {
    left: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_banner-shape-1 {
    left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h2_banner-shape-1 {
    left: 0;
  }
}
.h2_banner-shape-2 {
  position: absolute;
  left: -55px;
  bottom: 180px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_banner-shape-2 {
    left: -30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_banner-shape-2 {
    left: -15px;
  }
}

@-webkit-keyframes h2_hero-upDown-1 {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@keyframes h2_hero-upDown-1 {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@-webkit-keyframes h2_hero-leftRight-1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
}
@keyframes h2_hero-leftRight-1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
}
.h3_single-banner {
  background-color: var(--clr-color-lightPink);
  min-height: 870px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.h3_single-banner::before {
  position: absolute;
  bottom: -615px;
  left: -540px;
  content: "";
  width: 949px;
  height: 949px;
  border-radius: 949px;
  background: #E2C3E8;
  z-index: -1;
}
.h3_single-banner::after {
  position: absolute;
  top: -252px;
  right: -210px;
  content: "";
  width: 949px;
  height: 949px;
  border-radius: 949px;
  background: #E2C3E8;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_single-banner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .h3_single-banner {
    min-height: 750px;
  }
}

.h3_banner-form {
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(10, 10, 10, 0.14);
          box-shadow: 0px 1px 2px 0px rgba(10, 10, 10, 0.14);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 570px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
}
@media (max-width: 767px) {
  .h3_banner-form {
    max-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_banner-form {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.h3_banner-form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 200px;
}
@media (max-width: 767px) {
  .h3_banner-form-item {
    max-width: 50%;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_banner-form-item {
    max-width: 200px;
    width: auto;
  }
}
.h3_banner-form-item:last-child {
  margin-left: auto;
}
@media (max-width: 767px) {
  .h3_banner-form-item:last-child {
    padding-top: 10px;
    max-width: 100%;
    width: 100%;
  }
  .h3_banner-form-item:last-child .h3_banner-form-btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_banner-form-item:last-child {
    padding-top: 0;
    max-width: 200px;
    width: auto;
  }
  .h3_banner-form-item:last-child .h3_banner-form-btn {
    width: initial;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.h3_banner-form-item-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.h3_banner-form-item-search::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-color: rgba(30, 30, 30, 0.1);
  width: 1px;
  height: 100%;
}
.h3_banner-form-item-search i {
  font-size: 16px;
  color: var(--clr-body-heading);
}
.h3_banner-form-item-search input {
  height: 30px;
  line-height: 30px;
  border: none;
  padding: 0;
  width: 100%;
}
@media (max-width: 490px) {
  .h3_banner-form-item-search {
    padding: 0 10px;
    width: 100%;
  }
  .h3_banner-form-item-search::after {
    display: none;
  }
}
@media (max-width: 490px) {
  .h3_banner-form-item {
    max-width: 100%;
  }
  .h3_banner-form-item:first-child {
    padding-bottom: 10px;
  }
}
.h3_banner-category {
  position: relative;
  z-index: 9;
  margin: 0 30px;
}
@media (max-width: 490px) {
  .h3_banner-category {
    margin: 0 10px;
  }
}
.h3_banner-category a {
  color: var(--clr-body-heading);
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px 0;
}
.h3_banner-category a span {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: var(--clr-body-heading);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h3_banner-category-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
          box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.h3_banner-category-submenu li {
  display: block;
  margin-right: 0;
  position: relative;
  z-index: 99;
}
.h3_banner-category-submenu li a {
  padding: 10px 25px;
  display: block;
  color: var(--clr-body-heading);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h3_banner-category-submenu li .submenu {
  left: 100%;
  top: 0;
}
.h3_banner-category-submenu li:hover > a {
  background-color: var(--clr-theme-primary-3);
  color: #fff;
}
.h3_banner-category-submenu li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.h3_banner-category:hover > .h3_banner-category-submenu {
  opacity: 1;
  visibility: visible;
}
.h3_banner-category:hover > a {
  color: var(--clr-theme-primary-3);
}
.h3_banner-category:hover > a span {
  color: var(--clr-theme-primary-3);
}
.h3_banner-content {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .h3_banner-content {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_banner-content {
    padding-bottom: 160px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_banner-content {
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_banner-content {
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_banner-content {
    padding-bottom: 0;
  }
}
.h3_banner-content-text {
  display: block;
  font-size: 14px;
  color: var(--clr-body-heading);
  margin-bottom: 25px;
  line-height: 22px;
}
.h3_banner-content-text a {
  color: #49a9b7;
}
.h3_banner-content-shape-1 {
  position: absolute;
  left: -75px;
  top: -65px;
  z-index: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_banner-content-shape-1 {
    left: -45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_banner-content-shape-1 {
    left: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_banner-content-shape-1 {
    left: 0;
  }
}
.h3_banner-right {
  position: relative;
  z-index: 1;
  margin-right: -90px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .h3_banner-right {
    margin-right: -30px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_banner-right {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_banner-right {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_banner-right {
    margin-right: 0;
  }
}
.h3_banner-meta-rating {
  position: absolute;
  left: -70px;
  bottom: 145px;
  background: #fff;
  border-radius: 10px;
  padding: 25px 30px 25px;
  -webkit-box-shadow: 0px 16px 70px rgba(30, 30, 30, 0.14);
          box-shadow: 0px 16px 70px rgba(30, 30, 30, 0.14);
  -webkit-animation: h3_hero-leftRight-1 4.5s linear 0s infinite alternate;
          animation: h3_hero-leftRight-1 4.5s linear 0s infinite alternate;
}
.h3_banner-meta-rating span {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.h3_banner-meta-rating span i {
  color: #FFA121;
  font-size: 15px;
}
.h3_banner-meta-rating h5 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
}
.h3_banner-meta-info {
  position: absolute;
  right: -15px;
  top: 295px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px 20px;
  -webkit-box-shadow: 0px 16px 70px rgba(30, 30, 30, 0.14);
          box-shadow: 0px 16px 70px rgba(30, 30, 30, 0.14);
  -webkit-animation: h3_hero-upDown-1 4s linear 0s infinite alternate;
          animation: h3_hero-upDown-1 4s linear 0s infinite alternate;
}
.h3_banner-meta-info span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.h3_banner-meta-info h5 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .h3_banner-meta-info {
    right: -70px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_banner-meta-info {
    right: -40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_banner-meta-info {
    right: -20px;
    top: 140px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_banner-meta-info {
    right: 0;
    top: 95px;
  }
}
.h3_banner-shape-1 {
  position: absolute;
  right: -60px;
  bottom: 85px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_banner-shape-1 {
    right: -50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_banner-shape-1 {
    right: -45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_banner-shape-1 {
    display: none;
  }
}
.h3_banner-shape-2 {
  position: absolute;
  left: -75px;
  bottom: 390px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_banner-shape-2 {
    left: -35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_banner-shape-2 {
    left: -10px;
  }
}
@-webkit-keyframes h3_hero-upDown-1 {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes h3_hero-upDown-1 {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@-webkit-keyframes h3_hero-leftRight-1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
}
@keyframes h3_hero-leftRight-1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
}
.h4_single-banner {
  background-color: #36348E;
  min-height: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .h4_single-banner {
    min-height: 800px;
  }
}

.h4_banner-area {
  position: relative;
}
.h4_banner-form {
  border-radius: 100px;
  background: #FFF;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(10, 10, 10, 0.14);
          box-shadow: 0px 1px 2px 0px rgba(10, 10, 10, 0.14);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 550px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 7px;
  overflow: hidden;
  margin-bottom: 35px;
}
.h4_banner-form input {
  width: 100%;
  height: 40px;
  padding-left: 11px;
  padding-right: 20px;
  border: none;
  color: var(--clr-body-heading);
  font-size: 15px;
}
.h4_banner-form input::-webkit-input-placeholder {
  color: rgba(30, 30, 30, 0.5);
  font-size: 15px;
  opacity: 1;
}
.h4_banner-form input:-moz-placeholder {
  color: rgba(30, 30, 30, 0.5);
  font-size: 15px;
  opacity: 1;
}
.h4_banner-form input::-moz-placeholder {
  color: rgba(30, 30, 30, 0.5);
  font-size: 15px;
  opacity: 1;
}
.h4_banner-form input:-ms-input-placeholder {
  color: rgba(30, 30, 30, 0.5);
  font-size: 15px;
  opacity: 1;
}
.h4_banner-form button {
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.h4_banner-content {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h4_banner-content {
    margin-right: 0;
  }
}
.h4_banner-content-text {
  display: block;
  font-size: 14px;
  color: var(--clr-body-heading);
  margin-bottom: 25px;
  line-height: 22px;
}
.h4_banner-content-text a {
  color: #49a9b7;
}
.h4_banner-content-shape-1 {
  position: absolute;
  left: -75px;
  top: -65px;
  z-index: 1;
}
.h4_banner-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
.h4_banner-img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 42%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h4_banner-img {
    max-width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h4_banner-img {
    display: none;
  }
}
.h4_banner-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 420px;
}
.h4_banner-tag a {
  background: #fff;
  color: var(--clr-body-heading);
  font-size: 13px;
  padding: 0 14px;
  border-radius: 30px;
}
.h4_banner-tag a:hover {
  background-color: var(--clr-theme-primary-4);
}

.h5_single-banner {
  background-color: #d6eff6;
  min-height: 722px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.h5_banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  max-width: 45%;
  width: 100%;
}
.h5_banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.h5_banner-contact {
  position: absolute;
  bottom: 40px;
  right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h5_banner-contact {
    right: auto;
    left: 50px;
  }
}
@media (max-width: 767px) {
  .h5_banner-contact {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5_banner-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: auto;
    left: 50px;
  }
}
.h5_banner-contact-item p {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-body-heading);
  margin-bottom: 0;
}
.h5_banner-contact-item-top span {
  color: #747474;
  font-size: 16px;
  font-weight: 500;
}
.h5_banner-contact-item-top i {
  font-size: 16px;
  font-weight: 500;
  color: #747474;
  margin-right: 10px;
}

.h5_banner-content .h2_banner-form input {
  border-radius: 0;
}

/*
************
*************************
05. section
******************************************************* 
*************************************************************** */
.section-area .section-subtitle {
  color: #D2093C;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  background-color: rgba(210, 9, 59, 0.04);
  padding: 10px 25px;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .section-area .section-subtitle {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-area .section-subtitle {
    font-size: 15px;
    padding: 10px 25px;
  }
}
.section-area .section-subtitle::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #D2093C;
  content: "";
}
.section-area .section-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-area .section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-area .section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-area .section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-area .section-title {
    font-size: 40px;
  }
}
.section-area .section-text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: rgba(30, 30, 30, 0.7);
}

.section-area-top .section-subtitle::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
}

.banner-content .section-subtitle {
  background-color: #fff;
  margin-bottom: 15px;
}
.banner-content .section-title {
  font-size: 70px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content .section-title {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content .section-title {
    font-size: 45px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content .section-title {
    font-size: 45px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .banner-content .section-title {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content .section-title {
    font-size: 45px;
  }
}
.banner-content .section-title span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.banner-content .section-title span img {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: calc(100% - 25px);
  display: inline-block;
  margin-left: 10px;
  -webkit-animation: section-animation 5s linear 0s infinite;
          animation: section-animation 5s linear 0s infinite;
}
.banner-content .section-text {
  margin-bottom: 43px;
  color: rgba(30, 30, 30, 0.6);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .banner-content .section-text br {
    display: none;
  }
}

.section-area-2 .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-area-2 .section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-area-2 .section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-area-2 .section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-area-2 .section-title {
    font-size: 40px;
  }
}
.section-area-2 .section-title span {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #78C6D5;
}
.section-area-2 .section-title span img {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: calc(100% - 25px);
  display: inline-block;
  margin-left: 10px;
  -webkit-animation: section-animation 5s linear 0s infinite;
          animation: section-animation 5s linear 0s infinite;
}
.section-area-2 .section-text {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  color: rgba(30, 30, 30, 0.7);
}

.h2_banner-content .section-title {
  font-size: 70px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_banner-content .section-title {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_banner-content .section-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_banner-content .section-title {
    font-size: 45px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .h2_banner-content .section-title {
    font-size: 33px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_banner-content .section-title {
    font-size: 45px;
  }
}
.h2_banner-content .section-title span {
  display: inline-block;
  position: relative;
  z-index: 1;
  color:#78C6D5;
}
.h2_banner-content .section-title span img {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: calc(100% - 25px);
  display: inline-block;
  margin-left: 10px;
}
.h2_banner-content .section-text {
  margin-bottom: 43px;
  color: rgba(30, 30, 30, 0.6);
}

.section-area-3 .section-subtitle {
  color: var(--clr-theme-primary-3);
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}
.section-area-3 .section-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-area-3 .section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-area-3 .section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-area-3 .section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-area-3 .section-title {
    font-size: 40px;
  }
}
.section-area-3 .section-text {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  color: rgba(30, 30, 30, 0.7);
  letter-spacing: 0.15px;
}

.h3_banner-content .section-subtitle {
  color: var(--clr-body-heading);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.h3_banner-content .section-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_banner-content .section-title {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_banner-content .section-title {
    font-size: 45px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_banner-content .section-title {
    font-size: 45px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .h3_banner-content .section-title {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_banner-content .section-title {
    font-size: 45px;
  }
}
.h3_banner-content .section-title span {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: var(--clr-theme-primary-3);
}
.h3_banner-content .section-text {
  font-size: 17px;
  margin-bottom: 43px;
  color: rgba(30, 30, 30, 0.7);
}

.section-area-4 .section-subtitle {
  color: var(--clr-theme-primary-3);
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}
.section-area-4 .section-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-area-4 .section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-area-4 .section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-area-4 .section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-area-4 .section-title {
    font-size: 40px;
  }
}
.section-area-4 .section-text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  color: rgba(30, 30, 30, 0.7);
}

.section-white-4 .section-title {
  color: #fff;
}
.section-white-4 .section-text {
  color: rgba(255, 255, 255, 0.7);
}

.h4_banner-content .section-title {
  font-size: 90px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h4_banner-content .section-title br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h4_banner-content .section-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h4_banner-content .section-title {
    font-size: 75px;
  }
}
@media (max-width: 767px) {
  .h4_banner-content .section-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_banner-content .section-title {
    font-size: 60px;
  }
}
.h4_banner-content .section-title span {
  display: inline-block;
  font-weight: 900;
  color: var(--clr-theme-primary-4);
}
.h4_banner-content .section-text {
  font-size: 16px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.7);
}

.section-area-5 .section-subtitle {
  color: var(--clr-body-heading);
  font-size: 16px;
  display: block;
}
.section-area-5 .section-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-area-5 .section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-area-5 .section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-area-5 .section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-area-5 .section-title {
    font-size: 40px;
  }
}
.section-area-5 .section-text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  color: rgba(30, 30, 30, 0.7);
}

.small-section-area-2 .section-title {
  font-size: 40px;
}
.small-section-area-2 .section-title span img {
  bottom: -10px;
}
@media (max-width: 767px) {
  .small-section-area-2 .section-title {
    font-size: 32px;
  }
  .small-section-area-2 .section-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .small-section-area-2 .section-title {
    font-size: 35px;
  }
  .small-section-area-2 .section-title br {
    display: block;
  }
}

.small-section-area-3 .section-title {
  font-size: 40px;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .small-section-area-3 .section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .small-section-area-3 .section-title {
    font-size: 35px;
  }
}

.h2_blog-section-area .section-title span {
  color: var(--clr-body-heading);
}

.h2_cta-content .section-area-2 .section-title span {
  color: var(--clr-body-heading);
}

.h2_teacher-section .section-area-2 .section-title span {
  color: var(--clr-body-heading);
}

@-webkit-keyframes section-animation {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}

@keyframes section-animation {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}
/*
************
*************************
06. brand
******************************************************* 
*************************************************************** */
.brand-wrap {
  border: 1px solid rgba(30, 30, 30, 0.1);
  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 20px;
  padding-right: 20px;
}
.brand-item {
  text-align: center;
}
.brand-content h5 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 35px;
  color: rgba(30, 30, 30, 0.8);
}

.brand-item .brand-hover-img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  margin: auto;
  right: 0;
}

.brand-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.brand-item img {
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.brand-item:hover .brand-hover-img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.brand-item:hover .brand-main-img {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

/*
************
*************************
07. category
******************************************************* 
*************************************************************** */
.category-wrap {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .category-wrap {
    margin-left: 30px;
  }
}
.category-content {
  padding: 21px 25px 22px;
}
.category-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.category-content h5:hover a {
  color: #49a9b7;
}
.category-content p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.category-content p a {
  line-height: 1;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  padding-right: 15px;
  display: inline-block;
}
.category-content p a i {
  font-weight: 300;
  font-size: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.category-content p a i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.category-content p a i:last-child {
  right: 0;
}
.category-content p a:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.category-content p a:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.category-content p:hover a {
  color: #49a9b7;
}
.category-item {
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 40px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 10px 40px rgba(30, 30, 30, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.category-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.category-navigation i {
  font-weight: 300;
}
.category-navigation div {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 0px #E1E2E6;
          box-shadow: 0px 2px 0px #E1E2E6;
  border-radius: 100px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #1E1E1E;
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.category-navigation div:hover {
  background-color: #49a9b7;
  color: #fff;
}

.category-shape img {
  position: absolute;
}
.category-shape-1 {
  top: -75px;
  left: -25px;
  -webkit-animation: animation-popup-1 4s linear 0s infinite alternate;
          animation: animation-popup-1 4s linear 0s infinite alternate;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .category-shape-1 {
    left: 150px;
  }
}
@media (max-width: 767px) {
  .category-shape-1 {
    top: -65px;
    left: 150px;
  }
}
.category-shape-2 {
  top: -40px;
  right: 190px;
  -webkit-animation: animation-leftRight-1 3s linear 0s infinite alternate;
          animation: animation-leftRight-1 3s linear 0s infinite alternate;
}
@media (max-width: 767px) {
  .category-shape-2 {
    right: 15px;
  }
}
.category-shape-3 {
  left: 49%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 80px;
  -webkit-animation: animation-popup-2 1.2s linear 0s infinite alternate;
          animation: animation-popup-2 1.2s linear 0s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .category-shape-3 {
    left: calc(32% - 4px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .category-shape-3 {
    left: 31%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .category-shape-3 {
    left: 31%;
  }
}
@media (max-width: 767px) {
  .category-shape-3 {
    display: none;
  }
}
.category-shape-4 {
  right: -40px;
  top: 40px;
  -webkit-animation: animation-upDown-1 3s linear 0s infinite alternate;
          animation: animation-upDown-1 3s linear 0s infinite alternate;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .category-shape-4 {
    right: -25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .category-shape-4 {
    right: -30px;
  }
}
@media (max-width: 767px) {
  .category-shape-4 {
    display: none;
  }
}
.category-img img {
  width: 100%;
}

@-webkit-keyframes animation-popup-1 {
  0% {
    -webkit-transform: scale(0.2) rotate(0deg);
            transform: scale(0.2) rotate(0deg);
  }
  50% {
    -webkit-transform: scale(0.5) rotate(180deg);
            transform: scale(0.5) rotate(180deg);
  }
  90% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}

@keyframes animation-popup-1 {
  0% {
    -webkit-transform: scale(0.2) rotate(0deg);
            transform: scale(0.2) rotate(0deg);
  }
  50% {
    -webkit-transform: scale(0.5) rotate(180deg);
            transform: scale(0.5) rotate(180deg);
  }
  90% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes animation-popup-2 {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes animation-popup-2 {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes animation-upDown-1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
@keyframes animation-upDown-1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
@-webkit-keyframes animation-leftRight-1 {
  0% {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
  100% {
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
}
@keyframes animation-leftRight-1 {
  0% {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
  100% {
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
}
.h2_category-item {
  border: 1px solid rgba(30, 30, 30, 0.1);
  padding: 10px;
  background-color: #fff;
  border-radius: 6px;
}
.h2_category-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}
.h2_category-content h5:hover a {
  color: #49a9b7;
}
.h2_category-content p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.h2_category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.h2_category-img {
  width: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
}

.h3_category-area {
  background: var(--clr-color-lightPink);
}
.h3_category-item {
  background: #FFF;
  -webkit-box-shadow: 0px 2px 4px rgba(23, 22, 28, 0.1);
          box-shadow: 0px 2px 4px rgba(23, 22, 28, 0.1);
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .h3_category-item {
    padding: 40px 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_category-item {
    padding: 40px 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.h3_category-item-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E2C3E8 0%, rgba(226, 195, 232, 0) 100%);
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.h3_category-item-icon i {
  color: var(--clr-body-heading);
  font-size: 30px;
}
.h3_category-item-content h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.h3_category-item-content h5:hover a {
  color: var(--clr-theme-primary-3);
}
.h3_category-item-content p {
  margin-bottom: 0;
}
.h3_category-btn {
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h3_category-btn a {
  width: 40px;
  height: 40px;
  background: var(--clr-theme-primary-3);
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(32, 42, 61, 0.4);
          box-shadow: 0px 0px 5px 0px rgba(32, 42, 61, 0.4);
}
@media (max-width: 575px) {
  .h3_category-btn {
    position: static;
    -webkit-transform: unset;
            transform: unset;
    right: unset;
    top: unset;
    opacity: 1;
    visibility: visible;
    margin-top: 12px;
  }
}

.h3_category-item:hover .h3_category-btn {
  opacity: 1;
  visibility: visible;
}

.h4_category-area {
  background-color: #ECECF9;
}
.h4_category-item {
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 0 35px;
  border: 1px solid rgba(30, 30, 30, 0.09);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h4_category-item-icon {
  width: 80px;
  height: 80px;
  background: #ffb503;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 5px;
  -webkit-box-shadow: 0px 6px 30px 0px rgba(10, 10, 10, 0.1);
          box-shadow: 0px 6px 30px 0px rgba(10, 10, 10, 0.1);
  margin-bottom: 25px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border: 1px solid transparent;
}
.h4_category-item-icon i {
  font-size: 40px;
  color: var(--clr-theme-primary-4);
}
.h4_category-item-content h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.h4_category-item-content h5:hover a {
  color: var(--clr-theme-primary-4);
}
.h4_category-item-content p {
  margin-bottom: 0;
}
.h4_category-item:hover {
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 0px 14px 50px 0px rgba(10, 10, 10, 0.14);
          box-shadow: 0px 14px 50px 0px rgba(10, 10, 10, 0.14);
}
.h4_category-item:hover .h4_category-item-icon {
  border-color: rgba(10, 10, 10, 0.1);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h4_category-area .col-xl-3:first-child .h4_category-item {
  border-width: 0;
}
@media (max-width: 767px) {
  .h4_category-area .col-xl-3:first-child .h4_category-item {
    border-width: 0 0 1px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_category-area .col-xl-3:first-child .h4_category-item {
    border-width: 0;
  }
}
.h4_category-area .col-xl-3:nth-child(2) .h4_category-item {
  border-width: 0 0 0 1px;
}
@media (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(2) .h4_category-item {
    border-width: 0 0 1px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(2) .h4_category-item {
    border-width: 0 0 0 1px;
  }
}
.h4_category-area .col-xl-3:nth-child(3) .h4_category-item {
  border-width: 0 1px 0 1px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h4_category-area .col-xl-3:nth-child(3) .h4_category-item {
    border-width: 1px 0 0 0;
  }
}
@media (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(3) .h4_category-item {
    border-width: 0 0 1px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(3) .h4_category-item {
    border-width: 1px 0 0 0;
  }
}
.h4_category-area .col-xl-3:nth-child(4) .h4_category-item {
  border-width: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h4_category-area .col-xl-3:nth-child(4) .h4_category-item {
    border-width: 1px 0 0 1px;
  }
}
@media (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(4) .h4_category-item {
    border-width: 0 0 1px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(4) .h4_category-item {
    border-width: 1px 0 0 1px;
  }
}
.h4_category-area .col-xl-3:nth-child(5) .h4_category-item {
  border-width: 1px 0 0 0;
}
@media (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(5) .h4_category-item {
    border-width: 0 0 1px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(5) .h4_category-item {
    border-width: 1px 0 0 0;
  }
}
.h4_category-area .col-xl-3:nth-child(6) .h4_category-item {
  border-width: 1px 0 0 1px;
}
@media (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(6) .h4_category-item {
    border-width: 0 0 1px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(6) .h4_category-item {
    border-width: 1px 0 0 1px;
  }
}
.h4_category-area .col-xl-3:nth-child(7) .h4_category-item {
  border-width: 1px 1px 0 1px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h4_category-area .col-xl-3:nth-child(7) .h4_category-item {
    border-width: 1px 0 0 0;
  }
}
@media (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(7) .h4_category-item {
    border-width: 0 0 1px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_category-area .col-xl-3:nth-child(7) .h4_category-item {
    border-width: 1px 0 0 0;
  }
}
.h4_category-area .col-xl-3:last-child .h4_category-item {
  border-width: 1px 0 0 0;
  border-top: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h4_category-area .col-xl-3:last-child .h4_category-item {
    border-width: 1px 0 0 1px;
  }
}
@media (max-width: 767px) {
  .h4_category-area .col-xl-3:last-child .h4_category-item {
    border-width: 0 0 0 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_category-area .col-xl-3:last-child .h4_category-item {
    border-width: 1px 0 0 1px;
  }
}

.h5_category-item {
  border: 1px solid rgba(10, 10, 10, 0.14);
  padding: 41px 45px 41px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5_category-item {
    padding: 41px 30px 41px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5_category-item {
    padding: 41px 30px 41px;
  }
}
.h5_category-item-icon {
  margin-bottom: 85px;
}
.h5_category-item-icon i {
  font-size: 50px;
  color: var(--clr-body-heading);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h5_category-item-content h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h5_category-item-content h5:hover a {
  color: var(--clr-theme-primary-5);
}
.h5_category-item-content p {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--clr-body-heading);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h5_category-item:hover {
  background-color: var(--clr-body-heading);
  border-color: transparent;
}
.h5_category-item:hover .h5_category-item-icon i {
  color: #fff;
}
.h5_category-item:hover .h5_category-item-content h5 {
  color: #fff;
}
.h5_category-item:hover .h5_category-item-content p {
  color: #fff;
}

/*
************
*************************
08. course
******************************************************* 
*************************************************************** */
.course-wrap {
  background-color: var(--clr-color-lightPurple);
}
.course-item {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
  position: relative;
  z-index: auto;
}
.course-img {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.course-img img {
  width: 100%;
}
.course-content {
  padding-left: 15px;
  padding-right: 15px;
}
.course-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-top: 25px;
  padding-bottom: 20px;
}
.course-content-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 25px;
}
.course-content-title:hover a {
  color: #49a9b7;
}
.course-content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(30, 30, 30, 0.1);
  padding: 15px 0 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.course-top-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 4px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.course-top-icon img {
  width: 20px;
}
.course-top-title h6 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  color: rgba(30, 30, 30, 0.6);
}
.course-bottom-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.course-bottom-info span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  color: rgba(30, 30, 30, 0.6);
}
.course-bottom-info span i {
  font-weight: 300;
}
.course-bottom-price span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #49a9b7;
  font-weight: 700;
}
.course-bottom-price span del {
  color: #787878;
}

.course-hover-content {
  padding: 25px 25px 25px;
  position: absolute;
  left: 0;
  top: -100%;
  top: 0;
  background-color: #fff;
  border-radius: 10px;
  opacity: 0;
  z-index: 9;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  min-height: 100%;
}
.course-hover-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-bottom: 20px;
}
.course-hover-content-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
}
.course-hover-content-title:hover a {
  color: #49a9b7;
}
.course-hover-content-text {
  font-size: 14px;
  line-height: 22px;
  color: rgba(30, 30, 30, 0.6);
  margin-bottom: 20px;
}
.course-hover-content-list {
  margin-bottom: 30px;
}
.course-hover-content-list li {
  font-size: 14px;
  line-height: 22px;
  color: rgba(30, 30, 30, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 22px;
  gap: 10px;
  margin-bottom: 10px;
}
.course-hover-content-list li i {
  color: #1E1E1E;
  margin-top: 5px;
  font-weight: 300;
}
.course-hover-content-list li:last-child {
  margin-bottom: 0;
}
.course-hover-content-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
}
.course-hover-top-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 4px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.course-hover-top-icon img {
  width: 20px;
}
.course-hover-top-title h6 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  color: rgba(30, 30, 30, 0.6);
}

.course-hover-fav-btn a {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(30, 30, 30, 0.14);
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 15px;
  color: #1E1E1E;
  background-color: rgba(10, 10, 10, 0.08);
}
.course-hover-fav-btn a i {
  font-weight: 300;
}
.course-hover-fav-btn a:hover {
  background-color: #49a9b7;
  border-color: transparent;
  color: #fff;
}
.course-hover-cart-btn {
  width: calc(100% - 40px);
}
.course-hover-content::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background-color: #fff;
  -webkit-clip-path: polygon(0 50%, 100% 100%, 100% 0);
          clip-path: polygon(0 50%, 100% 100%, 100% 0);
  width: 20px;
  height: 24px;
  z-index: -1;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.course-btn.theme-btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.course-item:hover .course-hover-content {
  opacity: 1;
  visibility: visible;
  top: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.course-item:hover .course-hover-content::before {
  left: -15px;
}

.course-tab {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.course-tab .nav {
  background-color: #fff;
  padding: 5px 5px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-shadow: 0px 2px 0px #E1E2E6;
          box-shadow: 0px 2px 0px #E1E2E6;
}
.course-tab .nav .nav-item .nav-link {
  padding: 8px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  color: rgba(30, 30, 30, 0.6);
}
@media (max-width: 767px) {
  .course-tab .nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px 30px;
  }
}

.course-tab .nav-pills .nav-link:hover,
.course-tab .nav-pills .nav-link.active,
.course-tab .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #49a9b7;
}

.h2_course-area {
  background-color: #F5F5F5;
}
.h2_course-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
}
.h2_course-item-img {
  overflow: hidden;
}
.h2_course-item-img img {
  width: 100%;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.h2_course-content {
  padding: 20px 30px 30px;
}
@media (max-width: 767px) {
  .h2_course-content {
    padding: 20px 25px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_course-content {
    padding: 20px 30px 30px;
  }
}
.h2_course-content-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.h2_course-content-title:hover a {
  color: #49a9b7;
}
.h2_course-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 11px;
  gap: 10px;
}
.h2_course-content-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #F1F1F1;
  margin-bottom: 20px;
}
.h2_course-content-info span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: 14px;
}
.h2_course-content-info span:first-child {
  border-right: 1px solid rgba(30, 30, 30, 0.14);
}
.h2_course-content-info span i {
  font-weight: 300;
}
.h2_course-content-text {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 24px;
}
.h2_course-content-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.h2_course-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h2_course-rating span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(30, 30, 30, 0.7);
  display: block;
}
.h2_course-rating ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h2_course-rating ul li {
  color: #FFA121;
  font-size: 14px;
}
@media (max-width: 767px) {
  .h2_course-rating {
    gap: 5px;
  }
  .h2_course-rating span {
    font-size: 14px;
  }
  .h2_course-rating ul li {
    font-size: 12px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_course-rating {
    gap: 10px;
  }
  .h2_course-rating span {
    font-size: 15px;
  }
  .h2_course-rating ul li {
    font-size: 14px;
  }
}

.h2_course-save a {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--clr-body-heading);
  background-color: rgba(10, 10, 10, 0.08);
}
.h2_course-save a i {
  font-weight: 300;
}
.h2_course-save a:hover {
  background-color: #49a9b7;
  color: #fff;
  border-color: #49a9b7;
}
.h2_course-author-info span {
  color: #A3A9B1;
  font-size: 14px;
  font-weight: 500;
}
.h2_course-author-info span a {
  color: var(--clr-body-heading);
}
.h2_course-author-info span a:hover {
  color: #49a9b7;
}
.h2_course-author-img {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(30, 30, 30, 0.14);
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.h2_course-author-img img {
  width: 40px;
  height: 40px;
}

.h2_course-content-bottom {
  border-top: 1px solid rgba(30, 30, 30, 0.1);
  padding: 15px 30px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.h2_course-bottom-price span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-color-darkPink);
}
.h2_course-bottom-price span del {
  color: #787878;
  font-weight: 500;
}
.h2_course-bottom-btn a {
  line-height: 1;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  padding-right: 15px;
  display: inline-block;
}
.h2_course-bottom-btn a i {
  font-size: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.h2_course-bottom-btn a i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.h2_course-bottom-btn a i:last-child {
  right: 0;
}
.h2_course-bottom-btn a:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.h2_course-bottom-btn a:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.h2_course-bottom-btn a:hover {
  color: #49a9b7;
}

.h2_course-tab .nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h2_course-tab .nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.h2_course-tab .nav .nav-item {
  margin-bottom: 10px;
}
.h2_course-tab .nav .nav-item .nav-link {
  padding: 0;
  background: transparent;
  color: var(--clr-body-heading);
  font-size: 15px;
  margin-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}
.h2_course-tab .nav .nav-item .nav-link span {
  position: absolute;
  left: 0;
  top: -25px;
  background-color: #49a9b7;
  -webkit-box-shadow: 0px 3px 3px rgba(18, 104, 235, 0.24);
          box-shadow: 0px 3px 3px rgba(18, 104, 235, 0.24);
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 4px 8px;
  line-height: 1;
}
.h2_course-tab .nav .nav-item .nav-link span::before {
  position: absolute;
  left: 3px;
  bottom: -6px;
  content: "";
  width: 9px;
  height: 8px;
  background: #49a9b7;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.h2_course-tab .nav .nav-item:last-child .nav-link {
  margin-right: 0;
}
.h2_course-tab .nav-pills .nav-link.active, .h2_course-tab .nav-pills .show > .nav-link {
  color: #49a9b7;
}

.h2_course-item:hover .h2_course-item-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.h3_course-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.h3_course-tab .nav {
  background-color: #fff;
  padding: 5px 5px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  border: 1px solid rgba(30, 30, 30, 0.14);
}
.h3_course-tab .nav .nav-item .nav-link {
  padding: 8px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  color: rgba(30, 30, 30, 0.6);
}
@media (max-width: 767px) {
  .h3_course-tab .nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px 30px;
  }
}
.h3_course-tab .nav-pills .nav-link:hover,
.h3_course-tab .nav-pills .nav-link.active,
.h3_course-tab .nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--clr-theme-primary-3);
}
.h3_course-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 2px 20px 0px rgba(30, 30, 30, 0.1);
}
.h3_course-item-top {
  padding: 25px 25px;
}
.h3_course-item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  border-radius: 6px;
}
.h3_course-item-img img {
  width: 100%;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.h3_course-item-tag a {
  position: absolute;
  left: 15px;
  top: 15px;
  border-radius: 6px;
  background: var(--clr-theme-primary-3);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(32, 42, 61, 0.4);
          box-shadow: 0px 2px 5px 0px rgba(32, 42, 61, 0.4);
  color: #fff;
  padding: 2px 13px;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
}
.h3_course-item-save a {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: -ms-inline-grid;
  display: inline-grid;
  background: rgba(30, 30, 30, 0.48);
  place-items: center;
  color: #fff;
  font-size: 16px;
  opacity: 1;
  border-radius: 4px;
}
.h3_course-item-save a:hover {
  background: var(--clr-theme-primary-3);
}
.h3_course-content-info {
  margin-bottom: 15px;
}
.h3_course-content-info ul li {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
  color: rgba(30, 30, 30, 0.6);
}
.h3_course-content-info ul li:last-child {
  margin-right: 0;
}
.h3_course-content-info ul li i {
  margin-right: 6px;
}
.h3_course-content-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 25px;
}
.h3_course-content-title:hover a {
  color: var(--clr-theme-primary-3);
}
.h3_course-content-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 5px;
}
.h3_course-content-price span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-theme-primary-3);
}
.h3_course-content-price span del {
  color: rgba(30, 30, 30, 0.5);
  font-weight: 500;
  font-size: 18px;
}
.h3_course-content-price h5 {
  color: #FF002C;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0;
}
.h3_course-item-bottom {
  border-top: 1px solid rgba(30, 30, 30, 0.1);
  padding: 15px 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .h3_course-item-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_course-item-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.h3_course-item-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.h3_course-item-author-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.h3_course-item-author-info span {
  color: #79818D;
  font-size: 14px;
  font-weight: 500;
}
.h3_course-item-author-info span a {
  color: var(--clr-body-heading);
}
.h3_course-item-author-info span a:hover {
  color: var(--clr-theme-primary-3);
}
.h3_course-item-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h3_course-item-rating ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h3_course-item-rating ul li {
  color: #FFA121;
  font-size: 14px;
}
.h3_course-item-rating span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(30, 30, 30, 0.7);
  display: block;
}

.h3_course-item:hover .h3_course-item-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.h4_course-tab .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.h4_course-tab .nav .nav-item .nav-link {
  padding: 10px 30px;
  line-height: 1;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 30px;
  color: rgba(30, 30, 30, 0.6);
}
.h4_course-tab .nav-pills .nav-link:hover,
.h4_course-tab .nav-pills .nav-link.active,
.h4_course-tab .nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--clr-theme-primary-4);
  border-color: transparent;
}
.h4_course-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.1);
  padding: 30px 30px 23px;
}
.h4_course-item-img {
  overflow: hidden;
  border-radius: 6px;
}
.h4_course-item-img img {
  width: 100%;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.h4_course-content {
  position: relative;
  z-index: 1;
  padding-top: 25px;
}
.h4_course-content-price {
  position: absolute;
  right: 30px;
  top: -12px;
  z-index: 9;
}
.h4_course-content-price span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-body-heading);
  background-color: var(--clr-theme-primary-4);
  padding: 0 13px;
  height: 24px;
  line-height: 25px;
  border-radius: 4px;
}
.h4_course-content-tag a {
  border-radius: 4px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  color: rgba(30, 30, 30, 0.6);
  padding: 7px 13px;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}
.h4_course-content-tag a:hover {
  background-color: var(--clr-theme-primary-4);
  color: var(--clr-body-heading);
  border-color: transparent;
  opacity: 1;
}
.h4_course-content-info {
  margin-bottom: 15px;
}
.h4_course-content-info ul li {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
  color: rgba(30, 30, 30, 0.6);
}
.h4_course-content-info ul li:last-child {
  margin-right: 0;
}
.h4_course-content-info ul li i {
  margin-right: 6px;
}
.h4_course-content-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
}
.h4_course-content-title:hover a {
  color: var(--clr-theme-primary-4);
}
.h4_course-content-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.h4_course-content-rating ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h4_course-content-rating ul li {
  color: #FFA121;
  font-size: 14px;
}
.h4_course-content-rating span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(30, 30, 30, 0.7);
  display: block;
}
.h4_course-content-btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-body-heading);
}
.h4_course-content-btn a:hover {
  color: var(--clr-theme-primary-4);
}

.h4_course-item:hover .h4_course-item-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.h5_course-tab .nav {
  border-radius: 0;
}
.h5_course-tab .nav .nav-item .nav-link {
  border-radius: 0;
}
.h5_course-tab .nav-pills .nav-link:hover,
.h5_course-tab .nav-pills .nav-link.active,
.h5_course-tab .nav-pills .show > .nav-link {
  color: var(--clr-body-heading);
  background-color: var(--clr-theme-primary-5);
}
.h5_course-area .course-hover-fav-btn a:hover {
  background-color: var(--clr-theme-primary-5);
  border-color: transparent;
  color: var(--clr-body-heading);
}
.h5_course-area .course-hover-content-title:hover a {
  color: #49a9b7;
}

.innerPage_course-left p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  color: rgba(30, 30, 30, 0.7);
}

.innerPage_course-search form {
  position: relative;
  z-index: 1;
}
.innerPage_course-search form input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #F5F5F5;
  border: none;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 15px;
  color: rgba(30, 30, 30, 0.6);
  padding-right: 55px;
}
.innerPage_course-search form input::-webkit-input-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.innerPage_course-search form input:-moz-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.innerPage_course-search form input::-moz-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -moz-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.innerPage_course-search form input:-ms-input-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.5s linear 0s;
  -ms-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
@media (min-width: 992px) {
  .innerPage_course-search form input {
    min-width: 300px;
  }
}
.innerPage_course-search form button {
  position: absolute;
  right: 20px;
  top: 0;
  height: 100%;
  font-size: 15px;
  color: #1E1E1E;
  border: none;
  background: transparent;
  padding: 0;
}
.innerPage_course-search form button i {
  font-weight: 300;
}

.innerPage_course-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 15px;
}
@media (max-width: 767px) {
  .innerPage_course-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.innerPage_course-right .nice-select.innerPage_course-category-list.has-nice-select {
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  width: 190px;
  border-radius: 6px;
  border: 1px solid rgba(30, 30, 30, 0.1);
}
.innerPage_course-right .nice-select.innerPage_course-category-list.has-nice-select ul li {
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  min-height: 40px;
  color: rgba(30, 30, 30, 0.6);
}
.innerPage_course-right .nice-select.innerPage_course-category-list.has-nice-select.open ul {
  width: 100%;
  border-radius: 6px;
  border: none;
  margin-top: 1px;
}
.innerPage_course-right .nice-select::after {
  border-bottom: 1.5px solid rgba(30, 30, 30, 0.6);
  border-right: 1.5px solid rgba(30, 30, 30, 0.6);
  content: "";
  display: block;
  height: 7px;
  margin-top: -1px;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 7px;
}

.pagination-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.pagination-area ul li a {
  width: 45px;
  height: 45px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 4px;
}
.pagination-area ul li a:hover {
  background-color: #49a9b7;
  color: #fff;
}
.pagination-area ul li a i {
  font-size: 15px;
}

/*
************
*************************
09. course-details
******************************************************* 
*************************************************************** */
.course_details-img {
  position: relative;
  margin-bottom: -40px;
  z-index: -1;
}
.course_details-title {
  font-size: 32px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course_details-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .course_details-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-title {
    font-size: 30px;
  }
}
.course_details-top {
  padding: 27px 40px 35px;
  -webkit-box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
  border-radius: 0 10px 10px 10px;
  background-color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course_details-top {
    padding: 27px 30px 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .course_details-top {
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .course_details-top {
    padding: 27px 25px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-top {
    padding: 27px 30px 35px;
  }
}
.course_details-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.course_details-meta-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course_details-meta-left {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .course_details-meta-left {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-meta-left {
    gap: 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .course_details-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.course_details-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.course_details-author-img {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(4, 0, 23, 0.1);
  border-radius: 50%;
  padding: 4px;
}
.course_details-author-img img {
  width: 100%;
}
.course_details-author-info span {
  font-size: 14px;
  font-weight: 500;
  color: #848B97;
  display: block;
  line-height: 20px;
}
.course_details-author-info h5 {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.4;
}
.course_details-author-info h5:hover a {
  color: #49a9b7;
}
.course_details-rating {
  position: relative;
  z-index: 1;
  padding-left: 15px;
}
.course_details-rating::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 1px;
  background: rgba(4, 0, 23, 0.14);
  z-index: 1;
}
@media (max-width: 767px) {
  .course_details-rating {
    padding-left: 0;
  }
  .course_details-rating::before {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-rating {
    padding-left: 15px;
  }
  .course_details-rating::before {
    display: block;
  }
}
.course_details-rating span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: #848B97;
  line-height: 22px;
}
.course_details-rating ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.course_details-rating ul li {
  display: block;
  font-size: 12px;
  color: #FFA121;
  line-height: 20px;
}
.course_details-category {
  position: relative;
  z-index: 1;
  padding-left: 15px;
}
.course_details-category::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 40px;
  width: 1px;
  background: rgba(4, 0, 23, 0.14);
  z-index: 1;
}
@media (max-width: 767px) {
  .course_details-category {
    padding-left: 0;
  }
  .course_details-category::before {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-category {
    padding-left: 15px;
  }
  .course_details-category::before {
    display: block;
  }
}
.course_details-category span {
  font-size: 14px;
  font-weight: 500;
  color: #848B97;
  display: block;
  line-height: 20px;
}
.course_details-category h5 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}
.course_details-category h5:hover a {
  color: #49a9b7;
}

.course_details-tab-button {
  margin-bottom: 30px;
}
.course_details-tab-button .nav {
  gap: 10px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.course_details-tab-button .nav .nav-item {
  width: 25%;
}
.course_details-tab-button .nav .nav-item .nav-link {
  background: #F5F5F5;
  height: 55px;
  line-height: 55px;
  border: 1px solid rgba(30, 30, 30, 0.1);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--clr-body-heading);
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .course_details-tab-button .nav .nav-item .nav-link span {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-tab-button .nav .nav-item .nav-link span {
    display: block;
  }
}
.course_details-tab-button .nav .nav-item .nav-link i {
  font-weight: 300;
}

.course_details-tab-button .nav-pills .nav-link.active, .course_details-tab-button .nav-pills .show > .nav-link {
  color: var(--clr-body-heading);
  background-color: #fff;
  border-top: 2px solid #49a9b7;
}
.course_details-tab-button .nav-pills .nav-link.active i, .course_details-tab-button .nav-pills .show > .nav-link i {
  color: #49a9b7;
}

.course_details-content-title {
  font-size: 24px;
  line-height: 1.4;
}
.course_details-content p {
  color: rgba(30, 30, 30, 0.7);
}
.course_details-content-list ul li {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 13px;
  line-height: 26px;
}
.course_details-content-list ul li:last-child {
  margin-bottom: 0;
}
.course_details-content-list ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--clr-body-heading);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.course_details-sidebar {
  background: #fff;
  -webkit-box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
  padding: 45px 0 60px;
  border-radius: 10px 0 10px 10px;
}
.course_details-sidebar-btn {
  margin-left: 40px;
  margin-right: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course_details-sidebar-btn {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .course_details-sidebar-btn {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-sidebar-btn {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .course_details-sidebar {
    border-radius: 10px;
  }
}
.course_details-price {
  padding-left: 40px;
  padding-right: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course_details-price {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .course_details-price {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-price {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.course_details-price del {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.course_details-price h2 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course_details-price h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .course_details-price h2 {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-price h2 {
    font-size: 40px;
  }
}
.course_details-list ul {
  margin-bottom: 40px;
}
.course_details-list ul li {
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 40px;
  color: rgba(30, 30, 30, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.course_details-list ul li:first-child {
  border-top: 1px solid rgba(30, 30, 30, 0.1);
}
.course_details-list ul li span i {
  margin-right: 10px;
  color: #49a9b7;
  font-size: 16px;
  font-weight: 300;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .course_details-list ul li {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .course_details-list ul li {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-list ul li {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.course_details-instructor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 360px) {
  .course_details-instructor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .course_details-instructor {
    gap: 20px;
  }
}
.course_details-thumbnail {
  min-width: 200px;
}
@media (max-width: 767px) {
  .course_details-thumbnail {
    min-width: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-thumbnail {
    min-width: 170px;
  }
}
.course_details-author-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.course_details-author-subtitle {
  display: block;
  margin-bottom: 15px;
}
.course_details-author-content p {
  margin-bottom: 15px;
}
.course_details-social span {
  color: #747474;
  font-weight: 500;
  line-height: 30px;
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}
.course_details-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.course_details-social ul li a {
  display: -ms-grid;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(30, 30, 30, 0.1);
  place-items: center;
  border-radius: 4px;
  color: rgba(30, 30, 30, 0.3);
  font-size: 15px;
}
.course_details-social ul li a:hover {
  background: #49a9b7;
  color: #fff;
}

.course_details-review-content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.course_details-review-content ul li .review-rating {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--clr-body-heading);
}

.course_details-review-content ul li .review-rating i {
  color: #f8b81f;
  font-size: 12px;
}

.course_details-review-content ul li .review-progress-bar {
  width: 100%;
  height: 5px;
  background: #49a9b7;
  border-radius: 4px;
  margin-left: 30px;
  margin-right: 30px;
}

.course_details-review-content ul li .review-rating-count {
  color: var(--clr-body-heading);
  font-size: 14px;
}

.course_details-review-left h5 {
  font-size: 60px;
  margin-bottom: 0;
  font-weight: 600;
}

.course_details-review-left {
  display: -ms-grid;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .course_details-review-left {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-review-left {
    margin-bottom: 0px;
  }
}

.course_details-review-left ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.course_details-review-left ul li i {
  font-size: 14px;
  color: #f8b81f;
}

.course_details-review-left p {
  font-size: 14px;
  margin-bottom: 0;
}

.course_details-review-wrap {
  padding: 40px 40px;
  padding-left: 30px;
  border: 1px solid rgba(4, 0, 23, 0.1);
  border-radius: 10px;
}

.course_details-review-title {
  font-size: 22px;
  margin-bottom: 25px;
}

.course_details-curriculum .accordion .accordion-item {
  border: 1px solid rgba(4, 0, 23, 0.1);
  margin-bottom: 30px;
  border-radius: 4px;
}

.course_details-curriculum .accordion .accordion-header .accordion-button {
  border: 0;
  background: transparent;
  padding-left: 30px;
  padding-right: 50px;
  height: 70px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--clr-body-heading);
}
@media (max-width: 767px) {
  .course_details-curriculum .accordion .accordion-header .accordion-button {
    font-size: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course_details-curriculum .accordion .accordion-header .accordion-button {
    font-size: 18px;
  }
}
.course_details-curriculum .accordion .accordion-header .accordion-button:not(.collapsed) {
  color: #49a9b7;
  border-bottom: 1px solid rgba(4, 0, 23, 0.1);
}

.course_details-curriculum .accordion .accordion-body {
  padding: 25px 30px;
  line-height: 1.5;
}

.accordion-button::after {
  display: none;
}

.accordion-button {
  position: relative;
}

.accordion-button::before {
  position: absolute;
  right: 0;
  top: 0;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  padding: 0 30px;
  font-size: 16px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  font-weight: 300;
  height: 70px;
  line-height: 70px;
}

.accordion-button:not(.collapsed)::before {
  content: "\f068";
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.accordion-body ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  gap: 30px;
}

.accordion-body ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.accordion-body ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--clr-body-text);
}

.accordion-body ul li a i {
  font-size: 14px;
}

/*
************
*************************
10. button
******************************************************* 
*************************************************************** */
.theme-btn {
  background: #ffa500;
  color: var(--clr-common-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  margin-bottom: 0;
  text-align: center;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  border: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.theme-btn::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 500px;
  height: 200px;
  background-color: #08449E;
  border-color: transparent;
  border-radius: 100px;
  -webkit-transform: translate(-40px, -80px) scale(0.1);
          transform: translate(-40px, -80px) scale(0.1);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

.theme-btn:hover {
  color: #fff;
}
.theme-btn:hover::after {
  opacity: 0.5;
  -webkit-transform-origin: 100px 100px;
          transform-origin: 100px 100px;
  -webkit-transform: scale(1) translate(-10px, -70px);
          transform: scale(1) translate(-10px, -70px);
}

.theme-btn-big {
  height: 55px;
  line-height: 55px;
  padding: 0 30px;
}

.theme-btn-medium {
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
}

.theme-btn-full {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.theme-btn-3 {
  border-radius: 6px;
  background: var(--clr-theme-primary-3);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(32, 42, 61, 0.2);
          box-shadow: 0px 2px 5px 0px rgba(32, 42, 61, 0.2);
}
.theme-btn-3::after {
  background-color: #a73301;
}
.theme-btn-3 i {
  margin-left: 5px;
}

.theme-btn-4 {
  border-radius: 100px;
  background: var(--clr-theme-primary-4);
  color: var(--clr-body-heading);
  font-size: 15px;
  font-weight: 500;
}
.theme-btn-4::after {
  color: var(--clr-body-heading);
  background-color: #c79216;
}
.theme-btn-4:hover {
  color: var(--clr-body-heading);
}

.theme-btn-5 {
  border-radius: 0;
  background: #ffa500;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.theme-btn-5::after {
  color: var(--clr-body-heading);
  background-color: #c7c108;
}
.theme-btn-5:hover {
  color: var(--clr-body-heading);
}

.h3_banner-form-btn {
  padding: 0 35px;
}

.h4_about-btn,
.h4_blog-btn {
  height: 50px;
}

.t-theme-btn {
  background-color: #fff;
  border: 1px solid rgba(30, 30, 30, 0.1);
  color: var(--clr-body-heading);
  padding: 0 20px;
}
.t-theme-btn:hover {
  background-color: #49a9b7;
  color: #fff;
}
.t-theme-btn::after {
  display: none;
}

.h5_play-btn {
  width: 150px;
  height: 150px;
  background: var(--clr-theme-primary-5);
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: var(--clr-body-heading);
  font-size: 25px;
}
.h5_play-btn::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-animation-name: popupBtn;
          animation-name: popupBtn;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  z-index: -1;
}
.h5_play-btn:hover {
  background-color: var(--clr-theme-primary-4);
  color: var(--clr-body-heading);
}

@-webkit-keyframes popupBtn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes popupBtn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
}
/*
************
*************************
11. about
******************************************************* 
*************************************************************** */
.about-img {
  margin-right: 40px;
  position: relative;
  z-index: 1;
}
.about-img img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-img {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-img {
    margin-right: 0;
  }
}
.about-img-meta {
  position: absolute;
  left: 235px;
  bottom: 45px;
  background: #fff;
  border-radius: 6px;
  padding: 25px 30px 25px;
  -webkit-box-shadow: 0px 10px 40px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 10px 40px rgba(30, 30, 30, 0.1);
  -webkit-animation: about-upDown-1 3s linear 0s infinite alternate;
          animation: about-upDown-1 3s linear 0s infinite alternate;
  z-index: 1;
}
.about-img-meta span {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.about-img-meta span i {
  color: #FFA121;
  font-size: 15px;
}
.about-img-meta h5 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-img-meta {
    left: 150px;
  }
}
@media (max-width: 767px) {
  .about-img-meta {
    padding: 15px 20px;
    left: 130px;
  }
  .about-img-meta span {
    font-size: 12px;
    margin-bottom: 0;
  }
  .about-img-meta span i {
    font-size: 12px;
  }
  .about-img-meta h5 {
    font-size: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-img-meta {
    padding: 25px 30px 25px;
    left: 230px;
  }
  .about-img-meta span {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .about-img-meta span i {
    font-size: 15px;
  }
  .about-img-meta h5 {
    font-size: 18px;
  }
}

.about-content-list {
  margin-bottom: 41px;
}
.about-content-list ul li {
  color: var(--clr-body-heading);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  padding-left: 15px;
  margin-bottom: 5px;
  line-height: 28px;
}
.about-content-list ul li::before {
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--clr-body-heading);
  border-radius: 50%;
}
.about-content-list ul li:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes about-upDown-1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}

@keyframes about-upDown-1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}
.h2_about-area {
  position: relative;
  z-index: 1;
}
.h2_about-top-shape {
  position: absolute;
  z-index: 1;
  top: 135px;
  right: 145px;
  -webkit-animation: animation-upDown-2 3s linear 0s infinite alternate;
          animation: animation-upDown-2 3s linear 0s infinite alternate;
}
.h2_about-img {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}
.h2_about-img-button a {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  right: 0;
  text-align: center;
  width: 90px;
  height: 90px;
  background-color: #fff;
  border-radius: 50%;
  line-height: 90px;
  font-size: 25px;
  color: var(--clr-body-heading);
  -webkit-box-shadow: 0px 2px 0px #A5A6A9;
          box-shadow: 0px 2px 0px #A5A6A9;
}
@media (max-width: 767px) {
  .h2_about-img-button a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}
.h2_about-img-button a:hover {
  background-color: #49a9b7;
  -webkit-box-shadow: 0px 2px 0px #49a9b7;
          box-shadow: 0px 2px 0px #49a9b7;
  color: #fff;
}
.h2_about-inner-img {
  position: relative;
  z-index: 1;
}
.h2_about-inner-img .h2_inner-img {
  border-radius: 10px;
  max-width: 50%;
  margin-top: -190px;

}
.h2_about-inner-img2 {
  position: absolute;
  right: 50px;
  top: 120px;
  z-index: 9;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_about-inner-img2 {
    right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_about-inner-img2 {
    right: 100px;
  }
}
@media (max-width: 767px) {
  .h2_about-inner-img2 {
    right: 0;
    top: auto;
    bottom: 0;
    margin-left: 20%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_about-inner-img2 {
    right: 0;
    top: 120px;
  }
}
.h2_about-shape-1 {
  position: absolute;
  right: -10px;
  top: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_about-shape-1 {
    width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_about-shape-1 {
    right: -20px;
    z-index: 1;
    width: 26%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_about-shape-1 {
    right: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_about-shape-1 {
    right: 0;
    width: 30%;
  }
}
.h2_about-shape-2 {
  position: absolute;
  left: -65px;
  top: -25px;
  z-index: 1;
  -webkit-animation: animation-leftRight-1 3s linear 0s infinite alternate;
          animation: animation-leftRight-1 3s linear 0s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_about-shape-2 {
    left: 0;
  }
}
.h2_about-shape-3 {
  position: absolute;
  left: 145px;
  bottom: 20px;
  -webkit-animation: animation-popup-1 3s linear 0s infinite alternate;
          animation: animation-popup-1 3s linear 0s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_about-shape-3 {
    left: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_about-shape-3 {
    left: 30px;
  }
}
.h2_about-rating {
  position: absolute;
  left: 105px;
  bottom: 65px;
  background: #fff;
  border-radius: 10px;
  padding: 25px 30px 25px;
  -webkit-box-shadow: 0px 16px 70px rgba(30, 30, 30, 0.14);
          box-shadow: 0px 16px 70px rgba(30, 30, 30, 0.14);
  z-index: 9;
  -webkit-animation: animation-upDown-1 3s linear 0s infinite alternate;
          animation: animation-upDown-1 3s linear 0s infinite alternate;
}
.h2_about-rating span {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.h2_about-rating span i {
  color: #FFA121;
  font-size: 15px;
}
.h2_about-rating h5 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_about-rating {
    left: 50px;
  }
}

.h2_inner-img-shape {
  position: absolute;
  left: -30px;
  bottom: -30px;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_inner-img-shape {
    left: -20px;
    bottom: -20px;
  }
}
@media (max-width: 767px) {
  .h2_inner-img-shape {
    left: -10px;
    bottom: -10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_inner-img-shape {
    left: -15px;
    bottom: -15px;
  }
}

.h3_about-area {
  position: relative;
  z-index: 1;
}
.h3_about-top-shape {
  position: absolute;
  top: 280px;
  right: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_about-top-shape {
    top: 230px;
    right: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_about-top-shape {
    display: none;
  }
}
.h3_about-img {
  position: relative;
  z-index: 1;
}
.h3_about-img-shape-1 {
  position: absolute;
  top: 65px;
  left: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_about-img-shape-1 {
    top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_about-img-shape-1 {
    top: 0;
  }
}
.h3_about-img-shape-2 {
  position: absolute;
  top: 5px;
  right: -50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_about-img-shape-2 {
    right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_about-img-shape-2 {
    right: 0;
  }
}
.h3_about-img-shape-3 {
  position: absolute;
  bottom: 20px;
  left: -140px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .h3_about-img-shape-3 {
    left: -100px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_about-img-shape-3 {
    left: -40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_about-img-shape-3 {
    left: -20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_about-img-shape-3 {
    left: 0;
    bottom: -35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_about-img-shape-3 {
    left: 0;
    bottom: 0;
  }
}
.h3_about-wrap {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_about-wrap {
    margin-right: 0;
  }
}
.h3_about-wrap-shape {
  position: absolute;
  right: 0;
  bottom: 25px;
}
.h3_about-content {
  max-width: 500px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_about-content {
    max-width: 100%;
  }
}
.h3_about-content span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--clr-body-heading);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1;
}
.h3_about-content span i {
  background: -webkit-gradient(linear, left top, left bottom, from(#20E448), to(#139E30));
  background: linear-gradient(#20E448, #139E30);
  display: -ms-inline-grid;
  display: inline-grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  place-items: center;
  font-size: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_about-inner-img {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_about-inner-img {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_about-inner-img {
    margin-right: 0;
  }
}

.h4_about-img {
  margin-right: -30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h4_about-img {
    margin-right: -20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h4_about-img {
    margin-right: 0;
  }
}
.h4_about-wrap {
  margin-left: 80px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h4_about-wrap {
    margin-left: 60px;
    margin-right: 50;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h4_about-wrap {
    margin-left: 30px;
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h4_about-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
.h4_about-content ul li {
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(246, 124, 55, 0.14)), to(rgba(246, 124, 55, 0)));
  background: linear-gradient(90deg, rgba(246, 124, 55, 0.14) 0%, rgba(246, 124, 55, 0) 100%);
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  color: #F67C37;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.h4_about-content ul li i {
  width: 24px;
  height: 24px;
  background-color: #F67C37;
  border-radius: 50%;
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
}
.h4_about-content ul li:nth-child(2) {
  background: -webkit-gradient(linear, left top, right top, from(rgba(21, 105, 253, 0.14)), to(rgba(21, 105, 253, 0)));
  background: linear-gradient(90deg, rgba(21, 105, 253, 0.14) 0%, rgba(21, 105, 253, 0) 100%);
  color: #1569FD;
}
.h4_about-content ul li:nth-child(2) i {
  background-color: #1569FD;
}
.h4_about-content ul li:last-child {
  background: -webkit-gradient(linear, left top, right top, from(rgba(246, 55, 88, 0.14)), to(rgba(246, 55, 88, 0)));
  background: linear-gradient(90deg, rgba(246, 55, 88, 0.14) 0%, rgba(246, 55, 88, 0) 100%);
  color: #F63758;
}
.h4_about-content ul li:last-child i {
  background-color: #F63758;
}
.h4_about-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .h4_about-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_about-button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.h4_about-button-call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--clr-body-heading);
  font-weight: 500;
}
.h4_about-button-call i {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100px;
  background: #F6BA2A;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: var(--clr-body-heading);
  font-size: 14px;
}

.h5_about-button-call i {
  background: var(--clr-theme-primary-5);
}

/*
************
*************************
12. event
******************************************************* 
*************************************************************** */
.event-section-area {
  margin-left: 125px;
}
@media (max-width: 1799px) {
  .event-section-area {
    margin-left: 0;
  }
}
.event-area {
  background-color: var(--clr-color-lightPurple);
  position: relative;
  z-index: 1;
}
.event-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  max-width: 400px;
  height: 100%;
}
@media (max-width: 1799px) {
  .event-bg-img {
    display: none;
  }
}
.event-item {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 20px 40px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 20px 40px rgba(30, 30, 30, 0.1);
}
.event-img {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.event-img img {
  width: 100%;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.event-content-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 27px;
}
.event-content-title:hover a {
  color: #49a9b7;
}
.event-content-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 6px;
}
.event-content-meta span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
.event-content-meta span i {
  font-size: 14px;
  margin-right: 7px;
  font-weight: 300;
  color: #D2093C;
}

.event-content {
  padding: 25px 0 10px;
}
.event-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.event-navigation div {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 0px #E1E2E6;
          box-shadow: 0px 2px 0px #E1E2E6;
  border-radius: 100px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #1E1E1E;
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.event-navigation div:hover {
  background-color: #49a9b7;
  color: #fff;
}
@media (max-width: 767px) {
  .event-navigation {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.event-item:hover .event-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.h5_event-area {
  background-color: #F3F4FD;
}
.h5_event-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .h5_event-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5_event-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.h5_event-item-date {
  height: 160px;
  background: #F3EB1E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 190px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .h5_event-item-date {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5_event-item-date {
    width: 170px;
  }
}
.h5_event-item-date h1 {
  font-size: 70px;
  margin-bottom: 0;
  line-height: 1;
}
.h5_event-item-date p {
  margin-bottom: 0;
  font-size: 17px;
  color: var(--clr-body-heading);
}
.h5_event-item-content {
  height: 160px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 190px);
  padding: 0 60px;
}
@media (max-width: 767px) {
  .h5_event-item-content {
    width: 100%;
    padding: 30px 20px;
    height: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5_event-item-content {
    width: calc(100% - 170px);
    padding: 0 30px;
    height: 160px;
  }
}
.h5_event-item-content ul {
  margin-bottom: 7px;
}
.h5_event-item-content ul li {
  display: inline-block;
  margin-right: 15px;
}
.h5_event-item-content ul li:last-child {
  margin-right: 0;
}
.h5_event-item-content ul li a {
  font-size: 15px;
}
.h5_event-item-content ul li a i {
  margin-right: 6px;
  color: var(--clr-body-heading);
}
.h5_event-item-content h5 {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.4;
}
.h5_event-item-content h5:hover a {
  color: #49a9b7;
}
.h5_event-item:nth-child(even) .h5_event-item-date {
  background-color: #FEF523;
}
.h5_event-item:nth-child(even) .h5_event-item-content {
  background-color: rgba(254, 247, 35, 0.1);
}

/*
************
*************************
13. event-details
******************************************************* 
*************************************************************** */
.event_details-wrap {
  margin-top: 40px;
}
.event_details-img {
  border-radius: 10px;
  overflow: hidden;
}
.event_details-content {
  margin-right: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event_details-content {
    margin-right: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event_details-content {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .event_details-content {
    margin-right: 0;
  }
}
.event_details-content-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.43;
}
@media (max-width: 767px) {
  .event_details-content-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .event_details-content-title {
    font-size: 30px;
  }
}
.event_details-content p {
  color: rgba(30, 30, 30, 0.7);
}
.event_details-content-list ul li {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-left: 13px;
  line-height: 26px;
}
.event_details-content-list ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--clr-body-heading);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.event_details-content-list ul li:last-child {
  margin-bottom: 0;
}
.event_details-inner-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}
.event_details-inner-img img {
  width: 100%;
}
@media (max-width: 767px) {
  .event_details-inner-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .event_details-inner-img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.event_details-sidebar {
  position: relative;
  z-index: 1;
  margin-top: -120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .event_details-sidebar {
    margin-top: 0;
  }
}
.event_details-sidebar-content {
  background: #fff;
  -webkit-box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
  padding: 39px 0 45px;
  border-radius: 10px 0 10px 10px;
}
.event_details-sidebar-content-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .event_details-sidebar-content-title {
    margin-left: 30px;
    margin-right: 30px;
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .event_details-sidebar-content-title {
    font-size: 24px;
  }
}
.event_details-sidebar-content ul {
  margin-bottom: 30px;
}
.event_details-sidebar-content ul li {
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 40px;
  color: rgba(30, 30, 30, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event_details-sidebar-content ul li span i {
  margin-right: 10px;
  color: #49a9b7;
  font-size: 16px;
}
.event_details-sidebar-content ul li:first-child {
  border-top: 1px solid rgba(30, 30, 30, 0.1);
}
@media (max-width: 767px) {
  .event_details-sidebar-content ul li {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.event_details-sidebar-btn {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .event_details-sidebar-btn {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.event_details-sidebar-map {
  background: #fff;
  -webkit-box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
  padding: 32px 0 32px;
  border-radius: 10px;
}
.event_details-sidebar-map .inner-map {
  margin-left: 40px;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .event_details-sidebar-map .inner-map {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.event_details-sidebar-map .inner-map iframe {
  height: 400px;
  width: 100%;
}

/*
************
*************************
14. testimonial
******************************************************* 
*************************************************************** */
.testimonial-item {
  padding: 50px 35px 45px;
  background-color: #F5F5F5;
  border-radius: 10px;
  min-height: 407px!important;
}
.testimonial-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.testimonial-admin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial-admin-img {
  width: 41px;
  height: 39px;
  border-radius: 50%;
  overflow: hidden;
  /* display: none; */
  margin-top: -18px;
}
.testimonial-admin-img img {
  width: 100%;
}
.testimonial-admin-info h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  padding-bottom: 0;
}
.testimonial-admin-info span {
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.testimonial-rating {
  display: none;
}
.testimonial-rating ul li {
  display: inline-block;
  font-size: 14px;
  color: #FFA121;
}

.testimonial-content p {
  color: #1E1E1E;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
}

.testimonial-scrollbar-wrap {
  position: relative;
}
.testimonial-scrollbar-wrap .swiper-scrollbar.testimonial-scrollbar {
  height: 3px;
  border-radius: 0;
  background: rgba(30, 30, 30, 0.1);
}
.testimonial-scrollbar-wrap .swiper-scrollbar-drag {
  border-radius: 0;
  background-color: #49a9b7;
}

.h3_testimonial-area {
  background-color: var(--clr-color-lightPink);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.h3_testimonial-shape-1 {
  position: absolute;
  left: 65px;
  top: 120px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_testimonial-shape-1 {
    left: 30px;
    top: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_testimonial-shape-1 {
    left: 30px;
    top: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_testimonial-shape-1 {
    left: 30px;
    top: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_testimonial-shape-1 {
    left: 30px;
    top: 70px;
  }
}
@media (max-width: 767px) {
  .h3_testimonial-shape-1 {
    display: none;
  }
}
.h3_testimonial-shape-2 {
  position: absolute;
  left: 180px;
  bottom: 180px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .h3_testimonial-shape-2 {
    left: 80px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_testimonial-shape-2 {
    left: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_testimonial-shape-2 {
    left: 10px;
    bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_testimonial-shape-2 {
    display: none;
  }
}
.h3_testimonial-shape-3 {
  position: absolute;
  top: 70px;
  right: 690px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_testimonial-shape-3 {
    right: 390px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_testimonial-shape-3 {
    right: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_testimonial-shape-3 {
    right: 200px;
  }
}
@media (max-width: 767px) {
  .h3_testimonial-shape-3 {
    display: none;
  }
}
.h3_testimonial-shape-4 {
  position: absolute;
  bottom: 40px;
  right: 365px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_testimonial-shape-4 {
    right: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_testimonial-shape-4 {
    right: 50%;
  }
}
@media (max-width: 767px) {
  .h3_testimonial-shape-4 {
    display: none;
  }
}
.h3_testimonial-item {
  background: #fff;
  border-radius: 20px;
  padding: 105px 80px 90px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .h3_testimonial-item {
    padding: 70px 30px 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_testimonial-item {
    padding: 70px 50px 80px;
  }
}
.h3_testimonial-item-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.h3_testimonial-item-author img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.h3_testimonial-item-author-info h5 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.h3_testimonial-item-author-info span {
  font-size: 16px;
  display: block;
}
.h3_testimonial-item-content .quote {
  position: absolute;
  left: 80px;
  top: 50px;
  z-index: -1;
}
@media (max-width: 767px) {
  .h3_testimonial-item-content .quote {
    left: 50px;
    top: 40px;
  }
}
.h3_testimonial-item-content p {
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 40px;
  color: rgba(30, 30, 30, 0.7);
}
.h3_testimonial-active {
  margin-right: -680px;
}
@media (max-width: 767px) {
  .h3_testimonial-active {
    margin-right: 0;
  }
}
.h3_testimonial-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.h3_testimonial-navigation div {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #1E1E1E;
  border: 1.5px solid rgba(30, 30, 30, 0.15);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h3_testimonial-navigation div:hover {
  background-color: var(--clr-theme-primary-3);
  border-color: transparent;
  color: #fff;
}
@media (max-width: 767px) {
  .h3_testimonial-navigation {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.h4_testimonial-area {
  background-color: #ECECF9;
}

/*
************
*************************
15. counter
******************************************************* 
*************************************************************** */
.counter-wrap {
  border: 1px solid rgba(30, 30, 30, 0.1);
}
.counter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border-right: 1px solid rgba(30, 30, 30, 0.1);
  padding-top: 25px;
  padding-bottom: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .counter-item {
    border-right: 0;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-item {
    border-right: 1px solid rgba(30, 30, 30, 0.1);
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  }
}
.counter-icon i {
  font-size: 38px;
  color: var(--clr-color-darkPink);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  margin-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-icon i {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .counter-icon i {
    font-size: 30px;
  }
}
.counter-info-title {
  font-size: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-info-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-info-title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .counter-info-title {
    font-size: 45px;
  }
}
.counter-info-text {
  font-size: 14px;
  text-transform: uppercase;
  color: #767676;
  display: inline-block;
  line-height: 1;
}

.counter-wrap .col-xl-3:last-child .counter-item {
  border-right: 0;
}
@media (max-width: 767px) {
  .counter-wrap .col-xl-3:last-child .counter-item {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-wrap .col-xl-3:nth-child(2) .counter-item {
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
    border-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrap .col-xl-3:nth-child(2) .counter-item {
    border-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrap .col-xl-3:nth-child(3) .counter-item {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-wrap .col-xl-3:first-child .counter-item {
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  }
}

/*
************
*************************
16. blog
******************************************************* 
*************************************************************** */
.blog-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
}
.blog-img {
  border-radius: 6px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.blog-content {
  padding: 40px 0 25px;
}
.blog-content-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 27px;
}
.blog-content-title:hover a {
  color: #49a9b7;
}
.blog-content-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 7px;
}
.blog-content-meta span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
.blog-content-meta span i {
  font-size: 14px;
  margin-right: 7px;
  font-weight: 300;
  color: var(--clr-color-darkPink);
}

.blog-item.blog-item-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-item.blog-item-h .blog-content {
  padding: 0 30px;
}
.blog-item.blog-item-h .blog-img {
  width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blog-item .blog-content {
    padding: 0 30px;
  }
  .blog-item .blog-img {
    width: 280px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .blog-item.blog-item-h {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-item.blog-item-h .blog-content {
    padding: 40px 0 25px;
  }
  .blog-item.blog-item-h .blog-img {
    width: 100%;
  }
}

.blog-item:hover .blog-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.h2_blog-img {
  overflow: hidden;
}
.h2_blog-img img {
  border-radius: 10px 10px 0 0;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
  width: 100%;
}
.h2_blog-content {
  padding: 30px 30px 35px;
  -webkit-box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
  border-radius: 0 0 10px 10px;
}
.h2_blog-content-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 27px;
}
.h2_blog-content-title:hover a {
  color: #49a9b7;
}
.h2_blog-content-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 7px;
}
.h2_blog-content-meta span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
.h2_blog-content-meta span i {
  font-size: 14px;
  margin-right: 7px;
  font-weight: 300;
  color: var(--clr-color-darkPink);
}

.h2_blog-item:hover .h2_blog-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.h3_blog-item {
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(30, 30, 30, 0.14);
          box-shadow: 0px 2px 20px 0px rgba(30, 30, 30, 0.14);
  padding: 20px;
}
.h3_blog-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  z-index: 1;
}
.h3_blog-img img {
  border-radius: 10px;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
  width: 100%;
}
.h3_blog-img-meta {
  position: absolute;
  right: 15px;
  top: 15px;
  border-radius: 6px;
  background: var(--clr-theme-primary-3);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(32, 42, 61, 0.4);
          box-shadow: 0px 2px 5px 0px rgba(32, 42, 61, 0.4);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 10px 15px;
  line-height: 1;
}
.h3_blog-content {
  padding-top: 25px;
}
.h3_blog-content-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 7px;
}
.h3_blog-content-title:hover a {
  color: var(--clr-theme-primary-3);
}
.h3_blog-content-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.h3_blog-content-meta span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
.h3_blog-content-meta span i {
  font-size: 14px;
  margin-right: 7px;
  font-weight: 300;
  color: var(--clr-theme-primary-3);
}
.h3_blog-content p {
  font-size: 15px;
  margin-bottom: 20px;
}
.h3_blog-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-body-heading);
}
.h3_blog-btn i {
  margin-left: 10px;
}
.h3_blog-btn:hover {
  color: var(--clr-theme-primary-3);
}

.h3_blog-item:hover .h3_blog-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.h4_blog-item {
  border-radius: 10px;
  background: #FFF;
  border: 1px solid rgba(10, 10, 10, 0.1);
  padding: 20px;
}
.h4_blog-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  z-index: 1;
}
.h4_blog-img img {
  border-radius: 10px;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
  width: 100%;
}
.h4_blog-img-meta {
  position: absolute;
  right: 15px;
  top: 15px;
  border-radius: 6px;
  background: var(--clr-theme-primary-3);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(32, 42, 61, 0.4);
          box-shadow: 0px 2px 5px 0px rgba(32, 42, 61, 0.4);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 10px 15px;
  line-height: 1;
}
.h4_blog-content {
  padding-top: 22px;
}
.h4_blog-content-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5px;
}
.h4_blog-content-title:hover a {
  color: var(--clr-theme-primary-3);
}
.h4_blog-content-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  margin-bottom: 14px;
}
.h4_blog-content-meta span {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.h4_blog-content-meta span:not(:first-child)::after {
  position: absolute;
  left: -23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--clr-body-heading);
  content: "";
  border-radius: 50%;
}
.h4_blog-content-meta span:not(:first-child)::before {
  position: absolute;
  left: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--clr-body-heading);
  border-radius: 50%;
  content: "";
}
.h4_blog-content p {
  font-size: 15px;
  margin-bottom: 20px;
}
.h4_blog-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-body-heading);
}
.h4_blog-btn i {
  margin-left: 10px;
}
.h4_blog-btn:hover {
  color: var(--clr-theme-primary-3);
}

.h4_blog-item:hover .h4_blog-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.h5_blog-item {
  border: 1px solid rgba(10, 10, 10, 0.1);
  padding: 100px 50px 91px;
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h5_blog-item {
    padding: 100px 40px 91px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h5_blog-item {
    padding: 100px 35px 91px;
  }
}
@media (max-width: 767px) {
  .h5_blog-item {
    padding: 80px 25px 71px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5_blog-item {
    padding: 100px 50px 91px;
  }
}
.h5_blog-content-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}
.h5_blog-content-meta-tag {
  border-radius: 0px 6px;
  background: #ffa500;
  display: inline-block;
  padding: 7px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.h5_blog-content-meta span {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  font-size: 15px;
}
.h5_blog-content-meta span::before {
  position: absolute;
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  background: var(--clr-body-text);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border-radius: 50%;
}
.h5_blog-content-title {
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .h5_blog-content-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5_blog-content-title {
    font-size: 20px;
  }
}
.h5_blog-content p {
  margin-bottom: 21px;
  font-size: 15px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  line-height: 24px;
}
.h5_blog-btn {
  position: relative;
  z-index: 1;
  width: 20px;
  overflow: hidden;
  display: inline-block;
}
.h5_blog-btn svg {
  color: var(--clr-body-heading);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  width: 24px;
  height: auto;
  margin-left: -4px;
}

.h5_blog-item:hover {
  background-color: #78C6D5;
  border-color: transparent;
}
.h5_blog-item:hover .h5_blog-content-meta span {
  color: rgba(255, 255, 255, 0.6);
}
.h5_blog-item:hover .h5_blog-content-meta span::before {
  background-color: rgba(255, 255, 255, 0.6);
}
.h5_blog-item:hover .h5_blog-content-title {
  color: #fff;
}
.h5_blog-item:hover .h5_blog-content p {
  color: rgba(255, 255, 255, 0.7);
}
.h5_blog-item:hover .h5_blog-btn {
  width: 24px;
}
.h5_blog-item:hover .h5_blog-btn svg {
  margin-left: 0;
  color: #fff;
}

/*
************
*************************
17. blog-details
******************************************************* 
*************************************************************** */
.blog_details-img {
  position: relative;
  margin-bottom: -40px;
  z-index: -1;
}
.blog_details-top {
  padding: 40px 50px 50px;
  -webkit-box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
  border-radius: 0 10px 10px 10px;
  background-color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details-top {
    padding: 40px 40px 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog_details-top {
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .blog_details-top {
    padding: 40px 25px 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details-top {
    padding: 40px 30px 50px;
  }
}
.blog_details-title {
  font-size: 30px;
  margin-bottom: 25px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .blog_details-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details-title {
    font-size: 30px;
  }
}
.blog_details-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}
@media (max-width: 767px) {
  .blog_details-meta {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details-meta {
    gap: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.blog_details-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog_details-author-img {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(4, 0, 23, 0.1);
  border-radius: 50%;
  padding: 4px;
}
.blog_details-author-img img {
  width: 100%;
}
.blog_details-author-info span {
  font-size: 14px;
  font-weight: 500;
  color: #848B97;
  display: block;
  line-height: 20px;
}
.blog_details-author-info h5 {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.4;
}
.blog_details-author-info h5:hover a {
  color: #49a9b7;
}
.blog_details-rating {
  position: relative;
  z-index: 1;
  padding-left: 15px;
}
.blog_details-rating::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 1px;
  background: rgba(4, 0, 23, 0.14);
  z-index: 1;
}
@media (max-width: 767px) {
  .blog_details-rating {
    padding-left: 0;
  }
  .blog_details-rating::before {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details-rating {
    padding-left: 15px;
  }
  .blog_details-rating::before {
    display: block;
  }
}
.blog_details-rating ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.blog_details-rating ul li {
  display: block;
  font-size: 12px;
  color: #FFA121;
  line-height: 20px;
}
.blog_details-rating span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: #848B97;
  line-height: 22px;
}
.blog_details-category {
  position: relative;
  z-index: 1;
  padding-left: 15px;
}
.blog_details-category::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 40px;
  width: 1px;
  background: rgba(4, 0, 23, 0.14);
  z-index: 1;
}
@media (max-width: 767px) {
  .blog_details-category {
    padding-left: 0;
  }
  .blog_details-category::before {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details-category {
    padding-left: 15px;
  }
  .blog_details-category::before {
    display: block;
  }
}
.blog_details-category span {
  font-size: 14px;
  font-weight: 500;
  color: #848B97;
  display: block;
  line-height: 20px;
}
.blog_details-category h5 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}
.blog_details-category h5:hover a {
  color: #49a9b7;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details-inner-text {
    margin-right: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog_details-inner-text {
    margin-right: 0;
  }
}
.blog_details-inner-text p {
  color: rgba(30, 30, 30, 0.7);
}
.blog_details-quote {
  background-color: #F5F5F5;
  padding: 35px 85px 35px 45px;
  position: relative;
  z-index: 1;
  margin: 0;
  margin-bottom: 40px;
  border-radius: 6px;
}
.blog_details-quote p {
  font-size: 20px;
  font-style: italic;
  color: var(--clr-body-heading);
  margin-bottom: 15px;
}
.blog_details-quote h6 {
  font-size: 16px;
  font-weight: 600;
  padding-left: 15px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.blog_details-quote h6::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 6px;
  background-color: #49a9b7;
}
.blog_details-quote-icon {
  position: absolute;
  right: 85px;
  bottom: 25px;
  line-height: 1;
  font-size: 45px;
  color: rgba(0, 88, 252, 0.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details-quote {
    padding: 35px 65px 35px 30px;
  }
}
@media (max-width: 767px) {
  .blog_details-quote {
    padding: 35px 30px;
  }
  .blog_details-quote p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details-quote {
    padding: 35px 30px 35px 30px;
  }
}
.blog_details-highlight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F5F5F5;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}
.blog_details-highlight-img {
  width: 310px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}
.blog_details-highlight-img img {
  width: 100%;
}
.blog_details-highlight-text {
  padding: 0 40px;
  padding-right: 30px;
}
.blog_details-highlight-text h3 {
  font-size: 30px;
  line-height: 1.33;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details-highlight-img {
    width: 210px;
  }
  .blog_details-highlight-text {
    padding: 0 30px;
  }
  .blog_details-highlight-text h3 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details-highlight-img {
    width: 300px;
  }
  .blog_details-highlight-text {
    padding-right: 20px;
    padding-left: 30px;
  }
  .blog_details-highlight-text h3 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .blog_details-highlight {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .blog_details-highlight-img {
    width: 100%;
  }
  .blog_details-highlight-text {
    padding-right: 0;
    padding-left: 0;
  }
  .blog_details-highlight-text h3 {
    font-size: 23px;
  }
}
.blog_details-content-meta {
  border: 1px solid rgba(4, 0, 23, 0.1);
  border-radius: 10px;
  padding: 34px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details-content-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .blog_details-content-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 34px 20px;
  }
}
.blog_details-content-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog_details-content-tag h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.blog_details-content-tag ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.blog_details-content-tag ul li a {
  font-size: 14px;
  background: #F5F5F5;
  display: block;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  padding: 0 15px;
  color: rgba(4, 0, 23, 0.7);
}
@media (max-width: 767px) {
  .blog_details-content-tag {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .blog_details-content-tag ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.blog_details-content-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.blog_details-content-social h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.blog_details-content-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.blog_details-content-social ul li a {
  font-size: 14px;
  color: rgba(4, 0, 23, 0.3);
  display: block;
}
.blog_details-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.blog_details-bottom-item {
  width: 100%;
  background: #F5F5F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 60px 30px 30px;
  border: 1px solid transparent;
  border-radius: 6px;
  gap: 20px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  cursor: pointer;
}
.blog_details-bottom-item.inner-item-2 {
  padding: 30px 30px 30px 60px;
}
.blog_details-bottom-item:hover {
  background-color: #fff;
  border-color: rgba(4, 0, 23, 0.1);
}
.blog_details-bottom-item h5 {
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-body-heading);
  margin-bottom: 0;
  line-height: 1.33;
}
.blog_details-bottom-item span {
  display: block;
  color: var(--clr-body-heading);
  font-size: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details-bottom-item {
    padding: 30px 25px 30px 25px;
    gap: 15px;
  }
  .blog_details-bottom-item.inner-item-2 {
    padding: 30px 25px 30px 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog_details-bottom-item {
    padding: 30px 50px 30px 30px;
  }
  .blog_details-bottom-item.inner-item-2 {
    padding: 30px 30px 30px 50px;
  }
}
@media (max-width: 767px) {
  .blog_details-bottom-item {
    padding: 30px 25px 30px 25px;
    gap: 15px;
  }
  .blog_details-bottom-item.inner-item-2 {
    padding: 30px 25px 30px 25px;
  }
}
@media (max-width: 767px) {
  .blog_details-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog_details-related-title {
  font-size: 30px;
  line-height: 1.46;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog_details-related-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details-related-title {
    font-size: 30px;
  }
}
.blog_details-comment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid rgba(4, 0, 23, 0.1);
  margin-bottom: 30px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog_details-comment-item.ml-80 {
    margin-left: 60px;
  }
}
@media (max-width: 767px) {
  .blog_details-comment-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog_details-comment-item.ml-80 {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details-comment-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .blog_details-comment-item.ml-80 {
    margin-left: 50px;
  }
}
.blog_details-comment-title {
  font-size: 24px;
  margin-bottom: 30px;
}
.blog_details-comment-img {
  width: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  height: 60px;
}
.blog_details-comment-content h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}
.blog_details-comment-content span {
  font-size: 13px;
  color: #49a9b7;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.blog_details-comment-content p {
  margin-bottom: 22px;
}
.blog_details-comment-content .comment-reply {
  font-size: 15px;
  display: inline-block;
  border: 1px solid rgba(30, 30, 30, 0.1);
  height: 30px;
  padding: 0 20px;
  font-weight: 500;
  color: var(--clr-body-heading);
  border-radius: 4px;
}
.blog_details-comment-content .comment-reply:hover {
  background-color: #49a9b7;
  color: #fff;
}
.blog_details-form-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .blog_details-form-submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .blog_details-form-btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.blog_details-content-social ul li a:hover {
  color: #49a9b7;
}

.blog_details-content-tag ul li a:hover {
  background: #49a9b7;
  color: #fff;
}

.blog_details-message-title {
  font-size: 32px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .blog_details-message-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog_details-message-title {
    font-size: 30px;
  }
}
.blog_details-form-input {
  position: relative;
  z-index: auto;
}
.blog_details-form-input textarea, .blog_details-form-input input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: none;
  border-bottom: 1px solid rgba(4, 0, 23, 0.14);
  padding: 0 30px;
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
}
.blog_details-form-input textarea::-webkit-input-placeholder, .blog_details-form-input input::-webkit-input-placeholder {
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog_details-form-input textarea:-moz-placeholder, .blog_details-form-input input:-moz-placeholder {
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog_details-form-input textarea::-moz-placeholder, .blog_details-form-input input::-moz-placeholder {
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog_details-form-input textarea:-ms-input-placeholder, .blog_details-form-input input:-ms-input-placeholder {
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog_details-form-input textarea {
  height: 95px;
  line-height: 22px;
  padding-top: 20px;
}
.blog_details-form-input .inner-icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
  color: rgba(4, 0, 23, 0.6);
  z-index: 9;
}
.blog_details-form-input-select .inner-icon {
  top: 30px;
}
.blog_details-form-textarea .inner-icon {
  top: 17px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.nice-select.blog_details-form-list {
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
  border: none;
  border-bottom: 1px solid rgba(4, 0, 23, 0.14);
  border-radius: 0;
  padding: 0 30px;
}
.nice-select.blog_details-form-list::after {
  border-bottom: 1.5px solid rgba(30, 30, 30, 0.6);
  border-right: 1.5px solid rgba(30, 30, 30, 0.6);
  content: "";
  display: block;
  height: 5px;
  margin-top: -1px;
  pointer-events: none;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 5px;
}
.nice-select.blog_details-form-list ul {
  width: 100%;
  border-radius: 0;
  border: none;
  background-color: #fff;
  margin-top: 0;
}
.nice-select.blog_details-form-list ul li {
  color: rgba(4, 0, 23, 0.6);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  min-height: 50px;
}
.nice-select.blog_details-form-list ul li.selected {
  font-weight: 400;
}

.theme-btn.blog_details-btn {
  height: 50px;
  line-height: 50px;
  padding: 0 45px;
}

.blog_details-form-condition label {
  font-size: 15px;
}

.blog_details-form-condition .condition_label {
  display: block;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.blog_details-form-condition .condition_label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.blog_details-form-condition .check_mark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: 2px;
}
.blog_details-form-condition .check_mark:after {
  content: "";
  position: absolute;
  display: none;
}
.blog_details-form-condition .condition_label input:checked ~ .check_mark:after {
  display: block;
}
.blog_details-form-condition .condition_label .check_mark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid rgba(30, 30, 30, 0.4);
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.blog_details-price {
  padding-left: 40px;
  padding-right: 40px;
}
.blog_details-price del {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.blog_details-price h2 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 20px;
}
.blog_details-list ul {
  margin-bottom: 40px;
}
.blog_details-list ul li {
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 40px;
  color: rgba(30, 30, 30, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog_details-list ul li span i {
  margin-right: 10px;
  color: #49a9b7;
  font-size: 16px;
}
.blog_details-sidebar-btn {
  margin-left: 40px;
  margin-right: 40px;
}
.blog_details-widget {
  background: #fff;
  padding: 35px 30px 40px;
  -webkit-box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 20px 80px rgba(30, 30, 30, 0.1);
  margin-bottom: 30px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .blog_details-widget {
    padding: 35px 25px 40px;
  }
}
.blog_details-widget.widget-category {
  padding-bottom: 25px;
}
.blog_details-widget-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}
.blog_details-widget form {
  position: relative;
  z-index: 1;
}
.blog_details-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: none;
  padding: 0 15px;
  background-color: #49a9b7;
  color: #fff;
  border-radius: 0 6px 6px 0;
  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;
}
.blog_details-widget form input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: none;
  background: #F5F5F5;
  border-radius: 6px;
  padding: 0 20px;
  padding-right: 65px;
  font-size: 14px;
  color: rgba(30, 30, 30, 0.7);
}
.blog_details-widget-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.blog_details-widget-post:last-child {
  margin-bottom: 0;
}
.blog_details-widget-course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.blog_details-widget-course:last-child {
  margin-bottom: 0;
}

.blog_details-list ul li:first-child {
  border-top: 1px solid rgba(30, 30, 30, 0.1);
}

.blog_details-post-img {
  width: 90px;
  height: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.blog_details-post-info span {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: rgba(30, 30, 30, 0.6);
  font-weight: 500;
}
.blog_details-post-info h6 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 22px;
}
.blog_details-post-info h6:hover a {
  color: #49a9b7;
}

.blog_details-course-img {
  width: 90px;
  height: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.blog_details-course-info h6 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 22px;
}
.blog_details-course-info h6:hover a {
  color: #49a9b7;
}
.blog_details-course-info .inner-course-rate {
  font-size: 15px;
  font-weight: 600;
  color: #49a9b7;
  display: block;
}

.blog_details-widget-tag ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog_details-widget-tag ul li a {
  font-size: 14px;
  background: #F5F5F5;
  display: block;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  padding: 0 15px;
  color: rgba(4, 0, 23, 0.7);
}
.blog_details-widget-tag ul li a:hover {
  background-color: #49a9b7;
  color: #fff;
}
.blog_details-widget-category ul li a {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  padding-left: 17px;
  line-height: 44px;
  color: var(--clr-body-heading);
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}
.blog_details-widget-category ul li a:hover {
  color: #49a9b7;
}
.blog_details-widget-category ul li a::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--clr-body-heading);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.blog_details-widget-category ul li:last-child a {
  border: none;
}

/*
************
*************************
18. cta
******************************************************* 
*************************************************************** */
.cta-area {
  position: relative;
  z-index: 9;
  margin-bottom: -120px;
}
.cta-wrapper {
  background-color: #49a9b7;
  border-radius: 10px;
  padding: 50px 80px 40px;
  -webkit-box-shadow: 0px 30px 80px rgba(30, 30, 30, 0.3);
          box-shadow: 0px 30px 80px rgba(30, 30, 30, 0.3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-wrapper {
    padding: 50px 50px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper {
    padding: 50px 50px 50px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper {
    padding: 40px 30px 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-wrapper {
    padding: 50px 50px 50px;
  }
}
.cta-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-title {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .cta-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-title {
    font-size: 35px;
  }
}
.cta-subtitle {
  color: #E8184D;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  background-color: #FDF5F7;
  padding: 10px 25px;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.cta-subtitle::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #E8184D;
  content: "";
}
@media (max-width: 767px) {
  .cta-subtitle {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .cta-button {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cta-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.cta-btn {
  height: 55px;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  line-height: 55px;
}
.cta-btn i {
  font-size: 18px;
  margin-right: 10px;
}
.cta-btn:hover {
  background: #fff;
  color: var(--clr-body-heading);
}
@media (max-width: 767px) {
  .cta-btn {
    text-align: center;
  }
}

.h2_cta-content-form {
  position: relative;
  z-index: 1;
  margin: 0 40px;
}
@media (max-width: 767px) {
  .h2_cta-content-form {
    margin: 0 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_cta-content-form {
    margin: 0 40px;
  }
}
.h2_cta-content-form input {
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding-left: 25px;
  border-radius: 6px;
  border: none;
  padding-right: 195px;
  color: rgba(30, 30, 30, 0.6);
  background-color: #fff;
  font-size: 15px;
  -webkit-box-shadow: 0px 6px 30px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 6px 30px rgba(30, 30, 30, 0.1);
}
.h2_cta-content-form input::-webkit-input-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h2_cta-content-form input:-moz-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h2_cta-content-form input::-moz-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h2_cta-content-form input:-ms-input-placeholder {
  color: rgba(30, 30, 30, 0.6);
  font-size: 15px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (max-width: 767px) {
  .h2_cta-content-form input {
    padding-right: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_cta-content-form input {
    padding-right: 100px;
  }
}
.h2_cta-content-form button {
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 40px;
  line-height: 40px;
  background: #49a9b7;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .h2_cta-content-form button {
    position: relative;
    top: 15px;
    -webkit-transform: none;
            transform: none;
    right: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_cta-content-form button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 7px;
    width: auto;
  }
}

.h3_cta-area .cta-wrapper {
  background-color: var(--clr-theme-primary-3);
}

.h4_cta-area .cta-wrapper {
  background-color: var(--clr-theme-primary-4);
}

.h5_cta-area .cta-wrapper {
  background-color: orange
}
.h5_cta-area .cta-title {
  color: var(--clr-body-heading);
}
.h5_cta-area .cta-btn {
  color: var(--clr-body-heading);
  border-color: var(--clr-body-heading);
}
.h5_cta-area .cta-btn:hover {
  border-color: transparent;
}

/*
************
*************************
19. teacher
******************************************************* 
*************************************************************** */
.h2_teacher-section {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 60px 60px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_teacher-section {
    padding: 50px 30px 60px 45px;
  }
}
@media (max-width: 767px) {
  .h2_teacher-section {
    padding: 45px 30px 50px;
  }
  .h2_teacher-section .section-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_teacher-section {
    padding: 45px 50px 50px 50px;
  }
  .h2_teacher-section .section-title br {
    display: block;
  }
}
.h2_teacher-img {
  border-radius: 10px;
  overflow: hidden;
}
.h2_teacher-img img {
  width: 100%;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.h2_teacher-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.h2_teacher-content {
  position: absolute;
  left: 0;
  right: 0;
  width: calc(100% - 60px);
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 15px 25px;
  text-align: center;
  bottom: 30px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  bottom: -50px;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.h2_teacher-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 24px;
}
.h2_teacher-content h5:hover a {
  color: #49a9b7;
}
.h2_teacher-content span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  line-height: 20px;
}

.h2_teacher-item:hover .h2_teacher-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.h2_teacher-item:hover .h2_teacher-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.h3_teacher-img {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}
.h3_teacher-social {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.h3_teacher-social .share {
  width: 50px;
  height: 50px;
  background: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 4px;
  font-size: 18px;
  color: var(--clr-body-heading);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  cursor: pointer;
}
.h3_teacher-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.h3_teacher-social ul li {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-bottom: -10px;
}
.h3_teacher-social ul li a {
  width: 50px;
  height: 50px;
  background: var(--clr-theme-primary-3);
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 4px;
  font-size: 18px;
}
.h3_teacher-social ul li:nth-child(2) {
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.h3_teacher-social ul li:first-child {
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.h3_teacher-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
}
@media (max-width: 767px) {
  .h3_teacher-content {
    gap: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_teacher-content {
    gap: 45px;
  }
}
.h3_teacher-content-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
.h3_teacher-content-title:hover {
  color: var(--clr-theme-primary-3);
}
.h3_teacher-content span {
  font-size: 16px;
  display: inline-block;
  color: rgba(30, 30, 30, 0.7);
}
.h3_teacher-img:hover .share {
  background: var(--clr-theme-primary-3);
  color: #fff;
}
.h3_teacher-img:hover ul li {
  opacity: 1;
  visibility: visible;
  margin-bottom: 0;
}

.teacher-pagination.swiper-pagination-bullets {
  right: 0;
  left: auto;
  text-align: center;
  line-height: 1;
  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;
  gap: 14px;
}
.teacher-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  cursor: pointer;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(30, 30, 30, 0.7);
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.teacher-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
.teacher-pagination.swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.teacher-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 14px;
  height: 14px;
  background: var(--clr-body-heading);
  border-color: transparent;
}

.h5_teacher-img {
  position: relative;
  z-index: 1;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 25px;
}
.h5_teacher-img::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(243, 235, 30, 0)), to(#F3EB1E));
  background: linear-gradient(180deg, rgba(243, 235, 30, 0) 0%, #F3EB1E 100%);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.h5_teacher-social {
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  z-index: 5;
}
.h5_teacher-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.h5_teacher-social ul li {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-bottom: -10px;
}
.h5_teacher-social ul li a {
  width: 50px;
  height: 50px;
  background: var(--clr-body-heading);
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: var(--clr-theme-primary-5);
  font-size: 18px;
}
.h5_teacher-social ul li a:hover {
  background-color: #fff;
  color: var(--clr-body-heading);
}
.h5_teacher-social ul li:nth-child(2) {
  -webkit-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.h5_teacher-social ul li:first-child {
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.h5_teacher-content-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 3px;
}
.h5_teacher-content-title:hover {
  color: #49a9b7;
}
.h5_teacher-content span {
  font-size: 16px;
  display: inline-block;
  color: rgba(30, 30, 30, 0.7);
}
.h5_teacher-img:hover::after {
  opacity: 1;
  visibility: visible;
}
.h5_teacher-img:hover ul li {
  opacity: 1;
  visibility: visible;
  margin-bottom: 0;
}

/*
************
*************************
20. price
******************************************************* 
*************************************************************** */
.h2_price-item {
  background-color: #fff;
  text-align: center;
  padding: 40px 40px 40px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.h2_price-item-title h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .h2_price-item {
    padding: 35px 25px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_price-item {
    padding: 35px 40px 35px;
  }
}
.h2_price-popular-tag span {
  display: block;
  position: absolute;
  z-index: 1;
  content: "";
  right: 0;
  top: 0;
  font-size: 14px;
  font-weight: 600;
  background-color: #ffa500;
  color: #fff;
  padding: 3px 20px;
  width:100%;
}
.h2_price-amount {
  margin-bottom: 15px;
}
.h2_price-amount-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h2_price-amount-info h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
.h2_price-amount-info p {
  margin-bottom: 0;
}
.h2_price-amount-info p span {
  display: block;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: var(--clr-body-heading);
}
.h2_price-amount del {
  font-size: 16px;
  color: #787878;
  display: inline-block;
  margin-bottom: 10px;
}

.h2_price-middle-info {
  margin-bottom: 25px;
}
.h2_price-middle-info p {
  font-size: 14px;
  color: #787878;
  margin-bottom: 10px;
  line-height: 20px;
}
.h2_price-middle-info-2 {
  color: var(--clr-body-heading);
}
.h2_price-button {
  margin-bottom: 20px;
}
.h2_price-button a {
  display: block;
    font-size: 15px;
    background: orange;
    font-weight: 500;
    border: 1px solid rgba(30, 30, 30, 0.1);
    height: 50px;
    line-height: 50px;
    color: #fff;
    border-radius: 39px;
}
.h2_price-button a:hover {
  background-color: #49a9b7;
  color: #fff;
}
.h2_price-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .h2_price-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_price-content-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
.h2_price-content-top a {
  color: var(--clr-body-heading);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  display: block;
  line-height: 1;
}
.h2_price-content-top a:hover {
  color: #49a9b7;
}
.h2_price-content-top span {
  display: block;
  color: var(--clr-color-darkPink);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(210, 9, 59, 0.3);
  border-radius: 4px;
  background: rgba(210, 9, 59, 0.04);
  line-height: 1;
  padding: 3px 10px;
}

.h2_price-content-list ul li {
  display: block;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 18px;
  padding-left: 25px;
  position: relative;
  z-index: 1;
  color:#000;
}
.h2_price-content-list ul li:last-child {
  margin-bottom: 0;
}
.h2_price-content-list ul li::before {
  position: absolute;
  left: 8px;
  top: 12px;
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--clr-body-heading);
  border-radius: 50%;
}

/*
************
*************************
21. breadcrumb
******************************************************* 
*************************************************************** */
.breadcrumb-area {
  min-height: 330px;
  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;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .breadcrumb-area {
    min-height: 300px;
  }
}
.breadcrumb-content {
  text-align: center;
}
.breadcrumb-title {
  color: var(--clr-body-heading);
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-title {
    font-size: 40px;
  }
}
.breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.breadcrumb-list a {
  color: var(--clr-body-heading);
  display: block;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
}
.breadcrumb-list a::after {
  display: inline-block;
  content: "/";
  font-size: 14px;
  font-weight: 400;
  margin-left: 10px;
}
.breadcrumb-list span {
  color: #49a9b7;
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb-shape {
  position: absolute;
  top: 70px;
  right: 31%;
  -webkit-animation: animation-popup-1 4s linear 0s infinite alternate;
          animation: animation-popup-1 4s linear 0s infinite alternate;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-shape {
    right: 25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-shape {
    top: 60px;
    right: 20%;
  }
}
@media (max-width: 767px) {
  .breadcrumb-shape {
    top: 40px;
    right: 15%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-shape {
    right: 20%;
  }
}

/*
************
*************************
22. gallery
******************************************************* 
*************************************************************** */
.innerPage_gallery-tab .nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .innerPage_gallery-tab .nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.innerPage_gallery-tab .nav .nav-item {
  margin-bottom: 10px;
}
.innerPage_gallery-tab .nav .nav-item .nav-link {
  padding: 0;
  background: transparent;
  color: var(--clr-body-heading);
  font-size: 15px;
  margin-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}
.innerPage_gallery-tab .nav .nav-item .nav-link span {
  position: absolute;
  left: 0;
  top: -25px;
  background-color: #49a9b7;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 4px 8px;
  line-height: 1;
}
.innerPage_gallery-tab .nav .nav-item .nav-link span::before {
  position: absolute;
  left: 3px;
  bottom: -6px;
  content: "";
  width: 9px;
  height: 8px;
  background: #49a9b7;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.innerPage_gallery-tab .nav .nav-item:last-child .nav-link {
  margin-right: 0;
}

.innerPage_gallery-tab .nav-pills .nav-link.active, .innerPage_gallery-tab .nav-pills .show > .nav-link {
  color: #49a9b7;
}

.innerPage_gallery-item {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}
.innerPage_gallery-img img {
  width: 100%;
}
.innerPage_gallery-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.innerPage_gallery-content::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 30, 30, 0.6);
  z-index: 1;
}
.innerPage_gallery-content a {
  width: 90px;
  height: 90px;
  background: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
  color: #49a9b7;
  z-index: 99;
}
.innerPage_gallery-content a i {
  font-weight: 300;
}

.innerPage_gallery-item:hover .innerPage_gallery-content {
  opacity: 1;
  visibility: visible;
}

/*
************
*************************
23. account
******************************************************* 
*************************************************************** */
.account-wrap {
  background: #fff;
  -webkit-box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
}
.account-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.account-top-link {
  width: 100%;
  background: #F5F5F5;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 10px 0 10px 0;
  border: 1px solid rgba(4, 0, 23, 0.1);
  position: relative;
  z-index: 1;
}
.account-top-link a {
  color: var(--clr-body-heading);
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  display: inline-block;
}
.account-top-current {
  width: 100%;
  border: 1px solid rgba(4, 0, 23, 0.1);
  border-radius: 0 10px 0 10px;
  text-align: center;
  height: 55px;
  line-height: 55px;
  border-top: 2px solid #49a9b7;
}
.account-top-current span {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-body-heading);
  width: 100%;
  display: inline-block;
}
.account-main {
  padding: 65px 80px 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .account-main {
    padding: 65px 60px 70px;
  }
}
@media (max-width: 767px) {
  .account-main {
    padding: 65px 30px 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .account-main {
    padding: 65px 50px 70px;
  }
}
.account-title {
  font-size: 32px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .account-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .account-title {
    font-size: 32px;
  }
}

.sign-up .account-top-link {
  border-radius: 0 10px 0 10px;
}
.sign-up .account-top-current {
  border-radius: 10px 0 10px 0;
}

.account-form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.account-form-label label {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-body-heading);
  margin-bottom: 5px;
}
.account-form-label a {
  font-size: 14px;
  color: rgba(4, 0, 23, 0.6);
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}
.account-form-input {
  position: relative;
  z-index: 1;
}
.account-form-input input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid rgba(4, 0, 23, 0.1);
  border-radius: 6px;
  padding: 0 20px;
  font-size: 14px;
  color: rgba(4, 0, 23, 0.6);
}
.account-form-input span {
  position: absolute;
  right: 20px;
  top: 0;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  font-size: 14px;
  cursor: pointer;
}
.account-form-input-pass input {
  padding-right: 50px;
}
.account-form-button {
  margin-bottom: 40px;
}
.account-form-condition {
  margin-bottom: 35px;
}
.account-form-condition span {
  font-size: 14px;
  font-weight: 400;
}
.account-btn {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: none;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  background-color: #49a9b7;
  border-radius: 6px;
}
.account-break {
  position: relative;
  z-index: 1;
}
.account-break::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(4, 0, 23, 0.14);
}
.account-break span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 5px 11px;
  color: rgba(4, 0, 23, 0.7);
}
.account-bottom {
  padding-top: 35px;
}
.account-bottom-text {
  text-align: center;
}
.account-bottom-text p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--clr-body-heading);
  line-height: 20px;
}
.account-bottom-text p a {
  display: inline-block;
  color: #49a9b7;
}
.account-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-bottom: 35px;
}
.account-option-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(4, 0, 23, 0.1);
  height: 50px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  border-radius: 6px;
  line-height: 50px;
}
.account-option-account img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 20px;
}
.account-option-account span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .account-option {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .account-option {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.account-form-condition .condition_label {
  display: block;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.account-form-condition .condition_label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.account-form-condition .check_mark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 1px solid rgba(30, 30, 30, 0.3);
  border-radius: 2px;
}
.account-form-condition .check_mark:after {
  content: "";
  position: absolute;
  display: none;
}
.account-form-condition .condition_label input:checked ~ .check_mark:after {
  display: block;
}
.account-form-condition .condition_label .check_mark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid rgba(30, 30, 30, 0.4);
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*
************
*************************
24. team details
******************************************************* 
*************************************************************** */
.teacher_details-title {
  font-size: 28px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .teacher_details-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .teacher_details-title {
    font-size: 28px;
  }
}
.teacher_detailstitle2 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.teacher_details-admin {
  margin-bottom: 11px;
}
.teacher_details-admin span {
  font-size: 16px;
  display: block;
}
.teacher_details-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.teacher_details-rating ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.teacher_details-rating ul li i {
  font-size: 14px;
  color: #f8b81f;
}
.teacher_details-rating span {
  font-size: 14px;
  color: var(--clr-body-heading);
}

.teacher_details-info ul {
  margin-bottom: 17px;
}
.teacher_details-info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 6px;
}
.teacher_details-info ul li span {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-body-heading);
  min-width: 70px;
}
.teacher_details-info ul li a:hover {
  color: #49a9b7;
}
.teacher_details-info ul li:last-child {
  margin-bottom: 0;
}
.teacher_details-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.teacher_details-social a {
  display: -ms-grid;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(30, 30, 30, 0.15);
  place-items: center;
  border-radius: 50%;
  color: rgba(30, 30, 30, 0.3);
  font-size: 14px;
}
.teacher_details-social a:hover {
  background: #49a9b7;
  color: #fff;
  border-color: transparent;
}

/*
************
*************************
25. contact
******************************************************* 
*************************************************************** */
.contact-wrap {
  padding: 80px 80px 60px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 10px 50px rgba(30, 30, 30, 0.1);
  position: relative;
  z-index: 1;
  margin-bottom: -160px;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-wrap {
    padding: 80px 60px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-wrap {
    padding: 80px 40px 60px;
  }
}
@media (max-width: 767px) {
  .contact-wrap {
    padding: 60px 20px 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-wrap {
    padding: 60px 40px 40px;
  }
}
.contact-content {
  border-right: 1px solid rgba(4, 0, 23, 0.14);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-content {
    padding-right: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-content {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-content {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .contact-content {
    padding-right: 0;
    border-right: 0;
  }
}
.contact-title {
  font-size: 32px;
}
@media (max-width: 767px) {
  .contact-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-title {
    font-size: 30px;
  }
}
.contact-form-input {
  position: relative;
  z-index: auto;
}
.contact-form-input input, .contact-form-input textarea {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: none;
  border-bottom: 1px solid rgba(4, 0, 23, 0.14);
  padding: 0 30px;
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
}
.contact-form-input input::-webkit-input-placeholder, .contact-form-input textarea::-webkit-input-placeholder {
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.contact-form-input input:-moz-placeholder, .contact-form-input textarea:-moz-placeholder {
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.contact-form-input input::-moz-placeholder, .contact-form-input textarea::-moz-placeholder {
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.contact-form-input input:-ms-input-placeholder, .contact-form-input textarea:-ms-input-placeholder {
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.contact-form-input .inner-icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
  color: rgba(4, 0, 23, 0.6);
}
.contact-form-input .inner-icon-select {
  top: 30px;
  z-index: 99;
}
.contact-form-input textarea {
  height: 95px;
  line-height: 22px;
  padding-top: 20px;
}
.contact-form-textarea .inner-icon {
  top: 17px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.contact-form-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-form-submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-form-btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.contact-form-condition .condition_label {
  display: block;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.contact-form-condition .condition_label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contact-form-condition .check_mark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: 2px;
}
.contact-form-condition .check_mark:after {
  content: "";
  position: absolute;
  display: none;
}
.contact-form-condition .condition_label input:checked ~ .check_mark:after {
  display: block;
}
.contact-form-condition .condition_label .check_mark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid rgba(30, 30, 30, 0.4);
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nice-select.contact-form-list {
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: rgba(4, 0, 23, 0.6);
  font-size: 16px;
  border: none;
  border-bottom: 1px solid rgba(4, 0, 23, 0.14);
  border-radius: 0;
  padding: 0 30px;
}
.nice-select.contact-form-list::after {
  border-bottom: 1.5px solid rgba(30, 30, 30, 0.6);
  border-right: 1.5px solid rgba(30, 30, 30, 0.6);
  content: "";
  display: block;
  height: 7px;
  margin-top: -1px;
  pointer-events: none;
  position: absolute;
  right: 3px;
  top: 50%;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 7px;
}
.nice-select.contact-form-list ul {
  width: 100%;
  border-radius: 0;
  border: none;
  background-color: #fff;
  margin-top: 0;
}
.nice-select.contact-form-list ul li {
  color: rgba(4, 0, 23, 0.6);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  min-height: 50px;
}
.nice-select.contact-form-list ul li.selected {
  font-weight: 400;
}

.theme-btn.contact-btn {
  height: 50px;
  line-height: 50px;
  padding: 0 45px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-info {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-info {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-info {
    margin-left: 0;
  }
}
.contact-info-item {
  margin-bottom: 20px;
}
.contact-info-item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
.contact-info-item p {
  margin-bottom: 0;
  color: var(--clr-body-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
.contact-info-item a {
  font-size: 16px;
  display: block;
  color: var(--clr-body-heading);
  font-weight: 500;
}
.contact-info-item a:hover {
  color: #49a9b7;
}
.contact-social span {
  color: #747474;
  font-weight: 500;
  line-height: 30px;
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}
.contact-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-social ul li a {
  display: -ms-grid;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(30, 30, 30, 0.1);
  place-items: center;
  border-radius: 4px;
  color: rgba(30, 30, 30, 0.3);
  font-size: 15px;
}
.contact-social ul li a:hover {
  background: #49a9b7;
  color: #fff;
}
.contact-map {
  height: 540px;
  width: 100%;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}

/*
************
*************************
26. 404
******************************************************* 
*************************************************************** */
.error-content h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 27px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-content h2 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .error-content h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .error-content h2 {
    font-size: 45px;
  }
}

/*
************
*************************
27. admission
******************************************************* 
*************************************************************** */
.h3_admission-area {
  position: relative;
  z-index: 1;
  background-color: var(--clr-color-lightPink);
  position: relative;
  z-index: 1;
}
.h3_admission-bg {
  position: absolute;
  right: 90px;
  bottom: 0;
  z-index: -1;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .h3_admission-bg {
    right: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_admission-bg {
    display: none;
  }
}
.h3_admission-shape-1 {
  position: absolute;
  left: 135px;
  bottom: 210px;
  z-index: -1;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .h3_admission-shape-1 {
    left: 70px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_admission-shape-1 {
    left: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_admission-shape-1 {
    left: 20px;
    bottom: 170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_admission-shape-1 {
    left: 20px;
    bottom: 170px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_admission-shape-1 {
    display: none;
  }
}
.h3_admission-shape-2 {
  position: absolute;
  right: 65px;
  top: 120px;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_admission-shape-2 {
    right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_admission-shape-2 {
    display: none;
  }
}
.h3_admission-wrap {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_admission-wrap {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_admission-wrap {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_admission-wrap {
    margin-right: 0;
  }
}
.h3_admission-wrap-shape-2 {
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_admission-wrap-shape-2 {
    right: -30px;
    top: -10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_admission-wrap-shape-2 {
    right: -30px;
    top: -10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_admission-wrap-shape-2 {
    right: 0;
    top: -20px;
  }
}
.h3_admission-content {
  max-width: 500px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_admission-content {
    max-width: 100%;
  }
}
.h3_admission-content span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--clr-body-heading);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1;
}
.h3_admission-content span i {
  background: -webkit-gradient(linear, left top, left bottom, from(#20E448), to(#139E30));
  background: linear-gradient(#20E448, #139E30);
  display: -ms-inline-grid;
  display: inline-grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  place-items: center;
  font-size: 10px;
}
.h3_admission-form {
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(30, 30, 30, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(30, 30, 30, 0.1);
  padding: 45px 40px 50px;
  max-width: 440px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h3_admission-form {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .h3_admission-form {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_admission-form {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.h3_admission-form-title {
  margin-bottom: 20px;
}
.h3_admission-form-input input, .h3_admission-form-input textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(30, 30, 30, 0.1);
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  font-size: 14px;
  color: var(--clr-body-heading);
  margin-bottom: 15px;
}
.h3_admission-form-input input::-webkit-input-placeholder, .h3_admission-form-input textarea::-webkit-input-placeholder {
  color: var(--clr-body-heading);
  font-size: 14px;
  opacity: 1;
}
.h3_admission-form-input input:-moz-placeholder, .h3_admission-form-input textarea:-moz-placeholder {
  color: var(--clr-body-heading);
  font-size: 14px;
  opacity: 1;
}
.h3_admission-form-input input::-moz-placeholder, .h3_admission-form-input textarea::-moz-placeholder {
  color: var(--clr-body-heading);
  font-size: 14px;
  opacity: 1;
}
.h3_admission-form-input input:-ms-input-placeholder, .h3_admission-form-input textarea:-ms-input-placeholder {
  color: var(--clr-body-heading);
  font-size: 14px;
  opacity: 1;
}
.h3_admission-form-input textarea {
  height: 100px;
}
.h3_admission-btn {
  height: 50px;
}
.h3_admission-btn i {
  margin-left: 8px;
}

/*
************
*************************
28. education
******************************************************* 
*************************************************************** */
.h4_education-area {
  position: relative;
  z-index: 1;
  background-color: #36348E;
  overflow: hidden;
}
.h4_education-shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.h4_education-shape-2 {
  position: absolute;
  right: 45%;
  top: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h4_education-shape-2 {
    right: 0;
  }
}
.h4_education-img {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 45%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h4_education-img {
    display: none;
  }
}
.h4_education-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.h4_education-item-icon {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  width: 70px;
  height: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.h4_education-item-icon i {
  font-size: 28px;
  color: #fff;
}
.h4_education-item-info h3 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  line-height: 1;
}
.h4_education-item-info p {
  color: #C3C2DD;
  margin-bottom: 0;
}

/*
************
*************************
29. faq
******************************************************* 
*************************************************************** */
.h4_faq-img {
  margin-right: -30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h4_faq-img {
    margin-right: -10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h4_faq-img {
    margin-right: 0;
  }
}
.h4_faq-wrap {
  margin-left: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h4_faq-wrap {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h4_faq-wrap {
    margin-left: 0;
  }
}
.h4_faq-content .accordion-item {
  border: none;
  margin-bottom: 30px;
  border-radius: 4px;
}
.h4_faq-content .accordion-button {
  position: relative;
  border: 0;
  padding-left: 25px;
  padding-right: 60px;
  height: 60px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--clr-body-heading);
  border-radius: 6px !important;
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: #FFF;
}
@media (max-width: 767px) {
  .h4_faq-content .accordion-button {
    font-size: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h4_faq-content .accordion-button {
    font-size: 18px;
  }
}
.h4_faq-content .accordion-button::after {
  display: none;
}
.h4_faq-content .accordion-button::before {
  position: absolute;
  right: 0;
  top: 0;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  padding: 0 25px;
  font-size: 15px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  color: var(--clr-body-heading);
}
.h4_faq-content .accordion-button:not(.collapsed)::before {
  content: "\f107";
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.h4_faq-content .accordion-button:not(.collapsed) {
  color: #fff;
  background: var(--clr-theme-primary-4);
  border-color: transparent;
  border-radius: 6px 6px 0 0 !important;
}
.h4_faq-content .accordion-header {
  background: #fffaf2;
  padding: 0;
}
.h4_faq-content .accordion-body {
  padding: 25px 25px;
  line-height: 1.5;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-top: 0;
  border-radius: 6px;
}
.h4_faq-content .accordion-body p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
}
.h4_faq-content .accordion-body strong {
  display: contents;
}
/*
************
*************************
30. feature
******************************************************* 
*************************************************************** */
.h5_feature-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h5_feature-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.h5_feature-item {
  width: 33.3333333333%;
  padding: 110px 40px 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
         /* justify-content: center;*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h5_feature-item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .h5_feature-item {
    width: 100%;
  }
}
.h5_feature-item.first_item {
  background-color: #d5eef4;
}
.h5_feature-item.second_item {
  background-color: #ffdfa4;
}
.h5_feature-item.third_item {

  background: #fff7dc;
}
.h5_feature-item.third_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .h5_feature-item.third_item {
    width: 100%;
  }
}
.h5_feature-item span {
  width: 40px;
  height: 40px;
  background: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  color:#262626;
  margin-bottom: 13px;
}
.h5_feature-item h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  min-height:100px;
}
.h5_feature-item p {
    min-height: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5_feature-item h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h5_feature-item h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .h5_feature-item h3 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5_feature-item h3 {
    font-size: 30px;
  }
}
.h5_feature-item a {
  font-size: 16px;
  color: var(--clr-body-heading);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
}
.h5_feature-item a:hover {
  color: #49a9b7;
}

/*
************
*************************
31. video
******************************************************* 
*************************************************************** */
.h5_video-area {
  min-height: 650px;
  background-repeat: repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}
.h5_video-content-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*
************
*************************
32. footer
******************************************************* 
*************************************************************** */
.footer-area {
  background-color: var(--clr-color-lightPurple);
}
.footer-logo {
  margin-bottom: 15px;
}

.footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-social ul li a {
  display: -ms-grid;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 4px;
  color: rgba(30, 30, 30, 0.3);
  border: 1px solid rgba(30, 30, 30, 0.3);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.08);
}
.footer-social ul li a:hover {
  background: var(--clr-theme-primary);
  color: #fff;
  border-color: transparent;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .footer-widget.ml-80 {
    margin-left: 60px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-widget.ml-80 {
    margin-left: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget.ml-80 {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-widget.ml-80 {
    margin-left: 0;
  }
}
.footer-widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
.footer-widget-list ul li {
  margin-bottom: 10px;
}
.footer-widget-list ul li:last-child {
  margin-bottom: 0;
}
.footer-widget-list ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #a8a8a9!important
}
.et_pb_text_0_tb_footer.et_pb_text a, .et_pb_text_1_tb_footer.et_pb_text a, .et_pb_text_2_tb_footer.et_pb_text a {
  color: #a8a8a9!important;
}
.footer-widget-list ul li a:hover {
  color: var(--clr-theme-primary);
}

.footer-subscribe-form {
  position: relative;
  margin-bottom: 13px;
  z-index: 1;
}
.footer-subscribe-form input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  border-radius: 6px;
  border: 1px solid rgba(30, 30, 30, 0.1);
  padding-right: 124px;
  color: rgba(30, 30, 30, 0.4);
  background-color: transparent;
  font-size: 14px;
}
.footer-subscribe-form input::-webkit-input-placeholder {
  color: rgba(30, 30, 30, 0.4);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.footer-subscribe-form input:-moz-placeholder {
  color: rgba(30, 30, 30, 0.4);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.footer-subscribe-form input::-moz-placeholder {
  color: rgba(30, 30, 30, 0.4);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.footer-subscribe-form input:-ms-input-placeholder {
  color: rgba(30, 30, 30, 0.4);
  font-size: 14px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.footer-subscribe-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 40px;
  line-height: 40px;
  background: var(--clr-theme-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  padding: 0 20px;
  z-index: 1;
  overflow: hidden;
}
.footer-subscribe-form button::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 300px;
  height: 200px;
  background-color: #08449E;
  border-color: transparent;
  border-radius: 50%;
  -webkit-transform: translate(-40px, -80px) scale(0.1);
          transform: translate(-40px, -80px) scale(0.1);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.footer-subscribe-form button:hover {
  color: #fff;
}
.footer-subscribe-form button:hover::after {
  opacity: 0.5;
  -webkit-transform-origin: 100px 100px;
          transform-origin: 100px 100px;
  -webkit-transform: scale(1) translate(-10px, -70px);
          transform: scale(1) translate(-10px, -70px);
}
.footer-subscribe-condition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-subscribe-condition label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(30, 30, 30, 0.6);
}

.copyright-area {
  border-top: 1px solid rgba(30, 30, 30, 0.1);
  padding: 30px 0;
}
.copyright-text p {
  text-align: center;
  margin-bottom: 0;
  color: rgba(30, 30, 30, 0.5);
}

.footer-subscribe-condition .condition_label {
  display: block;
  position: relative;
  padding-left: 21px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.footer-subscribe-condition .condition_label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.footer-subscribe-condition .check_mark {
  position: absolute;
  top: 7px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid rgba(30, 30, 30, 0.3);
  border-radius: 2px;
}
.footer-subscribe-condition .check_mark:after {
  content: "";
  position: absolute;
  display: none;
}
.footer-subscribe-condition .condition_label input:checked ~ .check_mark:after {
  display: block;
}
.footer-subscribe-condition .condition_label .check_mark:after {
  left: 3px;
  top: 0px;
  width: 4px;
  height: 8px;
  border: solid rgba(30, 30, 30, 0.4);
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.h2_footer-area {
  background-color: #212229;
}
.h2_footer-area .footer-widget-text {
  color: rgba(255, 255, 255, 0.6);
}
.h2_footer-area .footer-social ul li a {
  color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.14);
}
.h2_footer-area .footer-social ul li a:hover {
  color: #fff;
}
.h2_footer-area .footer-widget-list ul li a {
  color: rgba(255, 255, 255, 0.6);
}
.h2_footer-area .footer-widget-list ul li a:hover {
  color: #fff;
}
.h2_footer-area .footer-widget-title {
  color: #fff;
}
.h2_footer-area .footer-subscribe-form input {
  border-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.4);
}
.h2_footer-area .footer-subscribe-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.h2_footer-area .footer-subscribe-form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.h2_footer-area .footer-subscribe-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.h2_footer-area .footer-subscribe-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.h2_footer-area .footer-subscribe-condition label {
  color: rgba(255, 255, 255, 0.6);
}
.h2_footer-area .copyright-area {
  border-color: rgba(255, 255, 255, 0.1);
}
.h2_footer-area .copyright-text p {
  color: rgba(255, 255, 255, 0.5);
}
.h2_footer-area .footer-subscribe-condition .check_mark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.h2_footer-area .footer-subscribe-condition .condition_label .check_mark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid rgba(255, 255, 255, 0.4);
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.h3_footer-area {
  background-color: #0A0A0A;
}
.h3_footer-area .footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h3_footer-area .footer-social ul li a {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-social ul li a:hover {
  background-color: var(--clr-theme-primary-3);
  color: #fff;
}
.h3_footer-area .footer-widget-text {
  color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-widget-title {
  color: #fff;
}
.h3_footer-area .footer-widget-list ul li a {
  color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-widget-list ul li a:hover {
  color: #fff;
}
.h3_footer-area .copyright-text p {
  color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-subscribe-condition .check_mark {
  border-color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-subscribe-condition .check_mark:after {
  border-color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-subscribe-condition .condition_label {
  color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-subscribe-form input {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-subscribe-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-subscribe-form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-subscribe-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-subscribe-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h3_footer-area .footer-subscribe-form button {
  background-color: var(--clr-theme-primary-3);
}
.h3_footer-area .copyright-area {
  border-color: rgba(255, 255, 255, 0.1);
}

.h4_footer-area {
  background-color: #0A0A0A;
}
.h4_footer-area .footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h4_footer-area .footer-social ul li a {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
.h4_footer-area .footer-social ul li a:hover {
  background-color: var(--clr-theme-primary-4);
  color: #fff;
}
.h4_footer-area .footer-widget-text {
  color: rgba(255, 255, 255, 0.6);
}
.h4_footer-area .footer-widget-title {
  color: #fff;
}
.h4_footer-area .footer-widget-list ul li a {
  color: rgba(255, 255, 255, 0.6);
}
.h4_footer-area .footer-widget-list ul li a:hover {
  color: #fff;
}
.h4_footer-area .copyright-text p {
  color: rgba(255, 255, 255, 0.6);
}
.h4_footer-area .footer-subscribe-condition .check_mark {
  border-color: rgba(255, 255, 255, 0.6);
}
.h4_footer-area .footer-subscribe-condition .check_mark:after {
  border-color: rgba(255, 255, 255, 0.6);
}
.h4_footer-area .footer-subscribe-condition .condition_label {
  color: rgba(255, 255, 255, 0.6);
}
.h4_footer-area .footer-subscribe-form input {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
}
.h4_footer-area .footer-subscribe-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h4_footer-area .footer-subscribe-form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h4_footer-area .footer-subscribe-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h4_footer-area .footer-subscribe-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h4_footer-area .footer-subscribe-form button {
  background-color: var(--clr-theme-primary-4);
  border-radius: 30px;
}
.h4_footer-area .copyright-area {
  border-color: rgba(255, 255, 255, 0.1);
}

.h5_footer-area {
  background-color: #262627;
}
.h5_footer-area .footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h5_footer-area .footer-social ul li a {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 0;
}
.h5_footer-area .footer-social ul li a:hover {
  background-color: var(--clr-theme-primary-5);
  color: var(--clr-body-heading);
}
.h5_footer-area .footer-widget-text {
  color: rgba(255, 255, 255, 0.6);
}
.h5_footer-area .footer-widget-title {
  color: #fff;
}
.h5_footer-area .footer-widget-list ul li a {
  color: rgba(255, 255, 255, 0.6);
}
.h5_footer-area .footer-widget-list ul li a:hover {
  color: #fff;
}
.h5_footer-area .copyright-text p {
  color: rgba(255, 255, 255, 0.6);
}
.h5_footer-area .footer-subscribe-condition .check_mark {
  border-color: rgba(255, 255, 255, 0.6);
}
.h5_footer-area .footer-subscribe-condition .check_mark:after {
  border-color: rgba(255, 255, 255, 0.6);
}
.h5_footer-area .footer-subscribe-condition .condition_label {
  color: rgba(255, 255, 255, 0.6);
}
.h5_footer-area .footer-subscribe-form input {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 0;
}
.h5_footer-area .footer-subscribe-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h5_footer-area .footer-subscribe-form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h5_footer-area .footer-subscribe-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h5_footer-area .footer-subscribe-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.h5_footer-area .footer-subscribe-form button {
  background-color: var(--clr-theme-primary-5);
  border-radius: 0;
  color: var(--clr-body-heading);
}
.h5_footer-area .copyright-area {
  border-color: rgba(255, 255, 255, 0.1);
}


.hero {
  position: relative;
  /* margin-top: 50px; */
}

.hero:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(99deg,rgb(34 69 76),rgb(0 58 69 / 26%));
  position: absolute;
  top: 0;
  left: 0
}

.hero__content {
  max-width: 1200px;
  width: 100%;
  position: absolute;
  text-align: left;
  color: #ffffff;
  z-index: 1;
  top: 200px;
  left: 5%
}

.hero__title {
  font-size: 4.5em;
  font-weight: 900;
  position: relative;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  line-height: 1.1;
  font-family: "Roboto", sans-serif;
  color: #fff;
  max-width: 51%;
}

.hero__subtitle {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 2.5em;
  max-width: 73%;
  font-weight: 100;
}

.hero .button {
  color: #ffffff;
  text-decoration: none;
  border: solid 1px #fff;
  padding: 1em 3em;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 14px;
  transition: all 250ms ease-out
}

.hero .button:hover {
  background-color: #fff;
  color: #333
}
.video-play-button {
  position: relative;
  z-index: 10;
  margin-top: -3px;
  left: 20px;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 22px;
  height: 34px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: #77c7d6;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: #4293a3;
  border-radius: 50%;
  transition: all 200ms
}

.video-play-button:hover:after {
  background-color: #da0528
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-top: 5px
}

@-webkit-keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0
  }
}

@keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0
  }
}

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  opacity: 0;
  transition: all ease 500ms;
  display: none
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
  display: block
}

.video-overlay-close {
  position: relative;
  display: inline-block;
  top: 30%;
  text-align: center;
  width: 100%;
  font-size: 18px;
  margin-top: 366px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms
}

.video-overlay-close:hover {
  color: #fa183d
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 0 15px rgba(0,0,0,0.75)
}

a.watch-video {
  color: #fff;
  position: absolute;
  margin-top: -85px;
  left: 65px
}

.step-1-meta {
  position: absolute;
  left: 25px;
  bottom: 92px;
  background: #fecd89;
  border-radius: 6px;
  /* padding: 25px 30px 25px; */
  -webkit-box-shadow: 0px 10px 40px rgba(30, 30, 30, 0.1);
  box-shadow: 0px 10px 40px rgba(30, 30, 30, 0.1);
  -webkit-animation: about-upDown-1 2s linear 0s infinite alternate;
  animation: about-upDown-1 2s linear 0s infinite alternate;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  text-align: center;
}

.step-2-meta {
  position: absolute;
  left: 196px;
  bottom: -5px;
  background: #49c5c9;
  border-radius: 6px;
  padding: 25px 30px 25px;
  -webkit-box-shadow: 0px 10px 40px rgba(30, 30, 30, 0.1);
  box-shadow: 0px 10px 40px rgba(30, 30, 30, 0.1);
  -webkit-animation: about-upDown-1 3s linear 0s infinite alternate;
  animation: about-upDown-1 3s linear 0s infinite alternate;
  z-index: 1;
   width: 150px;
  height: 150px;
  border-radius: 50%;
  text-align: center;
  
}
.step-2-meta h5{
  margin-top: 45px!important;
}
.step-3-meta h5 {
  margin-top: 42px!important;
}
.step-1-meta h5 {
  margin-top: 66px!important;
}
.step-3-meta {
  position: absolute;
  left: 358px;
  bottom: 77px;
  background: #feb248;
  border-radius: 6px;
  padding: 25px 30px 25px;
  -webkit-box-shadow: 0px 10px 40px rgba(30, 30, 30, 0.1);
  box-shadow: 0px 10px 40px rgba(30, 30, 30, 0.1);
  -webkit-animation: about-upDown-1 3.2s linear 0s infinite alternate;
  animation: about-upDown-1 3.2s linear 0s infinite alternate;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  text-align: center;
}
.right0 {
  left: unset;
  right:0;
}

.h3_about-button h5 {
  color: #fff;
  text-shadow: 0 0 5px #07040417;
}
.section-area-3 .section-subtitle {
  color: #a0a0a0;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}

.cm-img img {
  object-fit: fill;
}

.cm-img {
  background: #fbfbfb;
  max-width: 47%;
}
#dose .h4_category-item-icon {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
#dose{
  background:#f1fdff;
}
#dose .h4_category-item-content p {
  padding: 14px;
}
section#support h2 {
  font-size: 70px;
}

#support p {
  padding-bottom: 20px;
}
.header-area .container {
  max-width: 1597px;
}
#casel .single-banner {
  padding-top: 85px!important;
  background: #c5f7ff;
}
span.counter-info-text {
  color: #fff;
}

h3.counter-info-title {
  color: #fff;
}

.counter-icon i {
  color: #fff;
}

.cta-wrapper {
  padding: 27px;
}

li.current.menu-has-child a {
  color: #49a9b7;
}
@media(max-width:480px){
  .step-1-meta,.step-2-meta,.step-3-meta {
    display: none;
}
.hero__content {
  left: 0;
  padding: 33px;
  top: 145px;
}

h1.hero__title {
  font-size: 40px;
}

a.watch-video {
  left: 106px;
}
.h5_feature-item.third_item
{padding:40px;}
}
.circle .content {
  text-align: center;
  margin-top: 43%;
}

.circle .content h2 {
  font-size: 22px;
}
.h5_feature-item.first_item:after {
  content: ' ';
  width: 30px;
  height: 30px;
  background: #d5eef4;
  padding: 33px;
  border-radius: 50%;
  position: absolute;
  margin-left: 33%;
  margin-top: 154px;
}

.h5_feature-item.second_item:after {
  content: ' ';
  width: 30px;
  height: 30px;
  background: #fff7dc;
  padding: 33px;
  border-radius: 50%;
  position: absolute;
  margin-left: 33%;
  margin-top: 154px;
}
@media(max-width:480px){
  .h5_feature-item.second_item:after {
    content: ' ';
    width: 30px;
    height: 30px;
    background: #fff7dc;
    padding: 33px;
    border-radius: 50%;
    position: absolute;
    margin-left: 0%;
    margin-top: 125%;
}
.h5_feature-item.first_item:after {
  content: ' ';
  width: 30px;
  height: 30px;
  background: #d5eef4;
  padding: 33px;
  border-radius: 50%;
  position: absolute;
  margin-left: 0;
  margin-top: 129%;
}
.stack.container-fluid.bg-light{
  display: none;
}
}
.h3_about-button{opacity:1.0}

}
.stack.container-fluid.bg-light {
    background-color: #96dce8!important;
}
.donate-link{
    border-color: #B2CEAC;
    border-radius: 90px;
 font-size: 15px!important; 
    /* font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important; */
    font-weight: 500!important;
    background-color: #B2CEAC;
    color: #fff!important;
    padding: 1px 18px!important;
}
.about-link{
    border-color: #fdea5f;
    border-radius: 90px;
 font-size: 15px!important; 
    /* font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important; */
    font-weight: 500!important;
    background-color:#fdea5f;
    color: #1e1e1eba;
    padding: 1px 18px!important;
}
.shop-link {
    border-color: orange;
    border-radius: 90px;
   font-size: 15px!important; 
    /* font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important; */
    font-weight: 500!important;
    background-color:orange;
    color: #ffffff!important;
    padding: 0px 18px!important;
}
.login-link {
   font-size: 15px!important; 
    /* font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important; */
    font-weight: 400!important;
 
    color: #fff!important;
    padding: 1px 18px!important;
}
div#navbarsExampleDefault ul li {
    margin-left: 18px;
    margin-right: 0px!important;
}
div#navbarsExampleDefault .submenu li {
    margin-right: 0px!important;
    margin-left: 0px!important;
}
.top-main .h5_banner-bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    max-width: 45%;
    width: 100%;
    text-align: center;
    background: url('assets/img/pastel-bg.png');
    background-position: center center;
    background-size: 111%;
    background-repeat: no-repeat;
    background-color: #fff;
}
.top-main .h5_banner-bg img {
    width: 57%;
    margin: 0 auto;
    /* height: 100%; */
    -o-object-fit: unset!important;
    /* object-fit: inherit; */
    border-radius: 20px;
    margin-top: 224px;
    box-shadow: 1px 7px 20px 0px #0000001f;
    height: unset;
    -o-object-fit: cover;
    object-fit: unset;
}
.top-main .h5_single-banner{
    background-color: #ecf5f7;
}
.top-main .h5_single-banner {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 70px;
}
.top-main .h2_banner-content .section-title span {
    color: #000;
}
.h5_banner-area.top-main:after {
        content: ' ';
    width: 30px;
    height: 30px;
    background: #ecf5f7;
    padding: 33px;
    border-radius: 50%;
    position: absolute;
    margin-left: -30px;
    margin-top:30px;
 
    z-index:9;
}
.h5_feature-area:after {
         content: ' ';
    width: 30px;
    height: 30px;
    background: #ffdfa4;
    padding: 33px;
    border-radius: 50%;
    position: absolute;
    margin-left: 48%;
    margin-top: -30px;
    z-index:9;
}
.header-area {
  padding: 22px 0;
  padding-top: 0px;
}
body > header > div > div.container {
    padding-top: 20px;
}
.navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-end!important;
}
#navbarsExampleDefault{
    flex-grow: 0;
}
.stack.container-fluid.bg-light {
    background-color: #96dce8!important;
}
.donate-link{
    border-color: #B2CEAC;
    border-radius: 90px;
 font-size: 15px!important; 
    /* font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important; */
    font-weight: 500!important;
    background-color: #B2CEAC;
    color: #fff!important;
    padding: 1px 18px!important;
}

.about-link{
    border-color: #fdea5f;
    border-radius: 90px;
 font-size: 15px!important; 
    /* font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important; */
    font-weight: 500!important;
    background-color:#fdea5f;
    color: #1e1e1eba;
    padding: 1px 18px!important;
}

.shop-link {
    border-color: orange;
    border-radius: 90px;
   font-size: 15px!important; 
    /* font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important; */
    font-weight: 500!important;
    background-color:orange;
    color: #ffffff!important;
    padding: 0px 18px!important;
}

.login-link {

   font-size: 15px!important; 
    /* font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important; */
    font-weight: 400!important;
 
    color: #fff!important;
    padding: 1px 18px!important;
}
div#navbarsExampleDefault ul li {
    margin-left: 18px;
    margin-right: 0px!important;
}
div#navbarsExampleDefault .submenu li {
    margin-right: 0px!important;
    margin-left: 0px!important;
}
.top-main .h5_banner-bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    max-width: 45%;
    width: 100%;
    text-align: center;
    background: url('assets/img/pastel-bg.png');
    background-position: center center;
    background-size: 111%;
    background-repeat: no-repeat;
    background-color: #fff;
}
.top-main .h5_banner-bg img {
    width: 57%;
    margin: 0 auto;
    /* height: 100%; */
    -o-object-fit: unset!important;
    /* object-fit: inherit; */
    border-radius: 20px;
    margin-top: 224px;
    box-shadow: 1px 7px 20px 0px #0000001f;
    height: unset;
    -o-object-fit: cover;
    object-fit: unset;
}
.top-main .h5_single-banner{
    background-color: #ecf5f7;
}

.top-main .h5_single-banner {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 70px;
}

.top-main .h2_banner-content .section-title span {
    color: #000;
}
section.h5_banner-area.top-main:after {
        content: ' ';
    width: 30px;
    height: 30px;
    background: #ecf5f7;
    padding: 33px;
    border-radius: 50%;
    position: absolute;
    margin-left: -30px;
    margin-top: -30px;
    z-index:9;
}
section.h5_feature-area:after {
         content: ' ';
    width: 30px;
    height: 30px;
    background: #ffffff;
    padding: 33px;
    border-radius: 50%;
    position: absolute;
    margin-left: 48%;
    margin-top: -30px;
    z-index:9;
}
footer ul li {
  list-style-type: none!important;
}
footer ul {
  margin: 0!important;
  padding: 0!important;
}
footer ul {
  margin: 0!important;
  padding: 0!important;
}

footer h3 {
  color: #fff;
}

footer p {
  color: #fff;
}
footer ul li a {
  color:#fff!important
}
form.et_pb_searchform {  min-width: 300px;
  width: 100%;
  height: 45px;
  line-height: 45px;
  background-color: #F5F5F5;
  border: none;
  border-radius: 6px;
  padding: 0 20px;
  padding-right: 55px;
  font-size: 15px;
  color: rgba(30, 30, 30, 0.6);}
  .m-only {display:none!important}
  /** Mobile **/
  @media(max-width:480px){
  #right-container > div.et_pb_button_module_wrapper.et_pb_button_2_tb_header_wrapper.et_pb_button_alignment_center.et_pb_module {
    display: none;
}
.hero__video video {
    display: none;
}
.hero__video video {
    display: none;
}

.hero__content {
    top: 0!important;
}

.hero__content h1,.hero__content span {
    font-size: 46px!important;
    padding: 0!important;
    width: 100%;
}

.hero__subtitle {
    font-size: 18px!important;
}

a.watch-video {
    left: 100px!important;
}
.hero {
    height: 542px!important;
}
.et_pb_menu_1_tb_header.et_pb_menu .et_pb_menu__logo {
    margin-top: 0!important;
}
#video-hero > div > div > div > div.hero__video > div {
display:none;
}
.hero:after{
    background: linear-gradient(99deg,rgb(34 69 76),rgb(0 58 69 / 82%))!important;
}
div#top-about {
    display: none;
}

.m-only {display:block!important}
div#right-container {
    margin-left: 15%;
    float:none;
    }
    #sticky-nav {
    padding-top: 45px;
}

.h5_feature-item.first_item:after {
    margin-top: 111%;
}

.h5_feature-item.second_item:after {
    margin-top: 100%;
}
section.h5_feature-area:after {
    margin-left: 40%;
}
.h3_about-img.mb-50 {
    margin-top: 0!important;
}

#step-1-section {
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pt-130 {
    padding-top: 0;
}

.mb-50 {
    /* margin-bottom: 0; */
}

div#step-4-section {
    margin-top: -400px;
}

#support > div > div > div.col-xl-6.col-lg-6.col-md-10.mb-50 {
    margin-bottom: 0;
}

#casel .single-banner {
    padding-top: 0!important;
}

h2.et_pb_module_heading {
    line-height: 43px!important;
}

.et_pb_section_3.et_pb_section {
    padding-top: 0;
}

.et_pb_module.dnxte_feature_list_child {
    width: 100%!important;
}

#choose-love-action > div.et_pb_row.et_pb_row_12.et_had_animation {
    margin-top: -100px;
}

.et_pb_image_3 {}

#choose-love-action > div.et_pb_row.et_pb_row_14.et_pb_equal_columns.et_pb_gutters4.et_had_animation {
    padding: 0;
    margin: 0!important;
    width: 100%!important;
    margin-left: -18%!important;
}
ul#mobile_menu2 .current_page_parent {
    text-decoration: none;
}
.c-navigation-breadcrumbs__item:not(:nth-last-child(2)) {
    display: block!important;
}
#support > div > div > div:nth-child(1) {margin-top: 131px;}

#support > div > div > div.col-xl-6.col-lg-6.col-md-10.mb-50 .section-title {
    font-size: 54px;
}

#books > div.et_pb_row.et_pb_row_12.custom_row.et_pb_gutters1 > div {
    padding: 20px;
    padding-top: 0;
}
ul.sub-menu {
    height: 0px;
    overflow: hidden;
    transition: all 0.26s ease;
        transform: scaleY(0);
    transform-origin: top;
}

ul.open-sub.sub-menu {

    transform: scaleY(1)!important;
    height: auto!important;
}
a.theme-btn.theme-btn-big {
    margin-bottom: 30px;
}
#post-1226 > div > div > div > div.et_pb_section.et_pb_section_1.et_pb_with_background.et_section_regular.et_pb_section_sticky.et_pb_section_sticky_mobile > div.et_pb_row.et_pb_row_3.et-last-child.et_had_animation > div > div.et_pb_module.et_pb_heading.et_pb_heading_3.et_pb_bg_layout_ > div > h2 {
    display: block;
    font-size: 28px;
    padding-bottom: 48px;
}
#post-1226 > div > div > div > div.et_pb_section.et_pb_section_7.et_section_regular > div.et_pb_row.et_pb_row_17.et_had_animation > div.et_pb_column.et_pb_column_1_2.et_pb_column_28.et_pb_css_mix_blend_mode_passthrough.et-last-child > div > span > img {
    margin-top: 57px;
}
.h2_price-item-title {
    margin-top: 20px!important;
}
#choose-love-action > div.et_pb_row.et_pb_row_15.full-width-buttons.et_pb_gutters4.et_had_animation {
    padding: 0;
    width: 77%;
}

  }


.et_pb_menu_0_tb_header.et_pb_menu {
  float: left!important
}

.et_pb_menu_1_tb_header.et_pb_menu ul li a {
  text-transform: none!important
}

.et_pb_menu_1_tb_header.et_pb_menu ul li a {
  width: 100%!important;
  display: block
}

.nav li li {
  margin: 0;
  width: 100%;
  display: block
}

div#top-bar-row {
  height: 44px
}

div#right-container {
  height: 33px;
  width: 500px;
  float: right
}

.sample-holder {
  text-align: center!important
}

.sample-holder .et_pb_text_inner {
  margin-bottom: 27px
}

.sample-holder .et_pb_text_inner p {
  margin-bottom: 12px
}

.et_pb_section_0_tb_header {
  max-height: 46px;
  clear: both
}

.et_pb_section_0_tb_header.et_pb_section {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #96dce8!important
}

.et_pb_row_0_tb_header.et_pb_row {
  padding-top: 7px!important;
  padding-bottom: 0px!important;
  padding-top: 7px;
  padding-bottom: 0px
}

.et_pb_row_0_tb_header,body #page-container .et-db #et-boc .et-l .et_pb_row_0_tb_header.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_0_tb_header.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_0_tb_header.et_pb_row,.et_pb_row_1_tb_header,body #page-container .et-db #et-boc .et-l .et_pb_row_1_tb_header.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_1_tb_header.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_1_tb_header.et_pb_row {
  width: 95%;
  max-width: 95%
}

.et_pb_menu_0_tb_header.et_pb_menu {
  background-color: #ffffff;
  float: right;
  margin-right: 25px!important;
  margin-bottom: 0
}

.et_pb_menu_0_tb_header.et_pb_menu .nav li ul,.et_pb_menu_0_tb_header.et_pb_menu .et_mobile_menu,.et_pb_menu_0_tb_header.et_pb_menu .et_mobile_menu ul,.et_pb_menu_1_tb_header.et_pb_menu .nav li ul,.et_pb_menu_1_tb_header.et_pb_menu .et_mobile_menu,.et_pb_menu_1_tb_header.et_pb_menu .et_mobile_menu ul {
  background-color: #ffffff!important
}

.et_pb_menu_0_tb_header .et_pb_menu_inner_container>.et_pb_menu__logo-wrap,.et_pb_menu_0_tb_header .et_pb_menu__logo-slot {
  width: auto;
  max-width: 100%
}

.et_pb_menu_0_tb_header .et_pb_menu_inner_container>.et_pb_menu__logo-wrap .et_pb_menu__logo img,.et_pb_menu_0_tb_header .et_pb_menu__logo-slot .et_pb_menu__logo-wrap img,.et_pb_menu_1_tb_header .et_pb_menu_inner_container>.et_pb_menu__logo-wrap .et_pb_menu__logo img,.et_pb_menu_1_tb_header .et_pb_menu__logo-slot .et_pb_menu__logo-wrap img {
  height: auto;
  max-height: none
}

.et_pb_menu_0_tb_header .mobile_nav .mobile_menu_bar:before,.et_pb_menu_0_tb_header .et_pb_menu__icon.et_pb_menu__search-button,.et_pb_menu_0_tb_header .et_pb_menu__icon.et_pb_menu__close-search-button,.et_pb_menu_0_tb_header .et_pb_menu__icon.et_pb_menu__cart-button,.et_pb_menu_1_tb_header .mobile_nav .mobile_menu_bar:before,.et_pb_menu_1_tb_header .et_pb_menu__icon.et_pb_menu__search-button,.et_pb_menu_1_tb_header .et_pb_menu__icon.et_pb_menu__close-search-button,.et_pb_menu_1_tb_header .et_pb_menu__icon.et_pb_menu__cart-button {
  color: #78c7d6
}

.et_pb_button_0_tb_header_wrapper .et_pb_button_0_tb_header,.et_pb_button_0_tb_header_wrapper .et_pb_button_0_tb_header:hover,.et_pb_button_1_tb_header_wrapper .et_pb_button_1_tb_header,.et_pb_button_1_tb_header_wrapper .et_pb_button_1_tb_header:hover {
  padding-top: 0px!important;
  padding-right: 1rem!important;
  padding-bottom: 0px!important;
  padding-left: 1rem!important
}

.et_pb_button_0_tb_header_wrapper,.et_pb_button_1_tb_header_wrapper {
  margin-right: 1rem!important;
  margin-bottom: 0px!important
}

body #page-container .et_pb_section .et_pb_button_0_tb_header {
  color: rgba(0,0,0,0.6)!important;
  border-width: 0px!important;
  border-color: #8bbd78;
  border-radius: 90px;
  font-size: 16px;
  font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important;
  font-weight: 700!important;
  background-color: #fdea5f
}

body #page-container .et_pb_section .et_pb_button_0_tb_header:before,body #page-container .et_pb_section .et_pb_button_0_tb_header:after,body #page-container .et_pb_section .et_pb_button_1_tb_header:before,body #page-container .et_pb_section .et_pb_button_1_tb_header:after,body #page-container .et_pb_section .et_pb_button_2_tb_header:before,body #page-container .et_pb_section .et_pb_button_2_tb_header:after {
  display: none!important
}

.et_pb_button_0_tb_header,.et_pb_button_0_tb_header:after,.et_pb_button_1_tb_header,.et_pb_button_1_tb_header:after,.et_pb_button_2_tb_header,.et_pb_button_2_tb_header:after,.et_pb_button_3_tb_header,.et_pb_button_3_tb_header:after {
  transition: all 300ms ease 0ms
}

body #page-container .et_pb_section .et_pb_button_1_tb_header {
  border-color: #8bbd78;
  border-radius: 90px;
  font-size: 16px;
  font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important;
  font-weight: 700!important;
  background-color: #8bbd78
}

.et_pb_button_2_tb_header_wrapper .et_pb_button_2_tb_header,.et_pb_button_2_tb_header_wrapper .et_pb_button_2_tb_header:hover {
  padding-top: 0px!important;
  padding-right: 1.5rem!important;
  padding-bottom: 0px!important;
  padding-left: 1.5rem!important
}

.et_pb_button_2_tb_header_wrapper {
  margin-right: 2rem!important;
  margin-bottom: 0px!important
}

body #page-container .et_pb_section .et_pb_button_2_tb_header {
  border-color: #F99E24;
  border-radius: 90px;
  font-size: 16px;
  font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important;
  font-weight: 700!important;
  background-color: #F99E24
}

.et_pb_button_3_tb_header_wrapper .et_pb_button_3_tb_header,.et_pb_button_3_tb_header_wrapper .et_pb_button_3_tb_header:hover {
  padding-top: 0px!important;
  padding-right: 0px!important;
  padding-bottom: 0px!important;
  padding-left: 0px!important
}

.et_pb_button_3_tb_header_wrapper {
  margin-bottom: 0px!important
}

body #page-container .et_pb_section .et_pb_button_3_tb_header {
  color: #FFFFFF!important;
  border-width: 0px!important;
  font-size: 15px;
  font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif!important
}

body #page-container .et_pb_section .et_pb_button_3_tb_header:after {
  display: none
}

body #page-container .et_pb_section .et_pb_button_3_tb_header:before {
  content: attr(data-icon);
  font-family: FontAwesome!important;
  font-weight: 900!important;
  line-height: inherit;
  font-size: inherit!important;
  opacity: 1;
  margin-left: -1.3em;
  right: auto;
  display: inline-block;
  font-family: FontAwesome!important;
  font-weight: 900!important
}

body #page-container .et_pb_section .et_pb_button_3_tb_header:hover:before {
  margin-left: .3em;
  right: auto;
  margin-left: -1.3em
}

.et_pb_section_1_tb_header.et_pb_section {
  padding-top: 0px;
  padding-bottom: 0px
}

.et_pb_section_1_tb_header {
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running stickySlideDown;
  animation: 300ms ease-in-out 0s normal none 1 running stickySlideDown;
  display: block;
  -webkit-box-shadow: 0px 6px 50px rgba(30,30,30,0.1);
  box-shadow: 0px 6px 50px rgba(30,30,30,0.1)
}

.et_pb_row_1_tb_header.et_pb_row {
  padding-top: 0px!important;
  padding-bottom: 0px!important;
  margin-top: 0px!important;
  padding-top: 0px;
  padding-bottom: 0px
}

.et_pb_menu_1_tb_header.et_pb_menu ul li a {
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px
}

.et_pb_menu_1_tb_header.et_pb_menu {
  background-color: #ffffff;
  text-transform: none
}

.et_pb_menu_1_tb_header.et_pb_menu .et-menu-nav li ul.sub-menu a {
  padding: 10px 10px
}

.et_pb_menu_1_tb_header.et_pb_menu .et_pb_menu__logo {
  margin-top: -20px
}

.et_pb_menu_1_tb_header .et_pb_menu_inner_container>.et_pb_menu__logo-wrap,.et_pb_menu_1_tb_header .et_pb_menu__logo-slot {
  width: auto;
  max-width: 270px
}

.et_pb_column_3_tb_header {
  margin-top: -20px
}

.et_pb_search_0_tb_header {
  overflow-x: hidden;
  overflow-y: hidden;
  border: none
}

.et_pb_search_0_tb_header input.et_pb_s {
  padding-top: 0.715em!important;
  padding-right: 0.715em!important;
  padding-bottom: 0.715em!important;
  padding-left: 0.715em!important;
  height: auto;
  min-height: 0
}

.et_pb_column_2_tb_header {
  padding-top: 0vw;
  padding-bottom: 0vw;
  margin-top: -30px
}

@media only screen and (max-width: 980px) {
  body #page-container .et_pb_section .et_pb_button_3_tb_header:before {
      line-height:inherit;
      font-size: inherit!important;
      margin-left: -1.3em;
      right: auto;
      display: inline-block;
      opacity: 1;
      content: attr(data-icon);
      font-family: FontAwesome!important;
      font-weight: 900!important
  }

  body #page-container .et_pb_section .et_pb_button_3_tb_header:after {
      display: none
  }

  body #page-container .et_pb_section .et_pb_button_3_tb_header:hover:before {
      margin-left: .3em;
      right: auto;
      margin-left: -1.3em
  }
}

@media only screen and (max-width: 767px) {
  body #page-container .et_pb_section .et_pb_button_3_tb_header:before {
      line-height:inherit;
      font-size: inherit!important;
      margin-left: -1.3em;
      right: auto;
      display: inline-block;
      opacity: 1;
      content: attr(data-icon);
      font-family: FontAwesome!important;
      font-weight: 900!important
  }

  body #page-container .et_pb_section .et_pb_button_3_tb_header:after {
      display: none
  }

  body #page-container .et_pb_section .et_pb_button_3_tb_header:hover:before {
      margin-left: .3em;
      right: auto;
      margin-left: -1.3em
  }
}

.et_pb_text_0_tb_footer.et_pb_text a,.et_pb_text_1_tb_footer.et_pb_text a,.et_pb_text_2_tb_footer.et_pb_text a {
  color: #a8a8a9!important
}

.sample-holder {
  text-align: center!important
}

.sample-holder .et_pb_text_inner {
  margin-bottom: 27px
}

.sample-holder .et_pb_text_inner p {
  margin-bottom: 12px
}

.et_pb_section_0_tb_footer.et_pb_section {
  padding-bottom: 0px;
  background-color: #262627!important
}

.et_pb_row_0_tb_footer.et_pb_row {
  padding-bottom: 0px!important;
  padding-bottom: 0px
}

.et_pb_row_0_tb_footer,body #page-container .et-db #et-boc .et-l .et_pb_row_0_tb_footer.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_0_tb_footer.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_0_tb_footer.et_pb_row {
  max-width: 1366px
}

.et_pb_row_0_tb_footer {
  color: #a8a8a9!important
}

.et_pb_image_0_tb_footer {
  margin-top: -20px!important;
  text-align: left;
  margin-left: 0
}

.et_pb_text_0_tb_footer.et_pb_text {
  color: #ffffff!important
}

.et_pb_text_0_tb_footer.et_pb_text a,.et_pb_text_1_tb_footer.et_pb_text a,.et_pb_text_2_tb_footer.et_pb_text a {
  color: #666666!important
}

.et_pb_text_0_tb_footer h3,.et_pb_text_1_tb_footer h3,.et_pb_text_2_tb_footer h3 {
  font-size: 17px
}

.et_pb_text_1_tb_footer.et_pb_text {
  color: RGBA(255,255,255,0)!important
}

.et_pb_text_3_tb_footer {
  font-size: 10px
}

@media only screen and (max-width: 980px) {
  .et_pb_image_0_tb_footer .et_pb_image_wrap img {
      width:auto
  }
}

@media only screen and (max-width: 767px) {
  .et_pb_image_0_tb_footer .et_pb_image_wrap img {
      width:auto
  }
}

.et_pb_slide_0.et_pb_slide .et_pb_slide_overlay_container,.et_pb_slide_1.et_pb_slide .et_pb_slide_overlay_container,.et_pb_slide_2.et_pb_slide .et_pb_slide_overlay_container,.et_pb_slide_3.et_pb_slide .et_pb_slide_overlay_container {
  background: linear-gradient(0deg,rgb(8 76 78) 0%,rgba(0,212,255,0) 100%);
  background-color: transparent!important
}

.et_pb_slide_description {
  max-width: 70%
}

h2.et_pb_slide_title {
  margin-bottom: 26px;
  font-weight: 800!important
}

.et_pb_slide_content {
  margin-bottom: 20px;
  font-size: 18px
}

.et_pb_more_button {
  background: #f99e25;
  border: none;
  border-radius: 21px
}

.et_pb_slide_description,.et_pb_slider_fullwidth_off .et_pb_slide_description {
  padding-top: 13%
}

.title {
  display: block;
  font-size: 15px
}

@media screen and (min-width: 400px) {
  .title {
      font-size:18.75px
  }
}

@media screen and (min-width: 550px) {
  .title {
      font-size:23.4375px
  }
}

.subtitle {
  font-size: 8px
}

@media screen and (min-width: 400px) {
  .subtitle {
      font-size:10px
  }
}

@media screen and (min-width: 550px) {
  .subtitle {
      font-size:12.5px
  }
}

[class*="top"] {
  top: 0
}

[class*="top"]>label {
  top: 22%
}

@media screen and (min-width: 400px) {
  [class*="top"]>label {
      top:23%
  }
}

@media screen and (min-width: 550px) {
  [class*="top"]>label {
      top:24%
  }
}

@media screen and (min-width: 700px) {
  [class*="top"]>label {
      top:25%
  }
}

[class*="left"] {
  left: 0
}

[class*="left"]>label {
  left: 12%
}

[class*="right"] {
  right: 0
}

[class*="right"]>label {
  right: 12%
}

[class*="bottom"] {
  bottom: 0
}

[class*="bottom"]>label {
  bottom: 22%
}

@media screen and (min-width: 400px) {
  [class*="bottom"]>label {
      bottom:23%
  }
}

@media screen and (min-width: 550px) {
  [class*="bottom"]>label {
      bottom:24%
  }
}

@media screen and (min-width: 700px) {
  [class*="bottom"]>label {
      bottom:25%
  }
}

[class*="center-left"] {
  top: 53%;
  left: 30%;
  margin-top: -26.73px
}

@media screen and (min-width: 400px) {
  [class*="center-left"] {
      top:52%
  }
}

[class*="center-right"] {
  top: 53%;
  right: 30%;
  margin-top: -26.73px
}

@media screen and (min-width: 400px) {
  [class*="center-right"] {
      top:52%
  }
}

[class*="center-x"] {
  left: 50%;
  margin-left: -30%
}

[class*="center-x"][class*="subcircle"] {
  margin-left: -7.5%
}

[class*="center-x"][class*="subcircle"]>label {
  top: auto;
  left: auto;
  margin-left: 0
}

[class*="center-x"]>label {
  left: 50%;
  margin-left: -18.18182%
}

[class*="center-x-y"] {
  top: 50%;
  left: 50%
}

[class*="center-x-y"][class*="subsubcircle"] {
  margin-top: -7%;
  margin-left: -2%
}

[class*="center-x-y"][class*="subsubcircle"]>label {
  top: auto;
  left: auto;
  margin-left: 0
}

.hidden-xs {
  display: none
}

@media screen and (min-width: 400px) {
  .hidden-xs {
      display:inline
  }
}

header.et-l.et-l--header {
  position: fixed;
  width: 100%;
  z-index: 99
}

div#et-main-area {
  padding-top: 80px!important;
}

body {
  margin: 0
}

.hero {
  position: relative;
  margin-top: 0px!important
}

.hero:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(99deg,rgb(34 69 76),rgb(0 58 69 / 26%));
  position: absolute;
  top: 0;
  left: 0
}

.hero__video {
  min-height: 678px!important;
}

.hero__content {
  max-width: 1200px;
  width: 100%;
  position: absolute;
  text-align: left;
  color: #ffffff;
  z-index: 1;
  top: 150px;
  left: 5%
}

.hero__title {
  font-size: 4.5em;
  font-weight: 900;
  position: relative;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff
}

.hero__subtitle {
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 2.5em;
  max-width: 86%
}

.hero .button {
  color: #ffffff;
  text-decoration: none;
  border: solid 1px #fff;
  padding: 1em 3em;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 14px;
  transition: all 250ms ease-out
}

.hero .button:hover {
  background-color: #fff;
  color: #333
}

div#top-3-cards {
  margin-top: -103px;
  z-index: 9;
  padding: 0px;
  padding-top: 0
}

#top-3-cards .et_pb_column {
  margin-right: 0;
  width: 33.3%;
  border-radius: 3px
}

#top-3-cards .et_pb_module.et_pb_promo {
}

#top-3-cards .et_pb_module.et_pb_promo .et_pb_promo_description {
  min-height: 195px
}

#top-3-cards .et_pb_module.et_pb_promo .et_pb_promo_description h2 {
  min-height: 77px;
  margin-top: 20px
}

#top-3-cards .et_pb_module.et_pb_cta_0 p {
  color: #f99e25
}

#top-3-cards .et_pb_module p {
  font-weight: bold;
  max-width: 78%;
  margin: 0 auto
}

.video-play-button {
  position: relative;
  z-index: 10;
  margin-top: -3px;
  left: 20px;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 22px;
  height: 34px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: #77c7d6;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: #4293a3;
  border-radius: 50%;
  transition: all 200ms
}

.video-play-button:hover:after {
  background-color: #da0528
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-top: 5px
}

@-webkit-keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0
  }
}

@keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0
  }
}

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  opacity: 0;
  transition: all ease 500ms;
  display: none
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
  display: block
}

.video-overlay-close {
  position: relative;
  display: inline-block;
  top: 30%;
  text-align: center;
  width: 100%;
  font-size: 18px;
  margin-top: 366px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms
}

.video-overlay-close:hover {
  color: #fa183d
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 0 15px rgba(0,0,0,0.75)
}

a.watch-video {
  color: #fff;
  position: absolute;
  margin-top: -85px;
  left: 65px
}

.banner-round-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  animation: bannerRound 35s linear infinite
}

@keyframes bannerRound {
  0% {
      transform: rotate(0deg)
  }

  100% {
      transform: rotate(360deg)
  }
}

.about-left-container {
  position: relative;
  margin-left: 50px;
  margin-top: 75px
}

.about-left-container::before {
  content: "";
  position: absolute;
  left: -67px;
  top: 94px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #EB9309;
  background: #EB9309;
  animation: color1 1s linear infinite alternate-reverse
}

@keyframes color1 {
  from {
      background-color: #ffffff
  }

  to {
      background-color: #EB9309
  }
}

.about-left-container::after {
  content: "";
  position: absolute;
  left: -37px;
  bottom: 43px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgb(127,180,50);
  animation: color2 1s linear infinite alternate-reverse;
  animation-delay: 1s
}

@keyframes color2 {
  from {
      background-color: #ffffff
  }

  to {
      background-color: rgb(127,180,50)
  }
}

.about-image {
  width: 521px;
  height: 552px;
  border-radius: 50%
}

.about-image-bottom {
  position: absolute;
  bottom: 49px;
  right: 128px;
  width: 248px;
  height: 227px;
  border-radius: 50%
}

.about-left-container img {
  max-width: 78%
}

.round-shape {
  position: absolute;
  left: -92px;
  top: 9px;
  z-index: -1;
  animation: bannerRound 35s linear infinite
}

.about-right-container {
  margin-left: 50px
}

.about-right-list ul {
  margin-top: 27px
}

.about-right-list ul li {
  font-weight: 500;
  font-size: 18px;
  line-height: 53px;
  color: #1F2230
}

.about-right-list ul li::before {
  content: '\2713';
  color: #EB9309;
  margin-right: 10px
}

.about-right-button-area {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px
}

.about-right-button-area .btn-1 {
  padding: 14px 42px
}

.about-right-mail {
  display: flex;
  align-items: center;
  gap: 15px
}

.about-right-mail .mail-icon {
  width: 60px;
  height: 60px;
  line-height: 63px;
  border-radius: 50%;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0px 5px 20px rgba(0,0,0,0.05)
}

.about-right-mail .mail-icon i {
  font-size: 24px;
  color: #EB9309
}

.about-right-mail .mail-info span {
  display: block;
  font-family: 'Open Sans';
  font-size: 16px;
  line-height: 29px;
  text-transform: capitalize;
  color: #88858E
}

.about-right-mail .mail-info a {
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  color: #1F2230
}

#step-1-section {
  margin-top: -135px;
  padding-top: 130px
}

.hero__title span {
  font-weight: 400!important;
  font-size: 50px;
  display: block
}

#dose-text {
  font-size: 16px
}

#dose-text strong {
  color: #64c9d1;
  font-size: 38px;
  font-weight: 900
}

#dose-text .blue {
  color: #64c9d1
}

#dose-heading .blue {
  color: #64c9d1!important
}

div#step-2-section {
  padding-bottom: 0!important;
  max-height: 775px
}

#video-hero {
  position: relative;
  z-index: 9
}

#top-3-cards .et_pb_module.et_pb_promo {
  min-height: 330px;
  height: 100%
}

.css-art--3-pie-venn-diagram[class] {
  font-size: 1rem
}

.css-art--3-pie-venn-diagram {
  position: relative;
  font-size: 1rem;
  width: 30em;
  margin: 0 auto;
  margin-top: -150px;
  margin-bottom: 80px
}

.css-art--pie {
  position: relative;
  box-sizing: border-box;
  padding: 0.5em 0 2em
}

.css-art--pie h3 {
  box-sizing: border-box;
  width: 100%;
  color: #ad3535
}

.css-art--pie,.pie-1-2-intersect,.pie-2-3-intersect,.pie-3-1-intersect,.pie-main-intersection {
  position: relative
}

.css-art--pie h3,.pie-1-2-intersect h3,.pie-2-3-intersect h3,.pie-3-1-intersect h3,.pie-main-intersection h3 {
  margin: 0 0 0.75em
}

.css-art--pie ul,.pie-1-2-intersect ul,.pie-2-3-intersect ul,.pie-3-1-intersect ul,.pie-main-intersection ul {
  margin: 0;
  padding: 0 0 0 1.5em
}

.css-art--pie li,.pie-1-2-intersect li,.pie-2-3-intersect li,.pie-3-1-intersect li,.pie-main-intersection li {
  margin: 0 0 0.25em;
  list-style-type: none
}

.css-art--pie:before,.pie-1-2-intersect:before,.pie-2-3-intersect:before,.pie-3-1-intersect:before,.pie-main-intersection:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0.5em;
  height: 100%;
  background: #be4c45
}

.css-art--pie-2:before {
  background: #2b929e
}

.css-art--pie-2 h3 {
  color: #338592
}

.css-art--pie-3:before {
  background: #dc9947
}

.css-art--pie-3 h3 {
  color: #c88533
}

.pie-1-2-intersect h3 {
  color: #40617f
}

.pie-1-2-intersect:before {
  background: #40617f
}

.pie-2-3-intersect h3 {
  color: #649540
}

.pie-2-3-intersect:before {
  background: #649540
}

.pie-3-1-intersect h3 {
  color: #bb5335
}

.pie-3-1-intersect:before {
  background: #c5674c
}

.pie-main-intersection h3 {
  color: #444
}

.pie-main-intersection:before {
  background: #444
}

@keyframes createBox {
  from {
      transform: scale(0)
  }

  to {
      transform: scale(1)
  }
}

@media (min-width: 51em) {
  .css-art--3-pie-venn-diagram {
      position:relative;
      font-size: 1rem;
      width: 60em;
      height: 60em
  }

  .css-art--3-pie-venn-diagram ul {
      padding-left: 1.125em
  }

  .css-art--3-pie-venn-diagram li {
      font-size: 0.875em;
      padding: 0 0 0.25em
  }

  .css-art--pie {
      position: absolute;
      z-index: 0;
      box-sizing: border-box;
      width: 31em;
      height: 30em;
      border-radius: 50%;
      background: rgba(173,53,45,0.7);
      color: #777
  }

  .css-art--pie:before {
      display: none
  }

  .css-art--pie h3 {
      position: absolute;
      top: 5em;
      margin-left: -96px;
      box-sizing: border-box;
      width: 100%
  }

  .css-art--pie ul {
      position: absolute;
      width: 9em;
      margin: 0 auto
  }

  .css-art--pie-1 {
      top: 25em;
      left: 1em;
      z-index: 1;
      background: #ffe4b28f
  }

  .css-art--pie-1 h3 {
      width: 70%;
      margin: 0 auto;
      margin-top: 70px;
      margin-left: 35px
  }

  .css-art--pie-1 p {
      position: relative;
      margin: 0 auto;
      max-width: 80%;
      margin-top: 226px;
      margin-left: 35px
  }

  .css-art--pie-1 ul {
      top: 4em;
      left: 2.5em
  }

  .css-art--pie-1 li:nth-child(2) {
      padding-right: 1em
  }

  .css-art--pie-1 li:nth-child(3) {
      padding-right: 2em
  }

  .css-art--pie-2 {
      top: 25em;
      right: 4em;
      background-color: #fcf6b1ad;
      z-index: 3
  }

  .css-art--pie-2 h3 {
      padding-right: 2em;
      color: #35a1ac;
      text-align: center;
      margin: 0 auto;
      margin-top: 71px
  }

  .css-art--pie-2 p {
      margin: 0 auto;
      margin-top: 226px;
      max-width: 70%
  }

  .css-art--pie-2 ul {
      top: 4em;
      right: 1em
  }

  .css-art--pie-2 li:nth-child(1) {
      padding-right: 2em
  }

  .css-art--pie-2 li:nth-child(2) {
      padding-right: 1em
  }

  .css-art--pie-3 {
      bottom: 22em;
      left: 13em;
      z-index: 0;
      background-color: #d5eef4
  }

  .css-art--pie-3 h3 {
      top: 115px;
      bottom: -3em;
      color: #f28d28;
      text-align: center;
      margin: 0 auto
  }

  .css-art--pie-3 p {
      position: relative;
      margin: 0 auto;
      max-width: 84%;
      margin-top: 140px
  }

  .css-art--pie-3 ul {
      top: 12em;
      left: 6em
  }

  .pie-1-2-intersect,.pie-2-3-intersect,.pie-3-1-intersect {
      position: absolute;
      z-index: 5;
      display: inline-block;
      max-width: 16em
  }

  .pie-1-2-intersect:before,.pie-1-2-intersect:after,.pie-2-3-intersect:before,.pie-2-3-intersect:after,.pie-3-1-intersect:before,.pie-3-1-intersect:after {
      content: "";
      position: absolute;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      display: block;
      background: transparent
  }

  .pie-1-2-intersect:after,.pie-2-3-intersect:after,.pie-3-1-intersect:after {
      width: 0.5em;
      height: 0.5em;
      border: 0.125rem solid #f0d9b8;
      border-radius: 50%
  }

  .pie-1-2-intersect h3,.pie-2-3-intersect h3,.pie-3-1-intersect h3 {
      position: absolute!important;
      clip: rect(1px 1px 1px 1px);
      clip: rect(1px,1px,1px,1px);
      overflow: hidden;
      height: 1px
  }

  .pie-1-2-intersect {
      left: 50%;
      transform: translate(-50%,0)
  }

  .pie-1-2-intersect:before {
      top: 100%;
      left: 50%;
      left: calc(50% - 0.0625rem);
      width: 0;
      height: 9em;
      border-left: 0.125rem solid #f0d9b8
  }

  .pie-1-2-intersect:after {
      top: calc(100% + 9em);
      left: 50%;
      transform: translate(-50%,0)
  }

  .pie-2-3-intersect {
      top: 36.5em;
      right: -142px;
      width: 13em;
      text-align: right
  }

  .pie-2-3-intersect:before {
      bottom: 100%;
      right: 50%;
      right: calc(50% - 0.0625rem);
      width: 12em;
      height: 3em;
      border-top: 0.125rem solid #f0d9b8;
      border-right: 0.125rem solid #f0d9b8
  }

  .pie-2-3-intersect:after {
      bottom: calc(100% + 3.0625em);
      right: calc(50% + 12em);
      transform: translate(0,50%)
  }

  .pie-2-3-intersect ul {
      display: inline-block;
      text-align: left
  }

  .pie-3-1-intersect {
      top: 36.5em;
      left: -208px;
      width: 13em
  }

  .pie-3-1-intersect:before {
      bottom: 100%;
      left: 50%;
      left: calc(50% - 0.0625rem);
      width: 12em;
      height: 3em;
      border-top: 0.125rem solid #f0d9b8;
      border-left: 0.125rem solid #f0d9b8
  }

  .pie-3-1-intersect:after {
      bottom: calc(100% + 3.0625em);
      left: calc(50% + 12em);
      transform: translate(0,50%)
  }

  .pie-main-intersection {
      font-size: 0.875em;
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 5;
      width: 8em;
      padding: 0;
      transform: translate(-50%,-50%) translate(0,-1.5em);
      text-align: center;
      color: #252626
  }

  .pie-main-intersection:before {
      display: none
  }

  .pie-main-intersection h3 {
      position: absolute!important;
      clip: rect(1px 1px 1px 1px);
      clip: rect(1px,1px,1px,1px);
      overflow: hidden;
      height: 1px
  }
}

.css-art--3-pie-venn-diagram ul {
  width: 11em
}

.mid-img img {
  margin-top: 60px;
  max-width: 50%;
  margin-left: -45px
}

.ven-overlay {
  margin-top: -10px;
  position: absolute;
  text-align: center;
  background: #d5eef4;
  width: 100%;
  border: solid 4px #fff;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  height: 0px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s cubic-bezier(0.68,-0.55,0.27,1.55)
}

.css-art--pie:hover .ven-overlay {
  opacity: 1;
  visibility: visible;
  height: 100%
}

.overlay-content {
  position: absolute;
  width: 100%;
  margin-top: 39%;
  cursor: pointer
}

.overlay-content a {
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  text-shadow: 0 0 2px #2ea3f2
}

.css-art--pie.css-art--pie-3:hover {
}

.css-art--pie-3:hover,.css-art--pie-2:hover,.css-art--pie-1:hover {
  z-index: 9
}

.css-art--pie-1 .ven-overlay {
  background: #f99e25
}

.css-art--pie-2 .ven-overlay {
  background: #fdea61
}

.css-art--pie-1 .overlay-content a {
  text-shadow: 0 0 2px #a66b1b
}

.css-art--pie-2 .overlay-content a {
  text-shadow: 0 0 2px #bba821
}

.cta-area .container {
  padding-top: 0px!important
}

.h3_about-area span.section-subtitle {
  display: block;
  color: #000;
  font-size: 36px;
  line-height: 40px;
  font-weight: 200;
  margin-top: 32px
}

.h5_blog-item {
  height: 100%;
  margin-bottom: 0!important;
  padding: 50px 50px 37px
}

.h5_blog-item p {
  min-height: 204px
}

a.h5_blog-btn {
  float: right
}

h5.h5_blog-content-title {
  min-height: 61px
}

.sample-holder {
  text-align: center!important
}

.sample-holder .et_pb_text_inner {
  margin-bottom: 27px
}

.sample-holder .et_pb_text_inner p {
  margin-bottom: 12px
}

.et_pb_section_1.et_pb_section {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ecf5f7!important
}

.et_pb_row_0.et_pb_row {
  padding-bottom: 0px!important;
  margin-bottom: 0px!important;
  padding-bottom: 0px
}

.et_pb_section_2.et_pb_section {
  background-color: #ecf5f7!important
}

.et_pb_row_1,body #page-container .et-db #et-boc .et-l .et_pb_row_1.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_1.et_pb_row {
  width: 100%;
  max-width: none
}

.et_pb_row_1 {
  padding-top: 0px
}

.et_pb_section_3.et_pb_section {
  margin-top: 93px
}

.et_pb_row_2.et_pb_row {
  margin-top: -100px!important
}

.et_pb_row_2,body #page-container .et-db #et-boc .et-l .et_pb_row_2.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_2.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_2.et_pb_row,.et_pb_row_3,body #page-container .et-db #et-boc .et-l .et_pb_row_3.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_3.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_3.et_pb_row,.et_pb_row_4,body #page-container .et-db #et-boc .et-l .et_pb_row_4.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_4.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_4.et_pb_row,.et_pb_row_5,body #page-container .et-db #et-boc .et-l .et_pb_row_5.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_5.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_5.et_pb_row,.et_pb_row_6,body #page-container .et-db #et-boc .et-l .et_pb_row_6.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_6.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_6.et_pb_row,.et_pb_row_7,body #page-container .et-db #et-boc .et-l .et_pb_row_7.et_pb_row,body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_7.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_7.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_292138_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_292138_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_292138_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_292138_1.et_pb_row {
  width: 100%;
  max-width: 100%
}

.et_pb_section_4.et_pb_section {
  padding-top: 0px
}

.et_pb_section_5.et_pb_section {
  padding-top: 0px;
  margin-top: -55px;
  background-color: #f1fdff!important
}

.et_pb_section_6.et_pb_section,.et_pb_section_7.et_pb_section,.et_pb_section_8.et_pb_section {
  padding-top: 0rem;
  padding-bottom: 0rem
}

.et-db #et-boc .et-l .et_pb_section_dap_287635_0,.et-db #et-boc .et-l .et_pb_section_dap_287674_0,.et-db #et-boc .et-l .et_pb_section_dap_287899_0,.et-db #et-boc .et-l .et_pb_section_dap_287912_0,.et-db #et-boc .et-l .et_pb_section_dap_287920_0,.et-db #et-boc .et-l .et_pb_section_dap_287929_0,.et-db #et-boc .et-l .et_pb_section_dap_287943_0,.et-db #et-boc .et-l .et_pb_section_dap_287950_0,.et-db #et-boc .et-l .et_pb_section_dap_287958_0,.et-db #et-boc .et-l .et_pb_section_dap_287969_0,.et-db #et-boc .et-l .et_pb_section_dap_287980_0 {
  max-height: 1000px
}

.et-db #et-boc .et-l .et_pb_section_dap_287635_0.et_pb_section,.et-db #et-boc .et-l .et_pb_section_dap_287674_0.et_pb_section,.et-db #et-boc .et-l .et_pb_section_dap_287899_0.et_pb_section,.et-db #et-boc .et-l .et_pb_section_dap_287912_0.et_pb_section,.et-db #et-boc .et-l .et_pb_section_dap_287920_0.et_pb_section,.et-db #et-boc .et-l .et_pb_section_dap_287929_0.et_pb_section,.et-db #et-boc .et-l .et_pb_section_dap_287943_0.et_pb_section,.et-db #et-boc .et-l .et_pb_section_dap_287950_0.et_pb_section,.et-db #et-boc .et-l .et_pb_section_dap_287958_0.et_pb_section,.et-db #et-boc .et-l .et_pb_section_dap_287969_0.et_pb_section,.et-db #et-boc .et-l .et_pb_section_dap_287980_0.et_pb_section {
  padding-top: 0px;
  padding-bottom: 0px
}

.et-db #et-boc .et-l .et_pb_row_dap_287635_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287674_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287899_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287912_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287920_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287929_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287943_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287950_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287958_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287969_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287980_1.et_pb_row {
  padding-top: 0px!important;
  padding-bottom: 0px!important;
  margin-top: 0px!important;
  margin-bottom: 0px!important;
  padding-top: 0px;
  padding-bottom: 0px
}

.et-db #et-boc .et-l .et_pb_row_dap_287635_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287635_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287635_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287635_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287674_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287674_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287674_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287674_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287899_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287899_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287899_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287899_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287912_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287912_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287912_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287912_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287920_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287920_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287920_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287920_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287929_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287929_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287929_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287929_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287943_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287943_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287943_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287943_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287950_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287950_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287950_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287950_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287958_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287958_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287958_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287958_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287969_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287969_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287969_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287969_1.et_pb_row,.et-db #et-boc .et-l .et_pb_row_dap_287980_1,body.et-db #page-container .et-db #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287980_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287980_1.et_pb_row,body.et_pb_pagebuilder_layout.single.et_full_width_page.et-db #page-container #et-boc .et-l #et-boc .et-l .et_pb_row_dap_287980_1.et_pb_row {
  width: 100%
}

.et-db #et-boc .et-l .et_pb_image_dap_287635_3,.et-db #et-boc .et-l .et_pb_image_dap_287912_3,.et-db #et-boc .et-l .et_pb_image_dap_287969_3,.et-db #et-boc .et-l .et_pb_image_dap_287980_3,.et-db #et-boc .et-l .et_pb_image_dap_292138_3,.et-db #et-boc .et-l .et_pb_image_dap_292138_7,.et-db #et-boc .et-l .et_pb_image_dap_292138_11 {
  text-align: left;
  margin-left: 0
}

.et-db #et-boc .et-l .et_pb_image_dap_287635_5 .et_pb_image_wrap,.et-db #et-boc .et-l .et_pb_image_dap_287674_5 .et_pb_image_wrap,.et-db #et-boc .et-l .et_pb_image_dap_287920_5 .et_pb_image_wrap {
  border-width: 3px
}

.et-db #et-boc .et-l .et_pb_image_dap_287635_5 {
  padding-top: 1rem;
  max-width: 95%;
  text-align: left;
  margin-left: 0
}

.et-db #et-boc .et-l .et_pb_text_dap_287635_6,.et-db #et-boc .et-l .et_pb_text_dap_287920_6 {
  font-size: 19px;
  margin-bottom: 1rem!important
}

.et-db #et-boc .et-l .et_pb_button_dap_287635_7_wrapper .et_pb_button_dap_287635_7,.et-db #et-boc .et-l .et_pb_button_dap_287635_7_wrapper .et_pb_button_dap_287635_7:hover,.et-db #et-boc .et-l .et_pb_button_dap_287674_7_wrapper .et_pb_button_dap_287674_7,.et-db #et-boc .et-l .et_pb_button_dap_287674_7_wrapper .et_pb_button_dap_287674_7:hover,.et-db #et-boc .et-l .et_pb_button_dap_287899_6_wrapper .et_pb_button_dap_287899_6,.et-db #et-boc .et-l .et_pb_button_dap_287899_6_wrapper .et_pb_button_dap_287899_6:hover,.et-db #et-boc .et-l .et_pb_button_dap_287912_6_wrapper .et_pb_button_dap_287912_6,.et-db #et-boc .et-l .et_pb_button_dap_287912_6_wrapper .et_pb_button_dap_287912_6:hover,.et-db #et-boc .et-l .et_pb_button_dap_287920_7_wrapper .et_pb_button_dap_287920_7,.et-db #et-boc .et-l .et_pb_button_dap_287920_7_wrapper .et_pb_button_dap_287920_7:hover,.et-db #et-boc .et-l .et_pb_button_dap_287929_6_wrapper .et_pb_button_dap_287929_6,.et-db #et-boc .et-l .et_pb_button_dap_287929_6_wrapper .et_pb_button_dap_287929_6:hover,.et-db #et-boc .et-l .et_pb_button_dap_287943_6_wrapper .et_pb_button_dap_287943_6,.et-db #et-boc .et-l .et_pb_button_dap_287943_6_wrapper .et_pb_button_dap_287943_6:hover,.et-db #et-boc .et-l .et_pb_button_dap_287950_6_wrapper .et_pb_button_dap_287950_6,.et-db #et-boc .et-l .et_pb_button_dap_287950_6_wrapper .et_pb_button_dap_287950_6:hover,.et-db #et-boc .et-l .et_pb_button_dap_287958_6_wrapper .et_pb_button_dap_287958_6,.et-db #et-boc .et-l .et_pb_button_dap_287958_6_wrapper .et_pb_button_dap_287958_6:hover,.et-db #et-boc .et-l .et_pb_button_dap_287969_6_wrapper .et_pb_button_dap_287969_6,.et-db #et-boc .et-l .et_pb_button_dap_287969_6_wrapper .et_pb_button_dap_287969_6:hover,.et-db #et-boc .et-l .et_pb_button_dap_287980_6_wrapper .et_pb_button_dap_287980_6,.et-db #et-boc .et-l .et_pb_button_dap_287980_6_wrapper .et_pb_button_dap_287980_6:hover {
  padding-right: 5rem!important;
  padding-left: 5rem!important
}

.et-db #et-boc .et-l .et_pb_button_dap_287635_7_wrapper,.et-db #et-boc .et-l .et_pb_button_dap_287674_7_wrapper,.et-db #et-boc .et-l .et_pb_button_dap_287899_6_wrapper,.et-db #et-boc .et-l .et_pb_button_dap_287912_6_wrapper,.et-db #et-boc .et-l .et_pb_button_dap_287929_6_wrapper,.et-db #et-boc .et-l .et_pb_button_dap_287943_6_wrapper,.et-db #et-boc .et-l .et_pb_button_dap_287950_6_wrapper,.et-db #et-boc .et-l .et_pb_button_dap_287958_6_wrapper,.et-db #et-boc .et-l .et_pb_button_dap_287969_6_wrapper,.et-db #et-boc .et-l .et_pb_button_dap_287980_6_wrapper {
  margin-bottom: 14px!important
}

body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287635_7,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287674_7,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287899_6,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287912_6,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287920_7,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287929_6,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287943_6,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287950_6,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287958_6,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287969_6,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287980_6 {
  color: #FFFFFF!important;
  border-color: #F99E24;
  border-radius: 90px;
  font-size: 20px;
  font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important;
  font-weight: 700!important;
  background-color: #F99E24
}

body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287635_7:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287635_7:after,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287674_7:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287674_7:after,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287899_6:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287899_6:after,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287912_6:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287912_6:after,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287920_7:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287920_7:after,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287929_6:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287929_6:after,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287943_6:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287943_6:after,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287950_6:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287950_6:after,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287958_6:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287958_6:after,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287969_6:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287969_6:after,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287980_6:before,body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_dap_287980_6:after {
  display: none!important
}

.et-db #et-boc .et-l .et_pb_button_dap_287635_7,.et-db #et-boc .et-l .et_pb_button_dap_287635_7:after,.et-db #et-boc .et-l .et_pb_button_dap_287674_7,.et-db #et-boc .et-l .et_pb_button_dap_287674_7:after,.et-db #et-boc .et-l .et_pb_button_dap_287899_6,.et-db #et-boc .et-l .et_pb_button_dap_287899_6:after,.et-db #et-boc .et-l .et_pb_button_dap_287912_6,.et-db #et-boc .et-l .et_pb_button_dap_287912_6:after,.et-db #et-boc .et-l .et_pb_button_dap_287920_7,.et-db #et-boc .et-l .et_pb_button_dap_287920_7:after,.et-db #et-boc .et-l .et_pb_button_dap_287929_6,.et-db #et-boc .et-l .et_pb_button_dap_287929_6:after,.et-db #et-boc .et-l .et_pb_button_dap_287943_6,.et-db #et-boc .et-l .et_pb_button_dap_287943_6:after,.et-db #et-boc .et-l .et_pb_button_dap_287950_6,.et-db #et-boc .et-l .et_pb_button_dap_287950_6:after,.et-db #et-boc .et-l .et_pb_button_dap_287958_6,.et-db #et-boc .et-l .et_pb_button_dap_287958_6:after,.et-db #et-boc .et-l .et_pb_button_dap_287969_6,.et-db #et-boc .et-l .et_pb_button_dap_287969_6:after,.et-db #et-boc .et-l .et_pb_button_dap_287980_6,.et-db #et-boc .et-l .et_pb_button_dap_287980_6:after {
  transition: all 300ms ease 0ms
}

.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287635'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287674'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287912'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287920'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287929'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287943'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287950'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287958'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287969'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287980'] {
  max-width: 800px
}

.et-db #et-boc .et-l .et_pb_image_dap_287674_3,.et-db #et-boc .et-l .et_pb_image_dap_287899_3,.et-db #et-boc .et-l .et_pb_image_dap_287920_3,.et-db #et-boc .et-l .et_pb_image_dap_287929_3,.et-db #et-boc .et-l .et_pb_image_dap_287943_3,.et-db #et-boc .et-l .et_pb_image_dap_287950_3,.et-db #et-boc .et-l .et_pb_image_dap_287958_3 {
  text-align: center
}

.et-db #et-boc .et-l .et_pb_image_dap_287674_5 {
  padding-top: 1rem;
  text-align: left;
  margin-left: 0
}

.et-db #et-boc .et-l .et_pb_text_dap_287674_6 {
  font-size: 19px;
  padding-bottom: 1rem!important
}

.et-db #et-boc .et-l .et_pb_text_dap_287899_5 {
  font-size: 19px;
  margin-top: 2rem!important;
  margin-bottom: 2rem!important
}

.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-287899'] {
  width: 800px
}

.et-db #et-boc .et-l .et_pb_text_dap_287912_5,.et-db #et-boc .et-l .et_pb_text_dap_287929_5,.et-db #et-boc .et-l .et_pb_text_dap_287943_5,.et-db #et-boc .et-l .et_pb_text_dap_287950_5,.et-db #et-boc .et-l .et_pb_text_dap_287958_5,.et-db #et-boc .et-l .et_pb_text_dap_287969_5,.et-db #et-boc .et-l .et_pb_text_dap_287980_5 {
  font-size: 19px;
  margin-top: 1rem!important;
  margin-bottom: 2rem!important
}

.et-db #et-boc .et-l .et_pb_image_dap_287920_5 {
  padding-top: 1rem;
  max-width: 90%;
  text-align: center
}

.et-db #et-boc .et-l .et_pb_section_dap_289256_0,.et-db #et-boc .et-l .et_pb_section_dap_289271_0,.et-db #et-boc .et-l .et_pb_section_dap_289282_0,.et-db #et-boc .et-l .et_pb_section_dap_289287_0 {
  border-radius: 20px 20px 20px 20px;
  overflow: hidden;
  border-width: 3px;
  border-color: #78C7D6
}

.et-db #et-boc .et-l .et_pb_text_dap_289256_3,.et-db #et-boc .et-l .et_pb_text_dap_289271_3,.et-db #et-boc .et-l .et_pb_text_dap_289282_3,.et-db #et-boc .et-l .et_pb_text_dap_289287_3 {
  line-height: 1.6em;
  font-size: 16px;
  line-height: 1.6em
}

.et-db #et-boc .et-l .et_pb_text_dap_289256_3 h3,.et-db #et-boc .et-l .et_pb_text_dap_289271_3 h3,.et-db #et-boc .et-l .et_pb_text_dap_289282_3 h3,.et-db #et-boc .et-l .et_pb_text_dap_289287_3 h3 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2em
}

.et-db #et-boc .et-l .et_pb_text_dap_289256_3 h4,.et-db #et-boc .et-l .et_pb_text_dap_289271_3 h4,.et-db #et-boc .et-l .et_pb_text_dap_289282_3 h4,.et-db #et-boc .et-l .et_pb_text_dap_289287_3 h4 {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3em
}

.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-289256'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-289271'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-289282'],.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-289287'] {
  max-width: 600px
}

.et-db #et-boc .et-l .et_pb_section_dap_292138_0 {
  border-color: RGBA(255,255,255,0)
}

.et-db #et-boc .et-l .et_pb_section_dap_292138_0.et_pb_section {
  background-color: RGBA(255,255,255,0)!important
}

.et-db #et-boc .et-l .area-outer-wrap[data-da-area='divi-area-292138'] {
  max-width: 928px
}

.et-db #et-boc .et-l .et_pb_column_dap_287635_4,.et-db #et-boc .et-l .et_pb_column_dap_287674_4,.et-db #et-boc .et-l .et_pb_column_dap_287899_4,.et-db #et-boc .et-l .et_pb_column_dap_287912_4,.et-db #et-boc .et-l .et_pb_column_dap_287920_4,.et-db #et-boc .et-l .et_pb_column_dap_287929_4,.et-db #et-boc .et-l .et_pb_column_dap_287943_4,.et-db #et-boc .et-l .et_pb_column_dap_287950_4,.et-db #et-boc .et-l .et_pb_column_dap_287958_4,.et-db #et-boc .et-l .et_pb_column_dap_287969_4,.et-db #et-boc .et-l .et_pb_column_dap_287980_4 {
  padding-right: 4rem
}

.et-db #et-boc .et-l .et_pb_column_dap_292138_2,.et-db #et-boc .et-l .et_pb_column_dap_292138_6,.et-db #et-boc .et-l .et_pb_column_dap_292138_10 {
  background-color: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  overflow: hidden;
  box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.3)
}

@media only screen and (max-width: 980px) {
  .et_pb_section_6.et_pb_section,.et_pb_section_7.et_pb_section,.et_pb_section_8.et_pb_section {
      padding-top:5rem;
      padding-bottom: 5rem
  }

  .et-db #et-boc .et-l .et_pb_image_dap_287635_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287635_5 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287674_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287674_5 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287899_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287912_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287920_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287920_5 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287929_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287943_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287950_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287958_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287969_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287980_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_292138_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_292138_7 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_292138_11 .et_pb_image_wrap img {
      width: auto
  }

  .et-db #et-boc .et-l .et_pb_image_dap_287635_5 {
      padding-top: 0rem;
      text-align: center;
      margin-left: auto;
      margin-right: auto
  }

  .et-db #et-boc .et-l .et_pb_text_dap_287635_6 {
      margin-bottom: 1rem!important;
      margin-left: 5rem!important
  }

  .et-db #et-boc .et-l .et_pb_image_dap_287674_5 {
      padding-top: 0rem;
      margin-left: 3rem!important;
      text-align: center;
      margin-left: auto;
      margin-right: auto
  }

  .et-db #et-boc .et-l .et_pb_text_dap_287674_6 {
      margin-left: 5rem!important
  }

  .et-db #et-boc .et-l .et_pb_text_dap_287899_5 {
      margin-top: 2rem!important;
      margin-bottom: 2rem!important;
      margin-left: 5rem!important
  }

  .et-db #et-boc .et-l .et_pb_text_dap_287912_5,.et-db #et-boc .et-l .et_pb_text_dap_287929_5,.et-db #et-boc .et-l .et_pb_text_dap_287943_5,.et-db #et-boc .et-l .et_pb_text_dap_287950_5 {
      margin-top: 1rem!important;
      margin-bottom: 2rem!important;
      margin-left: 5rem!important
  }

  .et-db #et-boc .et-l .et_pb_image_dap_287920_5 {
      padding-top: 0rem;
      margin-left: 4rem!important
  }

  .et-db #et-boc .et-l .et_pb_text_dap_287920_6 {
      margin-bottom: 2rem!important;
      margin-left: 5rem!important
  }

  .et-db #et-boc .et-l .et_pb_text_dap_287958_5,.et-db #et-boc .et-l .et_pb_text_dap_287969_5 {
      font-size: 18px
  }

  .et-db #et-boc .et-l .et_pb_image_dap_287969_3,.et-db #et-boc .et-l .et_pb_image_dap_287980_3 {
      text-align: center;
      margin-left: auto;
      margin-right: auto
  }

  .et-db #et-boc .et-l .et_pb_text_dap_287980_5 {
      font-size: 18px;
      margin-top: 1rem!important;
      margin-bottom: 1rem!important;
      margin-left: 5rem!important
  }
}

@media only screen and (max-width: 767px) {
  .et_pb_section_6.et_pb_section,.et_pb_section_7.et_pb_section,.et_pb_section_8.et_pb_section {
      padding-top:2rem;
      padding-bottom: 2rem
  }

  .et-db #et-boc .et-l .et_pb_image_dap_287635_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287635_5 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287674_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287674_5 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287899_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287912_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287920_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287920_5 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287929_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287943_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287950_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287958_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287969_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_287980_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_292138_3 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_292138_7 .et_pb_image_wrap img,.et-db #et-boc .et-l .et_pb_image_dap_292138_11 .et_pb_image_wrap img {
      width: auto
  }

  .et-db #et-boc .et-l .et_pb_image_dap_287635_5 {
      padding-top: 0rem
  }

  .et-db #et-boc .et-l .et_pb_text_dap_287635_6,.et-db #et-boc .et-l .et_pb_text_dap_287674_6,.et-db #et-boc .et-l .et_pb_text_dap_287899_5,.et-db #et-boc .et-l .et_pb_text_dap_287912_5,.et-db #et-boc .et-l .et_pb_text_dap_287920_6,.et-db #et-boc .et-l .et_pb_text_dap_287929_5,.et-db #et-boc .et-l .et_pb_text_dap_287943_5,.et-db #et-boc .et-l .et_pb_text_dap_287950_5 {
      margin-left: 2rem!important
  }

  .et-db #et-boc .et-l .et_pb_image_dap_287674_5 {
      padding-top: 0rem;
      margin-left: 3rem!important
  }

  .et-db #et-boc .et-l .et_pb_image_dap_287920_5 {
      padding-top: 0rem;
      margin-left: 4rem!important
  }

  .et-db #et-boc .et-l .et_pb_text_dap_287958_5,.et-db #et-boc .et-l .et_pb_text_dap_287969_5 {
      font-size: 18px
  }

  .et-db #et-boc .et-l .et_pb_text_dap_287980_5 {
      font-size: 18px;
      margin-left: 2rem!important
  }
}
.page .entry-content {
  padding-top: 0px!important;
}
.area-outer-wrap .da-close {
  font-size:32px;
  }
  
  .pa-inline-buttons .et_pb_button_module_wrapper {
      display: inline-block;
  }
  
  .single_add_to_cart_button, .button {
    border-color: #F99E24 !important;
      border-radius: 90px !important;
      font-size: 18px !important;
      font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important;
      font-weight: 700!important;
      background-color: #F99E24 !important;
    color: #fff !important;
  }
  
  .nav li li {
      line-height: 1.3em!important;
  }
  
  .et-menu li li.menu-item-has-children>a:first-child:after {
      top: 6px!important;
    right: 0px!important;
  }
  .mec-container h1 {
      font-size: 49px !important;
      font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important;
      font-weight: 600!important;
    color: #78C7D6 !important;
    padding-top: 52px;
    padding-bottom: 22px;
  }
  h3.mec-event-title {
      font-size: 29px !important;
      font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important;
      font-weight: 600!important;
    color: #333333 !important;
  }
  .mec-event-description {
      font-family: 'Quicksand',Helvetica,Arial,Lucida,sans-serif!important;
  }
  #top-about .menu-item {padding: 1px 16px;border-radius: 29px;border: none;}
  
  #top-about .menu-item a {background: none;}
  
  #top-about ul {
      background: #fdea5f;
      border-radius: 29px;
      font-weight: bold;
      border: none;
      background-image: none;
  }
  
  #top-about .sub-menu {
      position: absolute;
      z-index: 999;
  }
  
  #top-about ul li {
      background: none;
      border: none;
  }
  
  
  #top-about nav {
      background: #77c7d6!important;
  }
  .et_pb_section.et_pb_section_0_tb_header.et_pb_with_background.et_section_regular.et_pb_section--with-menu {
      position: relative;
      z-index: 99;
  }
  #top-about .sub-menu {
      border-radius: 0;
      position: absolute!important;
      z-index: 999!important;
      border-top: solid 5px #77c7d6;
  }
  #top-about .sub-menu a:hover {
    
      opacity: 1;
  }
  .smooth-scroll:hover a {color:#fff}
  #top-about ul li:hover a {
      color: #00000099;
  }
  
  #top-about .sub-menu li:hover {
      background: #49a9b7;
      border-radius: 0;
    cursor:pointer;
  }
  
  #top-about .sub-menu li:hover a {
      color: #fff;
  }
  
  #top-about .sub-menu li {
      padding: 15px 10px!important;
    cursor:pointer;
  }
  
  #top-about .sub-menu li a {
      color: #00000099;
  }
  
  #top-about .sub-menu li:hover a {
      color: #fff!important;
    background:transparent;
    background-color:transparent;
  }
  ul#menu-about .current_page_parent {
      text-decoration: none;
  }
  #top-about .current-selected-section {
      background: #49a9b7;
      border-radius: 0;
  }
  
  #top-about .current-selected-section a {
      color: #fff;
  }
  #top-about li:hover .current-selected-section a {
      color: #fff;
  }
  .footer-links li.current-selected-section {
      background: none;
  }
  
  .footer-links li.current-selected-section a {
      color: #fff!important;
  }
  
  .footer-links li:hover a {
      color: #fff!important;
      cursor: pointer;
  }
  footer p {
    color: #fff;
    font-size: 16px!important;
  }
  p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000;
  }
  div#sticky-nav {
      position: relative;
      z-index: 4;
  }
  p.section-text {
      color: #000!important;
  }
  .section-area-3 .section-subtitle {
      color: #000000;
  }
  li.current-selected-section {
    background-color: #49a9b7;
      color: #fff;
  }
  li.current-selected-section a {
      color:#fff;
  }
  
  
  ul.sub-menu li {
      padding: 9px 4px!important;
    cursor:pointer;
  }
  ul.sub-menu li:hover {
      background-color: #49a9b7;
      color: #fff;
  }
  ul.sub-menu li:hove a {
    background:transparent;
    opacity:1;
  color:#fff!important
  }
  .et_mobile_menu li a:hover, .nav ul li a:hover{
    background-color:transparent;
    opacity:1;
  }
  .current_page_parent {
      text-decoration: underline;
      text-decoration-color: #96dce8;
      text-decoration-thickness: 6px;
  }
  .rounded-img img{
      border-radius: 20px;
     
  }
  .rounded-img figure {
       border-radius: 20px;
       box-shadow: 1px 1px 11px 1px #00000059;
  }
  .rounded-img {max-width:70%; margin:0 auto}
  .collapsed-award {
    height:0px; 
    overflow:hidden;
      transform: scaleY(0);    
    transform-origin: top;
    transition: all 0.26s ease;
    padding:0!important;
  }
  
  .collapsed-award.open-award{
       transform: scaleY(1);
    height:auto;
    padding: 54px 0!important;
      
  }
  #curriculum-overview .dnxte-feature-list-wrap.left.dnxte_feature_list_image_position_center {
      background: #fff;
      border-radius: 14px;
      box-shadow: 1px 3px 8px #d2d2d2;
  }
  
  #curriculum-overview .dnxte-feature-list-img {
      padding: 31px 20px;
      background: #77c7d7;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
  }
  .full-width-buttons a.et_pb_button {
      width: 100%!important;
  }
  /**Sticky header **/
  header.et-l.et-l--header {
      position: fixed;
      width: 100%;
      z-index: 99;
  }
  
  
  /**Sticky header **/
  .blue-strong strong 
  {
    color:#66c9e0;
  }
  #training-bios img {
      border-radius: 20px;
      /* box-shadow: 1px 6px 19px 5px #000; */
  }
  
  #training-bios .awsm-team-link-control {box-shadow: 0px 6px 17px 0px #dbdbdb;border-radius: 20px;}
  .awsm-grid-navigation .awsm-team-link-control {
      box-shadow: none!important;
  }
  .drawer-style.style-2>.awsm-grid-card {
      padding: 13px !important;
  }
  div#prof-dev strong {
      font-weight: bolder;
      font-size: 15px;
  }
  
  div#prof-dev b {
      font-size: 18px;
      font-weight: bold;
      /* font-family: 'sans-serif'; */
      color: #000;
  }
  ol.c-navigation-breadcrumbs__directory a {
      color: #fff;
  }
  
  
  #sticky-nav{
     padding-top: 39px;
  }
  
  nav.c-navigation-breadcrumbs {
      margin-top: -36px;
  }
  
  ol.c-navigation-breadcrumbs__directory li {
      list-style-type: none;
  }
  span.u-visually-hidden {
      text-indent: -100px;
      overflow: hidden;
      content: unset!important;
      margin: 0 8px!important;
      margin-top: -10px!important;
      line-height: 9px;
  }
  
  li.c-navigation-breadcrumbs__item:after {
      display: none!important;
  }
  
  li.c-navigation-breadcrumbs__item:last-child a {
      text-decoration: underline!important;
  }
  li.c-navigation-breadcrumbs__item i {
      margin-left: 10px;
      margin-right: 10px;
      font-weight: 800;
  }
  #menu-main-menu > li.et_pb_menu_page_id-291535.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-291628 {
      display: none;
  }
  #mobile_menu2 > li.et_pb_menu_page_id-291535.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-291628 {
      display: none;
  }
  #sticky-nav {
      padding-top: 39px!important;
  }
  .h5_blog-item.pod-item.mb-30 {
      height: 301px;
      border-radius: 20px;
        box-shadow: 2px 5px 5px #0000000f;
  }
  
  a.h5_blog-btn.podcastbutton {
      background: #1ed760;
      padding: 12px 25px;
      border-radius: 50%;
      margin-top: 39%;
      margin-right: 73px;
      box-shadow: 1px 1px 8px 0px #c6c6c69c;
  }
  
  a.h5_blog-btn.podcastbutton svg {
      margin-left: -13px;
      /* color: #fff; */
  }
  .home .entry-content {
    padding-top: 0px!important;
}
.page #main-content .et_pb_row {
  width: 80%!important;
  max-width: 1080px!important;
}
.home #main-content .et_pb_row {
  width: 100%!important;
  max-width: 100%!important;
}
.home #main-content .et_pb_row-content {
  width: 100%!important;
 
}
.page-template-default #main-content .et_pb_row {
    width: 80%;
    /* max-width: 1080px!important; */
}