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

	Template Name: Bastun - Business Consulting HTML Template
    Author: Techboot
    Support: techbootmail@gmail.com
    Description: Bastun - Business Consulting HTML Template
    Version: 1.0.0

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

	Start Style sheet Indexing
	|
	|___ Default Styles
	|	|
	|	|___ Variables
	|	|___ Mixins
	|	|___ Reset
	|	|___ Typography
	|	|___ Extend
	|	|___ Animations
	|	|___ Short Code
	|	|___ Spacing
	|
	|
	|___Header Styles
	|	|___ header
	|	|___ main_menu
    |	|___ mobile_menu
	|
	|
	|___Section Styles
	|	|___ Hero Banner 
	|	|___ Education 
	|	|___ Training
	|	|___ About
	|	|___ Popular
	|	|___ Grid
	|	|___ Event
	|	|___ Register
	|	|___ testimonial
	|	|___ Counter
	|	|___ Team
	|
	|___Page Styles
	|	|___ Instructor 
	|	|___ Blog 
	|	|___ Course 
	|	|___ Contact 
	|	|___ Error 
	|	|___ Breadcrumb 
	|
	|___Footer Styles
	|	|___ Footer 
	|	|___ Copyright
	|
	|___Light/Dark Styles
	|	|___ Light/Dark 
	|
	|___ End Style Sheet Indexing

***************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700&display=swap");
:root {
  --bodyColor: #222222;
  --bodyBg: #fff;
  --whiteColor: #ffffff;
  --blackColor: #2489b5;
  --blackBlue: #0071bc;
  --headingColor: #0071bc;
  --contentColor: #68686b;
  --primaryColor: #19c1e1;
  --secondaryColor: #0071bc;
  --greyColor: #EDEDED;
  --borderColor: #eeeeee;
  --borderColor2: #0071bc;
  --borderColor3: #ccc;
  --navyBlue:#2489b5;
  --navyBlue2:#07467f;
  --pinkcolor:#ffffff;
  --violet:#e23e8f;
  --yellow: #e23e8f;
  --gradientColor: linear-gradient(90deg, #2ddce0 0%, #2489b5 47.92%, #69edff 100%);
  --gradientColor2:linear-gradient(180deg, rgba(232, 86, 163, 0.00) 0%, #e869ac 100%);
  --gradientColor3: linear-gradient(90deg, #7b7b7c 0%, rgba(90, 90, 90, 0.00) 100%);
  --borderRadius: 8px;
  --borderRadius2: 5px;
  --transition: .3s;
  --bodyFont: "Inter", sans-serif;
  --headingFont: "Inter", sans-serif;
  --contentFont: "Inter", sans-serif;
  --buttonFont: "Source Sans Pro";
}

.is_dark {
  --bodyColor: #fff;
  --bodyBg: #07467f;
  --headingColor: #fff;
  --contentColor: #fff;
  --blackColor: #fff;
  --whiteColor: #19c1e1;
  --borderColor: #07467f;
  --borderColor2: #19c1e1;
  --darkShadow: 0 0 20px 5px rgba(95, 45, 237, 0.1);
  --pinkcolor:#07467f;
  --blackBlue:#fff;
  --navyBlue2: #fff ;
}

/*------------------------------
Default CSS
-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--bodyFont);
  background-color: var(--bodyBg);
  font-size: 17px;
  font-weight: 400;
  line-height: 32px;
  position: relative;
}

p {
  font-size: 17px;
  margin-bottom: 15px;
  color: var(--contentColor);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

p,
a,
.btn,
button,
p,
input,
select,
textarea,
li,
img {
  -webkit-transition: all var(--transition) ease-out 0s;
  -moz-transition: all var(--transition) ease-out 0s;
  -ms-transition: all var(--transition) ease-out 0s;
  -o-transition: all var(--transition) ease-out 0s;
  transition: all var(--transition) ease-out 0s;
}

a {
  color: var(--contentColor);
}

a:hover {
  color: var(--primaryColor);
}

input:focus-visible {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--headingColor);
  font-family: var(--headingFont);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--headingFont);
  color: var(--blackColor);
}

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

li {
  list-style: none;
  display: inline-block;
}

@media (min-width: 1500px) and (max-width: 1920px) {
  .container {
    max-width: 1355px;
  }
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: var(--bs-gutter-x, 0.9375rem);
  padding-left: var(--bs-gutter-x, 0.9375rem);
  --bs-gutter-x: 1.094rem;
}

.container-fluid.full__width__padding {
  padding: 0 125px;
}
@media (min-width: 1500px) and (max-width: 1920px) {
  .container-fluid.full__width__padding {
    padding: 0 150px;
  }
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .container-fluid.full__width__padding {
    padding: 0 50px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .container-fluid.full__width__padding {
    padding: 0 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container-fluid.full__width__padding {
    padding: 0 25px;
  }
}
@media (max-width: 767px) {
  .container-fluid.full__width__padding {
    padding: 0 20px;
  }
}

.container-fluid.padding {
  padding: 0 80px;
}

.row {
  --bs-gutter-x: 2.188rem;
}

.column__custom__class {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.row__custom__class {
  margin-left: -10px !important;
  margin-right: -10px !important;
  padding: 0;
}

@media (min-width: 992px) and (max-width: 1365px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .special__spacing .row {
    margin-left: -5px !important;
    margin-right: -5px !important;
  }
}
@media (min-width: 992px) and (max-width: 1365px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .special__spacing [class*=col-] {
    padding: 0 5px !important;
  }
}

.overflow__hidden__X {
  overflow-x: hidden;
}

.sp_100 {
  padding: 100px 0;
}

.sp_90 {
  padding: 90px 0;
}

.sp_80 {
  padding: 80px 0;
}

.sp_70 {
  padding: 70px 0;
}

.sp_60 {
  padding: 60px 0;
}

.sp_50 {
  padding: 50px 0;
}

.sp_40 {
  padding: 40px 0;
}

.sp_30 {
  padding: 30px 0;
}

.sp_20 {
  padding: 20px 0;
}

.sp_top_250 {
  padding-top: 250px;
}
@media (max-width: 767px) {
  .sp_top_250 {
    padding-top: 150px;
  }
}

.sp_top_200 {
  padding-top: 200px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_200 {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .sp_top_200 {
    padding-top: 200px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .sp_top_200 {
    padding-top: 300px;
  }
}

.sp_top_190 {
  padding-top: 190px;
}

.sp_top_180 {
  padding-top: 180px;
}

.sp_top_170 {
  padding-top: 170px;
}

.sp_top_160 {
  padding-top: 160px;
}

.sp_top_150 {
  padding-top: 150px;
}

.sp_top_130 {
  padding-top: 130px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_130 {
    padding-top: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_130 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .sp_top_130 {
    padding-top: 50px;
  }
}

.sp_top_140 {
  padding-top: 140px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .sp_top_140 {
    padding-top: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_140 {
    padding-top: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_140 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .sp_top_140 {
    padding-top: 50px;
  }
}

.sp_top_120 {
  padding-top: 120px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_120 {
    padding-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_120 {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .sp_top_120 {
    padding-top: 60px;
  }
}

.sp_top_100 {
  padding-top: 100px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_100 {
    padding-top: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_100 {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .sp_top_100 {
    padding-top: 40px;
  }
}

.sp_top_90 {
  padding-top: 90px;
}

.sp_top_80 {
  padding-top: 80px;
}

.sp_top_70 {
  padding-top: 70px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_top_70 {
    padding-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_top_70 {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .sp_top_70 {
    padding-top: 10px;
  }
}

.sp_top_60 {
  padding-top: 60px;
}

.sp_top_50 {
  padding-top: 50px;
}

.sp_top_40 {
  padding-top: 40px;
}

.sp_top_30 {
  padding-top: 30px;
}

.sp_top_20 {
  padding-top: 20px;
}

.sp_bottom_330 {
  padding-bottom: 330px;
}
@media (max-width: 767px) {
  .sp_bottom_330 {
    padding-bottom: 150px;
  }
}

.sp_bottom_270 {
  padding-bottom: 270px;
}

.sp_bottom_200 {
  padding-bottom: 200px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_200 {
    padding-bottom: 130px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_200 {
    padding-bottom: 130px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_200 {
    padding-bottom: 100px;
  }
}

.sp_bottom_190 {
  padding-bottom: 190px;
}

.sp_bottom_180 {
  padding-bottom: 180px;
}

.sp_bottom_170 {
  padding-bottom: 170px;
}

.sp_bottom_160 {
  padding-bottom: 160px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_160 {
    padding-bottom: 120px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_160 {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_160 {
    padding-bottom: 90px;
  }
}

.sp_bottom_150 {
  padding-bottom: 150px;
}

.sp_bottom_140 {
  padding-bottom: 140px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_140 {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_140 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_140 {
    padding-bottom: 70px;
  }
}

.sp_bottom_110 {
  padding-bottom: 110px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_110 {
    padding-bottom: 70px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_110 {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_110 {
    padding-bottom: 40px;
  }
}

.sp_bottom_130 {
  padding-bottom: 130px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_130 {
    padding-bottom: 90px;
    padding-top: 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_130 {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_130 {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}

.sp_bottom_120 {
  padding-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_120 {
    padding-bottom: 90px;
    padding-top: 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_120 {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_120 {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}

.sp_bottom_100 {
  padding-bottom: 100px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_100 {
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_100 {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_100 {
    padding-bottom: 40px;
  }
}

.sp_bottom_90 {
  padding-bottom: 90px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_90 {
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_90 {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_90 {
    padding-bottom: 60px;
  }
}

.sp_bottom_80 {
  padding-bottom: 80px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_80 {
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_80 {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_80 {
    padding-bottom: 20px;
  }
}

.sp_bottom_70 {
  padding-bottom: 70px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_70 {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_70 {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_70 {
    padding-bottom: 30px;
  }
}

.sp_bottom_60 {
  padding-bottom: 60px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sp_bottom_60 {
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_60 {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_60 {
    padding-bottom: 10px;
  }
}

.sp_bottom_50 {
  padding-bottom: 50px;
}

.sp_bottom_40 {
  padding-bottom: 40px;
}

.sp_bottom_30 {
  padding-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sp_bottom_30 {
    padding-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .sp_bottom_30 {
    padding-bottom: 5px;
  }
}

.sp_bottom_20 {
  padding-bottom: 20px;
}

.col--30 {
  padding-left: 30px;
  padding-right: 30px;
}

.height__700 {
  height: 700px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .height__700 {
    height: 700px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .height__700 {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .height__700 {
    height: 450px;
  }
}

.height__800 {
  height: 800px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .height__800 {
    height: 700px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .height__800 {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .height__800 {
    height: 450px;
  }
}

.height__900 {
  height: 900px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .height__900 {
    height: 700px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .height__900 {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .height__900 {
    height: 450px;
  }
}

.height__950 {
  height: 950px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .height__950 {
    height: 680px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .height__950 {
    height: 550px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .height__950 {
    height: 800px;
  }
}
@media (max-width: 767px) {
  .height__950 {
    height: 700px;
  }
}

.height__970 {
  height: 970px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .height__970 {
    height: 800px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .height__970 {
    height: 700px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .height__970 {
    height: 700px;
  }
}

.height__1028 {
  height: 1028px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .height__1028 {
    height: 750px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .height__1028 {
    height: 550px;
  }
}
@media (min-width: 1200px) and (max-width: 1365px) {
  .height__1028 {
    height: 660px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .height__1028 {
    height: 430px;
  }
}
@media (max-width: 767px) {
  .height__1028 {
    height: auto;
  }
}

.pink__bg__color {
  background-color: var(--pinkcolor);
}

.bg__pink {
  background: var(--pinkcolor);
}

.default__button {
  padding: 20px 45px;
  background: var(--gradientColor);
  color: var(--whiteColor);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: var(--borderRadius);
  font-family: var(--buttonFont);
  transition: 0.3s;
  display: inline-block;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .default__button {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .default__button {
    padding: 20px 19px;
  }
}
.default__button:hover {
  -webkit-filter: brightness(150%);
  filter: brightness(150%);
  color: var(--whiteColor);
}
.default__button.btn__blue {
  background: var(--navyBlue);
  padding: 20px 50px;
  border: 1px solid var(--navyBlue);
}
.default__button.btn__blue:hover {
  background: transparent;
  color: var(--navyBlue);
}
.default__button.btn__black {
  background: var(--blackColor);
  border: 1px solid var(--blackColor);
}
.default__button.btn__black:hover {
  background: transparent;
  color: var(--blackColor);
}
.default__button.btn__white {
  background: var(--whiteColor);
  color: var(--blackColor);
  border: 1px solid var(--whiteColor);
}
.default__button.btn__white:hover {
  background: transparent;
  color: var(--whiteColor);
}
.default__button.btn__pink {
  background: var(--pinkcolor);
  color: var(--blackColor);
  border: 1px solid var(--pinkcolor);
}
.default__button.btn__pink:hover {
  background: transparent;
  color: var(--pinkcolor);
}

button.default__button {
  border: none;
}

.direction__btn {
  height: 62px;
  width: 62px;
  line-height: 62px;
  background: var(--whiteColor);
  text-align: center;
  display: inline-block;
  border-radius: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .direction__btn {
    height: 45px;
    width: 45px;
    line-height: 45px;
  }
}
.direction__btn:hover::after {
  opacity: 1;
}
.direction__btn:hover svg path {
  stroke: #0071bc;
}
.direction__btn::after {
  background: var(--gradientColor);
  position: absolute;
  border-radius: 100%;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  opacity: 0;
  z-index: 9;
}
.direction__btn svg {
  position: relative;
  z-index: 99;
}
.direction__btn svg path {
  stroke: #0071bc;
  transition: var(--transition);
}
.direction__btn--2 {
  background: none;
}
.direction__btn--2::after {
  opacity: 1;
}
.direction__btn--2 svg path {
  stroke: var(--whiteColor);
}
.direction__btn--2:hover {
  background: var(--whiteColor);
}
.direction__btn--2:hover::after {
  opacity: 0;
}
.direction__btn--2:hover svg path {
  stroke: var(--whiteColor);
}
.direction__btn--2:hover svg path {
  stroke: #0071bc;
}

.gradient__bg {
  background: var(--gradientColor);
}

.white__bg {
  background: var(--whiteColor);
}

.common__gradient__bg {
  position: relative;
}
.common__gradient__bg::after {
  background: var(--gradientColor);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  opacity: 0;
  border-radius: var(--borderRadius);
}
.common__gradient__bg:hover::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .section__title.sp_bottom_90 {
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section__title.sp_bottom_50 {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .section__title.sp_bottom_50 {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .section__title {
    margin-bottom: 20px;
  }
}
.section__title__button {
  margin-bottom: 20px;
}
.section__title__button span {
  color: var(--blackColor);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid var(--borderColor2);
  padding: 10px 26px;
  border-radius: 50px;
  display: inline-block;
}
.section__title__heading {
  margin-bottom: 30px;
  max-width: 50%;
  margin: 0 auto;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .section__title__heading {
    max-width: 54%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section__title__heading {
    max-width: 72%;
  }
}
@media (max-width: 767px) {
  .section__title__heading {
    max-width: 100%;
  }
}
.section__title__heading h3 {
  color: var(--blackColor);
  text-align: center;
  font-size: 37px;
  font-weight: 700;
  line-height: 50px;
  margin: 0;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .section__title__heading h3 {
    font-size: 29px;
    line-height: 45px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section__title__heading h3 {
    font-size: 27px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .section__title__heading h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
.section__title__heading h3 span {
  color: var(--primaryColor);
}
.section__title__text {
  max-width: 40%;
  margin: 0 auto;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .section__title__text {
    max-width: 55%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section__title__text {
    max-width: 74%;
  }
}
@media (max-width: 767px) {
  .section__title__text {
    max-width: 100%;
  }
}
.section__title__text p {
  color: var(--contentColor);
  text-align: center;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
}
.section__title--2 .section__title__heading {
  max-width: 100%;
}
.section__title--2 .section__title__heading h3 {
  text-align: left;
}
.section__title--2 .section__title__text {
  max-width: 100%;
}
.section__title--2 .section__title__text p {
  text-align: left;
}
.section__title--3 .section__title__heading h3 {
  color: var(--whiteColor);
}
.section__title--3 .section__title__button span {
  color: var(--whiteColor);
}
.section__title--3 .section__title__text__3 p {
  color: var(--whiteColor);
  margin: 0;
}
.section__title--3 .blog__4__section__title__text p {
  color: var(--whiteColor);
}
.section__title__small span {
  font-size: 15px;
  font-weight: 700;
  color: var(--primaryColor);
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
  display: inline-block;
}
.section__title__small span::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 30px;
  background: var(--primaryColor);
  top: 50%;
  left: 0;
  margin-top: -2px;
}
.section__title--4 .section__title__small span {
  color: var(--whiteColor);
}
.section__title--4 .section__title__small span::before {
  background: var(--whiteColor);
}
.section__title--4 .section__title__heading h3 {
  color: var(--whiteColor);
}
.section__title__btn {
  margin-top: 38px;
}

.text-start .section__title__heading h3 {
  text-align: left;
}

.text-start .section__title__heading {
  margin-left: 0;
}

.text-start .section__title__text p {
  text-align: left;
}

.text-start .section__title__text {
  margin-left: 0;
}

.text-end .section__title__heading h3 {
  text-align: right;
}

.text-end .section__title__heading {
  margin-right: 0;
}

.text-end .section__title__text p {
  text-align: right;
}

.text-end .section__title__text {
  margin-right: 0;
}

.text__gradient {
  -webkit-text-fill-color: transparent;
  background: var(--gradientColor);
  -webkit-background-clip: text;
}

.text__unerline {
  position: relative;
}
.text__unerline::after {
  position: absolute;
  background: var(--primaryColor);
  height: 2px;
  width: 100%;
  content: "";
  left: 0;
  bottom: 0;
}

.bastun__brand__badge {
  display: inline-block;
}

#trust-strip img {
  max-height: 60px;
  filter: grayscale(100%); 
  opacity: 0.8;
  transition: filter .2s ease, opacity .2s ease;
}
#trust-strip img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


@media (max-width: 767px) {
  .bastun__brand__badge__inner {
    max-width: 60%;
    margin: auto;
  }
  .bastun__brand__badge__inner img {
    width: 100%;
  }
  .bastun__brand__badge__inner img.bbb__icon {
    width: 30px;
  }
}
.bastun__brand__badge__footer {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translate(-50%);
}

.bastun__brand__badge .bbb__animate:hover {
  animation-play-state: paused;
}
.bastun__brand__badge .bbb__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.single__transform {
  transition: var(--transition);
}
.single__transform:hover {
  transform: translateY(-10px);
}

.ssla__animation {
  position: absolute;
  animation: dot-anim-2 3s linear 0s infinite alternate;
}

.border__line {
  border: 1px dashed var(--borderColor);
  max-width: 1550px;
  margin: auto;
}

@keyframes dot-anim {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes dot-anim-2 {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes up-do-anim {
  0%, 25%, 50%, 75%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes cir-anim {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes move5 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes animationglob {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.theme__shadow__circle {
  position: fixed;
  left: -100px;
  top: 100px;
  right: auto;
  bottom: auto;
  z-index: -1;
  width: 1000px;
  height: 1000px;
  background-image: linear-gradient(45deg, var(--secondaryColor), var(--primaryColor));
  opacity: 0.2;
  -webkit-filter: blur(100px);
  filter: blur(100px);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .theme__shadow__circle {
    width: 100%;
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .theme__shadow__circle {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 767px) {
  .theme__shadow__circle {
    width: 100%;
    left: 0;
  }
}
.theme__shadow__circle.shadow__right {
  left: auto;
  top: 50px;
  right: -100px;
  bottom: auto;
  background-image: linear-gradient(45deg, var(--primaryColor) 10%, var(--secondaryColor) 50%);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .theme__shadow__circle.shadow__right {
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .theme__shadow__circle.shadow__right {
    right: 0;
  }
}
@media (max-width: 767px) {
  .theme__shadow__circle.shadow__right {
    right: 0;
  }
}
.theme__shadow__circle--2 {
  position: absolute;
  left: 0;
  opacity: 0.1;
}
.theme__shadow__circle--2.shadow__right {
  right: 0;
}

.bg__black {
  background: var(--blackColor);
}

.swiper-slide[class*=col-] {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.pagination {
  margin-top: 40px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .pagination {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pagination {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .pagination {
    margin-top: 20px;
  }
}
.pagination ul li {
  margin-right: 10px;
}
.pagination ul li a {
  height: 56px;
  width: 56px;
  line-height: 56px;
  text-align: center;
  background: var(--pinkcolor);
  display: inline-block;
  border-radius: var(--borderRadius);
  font-weight: 500;
  color: var(--blackColor);
}
.pagination ul li a:hover {
  color: var(--whiteColor);
}
.pagination ul li a span {
  position: relative;
  z-index: 99;
}
.pagination ul li a.active {
  color: var(--whiteColor);
}
.pagination ul li a.active::after {
  opacity: 1;
}

.slider__controls__pagination .swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background: var(--greyColor);
  opacity: 1;
}

.slider__controls__pagination .swiper-pagination {
  bottom: -90px;
}
@media (max-width: 767px) {
  .slider__controls__pagination .swiper-pagination {
    bottom: -50px;
  }
}

.slider__controls__pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--gradientColor);
}

.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}

.slider__controls__arrows .arrow-btn {
  font-size: 40px;
  color: var(--whiteColor);
  height: 65px;
  width: 65px;
  border: 2px solid var(--whiteColor);
  border-radius: 100px;
  position: absolute;
  transition: var(--transition);
  line-height: 65px;
  text-align: center;
  left: 0;
}
@media (min-width: 1500px) and (max-width: 1920px) {
  .slider__controls__arrows .arrow-btn {
    left: -60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider__controls__arrows .arrow-btn {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 767px) {
  .slider__controls__arrows .arrow-btn {
    height: 50px;
    width: 50px;
  }
}
.slider__controls__arrows .arrow-btn:hover {
  border: 2px solid transparent;
}
.slider__controls__arrows .arrow-btn:hover::before {
  opacity: 1;
}
.slider__controls__arrows .arrow-btn:hover svg {
  stroke: var(--whiteColor);
  z-index: 999;
}
.slider__controls__arrows .arrow-btn::before {
  background: var(--gradientColor);
  position: absolute;
  border-radius: 100%;
  left: -3px;
  top: -3px;
  height: 67px;
  width: 67px;
  content: "";
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  opacity: 0;
  z-index: 9;
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider__controls__arrows .arrow-btn::before {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 767px) {
  .slider__controls__arrows .arrow-btn::before {
    height: 50px;
    width: 50px;
  }
}
.slider__controls__arrows .arrow-btn svg {
  transition: var(--transition);
}
.slider__controls__arrows .arrow-btn i {
  position: relative;
  z-index: 9999;
}
.slider__controls__arrows .arrow-btn.swiper-button-next {
  left: auto;
  right: 0;
}
@media (min-width: 1500px) and (max-width: 1920px) {
  .slider__controls__arrows .arrow-btn.swiper-button-next {
    right: -60px;
  }
}
.slider__controls__arrows .arrow-btn-2 {
  border: 2px solid #FFF0FA;
}
.slider__controls__arrows .arrow-btn-2 svg {
  z-index: 999;
}
.slider__controls__arrows .arrow-btn-2 svg path {
  stroke: var(--blackColor);
}
.slider__controls__arrows .arrow-btn-2:hover svg path {
  stroke: var(--whiteColor);
}
.slider__controls__arrows .arrow-btn-3 {
  border: 2px solid var(--blackColor);
}
.slider__controls__arrows .arrow-btn-3 svg {
  z-index: 999;
}
.slider__controls__arrows .arrow-btn-3 svg path {
  stroke: var(--blackColor);
}
.slider__controls__arrows .arrow-btn-3:hover svg path {
  stroke: var(--whiteColor);
}

.slider__controls__arrows--2 {
  position: absolute;
  right: -130px;
  top: 58%;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .slider__controls__arrows--2 {
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider__controls__arrows--2 {
    right: 0;
  }
}
@media (max-width: 767px) {
  .slider__controls__arrows--2 {
    right: 0;
  }
}
.slider__controls__arrows--2 .arrow-btn {
  right: 0;
  left: auto;
}
.slider__controls__arrows--2 .arrow-btn.swiper-button-next {
  top: -90px;
  right: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider__controls__arrows--2 .arrow-btn.swiper-button-next {
    top: -60px;
  }
}
@media (max-width: 767px) {
  .slider__controls__arrows--2 .arrow-btn.swiper-button-next {
    top: -60px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .slider__controls__arrows--2 .arrow-btn.arrow-btn-2 {
    background: var(--whiteColor);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider__controls__arrows--2 .arrow-btn.arrow-btn-2 {
    background: var(--whiteColor);
  }
}
@media (max-width: 767px) {
  .slider__controls__arrows--2 .arrow-btn.arrow-btn-2 {
    background: var(--whiteColor);
  }
}

.slider__controls__arrows--3 .swiper-button-next.arrow-btn {
  right: 0;
}

.slider__controls__arrows--3 .swiper-button-prev.arrow-btn {
  left: auto;
  right: 90px;
}

.slider__control__top__wrap {
  height: 100%;
}

.modal__wraper {
  max-width: 1000px;
  margin: 150px auto;
  max-height: 750px;
  overflow: auto;
  overflow-x: hidden;
}
@media (min-width: 992px) and (max-width: 1365px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .modal__wraper {
    margin: 50px auto;
  }
}
.modal__wraper .modal-content {
  padding: 15px;
  background: var(--whiteColor);
}
.modal__wraper .modal-body {
  padding: 0;
}
.modal__wraper .btn-close {
  position: absolute;
  right: 10px;
  z-index: 99;
  background-color: var(--whiteColor);
}

#back__preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit- flex;
  display: -ms- flex;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  background: #0071bc;
  position: fixed;
  z-index: 999999;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.back__loader_logo {
  position: absolute;
}

.back__loader_logo img {
  width: 40px;
}

#back__circle_loader {
  width: 100px;
  height: 100px;
  border-style: solid;
  border-width: 5px;
  border-top-color: #19c1e1;
  border-right-color: #19c1e1;
  border-bottom-color: #ffffff;
  border-left-color: #ffffff;
  border-radius: 50%;
  -webkit-animation: spinLoader 2s linear infinite;
  animation: spinLoader 2s linear infinite;
}

@-webkit-keyframes spinLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mode_switcher.my_switcher {
  position: fixed;
  right: 16px;
  top: 140px;
  z-index: 9999999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mode_switcher.my_switcher:hover {
  transform: translateY(-2px);
}

@media (min-width: 1500px) and (max-width: 1920px) {
  .mode_switcher.my_switcher {
    top: 180px;
  }
}
.mode_switcher.my_switcher button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--whiteColor);
  background: var(--primaryColor);
  padding: 12px 16px;
  line-height: 20px;
  border-radius: 999px;
  min-width: 108px;
  box-shadow: 0px 18px 42px rgba(7, 18, 42, 0.28);
  border: none;
}

@media (max-width: 767px) {
  .mode_switcher.my_switcher {
    top: auto;
    right: 14px;
    bottom: 18px;
  }
  .mode_switcher.my_switcher button {
    min-width: 98px;
    padding: 11px 14px;
  }
}

.mode_switcher.my_switcher button svg {
  width: 20px;
  margin-right: 10px;
}

.mode_switcher.my_switcher button span {
  font-size: 16px;
}

.light__mode {
  display: none;
}

.is_dark .light__mode {
  display: block;
}

.is_dark .dark__mode {
  display: none;
}

.headerarea--3 {
  box-shadow: rgba(95, 45, 237, 0.08) 0px 6px 14px;
}
.headerarea--3 .headerarea__main__wrapper {
  background-color: transparent;
}
.headerarea__transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
.headerarea__transparent--2 {
  top: 40px;
}
.headerarea__component__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerarea__main__wrapper {
  padding: 0 20px;
  border-radius: var(--borderRadius);
}
.headerarea--1 .headerarea__main__wrapper {
  background-color: rgba(255, 240, 250, 0.05);
}
.headerarea__main__wrapper--2 {
  background: var(--gradientColor);
}
.headerarea__main__wrapper--3 {
  padding: 0;
}
.headerarea__main__wrapper--4 {
  border-bottom: 1px solid var(--borderColor3);
  padding-bottom: 15px;
  padding-top: 15px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .headerarea__main__wrapper--4 {
    padding-left: 0;
    padding-right: 0;
  }
}
.headerarea__icon ul {
  display: flex;
  align-items: center;
}
.headerarea__icon ul li {
  margin-right: 9px;
}
@media (max-width: 767px) {
  .headerarea__icon ul li {
    display: none;
  }
}
@media (max-width: 767px) {
  .headerarea__icon ul li.headerarea__icon__offcanvas {
    display: block;
  }
}
.headerarea__icon ul li:last-child {
  margin: 0;
}
.headerarea__icon ul li a, .headerarea__icon ul li button {
  height: 52px;
  width: 52px;
  line-height: 52px;
  border: 1px solid var(--borderColor3);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
}
.headerarea__icon ul li a svg rect, .headerarea__icon ul li button svg rect {
  transition: var(--transition);
}
.headerarea__icon ul li a:hover, .headerarea__icon ul li button:hover {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}
.headerarea__icon ul li a:hover svg rect, .headerarea__icon ul li button:hover svg rect {
  fill: var(--whiteColor);
}
@media (max-width: 767px) {
  .headerarea__icon.headerarea__offcavas__icon li {
    display: block;
  }
}
.headerarea__logo {
  display: flex;
  height: 100%;
  align-items: center;
  max-width: 165px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__logo img {
    max-width: 150px;
  }
}
.headerarea__main__menu ul li a {
  font-weight: 600;
  line-height: 24px;
  font-size: 14px;
  padding: 33px 18px 37px;
  display: block;
  color: var(--whiteColor);
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .headerarea__main__menu ul li a {
    padding: 22px 10px 31px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__main__menu ul li a {
    padding: 20px 8px;
    font-size: 12px;
  }
}
.headerarea__main__menu ul li:hover > a {
  color: var(--primaryColor);
}
.headerarea__main__menu ul li .headerarea__mega__menu__img a {
  padding: 0;
}
.headerarea__main__menu ul li .headerarea__mega__menu__title a {
  padding: 20px;
}

/* Mega menu title size */
.headerarea__mega__menu__content h4.headerarea__mega__menu__title {
  font-size: 18px !important;
  line-height: 1.6em !important;
  margin-bottom: 6px !important;
}

/* Mega menu description size */
.headerarea__mega__menu__content p {
  font-size: 14px !important;
  line-height: 1.5em !important;
  margin-bottom: 10px !important;
}
.headerarea__main__menu .headerarea__submenu li {
  display: block;
  border-left: 2px solid transparent;
}

/* Neutralise the theme's default left border on hover */
.nav--accent .headerarea__submenu li:hover {
  border-left: none !important;
}

.headerarea__main__menu .headerarea__submenu li a {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerarea__common__dropdown {
  position: relative;
}
.headerarea__common__dropdown:hover .headerarea__submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  clip: rect(0px, 100vw, 200vh, -30px);
  transition: clip 0.6s linear, opacity 0.4s linear;
}
.headerarea__has__dropdown {
  position: relative;
}
.headerarea__submenu {
  position: absolute;
  clip: rect(0px, 200vw, 0, 0px);
  transition: opacity 0.4s linear, clip 0.6s linear, visibility 0s 0.4s;
  transform: translateZ(0);
  background-color: var(--blackColor);
  min-width: 200px;
  transition: 0.3s;
  top: 110%;
  left: 0;
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  box-shadow: 0 0 50px 10px rgba(15, 157, 193, 0.1);
  border-bottom-right-radius: var(--borderRadius);
  border-bottom-left-radius: var(--borderRadius);
  text-align: left;
}
.headerarea__mega__menu__wrapper {
  width: 100%;
  max-height: 610px;
  overflow: auto;
  padding: 30PX;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__mega__menu__wrapper {
    max-height: 500px;
  }
}
.headerarea__mega__menu__grid__5 {
  padding: 15px 30px !important;
}
.headerarea__mega__menu__grid__5 .headerarea__mega__menu__single__wrap {
  width: 20%;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__mega__menu__grid__5 .headerarea__mega__menu__single__wrap {
    width: 25%;
  }
}
.headerarea__tab__button__wrap {
  margin-bottom: 15px;
}
.headerarea__tab__button__wrap li {
  width: 50%;
}
.headerarea__tab__button__wrap li button {
  background: var(--whiteColor);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
  font-size: 18px;
  border: none;
  margin-right: 11px;
  font-weight: 600;
  color: var(--blackColor);
  width: 100%;
  border-radius: var(--borderRadius);
  position: relative;
  transition: var(--transition);
}
.headerarea__tab__button__wrap li button:hover, .headerarea__tab__button__wrap li button.active {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  color: var(--primaryColor);
}
.headerarea__mega__menu__thumb {
  position: relative;
  box-shadow: 0px 0 5px 5px rgba(0, 0, 0, 0.05);
  margin: 15px 0;
  transition: var(--transition);
  overflow: hidden;
}
.headerarea__mega__menu__thumb:hover {
  box-shadow: 0px 0 5px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.headerarea__mega__menu__thumb img {
  width: 100%;
  border-radius: var(--borderRadius);
}
.headerarea__mega__menu__thumb a {
  padding: 0 !important;
}
.headerarea__mega__menu__thumb__title {
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -20px;
  color: var(--whiteColor);
  font-size: 13px;
  background: var(--secondaryColor);
  padding: 8px;
  line-height: 1;
  border-radius: var(--borderRadius);
  transition: var(--transition);
  opacity: 0;
  text-align: center;
}
.headerarea__mega__menu__thumb__title.title__onepage {
  background: var(--primaryColor);
  bottom: 10px;
}
.headerarea__mega__menu__thumb:hover .headerarea__mega__menu__thumb__title {
  bottom: 2px;
  opacity: 1;
}
.headerarea__mega__menu__thumb:hover .headerarea__mega__menu__thumb__title.title__onepage {
  bottom: 35px;
}
.headerarea__mega__menu__thumb__label {
  position: absolute;
  background: var(--primaryColor);
  font-size: 12px;
  padding: 5px 15px;
  line-height: 1;
  color: var(--whiteColor);
  border-radius: var(--borderRadius);
  top: 5px;
  left: 5px;
}
.headerarea__menu__special__label {
  position: relative;
  background: var(--gradientColor);
  font-size: 12px;
  padding: 5px 15px;
  line-height: 1;
  margin-left: 5px;
  color: var(--whiteColor);
  border-radius: var(--borderRadius);
}
.headerarea__mega__menu__img img {
  width: 100%;
}
.headerarea__mega__menu__title {
  border-bottom: 1px solid var(--borderColor);
}
.headerarea__submenu--five--wrap li {
  position: relative;
}
.headerarea__submenu--five--wrap li:hover .headerarea__submenu--five {
  visibility: visible;
  opacity: 1;
}
.headerarea__submenu--five {
  position: absolute;
  right: 0;
  left: 100%;
  min-width: 200px;
  top: 0;
  padding: 14px 0;
  z-index: 999;
  box-shadow: 0 0 50px 10px rgba(15, 157, 193, 0.1);
  border-bottom-right-radius: var(--borderRadius);
  border-bottom-left-radius: var(--borderRadius);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  background: var(--blackColor);
}
.headerarea__cart__icon {
  position: relative;
}
.headerarea__cart__icon a {
  width: 52px;
  height: 52px;
  border-radius: 52px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  line-height: 52px;
  text-align: center;
}
.headerarea__cart__border__dot {
  border-radius: 8px;
  background: var(--gradientColor);
  width: 8px;
  height: 8px;
  position: absolute;
  top: 6px;
}
.headerarea__right {
  display: flex;
  align-items: center;
}
.headerarea__button {
  margin-left: 25px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__button {
    margin-left: 15px;
  }
}
.headerarea__cart__wraper {
  position: relative;
}
.headerarea__cart__wraper:hover .headerarea__cart__dropdown__wrapper {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.headerarea__cart__dropdown__wrapper {
  position: absolute;
  width: 350px;
  max-height: 700px;
  padding: 20px;
  border-bottom: 3px solid var(--borderColor);
  background-color: var(--whiteColor);
  box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.15);
  top: 70px;
  left: -117px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: var(--transition);
  border-radius: var(--borderRadius);
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea__cart__dropdown__wrapper {
    left: auto;
    right: 0;
  }
}
@media (max-width: 767px) {
  .headerarea__cart__dropdown__wrapper {
    left: auto;
    right: 0;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .headerarea__cart__dropdown__wrapper {
    right: -90px;
    width: 300px;
  }
}
.headerarea__cart__dropdown__inner {
  border-bottom: 1px solid var(--borderColor);
  margin-bottom: 30px;
}
.headerarea__cart__single__dropdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 320px) and (max-width: 575px) {
  .headerarea__cart__single__dropdown {
    margin-bottom: 10px;
  }
}
.headerarea__cart__single__dropdown__img {
  width: 35%;
}
.headerarea__cart__single__dropdown__img img {
  width: 100%;
  border-radius: var(--borderRadius2);
}
.headerarea__cart__single__dropdown__content {
  text-align: left;
  width: 65%;
  margin-left: 15px;
}
.headerarea__cart__single__dropdown__content a {
  line-height: 20px;
  color: var(--blackColor);
  font-size: 15px;
}
@media (min-width: 320px) and (max-width: 575px) {
  .headerarea__cart__single__dropdown__content a {
    font-size: 12px;
  }
}
.headerarea__cart__single__dropdown__content a:hover {
  color: var(--primaryColor);
}
.headerarea__cart__single__dropdown__content p .price {
  color: var(--primaryColor);
}
.headerarea__cart__dropdown__price span {
  color: var(--primaryColor);
  float: right;
  font-weight: 700;
}
.headerarea__cart__single__dropdown__close {
  position: absolute;
  right: 0;
  top: -10px;
}
.headerarea__cart__dropdown__price {
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .headerarea__cart__dropdown__button {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
}
.headerarea__cart__dropdown__button .default__button {
  padding: 18px 40px;
}
.headerarea__bar__wrapper {
  background: var(--whiteColor);
  border: none;
  margin-left: 40px;
}
.headerarea__bar span {
  background: var(--blackColor);
  height: 2px;
  width: 24px;
  display: block;
  margin-top: 5px;
  margin-bottom: 6px;
  padding-left: 9px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headerarea__offcavas__close__button {
  padding: 30px 100px 20px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__offcavas__close__button {
    padding: 30px 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea__offcavas__close__button {
    padding: 30px 50px;
  }
}
@media (max-width: 767px) {
  .headerarea__offcavas__close__button {
    padding: 20px 50px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .headerarea__offcavas__close__button {
    padding: 20px 30px;
  }
}
.headerarea__offcavas__body {
  padding: 20px 100px 50px 100px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__offcavas__body {
    padding: 0 50px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea__offcavas__body {
    padding: 0 50px 20px;
  }
}
@media (max-width: 767px) {
  .headerarea__offcavas__body {
    padding: 0 50px 20px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .headerarea__offcavas__body {
    padding: 0 30px 20px;
  }
}
.headerarea__offcavas__wrapper {
  width: 60vw !important;
  min-width: 300px;
  transition: all 0.8s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 999999999;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__offcavas__wrapper {
    width: 80vw !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea__offcavas__wrapper {
    width: 80vw !important;
  }
}
@media (max-width: 767px) {
  .headerarea__offcavas__wrapper {
    width: 95vw !important;
  }
}
.headerarea__offcavas__form {
  margin-bottom: 50px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__offcavas__form {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea__offcavas__form {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .headerarea__offcavas__form {
    margin-bottom: 30px;
  }
}
.headerarea__offcavas__form .form-group {
  position: relative;
}
.headerarea__offcavas__form .form-group input {
  font-size: 30px;
  height: auto;
  border: none;
  border-bottom: 2px solid var(--borderColor);
  border-radius: 0;
  padding: 5px 0;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__offcavas__form .form-group input {
    font-size: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea__offcavas__form .form-group input {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .headerarea__offcavas__form .form-group input {
    font-size: 25px;
  }
}
.headerarea__offcavas__form .form-group button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  padding: 0;
}
.headerarea__offcavas__form .form-group button i {
  font-size: 24px;
}
.headerarea__offcavas__menu .active {
  color: var(--primaryColor);
}
.headerarea__offcavas__menu li {
  margin: 20px 0;
  display: block;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__offcavas__menu li {
    margin: 15px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea__offcavas__menu li {
    margin: 15px 0;
  }
}
@media (max-width: 767px) {
  .headerarea__offcavas__menu li {
    margin: 10px 0;
  }
  .headerarea__offcavas__menu li:last-child {
    margin-bottom: 20px;
  }
}
.headerarea__offcavas__menu li:first-child {
  margin-top: 0;
}
.headerarea__offcavas__menu li a {
  font-size: 26px;
  font-weight: 500;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea__offcavas__menu li a {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea__offcavas__menu li a {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .headerarea__offcavas__menu li a {
    font-size: 20px;
  }
}
.headerarea__offcavas__address {
  margin-bottom: 40px;
}
.headerarea__offcavas__address span {
  font-size: 18px;
  line-height: 25px;
  color: var(--blackColor);
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}
.headerarea__offcavas__address a {
  color: var(--blackColor);
  display: block;
  margin-bottom: 10px;
}
.headerarea__offcavas__address a:hover {
  color: var(--primaryColor);
}
.headerarea__offcavas__address a i {
  margin-right: 20px;
  font-weight: 900;
}
.headerarea__offcavas__contact__inner h5 {
  font-size: 18px;
  line-height: 1;
  color: var(--blackColor);
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .headerarea__offcavas__contact {
    padding-top: 20px;
    border-top: 1px solid var(--borderColor);
  }
}

.headerarea__offcavas__menu {
  max-height: 650px;
  overflow: auto;
}

.header__topbar {
  padding: 8px;
}
.header__topbar__left {
  display: flex;
  justify-content: end;
}
.header__topbar__left ul li {
  margin-right: 60px;
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
}
.header__topbar__left ul li:last-child {
  margin-right: 0;
}
.header__topbar__left ul li svg {
  margin-right: 15px;
}
.header__topbar__right {
  display: flex;
  align-items: center;
  padding-left: 40px;
}
.header__topbar__right svg {
  margin-right: 15px;
}
.header__topbar__right p {
  margin: 0;
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
}

.header__animate {
  background: var(--gradientColor);
  overflow: hidden;
}
.header__animate__wraper {
  display: flex;
  height: 50px;
  white-space: nowrap;
  position: relative;
  will-change: transform;
  animation: marquee 50s linear 0s infinite normal;
  animation-play-state: running;
}
.header__animate__wraper:hover {
  animation-play-state: paused;
}
.header__animate__item {
  margin-right: 40px;
  display: flex;
  align-items: center;
}
.header__animate__item h3 {
  font-size: 13px;
  letter-spacing: 1.95px;
  color: var(--whiteColor);
  margin: 0;
}
.header__animate__item img {
  margin-right: 40px;
}

.animate__content {
  background: var(--borderColor);
  overflow: hidden;
}
.animate__content__wraper {
  display: flex;
  padding: 25px 0;
  white-space: nowrap;
  position: relative;
  will-change: transform;
  animation: marquee 50s linear 0s infinite normal;
  animation-play-state: running;
}
.animate__content__wraper:hover {
  animation-play-state: paused;
}
.animate__content__item {
  margin-right: 40px;
  display: flex;
  align-items: center;
}
.animate__content__item h3 {
  font-size: 60px;
  letter-spacing: 1.95px;
  color: var(--blackColor);
  margin: 0;
}
@media (max-width: 767px) {
  .animate__content__item h3 {
    font-size: 30px;
  }
}
.animate__content__item img {
  margin-right: 40px;
}
.animate__content__item--2 h3 {
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke-color: var(--secondaryColor);
  -webkit-text-stroke-width: 1px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerarea--2.headerarea__transparent {
    position: static;
  }
}
@media (max-width: 767px) {
  .headerarea--2.headerarea__transparent {
    position: static;
  }
}

.header__sticky.sticky {
  position: fixed;
  animation: 0.95s ease-in-out 0s 1 normal none running fadeInDown;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  box-shadow: rgba(18, 102, 104, 0.25) 0px 6px 34px;
  background: rgba(7, 70, 127, 0.98);
  top: 0px;
  width: 100%;
  z-index: 999999;
}

.headerarea--2.header__sticky.sticky {
  background: var(--gradientColor);
  box-shadow: none;
}
.headerarea--2.header__sticky.sticky .header__topbar {
  display: none;
}
.headerarea--2.header__sticky.sticky .headerarea__main__wrapper--2 {
  background: none;
}

.headerarea--4.header__sticky.sticky {
  background: var(--whiteColor);
}
.headerarea--4.header__sticky.sticky .headerarea__main__wrapper--4 {
  border: none;
}
@media (max-width: 767px) {
  .headerarea--4 .container {
    width: 100%;
    max-width: 100%;
  }
}

.bg__black .headerarea--4.header__sticky.sticky {
  background: var(--blackColor);
}

@media (min-width: 992px) and (max-width: 1365px) {
  .headerarea--2 .default__button {
    padding: 15px 20px;
  }
  .headerarea .default__button {
    padding: 10px 20px;
  }
}
.offcanvas__header--menu__open {
  line-height: 1;
  display: none;
}

@media only screen and (max-width: 991px) {
  .offcanvas__header--menu__open {
    display: block;
  }
}
.offcanvas__header--menu__open--svg {
  width: 32px;
}

.offcanvas__header--menu__open--btn > * {
  pointer-events: none;
}

.offcanvas__header {
  position: fixed;
  z-index: 99999999;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background-color: var(--body-background-color);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 480px) {
  .offcanvas__header {
    max-width: 320px;
  }
}
.offcanvas__header.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.offcanvas__header.open ~ .offcanvas-overlay {
  visibility: visible;
  opacity: 0.75;
}

.offcanvas-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
  background-color: var(--bg-black-color);
}

.offcanvas__inner {
  position: relative;
  height: 100%;
  padding-bottom: 5rem;
  background: var(--whiteColor);
}

.offcanvas__logo {
  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;
  padding: 20px 15px;
}

.offcanvas__logo img {
  max-width: 130px;
}

.offcanvas__close--btn {
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 20px;
  height: 20px;
  padding: 0;
  text-indent: -9999px;
  border: none;
  background-color: transparent;
}

.offcanvas__close--btn::after,
.offcanvas__close--btn::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -2px;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: var(--blackColor);
  transition: var(--transition);
}

.offcanvas__close--btn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.offcanvas__close--btn:hover::after,
.offcanvas__close--btn:hover::before {
  background-color: var(--primaryColor);
}

.offcanvas__menu {
  overflow-y: auto;
  height: 100%;
}

.offcanvas__menu_ul {
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 300px;
}

.offcanvas__menu_li {
  position: relative;
  border-bottom: 1px solid var(--borderColor);
  width: 100%;
}

.offcanvas__menu_li:first-child {
  border-top: 1px solid var(--borderColor);
}

.offcanvas__menu_item {
  line-height: 1;
  display: block;
  padding: 15px 20px;
  color: var(--blackColor);
  font-size: 16px;
}

.offcanvas__sub_menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offcanvas__sub_menu_li {
  position: relative;
  border-top: 1px solid var(--borderColor);
  width: 100%;
}

.offcanvas__sub_menu_item {
  line-height: 1;
  display: block;
  padding: 15px 0 15px 30px;
  color: var(--blackColor);
  font-size: 14px;
}

.offcanvas__sub_menu_item ~ .offcanvas__sub_menu .offcanvas__sub_menu_item {
  padding-left: 40px;
}

.offcanvas__sub_menu_toggle {
  font-size: 20px;
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.offcanvas__sub_menu_toggle::after,
.offcanvas__sub_menu_toggle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: var(--blackColor);
}

.offcanvas__sub_menu_toggle:not(.active)::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.offcanvas__sub_menu_toggle:hover::after,
.offcanvas__sub_menu_toggle:hover::before {
  background-color: var(--primaryColor);
}

.offcanvas__account--items {
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.offcanvas__account--items__btn {
  color: var(--blackColor);
  gap: 0.5rem;
}

.offcanvas__sticky--toolbar {
  position: fixed;
  bottom: 0;
  background: var(--body-background-color);
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  padding: 14px 20px;
  display: none;
}

@media only screen and (min-width: 500px) {
  .offcanvas__sticky--toolbar {
    padding: 14px 40px;
  }
}
@media only screen and (min-width: 768px) {
  .offcanvas__sticky--toolbar {
    padding: 14px 60px;
  }
}
@media only screen and (max-width: 991px) {
  .offcanvas__sticky--toolbar {
    display: block;
  }
}
.offcanvas__sticky--toolbar__btn {
  position: relative;
  text-align: center;
}

.offcanvas__sticky--toolbar__btn:hover .offcanvas__sticky--toolbar__icon {
  background: var(--primaryColor);
  color: var(--text-white-color);
}

.offcanvas__sticky--toolbar__btn > * {
  pointer-events: none;
}

.offcanvas__sticky--toolbar__btn.minicart__open--btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.offcanvas__sticky--toolbar__icon {
  width: 3.2rem;
  height: 3.2rem;
  text-align: center;
  background: var(--secondary-color);
  border-radius: 50%;
  color: var(--text-white-color);
  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;
}

.offcanvas__sticky--toolbar__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 6px;
}

.offcanvas__sticky--toolbar .items__count {
  left: 2.3rem;
  top: -9px;
}

.mob_menu_wrapper {
  display: none;
}

@media only screen and (max-width: 991px) {
  .desktop__menu__wrapper {
    display: none;
  }
  .mob_menu_wrapper {
    display: block;
  }
}
.mobile__component__right .headerarea__button {
  margin-left: 10px;
}

.mobile__component__right .default__button {
  padding: 10px 20px;
}

.mobile__component__right .headerarea__cart__icon a {
  height: 40px;
  width: 40px;
  line-height: 35px;
}

.mobile__component__right .headerarea__cart__icon a svg {
  width: 20px;
}

.mobile__log--img {
  max-width: 150px;
}
@media (min-width: 320px) and (max-width: 575px) {
  .mobile__log--img {
    max-width: 100px;
  }
}

.mob_menu_wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255, 240, 250, 0.05);
}

.headerarea--2 .mob_menu_wrapper {
  background: var(--gradientColor);
}

.offcanvas__header--menu__open--svg {
  color: var(--whiteColor);
}

.offcanvas__header--menu__open--btn:hover .offcanvas__header--menu__open--svg {
  color: var(--primaryColor);
}

.herobanner {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 3px solid #19c1e1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__display__none {
    display: none;
  }
}
@media (max-width: 767px) {
  .herobanner__display__none {
    display: none;
  }
}
.herobanner__title {
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__title {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__title {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .herobanner__title {
    margin-bottom: 15px;
  }
}
.herobanner__title h1,
.herobanner__title h2 {
  color: var(--whiteColor);
  font-size: 91px;
  font-style: normal;
  font-weight: 700;
  line-height: 98px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .herobanner__title h1,
  .herobanner__title h2 {
    font-size: 62px;
    line-height: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__title h1,
  .herobanner__title h2 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__title h1,
  .herobanner__title h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .herobanner__title h1,
  .herobanner__title h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner__title h1,
  .herobanner__title h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
.herobanner__title--mid h1,
.herobanner__title--mid h2 {
  font-size: 64px;
  line-height: 80px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__title--mid h1,
  .herobanner__title--mid h2 {
    font-size: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__title--mid h1,
  .herobanner__title--mid h2 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  .herobanner__title--mid h1,
  .herobanner__title--mid h2 {
    font-size: 26px;
    line-height: 40px;
  }
}
.herobanner__title--2 h1,
.herobanner__title--2 h2 {
  color: var(--blackColor);
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__title--2 h1,
  .herobanner__title--2 h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.herobanner__text p {
  color: var(--whiteColor);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  max-width: 80%;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__text p {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__text p {
    font-size: 16px;
    line-height: 30px;
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .herobanner__text p {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner__text p {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
.herobanner__button {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner__button {
    margin-top: 20px;
    flex-wrap: wrap;
  }
}
.herobanner__text--2 p {
  color: var(--blackColor);
}
.herobanner__img--position img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .herobanner__img--position img {
    max-width: 600px;
    bottom: auto;
    top: 0;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__img--position img {
    max-width: 500px;
    bottom: auto;
    top: 0;
    right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__img--position img {
    max-width: 60%;
    left: 0;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .herobanner__img--position img {
    max-width: 60%;
    left: 0;
    margin: auto;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner__img--position img {
    max-width: 90%;
  }
}
.herobanner__vector {
  position: absolute;
  right: 0;
  bottom: 0;
}
.herobanner__vector.hero__icon__1 {
  left: 120px;
  bottom: 85px;
  animation: cir-anim 6s linear 0s infinite alternate;
}
.herobanner__vector.hero__icon__2 {
  right: 42%;
  bottom: 15%;
  animation: 3s linear 0s infinite alternate none running dot-anim-2;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .herobanner__vector.hero__icon__2 {
    right: 43%;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__vector.hero__icon__2 {
    right: 25%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__vector.hero__icon__2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .herobanner__vector.hero__icon__2 {
    display: none;
  }
}
.herobanner__vector.hero__icon__3 {
  right: 160px;
  animation: dot-anim-2 3s linear 0s infinite alternate;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .herobanner__vector.hero__icon__3 {
    right: 5%;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__vector.hero__icon__3 {
    right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__vector.hero__icon__3 {
    right: 50px;
  }
}
@media (max-width: 767px) {
  .herobanner__vector.hero__icon__3 {
    right: 30px;
    width: 90%;
  }
}
.herobanner__vector.hero__icon__4 {
  top: 22%;
  right: 44%;
  animation: 3s linear 0s infinite normal none running move5;
}
.herobanner__icon--2 {
  top: 50%;
  position: absolute;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 999;
}
.herobanner__img--2 {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 50%;
}
.herobanner__img--2 img {
  width: 100%;
}
.herobanner__small__text span {
  font-size: 15px;
  font-weight: 700;
  color: var(--primaryColor);
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
  display: inline-block;
}
.herobanner__small__text span::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 30px;
  background: var(--primaryColor);
  top: 47%;
  left: 0;
}

.slider__bg__position .herobanner__single {
  background-position: center center !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__img.sp_top_90 {
    padding-top: 30px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .herobanner__img.sp_top_90 {
    padding-top: 30px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__img img.img-fluid {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .herobanner__img img.img-fluid {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .herobanner--2.d-flex {
    flex-wrap: wrap;
  }
  .herobanner--2.d-flex .herobanner__img--2 {
    position: static;
    max-width: 100%;
  }
  .herobanner--2.d-flex.herobanner__with__transparent__header .herobanner__content__wrapper {
    padding: 50px 0 60px;
  }
}
.herobanner__with__transparent__header .herobanner__content__wrapper {
  padding-top: 80px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__with__transparent__header .herobanner__content__wrapper {
    padding-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__with__transparent__header .herobanner__content__wrapper {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .herobanner__with__transparent__header .herobanner__content__wrapper {
    padding-top: 30px;
  }
}

.herobanner .bastun__brand__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 99;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner .bastun__brand__badge {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner .bastun__brand__badge {
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .herobanner .bastun__brand__badge {
    top: 37%;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner .bastun__brand__badge {
    top: 60%;
  }
}

.herobanner.herobanner--3 .bastun__brand__badge {
  top: auto;
  bottom: inherit;
}

.ht__white__bg {
  background: var(--whiteColor);
  color: var(--blackColor);
  padding: 0 5px;
}

.ht__gradient__bg {
  background: var(--gradientColor);
  padding: 0 10px;
}

.herobanner__arrow__1.slider__controls__arrows .arrow-btn {
  right: 49%;
  left: auto;
  bottom: 40px;
  top: auto;
  opacity: 0;
}

.herobanner:hover .herobanner__arrow__1.slider__controls__arrows .arrow-btn {
  opacity: 1;
  right: 50%;
}
@media (max-width: 767px) {
  .herobanner:hover .herobanner__arrow__1.slider__controls__arrows .arrow-btn {
    right: 45%;
  }
}

.herobanner__arrow__1.slider__controls__arrows .arrow-btn.swiper-button-next {
  bottom: 120px;
  right: 51%;
}

.herobanner:hover .herobanner__arrow__1.slider__controls__arrows .arrow-btn.swiper-button-next {
  right: 50%;
}
@media (max-width: 767px) {
  .herobanner:hover .herobanner__arrow__1.slider__controls__arrows .arrow-btn.swiper-button-next {
    right: 45%;
    bottom: 100px;
  }
}

.herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn {
  right: 150px;
  left: auto;
  bottom: 50%;
  top: auto;
  opacity: 0;
}
@media (max-width: 767px) {
  .herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn {
    right: 20px;
  }
}

.herobanner:hover .herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn {
  opacity: 1;
  right: 140px;
}
@media (max-width: 767px) {
  .herobanner:hover .herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn {
    right: 30px;
  }
}

.herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn.swiper-button-next {
  right: 130px;
  bottom: 40%;
}
@media (max-width: 767px) {
  .herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn.swiper-button-next {
    right: 20px;
    bottom: 35%;
  }
}

.herobanner:hover .herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn.swiper-button-next {
  right: 140px;
}
@media (max-width: 767px) {
  .herobanner:hover .herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn.swiper-button-next {
    right: 30px;
    bottom: 35%;
  }
}

.hero__simple__slider__arrow.slider__controls__arrows .arrow-btn {
  border-color: var(--blackColor);
}

.hero__simple__slider__arrow.slider__controls__arrows .arrow-btn.swiper-button-next {
  right: 10px;
}

.hero__simple__slider__arrow.slider__controls__arrows .arrow-btn.swiper-button-prev {
  left: 10px;
}

.hero__simple__slider__arrow.slider__controls__pagination .swiper-pagination {
  bottom: 20px;
}

.bg__image {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}

.herobanner__content__wrapper--2 .herobanner__title {
  margin-bottom: 20px;
}
.herobanner__content__wrapper--2 .herobanner__title h1,
.herobanner__content__wrapper--2 .herobanner__title h2 {
  font-size: 60px;
  line-height: 70px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__content__wrapper--2 .herobanner__title h1,
  .herobanner__content__wrapper--2 .herobanner__title h2 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .herobanner__content__wrapper--2 .herobanner__title h1,
  .herobanner__content__wrapper--2 .herobanner__title h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner__content__wrapper--2 .herobanner__title h1,
  .herobanner__content__wrapper--2 .herobanner__title h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (min-width: 1500px) and (max-width: 1920px) {
  .herobanner__content__wrapper--3 .herobanner__title h1,
  .herobanner__content__wrapper--3 .herobanner__title h2 {
    font-size: 80px;
    line-height: 100px;
  }
}

.herobanner__button .video__button {
  position: static;
  transform: none;
  margin-left: 20px;
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner__button .video__button {
    margin-top: 10px;
    margin-left: 0;
  }
}
.herobanner__button .video__button a {
  height: 70px;
  width: 70px;
  line-height: 70px;
  position: relative;
  border: 1px solid var(--borderColor);
}
.herobanner__button .video__button a::before {
  animation: 2s ease 0s infinite normal none running pulse_2;
  width: 70px;
  height: 70px;
  left: -1px;
  bottom: -1px;
}
.herobanner__button .video__button span {
  margin-left: 5px;
}
.herobanner__button .video__button.video__button--white span {
  color: var(--whiteColor);
}

.herobanner__front__img img {
  width: 100%;
}

.herobanner.herobanner__margin {
  margin: 50px 100px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 50px;
  border-radius: 50px;
  background: var(--borderColor);
}
@media (min-width: 1200px) and (max-width: 1365px) {
  .herobanner.herobanner__margin {
    margin: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner.herobanner__margin {
    margin: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner.herobanner__margin {
    margin: 50px;
  }
}
@media (max-width: 767px) {
  .herobanner.herobanner__margin {
    margin: 20px;
  }
}

.herobannerarea__price {
  font-size: 40px;
  font-weight: 700;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
  line-height: 1;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .herobannerarea__price {
    font-size: 30px;
  }
}
.herobannerarea__price del {
  color: var(--contentColor);
  font-size: 30px;
  font-weight: normal;
  margin-left: 10px;
}
.herobannerarea__price span {
  font-size: 12px;
  background: var(--secondaryColor);
  color: var(--whiteColor);
  padding: 5px 10px;
  border-radius: 5px;
  line-height: 1;
  margin-left: 15px;
}

.herobanner__content__wrapper--portfolio {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
  text-align: center;
}
.herobanner__content__wrapper--portfolio .herobanner__button {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 9999;
}
.herobanner__content__wrapper--portfolio .herobanner__title h1 {
  font-size: 175px;
  line-height: 1.1;
  letter-spacing: 1.5px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .herobanner__content__wrapper--portfolio .herobanner__title h1 {
    font-size: 145px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__content__wrapper--portfolio .herobanner__title h1 {
    font-size: 120px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__content__wrapper--portfolio .herobanner__title h1 {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .herobanner__content__wrapper--portfolio .herobanner__title h1 {
    font-size: 65px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner__content__wrapper--portfolio .herobanner__title h1 {
    font-size: 35px;
  }
}
.herobanner__content__wrapper--portfolio .herobanner__title h1 .text__strock {
  display: block;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.5);
  -webkit-text-stroke-width: 2px;
}
.herobanner__content__wrapper--portfolio .herobanner__title {
  width: 100%;
}

.herobanner__img--portfolio {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .herobanner__img--portfolio img.img-fluid {
    width: 55%;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .herobanner__img--portfolio img.img-fluid {
    width: 55%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__img--portfolio img.img-fluid {
    width: 80%;
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .herobanner__img--portfolio img.img-fluid {
    width: 80%;
    max-width: 80%;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner__img--portfolio img.img-fluid {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .herobanner__single--portfolio .height__970 {
    height: 700px;
  }
}
@media (max-width: 767px) {
  .herobanner__single--portfolio .height__970 {
    height: 600px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner__single--portfolio .height__970 {
    height: 500px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .herobanner.herobanner__front__img__wrapper {
    height: auto;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__content__wrapper--2 .herobanner__title {
    margin-bottom: 10px;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__content__wrapper--2 .herobanner__title h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__button {
    margin-top: 10px;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__front__img {
    margin-top: 30px;
    text-align: center;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__front__img img {
    max-width: 80%;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__single {
    padding: 50px 0px;
  }
}
@media (max-width: 767px) {
  .herobanner.herobanner__front__img__wrapper {
    height: auto;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__content__wrapper--2 .herobanner__title {
    margin-bottom: 10px;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__content__wrapper--2 .herobanner__title h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__button {
    margin-top: 10px;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__front__img {
    margin-top: 30px;
    text-align: center;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__front__img img {
    max-width: 80%;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__single {
    padding: 50px 0px;
    position: relative;
    z-index: 999;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .herobanner.herobanner__front__img__wrapper .herobanner__content__wrapper--2 .herobanner__title h1 {
    font-size: 24px;
    line-height: 35px;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__front__img img {
    max-width: 90%;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__button .video__button {
    margin-top: 0;
    margin-left: 6px;
  }
  .herobanner.herobanner__front__img__wrapper .herobanner__button .video__button .video__button__text {
    margin-left: 5px;
    font-size: 14px;
  }
  .herobanner.herobanner__front__img__wrapper .default__button {
    padding: 20px 10px;
  }
}
.service {
  position: relative;
  background-color: var(--navyBlue2);
}
.service__single__wraper {
  padding: 32px 45px 40px;
  background: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-radius: var(--borderRadius);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .service__single__wraper {
    padding: 25px 30px 37px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .service__single__wraper {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service__single__wraper {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .service__single__wraper {
    margin-bottom: 10px;
    padding: 20px;
  }
}
.service__single__wraper:hover .service__heading h5 a {
  color: var(--whiteColor);
}
.service__single__wraper:hover .service__text p {
  color: var(--whiteColor);
}
.service__single__wraper:hover .service__icon a {
  background: #0071bc;
}
.service__single__wraper:hover .service__img__bg img {
  opacity: 1;
  top: -60px;
}
.service__single__inner {
  position: relative;
  z-index: 99;
}
.service__img {
  margin-bottom: 25px;
}
.service__img img {
  max-width: 100%;
}
.service__img__bg img {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 9;
  opacity: 0;
  transition: var(--transition);
}
.service__heading {
  margin-bottom: 20px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .service__heading {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service__heading {
    margin-bottom: 7px;
  }
}
@media (max-width: 767px) {
  .service__heading {
    margin-bottom: 7px;
  }
}
.service__heading h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .service__heading h5 {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .service__heading h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .service__heading h5 {
    font-size: 16px;
  }
}
.service__heading h5 a {
  color: var(--blackColor);
}
.service__heading h5 a:hover {
  color: var(--primaryColor);
}
.service__text {
  margin-bottom: 25px;
}
.service__text p {
  color: var(--contentColor);
  font-weight: 400;
  line-height: 32px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .service__text p {
    font-size: 16px;
    line-height: 26px;
  }
}
.service__icon a {
  height: 62px;
  width: 62px;
  line-height: 58px;
  background: var(--pinkcolor);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  font-size: 30px;
}
.service__single__wraper--2 {
  padding: 45px 40px 45px 45px;
  text-align: start;
  position: relative;
  margin-bottom: 35px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .service__single__wraper--2 {
    padding: 45px 20px 45px 20px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service__single__wraper--2 {
    padding: 45px 20px 45px 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .service__single__wraper--2 {
    padding: 45px 20px 45px 20px;
    margin-bottom: 10px;
  }
}
.service__single__wraper--2:hover .direction__btn--2::after {
  opacity: 0;
}
.service__single__wraper--2:hover .direction__btn--2 svg path {
  stroke: #0071bc;
}
.service__single__wraper--2:hover .direction__btn--2 svg path {
  stroke: #0071bc;
}
.service__single__wraper--2:hover .service__bg__img svg stop {
  stop-color: #0071bc;
}
.service__single__wraper--2 .service__img {
  position: relative;
}
.service__single__wraper--2 .service__bg__img {
  position: absolute;
  top: -5px;
  left: -7px;
  z-index: -11;
}
.service__single__wraper--2 .service__bg__img svg stop {
  transition: var(--transition);
}
.service__single__wraper--2 .service__text {
  margin: 0;
}
.service__single__wraper--2 .service__text p {
  margin-bottom: 0;
}
.service__icon--2 {
  position: absolute;
  top: 40px;
  right: 10px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .service__icon--2 {
    right: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service__icon--2 {
    right: 0px;
  }
}
@media (max-width: 767px) {
  .service__icon--2 {
    right: 0px;
  }
}
.service__single__4 {
  padding: 40px 22px;
  background: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
  border-radius: 8px;
  -webkit-clip-path: polygon(0 0, 84% 0, 100% 10%, 100% 80%, 100% 100%, 16% 100%, 0 88%, 0 0);
  clip-path: polygon(0 0, 84% 0, 100% 10%, 100% 80%, 100% 100%, 16% 100%, 0 88%, 0 0);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .service__single__4 {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service__single__4 {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .service__single__4 {
    margin-bottom: 10px;
  }
}
.service__heading__4 {
  margin-bottom: 10px;
}
.service__heading__4 h3 {
  margin: 0;
}
.service__heading__4 h3 a {
  font-weight: 700;
  line-height: 30px;
  font-size: 20px;
  color: var(--blackColor);
}
.service__heading__4 h3 a:hover {
  color: var(--primaryColor);
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .service__heading__4 h3 a {
    line-height: 25px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .service__heading__4 h3 a {
    line-height: 25px;
    font-size: 18px;
  }
}
.service__img__4 {
  margin-bottom: 25px;
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}
.service__img__4 img {
  max-width: 100%;
}
.service__content__4 {
  margin-bottom: 22px;
}
.service__content__4 p {
  margin: 0;
}
.service__bitton__4 {
  margin-top: 60px;
}
.service__single__wraper__3 {
  padding: 10px 10px 22px 10px;
}
.service__single__wraper__3 .service__content {
  padding: 15px;
}

.service__line__animation {
  top: 31%;
  right: 144px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .service__line__animation {
    top: 25%;
    right: 68px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .service__line__animation {
    top: 10%;
    right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service__line__animation {
    top: 12%;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .service__line__animation {
    top: 180px;
    right: 30px;
  }
}

.service__single__wraper:hover .service__icon a.direction__btn--2 {
  background: #ffffff;
}

.service__single__wraper:hover .service__icon a.direction__btn--2:hover {
  background: #0071bc;
}

.service__details__img {
  margin-bottom: 25px;
}
.service__details__heading {
  margin-top: 20px;
}
.service__details__heading h4 {
  font-size: 40px;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .service__details__heading h4 {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service__details__heading h4 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .service__details__heading h4 {
    font-size: 28px;
  }
}
.service__details__text p {
  margin: 0;
  margin-bottom: 25px;
}
.service__details__planning__inner {
  padding: 44px 38px 16px 44px;
  background: var(--pinkcolor);
  border-radius: var(--borderRadius);
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .service__details__planning__inner {
    padding: 25px 20px 16px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .service__details__planning__inner {
    padding: 15px 10px 16px 21px;
  }
}
@media (max-width: 767px) {
  .service__details__planning__inner {
    padding: 15px 10px 16px 21px;
    margin-top: 20px;
  }
}
.service__details__planning__text p {
  margin: 0;
  line-height: 32px;
  margin-bottom: 12px;
}
.service__details__planning__heading h6 {
  font-size: 25px;
  font-weight: 700;
}
.service__details__planning {
  margin-top: 36px;
  margin-bottom: 30px;
}
.service__details__planning__img img {
  width: 100%;
}
.service__details__img img {
  width: 100%;
}
.service__details__button {
  margin-top: 35px;
}

.sidebar {
  margin-right: 77px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .sidebar {
    margin-right: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sidebar {
    margin-right: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar {
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .sidebar {
    margin-right: 0px;
  }
}
.sidebar__search {
  position: relative;
}
.sidebar__common__input {
  padding: 15px 0 15px 21px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(10, 6, 36, 0.12);
  background: var(--whiteColor);
  margin-bottom: 11px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sidebar__common__input {
    margin-bottom: 5px;
  }
}
#cw-connectivity .sidebar__common__input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(25, 193, 225, 0.22);
  background: linear-gradient(135deg, rgba(0, 113, 188, 0.06), rgba(25, 193, 225, 0.12));
  box-shadow: 0 10px 24px rgba(3, 28, 64, 0.08);
  color: var(--blackColor);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
#cw-connectivity .sidebar__common__input:hover,
#cw-connectivity .sidebar__common__input:focus,
#cw-connectivity .sidebar__common__input.active,
#cw-connectivity .sidebar__common__input[aria-current="page"] {
  transform: translateX(4px);
  border-color: #19C1E1;
  background: linear-gradient(135deg, rgba(0, 113, 188, 0.92), rgba(25, 193, 225, 0.92));
  box-shadow: 0 16px 34px rgba(3, 28, 64, 0.18);
  color: var(--whiteColor);
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar__common__input {
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .sidebar__common__input {
    margin-bottom: 5px;
  }
}
.sidebar__search__button {
  position: absolute;
  right: 22px;
  top: 20%;
  background: none;
  border: none;
}
.sidebar__widget {
  margin-bottom: 60px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sidebar__widget {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar__widget {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .sidebar__widget {
    margin-bottom: 20px;
  }
}
.sidebar__title {
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sidebar__title {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar__title {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .sidebar__title {
    margin-bottom: 15px;
  }
}
.sidebar__title h5 {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sidebar__title h5 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar__title h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sidebar__title h5 {
    font-size: 20px;
  }
}
.sidebar__list ul li {
  display: block;
  margin-bottom: 11px;
}
.sidebar__list ul li a {
  display: inline-block;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sidebar__list ul li a {
    font-size: 14px;
  }
}
.sidebar__list ul li a i {
  position: absolute;
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 15px;
}
.sidebar__button {
  padding: 30px;
  background: var(--pinkcolor);
  border-radius: var(--borderRadius);
}
.sidebar__button a {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.sidebar__button a i {
  position: absolute;
  right: 32px;
  top: 23px;
  font-size: 26px;
}
.sidebar__button a.sidebar__button__1 {
  margin-bottom: 20px;
}
.sidebar__post ul li {
  margin-bottom: 30px;
  display: block;
}
.sidebar__post ul li a {
  display: flex;
  align-items: center;
}
.sidebar__post__img {
  margin-right: 20px;
}
.sidebar__post__text h6 {
  margin-bottom: 5px;
  line-height: 24px;
}
.sidebar__post__text h6:hover {
  color: var(--primaryColor);
}
.sidebar__post__text span {
  font-size: 15px;
  font-weight: 500;
}
.sidebar__tag ul li {
  margin-right: 7px;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar__tag ul li {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .sidebar__tag ul li {
    margin-bottom: 10px;
  }
}
.sidebar__tag ul li a {
  padding: 9px 25px;
  border: 1px solid var(--contentColor);
  display: inline-block;
  border-radius: var(--borderRadius);
  position: relative;
  z-index: 111;
}
.sidebar__tag ul li a span {
  position: relative;
  z-index: 99;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .sidebar__tag ul li a {
    padding: 9px 21px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .sidebar__tag ul li a {
    padding: 9px 15px;
    font-size: 14px;
  }
}
.sidebar__tag ul li a:hover {
  color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
}
.sidebar__tag ul li a.active {
  color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
}
.sidebar__tag ul li a.active::after {
  opacity: 1;
}

@media (min-width: 992px) and (max-width: 1365px) {
  .service.sp_bottom_330 {
    padding-bottom: 230px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service.sp_bottom_330 {
    padding-bottom: 200px;
  }
}
@media (max-width: 767px) {
  .service.sp_bottom_330 {
    padding-bottom: 150px;
  }
}

.video__img {
  position: relative;
  overflow: hidden;
}
.video__img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--blackColor);
  opacity: 0.0;
  border-radius: var(--borderRadius);
}
.video__img img {
  width: 100%;
  border-radius: var(--borderRadius);
}
.video__small__img {
  position: absolute;
  top: 44px;
  right: 38%;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .video__small__img img {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .video__small__img img {
    display: none;
  }
}
@media (max-width: 767px) {
  .video__small__img img {
    display: none;
  }
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .video__small__img {
    top: 4px;
    right: 36%;
  }
}
.video__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video__button a {
  height: 104px;
  width: 104px;
  line-height: 104px;
  border-radius: 100%;
  background: var(--whiteColor);
  display: inline-block;
  text-align: center;
}
@media (max-width: 767px) {
  .video__button a {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
}
.video__button a:hover {
  background: var(--primaryColor);
}
.video__button a:hover svg path {
  fill: var(--whiteColor);
}
.video__button a::before {
  position: absolute;
  content: "";
  width: 104px;
  height: 104px;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .video__button a::before {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
}
.video__text h2 {
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  -webkit-text-stroke-width: 1px;
  font-size: 125px;
  font-weight: 700;
  position: absolute;
  margin: 0;
  line-height: 1;
  top: 50%;
  left: 150px;
  transform: translateY(-50%);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .video__text h2 {
    font-size: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .video__text h2 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .video__text h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .video__text h2 {
    left: 30px;
  }
}
.video__text--2 h2 {
  right: 150px;
  left: auto;
}
@media (max-width: 767px) {
  .video__text--2 h2 {
    right: 30px;
  }
}
.video__text__spacing {
  padding-left: 180px;
}
@media (max-width: 767px) {
  .video__text__spacing {
    padding-left: 50px;
  }
}

.video__nmt {
  margin-top: -190px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .video__nmt {
    margin-top: -150px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .video__nmt {
    margin-top: -100px;
  }
}
@media (max-width: 767px) {
  .video__nmt {
    margin-top: -100px;
  }
}

.video__2 .video__border {
  border-top: 1px dashed var(--borderColor2);
}
.video__2 .video__small__img {
  top: 44px;
  right: 8%;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .video__2 .video__small__img {
    top: 7px;
    right: 5%;
  }
}
.video__2 .video__button {
  left: 79%;
}

/*--
    - Animation keyframes
-----------------------------------------*/
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse_2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(254, 0, 148, 0.4);
    box-shadow: 0 0 0 0 rgba(254, 0, 148, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(254, 0, 148, 0);
    box-shadow: 0 0 0 45px rgba(254, 0, 148, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(254, 0, 148, 0);
    box-shadow: 0 0 0 0 rgba(254, 0, 148, 0);
  }
}
.faq__accordion .accordion-item {
  border: none;
}
.faq__accordion .accordion-item h2 button {
  margin-bottom: 20px;
  border: 1px solid var(--borderColor);
  font-weight: 700;
  border-radius: var(--borderRadius);
  background: var(--gradientColor);
  color: var(--whiteColor);
}

.accordion__img img {
  width: 100%;
}

.faq__accordion .accordion-item h2 button.accordion-button.collapsed {
  background: var(--borderColor);
  color: var(--blackColor);
}

.faq__accordion .accordion-body {
  border: 1px solid var(--borderColor);
  border-radius: 10px;
  margin-bottom: 20px;
}

.error__text__wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px dotted var(--borderColor);
  border-bottom: 1px dotted var(--borderColor);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 112px;
  padding-right: 112px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .error__text__wrapper {
    padding-top: 20px;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .error__text__wrapper {
    padding-top: 20px;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
  }
}
.error__text__wrapper h3 {
  font-size: 40px;
  font-weight: 700;
  width: 51%;
  margin: 0;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .error__text__wrapper h3 {
    width: 67%;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .error__text__wrapper h3 {
    width: 71%;
    font-size: 35px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .error__text__wrapper h3 {
    width: 71%;
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .error__text__wrapper h3 {
    width: 100%;
    font-size: 35px;
  }
}
.error__text__wrapper h3 span {
  font-style: italic;
  text-decoration-line: underline;
}

.about {
  position: relative;
}
.about__vision__wrapper--3 {
  margin-top: 60px;
}
.about__vision__wrapper--3 .about__misson h6 {
  color: var(--whiteColor);
}
.about__vision__wrapper--3 .about__misson h6::before {
  background: var(--whiteColor);
}
.about__vision__wrapper--3 .about__text__2 p {
  color: var(--whiteColor);
}
.about__vision__wrapper--3 .about__text__2 p a {
  color: var(--whiteColor);
  position: relative;
  text-decoration: underline;
}
.about__vision__wrapper--3 .about__number__inner {
  background: var(--primaryColor);
}
.about__img__wrapper {
  padding-left: 75px;
  padding-right: 45px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .about__img__wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__img__wrapper {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .about__img__wrapper {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 30px;
  }
}
.about__img__wrapper img {
  max-width: 100%;
}
.about__inner {
  padding-left: 35px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .about__inner {
    padding-left: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__inner {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .about__inner {
    padding-left: 0px;
  }
}
.about__misson {
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .about__misson {
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__misson {
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .about__misson {
    margin-bottom: 8px;
  }
}
.about__misson h6 {
  font-size: 26px;
  font-weight: 600;
  color: var(--blackColor);
  position: relative;
  display: inline-block;
  margin: 0;
}
@media (max-width: 767px) {
  .about__misson h6 {
    font-size: 21px;
  }
}
.about__misson h6:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--blackColor);
  bottom: 0;
  left: 0;
}
.about__mission__vission__wrapper {
  padding: 27px 25px 19px 25px;
  background: var(--pinkcolor);
  border-radius: 10px;
}
@media (min-width: 320px) and (max-width: 575px) {
  .about__mission__vission__wrapper {
    margin-bottom: 10px;
  }
}
.about__mission__vission__wrapper span {
  color: var(--blackColor);
  font-weight: 600;
}
.about__mission__vission {
  margin-top: 33px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .about__text__2 p {
    font-size: 15px;
  }
}
.about__text__2 p a {
  color: var(--blackColor);
  font-weight: 700;
  position: relative;
}
.about__text__2 p a:hover {
  color: var(--primaryColor);
}
.about__text__2 p a:hover:after {
  background: var(--primaryColor);
}
.about__text__2 p a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--blackColor);
  transition: 0.3s;
}
.about__text__3 {
  margin-bottom: 35px;
}
.about__number__inner {
  background: var(--gradientColor);
  text-align: center;
  width: 159px;
  transition: var(--transition);
  border-radius: var(--borderRadius);
  height: 159px;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 15;
  justify-content: center;
  animation: 3s linear 0s infinite normal none running move5;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__number__inner {
    width: 133px;
    height: 130px;
    top: 20px;
  }
}
@media (max-width: 767px) {
  .about__number__inner {
    width: 133px;
    height: 130px;
  }
}
.about__number__inner span {
  font-size: 52px;
  font-weight: 700;
  line-height: 35px;
  color: var(--whiteColor);
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__number__inner span {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .about__number__inner span {
    font-size: 45px;
  }
}
.about__number__inner p {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 500;
  line-height: 35px;
  margin: 0;
}
.about__number__position {
  position: absolute;
  right: 112px;
  top: -236px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .about__number__position {
    right: 40px;
    top: -189px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__number__position {
    top: -125px;
  }
}
@media (max-width: 767px) {
  .about__number__position {
    right: 0;
    top: -117px;
  }
}
.about__number__icon {
  position: absolute;
  right: 16px;
  top: 9px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__number__icon {
    right: 6px;
    top: 3px;
  }
}
@media (max-width: 767px) {
  .about__number__icon {
    right: 6px;
    top: 3px;
  }
}
.about__number__icon a svg path {
  stroke: var(--whiteColor);
}
.about__number {
  position: relative;
}
.about__big__title h1 {
  color: var(--whiteColor);
  font-size: 93px;
  font-weight: 700;
  position: absolute;
  bottom: 30px;
  line-height: 1;
  left: 35px;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
  -webkit-text-fill-color: var(--whiteColor);
  animation: 3s linear 0s infinite normal none running move5;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .about__big__title h1 {
    font-size: 70px;
    bottom: 19px;
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__big__title h1 {
    left: 0px;
  }
}
@media (max-width: 767px) {
  .about__big__title h1 {
    left: 0px;
    font-size: 50px;
    bottom: 0;
  }
}
.about__vision__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .about__vision__wrapper {
    margin-bottom: 30px;
    padding-top: 30px;
  }
}
.about__text__wrapper {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .about__text__wrapper {
    margin-left: 15px;
  }
}
.about__inner--2 {
  padding-left: 45px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .about__inner--2 {
    padding-left: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__inner--2 {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .about__inner--2 {
    padding-left: 0px;
  }
}
.about__inner--2 .about__vision__wrapper {
  margin-bottom: 0;
  align-items: start;
}
.about__inner--2 .about__button {
  margin-top: 50px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .about__inner--2 .about__button {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__inner--2 .about__button {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .about__inner--2 .about__button {
    margin-top: 20px;
  }
}
.about__img__wrapper--2 {
  padding: 0;
}
.about__img__wrapper--3 {
  padding: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about__img__3 {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .about__img__3 {
    margin-top: 20px;
  }
}
.about__img__3 img {
  width: 100%;
}
.about__white__bg .row {
  position: relative;
  z-index: 9;
}
.about__white__bg:after {
  position: absolute;
  height: 100%;
  content: "";
  width: 67%;
  left: 0;
  top: 0;
  z-index: 1;
  background: var(--whiteColor);
}
.about__white__bg.about__grident__bg:after {
  opacity: 0.4;
  background: var(--Gradient, linear-gradient(90deg, #00229E 0%, #6E1299 47.92%, #FE0094 100%));
}

.bg__primary {
  background: var(--primaryColor);
}

.ssl__img__1 {
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .ssl__img__1 {
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ssl__img__1 {
    left: 0;
  }
}
@media (max-width: 767px) {
  .ssl__img__1 {
    left: 0;
    top: 10px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .ssl__img__1 {
    left: -35px;
    top: -30px;
  }
}

.ssl__img__2 {
  position: absolute;
  top: 0;
  right: 30%;
}
@media (max-width: 767px) {
  .ssl__img__2 {
    top: -24px;
    right: 24%;
  }
}

.ssl__img__3 {
  position: absolute;
  top: 60px;
  right: 30%;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .ssl__img__3 {
    top: 16px;
  }
}
@media (max-width: 767px) {
  .ssl__img__3 {
    top: 0px;
    right: 25%;
  }
}

.portfolio__filter button {
  padding: 15px 25px;
  border: none;
  background: var(--pinkcolor);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  margin-right: 10px;
  position: relative;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .portfolio__filter button {
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .portfolio__filter button {
    margin-bottom: 10px;
    padding: 15px;
  }
}
.portfolio__filter button span {
  position: relative;
  z-index: 99;
}
.portfolio__filter button:hover {
  color: var(--whiteColor);
}
.portfolio__filter button.active {
  color: var(--whiteColor);
  background: var(--gradientColor);
}
.portfolio__img {
  position: relative;
}
.portfolio__content {
  padding: 20px 25px;
  background: var(--blackColor);
  border-radius: 10px;
  position: absolute;
  left: 20px;
  bottom: 0;
  transition: var(--transition);
  opacity: 0;
}
.portfolio__content a {
  color: var(--whiteColor);
}
.portfolio__content a:hover {
  color: var(--primaryColor);
}
.portfolio__content h6 {
  margin: 0;
  color: var(--whiteColor);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .portfolio__content h6 {
    font-size: 16px;
  }
}
.portfolio__content span {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 400;
}
.portfolio__single {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: var(--borderRadius);
}
.portfolio__single:hover .portfolio__content {
  opacity: 1;
  bottom: 20px;
}
.portfolio__single:hover .portfolio__img img {
  transform: scale(1.05);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .portfolio__single {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio__single {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .portfolio__single {
    margin-bottom: 10px;
  }
}
.portfolio__single img {
  border-radius: var(--borderRadius);
}
.portfolio__botton {
  margin-top: 50px;
}
.portfolio .filterDiv {
  display: none; /* Hidden by default */
}
.portfolio .filterDiv.show {
  display: block;
}

@media (min-width: 768px) and (max-width: 991px) {
  .portfolio .section__title.section__title--2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .portfolio .section__title.section__title--2 {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .portfolio__filter.gridFilter {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .portfolio__filter.gridFilter {
    text-align: left !important;
  }
}

.cta__area {
  margin-bottom: 115px;
}
@media (max-width: 767px) {
  .cta__area {
    margin-bottom: 80px;
  }
}
.cta__area__wrap {
  z-index: 999;
}
.cta__area__img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -445px;
}
@media (max-width: 767px) {
  .cta__area__img {
    bottom: -250px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta__area__img img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cta__area__img img {
    width: 100%;
  }
}

.cta__icon .cta__img__1 {
  left: 288px;
  bottom: 0;
}
.cta__icon .cta__img__2 {
  top: 5%;
  right: 36%;
}
.cta__icon .cta__img__3 {
  right: 0;
  bottom: 0;
}
.cta__icon .cta__img__4 {
  top: 0;
  left: 0;
}

.contact__input__wrapper {
  padding: 70px 70px 75px 70px;
  border-radius: var(--borderRadius);
  border: 1px solid var(--borderColor);
}
.contact__input__wrapper.contact__grident__bg {
  background: #fff;
  border: 1px solid #19C1E1;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .contact__input__wrapper {
    padding: 60px 60px 35px 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact__input__wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .contact__input__wrapper {
    margin-bottom: 30px;
    padding: 20px 20px 25px 20px;
  }
}
.contact__input__wrapper textarea {
  height: 150px;
  padding-top: 25px;
}
.contact__common__input {
  width: 100%;
  height: 58px;
  border: 1px solid var(--borderColor);
  background: var(--whiteColor);
  padding: 0 20px;
  border-radius: var(--borderRadius);
  margin-bottom: 25px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .contact__common__input {
    margin-bottom: 35px;
  }
}
/* ===========================
   Contact panel (centered, scoped)
   =========================== */

   .contact .contact__info {
    /* centered layout */
    display: flex;
    flex-direction: column;
    align-items: center;          /* <- centers children horizontally */
    text-align: center;
  
    /* look & feel */
    padding: 45px 40px 20px 40px; /* symmetric padding */
    background: linear-gradient(180deg, #0f1b2f 0%, #0ea5e9 85%) !important;
    margin-bottom: 30px;
    border-radius: var(--borderRadius);
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
  }
  
  @media (min-width: 992px) and (max-width: 1365px) {
    .contact .contact__info { padding: 30px 16px 16px 16px; }
  }
  @media (max-width: 767px) {
    .contact .contact__info { padding: 30px 16px 16px 16px; }
  }
  
  /* Each row stacked & centered */
  .contact .contact__single__item {
    display: flex;
    flex-direction: column;       /* icon on top, text below */
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 26px auto;     /* center the block in the card */
    max-width: 520px;             /* keeps long lines pleasant */
    width: 100%;
  }
  
  /* Icon block */
  .contact .contact__icon { margin: 0 !important; }
  
  /* Semi-transparent white chip + blue icon */
  .contact .contact__icon span,
  .contact .contact__icon > i {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88) !important;  /* frosted white */
    color: #0ea5e9 !important;                         /* icon colour */
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
  }
  .contact .contact__icon span i { color: #0ea5e9 !important; }
  
  /* Typography on gradient */
  .contact .contact__text { text-align: center; }
  .contact .contact__text h6 {
    font-size: 17px;
    font-weight: 800;
    text-decoration-line: underline;
    color: #ffffff !important;
    margin: 0 0 6px 0;
  }
  .contact .contact__text p {
    color: #ffffff !important;
    margin: 0 0 4px 0;
  }
  
  /* Links: white → off-white on hover */
  .contact .contact__text a,
  .contact .contact__text a:visited {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
  }
  .contact .contact__text a:hover,
  .contact .contact__text a:focus-visible {
    color: #f1f5f9 !important; /* subtle off-white */
    text-decoration: underline;
    outline: none;
  }
  
  /* Heading sizes (unchanged) */
  .contact .contact__heading h3 {
    font-size: 45px;
    line-height: 60px;
  }
  .is_dark .contact__input__wrapper.contact__grident__bg .contact__form_intro .contact__heading h3 {
    color: #2489b5;
  }
  .is_dark .contact__input__wrapper.contact__grident__bg .contact__form_intro_text {
    color: #0f1b2f;
  }
  @media (min-width: 768px) and (max-width: 991px) {
    .contact .contact__heading h3 { font-size: 35px; line-height: 50px; }
  }
  @media (max-width: 767px) {
    .contact .contact__heading h3 { font-size: 30px; line-height: 45px; }
  }
  
  /* Right column offset — remove left padding only in this section */
  .contact .contact__info__right { padding-left: 0 !important; }
  @media (min-width: 768px) and (max-width: 991px) {
    .contact .contact__info__right { padding-left: 0 !important; }
  }
  @media (max-width: 767px) {
    .contact .contact__info__right { padding-left: 0 !important; }
  }
  
  /* Illustration polish (optional) */
  .contact .contact__img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
  }
  
  /* Map rounding */
  .contact .contact__map iframe { border-radius: 10px; }
  @media (max-width: 767px) {
    .contact .contact__map iframe { height: 300px; }
  }

  /* Cards: translucent white, centered, small gap */
.contact .contact__single__item { margin-bottom: 0; } /* neutralise old gap */
.contact .contact__card{
  width:100%;
  margin:0 auto 14px auto;                 /* small gap below each card */
  padding:18px 20px;
  border-radius:16px;
  background:rgba(255,255,255,0.10);       /* glassy panel over gradient */
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 8px 24px rgba(0,0,0,.18);
  backdrop-filter:saturate(140%) blur(6px); /* graceful fallback if no support */
  display:flex;
  flex-direction:column;
  align-items:center;                       /* truly centered */
  text-align:center;
}

/* Keep icon chip contrast strong inside the new cards */
.contact .contact__card .contact__icon span,
.contact .contact__card .contact__icon > i{
  background:rgba(255,255,255,0.92) !important;
  color:#0ea5e9 !important;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
}

/* Tighten text spacing inside cards */
.contact .contact__card .contact__text h6{ margin-bottom:6px; }
.contact .contact__card .contact__text p{ margin-bottom:2px; }
.cw-mapcard{
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  background: #0f1b2f;
}
.cw-mapcard__head{
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  padding:14px 16px; color:#fff;
  background: linear-gradient(180deg,#005896 0%, #0ea5e9 85%);
}
.cw-mapcard__head h4{
  margin:0; color:#fff; font:700 16px/1.3 Helvetica,Arial,sans-serif;
}
.cw-mapcard__btn{
  display:inline-block; padding:8px 12px; border-radius:10px;
  background:#ffffff20; color:#fff; text-decoration:none; font-weight:800; font-size:12px;
}
.cw-mapcard__btn:hover{ background:#ffffff30; }
.cw-mapcard__frame{
  width:100%; height:450px; background:#000;
}
@media (max-width: 767px){
  .cw-mapcard__frame{ height:300px; }
}

/* Screen-reader helper if you use it elsewhere too */
.sr-only{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}


.bg__black .contact__common__input {
  background: transparent;
  color: var(--whiteColor);
}

.about__list ul {
  display: flex;
  flex-wrap: wrap;
}
.about__list ul li {
  width: 50%;
  margin-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .about__list ul li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about__list ul li {
    width: 100%;
  }
}
.about__list ul li i {
  background: var(--gradientColor);
  margin-right: 10px;
  color: var(--whiteColor);
  border-radius: 20px;
  height: 20px;
  width: 20px;
  display: inline-block;
  line-height: 21px;
  text-align: center;
}

.bg__black .about__list ul li {
  color: var(--whiteColor);
}

.bg__black .about__inner--2 p {
  color: var(--whiteColor);
}

.single-progress {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}
.single-progress .title {
  font-weight: 400;
  margin-bottom: 0;
  color: var(--blackColor);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.progress {
  height: 6px;
  overflow: visible;
  background-color: var(--greyColor);
  border-radius: 10px;
}
.progress .progress-bar {
  border-radius: 10px;
  width: 0;
  height: 100%;
  background-color: var(--primaryColor);
  transition: width 0.5s ease;
  overflow: visible;
}
.progress .progress-bar.progress__gradient {
  background: var(--gradientColor);
}
.progress .progress-number {
  position: absolute;
  font-size: 14px;
  top: 0;
  line-height: 24px;
  right: 0;
  z-index: 1;
  color: var(--blackColor);
}

.skill__sets {
  background: var(--whiteColor);
  padding: 50px 50px 60px;
  border-radius: var(--borderRadius);
}
@media (min-width: 320px) and (max-width: 575px) {
  .skill__sets {
    padding: 20px 20px 30px;
  }
}

.about__hiring__list ul li {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  font-size: 20px;
  border-bottom: 1px solid var(--borderColor);
  margin-bottom: 20px;
  padding-left: 10px;
}
.about__hiring__list ul li:last-child {
  border: none;
}
.about__hiring__list ul li svg {
  color: var(--secondaryColor);
  margin-right: 15px;
  width: 35px;
  height: 35px;
}
.about__hiring__list ul li:hover {
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}

.blog__single {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--borderColor2);
  padding-top: 20px;
  padding-bottom: 20px;
}
.blog__single--no-date {
  gap: 0;
}
.blog__single--no-date .blog__img {
  flex: 0 0 280px;
  width: 280px;
  margin-right: 36px;
}
.blog__single--no-date .blog__content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  margin-right: 36px;
}
.blog__single--no-date .blog__icon {
  margin-left: auto;
  flex: 0 0 auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog__single {
    flex-wrap: wrap;
  }
  .blog__single--no-date .blog__img,
  .blog__single--no-date .blog__content {
    width: 100%;
    flex-basis: 100%;
    margin-right: 0;
  }
  .blog__single--no-date .blog__content {
    margin-bottom: 24px;
  }
  .blog__single--no-date .blog__icon {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .blog__single {
    flex-wrap: wrap;
  }
  .blog__single--no-date .blog__img,
  .blog__single--no-date .blog__content {
    width: 100%;
    flex-basis: 100%;
    margin-right: 0;
  }
  .blog__single--no-date .blog__content {
    margin-bottom: 24px;
  }
  .blog__single--no-date .blog__icon {
    margin-left: 0;
  }
}
.blog__single:hover .blog__date::after {
  opacity: 1;
}
.blog__single:hover .blog__date__inner {
  background: transparent;
}
.blog__single:hover .blog__date__inner span {
  color: var(--whiteColor);
}
.blog__single:hover .blog__date__inner p {
  color: var(--whiteColor);
}
.blog__single:hover .blog__img img {
  transform: rotate(4deg);
}
.blog__section__button.text__end {
  text-align: end;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog__section__button.text__end {
    text-align: start;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .blog__section__button.text__end {
    text-align: start;
    margin-top: 30px;
  }
}
.blog__date {
  position: relative;
}
.blog__date__inner {
  background: var(--whiteColor);
  text-align: center;
  width: 164px;
  transition: var(--transition);
  border-radius: var(--borderRadius);
  height: 164px;
  margin-right: 75px;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 15;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .blog__date__inner {
    margin-right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__date__inner {
    width: 130px;
    height: 124px;
    margin-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog__date__inner {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .blog__date__inner {
    margin-right: 20px;
    margin-bottom: 30px;
    width: 130px;
    height: 124px;
  }
}
.blog__date::after {
  background: var(--gradientColor);
  position: absolute;
  border-radius: var(--borderRadius);
  left: 0;
  top: 0;
  height: 164px;
  width: 164px;
  content: "";
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  opacity: 0;
  z-index: 9;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__date::after {
    width: 130px;
    height: 124px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .blog__date::after {
    width: 130px;
    height: 124px;
  }
}
.blog__date span {
  color: var(--blackColor);
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__date span {
    font-size: 40px;
    line-height: 50px;
  }
}
.blog__date p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 30px;
  width: 100%;
}
.blog__img {
  margin-right: 65px;
  transition: var(--transition);
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .blog__img {
    margin-right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__img {
    margin-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog__img {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .blog__img {
    margin-right: 20px;
    margin-bottom: 30px;
  }
}
.blog__img img {
  width: 100%;
}
.blog__content {
  max-width: 470px;
  margin-right: 110px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .blog__content {
    margin-right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__content {
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .blog__content {
    margin-right: 20px;
    margin-bottom: 30px;
  }
}
.blog__content h6 {
  margin: 0;
  margin-bottom: 13px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__content h6 {
    margin-bottom: 0px;
  }
}
.blog__content h6 a {
  font-size: 21px;
  font-weight: 600;
  line-height: 33px;
  color: var(--blackColor);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__content h6 a {
    font-size: 18px;
  }
}
.blog__content h6 a:hover {
  color: var(--primaryColor);
}
.blog__content p {
  line-height: 32px;
  margin: 0;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__content p {
    font-size: 15px;
  }
}

.blog__2__icon {
  animation: dot-anim-2 3s linear 0s infinite alternate;
}
.blog__2__small__img {
  text-align: end;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog__2__small__img {
    text-align: start;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .blog__2__small__img {
    text-align: start;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.blog__2__img img {
  width: 100%;
}
.blog__2__wrapper {
  padding: 40px 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__2__wrapper {
    padding: 30px 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog__2__wrapper {
    padding: 30px 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .blog__2__wrapper {
    padding: 30px 30px;
    margin-bottom: 10px;
  }
}
.blog__2__wrapper:hover::before {
  opacity: 0.2;
}
.blog__2__wrapper:hover::after {
  opacity: 0.7;
}
.blog__2__wrapper:before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  background: url(../img/blog/blog__hover.png);
  top: 0;
  left: 0;
  opacity: 0;
  transition: var(--transition);
  background-size: cover;
}
.blog__2__inner {
  position: relative;
  z-index: 1111;
}
.blog__2__number {
  width: 102px;
  height: 102px;
  background: var(--whiteColor);
  text-align: center;
  transition: var(--transition);
  border-radius: var(--borderRadius);
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 15;
  margin: 0 auto;
  margin-top: -56px;
}
.blog__2__number span {
  color: var(--primaryColor);
  font-size: 50px;
  font-weight: 700;
  width: 100%;
  margin-bottom: 10px;
}
.blog__2__number p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  width: 100%;
}
.blog__2__heading {
  margin-top: 50px;
}
.blog__2__heading h3 a {
  color: var(--whiteColor);
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__2__heading h3 a {
    font-size: 21px;
  }
}
.blog__2__heading h3 a:hover {
  color: var(--primaryColor);
}
.blog__2__text p {
  color: var(--whiteColor);
}
.blog__2__button {
  margin-top: 20px;
}

.blog__4__section__title__text {
  margin-bottom: 30px;
}
.blog__4__padding__right {
  padding-right: 90px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__4__padding__right {
    padding-right: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog__4__padding__right {
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .blog__4__padding__right {
    padding-right: 0px;
  }
}
.blog__4__single {
  padding: 35px;
  border: 1px solid var(--borderColor2);
  border-radius: var(--borderRadius);
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__4__single {
    padding: 20px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog__4__single {
    padding: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .blog__4__single {
    padding: 20px;
    margin-bottom: 10px;
  }
}
.blog__4__img {
  margin-bottom: 30px;
}
.blog__4__img img {
  width: 100%;
}
.blog__4__time {
  margin-bottom: 30px;
}
.blog__4__time p {
  font-size: 15px;
  background: var(--pinkcolor);
  padding: 5px 15px;
  border-radius: var(--borderRadius);
  margin: 0;
  display: inline-block;
  font-weight: 600;
}
.blog__4__time p.bg__white {
  background: var(--whiteColor);
}
.blog__4__heading h6 a {
  color: var(--blackColor);
  font-weight: 700;
  font-size: 22px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .blog__4__heading h6 a {
    font-size: 20px;
  }
}
.blog__4__heading h6 a:hover {
  color: var(--primaryColor);
}
.blog__4__text {
  margin-bottom: 25px;
}
.blog__4__text p {
  margin: 0;
}
.blog__4__button a {
  padding: 15px 35px;
}

.blog__3__single {
  border: none;
  background: var(--whiteColor);
}

.bg__pink {
  background: var(--pinkcolor);
}

.blog__details__img__wrapper {
  padding: 40px;
  background: var(--pinkcolor);
  margin-bottom: 40px;
  border-radius: var(--borderRadius);
}
.blog__details__img__wrapper img {
  width: 100%;
}
.blog__details__small__button span {
  padding: 10px 15px;
  background: var(--gradientColor);
  color: var(--whiteColor);
  border-radius: var(--borderRadius);
}
.blog__details__img img {
  margin-bottom: 30px;
}
.blog__details__heading {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog__details__heading {
    margin-bottom: 10px;
  }
}
.blog__details__heading h4 {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .blog__details__heading h4 {
    font-size: 20px;
  }
}
.blog__details__text {
  margin-bottom: 30px;
}
.blog__details__list {
  margin-bottom: 25px;
}
.blog__details__list ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.blog__details__list ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: var(--contentColor);
  border-radius: 100%;
  top: 13px;
  left: 0;
}
.blog__details__text--2 p {
  padding: 41px 30px;
  background: var(--gradientColor);
  color: var(--whiteColor);
  border-radius: var(--borderRadius);
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  text-decoration-line: underline;
}
.blog__details__social__icon {
  background: var(--pinkcolor);
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.blog__details__social__icon ul {
  display: flex;
  display: flex;
  align-items: center;
}
.blog__details__social__icon ul li {
  margin-right: 13px;
}
@media (max-width: 767px) {
  .blog__details__social__icon ul li {
    margin-right: 10px;
  }
}
.blog__details__social__icon ul li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  background: var(--whiteColor);
  text-align: center;
  border-radius: 100%;
}
.blog__details__social__icon ul li a:hover span {
  z-index: 99;
  position: relative;
  color: var(--whiteColor);
}
.blog__details__social__icon ul li a::after {
  border-radius: 100%;
  transition: var(--transition);
}
@media (max-width: 767px) {
  .blog__details__social__icon ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.blog__details__share {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .blog__details__share {
    margin-right: 10px;
  }
}
.blog__details__share span {
  font-weight: 700;
}
@media (max-width: 767px) {
  .blog__details__share span {
    font-size: 15px;
  }
}

.project__single {
  margin-bottom: 27px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__single {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__single {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .project__single {
    margin-bottom: 10px;
  }
}
.project__img {
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__img {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__img {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .project__img {
    margin-bottom: 10px;
  }
}
.project__img img {
  max-width: 100%;
}
.project__section__img.text__end {
  text-align: end;
}
@media (max-width: 767px) {
  .project__section__img.text__end {
    text-align: start;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .project__bottom__button {
    margin-bottom: 30px;
  }
}
.project__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project__icon a {
  background: var(--pinkcolor);
}
.project__heading {
  max-width: 55%;
}
.project__heading h3 a {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--blackColor);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__heading h3 a {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__heading h3 a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .project__heading h3 a {
    font-size: 15px;
    line-height: 22px;
  }
}
.project__heading h3 a:hover {
  color: var(--primaryColor);
}
.project__margin {
  background: var(--whiteColor);
  margin-top: -650px;
  border-radius: var(--borderRadius);
  position: relative;
  margin-left: 185px;
  margin-right: 185px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .project__margin {
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__margin {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__margin {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 767px) {
  .project__margin {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.project__bottom {
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  padding: 50px 0;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__bottom {
    padding: 40px 0;
  }
}
.project__bottom__text {
  padding-left: 70px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__bottom__text {
    padding-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .project__bottom__text {
    padding-left: 0;
    margin-top: 30px;
  }
}
.project__bottom__text p {
  font-size: 17px;
  font-weight: 400;
  line-height: 32px;
  color: var(--contentColor);
  margin: 0;
}
.project__bottom__text p a {
  font-style: italic;
  text-decoration-line: underline;
  font-weight: 700;
  color: var(--blackColor);
}
.project__bottom__text p a:hover {
  color: var(--primaryColor);
}
.project__bottom__img {
  animation: dot-anim-2 3s linear 0s infinite alternate;
}
.project__heading--2 {
  position: absolute;
  bottom: 30px;
  left: 35px;
  z-index: 11;
}
.project__heading--2 h3 a {
  color: var(--whiteColor);
}
.project__icon--2 {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 11;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__icon--2 {
    right: 18px;
  }
}
@media (max-width: 767px) {
  .project__icon--2 {
    right: 10px;
  }
}
.project__img--2 {
  position: relative;
}
.project__img--2::after {
  background: var(--gradientColor2);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  border-radius: var(--borderRadius);
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
}
.project__img--2::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 95%;
  display: block;
  z-index: 1;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--secondaryColor) 120%);
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  cursor: pointer;
  opacity: 0;
}
.project__single:hover .project__img--2::after {
  opacity: 0;
}
.project__single:hover .project__img--2::before {
  opacity: 1;
}

.pink__color {
  background: var(--pinkcolor);
  height: 790px;
  width: 100%;
}

.project__small__img img {
  position: absolute;
}
.project__small__img img.project__img__2 {
  top: -35px;
  right: -40px;
  animation: dot-anim-2 3s linear 0s infinite alternate;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__small__img img.project__img__2 {
    top: -20px;
    right: -25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__small__img img.project__img__2 {
    right: -30px;
  }
}
@media (max-width: 767px) {
  .project__small__img img.project__img__2 {
    right: 20px;
  }
}
.project__small__img img.project__img__1 {
  top: -35px;
  left: -40px;
  animation: dot-anim-2 3s linear 0s infinite alternate;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__small__img img.project__img__1 {
    top: -20px;
    left: -25px;
  }
}
@media (max-width: 767px) {
  .project__small__img img.project__img__1 {
    left: 20px;
  }
}

.project__3__name {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  padding-right: 14px;
  background: var(--whiteColor);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 10px;
  left: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-radius: var(--borderRadius);
}
.project__3__name h6 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__3__name h6 {
    font-size: 17px;
    line-height: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__3__name h6 {
    font-size: 20px;
    line-height: 25px;
  }
}
.project__3__icon a {
  height: 62px;
  width: 62px;
  line-height: 62px;
  text-align: center;
  background: var(--blackColor);
  border-radius: 100%;
  display: inline-block;
}
.project__3__img {
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__3__img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .project__3__img {
    margin-bottom: 20px;
  }
}
.project__3__img img {
  width: 100%;
}
.project__3__img:hover::before {
  opacity: 0.6;
  visibility: visible;
}
.project__3__img:hover .project__3__name {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
}
.project__3__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: var(--gradientColor);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-radius: var(--borderRadius);
}
.project__3__button {
  margin-top: 60px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__3__button {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .project__3__button {
    margin-top: 20px;
  }
}
.project__3 .direction__btn svg path {
  stroke: var(--whiteColor);
}

.project__details__sidebar__info {
  padding: 50px 58px 50px 38px;
  background: var(--gradientColor);
  border-radius: var(--borderRadius);
  margin-bottom: 50px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__details__sidebar__info {
    padding: 40px 28px 30px 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__details__sidebar__info {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .project__details__sidebar__info {
    padding: 15px 15px 15px 14px;
    margin-bottom: 20px;
  }
}
.project__details__sidebar__heading {
  margin-bottom: 25px;
}
.project__details__sidebar__heading.get__quote__heading h6 {
  color: var(--blackColor);
}
.project__details__sidebar__heading h6 {
  margin: 0;
  color: var(--whiteColor);
  font-size: 26px;
  font-weight: 700;
}
.project__details__sidebar__list ul li {
  margin-bottom: 25px;
  display: block;
}
.project__details__sidebar__list ul li span {
  color: var(--whiteColor);
  margin-bottom: 10px;
  font-weight: 400;
}
.project__details__sidebar__list ul li p {
  margin: 0;
  color: var(--whiteColor);
  font-weight: 700;
}
.project__details__sidebar__icon ul li {
  margin-right: 13px;
}
.project__details__sidebar__icon ul li a {
  background: var(--whiteColor);
  border: none;
}
.project__details__get__quote {
  margin-bottom: 50px;
  background: var(--pinkcolor);
  padding: 50px 50px 50px 30px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__details__get__quote {
    padding: 35px 25px 25px 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__details__get__quote {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .project__details__get__quote {
    padding: 15px 15px 15px 14px;
    margin-bottom: 20px;
  }
}
.project__details__get__quote__input input {
  border: none;
}
.project__details__get__quote__input textarea {
  height: 250px;
  width: 100%;
  border: none;
}
.project__details__get__quote__button {
  margin-top: 10px;
}
.project__details__challenges {
  padding: 46px 44px 42px 55px;
  background: var(--pinkcolor);
  margin-top: 40px;
}
@media (max-width: 767px) {
  .project__details__challenges {
    padding: 26px 10px 12px 25px;
  }
}
.project__details__challenges__heading {
  margin-bottom: 10px;
}
.project__details__challenges__heading h6 {
  color: var(--blackColor);
  font-size: 25px;
  font-weight: 700;
  margin: 0;
}
.project__details__challenges__text {
  font-weight: 600;
  line-height: 32px;
  text-decoration-line: underline;
  color: var(--blackColor);
}
.project__details__button {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .project__details__button {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project__details__button {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .project__details__button {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.project__details__bottom__border {
  border-bottom: 1px dotted var(--contentColor);
}

.bastun__brand__badge.related__project__badge {
  position: absolute;
  left: 50%;
  top: 35%;
  width: auto;
  transform: translate(-50%, -50%);
}

.projects__nav__wrap {
  display: flex;
  justify-content: center;
}

.projects__nav__wrap .nav-item img {
  width: 100%;
  border-radius: 10px;
}

.projects__img img {
  width: 100%;
}

.projects__nav__wrap .nav-item {
  width: 20%;
  padding: 20px 10px;
  border-radius: 10px;
}

.team {
  overflow: hidden;
}
.team__left {
  background: var(--navyBlue);
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 635px;
  top: 0;
  padding: 80px;
  display: flex;
  align-items: center;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .team__left {
    max-width: 535px;
    padding: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__left {
    max-width: 500px;
    padding: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__left {
    display: none;
  }
}
@media (max-width: 767px) {
  .team__left {
    display: none;
  }
}
.team__left .section__title__heading h3 {
  color: var(--whiteColor);
}
.team__left .section__title__text p {
  color: var(--whiteColor);
  max-width: 90%;
}
.team__left__wrap {
  max-width: 350px;
}
.team__left__img img {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .team__left__img img {
    bottom: -100px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__left__img img {
    bottom: -150px;
  }
}
.team__img {
  margin-bottom: 30px;
}
.team__img img {
  z-index: 11111;
  position: relative;
  max-width: 100%;
}
.team__name h6 {
  margin: 0;
  margin-bottom: 5px;
}
.team__name h6 a {
  color: var(--whiteColor);
  font-size: 24px;
  font-weight: 700;
  position: relative;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .team__name h6 a {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__name h6 a {
    font-size: 18px;
  }
}
.team__name h6 a:hover {
  color: var(--primaryColor);
}
.team__name h6 a:hover::after {
  background: var(--primaryColor);
}
.team__name h6 a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--whiteColor);
  left: 0;
  bottom: 0;
}
.team__name span {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  opacity: 0.6;
}
.team__right {
  position: relative;
  padding-left: 120px;
  padding-right: 120px;
}
@media (max-width: 767px) {
  .team__right {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__right {
    padding-right: 30px;
  }
}
.team__right [class*=col-] {
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__right [class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__right .row {
    margin: 0 -10px;
  }
}
.team__icon {
  position: absolute;
  right: 0;
  top: -120px;
  animation: 3s linear 0s infinite alternate none running dot-anim-2;
}
@media (max-width: 767px) {
  .team__icon {
    right: 10px;
    top: -80px;
  }
}
.team__padding {
  padding-top: 90px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .team__padding {
    padding-top: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__padding {
    padding-top: 110px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__padding {
    padding-top: 110px;
  }
}
@media (max-width: 767px) {
  .team__padding {
    padding-top: 110px;
  }
}

.team__member__single {
  padding: 40px;
  text-align: center;
  border: 1px solid var(--borderColor);
  position: relative;
  border-radius: var(--borderRadius);
  transition: var(--transition);
}
@media (min-width: 1366px) and (max-width: 1499px), (min-width: 992px) and (max-width: 1365px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .team__member__single {
    padding: 20px;
  }
}
.team__member__single:hover {
  border: 1px solid var(--blackColor);
}
.team__member__single:hover .team__member__name h6 a {
  color: var(--whiteColor);
}
.team__member__single:hover .team__member__name p {
  color: var(--whiteColor);
}
.team__member__single::after {
  transform: rotate(5deg);
}
.team__member__single__inner {
  position: relative;
  z-index: 999;
}
.team__member__img {
  margin-bottom: 30px;
  margin-top: -120px;
}
.team__member__name h6 {
  margin: 0;
}
.team__member__name h6 a {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  color: var(--blackColor);
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .team__member__name h6 a {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__member__name h6 a {
    font-size: 20px;
  }
}
.team__member__name h6 a:hover {
  color: var(--primaryColor);
}
.team__member__name p {
  color: var(--contentColor);
  font-size: 15px;
}
.team__member__icon ul {
  background: var(--pinkcolor);
  border-radius: var(--borderRadius);
  padding: 8px 0;
  margin-right: 40px;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .team__member__icon ul {
    margin-right: 20px;
    margin-left: 20px;
  }
}
.team__member__icon ul li {
  margin-right: 10px;
}
.team__member__icon ul li a {
  height: 52px;
  width: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 15px;
  background: var(--whiteColor);
  display: inline-block;
  border-radius: 100%;
  transition: 0.3s;
}
.team__member__icon ul li a i {
  position: relative;
  z-index: 99;
}
.team__member__icon ul li a:hover {
  color: var(--whiteColor);
}
.team__member__icon--2 ul {
  margin: 0;
}
.team__member__icon--2 ul li a:hover {
  color: var(--primaryColor);
}
.team__member__single__4 {
  padding: 30px;
  display: flex;
  align-items: center;
  border: 1px solid var(--borderColor);
  border-radius: 10px;
  border: 1px solid rgba(10, 6, 36, 0.1);
  background: var(--whiteColor);
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__member__single__4 {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__member__single__4 {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .team__member__single__4 {
    margin-bottom: 10px;
  }
}
.team__member__single__4:hover .team__member__content__4 h6 a {
  color: var(--whiteColor);
}
.team__member__single__4:hover .team__member__content__4 span {
  color: var(--whiteColor);
}
.team__member__img__4 {
  margin-right: 30px;
  position: relative;
  z-index: 1111;
  max-width: 100px;
}
.team__member__img__4 img {
  max-width: 100%;
}
.team__member__content__4 {
  position: relative;
  z-index: 1111;
}
.team__member__content__4 h6 {
  margin: 0;
}
.team__member__content__4 h6 a {
  font-weight: 700;
  line-height: 30px;
  color: var(--blackColor);
  font-size: 20px;
}
.team__member__content__4 h6 a:hover {
  color: var(--primaryColor);
}
.team__member__content__4 span {
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  transition: var(--transition);
}

@media (min-width: 1500px) and (max-width: 1920px) {
  .team__member__3 .container-fluid {
    padding-left: 300px;
    padding-right: 195px;
  }
}
.team__member__3__single {
  background: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: var(--borderRadius);
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
  z-index: 9;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__member__3__single {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__member__3__single {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .team__member__3__single {
    margin-bottom: 10px;
  }
}
.team__member__3__single::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 34, 158, 0) 0%, #00229E 100%);
  transition: var(--transition);
  opacity: 0;
  border-radius: var(--borderRadius);
}
.team__member__3__single__inner {
  position: relative;
  z-index: 99;
  padding-top: 40px;
}
.team__member__3__single:hover .team__member__name h6 a {
  color: var(--whiteColor);
}
.team__member__3__single:hover .team__member__name h6 a:hover {
  color: var(--primaryColor);
}
.team__member__3__single:hover .team__member__name p {
  color: var(--whiteColor);
}
.team__member__3__single:hover::after {
  opacity: 1;
}
.team__member__3__single.team__member__border {
  border: 1px solid var(--borderColor);
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__member__3__single.team__member__border {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__member__3__single.team__member__border {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .team__member__3__single.team__member__border {
    margin-bottom: 10px;
  }
}
.team__member__3__img {
  margin-bottom: 30px;
}
.team__member__3 .team__member__icon ul {
  width: 73%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .team__member__3 .team__member__icon ul {
    width: 100%;
  }
}

.team__details__button {
  margin-top: 40px;
}

.team__details__project__manager {
  background: var(--pinkcolor);
  padding: 50px;
  display: flex;
  margin-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__details__project__manager {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .team__details__project__manager {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .team__details__project__manager {
    padding: 20px;
  }
}

.team__details__project__manager__content {
  width: 75%;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__details__project__manager__content {
    width: 55%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__details__project__manager__content {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .team__details__project__manager__content {
    width: 100%;
  }
}

.team__details__top {
  width: 25%;
  margin-right: 50px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .team__details__top {
    width: 45%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__details__top {
    width: 50%;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .team__details__top {
    width: 100%;
  }
  .team__details__top.team__member__3__single {
    margin-bottom: 30px;
    margin-right: 0;
  }
}

.team__details__project__manager__number {
  display: flex;
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__details__project__manager__number {
    width: 100%;
    flex-wrap: wrap;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .team__details__project__manager__number {
    flex-wrap: wrap;
  }
}

.team__details__project__icon {
  margin-right: 50px;
  display: flex;
  flex-wrap: wrap;
}
.team__details__project__icon a {
  margin-right: 15px;
}
.team__details__project__icon .team__details__number p {
  margin: 0;
  font-size: 15px;
}

.team__details__project__manager__title h6 {
  font-size: 26px;
  margin: 0;
}
.team__details__project__manager__title span {
  margin-top: 10px;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 500;
}

@media (min-width: 992px) and (max-width: 1365px) {
.team__single {
    margin-bottom: 15px;
  }
}
.team.team--expanded .team__section__intro {
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: center;
}
.team.team--expanded .container {
  max-width: min(1760px, 96vw);
}
.team.team--expanded .team__section__intro .section__title,
.team.team--expanded .team__section__intro .section__title__heading,
.team.team--expanded .team__section__intro .section__title__text {
  text-align: center !important;
}
.team.team--expanded .team__section__intro .section__title__heading h3,
.team.team--expanded .team__section__intro .section__title__text p {
  color: var(--whiteColor);
}
.team.team--expanded .team__section__intro .section__title__text p {
  max-width: 860px;
  margin: 0 auto;
  text-align: center !important;
}
.team.team--expanded .team__grid {
  --bs-gutter-x: 28px;
  --bs-gutter-y: 28px;
  row-gap: 0;
}
.team.team--expanded .team__section__cta {
  margin-top: 52px;
  text-align: center;
  padding-bottom: 8px;
}
.team.team--expanded .team__section__cta .default__button {
  display: inline-flex;
}
.team.team--expanded .team__single {
  height: 100%;
}
.team.team--expanded .team__img {
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}
.team.team--expanded .team__img img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}
.team.team--expanded .team__name span {
  display: block;
  line-height: 1.5;
  min-height: 48px;
}
.team.team--expanded .team__icon {
  display: none;
}
@media (max-width: 991px) {
  .team.team--expanded .container {
    max-width: min(100%, 94vw);
  }
  .team.team--expanded .team__section__intro {
    margin-bottom: 34px;
  }
  .team.team--expanded .team__section__cta {
    margin-top: 34px;
  }
  .team.team--expanded .team__name span {
    min-height: 0;
  }
}
.skillarea .section__title.text-center,
.skillarea .section__title.text-center .section__title__heading,
.skillarea .section__title.text-center .blog__4__section__title__text {
  text-align: center !important;
}
.skillarea .section__title.text-center .section__title__button {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__single {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .team__single {
    margin-bottom: 15px;
  }
}

.testimonial__inner {
  padding: 70px;
  background: var(--pinkcolor);
  margin-right: 130px;
  margin-left: 50px;
  border-radius: var(--borderRadius);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .testimonial__inner {
    padding: 30px;
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial__inner {
    padding: 30px;
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial__inner {
    padding: 30px;
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 30px;
  }
}
.testimonial__img {
  position: relative;
}
.testimonial__img img {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial__img img {
    width: auto;
  }
}
.testimonial__img__2 {
  position: absolute;
  top: -13px;
  left: -12px;
  z-index: -1;
}
.testimonial__small__icon {
  position: absolute;
  top: 0;
  left: -23px;
  animation: dot-anim-2 3s linear 0s infinite alternate;
}
@media (max-width: 767px) {
  .testimonial__small__icon {
    left: 0;
  }
}
.testimonial__text {
  margin-bottom: 25px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .testimonial__text {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial__text {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .testimonial__text {
    margin-bottom: 10px;
  }
}
.testimonial__text p {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 38px;
  text-decoration-line: underline;
  margin: 0;
}
@media (max-width: 767px) {
  .testimonial__text p {
    font-size: 15px;
    line-height: 30px;
  }
}
.testimonial__author h6 {
  margin: 0;
}
.testimonial__author h6 a {
  font-size: 23px;
  color: var(--blackColor);
  font-weight: 700;
  line-height: 38px;
}
.testimonial__author span {
  color: var(--primaryColor);
}
.testimonial__bottom {
  position: relative;
}
.testimonial__small__img {
  position: absolute;
  bottom: -20px;
  right: 0;
}
.testimonial__single__slider {
  position: relative;
  margin-right: 1px;
}

.testimonial__2 {
  position: relative;
}
.testimonial__2__single {
  padding: 40px;
  background: var(--pinkcolor);
  position: relative;
  border-radius: var(--borderRadius);
}
@media (max-width: 767px) {
  .testimonial__2__single {
    padding: 20px;
  }
}
.testimonial__2__author {
  display: flex;
  align-items: center;
}
.testimonial__2__author__img {
  margin-right: 30px;
}
.testimonial__2__author__name h6 {
  margin: 0;
}
.testimonial__2__author__name h6 a {
  color: var(--blackColor);
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 767px) {
  .testimonial__2__author__name h6 a {
    font-size: 18px;
  }
}
.testimonial__2__author__name h6 a:hover {
  color: var(--primaryColor);
}
.testimonial__2__icon {
  position: absolute;
  bottom: 36px;
  right: 41px;
}
@media (max-width: 767px) {
  .testimonial__2__icon {
    bottom: 0;
    right: 5px;
  }
}
.testimonial__2 .testimonial__text--2 {
  border-bottom: 1px dashed var(--borderColor2);
  padding-bottom: 50px;
}
.testimonial__2__small__icon {
  position: absolute;
  top: 20px;
  left: -20px;
  animation: dot-anim-2 3s linear 0s infinite alternate;
}
@media (max-width: 767px) {
  .testimonial__2__small__icon {
    display: none;
  }
}

.testimonial__3 {
  background: var(--blackBlue);
}
.testimonial__3__content {
  padding: 50px 40px 65px;
  background: var(--whiteColor);
  border-radius: var(--borderRadius);
  transition: var(--transition);
}
.testimonial__3__content.bg__pink {
  background: var(--pinkcolor);
}
.testimonial__3__content.bg__pink p {
  color: var(--blackColor);
}
.testimonial__3__content:hover p {
  color: var(--whiteColor);
}
.testimonial__3__content:hover::before {
  border-top: 20px solid #00229E;
}
.testimonial__3__content p {
  text-decoration-line: underline;
  margin: 0px;
  position: relative;
  z-index: 9;
}
.testimonial__3__content::before {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid var(--whiteColor);
  position: absolute;
  content: "";
  bottom: -20px;
  left: 55px;
  transition: 0.3s;
}
.testimonial__3__author {
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-left: 30px;
}
.testimonial__3__img {
  margin-right: 35px;
}
.testimonial__3__name.color__black h6 a {
  color: var(--blackColor);
}
.testimonial__3__name h6 {
  margin: 0;
  font-size: 21px;
  margin-bottom: 5px;
}
.testimonial__3__name h6 a {
  color: var(--whiteColor);
}
.testimonial__3__name h6 a:hover {
  color: var(--primaryColor);
}
.testimonial__3__name p {
  margin: 0;
  color: var(--primaryColor);
}

.testimonial__slider__padding {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .testimonial__slider__padding {
    padding-left: 0;
    padding-right: 0;
  }
}

.brand {
  background: var(--gradientColor);
}
.brand__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 991px) {
  .brand__inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .brand__inner {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .brand__single {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .brand__single {
    margin-bottom: 30px;
  }
}
.brand__roated {
  transform: skewY(1deg);
  position: relative;
  top: -20px;
}
.brand__single__counter .counter__number {
  color: var(--whiteColor);
  font-size: 15px;
  margin-bottom: 5px;
}
.brand__single__counter .counter__number span {
  font-size: 32px;
  font-weight: 700;
  color: var(--whiteColor);
}
.brand__single__counter p {
  margin: 0;
  color: var(--whiteColor);
}
.brand--2 {
  background: var(--blackColor);
}
.brand__inner--2 {
  background: var(--gradientColor);
  padding: 40px 60px;
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .brand__inner--2 {
    padding: 20px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .brand__inner--2 {
    padding: 20px 40px;
  }
}
@media (max-width: 767px) {
  .brand__inner--2 {
    padding: 25px 30px;
  }
}

.brand__margin__bottom {
  top: -150px;
  position: relative;
  z-index: 111;
}

.brand__3 {
  position: absolute;
  width: 100%;
  top: -60px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .brand__3 {
    top: -40px;
  }
}

.facts {
  background: var(--gradientColor);
}
.facts__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .facts__inner {
    flex-wrap: wrap;
  }
}
.facts__inner--3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) and (max-width: 1365px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .facts__inner--3 {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .facts__inner--3 .facts__single--3 {
    width: 33%;
    margin: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .facts__inner--3 .facts__single--3 {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .facts__inner--3 .facts__single--3 {
    margin-right: 0;
    width: 50%;
  }
}
.facts__roated {
  transform: rotate(1deg);
}
.facts__single__counter .counter__number {
  color: var(--whiteColor);
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 1;
}
.facts__single__counter .counter__number span {
  font-size: 32px;
  font-weight: 700;
  color: var(--whiteColor);
}
.facts__single__counter p {
  margin: 0;
  color: var(--whiteColor);
}
@media (max-width: 767px) {
  .facts__single {
    margin: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .facts__single img {
    display: none;
  }
}
.facts__single--3 {
  display: flex;
  align-items: center;
  margin-right: 50px;
}
.facts__single--3:last-child {
  margin-right: 0;
}
.facts__single--3 .facts__img {
  margin-right: 20px;
}
.facts__icon {
  margin-left: 50px;
}

.brand__animate {
  white-space: nowrap;
  position: relative;
  will-change: transform;
  animation: marquee 50s linear 0s infinite normal;
  animation-play-state: running;
}
.brand__animate:hover {
  animation-play-state: paused;
}
.brand__animate .brand__single {
  min-width: 10%;
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .brand__animate .brand__single {
    min-width: 15%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .brand__animate .brand__single {
    min-width: 20%;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .brand__animate .brand__single {
    min-width: 25%;
    margin: 0;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .brand__animate .brand__single {
    min-width: 40%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .brand__animate {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .brand__animate {
    flex-wrap: nowrap;
  }
}

.pricing__single {
  background: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  padding: 0 20px 40px 20px;
  border-radius: var(--borderRadius);
  text-align: center;
  position: relative;
  z-index: 99;
}
.pricing__single:hover .pricing__inner__gradient {
  padding-left: 8px;
  padding-right: 8px;
}
.pricing__single:hover .pricing__inner__gradient::after {
  opacity: 1;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .pricing__single__wrap {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing__single__wrap {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .pricing__single__wrap {
    margin-bottom: 10px;
  }
}
.pricing__gradient {
  padding: 8px 0;
}
.pricing__gradient::after {
  opacity: 1;
}
.pricing__inner__gradient {
  transition: var(--transition);
}
.pricing__special__badge {
  position: absolute;
  top: 0;
  right: 20px;
}
.pricing__small__button {
  margin-bottom: 50px;
}
.pricing__small__button span {
  padding: 3px 23px;
  border-radius: 0px 0px 6px 6px;
  background: var(--primaryColor);
  color: var(--whiteColor);
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}
.pricing__single__price {
  background: var(--pinkcolor);
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: var(--borderRadius);
  margin-bottom: 25px;
  position: relative;
  z-index: 9;
}
.pricing__single__price h6 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
}
.pricing__single__price span {
  font-size: 15px;
  font-weight: 400;
}
.pricing__single__text {
  padding: 0 22px;
  margin-bottom: 25px;
}
.pricing__single__text ul li {
  padding-bottom: 10px;
}
.pricing__single__button a {
  background: var(--pinkcolor);
  color: var(--blackColor);
  border: 1px solid var(--pinkcolor);
}
.pricing__single__button a span {
  position: relative;
  z-index: 9;
}
.pricing__tab {
  justify-content: center;
  margin-bottom: 50px;
}
.pricing__tab li {
  background: var(--whiteColor);
  padding: 5px;
}
.pricing__tab li button {
  background: none;
  border: none;
  height: 52px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 14px;
  background: var(--borderColor);
  border-radius: var(--borderRadius);
}
@media (max-width: 767px) {
  .pricing__tab li button {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.pricing__tab li button.active {
  color: var(--whiteColor);
  background: var(--gradientColor);
  border-radius: var(--borderRadius);
}

.business__strategy__tab {
  background: var(--whiteColor);
  padding: 10px;
  border-radius: var(--borderRadius);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
}

.pricing__single.pricing__special .pricing__inner__gradient {
  padding-left: 8px;
  padding-right: 8px;
}
.pricing__single.pricing__special .pricing__inner__gradient::after {
  opacity: 1;
}

.bg__black .pricing__single {
  background: var(--blackColor);
}

.bg__black .pricing__single__price {
  background: #140f35;
}

.bg__black .pricing__single__price span {
  color: var(--whiteColor);
}

.bg__black .pricing__single__text ul li {
  color: var(--whiteColor);
}

.work__process__single {
  background: rgba(225, 225, 225, 0.2);
  padding: 38px;
  text-align: center;
  margin-right: 50px;
  transition: var(--transition);
  border-radius: var(--borderRadius);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .work__process__single {
    padding: 25px;
    margin-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .work__process__single {
    padding: 25px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .work__process__single {
    padding: 25px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
.work__process__single:last-child {
  margin-right: 0;
}
.work__process__single:hover .work__process__icon a {
  position: relative;
  background: transparent;
}
.work__process__single:hover .work__process__icon a svg {
  position: relative;
  z-index: 99;
}
.work__process__single:hover .work__process__icon a svg stop {
  stop-color: var(--whiteColor);
}
.work__process__single:hover .work__process__icon a::after {
  opacity: 1;
}
.work__process__single:hover .work__process__icon a svg {
  fill: var(--whiteColor);
}
.work__process__icon {
  margin-bottom: 22px;
}
.work__process__icon a {
  height: 118px;
  width: 118px;
  line-height: 118px;
  align-items: center;
  background: var(--whiteColor);
  display: inline-block;
  border-radius: 100%;
  transition: var(--transition);
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .work__process__icon a {
    height: 100px;
    width: 100px;
    line-height: 100px;
  }
}
@media (max-width: 767px) {
  .work__process__icon a {
    height: 80px;
    width: 80px;
    line-height: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .work__process__icon a svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .work__process__icon a svg {
    width: 40px;
    height: 40px;
  }
}
.work__process__icon a::after {
  background: var(--gradientColor);
  content: "";
  left: 0px;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 100%;
  opacity: 0;
  transition: var(--transition);
}
.work__process__name {
  margin-bottom: 12px;
}
.work__process__name h6 {
  margin: 0;
}
.work__process__name h6 a {
  font-size: 22px;
  font-weight: 700;
  color: var(--whiteColor);
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .work__process__name h6 a {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .work__process__name h6 a {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .work__process__name h6 a {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .work__process__name h6 a {
    font-size: 22px;
  }
}
.work__process__name h6 a:hover {
  color: var(--primaryColor);
}
.work__process__inner__wrap {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .work__process__inner__wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .work__process__inner__wrap {
    flex-wrap: wrap;
  }
}
.work__process__arrow {
  margin-right: 50px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .work__process__arrow {
    margin-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .work__process__arrow {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .work__process__arrow {
    margin-right: 0px;
    margin-bottom: 20px !important;
    margin: auto;
  }
}
.work__process__text p {
  margin: 0;
  color: var(--whiteColor);
}

.working {
  position: relative;
  margin-top: -190px;
}
.working__support {
  padding: 50px;
  background: var(--navyBlue2);
  padding-left: 67px;
  padding-right: 155px;
  border-radius: 8px 0 0 8px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .working__support {
    padding-left: 70px;
    padding-right: 30px;
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .working__support {
    padding: 30px;
    padding-bottom: 60px;
  }
}
.working__support.ws__left__side h5 {
  margin-bottom: 17px;
}
.working__support--2 {
  background: var(--gradientColor);
  padding-left: 148px;
  padding-right: 74px;
  margin-left: -35px;
  border-radius: 0px 8px 8px 0px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .working__support--2 {
    padding-left: 70px;
    padding-right: 30px;
    padding-top: 100px;
    padding-bottom: 50px;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .working__support--2 {
    margin-left: 0px;
    padding: 30px;
    padding-top: 60px;
  }
}
.working__heading {
  margin-bottom: 15px;
}
.working__heading h5 {
  margin: 0;
  color: var(--whiteColor);
  font-size: 22px;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .working__heading h5 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .working__heading h5 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .working__heading h5 {
    font-size: 18px;
  }
}
.working__paragraph {
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .working__paragraph {
    margin-bottom: 10px;
  }
}
.working__paragraph p {
  color: var(--whiteColor);
  margin: 0;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .working__paragraph p {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .working__paragraph p {
    font-size: 14px;
  }
}
.working__support__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-62%, -50%);
}
@media (max-width: 767px) {
  .working__support__img {
    top: 50%;
    left: 52%;
  }
}

/* service__features */
.service__features__wrap {
  background: var(--whiteColor);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 50px;
  border-radius: 10px;
  padding: 65px 50px 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .service__features__wrap {
    padding: 35px 20px 10px;
  }
}
.service__features__item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (min-width: 320px) and (max-width: 575px) {
  .service__features__item {
    flex-wrap: wrap;
  }
}
.service__features__item:hover .service__features__icon img {
  transform: rotateY(180deg);
}
.service__features__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-right: 20px;
  color: var(--primaryColor);
  font-size: 40px;
  position: relative;
  line-height: 0;
  border-radius: 14px;
  background: var(--secondaryColor);
}
@media (min-width: 320px) and (max-width: 575px) {
  .service__features__icon {
    margin-bottom: 10px;
  }
}
.service__features__icon img {
  transition: 0.3s linear;
  transform: rotateY(0);
  max-width: 50px;
}
.service__features__icon::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 4px;
  height: 30px;
  background: var(--primaryColor);
  border-radius: 2px;
}
.service__features__icon::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 4px;
  height: 30px;
  background: var(--primaryColor);
  border-radius: 2px;
}
.service__features__content .service__name {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
.service__features__content p {
  margin-bottom: 0;
  color: var(--contentColor);
  font-size: 16px;
  line-height: 26px;
}
.service__features__position {
  bottom: -105px;
  position: absolute;
  left: 0;
  right: 0;
}

.simple__banners__item {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}
.simple__banners__item img {
  width: 100%;
}
.simple__banners__item:hover img {
  transform: scale(1.05);
}

.breadcrumbarea {
  padding: 180px 0;
  background-position: center center !important;
  border-bottom: 3px solid #19C1E1;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .breadcrumbarea {
    padding: 50px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumbarea {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .breadcrumbarea {
    padding: 50px 0;
  }
}
.breadcrumbarea__title h2 {
  font-size: 60px;
  font-weight: 700;
  color: var(--whiteColor);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .breadcrumbarea__title h2 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumbarea__title h2 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .breadcrumbarea__title h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }
}

.breadcrumbarea__title h1 {
  font-size: 60px;
  font-weight: 700;
  color: var(--whiteColor);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .breadcrumbarea__title h1 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumbarea__title h1 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .breadcrumbarea__title h1 {
    font-size: 24px;
    margin-bottom: 5px;
  }
}


.breadcrumbarea__inner ul li {
  color: var(--whiteColor);
}
.breadcrumbarea__inner ul li a {
  color: var(--whiteColor);
}

/*------------------------------
Grid Area
-------------------------------*/
.gridarea {
  padding-top: 100px;
  padding-bottom: 70px;
  background: var(--lightGrey7);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .gridarea {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gridarea {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .gridarea {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.gridarea.gridarea__2 {
  background: var(--whiteColor);
}

.gridarea__wraper {
  background: var(--whiteColor);
  padding: 15px;
  box-shadow: 0 0 5px 2px rgba(95, 45, 237, 0.05);
  margin-bottom: 20px;
}
.gridarea__wraper.gridarea__wraper__2 .gridarea__content .gridarea__heading h3 {
  font-size: 18px;
  line-height: 25px;
}
.gridarea__wraper.gridarea__wraper__2 .gridarea__content .gridarea__bottom .gridarea__small__img .gridarea__small__content h6 {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}
.gridarea__wraper:hover .gridarea__img img {
  transform: scale(1.05);
}
.gridarea__wraper .gridarea__img {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.gridarea__wraper .gridarea__img img {
  width: 100%;
  border-radius: var(--borderRadius);
}
.gridarea__wraper .gridarea__img .gridarea__small__button {
  position: absolute;
  top: 3px;
  left: 8px;
}
.gridarea__wraper .gridarea__img .gridarea__small__button .grid__badge {
  background: var(--secondaryColor);
  color: var(--whiteColor);
  border-radius: 3px;
  font-weight: 600;
  font-size: 12px;
  display: inline-block;
  text-align: center;
  padding: 5px 15px;
  line-height: 1;
}
.gridarea__wraper .gridarea__img .gridarea__small__button .grid__badge.blue__color {
  background: var(--primaryColor);
}
.gridarea__wraper .gridarea__img .gridarea__small__button .grid__badge.pink__color {
  background: var(--navyBlue);
}
.gridarea__wraper .gridarea__img .gridarea__small__button .grid__badge.green__color {
  background: var(--violet);
}
.gridarea__wraper .gridarea__img .gridarea__small__button .grid__badge.orange__color {
  background: var(--secondaryColor);
}
.gridarea__wraper .gridarea__img .gridarea__small__button .grid__badge.yellow__color {
  background: var(--yellow);
}
.gridarea__wraper .gridarea__img .gridarea__small__icon {
  position: absolute;
  top: 3px;
  right: 8px;
}
.gridarea__wraper .gridarea__img .gridarea__small__icon i {
  width: 30px;
  height: 27px;
  line-height: 27px;
  background: rgba(0, 0, 0, 0.16);
  display: inline-block;
  text-align: center;
  color: var(--whiteColor);
  border-radius: 3px;
  transition: var(--transition);
}
.gridarea__wraper .gridarea__img .gridarea__small__icon i:hover {
  background: var(--primaryColor);
}
.gridarea__wraper .gridarea__content .gridarea__list {
  margin-bottom: 15px;
}
.gridarea__wraper .gridarea__content .gridarea__list ul {
  display: flex;
}
@media (max-width: 767px) {
  .gridarea__wraper .gridarea__content .gridarea__list ul {
    flex-wrap: wrap;
  }
}
.gridarea__wraper .gridarea__content .gridarea__list ul li {
  font-size: 14px;
  width: 50%;
  color: var(--blackColor);
}
@media (max-width: 767px) {
  .gridarea__wraper .gridarea__content .gridarea__list ul li {
    width: 100%;
  }
}
.gridarea__wraper .gridarea__content .gridarea__list ul li i {
  font-size: 18px;
  color: var(--primaryColor);
  margin-right: 5px;
}
.gridarea__wraper .gridarea__content .gridarea__heading h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
}
.gridarea__wraper .gridarea__content .gridarea__heading h3 a {
  color: var(--blackColor);
}
.gridarea__wraper .gridarea__content .gridarea__heading h3 a:hover {
  color: var(--primaryColor);
}
.gridarea__wraper .gridarea__content .gridarea__price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primaryColor);
  margin-bottom: 20px;
}
.gridarea__wraper .gridarea__content .gridarea__price.green__color {
  color: var(--lightGrey4);
}
.gridarea__wraper .gridarea__content .gridarea__price.green__color span {
  color: var(--greencolor);
  font-size: 16px;
}
.gridarea__wraper .gridarea__content .gridarea__price del {
  color: var(--blackColor);
  font-size: 13px;
}
.gridarea__wraper .gridarea__content .gridarea__price span {
  margin-left: 25px;
}
.gridarea__wraper .gridarea__content .gridarea__price span del {
  color: var(--secondaryColor3);
  font-size: 16px;
}
.gridarea__wraper .gridarea__content .gridarea__bottom {
  border-top: 1px solid var(--borderColor);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}
.gridarea__wraper .gridarea__content .gridarea__bottom a {
  line-height: 1;
  font-size: 15px;
}
@media (max-width: 767px) {
  .gridarea__wraper .gridarea__content .gridarea__bottom {
    flex-wrap: wrap;
  }
}
.gridarea__wraper .gridarea__content .gridarea__bottom h6:hover {
  color: var(--primaryColor);
}
.gridarea__wraper .gridarea__content .gridarea__bottom .gridarea__small__img {
  display: flex;
  align-items: center;
}
.gridarea__wraper .gridarea__content .gridarea__bottom .gridarea__small__img img {
  max-width: 30px;
  border-radius: 50px;
}
.gridarea__wraper .gridarea__content .gridarea__bottom .gridarea__small__content {
  margin-left: 15px;
}
.gridarea__wraper .gridarea__content .gridarea__bottom .gridarea__small__content h6 {
  margin-bottom: 0;
}
.gridarea__wraper .gridarea__content .gridarea__bottom .gridarea__star {
  color: var(--yellow);
  font-size: 15px;
  line-height: 1;
}
.gridarea__wraper .gridarea__content .gridarea__bottom .gridarea__star span {
  color: var(--lightGrey6);
  font-size: 13px;
}

.grid__filter {
  padding: 20px 40px;
  background: var(--whiteColor);
  margin-bottom: 25px;
  box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.06);
  margin-right: 50px;
  margin-left: 50px;
  border-radius: var(--borderRadius);
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .grid__filter {
    padding: 10px;
    margin-right: 0;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__filter {
    padding: 10px;
    margin-right: 0;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .grid__filter {
    padding: 10px;
    margin-right: 0;
    margin-left: 0;
  }
}
.grid__filter button {
  border: none;
  background: none;
  margin: 0 15px;
  padding: 0 15px;
  position: relative;
  font-weight: 500;
  color: var(--contentColor);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .grid__filter button {
    margin: 0 12px;
    padding: 0 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__filter button {
    margin: 0 8px;
    padding: 0 8px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .grid__filter button {
    margin: 0 10px;
    padding: 0 10px;
  }
}
.grid__filter button::before {
  width: 0;
  transition: var(--transition);
  position: absolute;
  content: "";
  height: 2px;
  background: var(--primaryColor);
  bottom: -20px;
  left: 0;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .grid__filter button::before {
    bottom: -10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__filter button::before {
    bottom: -15px;
  }
}
@media (max-width: 767px) {
  .grid__filter button::before {
    bottom: -3px;
  }
}
.grid__filter button:hover::before {
  width: 100%;
}
.grid__filter button:last-child {
  margin-right: 0;
  padding-right: 0;
}
.grid__filter button:last-child::after {
  display: none;
}
.grid__filter button:hover {
  color: var(--primaryColor);
}
.grid__filter button.active {
  color: var(--primaryColor);
}
.grid__filter button.active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--primaryColor);
  bottom: -20px;
  left: 0;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .grid__filter button.active::before {
    bottom: -10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__filter button.active::before {
    bottom: -15px;
  }
}
@media (max-width: 767px) {
  .grid__filter button.active::before {
    bottom: -3px;
  }
}
.grid__filter button::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  background: var(--contentColor);
  bottom: 8px;
  right: -15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__filter button::after {
    bottom: 2px;
  }
}

.gridarea__wraper.gridarea__course__list {
  display: flex;
  margin-bottom: 30px;
  padding-right: 30px;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  .gridarea__wraper.gridarea__course__list {
    flex-wrap: wrap;
    padding-right: 15px;
  }
}
.gridarea__wraper.gridarea__course__list .gridarea__img {
  margin-bottom: 0;
  width: 35%;
}
@media (max-width: 767px) {
  .gridarea__wraper.gridarea__course__list .gridarea__img {
    margin-right: 0px;
    margin-bottom: 20px;
    width: 100%;
  }
}
.gridarea__wraper.gridarea__course__list .gridarea__content {
  width: 65%;
  padding-left: 90px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .gridarea__wraper.gridarea__course__list .gridarea__content {
    padding-left: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gridarea__wraper.gridarea__course__list .gridarea__content {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .gridarea__wraper.gridarea__course__list .gridarea__content {
    padding-left: 0;
    width: 100%;
  }
}
.gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__heading {
  max-width: 95%;
}
.gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__heading h3 {
  font-weight: 600;
  font-size: 34px;
  line-height: 37px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__heading h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__heading h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__heading h3 {
    font-size: 20px;
    line-height: 25px;
  }
}
.gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__price {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: rgba(114, 106, 137, 0.8);
}
.gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__price span {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--greencolor2);
}
.gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__bottom .gridarea__details a {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: var(--blackColor);
}
@media (min-width: 768px) and (max-width: 991px) {
  .gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__bottom .gridarea__details a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__bottom .gridarea__details a {
    font-size: 13px;
  }
}
.gridarea__wraper.gridarea__course__list .gridarea__content .gridarea__bottom .gridarea__details a:hover {
  color: var(--primaryColor);
}

.gridarea__bottom__left {
  display: flex;
  align-items: center;
}
.gridarea__bottom__left .gridarea__star {
  margin-left: 35px;
}

.grid__row {
  align-items: center;
  margin-bottom: 25px;
}

.grid__filter__2 {
  text-align: right;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid__filter__2 {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .grid__filter__2 {
    text-align: left;
  }
}
.grid__filter__2 button {
  border: none;
  background: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  padding-right: 40px;
  color: var(--contentColor);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .grid__filter__2 button {
    padding-right: 17px;
  }
}
@media (max-width: 767px) {
  .grid__filter__2 button {
    padding-right: 20px;
  }
}
.grid__filter__2 button:last-child {
  padding-right: 0;
}
.grid__filter__2 button.active {
  color: var(--primaryColor);
}
.grid__filter__2 button:hover {
  color: var(--primaryColor);
}

.product__grid:hover .product__grid__action {
  bottom: 20px;
  visibility: visible;
  opacity: 1;
}
.product__grid__action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.product__grid__action ul {
  display: flex;
  justify-content: center;
}
.product__grid__action ul li {
  margin: 0 3px;
}
.product__grid__action ul li a, .product__grid__action ul li button {
  height: 45px;
  width: 50px;
  display: block;
  border: 1px solid var(--borderColor);
  text-align: center;
  line-height: 45px;
  border-radius: var(--borderRadius);
  background-color: var(--whiteColor);
  font-size: 14px;
}
.product__grid__action ul li a:hover, .product__grid__action ul li button:hover {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}
.product__grid__action ul li a.grid__cart, .product__grid__action ul li button.grid__cart {
  width: auto;
  padding: 0 20px;
  line-height: 42px;
}
@media (max-width: 767px) {
  .product__grid__action ul li a.grid__cart, .product__grid__action ul li button.grid__cart {
    padding: 0 5px;
  }
}
.product__grid__action ul li svg {
  height: 18px;
  position: relative;
  top: -2px;
}
.product__grid__action ul li svg path {
  transition: var(--transition);
}

#list_four .product__grid__action ul li {
  margin: 0 2px;
}

#list_four .product__grid__action ul li a.grid__cart {
  padding: 0 5px;
}

.gridarea__wraper.product__grid .gridarea__content .gridarea__heading h3 {
  font-size: 17px;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .gridarea__wraper.product__grid .gridarea__content .gridarea__heading h3 {
    font-size: 16px;
  }
}

.gridarea__wraper.product__grid .gridarea__content .gridarea__price {
  line-height: 1;
}

.gridarea__wraper.product__grid .gridarea__content .gridarea__price {
  font-size: 18px;
}

.gridarea__wraper.product__grid .gridarea__content .gridarea__price del {
  font-size: 16px;
}

.zoom__meeting__grid.gridarea__wraper .gridarea__content .gridarea__heading h3 {
  font-size: 22px;
  line-height: 1;
}
@media (max-width: 767px) {
  .zoom__meeting__grid.gridarea__wraper .gridarea__content .gridarea__heading h3 {
    font-size: 18px;
  }
}
.zoom__meeting__grid .zoom__meeting__id p {
  font-size: 14px;
}
.zoom__meeting__grid .zoom__meeting__id span {
  font-weight: 700;
  color: var(--secondaryColor);
  font-size: 18px;
  margin: 10px;
}
@media (max-width: 767px) {
  .zoom__meeting__grid .zoom__meeting__id span {
    font-size: 14px;
  }
}
.zoom__meeting__grid .zoom__meeting__time p {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.zoom__meeting__grid .zoom__meeting__time span {
  font-weight: 700;
  color: var(--primaryColor);
  font-size: 26px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .zoom__meeting__grid .zoom__meeting__time span {
    font-size: 20px;
  }
}
.zoom__meeting__grid .gridarea__content .gridarea__bottom .gridarea__small__content {
  margin-left: 15px;
  font-size: 12px;
}
.zoom__meeting__grid .gridarea__content .gridarea__bottom .gridarea__small__content h5 {
  margin: 0;
  font-size: 18px;
}
.zoom__meeting__grid .gridarea__content .gridarea__bottom .gridarea__small__img img {
  max-width: 50px;
}

.zoom__meetings__details .course__details__sidebar--2 {
  top: 0;
}

@media (min-width: 1366px) and (max-width: 1499px) {
  .featurearea {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .featurearea {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .featurearea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .featurearea {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.featurearea__img img {
  width: 100%;
}
.featurearea__small__title {
  margin-bottom: 10px;
  line-height: 1;
}
.featurearea__small__title span {
  font-size: 18px;
  line-height: 1.2;
  color: var(--blackColor);
}
.featurearea__main__title h3 {
  font-size: 30px;
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .featurearea__main__title h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .featurearea__main__title h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}
.featurearea__price span {
  font-size: 18px;
  margin-right: 6px;
  color: var(--blackColor);
}
.featurearea__price span.featurearea__price__button {
  padding: 5px 10px;
  background: var(--primaryColor);
  color: var(--whiteColor);
  font-size: 15px;
  border-radius: var(--borderRadius);
}
.featurearea__price span.featurearea__price__button.black__color {
  background: var(--blackColor);
}
.featurearea__countdown__title {
  display: flex;
  margin-top: 20px;
}
.featurearea__countdown__title svg {
  color: var(--blackColor);
}
.featurearea__countdown__title h5 {
  margin-left: 6px;
  font-weight: 500;
  font-size: 18px;
}
.featurearea__countdown {
  display: flex;
  margin-bottom: 25px;
}
.featurearea__countdown .count {
  margin-right: 6px;
  background: var(--gradientColor);
  text-align: center;
  line-height: 1;
  border-radius: 10px;
  display: flex;
  height: 65px;
  width: 70px;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 991px) {
  .featurearea__countdown .count {
    height: 60px;
    width: 70px;
  }
}
@media (max-width: 767px) {
  .featurearea__countdown .count {
    height: 60px;
    width: 60px;
  }
}
.featurearea__countdown .count p {
  margin-bottom: 5px;
  color: var(--whiteColor);
  font-size: 18px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .featurearea__countdown .count p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .featurearea__countdown .count p {
    font-size: 15px;
  }
}
.featurearea__countdown .count span {
  color: var(--whiteColor);
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .featurearea__countdown .count span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .featurearea__countdown .count span {
    font-size: 15px;
  }
}
.featurearea .progress {
  height: 4px;
  max-width: 75%;
}
.featurearea .progress .progress-bar {
  background: var(--gradientColor);
}
.featurearea__progress__text h6 {
  color: var(--blackColor);
}
.featurearea__size {
  margin-top: 20px;
  margin-bottom: 7px;
  color: var(--blackColor);
}
.featurearea__size__button ul li a {
  height: 40px;
  width: 40px;
  line-height: 36px;
  color: var(--blackColor);
  border: 1px solid var(--borderColor);
  display: inline-block;
  text-align: center;
  border-radius: var(--borderRadius);
}
.featurearea__size__button ul li a:hover {
  background: var(--blackColor);
  color: var(--whiteColor);
}
.featurearea__size__img ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.featurearea__size__img ul li a img {
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  padding: 2px;
  max-width: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .featurearea__size__img ul li a img {
    max-width: 40px;
  }
}
@media (max-width: 767px) {
  .featurearea__size__img ul li a img {
    max-width: 36px;
  }
}
.featurearea__quantity__button {
  margin-right: 20px;
  padding: 10px 37px;
  border: 2px solid var(--blackColor);
  border-radius: var(--borderRadius);
  color: var(--blackColor);
}
@media (min-width: 992px) and (max-width: 1365px) {
  .featurearea__quantity__button {
    margin-right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .featurearea__quantity__button {
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .featurearea__quantity__button {
    margin-right: 10px;
  }
}
.featurearea__quantity__button:hover a {
  color: var(--primaryColor);
}
.featurearea__quantity {
  display: flex;
  margin-bottom: 30px;
}
.featurearea__bottom__button a {
  background: var(--blackColor);
  color: var(--whiteColor);
  padding: 15px 130px;
  border-radius: var(--borderRadius);
  display: inline-block;
}
@media (min-width: 768px) and (max-width: 991px) {
  .featurearea__bottom__button a {
    padding: 15px 90px;
  }
}
.featurearea__bottom__button a:hover {
  background: var(--primaryColor);
}
@media (max-width: 767px) {
  .featurearea__bottom__button a {
    padding: 12px 60px;
  }
}
.featurearea__thumb__img {
  padding-top: 10px;
}
.featurearea__thumb__img.slider__default__arrow .slick-arrow {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
}
.featurearea__single__big__img {
  border: 1px solid var(--borderColor);
}
.featurearea__single__big__img img {
  width: 100%;
}
.featurearea__single__thumb__img {
  border: 1px solid var(--borderColor);
  cursor: pointer;
}
.featurearea__single__thumb__img img {
  width: 100%;
}

.featurearea__desc {
  margin-top: 15px;
}

.tabcollectionarea__item__wrap {
  margin-bottom: 20px;
}
.tabcollectionarea__item__wrap.text-center {
  justify-content: center;
}
.tabcollectionarea__product__item__link {
  border: none;
  margin: 0 30px 0 0;
  background: none;
  font-size: 20px;
  font-weight: 500;
}
.tabcollectionarea__product__item__link:hover {
  color: var(--primaryColor);
}
.tabcollectionarea__product__item__link.active {
  color: var(--primaryColor);
}

.descriptionarea__tab__wrapper {
  border: 1px solid var(--borderColor);
  padding: 30px 30px 37px;
}
.descriptionarea__link {
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1;
  position: relative;
  padding: 0 0 10px;
  margin: 0 32px 15px 0;
  border: none;
  background: none;
  color: var(--blackColor);
}
@media (max-width: 767px) {
  .descriptionarea__link {
    margin: 0 15px 15px 0;
  }
}
.descriptionarea__link.active:after {
  width: 100%;
}
.descriptionarea__link:hover:after {
  width: 100%;
}
.descriptionarea__link:after {
  content: "";
  height: 2px;
  left: 0;
  width: 0;
  position: absolute;
  -webkit-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  background-color: var(--primaryColor);
  bottom: 0;
}

@media (min-width: 768px) {
  .featurearea__details__img.products__details__gallery {
    position: sticky;
    top: 100px;
    margin-bottom: 0;
  }
}
.cart__pm__btn__wrap {
  display: flex;
  align-items: center;
}

.cartarea__table__content table {
  border: 1px solid var(--borderColor);
  width: 100%;
}
.cartarea__table__content table thead tr {
  background-color: var(--greywhite);
  border: 1px solid var(--borderColor);
}
.cartarea__table__content table thead tr th {
  border-top: medium none;
  font-size: 14px;
  font-weight: 600;
  padding: 21px 45px 22px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  color: var(--blackColor);
  min-width: 100px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cartarea__table__content table thead tr th {
    padding: 21px 25px 22px;
  }
}
@media (max-width: 767px) {
  .cartarea__table__content table thead tr th {
    padding: 13px 4px 9px;
    font-size: 14px;
  }
}
.cartarea__table__content table tbody tr {
  border-bottom: 1px solid var(--borderColor);
  color: var(--blackColor);
}
.cartarea__table__content table tbody tr td {
  font-size: 16px;
  text-align: center;
  border: 1px solid var(--borderColor);
  padding: 20px 10px;
}
.cartarea__table__content table tbody tr td a img {
  max-width: 80px;
}
.cartarea__table__content table tbody tr td a svg {
  width: 25px;
}
.cartarea__product__name {
  width: 435px;
}
.cartarea__product__quantity {
  width: 435px;
  min-width: 200px;
}
.cartarea__plus__minus {
  display: inline-block;
  height: 58px;
  padding: 0;
  position: relative;
  border: 2px solid var(--borderColor2);
  overflow: hidden;
  max-width: 150px;
}
@media (max-width: 767px) {
  .cartarea__plus__minus {
    width: 90px;
  }
}
.cartarea__plus__minus .qtybutton {
  color: var(--blackColor);
  cursor: pointer;
  float: inherit;
  font-size: 16px;
  margin: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 20px;
  text-align: center;
}
.cartarea__plus__minus .qtybutton.dec {
  left: 10px;
  top: 11px;
}
.cartarea__plus__minus .qtybutton.inc {
  right: 10px;
  top: 11px;
}
.cartarea__plus__minus .input-qty.input-qty {
  height: 100%;
  border: none;
  text-align: center;
  width: 100%;
}
.cartarea__plus__minus__box {
  color: var(--blackColor);
  float: left;
  font-size: 14px;
  height: 55px;
  margin: 0;
  width: 100%;
  background: transparent none repeat scroll 0 0;
  border: none;
  padding: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .cartarea__plus__minus__box {
    width: 90px;
  }
}
.cartarea__product__thumbnail a img {
  width: 100%;
}
.cartarea__shiping__update__wrapper {
  padding: 30px 0 55px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cartarea__shiping__update__wrapper {
    padding: 22px 0 36px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
}
.cartarea__shiping__update a {
  background-color: var(--blackColor);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 55px;
  padding: 0 40px;
  height: 55px;
  border-radius: var(--borderRadius);
  text-transform: uppercase;
  color: var(--whiteColor);
}
@media (max-width: 767px) {
  .cartarea__shiping__update a {
    padding: 0 20px;
  }
}
.cartarea__shiping__update a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}
.cartarea__clear a {
  background-color: var(--blackColor);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 55px;
  padding: 0 40px;
  height: 55px;
  border-radius: var(--borderRadius);
  text-transform: uppercase;
  margin-right: 20px;
  color: var(--whiteColor);
}
@media (max-width: 767px) {
  .cartarea__clear a {
    padding: 0 20px;
  }
}
.cartarea__clear a:last-child {
  margin-right: 0;
}
.cartarea__clear a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}
.cartarea__tax {
  background-color: var(--greywhite);
  border: 1px solid var(--borderColor);
  border-radius: 5px;
  padding: 45px 30px 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cartarea__tax {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cartarea__tax {
    margin-bottom: 30px;
  }
}
.cartarea__title {
  position: relative;
}
.cartarea__title::after {
  background-color: var(--borderColor2);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 10px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 100%;
  z-index: 1;
}
.cartarea__title h4 {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-right: 18px;
  background-color: var(--whiteColor);
  position: relative;
  z-index: 99;
}
.cartarea__text {
  margin-top: 22px;
}
.cartarea__tax__select {
  margin-bottom: 20px;
}
.cartarea__tax__select label {
  color: var(--blackColor);
}
.cartarea__tax__select select {
  box-shadow: none;
  font-size: 12px;
  height: 40px;
  padding: 0 50px 0 15px;
  width: 100%;
  cursor: pointer;
}
.cartarea__code {
  margin-bottom: 20px;
}
.cartarea__code label {
  color: var(--blackColor);
}
.cartarea__code input {
  box-shadow: none;
  font-size: 12px;
  height: 40px;
  padding: 0 50px 0 15px;
  width: 100%;
  cursor: pointer;
  border: 1px solid var(--borderColor2);
}
.cartarea__discount__code {
  margin: 21px 0 0;
}
.cartarea__discount__code textarea {
  border: 1px solid var(--borderColor2);
  background: var(--whiteColor);
  width: 100%;
  height: 100px;
}
.cartarea__grand__totall h5 {
  font-size: 14px;
  margin: 36px 0 27px;
}
.cartarea__grand__totall h5 span {
  float: right;
  font-size: 18px;
  font-weight: 500;
}
.cartarea__grand__totall a {
  color: var(--whiteColor);
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 55px;
  padding: 0 10px;
  height: 55px;
  text-align: center;
  text-transform: uppercase;
  background: var(--blackColor);
  border-radius: var(--borderRadius);
}
.cartarea__grand__totall a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}

@media (max-width: 767px) {
  .cartarea__shiping__update {
    margin-bottom: 10px;
  }
}

.checkoutarea__billing__heading h2 {
  border-bottom: 1px solid var(--borderColor);
  color: var(--blackColor);
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.checkoutarea__inputbox label {
  font-weight: 500;
  color: var(--blackColor);
  margin-bottom: 5px;
  font-size: 14px;
}
.checkoutarea__inputbox input {
  background: transparent;
  border: 1px solid var(--borderColor);
  color: var(--blackColor);
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 20px;
}
.checkoutarea__payment__wraper {
  background: var(--greyColor2);
  padding: 35px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .checkoutarea__payment__wraper {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .checkoutarea__payment__wraper {
    padding: 10px;
  }
}
.checkoutarea__total h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.checkoutarea__table {
  width: 100%;
}
.checkoutarea__item {
  border-top: 1px solid var(--borderColor2);
}
.checkoutarea__item td {
  border-style: solid none none;
  border-width: 1px medium medium;
  font-weight: 500;
  padding: 15px;
  color: var(--blackColor);
}
@media (max-width: 767px) {
  .checkoutarea__item td {
    padding: 10px;
  }
}
.checkoutarea__payment__input__box {
  margin-top: 30px;
}

.checkoutarea__payment__type label {
  color: var(--blackColor);
  padding-left: 5px;
  padding-bottom: 10px;
}

@media (min-width: 1366px) and (max-width: 1499px) {
  .loginarea {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .loginarea {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .loginarea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .loginarea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .loginarea__col {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .loginarea__col {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .loginarea__col {
    margin-left: 0;
  }
}
.loginarea .tab__button__wrap li.nav-item {
  width: 50%;
}
.loginarea__wraper {
  padding: 31px 50px 50px;
  border-radius: 5px;
  box-shadow: 0px 30px 40px 0px rgba(1, 11, 60, 0.06);
}
@media (max-width: 767px) {
  .loginarea__wraper {
    padding: 10px 20px 40px;
  }
}
.loginarea__heading {
  text-align: center;
}
.loginarea__heading .login__title {
  font-size: 32px;
  line-height: 1.5;
  margin: 0 0 8px;
}
.loginarea__heading .login__description a {
  position: relative;
}
.loginarea__heading .login__description a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primaryColor);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}
.loginarea__heading .login__description a:hover {
  color: var(--primaryColor);
}
.loginarea__heading .login__description a:hover:after {
  width: 100%;
}
.loginarea form .loginarea__form {
  margin-top: 25px;
}
.loginarea form .loginarea__form label {
  display: block;
  margin-bottom: 10px;
}
.loginarea form .loginarea__form .common__login__input {
  background-color: var(--borderColor);
  border: 1px solid var(--borderColor);
  font-size: 14px;
  font-weight: 400;
  height: 52px;
  padding: 3px 20px;
  width: 100%;
  border-radius: 5px;
}
.loginarea form .loginarea__form .form__check {
  display: flex;
}
.loginarea form .loginarea__form .form__check label {
  position: relative;
  padding-left: 10px;
  margin-bottom: 0;
}
.loginarea form .loginarea__form .login__form__link a {
  position: relative;
}
.loginarea form .loginarea__form .login__form__link a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primaryColor);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}
.loginarea form .loginarea__form .login__form__link a:hover {
  color: var(--primaryColor);
}
.loginarea form .loginarea__form .login__form__link a:hover:after {
  width: 100%;
}
.loginarea__button {
  margin-top: 25px;
}
.loginarea__button a {
  width: 100%;
}
.loginarea__button button {
  width: 100%;
}
.loginarea__social__btn {
  margin-top: 25px;
  text-align: center;
}
.loginarea__social__btn .login__social__btn li a {
  padding: 10px 44px;
}
.loginarea__social__btn .login__social__btn li .login__button__1 {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .loginarea__social__btn .login__social__btn li .login__button__1 {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.tab__button__wrap {
  margin-bottom: 50px;
}
.tab__button__wrap li {
  padding-right: 11px;
}
.tab__button__wrap li button {
  border: none;
  padding: 18px 0;
  background: #F3F4FD;
  margin-right: 11px;
  font-size: 22px;
  font-weight: 600;
  font-family: "Hind", sans-serif;
  color: #000000;
  width: 100%;
  border-radius: 4px;
  position: relative;
  transition: 0.3s;
}
.tab__button__wrap li button.active {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.shoptab {
  display: flex;
  padding: 10px 30px;
  border-radius: var(--borderRadius);
  background-color: var(--borderColor);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .shoptab {
    padding: 10px;
  }
}
.shoptab__inner ul li {
  padding-right: 10px;
}
.shoptab__inner ul li button {
  border: none;
  background: none;
}
.shoptab__inner ul li button svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  color: var(--blackColor);
  transition: var(--transition);
}
.shoptab__inner ul li button:hover svg, .shoptab__inner ul li button.active svg {
  color: var(--primaryColor);
}
.shoptab__shoing__wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.shoptab__shoing__wrap p {
  margin: 0;
}
.shoptab__select {
  margin-right: 50px;
  align-items: center;
  color: var(--blackColor);
}
@media (max-width: 767px) {
  .shoptab__select {
    margin-right: 0;
  }
}
.shoptab__select label {
  margin-right: 10px;
}
.shoptab__select select {
  height: 40px;
  padding: 10px;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--blackColor);
}
@media (max-width: 767px) {
  .shoptab__select select {
    max-width: 170px;
  }
}

@media (max-width: 767px) {
  .featurearea__inner {
    margin-top: 20px;
  }
}

.shopsidebar__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.shopsidebar__top h2 {
  font-size: 22px;
}
.shopsidebar__remove a {
  position: relative;
}
.shopsidebar__remove a:hover:after {
  background: var(--primaryColor);
}
.shopsidebar__remove a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--blackColor);
  bottom: -1px;
  left: 0;
}
.shopsidebar__bitton {
  margin-bottom: 30px;
}
.shopsidebar__widget {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 30px;
}
.shopsidebar__list {
  margin-top: 10px;
}
.shopsidebar__list ul li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.shopsidebar__widget summary {
  color: var(--blackColor);
  font-weight: 500;
}
.shopsidebar__widget .shopsidebar__box label {
  color: var(--blackColor);
  font-size: 16px;
  padding-left: 5px;
}

.swiper.modal__gallery {
  margin-top: 10px;
}

.default__button.sidebar-collapse-btn {
  display: none;
}

@media (max-width: 991px) {
  .sidebar-collapse-hide {
    display: none;
  }
  .sidebar__filter__responsive {
    order: -1;
  }
  .sidebar__filter__responsive .sidebar-collapse-btn {
    display: flex;
  }
  .default__button.sidebar-collapse-btn {
    width: 100%;
    margin-bottom: 20px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .shoptab {
    margin-bottom: 20px;
  }
  .default__button.sidebar-collapse-btn svg {
    fill: var(--whiteColor);
    padding-right: 5px;
  }
}
.footer {
  background-size: cover;
  background-repeat: no-repeat;
}
.footer__left {
  padding-right: 20px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .footer__left {
    padding-right: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .footer__left {
    padding-right: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__left {
    padding-right: 0px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer__left {
    padding-right: 0px;
  }
}
.footer__logo {
  margin-bottom: 40px;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}
.footer__text {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__text {
    margin-bottom: 10px;
  }
}
.footer__text p {
  color: var(--whiteColor);
  font-weight: 400;
  line-height: 40px;
  margin: 0;
}
.footer__icon ul li {
  margin-right: 10px;
}
.footer__icon ul li a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 100%;
  background: var(--whiteColor);
  display: inline-block;
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 400;
}
.footer__icon ul li a:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
}
.footer__support {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .footer__support {
    padding-left: 0px;
    margin-top: 30px;
  }
}
.footer__menu__title {
  margin-bottom: 56px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .footer__menu__title {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .footer__menu__title {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__menu__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer__menu__title {
    margin-bottom: 20px;
  }
}
.footer__menu__title h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--whiteColor);
  position: relative;
  margin: 0;
  line-height: 1.7;
  display: inline-block;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .footer__menu__title h6 {
    font-size: 16px;
  }
}
.footer__menu__title h6:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--whiteColor);
  left: 0;
  bottom: 0;
}
.footer__menu ul li {
  display: block;
}
.footer__menu ul li a {
  color: var(--whiteColor);
  font-weight: 400;
  margin-bottom: 15px;
  display: block;
}
@media (min-width: 992px) and (max-width: 1365px) {
  .footer__menu ul li a {
    margin-bottom: 5px;
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__menu ul li a {
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .footer__menu ul li a {
    margin-bottom: 5px;
  }
}
.footer__menu ul li a:hover {
  color: var(--primaryColor);
}
.footer__quick {
  padding-left: 30px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .footer__quick {
    padding-left: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .footer__quick {
    padding-left: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__quick {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .footer__quick {
    padding-left: 0px;
    margin-top: 30px;
  }
}
.footer__right {
  padding-left: 70px;
}
@media (max-width: 767px) {
  .footer__right {
    padding-left: 0px;
    margin-top: 30px;
  }
}
.footer__input {
  margin-bottom: 20px;
}
.footer__input input {
  width: 100%;
  padding: 10px 20px;
  background: var(--whiteColor);
  border-radius: 4px;
  font-size: 17px;
  font-weight: 400;
  line-height: 32px;
  border: 1px solid var(--whiteColor);
  height: 60px;
}
.footer__gallery {
  margin-left: 40px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .footer__gallery {
    margin-left: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .footer__gallery {
    margin-left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__gallery {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .footer__gallery {
    margin-left: 0px;
    margin-top: 20px;
  }
}
.footer__gallery__icon a {
  height: 42px;
  width: 42px;
  line-height: 42px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 999;
}
.footer__single__gallery__img {
  position: relative;
}
.footer__single__gallery__img:hover .footer__gallery__icon a {
  opacity: 1;
}
.footer__single__gallery__img:hover:after {
  opacity: 1;
}
.footer__single__gallery__img:after {
  background: var(--gradientColor);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  opacity: 0;
  border-radius: var(--borderRadius);
}
.footer__gallery__img {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.footer__gallery__img img {
  width: 100%;
}
.footer__right--2 {
  padding-left: 30px;
}
@media (min-width: 1366px) and (max-width: 1499px) {
  .footer__right--2 {
    padding-left: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1365px) {
  .footer__right--2 {
    padding-left: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__right--2 {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .footer__right--2 {
    padding-left: 0px;
  }
}

.copyright {
  background-color: rgba(255, 240, 250, 0.05);
  padding: 15px 47px;
  border-radius: var(--borderRadius);
  position: relative;
  border-radius: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .copyright {
    padding: 15px 10px;
  }
}
@media (max-width: 767px) {
  .copyright {
    padding: 15px 10px;
  }
}
.copyright--2 {
  background: var(--gradientColor);
  position: relative;
}
.copyright--2::before {
  position: absolute;
  content: "";
  width: 52%;
  height: 81px;
  background: var(--blackColor);
  left: -20px;
  top: -11px;
  transform: skew(-25deg);
  border-right: 5px solid var(--whiteColor);
}
@media (min-width: 768px) and (max-width: 991px) {
  .copyright--2::before {
    width: 54%;
    left: -25px;
  }
}
@media (max-width: 767px) {
  .copyright--2::before {
    display: none;
  }
}
.copyright--4 {
  background: var(--gradientColor);
  border-radius: 0;
}
.copyright__icon ul {
  justify-content: right;
}
.copyright__icon ul li a {
  color: var(--whiteColor);
}
.copyright__left--2 p {
  position: relative;
  z-index: 111;
}
.copyright__left.copyright__left--2 p a {
  color: var(--violet);
}
.copyright__left p {
  font-weight: 400;
  line-height: 40px;
  color: var(--whiteColor);
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .copyright__left p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .copyright__left p {
    font-size: 14px;
  }
}
.copyright__left p a {
  color: var(--primaryColor);
  font-weight: 700;
}
.copyright__right {
  text-align: right;
}
@media (max-width: 767px) {
  .copyright__right {
    text-align: start;
  }
}
.copyright__right ul li a {
  margin: 0;
  color: var(--whiteColor);
}
@media (min-width: 768px) and (max-width: 991px) {
  .copyright__right ul li a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .copyright__right ul li a {
    font-size: 14px;
  }
}
.copyright__right ul li a:hover {
  color: var(--primaryColor);
}
.copyright__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .copyright__arrow {
    top: -10%;
  }
}
.copyright__arrow a {
  height: 52px;
  width: 52px;
  line-height: 52px;
  background: var(--whiteColor);
  color: var(--blackColor);
  font-weight: 700;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  font-size: 20px;
  margin: auto;
}
.copyright__arrow a:hover {
  background: var(--gradientColor);
  color: var(--whiteColor);
}

@media (max-width: 767px) {
  .copyright--4 .copyright__right {
    text-align: center;
  }
}

.footer__2 .footer__text p {
  color: var(--blackColor);
}
.footer__2 .footer__menu__title h6 {
  color: var(--blackColor);
}
.footer__2 .footer__menu__title h6:after {
  background: var(--blackColor);
}
.footer__2 .footer__menu ul li a {
  color: var(--blackColor);
}
.footer__2 .footer__menu ul li a:hover {
  color: var(--primaryColor);
}

.footer__4__small__text {
  margin-bottom: 15px;
}
.footer__4__small__text span {
  font-weight: 700;
  color: var(--whiteColor);
}
@media (max-width: 767px) {
  .footer__4__small__text span {
    font-size: 14px;
  }
}
.footer__4__heading {
  margin-bottom: 35px;
}
.footer__4__heading h1 {
  font-size: 50px;
  color: var(--whiteColor);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__4__heading h1 {
    font-size: 26px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .footer__4__heading h1 {
    font-size: 26px;
    line-height: 40px;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  .footer__4__heading h1 {
    font-size: 20px;
    line-height: 36px;
  }
}
.footer__4__wrapper {
  text-align: center;
  text-align: center;
  max-width: 74%;
  margin: 0 auto;
}
@media (min-width: 320px) and (max-width: 575px) {
  .footer__4__wrapper {
    max-width: 90%;
  }
}

@media (max-width: 767px) {
  .copyright--4 {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .copyright--4 .copyright__left p {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .headerarea__icon.copyright__icon ul {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .headerarea__icon.copyright__icon ul li {
    display: block;
  }
}

/*------------------------------
Dark Mode
-------------------------------*/
.is_dark .mode_switcher.my_switcher button {
  color: var(--blackColor);
  background: var(--whiteColor);
  border-color: var(--blackColor);
}
.is_dark .headerarea__main__menu ul li a {
  color: var(--blackColor);
}
.is_dark .headerarea__submenu {
  background-color: var(--whiteColor);
}
.is_dark .headerarea__mega__menu__thumb__title {
  color: var(--blackColor);
}
.is_dark .headerarea__submenu--five {
  background: var(--whiteColor);
}
.is_dark .headerarea__main__menu ul li:hover > a {
  color: var(--primaryColor);
}
.is_dark .offcanvas__header--menu__open--svg {
  color: var(--blackColor);
}
.is_dark .default__button {
  color: var(--blackColor);
}
.is_dark .default__button.btn__white {
  border: 1px solid var(--blackColor);
}
.is_dark .herobanner__title h1,
.is_dark .herobanner__title h2 {
  color: var(--blackColor);
}
.is_dark .herobanner__text p {
  color: var(--blackColor);
}
.is_dark .slider__controls__arrows .arrow-btn {
  color: var(--blackColor);
  border: 2px solid var(--blackColor);
}
.is_dark .slider__controls__arrows .arrow-btn-2:hover svg path {
  stroke: var(--blackColor);
}
.is_dark .slider__controls__arrows .arrow-btn-3:hover svg path {
  stroke: var(--blackColor);
}
.is_dark .service__single__wraper {
  box-shadow: var(--darkShadow);
}
.is_dark .service__single__wraper:hover .service__heading h5 a {
  color: var(--blackColor);
}
.is_dark .service__single__wraper:hover .service__text p {
  color: var(--blackColor);
}
.is_dark .service__single__wraper:hover .service__icon a {
  background: var(--blackColor);
}
.is_dark .video__img::before {
  background: var(--whiteColor);
}
.is_dark .video__button a:hover svg path {
  fill: var(--blackColor);
}
.is_dark .about__number__inner span {
  color: var(--blackColor);
}
.is_dark .about__number__inner p {
  color: var(--blackColor);
}
.is_dark .about__number__icon a svg path {
  stroke: var(--blackColor);
}
.is_dark .team__left .section__title__heading h3 {
  color: var(--blackColor);
}
.is_dark .team__left .section__title__text p {
  color: var(--blackColor);
}
.is_dark .team__name h6 a {
  color: var(--blackColor);
}
.is_dark .team__name span {
  color: var(--blackColor);
}
.is_dark .project__margin {
  box-shadow: var(--darkShadow);
}
.is_dark .project__bottom {
  border-bottom: none;
}
.is_dark .direction__btn:hover svg path {
  stroke: var(--blackColor);
}
.is_dark .blog__date__inner {
  box-shadow: var(--darkShadow);
}
.is_dark .blog__single:hover .blog__date__inner span {
  color: var(--blackColor);
}
.is_dark .blog__single:hover .blog__date__inner p {
  color: var(--blackColor);
}
.is_dark .footer__menu__title h6 {
  color: var(--blackColor);
}
.is_dark .footer__menu__title h6:after {
  background: var(--blackColor);
}
.is_dark .footer__menu ul li a {
  color: var(--blackColor);
}
.is_dark .footer__menu ul li a:hover {
  color: var(--primaryColor);
}
.is_dark .footer__text p {
  color: var(--blackColor);
}
.is_dark .copyright__left p {
  color: var(--blackColor);
}
.is_dark .footer__icon ul li a:hover {
  color: var(--blackColor);
}
.is_dark .copyright__right ul li a {
  color: var(--blackColor);
}
.is_dark .copyright__right ul li a:hover {
  color: var(--primaryColor);
}
.is_dark .footer__input input {
  color: var(--blackColor);
  box-shadow: var(--darkShadow);
}
.is_dark .copyright--2::before {
  background: var(--whiteColor);
  border-right: 5px solid var(--blackColor);
}
.is_dark .herobanner.herobanner--2 {
  background-image: none !important;
}
.is_dark .header__topbar__left ul li {
  color: var(--blackColor);
}
.is_dark .header__topbar__right p {
  color: var(--blackColor);
}
.is_dark .default__button.btn__white:hover {
  color: var(--blackColor);
  border: 1px solid var(--blackColor);
}
.is_dark .headerarea__bar__wrapper svg rect {
  fill: var(--blackColor);
}
.is_dark .brand--2 {
  background: var(--whiteColor);
  box-shadow: var(--darkShadow);
}
.is_dark .default__button.btn__black {
  background: transparent;
}
.is_dark .default__button.btn__black:hover {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
}
.is_dark .video__2 .video__img {
  box-shadow: var(--darkShadow);
}
.is_dark .facts__single__counter .counter__number {
  color: var(--blackColor);
}
.is_dark .facts__single__counter .counter__number span {
  color: var(--blackColor);
}
.is_dark .facts__single__counter p {
  color: var(--blackColor);
}
.is_dark .project__heading--2 h3 a {
  color: var(--blackColor);
}
.is_dark .project__heading h3 a:hover {
  color: var(--primaryColor);
}
.is_dark .section__title--3 .section__title__heading h3 {
  color: var(--blackColor);
}
.is_dark .section__title--3 .section__title__button span {
  color: var(--blackColor);
}
.is_dark .blog__2__heading h3 a {
  color: var(--blackColor);
}
.is_dark .blog__2__text p {
  color: var(--blackColor);
}
.is_dark .footer__2 {
  background-image: none !important;
}
.is_dark .header__animate__item h3 {
  color: var(--blackColor);
}
.is_dark .headerarea.headerarea--3 {
  background: var(--whiteColor);
}
.is_dark .bg__black .section__title--3 .section__title__button span {
  color: var(--whiteColor);
}
.is_dark .bg__black .section__title--3 .section__title__heading h3 {
  color: var(--whiteColor);
}
.is_dark .direction__btn--2 svg path {
  stroke: var(--blackColor);
}
.is_dark .team__member__3__single:hover .team__member__name h6 a {
  color: var(--blackColor);
}
.is_dark .team__member__3__single:hover .team__member__name p {
  color: var(--blackColor);
}
.is_dark .team__member__icon ul li a:hover {
  color: var(--blackColor);
}
.is_dark .working__heading h5 {
  color: var(--blackColor);
}
.is_dark .working__paragraph p {
  color: var(--blackColor);
}
.is_dark .team__member__single__4 {
  box-shadow: var(--darkShadow);
}
.is_dark .service__single__4 {
  box-shadow: var(--darkShadow);
}
.is_dark .team__member__content__4 span {
  color: var(--blackColor);
}
.is_dark .team__member__single__4:hover .team__member__content__4 h6 a {
  color: var(--blackColor);
}
.is_dark .team__member__single__4:hover .team__member__content__4 span {
  color: var(--blackColor);
}
.is_dark .section__title--4 .section__title__heading h3 {
  color: var(--blackColor);
}
.is_dark .section__title--4 .section__title__small span {
  color: var(--blackColor);
}
.is_dark .section__title--4 .section__title__small span::before {
  background: var(--blackColor);
}
.is_dark .portfolio__filter button span {
  color: var(--blackColor);
}
.is_dark .portfolio__content {
  background: var(--whiteColor);
}
.is_dark .portfolio__content a {
  color: var(--blackColor);
}
.is_dark .portfolio__content a:hover {
  color: var(--primaryColor);
}
.is_dark .portfolio__content span {
  color: var(--blackColor);
}
.is_dark .pricing__tab li button {
  color: var(--blackColor);
}
.is_dark .pricing__single__price span {
  color: var(--blackColor);
}
.is_dark .pricing__single__text ul li {
  color: var(--blackColor);
}
.is_dark .pricing__small__button span {
  color: var(--blackColor);
}
.is_dark .footer__4__small__text span {
  color: var(--blackColor);
}
.is_dark .footer__4__heading h1 {
  color: var(--blackColor);
}
.is_dark .headerarea__icon ul li a, .is_dark .headerarea__icon ul li button {
  color: var(--blackColor);
}
.is_dark .copyright__arrow a:hover {
  color: var(--blackColor);
}
.is_dark .offcanvas {
  background-color: var(--whiteColor);
}
.is_dark .btn-close {
  background-color: var(--blackColor);
}
.is_dark .headerarea__offcavas__form .form-group input {
  padding: 5px 20px;
}
.is_dark .headerarea__offcavas__form .form-group button {
  right: 20px;
}
.is_dark .section__title--3 .blog__4__section__title__text p {
  color: var(--blackColor);
}
.is_dark .blog__4__time p {
  background: var(--blackColor);
}
.is_dark .footer__3.bg__black {
  background: var(--whiteColor);
}
.is_dark .breadcrumbarea__title h2 {
  color: var(--blackColor);
}
.is_dark .breadcrumbarea__inner ul li, .is_dark .breadcrumbarea__inner ul li a {
  color: var(--blackColor);
}
.is_dark .breadcrumbarea__inner ul li a:hover {
  color: var(--primaryColor);
}
.is_dark .sidebar__common__input {
  border: 1px solid #232e4c;
}
.is_dark .blog__details__small__button span {
  color: var(--blackColor);
}
.is_dark .blog__details__list ul li {
  color: var(--blackColor);
}
.is_dark .blog__details__text--2 p {
  color: var(--blackColor);
}
.is_dark .blog__details__share span {
  color: var(--blackColor);
}
.is_dark .blog__details__social__icon ul li a {
  background: #4e5073;
}
.is_dark .footer__icon ul li a {
  background: #ffffff;
}
.is_dark .team__member__icon ul li a {
  background: #4e5073;
}
.is_dark .blog__details__social__icon ul li a:hover span {
  color: var(--blackColor);
}
.is_dark .sidebar__tag ul li a.active {
  color: var(--blackColor);
}
.is_dark .sidebar__tag ul li a:hover {
  color: var(--blackColor);
}
.is_dark .sidebar__search .sidebar__common__input {
  color: var(--blackColor);
}
.is_dark .pagination ul li a.active {
  color: var(--blackColor);
  border: 1px solid transparent;
}
.is_dark .pagination ul li a {
  box-shadow: var(--darkShadow);
  border: 1px solid #282e43;
}
.is_dark .pagination ul li a:hover {
  color: var(--blackColor);
  border: 1px solid transparent;
}
.is_dark .cartarea__plus__minus .input-qty.input-qty {
  background: transparent;
  color: var(--blackColor);
}
.is_dark .cartarea__clear a, .is_dark .cartarea__shiping__update a, .is_dark .cartarea__grand__totall a {
  background-color: transparent;
  color: var(--blackColor);
  border: 1px solid var(--borderColor2);
}
.is_dark .cartarea__clear a:hover, .is_dark .cartarea__shiping__update a:hover, .is_dark .cartarea__grand__totall a:hover {
  color: var(--primaryColor);
}
.is_dark .cartarea__discount__code textarea {
  color: var(--blackColor);
}
.is_dark .contact__common__input {
  color: var(--blackColor);
}
.is_dark .contact__text p {
  color: var(--blackColor);
}
.is_dark .contact__text h6 {
  color: var(--blackColor);
}
.is_dark .contact__icon span {
  background: var(--blackColor);
}
.is_dark .faq__accordion .accordion-item h2 button {
  color: var(--blackColor);
}
.is_dark .accordion-item {
  background-color: var(--whiteColor);
}
.is_dark .featurearea__price span.featurearea__price__button {
  color: var(--blackColor);
}
.is_dark .featurearea__price span.featurearea__price__button.black__color {
  color: var(--whiteColor);
}
.is_dark .featurearea__countdown .count p {
  color: var(--blackColor);
}
.is_dark .featurearea__countdown .count span {
  color: var(--blackColor);
}
.is_dark .featurearea__bottom__button a:hover {
  color: var(--blackColor);
}
.is_dark .gridarea__wraper {
  box-shadow: var(--darkShadow);
}
.is_dark .gridarea__wraper .gridarea__img .gridarea__small__button .grid__badge {
  color: var(--blackColor);
}
.is_dark .gridarea__wraper .gridarea__img .gridarea__small__icon i {
  color: var(--blackColor);
}
.is_dark .product__grid__action ul li a:hover,
.is_dark .product__grid__action ul li button:hover {
  color: var(--blackColor);
}
.is_dark .tabcollectionarea__product__item__link {
  color: var(--blackColor);
}
.is_dark .tabcollectionarea__product__item__link.active,
.is_dark .tabcollectionarea__product__item__link:hover {
  color: var(--primaryColor);
}
.is_dark .project__details__sidebar__heading h6 {
  color: var(--blackColor);
}
.is_dark .project__details__sidebar__list ul li span {
  color: var(--blackColor);
}
.is_dark .project__details__sidebar__list ul li p {
  color: var(--blackColor);
}
.is_dark .shopsidebar__widget {
  box-shadow: var(--darkShadow);
}
.is_dark .product__grid__action ul li svg {
  color: var(--blackColor);
}
.is_dark .work__process__single {
  background: rgba(161, 183, 207, 0.2);
}
.is_dark .bg__black .slider__controls__arrows--3 .arrow-btn {
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
}
.is_dark .bg__black .slider__controls__arrows--3 .arrow-btn svg path {
  stroke: var(--whiteColor);
}
.is_dark .bg__black .slider__controls__arrows--3 .arrow-btn:hover svg path {
  stroke: var(--blackColor);
}
.is_dark .bg__black .testimonial__3 {
  background: #f3f5f5;
}
.is_dark .bg__black .section__title--3.blog__4__padding__right .section__title__heading h3 {
  color: var(--blackColor);
}
.is_dark .bg__black .section__title--3.blog__4__padding__right .section__title__button span {
  color: var(--blackColor);
  border-color: var(--blackColor);
}
.is_dark .bg__black .footer__3 {
  background: var(--whiteColor);
}
.is_dark .bg__black .testimonial__3 .slider__controls__arrows .arrow-btn {
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
}
.is_dark .bg__black .testimonial__3 .slider__controls__arrows .arrow-btn svg path {
  stroke: var(--whiteColor);
}
.is_dark .bg__black .testimonial__3 .slider__controls__arrows .arrow-btn:hover svg path {
  stroke: var(--blackColor);
}
.is_dark .bg__black .herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn {
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
}
.is_dark .bg__black .herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn svg path {
  stroke: var(--whiteColor);
}
.is_dark .bg__black .herobanner__arrow__1.herobanner__arrow__1--2.slider__controls__arrows .arrow-btn:hover svg path {
  stroke: var(--blackColor);
}
.is_dark .video__text h2 {
  -webkit-text-stroke-color: rgb(255, 255, 255);
}
.is_dark .about__list ul li {
  color: var(--blackColor);
}
.is_dark .headerarea--5.bg__black {
  background: var(--whiteColor);
}
.is_dark .herobanner__button .video__button a:hover {
  border: 1px solid var(--primaryColor);
}
.is_dark .herobanner__button .video__button span {
  color: var(--blackColor);
}
.is_dark .team__member__3__single {
  box-shadow: var(--darkShadow);
}
.is_dark .service__features__wrap {
  box-shadow: var(--darkShadow);
}
.is_dark .about__hiring__list ul li {
  color: var(--blackColor);
}
.is_dark .herobannerarea__price span {
  color: var(--blackColor);
}
.is_dark .bg__black .about__list ul li {
  color: var(--whiteColor);
}
.is_dark .bg__black .about__list ul li i {
  color: var(--blackColor);
}
.is_dark .bg__black .herobanner__content__wrapper--2 .herobanner__title h1,
.is_dark .bg__black .herobanner__content__wrapper--2 .herobanner__title h2 {
  color: var(--whiteColor);
}
.is_dark .bg__black .herobanner__content__wrapper--2 .herobanner__text p {
  color: var(--whiteColor);
}
.is_dark .bg__black .pricing__single__text ul li {
  color: var(--whiteColor);
}
.is_dark .herobanner.herobanner__margin {
  box-shadow: var(--darkShadow);
}
.is_dark .animate__content__item--2 h3 {
  -webkit-text-stroke-color: var(--blackColor);
}
.is_dark .bg__black .contact__common__input {
  color: var(--whiteColor);
}
.is_dark .bg__black .headerarea__icon ul li a {
  color: var(--whiteColor);
}
.is_dark .bg__black .sticky .headerarea__icon ul li a {
  color: var(--blackColor);
}
.is_dark .bg__black .headerarea__icon.headerarea__offcavas__icon ul li a {
  color: var(--blackColor);
}
.is_dark .bg__black .headerarea--4.header__sticky.sticky {
  background: var(--whiteColor);
}
.is_dark .business__strategy__tab {
  box-shadow: var(--darkShadow);
}
.is_dark .loginarea__wraper {
  box-shadow: var(--darkShadow);
}
.is_dark .loginarea form .loginarea__form label {
  color: var(--blackColor);
}
.is_dark .loginarea form .loginarea__form .common__login__input {
  color: var(--blackColor);
}/*# sourceMappingURL=style.css.map */

/* Full-bleed hero with constrained content */
.herobanner { position: relative; overflow: hidden; }
.herobanner .swiper,
.herobanner .swiper-wrapper,
.herobanner .swiper-slide { width: 100vw; }

.herobanner__single { position: relative; min-height: 950px; }
.hero__bg { position: absolute; inset: 0; z-index: 1; }
.hero__video { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.05) contrast(1.05); }
.hero__overlay { position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(60% 80% at 70% 40%, rgba(0,113,188,.25) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.7) 100%);
}
.herobanner__single .container { position: relative; z-index: 3; }
.herobanner .herobanner__slider__active { overflow: visible; }

/* Eyebrow + buttons (as you had) */
.herobanner__eyebrow {
  display:inline-block; margin-bottom:10px; letter-spacing:.08em; text-transform:uppercase;
  font-weight:600; font-size:.9rem; color:#19c1e1;
  background: rgba(25,193,225,.12); padding:.35rem .6rem; border-radius:999px;
}
.default__button.btn__ghost { background: transparent; border:1px solid rgba(255,255,255,.6); color:#fff; }
.default__button + .btn__ghost { margin-left:10px; }




/* =========================================
   0) Restore original header padding (opt-in)
   ========================================= */
   .header--pad-restore .desktop__menu__wrapper,
   .header--pad-restore .headerarea__main__wrapper{
     /* tweak this value if you want a touch more/less */
     padding-block: 22px;
   }
   
   /* =========================================
      1) Section tokens (unchanged)
      ========================================= */
   .theme--telecoms { --acc:#19C1E1; --acc-t:#E0F7FA; --acc-s:#0071bc; }
   .theme--it       { --acc:#19C1E1; --acc-t:#E0F7FA; --acc-s:#0071bc; }
   .theme--consult  { --acc:#19C1E1; --acc-t:#E0F7FA; --acc-s:#0071bc; }
   .theme--compl    { --acc:#19C1E1; --acc-t:#E0F7FA; --acc-s:#0071bc; }
   .theme--recruit  { --acc:#19C1E1; --acc-t:#E0F7FA; --acc-s:#0071bc; }
   .theme--about    { --acc:#19C1E1; --acc-t:#E0F7FA; --acc-s:#0071bc; }
   
   /* =========================================
      2) Keep your header look: only tiny spacing touch
      ========================================= */
   .nav--accent .headerarea__main__menu nav > ul{
     display: flex; /* most themes already do this; harmless if repeated */
     gap: 20px;     /* small breathing room without changing layout */
   }
   
   /* =========================================
      3) Top-level pill (same behaviour as before)
      ========================================= */
   .nav--accent .headerarea__has__dropdown{
     position: relative; z-index: 1;
     padding: .45rem .85rem;        /* conservative so header height stays familiar */
     border-radius: 12px;           /* your base radius */
     transition: color .18s ease, transform .18s ease;
   }
   .nav--accent li[class*="theme--"] > a.headerarea__has__dropdown::before{
     content:""; position:absolute; inset:0; z-index:-1;
     background: var(--acc); border-radius: inherit;
     transform: scale(.96); opacity: 0; transition: opacity .18s, transform .18s;
   }
   /* Hover + Active */
   .nav--accent li[class*="theme--"]:hover > a.headerarea__has__dropdown::before,
   .nav--accent li.is-active[class*="theme--"] > a.headerarea__has__dropdown::before{
     opacity:1; transform: scale(1);
   }
   .nav--accent li[class*="theme--"]:hover > a.headerarea__has__dropdown,
   .nav--accent li.is-active[class*="theme--"] > a.headerarea__has__dropdown{
     color:#fff;
   }
   
   /* =========================================
      4) Mega-nav panel: use SHADE-20 as background
         + white titles, readable body text
      ========================================= */
   .nav--accent li[class*="theme--"] > .headerarea__submenu.headerarea__mega__menu__wrapper{
     background: var(--acc-s);                /* DARK background per section */
     border-top: 3px solid var(--acc);        /* base colour accent */
   }
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__title{
     color:#fff; text-shadow: 0 1px 1px rgba(0,0,0,.22);
   }
   /* Body copy and lists on dark background */
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__content p,
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__item a{
     color: rgba(255,255,255,.9);
   }
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__item a:hover{
     color:#fff; text-decoration: underline;
   }
   
   /* =========================================
      5) Buttons in mega-nav: base colour, white text,
         darker on hover + slightly less rounded on hover
      ========================================= */
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__content .default__button{
     background: var(--acc); border-color: var(--acc);
     color:#fff !important;
     border-radius: 10px; /* base */
     transition: background .18s ease, border-color .18s ease, border-radius .18s ease;
     /* thin light border for contrast on dark panels */
     box-shadow: 0 0 0 1px rgba(255,255,255,.25) inset;
   }
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__content .default__button:hover,
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__content .default__button:focus{
     background: var(--acc-s); border-color: var(--acc-s);
     color:#fff !important;
     border-radius: 8px; /* slightly less rounded on hover */
   }
   
   /* Ensure the .btn__blue variant follows the same theming inside panels */
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__content .default__button.btn__blue{
     background: var(--acc); border-color: var(--acc); color:#fff !important;
   }
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__content .default__button.btn__blue:hover{
     background: var(--acc-s); border-color: var(--acc-s);
   }
   
   /* =========================================
      6) Accessible focus ring in section colour (scoped)
      ========================================= */
   .nav--accent li[class*="theme--"] > a.headerarea__has__dropdown:focus-visible{
     outline: 2px solid var(--acc); outline-offset: 3px; border-radius: 10px;
   }

   /* Increase nav spacing slightly */
.nav--accent .headerarea__main__menu nav > ul{
  gap: 20px; /* tightened slightly to make room for a larger desktop logo */
}

/* Icons inside nav links */
.nav--accent .headerarea__has__dropdown i{
  font-size: 18px;        /* adjust as needed */
  line-height: 1;
  vertical-align: middle;
  margin-right: 6px;      /* spacing between icon and word */
  display: inline-block;
  width: 20px;            /* keeps alignment neat */
  text-align: center;
}

/* Keep text aligned vertically with icons */
.nav--accent .headerarea__has__dropdown span{
  vertical-align: middle;
}

/* Optional: hover/focus theming */
.nav--accent li[class*="theme--"]:hover > a.headerarea__has__dropdown i,
.nav--accent li.is-active[class*="theme--"] > a.headerarea__has__dropdown i{
  color: #fff;
}

/* Allow header nav to span the full screen width */
.container--wide {
  max-width: min(1880px, 95vw) !important;
  width: min(1880px, 95vw) !important;
  padding-left: 24px;
  padding-right: 24px;
}

.desktop__menu__wrapper .headerarea__logo{
  max-width: 280px;
}

.desktop__menu__wrapper .headerarea__logo img{
  width: 100%;
  height: auto;
}

.desktop__menu__wrapper .headerarea__button{
  margin-left: 14px;
}

/* =========================
   Title underline = bright section colour
   (handles both border-underline and ::after variants)
   ========================= */
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__title{
    position: relative;
    border-bottom-color: var(--acc) !important; /* if your theme uses border-bottom */
  }
  
  /* If your theme uses a pseudo underline, recolour it */
  .nav--accent li[class*="theme--"] .headerarea__mega__menu__title::after{
    background: var(--acc) !important;
  }
  
  /* If you want a guaranteed underline even if none exists, uncomment:
  .nav--accent li[class*="theme--"] .headerarea__mega__menu__title::after{
    content: ""; display: block; width: 42px; height: 3px;
    background: var(--acc); margin-top: 10px; border-radius: 2px;
  }
  */
  
  /* =========================
     Link hover “left bar” = bright section colour
     (works whether your theme already draws it or not)
     ========================= */
  .nav--accent li[class*="theme--"] .headerarea__mega__menu__item a{
    position: relative; padding-left: 14px; /* room for the bar */
  }
  
  /* Recolour existing bar if your theme already adds one */
  .nav--accent li[class*="theme--"] .headerarea__mega__menu__item a::before{
    background: var(--acc) !important;
  }
  
  /* Fallback: create the bar if none exists (safe no-op if it does) */
  .nav--accent li[class*="theme--"] .headerarea__mega__menu__item a::before{
    content: ""; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); width: 3px; height: 0;
    background: var(--acc); border-radius: 2px;
    transition: height .18s ease;
  }
  .nav--accent li[class*="theme--"] .headerarea__mega__menu__item a:hover::before{
    height: 1.1em; /* grows to match text height */
  }
  
  /* =========================
     Buttons: keep weight steady on hover
     (prevents bold jump you noticed)
     ========================= */
  .nav--accent li[class*="theme--"] .headerarea__mega__menu__content .default__button:hover,
  .nav--accent li[class*="theme--"] .headerarea__mega__menu__content .default__button:focus{
    font-weight: inherit !important;
  }
  
/* =========================
   1) Nuke the theme's default left bar on mega-nav links
   (covers border-left, pseudo elements, and bg gradients)
   ========================= */
   .nav--accent .headerarea__mega__menu__item,
   .nav--accent .headerarea__mega__menu__item a {
     border-left: 0 !important;
     background: none !important;                 /* kills bg gradients used as bars */
     background-image: none !important;
     box-shadow: none !important;                 /* some themes fake bars with inset shadows */
     position: relative;
     padding-left: 14px;                          /* room for OUR bar */
   }
   
   /* kill any existing pseudo bars the theme adds */
   .nav--accent .headerarea__mega__menu__item::before,
   .nav--accent .headerarea__mega__menu__item::after,
   .nav--accent .headerarea__mega__menu__item a::before,
   .nav--accent .headerarea__mega__menu__item a::after {
     content: none !important;
     background: transparent !important;
     box-shadow: none !important;
   }
   
   /* =========================
      2) Add ONE accent-colour bar (ours) on ::after
      ========================= */
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__item a::after {
     content: "" !important;                      /* re-enable our ::after (wins over the reset) */
     position: absolute;
     left: 0; top: 50%; transform: translateY(-50%);
     width: 3px; height: 0;
     background: var(--acc) !important;           /* bright section colour */
     border-radius: 2px;
     transition: height .18s ease;
   }
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__item a:hover::after,
   .nav--accent li[class*="theme--"] .headerarea__mega__menu__item a:focus::after {
     height: 1.1em;                               /* grows to match text height */
   }
   
   /* section styling */
.trust-ticker{
  margin-top: -20px;   /* pulls it upward to overlap hero */
  position: relative;
  z-index: 10;         /* ensures it's above the section below */
}

.trust-ticker__inner{
  display: flex; align-items: stretch;
  background: #19C1E1;   /* Crestwave base */
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;        /* center on page */
  height: 100px;
}

/* left label with arrow */
.trust-ticker__label{
  position: relative;
  background: #0071bc;   /* shade-20 */
  color: #fff;
  padding: 18px 22px;
  min-width: 190px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; letter-spacing: .02em;
}
.trust-ticker__label::after{
  content:""; position:absolute; right:-24px; top:0; bottom:0;
  width: 24px;
  clip-path: polygon(0 0,100% 50%,0 100%);
  background: #0071bc;
}
/* keep the "We work with…" label visible at all widths */
.trust-ticker__label{ display:flex !important; align-items:center; justify-content:center; }

/* make the slider consume remaining width and logos scale cleanly */
.trust-ticker .brands__slider{ flex:1 1 auto; min-width:0; }
.trust-ticker .swiper-wrapper{ align-items:center; }
.trust-ticker .swiper-slide{ display:flex; align-items:center; justify-content:center; }
.trust-ticker .swiper-slide img{ width:auto; height:clamp(28px,5.2vw,46px); }

/* optional: slightly shorter bar on tiny screens */
@media (max-width:575.98px){
  .trust-ticker__inner{ height:84px; }
}
/* Base (desktop ≥1200px) stays as-is */
.trust-ticker .swiper-slide img{
  width:auto;
  height:clamp(28px, 4.6vw, 46px);
  object-fit:contain;
  display:block;
}

/* Tablet / small desktop (2 logos) — bigger logos + a bit taller bar */
@media (min-width:576px) and (max-width:1199.98px){
  .trust-ticker__inner{ height:96px; }
  .trust-ticker .swiper-slide img{
    height:clamp(40px, 6.2vw, 62px);  /* was ~46px max; now larger */
  }
}

/* Mobile (1 logo) — largest logos + taller bar */
@media (max-width:575.98px){
  .trust-ticker__inner{ height:100px; }
  .trust-ticker__label{ min-width:150px; } /* keep the label present but compact */
  .trust-ticker .swiper-slide img{
    height:clamp(44px, 12vw, 68px);       /* noticeably bigger on phones */
  }
}
/* Mobile-only: keep the label on one line and a bit smaller */
@media (max-width: 575.98px){
  .trust-ticker__label{
    min-width: 138px;          /* a bit narrower than before */
    padding: 10px 12px;        /* tighter padding */
  }
  .trust-ticker__label::after{
    right: -16px; width: 16px; /* arrow scales with the label */
  }
  .trust-ticker__label span{
    font-size: clamp(12px, 3.6vw, 14px);  /* slightly smaller text on phones */
    line-height: 1.1;
    white-space: nowrap;       /* prevent wrap */
    letter-spacing: .015em;
  }
}
/* Mobile-only refinements */
@media (max-width: 575.98px){
  /* shorter bar so it feels tighter */
  .trust-ticker__inner{
    height: 82px;
  }

  /* keep the label compact and single-line */
  .trust-ticker__label{
    min-width: 132px;
    padding: 8px 10px;
  }
  .trust-ticker__label::after{
    right: -14px; width: 14px;
  }
  .trust-ticker__label span{
    font-size: clamp(12px, 3.4vw, 13px);
    line-height: 1.1;
    white-space: nowrap;
  }

  /* make logos appear larger by reducing slide padding and upping img height */
  .trust-ticker .swiper-slide{
    padding: 0 6px;                  /* was wider; tighter now */
  }
  .trust-ticker .swiper-slide img{
    height: clamp(48px, 13.5vw, 66px); /* bigger logos within the shorter bar */
    object-fit: contain;
    display: block;
  }
}

/* slider area */
.brands__slider{ flex:1; padding: 10px 18px; }
.brands__slider .swiper-slide{ display:flex; align-items:center; justify-content:center; }
.brands__slider img{
  max-height: 80px;
  max-width: 200px;
  filter: brightness(0) invert(1); /* white logos */
  opacity: .95;
  transition: opacity .2s, transform .2s;
}
.brands__slider img:hover{ opacity:1; transform:translateY(-1px); }

@media (max-width: 991.98px){
  .trust-ticker__label{ display:none; }
  .brands__slider img{ max-height:36px; }
}

/* Base off-state background */
.service__single__wraper {
  background: #0071bc;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 12px;
  height: 100%;
}

/* Core Services cards: safe, scoped hovers */
.service__single__wraper.theme--telecoms:hover { background: var(--acc); }
.service__single__wraper.theme--it:hover       { background: var(--acc); }
.service__single__wraper.theme--consult:hover  { background: var(--acc); }
.service__single__wraper.theme--compl:hover    { background: var(--acc); }
/* (and if needed)
.service__single__wraper.theme--recruit:hover  { background: var(--acc); }
.service__single__wraper.theme--about:hover    { background: var(--acc); }
*/

/* Keep text styles same as original */
.service__single__wraper .service__heading h5,
.service__single__wraper .service__heading h5 a {
  color: #fff; /* as original */
}
.service__single__wraper .service__text p {
  color: rgba(255,255,255,.85);
}

/* Icon hover tweak */
.service__single__wraper .service__icon a:hover svg path {
  stroke: #fff;
}

/* Recruitment belt stays solid accent */
.service__belt {
  margin-top: 34px;
  background: #0071bc;
  color: #fff;
  padding: 18px 24px;
  border-radius: 12px;          /* rounded corners */
  max-width: 100%;              /* safe */
}

.service__belt .container {
  max-width: 1140px;            /* match Bootstrap .container (col-12 width) */
}

.service__belt__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.service__belt__inner h3,
.service__belt__inner p,
.service__belt__inner span {
  margin: 0;               /* strip browser default offset */
  line-height: 1.4;        /* normalised line height */
  display: flex;
  align-items: center;     /* fix visual centering */
}

.service__belt .default__button.btn__blue {
  background: #fff;
  border-color: #fff;
  color: #000 !important;
}

.service__belt .default__button.btn__blue:hover {
  background: #19c1e1;
  border-color: #19c1e1;
  color: #fff !important;
}

/* Responsive tweak */
@media (max-width: 991.98px) {
  .service__belt__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ---- Crestwave footer overrides ---- */
:root {
  /* Set this to your main brand blue */
  --crestwave-blue: #19c1e1;
}

/* 1) Kill underline decorations on footer section titles */
.footer .footer__menu__title h6,
.footer .footer__menu__title h6 * {
  text-decoration: none !important;
  border: 0 !important;
}
.footer .footer__menu__title h6::before,
.footer .footer__menu__title h6::after {
  content: none !important;
  display: none !important;
  background: none !important;
  border: 0 !important;
}

/* 2) Title chip styling (rounded rectangle) */
.footer .footer__titlechip {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  line-height: 1;
}

/* 3) Force all footer copy and links to white */
.footer,
.footer p,
.footer li,
.footer .footer__menu a,
.footer .footer__contact__list a,
.footer .footer__icon a,
.footer .copyright p,
.footer .copyright a {
  color: #fff !important;
}

/* Optional: hover colour for links */
.footer a:hover { color: var(--crestwave-blue) !important; }

/* 4) Colour all icons in brand blue */
.footer i,
.footer svg {
  color: var(--crestwave-blue) !important;
  fill: var(--crestwave-blue) !important; /* for SVGs if any */
}

/* 5) Contact list tidy */
.footer .footer__contact__list { list-style: none; margin: 14px 0 12px; padding: 0; }
.footer .footer__contact__list li { display: flex; align-items: center; gap: 10px; margin: 6px 0; }
.footer .footer__contact__list i { font-size: 16px; }

/* 6) Ensure menu links aren’t muted by theme */
.footer .footer__menu a { opacity: 1 !important; }

/* 7) Copyright links inline spacing looks clean even with custom separators */
.footer .copyright__right ul { display: flex; flex-wrap: wrap; gap: 10px; }
.footer .copyright__right li { display: inline-flex; align-items: center; }

/* ========== CTA Video ========== */
:root {
  /* Update to your exact brand blue if different */
  --crestwave-blue: #12B7D6;
}

.cta-video {
  position: relative;
  min-height: 400px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  border-bottom: 3px solid #07467f;
  border-top: 3px solid #07467f;
}

.cta-video__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.cta-video__overlay {
  position: absolute;
  inset: 0;
  /* Darken + subtle brand tint low in the frame so text pops */
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.72) 65%, rgba(0,0,0,.78) 100%),
    radial-gradient(1200px 300px at 50% 100%, color-mix(in oklab, var(--crestwave-blue) 30%, transparent) 0%, transparent 70%);
  mix-blend-mode: normal;
}

/* Content */
.cta-video .container { position: relative; z-index: 2; }
.cta-video__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 16px;
}
.cta-video__title {
  margin: 0 0 10px 0;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.1;
  font-weight: 700;
}
.cta-video__subtitle {
  margin: 0 0 22px 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  opacity: .95;
}

/* Make your existing button pop on dark video */
.cta-video .default__button.btn__blue {
  border-color: var(--crestwave-blue);
  background: var(-

/* ===== Our Team page – stable card layout ===== */
.team-page .team-intro .sec-title { margin-bottom: 8px; }

.team-page .team-jump__list{
  display:flex; flex-wrap:wrap; gap:10px 18px; justify-content:center;
  list-style:none; padding:0; margin:0 0 22px 0;
}
.team-page .team-jump__list a{
  text-decoration:none; padding:2px 0; border-bottom:1px dashed rgba(0,0,0,.35);
}
.team-page .team-jump__list a:hover{ border-bottom-style:solid; }

/* Card container */
.team-page .team-card{
  display:flex; align-items:flex-start; gap:24px;
  background:#fff; border:1px solid rgba(0,0,0,.08);
  border-radius:16px; padding:24px; margin-bottom:26px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

/* Left column: image capped at 300px */
.team-page .team-card__media{
  flex:0 0 300px; max-width:300px; width:300px;
  border-radius:14px; overflow:hidden;
}
.team-page .team-card__media img{
  display:block; width:100%; height:auto; object-fit:cover;
  border-radius:14px;
}

/* Right column: text */
.team-page .team-card__body{ flex:1 1 auto; min-width:0; }
.team-page .team-card__name{ margin:0 0 6px; font-size:clamp(22px,2.2vw,28px); line-height:1.2; }
.team-page .team-card__role{ margin:0 0 12px; font-weight:600; color:#4b5563; }
.team-page .team-card__bio p{ margin:0 0 10px; line-height:1.6; }

/* Spacing between cards */
.team-page .team-card + .team-card{ margin-top:18px; }

/* Responsive: stack on tablet/mobile */
@media (max-width: 991.98px){
  .team-page .team-card{
    flex-direction:column; padding:18px; gap:16px;
  }
  .team-page .team-card__media{
    width:100%; max-width:420px; flex:0 0 auto;
    margin:0 auto; /* center the photo */
  }
}

/* ========== Crestwave — 404 page (scoped) ========== */
.cw-404 .service__details__wraper{
  max-width: 720px;
  margin-inline: auto;
}

.cw-404 .service__details__heading h2{
  /* mirrors your theme’s large service title without relying on h4 */
  font-size: clamp(28px, 2.2vw + 16px, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cw-404 .service__details__text p{
  margin-bottom: 18px; /* tidy spacing */
}

.cw-404 .default__button{ 
  /* keep your existing button system; just give it a little lift space-wise */
  margin-top: 6px;
}

/* hero: force video on small screens */
@media (max-width: 575.98px){
  .herobanner .hero__video { display:block !important; }
}

/* hero: fluid min-height and correct layering (scoped to the home slider) */
.herobanner { position: relative; }

.herobanner__single {
  /* a sensible fluid baseline for all slides */
  --hero-min: clamp(420px, 58vh, 780px);
  min-height: var(--hero-min);
  position: relative;
  overflow: hidden;
}

/* neutralise the fixed utility only within the hero */
.herobanner .height__950 {
  height: auto !important;
  min-height: var(--hero-min);
}

/* slight lift on very large / very small screens */
@media (min-width: 1400px){
  .herobanner__single { --hero-min: clamp(520px, 62vh, 880px); }
}
@media (max-width: 768px){
  .herobanner__single { --hero-min: clamp(420px, 68vh, 820px); }
}

/* background + overlay stay behind content */
.herobanner .hero__bg { position: absolute; inset: 0; z-index: 1; }
.herobanner .hero__overlay { position: absolute; inset: 0; z-index: 2; }

/* video covers fully */
.herobanner .hero__video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  pointer-events: none; /* prevent accidental taps pausing it on mobile */
}

/* content sits above overlay */
.herobanner .container,
.herobanner .row,
.herobanner .herobanner__content__wrapper { position: relative; z-index: 3; }

/* make the inner grid respect the new min-height */
.herobanner__single .row.align-items-center { min-height: var(--hero-min); }

/* ============== NAV SWAP @1785px (desktop → mobile) ============== */

/* Desktop only (≥1785px): show desktop wrapper, hide mobile wrapper */
@media (min-width: 1785px){
  .desktop__menu__wrapper { display: block !important; }
  .mob_menu_wrapper       { display: none !important; }
}

/* Compact / mobile (<1785px): hide desktop wrapper, show mobile wrapper */
@media (max-width: 1784.98px){
  .desktop__menu__wrapper { display: none !important; }
  .mob_menu_wrapper       { display: block !important; }

  /* Make the compact header feel “intentional” (bigger tap targets + logo) */
  .mob_menu_wrapper { padding-block: 10px; }
  .mob_menu_wrapper .mobile__log--img { height: clamp(40px, 5vw, 60px); width: auto; }
  .mob_menu_wrapper .offcanvas__header--menu__open--btn { min-width: 44px; min-height: 44px; }
  .mob_menu_wrapper .default__button { padding: .6rem 1rem; border-radius: .6rem; }
}

/* If your theme shows both wrappers by default, this guarantees desktop shows only one */
@media (min-width: 1785px){
  header .headerarea__main__menu,
  header .headerarea__right { display: flex !important; }
}

/* ===============================
   Compact header (1784→992 band)
   Make the mobile bar fully live whenever body.nav-compact is set
   =============================== */

/* show the mobile wrapper and its key parts */
body.nav-compact .mob_menu_wrapper{ display:block !important; }
body.nav-compact .offcanvas__header--menu__open{ display:inline-flex !important; }
body.nav-compact .mobile__log{ display:block !important; }
body.nav-compact .mobile__component__right{ display:block !important; }

/* many themes hard-hide the offcanvas shell ≥992px — allow it while compact */
@media (min-width: 993px){
  body.nav-compact .offcanvas__header{ display:block !important; }
}

/* tap targets + tidy alignment so the logo doesn’t drift */
body.nav-compact .offcanvas__header--menu__open--btn{ min-width:44px; min-height:44px; }
body.nav-compact .mob_menu_wrapper .d-flex{ gap:14px; }
body.nav-compact .mobile__log--img{ height:clamp(40px,5vw,60px); width:auto; display:block; }

/* optional: ensure desktop bits never peek through while compact */
body.nav-compact .desktop__menu__wrapper{ display:none !important; }

/* ensure visibility when compact */
body.nav-compact .mob_menu_wrapper{ display:block !important; }
body.nav-compact .offcanvas__header--menu__open,
body.nav-compact .offcanvas__header--menu__open--btn{ display:inline-flex !important; }
body.nav-compact .mobile__log,
body.nav-compact .mobile__component__right{ display:block !important; }
/* prevent desktop peeking in compact */
body.nav-compact .desktop__menu__wrapper{ display:none !important; }

/* ==========================
   Crestwave — compact header sizing
   Applies only when your JS sets body.nav-compact
   ========================== */

/* Tweak these two numbers to taste */
:root{
  --cw-compact-logo-max: 78px;  /* max logo height in compact mode */
  --cw-compact-pad: 12px;       /* vertical padding (top & bottom) */
}

/* Increase bar height */
body.nav-compact .mob_menu_wrapper{
  padding-block: var(--cw-compact-pad);
  min-height: calc(var(--cw-compact-logo-max) + (var(--cw-compact-pad) * 2));
}

/* Bigger centre logo */
body.nav-compact .mobile__log--img{
  height: clamp(48px, 6vw, var(--cw-compact-logo-max));
  width: auto;
  display: block;
}

/* Larger burger hit-area */
body.nav-compact .offcanvas__header--menu__open--btn{
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Right-side CTA sizing */
body.nav-compact .mobile__component__right .default__button{
  padding: .65rem 1rem;
  line-height: 1;
  border-radius: .75rem;
}

/* Keep the row neat */
body.nav-compact .mob_menu_wrapper .d-flex{
  gap: 14px;
}

/* If header becomes sticky, prevent the hero underneath from being cropped */
body.nav-compact .header__sticky.sticky + .herobanner,
body.nav-compact .header__sticky.sticky + .breadcrumbarea,
body.nav-compact .header__sticky.sticky + .page-header{
  padding-top: calc(var(--cw-compact-logo-max) + (var(--cw-compact-pad) * 2));
}

/* Center the contact panel + image on tablet/mobile, with equal side gaps */
@media (max-width: 991.98px){
  /* nuke any asymmetric column padding */
  .contact .contact__info__right{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* center the gradient container and give equal whitespace left/right */
  .contact .contact__info{
    /* max width guard + equal side gap */
    width: min(720px, calc(100% - 24px));
    margin: 0 auto 24px auto;       /* centers the whole box */
    padding-left: 16px;              /* symmetric internal padding */
    padding-right: 16px;
  }

  /* center the image block the same way */
  .contact .contact__img{
    width: min(720px, calc(100% - 24px));
    margin: 12px auto 0 auto;        /* centers the image container */
  }
  .contact .contact__img img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;             /* matches your card radius */
  }
}

/* Optional: on very small phones, slightly larger side gap looks nicer */
@media (max-width: 575.98px){
  .contact .contact__info,
  .contact .contact__img{
    width: min(640px, calc(100% - 28px));  /* ~14px gap each side */
  }
}

/* ===== Bullet list upgrade (no HTML changes required) ===== */
.cw-bullets{
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}
.cw-bullets li{
  position: relative;
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(2,84,119,.045);                 /* faint grey/blue */
  border: 1px solid rgba(2,84,119,.12);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: .95rem; line-height: 1.45; color: #0f1b2f;
}
.cw-bullets li::before{
  content: "✓";                                    /* simple, reliable tick */
  flex: 0 0 22px; width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-top: 2px;
  background: #0ea5e9; color: #fff; font-weight: 900; font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

/* ===== Why Crestwave cards (wraps your existing grid items) ===== */
.service__details__planning .service__details__planning__inner{
  background: #fff;
  border: 1px solid #e7eef6;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
}
.service__details__planning__heading h6{
  margin: 0 0 8px 0;
  font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.service__details__planning__heading h6::before{
  content: "";
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(80% 80% at 30% 20%, rgba(14,165,233,.8) 0%, #0ea5e9 60%, #0f1b2f 100%);
  box-shadow: 0 0 0 4px rgba(14,165,233,.12);
}

/* Card spacing between columns */
.service__details__planning .row > [class*="col-"]{ margin-bottom: 18px; }

/* Mobile text size for bullets (a touch smaller to keep it tidy) */
@media (max-width: 575.98px){
  .cw-bullets li{ font-size: .94rem; }
}

/* ===== Tick-card bullets (scoped to service pages) ===== */
.service__details .cw-bullets{
  list-style:none;
  margin: 12px 0 0 0;
  padding:0;
}
.service__details .cw-bullets li{
  position:relative;
  display:flex; align-items:flex-start; gap:10px;
  background: rgba(2,84,119,.05);
  border:1px solid rgba(2,84,119,.14);
  border-radius:12px;
  padding:10px 12px;
  margin-bottom:8px;
  font-size:.96rem; line-height:1.5; color:#0f1b2f;
}
.service__details .cw-bullets li::before{
  content:"✓";
  flex:0 0 22px; width:22px; height:22px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%;
  margin-top:2px;
  background:#0ea5e9; color:#fff; font-weight:900; font-size:14px;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
}

/* tighten spacing when list is the only content in the block */
.service__details .service__details__planning__text > .cw-bullets:first-child{ margin-top:4px; }

/* ===== Why Crestwave cards (apply to your existing tiles) ===== */
.service__details .service__details__planning .service__details__planning__inner{
  background:#fff !important;
  border:1px solid #e7eef6 !important;
  border-radius:16px !important;
  padding:18px !important;
  box-shadow:0 10px 24px rgba(17,24,39,.05) !important;
}
.service__details .service__details__planning__heading h6{
  margin:0 0 10px 0;
  font-weight:700;
  display:flex; align-items:center; gap:10px;
}
.service__details .service__details__planning__heading h6::before{
  content:"";
  width:10px; height:10px; border-radius:50%;
  background: radial-gradient(80% 80% at 30% 20%, rgba(14,165,233,.85) 0%, #0ea5e9 60%, #0f1b2f 100%);
  box-shadow:0 0 0 4px rgba(14,165,233,.12);
}

/* grid column spacing so cards don’t stick vertically */
.service__details .service__details__planning .row > [class*="col-"]{ margin-bottom:18px; }

/* mobile: keep bullets tidy */
@media (max-width:575.98px){
  .service__details .cw-bullets li{ font-size:.94rem; }
}
/* Tick-card list visuals (applies once JS wraps bullets into <ul class="cw-bullets">) */
.service__details .cw-bullets{
  list-style:none; margin:12px 0 0; padding:0;
}
.service__details .cw-bullets li{
  position:relative; display:flex; align-items:flex-start; gap:10px;
  background: rgba(2,84,119,.05);
  border:1px solid rgba(2,84,119,.14);
  border-radius:12px;
  padding:10px 12px; margin-bottom:8px;
  font-size:.96rem; line-height:1.5; color:#0f1b2f;
}
.service__details .cw-bullets li::before{
  content:"✓";
  flex:0 0 22px; width:22px; height:22px; margin-top:2px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:#0ea5e9; color:#fff; font-weight:900; font-size:14px;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
}
@media (max-width:575.98px){
  .service__details .cw-bullets li{ font-size:.94rem; }
}
/* Tick-card list visuals */
.service__details .cw-bullets{
  list-style:none; margin:12px 0 0; padding:0;
}
.service__details .cw-bullets li{
  position:relative; display:flex; align-items:flex-start; gap:10px;
  background: rgba(2,84,119,.05);
  border:1px solid rgba(2,84,119,.14);
  border-radius:12px;
  padding:10px 12px; margin-bottom:8px;
  font-size:.92rem; line-height:1.5; color:#0f1b2f;
}
.service__details .cw-bullets li::before{
  content:"✓";
  flex:0 0 22px; width:22px; height:22px; margin-top:2px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:#0ea5e9; color:#fff; font-weight:900; font-size:14px;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
}
@media (max-width:575.98px){
  .service__details .cw-bullets li{ font-size:.9rem; }
}

/* ========= TICK LIST (only when JS adds .with-ticks) ========= */
.service__details .with-ticks .service__details__planning__text p{
  position: relative;
  margin: 8px 0;
  padding: 10px 12px 10px 40px;
  background: rgba(2,84,119,.05);
  border: 1px solid rgba(2,84,119,.12);
  border-radius: 12px;
  font-size: .95rem;
  line-height: 1.5;
  color: #0f1b2f;
}
.service__details .with-ticks .service__details__planning__text p::before{
  content: "✓";
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #0ea5e9; color: #fff; font-weight: 900; font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

/* ========= PACKAGES LIST (only when JS adds .packages-list) ========= */
.service__details .packages-list p{
  position: relative;
  margin: 10px 0;
  padding: 12px 14px 12px 16px;
  background: #f8fbfd;
  border: 1px solid #e4eef7;
  border-radius: 12px;
  font-size: .96rem;
  line-height: 1.55;
}
/* left accent */
.service__details .packages-list p::after{
  content: "";
  position: absolute;
  left: -1px; top: 8px; bottom: 8px;
  width: 4px; border-radius: 4px;
  background: linear-gradient(180deg,#0ea5e9,#3b82f6);
}
/* badge for the leading label (e.g., Assess:, Protect:, Launch:) */
.service__details .packages-list p > strong:first-child{
  display: inline-block;
  min-width: 108px;
  margin-right: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0ea5e9;
  color: #fff;
  font-size: .8rem;
  line-height: 1;
  letter-spacing: .02em;
}
@media (max-width: 575.98px){
  .service__details .packages-list p > strong:first-child{
    display: block; margin: 0 0 8px;
  }
}
/* ===== Footer logo sizing (Logo_1 only) ===== */
:root { --footer-logo-max: 165px; } /* tweak as you like */

.footer__left .footer__logo img[src*="Logo_1"]{
  max-width: var(--footer-logo-max);
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* helpful, but non-blocking, centering spacing */
  margin: 0 0 12px 0;
}

/* Limit the wrapper too so the image never stretches its column */
.footer__left .footer__logo{
  max-width: var(--footer-logo-max);
}

/* Optional: centre logo/text on small screens only */
@media (max-width: 767.98px){
  .footer__widget.footer__left{ text-align: center; }
  .footer__left .footer__logo{ margin: 0 auto 12px; }
}

/* If some theme rule is very aggressive, force it */
.footer__left .footer__logo img[src*="Logo_1"]{
  max-width: var(--footer-logo-max) !important;
}

/* Only between 994px and 1202px viewport widths */
@media (min-width: 994px) and (max-width: 1202px){
  /* target the exact poster image */
  .sidebar__video img[src$="crestwave-overview-poster-service.jpg"]{
    width: 240px !important;
    max-width: 240px !important;  /* ignore global img { max-width:100% } */
    height: auto !important;     /* keep aspect ratio */
    display: block;              /* avoid inline sizing weirdness */
  }

  /* if your link wrapper was full-width, let the image width win */
  .sidebar__video .video__card--link{
    display: inline-block;
  }
}

/* 4-up visual grid, responsive, no pink overlay */
.telecoms-visual-nav .tvn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.telecoms-visual-nav .tvn-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #0b0b0b; /* safe fallback while image loads */
}

.telecoms-visual-nav .tvn-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

/* Hover/focus: subtle lift, no color overlay */
.telecoms-visual-nav .tvn-card:hover img,
.telecoms-visual-nav .tvn-card:focus-visible img {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.telecoms-visual-nav .tvn-card:focus-visible {
  outline: 2px solid rgba(153, 211, 31, .9); /* accessible focus ring */
  outline-offset: 3px;
}

/* Breakpoints */
@media (max-width: 1199.98px) {
  .telecoms-visual-nav .tvn-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
  .telecoms-visual-nav .tvn-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 575.98px) {
  .telecoms-visual-nav .tvn-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Crestwave global add-ons */
:root{ --cw-accent:#17a7c6; --cw-accent-rgb:23,167,198; }

/* 1) Tick chips (only render where you add class="cw-check") */
.service__details .service__details__planning__text p.cw-check{
  position:relative !important;
  display:flex !important; align-items:flex-start;
  padding:12px 14px 12px 46px !important;
  margin:10px 0 !important;                 /* overridden from theme */
  line-height:1.45 !important;              /* overridden from theme */
  border:1px solid rgba(var(--cw-accent-rgb),.25) !important;
  background:#fff !important;
  background-image:linear-gradient(0deg, rgba(var(--cw-accent-rgb),.06), rgba(var(--cw-accent-rgb),.06)) !important;
  border-radius:14px !important;
  box-shadow:0 2px 10px rgba(0,0,0,.05) !important;
}
.service__details .service__details__planning__text p.cw-check:first-child{
  margin-top:0 !important; /* removes the “pushed down” look */
}
.service__details .service__details__planning__text p.cw-check::before{
  content:"" !important;
  position:absolute; left:14px; top:50%; transform:translateY(-50%);
  width:22px; height:22px; border-radius:50%;
  background:rgba(var(--cw-accent-rgb),.12) !important;
  border:2px solid var(--cw-accent) !important;
}
.service__details .service__details__planning__text p.cw-check::after{
  content:"" !important;
  position:absolute; left:21px; top:50%; transform:translateY(-58%) rotate(45deg);
  width:7px; height:12px;
  border-right:2px solid var(--cw-accent) !important;
  border-bottom:2px solid var(--cw-accent) !important;
}

/* 2) Clean version of the inner wrapper (kills theme padding/bg on that column) */
.service__details .service__details__planning .service__details__planning__inner.cw-clean{
  padding:0 !important;          /* removes big top padding */
  background:transparent !important;
  border:none !important; box-shadow:none !important; border-radius:0 !important;
}

/* 3) Card boxes for the feature grid (only where you add class="cw-card") */
.service__details .service__details__planning__inner.cw-card{
  padding:22px !important;
  border:1px solid rgba(0,0,0,.08) !important;
  border-radius:16px !important;
  background:#fff !important;
  box-shadow:0 8px 24px rgba(0,0,0,.06) !important;
  height:100%;
  display:flex;
  flex-direction:column;
}
.service__details .cw-card .service__details__planning__heading{ margin-bottom:8px !important; }
.service__details .cw-card .service__details__planning__heading h6{ margin:0 !important; font-weight:700 !important; }

@media (max-width:575.98px){
  .service__details .service__details__planning__text p.cw-check{ padding-left:44px !important; }
  .service__details .service__details__planning__inner.cw-card{ padding:18px !important; border-radius:14px !important; }
}

/* Crestwave service-detail media clipping + dark-mode readability fixes */
.service__details .service__details__img,
.service__details .service__details__planning__img,
.service__details .sidebar__video .video-card__frame {
  overflow: hidden;
  border-radius: 24px;
  background: #f4fbff;
  line-height: 0;
  box-shadow: 0 10px 28px rgba(7, 39, 76, 0.08);
}

.service__details .service__details__img img,
.service__details .service__details__planning__img img,
.service__details .sidebar__video .video-card__frame img,
.service__details .sidebar__video .video__card--link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.service__details .sidebar__video .video__card--link {
  display: block;
  border-radius: inherit;
}

.service__details .service__details__planning__text p.cw-check,
#cw-connectivity .service__details__planning__text p.cw-check {
  color: #0f1b2f !important;
}

.is_dark .service__details .service__details__img,
.is_dark .service__details .service__details__planning__img,
.is_dark .service__details .sidebar__video .video-card__frame {
  background: rgba(4, 20, 36, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.is_dark .service__details .service__details__planning .service__details__planning__inner.cw-card,
.is_dark #cw-connectivity .service__details__planning__inner.cw-card {
  background: rgba(5, 24, 42, 0.92) !important;
  border: 1px solid rgba(94, 218, 255, 0.18) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22) !important;
}

.is_dark .service__details .service__details__planning__heading h6,
.is_dark .service__details .service__details__planning__text p,
.is_dark .service__details .packages-list p,
.is_dark .service__details .cw-bullets li,
.is_dark .service__details .with-ticks .service__details__planning__text p,
.is_dark .service__details .service__details__planning__text p.cw-check,
.is_dark #cw-connectivity .service__details__planning__text p.cw-check {
  color: #eff8ff !important;
}

.is_dark .service__details .packages-list p,
.is_dark .service__details .cw-bullets li,
.is_dark .service__details .with-ticks .service__details__planning__text p,
.is_dark .service__details .service__details__planning__text p.cw-check,
.is_dark #cw-connectivity .service__details__planning__text p.cw-check {
  background: rgba(7, 33, 55, 0.92) !important;
  background-image: linear-gradient(180deg, rgba(23, 167, 198, 0.16), rgba(7, 33, 55, 0.92)) !important;
  border: 1px solid rgba(94, 218, 255, 0.22) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18) !important;
}

.is_dark .service__details .service__details__planning__heading h6::before {
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
}

.is_dark .service__details .service__details__planning__text p.cw-check::before,
.is_dark #cw-connectivity .service__details__planning__text p.cw-check::before {
  background: rgba(var(--cw-accent-rgb), 0.22) !important;
  border-color: #57d7ee !important;
}

.is_dark .service__details .service__details__planning__text p.cw-check::after,
.is_dark #cw-connectivity .service__details__planning__text p.cw-check::after {
  border-right-color: #baf6ff !important;
  border-bottom-color: #baf6ff !important;
}

.cw-equal-card-grid > [class*="col-"] {
  display: flex;
}

.cw-equal-card-grid .service__details__planning__inner.cw-card {
  width: 100%;
}

@media (max-width: 767.98px) {
  .cw-equal-card-grid > [class*="col-"] {
    display: block;
  }
}

:root {
  --cw-insights-cta-bg: #f7f9fb;
  --cw-insights-cta-border: rgba(0, 0, 0, 0.06);
  --cw-insights-cta-shadow: 0 10px 26px rgba(7, 39, 76, 0.08);
  --cw-insights-cta-text: inherit;
}

.is_dark {
  --cw-insights-cta-bg: rgba(7, 33, 55, 0.94);
  --cw-insights-cta-border: rgba(94, 218, 255, 0.22);
  --cw-insights-cta-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  --cw-insights-cta-text: #eff8ff;
}

.is_dark .cw-insights-cta-card h6,
.is_dark .cw-insights-cta-card p {
  color: var(--cw-insights-cta-text) !important;
}

/* Crestwave trust ticker: fixed-height logo balancing */
.trust-ticker__label {
  min-width: 224px;
}

.trust-ticker__label span {
  white-space: nowrap;
}

.trust-ticker .brands__slider {
  padding: 10px 26px;
}

.trust-ticker .swiper-slide {
  overflow: visible;
  padding: 0 8px;
}

.trust-ticker .swiper-slide img {
  height: var(--brand-logo-height, 62px) !important;
  width: auto !important;
  max-height: var(--brand-logo-height, 62px) !important;
  max-width: var(--brand-logo-width, 220px);
  object-fit: contain;
}

.trust-ticker .brand-logo--boost-wide {
  --brand-logo-height: 82px;
  --brand-logo-width: none;
  --brand-logo-scale: 1.7;
}

.trust-ticker .brand-logo--boost-compact {
  --brand-logo-height: 86px;
  --brand-logo-width: none;
  --brand-logo-scale: 1.35;
}

.trust-ticker .brand-logo--boost img {
  max-width: none !important;
  transform: scale(var(--brand-logo-scale, 1.4));
  transform-origin: center;
  will-change: transform;
  position: relative;
  z-index: 2;
}

.trust-ticker .brand-logo--boost img:hover {
  transform: scale(var(--brand-logo-scale, 1.4)) translateY(-1px);
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .trust-ticker .brand-logo--boost-wide {
    --brand-logo-height: 78px;
    --brand-logo-scale: 1.55;
  }

  .trust-ticker .brand-logo--boost-compact {
    --brand-logo-height: 82px;
    --brand-logo-scale: 1.28;
  }
}

@media (max-width: 575.98px) {
  .trust-ticker__label {
    min-width: 158px;
    padding: 8px 8px;
  }

  .trust-ticker__label span {
    font-size: clamp(11px, 3vw, 12px);
  }

  .trust-ticker .brands__slider {
    padding: 8px 14px;
  }

  .trust-ticker .swiper-slide img {
    --brand-logo-height: 64px;
  }

  .trust-ticker .brand-logo--boost-wide {
    --brand-logo-height: 66px;
    --brand-logo-scale: 1.35;
  }

  .trust-ticker .brand-logo--boost-compact {
    --brand-logo-height: 72px;
    --brand-logo-scale: 1.2;
  }
}

/* Target actual logo files so Swiper loop clones also receive the larger treatment. */
.trust-ticker .brands__slider img[src$="helmgodfrey.png"],
.trust-ticker .brands__slider img[src$="barclays.png"],
.trust-ticker .brands__slider img[src$="associated-press.png"],
.trust-ticker .brands__slider img[src$="coremont.png"],
.trust-ticker .brands__slider img[src$="3.png"],
.trust-ticker .brands__slider img[src$="4.png"] {
  width: clamp(280px, 19vw, 340px) !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  transform: none !important;
}

.trust-ticker .brands__slider img[src$="canary-wharf-group.png"],
.trust-ticker .brands__slider img[src$="tresidor.png"] {
  width: clamp(230px, 15vw, 270px) !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  transform: none !important;
}

@media (max-width: 575.98px) {
  .trust-ticker .brands__slider img[src$="helmgodfrey.png"],
  .trust-ticker .brands__slider img[src$="barclays.png"],
  .trust-ticker .brands__slider img[src$="associated-press.png"],
  .trust-ticker .brands__slider img[src$="coremont.png"],
  .trust-ticker .brands__slider img[src$="3.png"],
  .trust-ticker .brands__slider img[src$="4.png"] {
    width: clamp(220px, 72vw, 280px) !important;
  }

  .trust-ticker .brands__slider img[src$="canary-wharf-group.png"],
  .trust-ticker .brands__slider img[src$="tresidor.png"] {
    width: clamp(190px, 62vw, 235px) !important;
  }
}
