/*============================================================= ADD this code for header sticky =======================================================

======================================================================================================================================================*/
.siteLogo{
    display: block;
}
.mobileLogo{
   display: none;
}
.LaptopTeam{
  display: block;
}
.mobileTeam{
  display: none;
}
.marginTop5{
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .bannerBG{
    margin-top: 80px;
  }
  .topbar{
     position: fixed;
    top:0;
    z-index: 1111;
    width: 100%;
  }
  .siteLogo{
    display: none;
  }
  .mobileLogo{
    display: block;
    width: 127px;
    height: auto;
    margin-top: 7px;
  }
  .LaptopTeam{
  display: none;
}
.mobileTeam{
  display: block;
}
.marginTop5{
  margin-top: 0px;
}
.badgeCard{
  padding: 6px 5px !important;
  margin-bottom: 2px !important;
  min-height: 60px;
  border-radius: 8px !important;
}
.badgeCard2{
  padding: 0px !important;
}
.gapMobile{
  gap:8px 0px !important;
}
.badgeCard svg{
  width: 22px;
  height: auto;
}
.thanksMobileHeader{
  margin-top: 60px;
}
}
@media screen and (max-width: 413px){
  .topbarCallBtn img{
    width: 17px;
    height: 17px;
  }
  .topbarCallBtn {
        padding: 7px !important;
    }
  .laptopCallBtn span{
    font-size: 18px !important ;
  }
  .laptopCallBtn p{
    font-size: 10px !important;
  }
  .badgeCard{
    min-height: auto !important
  }
  .menuButton{
    gap: 5px !important;
  }
}
@media screen and (max-width: 345px) {
   .mobileLogo {
            width: 60px;
            height: auto;
        }
        .bannerBG{
    margin-top: 72px;
  }
  .mobileLogo{
    width: 60px !important;
  }
  .mobileGap{
    gap:10px !important;
  }
  .calltext{
    margin-left: 6px !important;
  } 
  .laptopCallBtn span{
    font-size: 16px !important;
  }
  .laptopCallBtn p{
    font-size: 10px !important;
  }
}

/*=======================================Important Note    

      
  After adding the CSS code, there's a media query with a max-width of 345px around line number 1557.
  In this media query, two classes are being called, and you need to remove both of them.
  Below this, there's another media query with a max-width of 333px, and in this query, you need to remove
  three classes (`.laptopCallBtn span`, `.laptopCallBtn p`, and `.topbarCallBtn`). Lastly, there's a media query 
  with a max-width of 767px, and at the end of this media query, there's a class (`.laptopCallBtn span`) 
  with `font-size: 22px !important` around line number 1470. You need to remove the `!important` from this class.





========================= =================================*/

/*============================================================= ADD this code for header sticky =======================================================

======================================================================================================================================================*/


/*===========================================================================================================================
					Theme Colors , size , font familes , line height , letter spacing , fontweight
============================================================================================================================*/
/*------------------Defalt Styling------------------*/
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
}
a {
  text-decoration: none !important;
}
/*------------------color---------------------------*/
:root {
  --TopBar: #2a2d41;
  --BrandBlue: #2a2d41;
  --themeLightBlue: #f5fcff;
  --Damien-NormalText: #40414b;
  --themeWhite: #f4f7fa;
  --themeLightGray: #faf6f3;

/*  --nunitosans: "Nunito Sans", sans-serif;*/
}
/*-------------------font size ---------------------*/
.fontSize12{
  font-size: 12px;
}
.fontSize13 {
  font-size: 13px;
}
.fontSize15 {
  font-size: 14px;
}
.fontSize16 {
  font-size: 16px;
}
.fontSize18 {
  font-size: 18px;
}
.fontSize19 {
  font-size: 19px;
}
.fontSize20 {
  font-size: 20px;
}
.fontSize21 {
  font-size: 21px;
}
.fontSize23 {
  font-size: 23px;
}
.fontSize48 {
  font-size: 48px;
}
.fontSize62 {
  font-size: 50px;
}
/*-------------------line hight--------------------*/
.lineHeight110 {
  line-height: 110%;
}
.lineHeight120 {
  line-height: 120%;
}
.lineHeight125 {
  line-height: 125%;
}
.lineHeight130 {
  line-height: 130%;
}
.lineHeight140 {
  line-height: 140%;
}
.lineHeight140 {
  line-height: 140%;
}
/*-------------------font weight--------------------*/
.fontWeight400 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight800 {
  font-weight: 800;
}
/*------------------Font Familes---------------------*/
/*@font-face {
  font-family: "nunitosans";
  src: url("NunitoSans.ttf") format("ttf supports variations"),
       url("NunitoSans.ttf") format("ttf-variations");
  font-weight: 300 800;
}*/

@font-face {
  font-family: 'nunitosans';
  src: url('./NunitoSans.woff2') format('woff2'),
       url('./NunitoSans.woff') format('woff'),
       url('./NunitoSans.ttf') format('truetype');
  font-style: normal;
  /* font-weight: 400; */
  font-display: swap;
}

.NunitoSans {
  font-family: "nunitosans", sans-serif;
}
.Palanquin {
  font-family: "nunitosans", sans-serif;
}
/*loader animation css
============================================*/
#loader {
  position: relative;
  width: 4px;
  height: 4px;
  padding: 0;
  display: inline-block;
}

#loader > div {
  content: "";
  background: white;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

#loader > div:nth-of-type(1) {
  left: 15px;
}

#loader > div:nth-of-type(3) {
  left: -15px;
}

/* dots fade */
.dots-fade > div {
  -webkit-animation: dots-fade 1.6s infinite ease;
  animation: dots-fade 1.6s infinite ease;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dots-fade > div:nth-of-type(1) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.dots-fade > div:nth-of-type(3) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }
}

@keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }
}
/*sidebar 
=====================================================================*/
.offcanvas{
  background-color: var(--TopBar)!important;
  width: 100%;
  z-index: 999999 !important;
}
.sidebar ul {
  text-align: center;
  gap:20px;
}
.sidebar ul li a{
  color: #fff !important;
  letter-spacing: 0.3px;
  transition: 0.35s;
  font-size: 22px;
}
.sidebar ul li a:hover{
  color: #fff;
}

/*=============================================Top Bar==============================*/
.topbar {
  background-color: var(--TopBar);
  padding: 0px 10px ;
}
.topbarCallBtn {
  border: 1px solid #8fa6cb;
  padding: 7px 12px;
  min-width: 240px;
}
.calltext {
  margin-left: 12px;
}
.calltext span {
  color: #f5faf8;
  letter-spacing: 0.24px;
}
.calltext p {
  color: #f5faf8;
  letter-spacing: 0.15px;
  font-size: 15px;
}
.laptopLogo {
  display: block;
}
.mobileLogo {
  display: none;
}
.menuList{
  gap: 20px;
}
.menu_link{
  color: white;
  opacity: 0.8;
  transition: 0.35s;
}
.menu_link:hover{
  color: white;
  opacity: 1;
}
.siteLogo{
  width: 200px;
  height: auto;
}
.bg-transparent{
    background-color:transparent !important;
  }
  .menuButton{
    display: flex;
    gap: 20px;
  }
.menuButton button{
  display: none;
}

/*=============================================banner section =============================*/
.bannerBG {
  background-color:#F4F7FA;
}
.banner {
  background-image: url("../media/linesBg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
.banner-tick {
  max-width: 64px !important;
  max-height: 26px;
}
.bannerHeading {
  font-family: "nunitosans", sans-serif;
  letter-spacing: -0.5px;
   color: #2A2D41;
}
.bannerArrow {
  left: -100px;
  top: -70px;
  position: relative;
}
#bannerArrow {
  stroke: #404975;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  visibility: hidden;
}
.bannerText{
  color: #40414B;
  letter-spacing: 0.18px;
}
.lapTopText{
  display: block;
}
.MoboleText{
  display: none;
}
.bannerArrow svg {
  position: absolute;
}
.bannerService {
  color: #40414B;
	font-weight: 800;
}
.bannerPhraText {
  color: #40414B;
  letter-spacing: 0.18px; 
}
.badgeCard{
  box-shadow: 0px 1.416px 4.248px 0px rgba(9, 44, 71, 0.30);
  border-radius: 11px;
  background-color: white;
  padding: 12px 9px;
  display: flex;
  flex-direction: column;
  justify-content: center;  
  height: 100%;
}
.badgeCard2{
  box-shadow: 0px 1.416px 4.248px 0px rgba(9, 44, 71, 0.30);
  border-radius: 11px;
  background-color: white;
  padding: 4px 0px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; 
}
.ColHeight{
  height: 100%;
}

.gap10{
  gap:10px;
}
.gap5{
  gap:5px;
}
.badgeImage2{
  width: 100%;
  height: auto;
}
.badgeCard .review{
  font-size: 15px;
  color: #3B3C48;
}
.badgeCard .reviewNumber{
  font-size: 13px;
  color: #343640;
  margin-top: 5px;
}
.fbBadgeBox {
  max-width: 232px;
  max-height: 130px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 1px 1px 0px rgba(9, 44, 71, 0.3);
  padding: 15px 12px;
  box-sizing: border-box;
}
.fbBadgeBox p {
  color: #343640;
}
.badgeImage {
  max-width: 100% !important;
  height: auto;
}
.portrait {
  max-width: 410px;
  width: 100%;
  height: auto;
}
.herder-form {
  padding: 16px 36px;
  box-shadow: 0px 4px 16px -6px rgba(40, 42, 53, 0.3);
  border-radius: 2px;
  background-color: #fff;
}
.herder-form label {
  color: #000000;
  letter-spacing: 0.16px;
}
.herder-form input {
  color: #6a6a6e;
  border: 1px solid #cbcddc;
}
.herder-form select {
  color: #000000;
  border: 1px solid #cbcddc;
}
.formHeading {
  color: #000000;
}
.hero-btn {
  background-image: linear-gradient(90deg, #f08156 0%, #ed6f3d 100%);
  padding: 18px 18px;
  text-align: center;
  color: white;
  border-radius: 2px;
  letter-spacing: 0.19px;
  box-shadow: 0px 7px 16px 0px rgba(8, 49, 68, 0.2);
  /* -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out; */
  background-size: 150% 100%;
  border: none;
  font-weight: 700;
  min-height: 60px;
  min-width: 224px;
}
.zindex1{
  z-index: 1;
}
.hero-btn:hover .arrowIcon {
  animation: btnIcon 1s ease-in-out;
}
.hero-btn:hover {
  background-position: 100% 0;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  background-image: linear-gradient(90deg, #c4572c 0%, #f3662e 100%);
}
@keyframes btnIcon {
  0% {
    transform: translateX(0px);
  }

  25% {
    transform: translateX(10px);
  }

  50% {
    transform: translateX(0px);
  }

  75% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0px);
  }
}
.formCallText span {
  color: #083144;

  letter-spacing: 0.24px;
}
.small-text-footer {
  color: #8FA6CB;
  letter-spacing: 0.15px;
  text-align: left;
}
.googleRated {
  color: #083144;
  letter-spacing: 0.16px;
}
.HeadshotBox {
  position: absolute;
  bottom: 0%;
  right: -3%;
  display: block;
  z-index: -1;
  overflow: hidden;
  max-width: 246px;
  width: 100%;
  background-position: bottom;
  display: flex;
  align-items: end;
}
.HeadshotBox img{
}
.mobileHeadshotBox {
  height:210px;
  padding: 0px 20px 0px 30px;
  width: fit-content;
  display: none;
  text-align: center;
}
.mobileHeadshotBox img{
  width: 65%;
}
.shift-data {
  min-height: 540px;
  min-width: 300px;
}
.shift-layout {
  /* min-width: 320px;
	min-height: 332px; */
  min-height: 268px;
  min-width: 320px;
}
.projectBadgeSection {
  height: 290px;
}
.justifyEvenly{
  justify-content: space-evenly;
}
.laptopBadge2{
  display: block;
}
.MobileBadge2{
  display: none;
}
.astpsBadge{
  width: 126px;
  height: auto;
  margin-top: -5px
}
.laptopBadge{
  justify-content: space-evenly;
}
/*slider
=================================================================================*/

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  margin: auto;
  overflow: hidden;
  position: relative;
}
.slider::before,
.slider::after {
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 120px;
  position: absolute;
  width: 50px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 30s linear infinite;
  animation: scroll 30s linear infinite;
  display: flex;
  width: calc(200px * 14);
  align-items: center;
}
.slider .slide-track .slide {
  margin: 0px 30px;
}
.laptopBadge {
  display: block;
}
.mobileBadge {
  display: none;
}
.gap16{
  gap:16px 16px;
}
.taxcurebadge{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/*===========================================testimonail section ============================*/
.testimonail {
  background-color: var(--BrandBlue);
}
.testimonailHeading {
  color: var(--themeWhite);
  letter-spacing: -0.48px;
}
.testimonailSubHeading {
  color: #e6ebf3;
  letter-spacing: 0.19px;
}
.videoText {
  color: #fef5ee;
  letter-spacing: 0.2px;
}
.videoText span {
  color: #b4c4dc;
}
.paddingRight10 {
  padding-right: 10px;
}
.paddingLeft10 {
  padding-left: 10px;
}
.testimonailCard {
  background-color: #3b425f;
  border: 1px solid #4b5482;
  border-radius: 1px;
  padding: 32px 28px;
  cursor: pointer !important;
  user-select: none !important;
}
.testimonailCard-text {
  color: var(--themeWhite);
  letter-spacing: -0.19px;
}
.testimonailCard-Name {
  color: #fce8d8;
  letter-spacing: 0.19px;
}
.testimonailCard {
  transition: box-shadow 0.6s, transform 0.6s;
}
.testimonailCard:hover {
  transform: translate3d(-5px, -5px, 0);
}

.testimonailCard:hover {
  box-shadow: 1px 1px 0 rgb(237, 133, 83), 2px 2px 0 rgba(237, 133, 83, 0.96),
    3px 3px 0 rgba(237, 133, 83, 0.94), 4px 4px 0 rgba(237, 133, 83, 0.92),
    5px 5px 0 rgba(237, 133, 83, 0.9), 6px 6px 0 rgba(237, 133, 83, 0.88),
    7px 7px 0 rgba(237, 133, 83, 0.86), 8px 8px 0 rgba(237, 133, 83, 0.84);
}

/*=========================================aboutDamiens section =======================================*/
.aboutDamiens {
  background-color: var(--themeLightGray);
}
.aboutDamiens-Heading {
  color: #2a2d41;
  letter-spacing: -0.48px;
}
.aboutDamiens-text {
  color: #40414b;
  letter-spacing: -0.19px;
}
.bgLogo {
  background-image: url("../media/BGdamianLogo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 140%;
}
.damiensImage2 {
  margin-top: -35px;
  position: relative;
}
.damiensName {
  position: absolute;
  top: 25%;
  right: 10%;
  width: fit-content;
}
.damiensName span {
  color: #40414b;
  letter-spacing: 0.16px;
}
.damiensName div {
  z-index: 1;
}
.damiensName p {
  color: #40414b;
  letter-spacing: 0.24px;
}
.damiensName svg {
  position: absolute;
  top: -40px;
  left: -18px;
  z-index: -1;
}
.MobiledamiensImage2 {
  display: none;
}
#joeCricle {
  stroke: #f2ac7f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  visibility: hidden;
}
#joeCricle2 {
  stroke: #f2ac7f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  visibility: hidden;
}
/*=====================================founder section===================================*/
.founder {
  background-color: #3b425f;
}
.founderHeading {
  color: var(--themeWhite);
  letter-spacing: -0.48px;
}
.founderHeading span {
  position: relative;
  z-index: 1;
}
.founderHeading span svg {
  position: absolute;
  top: 7px;
  left: -7px;
  z-index: -1;
}
.founderText {
  color: var(--themeWhite);
  letter-spacing: -0.19px;
}
.JoeVideo {
  width: fit-content;
  position: relative;
}
.JoeVideo button {
  border: none;
  position: absolute;
  bottom: -20px;
  left: 35%;
  border-radius: 4px;
  background-color: transparent;
}
.JoeVideo video {
  max-width: 250px;
  margin: auto;
  border-radius: 8px;
}
.joeDaminesName h3 {
  color: #fef5ee;
  letter-spacing: 0.24px;
}
.joeDaminesName p {
  color: #fef5ee;
  letter-spacing: 0.16px;
}
.meetjoeText {
  color: #fef5ee;
  letter-spacing: -0.19px;
}
.contactJoeBtn {
  padding: 12px 28px;
  background-image: linear-gradient(90deg, #f08156 0%, #ed6f3d 100%);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  border: 2px;
  color: #fff;
  letter-spacing: 0.19px;
  border-radius: 2px;
}
.contactJoeBtn:hover {
  color: white;
}
#meet {
  stroke: #d36f48;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  visibility: hidden;
}
/*===============================================IRS-&-State section===============================*/
.IRS-State {
  background-color: #f6f1ee;
}
.IRS-StartHeading {
  color: #2a2d41;
  letter-spacing: -0.48px;
}
.IRS-StartSubheading {
  color: #3a3c45;
  letter-spacing: 0.19px;
}
.stateCard {
  padding: 16px;
  background-color: white;
  box-shadow: 1px 1px 0px 0px #ed8553;
  border-radius: 1px;
  transition: box-shadow 0.6s, transform 0.6s;
  cursor: pointer !important;
  user-select: none !important;
}
.stateCard-title {
  color: #3a3c45;
  letter-spacing: 0.19px;
}
.stateCard-text {
  min-height: 168px;
}
.stateCard-text p {
  letter-spacing: 0.16px;
  color: #40414b;
}
.stateCard:hover {
  transform: translate3d(-5px, -5px, 0);
}

.stateCard:hover {
  box-shadow: 1px 1px 0 rgb(237, 133, 83), 2px 2px 0 rgba(237, 133, 83, 0.96),
    3px 3px 0 rgba(237, 133, 83, 0.94), 4px 4px 0 rgba(237, 133, 83, 0.92),
    5px 5px 0 rgba(237, 133, 83, 0.9), 6px 6px 0 rgba(237, 133, 83, 0.88),
    7px 7px 0 rgba(237, 133, 83, 0.86), 8px 8px 0 rgba(237, 133, 83, 0.84);
}

/*============================= services section ============================*/
.services {
  background-color: white;
}
.servicesCard {
  background-image: linear-gradient(119deg, #2a2d41 46.27%, #3d5368 84.18%);
  padding: 38px 32px 30px 32px;
  position: relative;
  z-index: 44444;
}
.sideborder {
  background-color: #ed8553;
  width: 101%;
  height: 430px;
  position: absolute;
  left: -8px;
  top: -8px;
}
.sliderName {
  color: #f4f7fa;
  letter-spacing: 0.32px;
}
.sliderText {
  color: #f5f5fd;
  letter-spacing: -0.19px;
  min-height: 160px;
}
.sliderLink {
  color: #b4c4dc;
  letter-spacing: 0.16px;
}
.sliderLink:hover .LinkIcon {
  animation: btnIcon 1s ease-in-out;
}
.sliderLink:hover {
  color: #b4c4dc;
}
.serviceHeading {
  color: #2a2d41;
  letter-spacing: -0.48px;
}
.serviceList {
  list-style: none;
}
.servicesTab {
  padding: 18px 24px;
  border-radius: 2px 2px 0px 0px;
  transition: 0.3s;
}
.servicesTab.active {
  background-color: #e6ebf3;
  cursor: pointer;
}
.servicesTab:hover .tabIcon {
  fill: #3a3c45;
}
.servicesTab.active .tabIcon {
  fill: #3a3c45;
}
.servicesTab:hover {
  background-color: #e6ebf3;
  cursor: pointer;
}
.servicesTabText {
  color: #3b425f;
}
.overFlowHidden {
  overflow: hidden;
}
.tab-pane.show .slideShow {
  animation: slideranimation 0.25s ease-in-out !important;
  overflow: hidden;
}
@keyframes slideranimation {
  0% {
    transform: translate(600px);
  }
  100% {
    transform: translate(0);
  }
}
/*============================Threaten Your Future =========================================*/
.ThreatenFuture {
  background-color: var(--themeWhite);
}
.ThreatenFuture-Heading {
  color: #2a2d41;
  letter-spacing: -0.48px;
}
.ThreatenFuture-Heading span {
  position: relative;
}
.ThreatenFuture-Heading span svg {
  position: absolute;
  top: -22px;
  right: -30px;
  animation: kingLine 2s linear infinite;
}
.ThreatenFuture-SubHeading {
  color: #575964;
  letter-spacing: -0.19px;
}
.zIndex1 {
  z-index: 1;
}
@keyframes kingLine {
  0% {
    transform: translateY(0px);
  }
  60% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0px);
  }
}
.ThreatenFuture-form {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #b4c4dc;
  padding: 32px 24px;
}
.ThreatenFuture-form label {
  color: #6a6a6e;
}
.GuideBtn {
  padding: 18px 18px;
  width: 100%;
  background-image: linear-gradient(90deg, #f08156 0%, #ed6f3d 100%);
  border: none;
  color: #fff;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  background-size: 150% 100%;
  border: none;
  font-weight: 700;
  box-shadow: 0px 7px 16px 0px rgba(8, 49, 68, 0.2);
}
.GuideBtn:hover .GuideLeftIcon {
  animation: btnIcon 1s ease-in-out;
}
.GuideBtn:hover {
  background-position: 100% 0;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  background-image: linear-gradient(90deg, #c4572c 0%, #f3662e 100%);
}
.bookArrow {
  width: 280px !important;
  height: auto !important;
  position: absolute;
  bottom: 50px;
  left: 30%;
  z-index: -1;
}
.bookImageOnMobile {
  display: none;
}
/*===============================================faqs section=========================================*/
.faqs {
  background-color: white;
}
.faqHeadingn {
  color: #2a2d41;
  letter-spacing: -0.48px;
  position: relative;
  z-index: 1;
  width: fit-content;
}
.faqHeadingn svg {
  position: absolute;
  z-index: -1;
  top: -50%;
  right: 0px;
}
.accordion-item {
  margin-bottom: 10px;
  border: none !important;
}
.accordion-button {
  background-color: #e6ebf3 !important;
  color: #40414b !important;
  letter-spacing: 0.1px;
}
.accordion-button::after {
  background-image: url(../media/faq.svg) !important;
  width: 44px !important;
  height: 44px !important;
  background-size: 100% !important;
}
.accordion-button:not(.collapsed) {
  background-color: #d36f48 !important;
  color: white !important;
  font-size: 20px;
}
.accordion-button:focus {
  outline: none !important;
  box-shadow: 0 0 0 white !important;
  background-color: #d36f48;
}
.accordion-body {
  padding: 20px 40px 40px 40px !important;
}
.accordion-body p {
  margin-bottom: 0px;
  color: #60636c;
  letter-spacing: 0.16px;
  line-height: 30px;
}
/*===========================================Free Consultation======================================*/
.FreeConsultation {
  background-image: linear-gradient(180deg, #3b425f 36.75%, #2a2d41 100%);
}
.FreeConsultation-Heading {
  color: #fef5ee;
  letter-spacing: -0.48px;
}
.FreeConsultation-subHeading {
  color: #e6ebf3;
  letter-spacing: -0.19px;
}
.FreeConsultation-Form label {
  color: #f4f7fa;
  letter-spacing: 0.19px;
}
.FreeConsultation-Form input {
  border: none;
  border-bottom: 1px solid #d2dbeb;
  border-radius: 2px;
  background-color: transparent;
  color: #d2dbeb !important;
}
.FreeConsultation-Form input:focus {
  background-color: transparent;
  box-shadow: 0 0 0 #3b425f !important;
  border-color: #f06327 !important;
  border-width: 1px;
}
.helpNowBtn {
  padding: 18px 40px;
  border-radius: 2px;
  background-color: #404975;
  box-shadow: 0px 7px 16px 0px rgba(8, 49, 68, 0.2);
  border: none;
  color: #fff;
  letter-spacing: 0.19px;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  background-size: 150% 100%;
}
.helpNowBtn:hover .HelpNowIcon {
  animation: btnIcon 1s ease-in-out;
}
.helpNowBtn:hover {
  background-position: 100% 0;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.small-text{
  color: #898989;
  text-align: left;
	font-weight: 400;
}
/*============================footer section =============================*/
footer {
  background-color: #2a2d41;
}
.footerCallBtn {
  width: 250px;
}
.footerText {
  color: #d2dbeb;
  letter-spacing: 0.16px;
  opacity: 0.6;
}
.footerHeadingtext {
  color: #e6ebf3;
  letter-spacing: 0.19px;
}
.footertextPadding {
  padding-left: 40px;
}
.copyRight {
  background-color: #2a2d41;
  border-top: 1px solid #3b425f;
}
.copyrightText {
  color: #b4c4dc;
  opacity: 0.7;
  letter-spacing: 0.16px;
}
.copyRightLink {
  color: #b4c4dc;
  letter-spacing: 0.16px;
  opacity: 0.7;
}
.copyRightLink:hover {
  color: #b4c4dc;
  opacity: 1;
}
.textAlignCenter {
  text-align: right;
}

@media screen and (min-width: 1400px) {
  .HeadshotBox{
    right: 0%;

  }
  .bannerArrow svg{
   left: 50px;
  }
  /*.video-container {
    height: 358px !important;
  }*/
}
@media screen and (max-width: 1199px) {
  .tabetRelative {
    position: relative;
  }
  .damiensImage2 {
    position: absolute !important;
    bottom: 0;
  }
  .damiensImage2 img {
    width: 100%;
    height: auto;
  }
  .damiensImage2 .damiensName {
    top: 28%;
    right: -3%;
  }
  .ThreatenFuture-Heading span svg {
    right: -18px;
  }
  .HeadshotBox{
    right: -6%;
  }
  .astpsBadge{
    width: 72%;
  }
  .bannerArrow svg{
   top: 145px;
  }
  .menuList{
    gap: 16px;
  }
  .siteLogo{
    width: 170px;
    height: auto;
  }
  .topbarCallBtn{
    min-width: 210px;
  }
  .laptopCallBtn span{
    font-size: 20px ;
  }
  .laptopCallBtn p{
    font-size: 13px ;
  }
  /*.video-container{
    height: 256px;
  }*/
}
@media screen and (max-width: 1024px) {
  .damiensImage2 .damiensName {
    top: 28%;
    right: 0%;
  }
}
@media screen and (max-width: 850px) {
  .damiensImage2 .damiensName {
    top: 25% !important;
    right: -4% !important;
    transform: scale(0.8);
  }
}
/*---------------------------------------------Tablet Screen Media Query----------------------------------------------*/
@media screen and (max-width: 991px) {
  /*font size*/
  .fontSize13 {
    font-size: 13px;
  }
  .fontSize15 {
    font-size: 15px;
  }
  .fontSize16 {
    font-size: 15px;
  }
  .fontSize19 {
    font-size: 18px;
  }
  .fontSize20 {
    font-size: 18px;
  }
  .fontSize21 {
    font-size: 19px;
  }
  .fontSize23 {
    font-size: 22px;
  }
  .fontSize48 {
    font-size: 40px;
  }
  .fontSize62 {
    font-size: 48px;
  }
  .menuList{
    display: none !important;
  }
  .menuButton button{
  display: block;
  border:none;
}
  .HeadshotBox{
    position: static;
    margin: auto;
    text-align: center;
  }
  .HeadshotBox img{
    width: 65%;
  }
  .bookArrow {
    display: none;
  }
  .bannerArrow {
    display: none;
  }
  .tabletCenter {
    text-align: center;
  }
  .tabletJustifyCenter {
    justify-content: center;
  }
  .banner {
    padding-bottom: 0px;
  }
  .mobilePaddingbottom {
    padding-bottom: 0px !important;
  }
  .damiensImage2 .damiensName {
    top: 25%;
    right: -10%;
  }
  .founderHeading span svg {
    width: 100px;
    top: 5px;
  }
  .mobilePaddingBttom20 {
    padding-bottom: 20px;
  }
  .servicesTab {
    padding: 10px;
  }
  .bookImageOnlaptop {
    display: none;
  }
  .bookImageOnMobile {
    display: block;
  }
  .faqHeadingn svg {
    top: -8%;
    width: 120px;
  }
  .ThreatenFuture-Heading span svg {
    width: 40px;
    right: -10px;
  }
  /*.video-container {
    height: 190px !important;
  }*/
  .projectBadgeSection {
    height: 210px;
  }
  .mdNone {
    display: none;
  }
  .laptopBadge2{
    display: none !important;

  }
.MobileBadge2{
  display: block;
}
.mobileBadge{
  display: block;
}
.gap16{
  justify-content: center;
}
.astpsBadge{
    width: 65%;
  }
  .herder-form{
    margin-top: 20px !important;
  }
}
/*---------------------------------------------Mobile Screen Media Query----------------------------------------------*/
@media screen and (max-width: 767px) {
  /*font size*/
  .fontSize13 {
    font-size: 13px;
  }
  .fontSize15 {
    font-size: 14px;
  }
  .fontSize16 {
    font-size: 15px;
  }
  .fontSize18 {
  font-size: 16px;
}
  .fontSize19 {
    font-size: 16px;
  }
  .fontSize20 {
    font-size: 17px;
  }
  .fontSize21 {
    font-size: 18px;
  }
  .fontSize23 {
    font-size: 18px;
  }
  .fontSize48 {
    font-size: 28px;
  }
  .fontSize62 {
    font-size: 40px;
  }
  .laptopLogo {
    display: none;
  }
  .mobileLogo {
    display: block;
  }
  .topbar {
    padding: 10px 0px;
  }
  .damiensImage2 img {
    width: 100%;
  }
  .paddingLeft10 {
    padding-left: 0;
  }
  .mobileGap {
    gap: 25px;
  }
  .topbarCallBtn {
    min-width: auto;
  }
  .bannerBG {
    padding-top: 24px !important;
  }
  .MobileTop10{
    padding-top: 10px !important;
  }
  .MobileTop20{
    padding-top:0px !important;
  }
  .paddingLR{
  padding-left: 100px;
  padding-right: 100px;
  justify-content: center;
  align-items: center;
}
  .ColHeight{
    height: auto;
  }
  .banner {
    padding-bottom: 0px;
  }
  .MobileCenter {
    text-align: center;
  }
  .mobilePaddingbottom {
    padding-bottom: 0px !important;
  }
  .laptopBadge {
    display: none;
  }
  .mobileBadge {
    display: block;
  }
  .slider .slide-track {
    width: calc(200px * 9);
    max-height: 120px;
  }
  .damiensImage2 {
    display: none;
  }
  .MobiledamiensImage2 .damiensName {
    right: -30%;
  }
  .MobiledamiensImage2 {
    position: relative;
    margin-top: -35px;
    display: block;
  }
  .MobiledamiensImage2::before {
    content: "";
    position: absolute;
    width: 101%;
    height: 250px;
    bottom: -10px;
    left: 0;
    background: linear-gradient(
      to top,
      rgba(250, 246, 243, 1) 30%,
      rgba(250, 246, 243, 0.9) 20%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .mobilePaddingNone {
    padding-top: 0px !important;
    margin-top: -100px !important;
    z-index: 1;
  }
  .founderHeading span svg {
    width: 85px;
    top: 0px;
  }
  .paddingBottom24 {
    padding-bottom: 30px !important;
  }
  .mobileFooterLogo {
    margin-left: -8px;
  }
  .stateCard-text {
    min-height: auto;
  }
  .freeArrow {
    display: none;
  }
  .FreeConsultation-Form {
    padding-top: 40px;
  }
  .FreeConsultation {
    padding-bottom: 0px !important;
  }
  .footertextPadding {
    padding-left: 0px;
  }
  .textAlignCenter {
    text-align: center !important;
    padding: 10px 0px;
  }
  .faqHeadingn svg {
    top: -110%;
    width: 100px;
  }
  .ThreatenFuture-Heading span svg {
    width: 40px;
    height: auto;
    top: -16px;
    right: -14px;
  }
  .fbBadgeBox {
    height: 100%;
  }
  .servicesTab {
    justify-content: center;
  }
  .paddingLeft20 {
    padding: 0px 13px;
  }
  .paddingL-0 {
    padding-right: 0px !important;
  }
  .gap16{
    gap:0px 0px !important;
  }
  .soze58 {
    width: 58px;
    height: 58px;
  }
  .marginLeft-5 {
    margin-left: -5px;
  }
  .paddingLeft-Right10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .bannerPhraText {
    min-width: 296px;
    min-height: 90px;
    max-height: auto;
    max-width: 100%;
  }
  .projectBadgeSection {
    height: 175px;
  }
  .alignCenterMobile {
    align-items: center;
  }
  .pTop16{
    padding-top: 10px !important;
  }
  .pTop10{
    padding-top:10px !important;
  }
  .siteLogo{
    display: none;
  }
  .mobileLogo{
    display: block;
    width: 60px;
    height: auto;
    margin-top: 7px;
  }

  .laptopCallBtn span{
    font-size: 22px ;
  }
  .laptopCallBtn p{
    font-size: 14px ;
  }
  .bannerHeading{
    font-size: 30px !important;
  }
  /*.mobileHeadshotBox{
      height: 180px;
  }*/
  /* .mobileHeadshotBox {
    min-height: 142px;
  } */
  /*.video-container{
    height: 290px;
  }*/
  .astpsBadge{
    width: 65%;
  }
   .HeadshotBox{
    min-height: 223px;
  }
  .lapTopText{
  display: none;
}
.MoboleText{
  display: block;
}
.badgeCard {
  margin-bottom: 10px;
}
}

@media screen and (max-width: 480px){
  .paddingLR{
  padding-left: 60px;
  padding-right: 60px;
}
}
@media screen and (max-width: 413px) {
  .ThreatenFuture-Heading span svg {
    width: 40px;
    height: auto;
    top: -16px;
    right: -15px;
  }
}
@media screen and (max-width: 368px) {
  .faqHeadingn svg {
    top: -60%;
  }
}
@media screen and (max-width: 460px) {
  .MobiledamiensImage2 .damiensName {
    right: -40%;
  }
  .MobiledamiensImage2::before {
    height: 200px;
  }
  /*.video-container{
    height: 240px;
  }*/
}
@media screen and (max-width: 375px) {
  .MobiledamiensImage2 .damiensName {
    transform: scale(0.6);
    right: -50%;
  }
  .mobileHeadshotBox{
    height: 170px;
  }
  .mobileHeadshotBox img{
    width: 70%;
  }
  /*.video-container {
    height: 190px !important;
  }*/
}
@media screen and (max-width: 350px) {
  .MobiledamiensImage2 .damiensName {
    transform: scale(0.2);
    right: -50%;
  }
  .MobiledamiensImage2::before {
    height: 150px;
  }
  .GuideBtn {
    font-size: 13px;
  }
  .paddingLR{
  padding-left: 10px !important;
  padding-right: 10px !important;
}
}
@media screen and (max-width: 400px) {
  .MobiledamiensImage2 .damiensName {
    transform: scale(0.8);
  }
  .paddingLR{
  padding-left: 40px;
  padding-right: 40px;
}
.badgeCard .review{
  font-size: 14px;
}

}
@media screen and (max-width: 377px) {
  .hero-btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 333px) {
  .paddingLeft20 {
    text-align: center;
  }
  
  .mobileHeadshotBox{
    height: 160px;
  }
  /*.video-container {
    height: 170px !important;
  }*/
}
@media screen and (max-width: 362px) {
  .paddingLR{
  padding-left: 30px;
  padding-right: 30px;
}
}

/*----------------------------------------scroll animation css -------------------------*/

.animation-top {
  opacity: 0.4;
  transform: translateY(100px);
  transition: transform 4s 0.25s cubic-bezier(0, 1, 0.3, 1),
    opacity 0.3s 0.25s ease-out;
  will-change: transform, opacity;
  transition: 0.8s;
}

.animation-top.is-visible {
  opacity: 1;
  transform: translateY(0px);
}
.animation-right {
  opacity: 0;
  transform: translateX(100px);
  transition: transform 4s 0.25s cubic-bezier(0, 1, 0.3, 1),
    opacity 0.5s 0.25s ease-out;
  will-change: transform, opacity;
  transition: 0.8s;
}

.animation-right.is-visible {
  opacity: 1;
  transform: translateX(0px);
}
@media screen and (max-width: 991px) {
  .animation-top {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  .animation-right {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}
.video-container {
        position: relative;
        width: 100%;
        height: 307px;
       
      }
      .video-container1{
        background-image: url(../media/videobg1.jpg);
        background-size: cover;
      }
       .video-container2{
        background-image: url(../media/videobg2.jpg);
        background-size: cover;
      }

      .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }

      @media screen and (min-width: 1400px) {
        .video-container {
          height: 358px !important;
        }
      }

      @media screen and (max-width: 1199px) {
        .video-container {
          height: 256px;
        }
      }

      @media screen and (max-width: 991px) {
        .video-container {
          height: 190px;
        }
      }

      @media screen and (max-width: 767px) {
        .video-container {
          height: 290px;
        }

        .bannerPhraText {
          font-size: 16px !important;
        }

        .siteLogo {
          width: 61px;
          height: 64px;
        }

        .hero-btn {
          font-size: 16px !important;
        }
      }

      @media screen and (max-width: 575px) {
        .video-container {
          height: 309px;
        }
      }

      @media screen and (max-width: 460px) {
        .video-container {
          height: 240px;
        }
      }

      @media screen and (max-width: 375px) {
        .video-container {
          height: 195px !important;
        }

        .hero-btn {
          font-size: 14px !important;
        }
      }

      @media screen and (max-width: 345px) {
        .video-container {
          height: 180px !important;
        }
      }

      @media screen and (max-width: 333px) {
        .video-container {
          height: 170px !important;
        }
      }
/*============================================================= bootstrap csss =======================================================

======================================================================================================================================================*/
@charset "UTF-8";
/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}


td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

iframe {
  border: 0;
}

[hidden] {
  display: none !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
   .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
   .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
   .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
   .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
   .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}


.gx-2 {
  --bs-gutter-x: 0.5rem;
}

@media (min-width: 576px) {

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

textarea.form-control {
  min-height: calc(1.5em + (0.75rem + 2px));
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
 .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled, .btn.disabled {
  pointer-events: none;
  opacity: 0.65;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #0a58ca;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.toast:not(.showing):not(.show) {
  opacity: 0;
}
.toast.hide {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* rtl:end:ignore */

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}

.offcanvas.show {
  transform: none;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.position-relative {
  position: relative !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.w-100 {
  width: 100% !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.m-0 {
  margin: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

/* rtl:begin:remove */

/* rtl:end:remove */

.text-white {
  color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.visible {
  visibility: visible !important;
}
@media (min-width: 992px) {

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }
}
/*============================================================= custom style css =======================================================

======================================================================================================================================================*/
/*--------------------------------- Padding bottom ----------------------------*/
.padding-bottom-12{
    padding-bottom: 12px;
}
.padding-bottom-16{
    padding-bottom: 16px;
}
.padding-bottom-20{
    padding-bottom: 20px;
}
.padding-bottom-24{
    padding-bottom: 24px;
}
.padding-bottom-32{
    padding-bottom: 32px;
}
.padding-bottom-36{
    padding-bottom: 36px;
}
.padding-bottom-40{
    padding-bottom: 40px;
}
.padding-bottom-48{
    padding-bottom: 48px;
}
.padding-bottom-56{
    padding-bottom: 56px;
}
.padding-bottom-64{
    padding-bottom: 64px;
}
.padding-bottom-72{
    padding-bottom: 72px;
}
.padding-bottom-96{
    padding-bottom: 96px;
}
/*`````````````````````````````````Padding bottom ```````````````````````````*/
/*--------------------------------- Padding top ----------------------------*/
.padding-top-4{
    padding-top: 4px;
}
.padding-top-8{
    padding-top: 8px;
}
.padding-top-12{
    padding-top: 12px;
}
.padding-top-16{
    padding-top: 16px;
}
.padding-top-20{
    padding-top: 20px;
}
.padding-top-24{
    padding-top: 24px;
}
.padding-top-32{
    padding-top: 32px;
}
.padding-top-40{
    padding-top: 40px;
}
.padding-top-48{
    padding-top: 48px;
}
.padding-top-56{
    padding-top: 56px;
}
.padding-top-64{
    padding-top: 64px;
}
.padding-top-72{
    padding-top: 72px;
}
.padding-top-96{
    padding-top: 96px;
}
.padding-top-104{
    padding-top: 104px;
}
.padding-top-120{
    padding-top: 120px;
}
/*`````````````````````````````````Padding top```````````````````````````*/
/*---------------------------------Padding Left  ----------------------------*/
/*`````````````````````````````````Padding Left `````````````````````````*/
/*---------------------------------Padding right  ----------------------------*/
/*`````````````````````````````````Padding right `````````````````````````*/
/*---------------------------------Tabs Screens ----------------------------*/
@media screen and (max-width: 992px){
      /*---------------------------------Padding bottom small tabs screens----------------------------*/
    .padding-bottom-12{
        padding-bottom: 12px;
    }
    .padding-bottom-16{
        padding-bottom: 16px;
    }
    .padding-bottom-20{
        padding-bottom: 16px;
    }
    .padding-bottom-24{
        padding-bottom: 20px;
    }
    .padding-bottom-32{
        padding-bottom: 20px;
    }
    .padding-bottom-36{
        padding-bottom: 24px;
    }
    .padding-bottom-40{
        padding-bottom: 28px;
    }
    .padding-bottom-48{
        padding-bottom: 36px;
    }
    .padding-bottom-56{
        padding-bottom: 40px;
    }
    .padding-bottom-64{
        padding-bottom: 48px;
    }
    .padding-bottom-72{
        padding-bottom: 56px;
    }
    .padding-bottom-96{
        padding-bottom: 64px;
    }
    /*```````````````````````````````````Padding bottom  tabs screens``````````````````````````*/
         /*---------------------------------Padding top small tabs screens----------------------------*/
         .padding-top-4{
            padding-top: 4px;
        }
        .padding-top-8{
            padding-top: 8px;
        }
        .padding-top-12{
            padding-top: 12px;
        }
        .padding-top-16{
            padding-top: 16px;
        }
        .padding-top-20{
            padding-top: 16px;
        }
        .padding-top-24{
            padding-top: 20px;
        }
        .padding-top-32{
            padding-top: 20px;
        }
        .padding-top-40{
            padding-top: 28px;
        }
        .padding-top-48{
            padding-top: 36px;
        }
        .padding-top-56{
            padding-top: 40px;
        }
        .padding-top-64{
            padding-top: 48px;
        }
        .padding-top-72{
            padding-top: 56px;
        }
        .padding-top-96{
            padding-top: 64px;
        }
        .padding-top-104{
            padding-top: 72px;
        }
        .padding-top-120{
            padding-top: 96px;
        }
        /*```````````````````````````````````Padding top  tabs screens``````````````````````````*/
        /*---------------------------------Padding Left  ----------------------------*/
    /*`````````````````````````````````Padding Left  `````````````````````````*/
    /*---------------------------------Padding right  ----------------------------*/
    /*`````````````````````````````````Padding Left  `````````````````````````*/
    /*```````````````````````````````````````Tabs Screens end````````````````````````````````````````*/
/*---------------------------------Mobile Screens ----------------------------*/
@media screen and (max-width: 767px){
     /*---------------------------------Padding bottom  mobile screens----------------------------*/
    .padding-bottom-12{
        padding-bottom: 12px;
    }
    .padding-bottom-16{
        padding-bottom: 12px;
    }
    .padding-bottom-20{
        padding-bottom: 16px;
    }
    .padding-bottom-24{
        padding-bottom: 16px;
    }
    .padding-bottom-32{
        padding-bottom: 20px;
    }
    .padding-bottom-36{
        padding-bottom: 24px;
    }
    .padding-bottom-40{
        padding-bottom: 28px;
    }
    .padding-bottom-48{
        padding-bottom: 36px;
    }
    .padding-bottom-56{
        padding-bottom: 40px;
    }
    .padding-bottom-64{
        padding-bottom: 44px;
    }
    .padding-bottom-72{
        padding-bottom: 48px;
    }
    .padding-bottom-96{
        padding-bottom: 56px;
    }
    /*`````````````````````````````Padding bottom  Mobile screens```````````*/
    /*---------------------------------Padding top mobile   screens----------------------------*/
    .padding-top-4{
        padding-top: 4px;
    }
    .padding-top-8{
        padding-top: 8px;
    }
    .padding-top-12{
        padding-top: 12px;
    }
    .padding-top-16{
        padding-top: 12px;
    }
    .padding-top-20{
        padding-top: 16px;
    }
    .padding-top-24{
        padding-top: 16px;
    }
    .padding-top-32{
        padding-top: 20px;
    }
    .padding-top-40{
        padding-top: 28px;
    }
    .padding-top-48{
        padding-top: 36px;
    }
    .padding-top-56{
        padding-top: 40px;
    }
    .padding-top-64{
        padding-top: 44px;
    }
    .padding-top-72{
        padding-top: 48px;
    }
    .padding-top-96{
        padding-top: 56px;
    }
    .padding-top-104{
        padding-top: 64px;
    }
    .padding-top-120{
        padding-top: 72px;
    }
    /*`````````````````````````````Padding top  Mobile screens```````````*/
      /*---------------------------------Padding Left mobile screen ----------------------------*/
    /*`````````````````````````````````Padding Left  `````````````````````````*/
     /*---------------------------------Padding Left mobile screen ----------------------------*/
    /*`````````````````````````````````Padding Left  `````````````````````````*/
}
/*`````````````````````````````````Mobile Screens end`````````````````````````````*/

}