/*===========================================================================================================================
					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%;
  scroll-behavior: smooth;
}
a {
  text-decoration: none !important;
}
::selection {
  background-color: #CDEEFF;
  color: #092144;
}
/*------------------color---------------------------*/
:root {
  --themeBlue: #061737;
  --themeLightBlue: #E9F7FF;
  --themeDark:#142240;
  --themegray: #F5F7F9;
  --themeFooter: #0A2252;

/*  --nunitosans: "Nunito Sans", sans-serif;*/
}
/*-------------------font size ---------------------*/
.fontSize15 {
  font-size: 15px;
}
.fontSize16 {
  font-size: 16px;
}
.fontSize17 {
  font-size: 17px;
}
.fontSize18 {
  font-size: 18px;
}
.fontSize19 {
  font-size: 19px;
}
.fontSize20 {
  font-size: 20px;
}
.fontSize23 {
  font-size: 23px;
}
.fontSize24 {
  font-size: 24px;
}
.fontSize26 {
  font-size: 26px;
}
.fontSize28 {
  font-size: 28px;
}
.fontSize32 {
  font-size: 32px;
}
.fontSize40 {
  font-size: 40px;
}
.fontSize48 {
  font-size: 48px;
}
.fontSize52 {
  font-size: 52px;
}
.fontSize64 {
  font-size: 64px;
}
/*-------------------line hight--------------------*/
.lineHeight105 {
  line-height: 105%;
}
.lineHeight110 {
  line-height: 110%;
}
.lineHeight120 {
  line-height: 120%;
}
.lineHeight125 {
  line-height: 125%;
}
.lineHeight130 {
  line-height: 130%;
}
.lineHeight135 {
  line-height: 135%;
}
.lineHeight140 {
  line-height: 140%;
}
.lineHeight140 {
  line-height: 140%;
}
/*-------------------font weight--------------------*/
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}


/*------------------font style-----------------*/
/* ADDED BY AHSAN */
@font-face { font-family: 'AspektaVF'; src: url('./AspektaVF.woff2') format('woff2'); font-style: normal; font-display: swap; } 


.Aspekta {
  font-family: "AspektaVF", Arial, Helvetica, sans-serif;
}


/*video farames
==========================================================================*/
.video-container {
  position: relative;
  width: 100%;
  height: 615px;
  background: url("../media/videobg.png");
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border:2px;
  border-radius: 6px !important;

}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border:2px;
   border-radius: 6px !important;
}
.video-container2 {
  position: relative;
  width: 100%;
  height: 315px;
  background: url("../media/video2.png");
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border:2px;
}
.video-container2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border:2px;
}
/*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(--themeBlue) !important;
  width: 100%;
}
.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: #4FB8FF;
}
/*mobile top bar
=====================================================================*/
.mobile_topbar{
  display: none;
}
.mobile_navbar{
  background-color: var(--themeBlue);
  padding: 15px 0px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}
.mobile_navbar_list{
  display: flex;
}
.mobile_logo{
  width: 140px;
  height: auto;
}
.mobile_phone{
  display: flex;
  align-items: center;
  gap:16px;
}
.mobile_phone a{
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.176px;
  border-radius: 4px;
  border:1px solid #fff;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap_16{
  gap:16px;
}
/*topbar css start
=====================================================================*/
.topbar{
  padding: 11px 0px;
  background-color: var(--themeBlue);
}
.top_phone{
  display: flex;
  align-items: center;
  gap:16px;
}
.top_phone_number{
  color: #fff;
  font-size: 26px;
  letter-spacing: 0.52px;
}
.top_phone_text{
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.16px;
}
/*navbar css start
====================================================================*/
.navbar{
  background-color: #CDEEFF;
  padding:9px 0px 10px 0px;
}
.navbar ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:32px;
  width: 100%;
}
.navbar ul li a{
  color: #484D5C;
  transition: 0.25s;
}
.navbar ul li a:hover{
  color: #0065BF;
}
/*banner 
=======================================================================*/
.banner{
  background-color: var(--themeLightBlue);
  position: relative;
  z-index: 11;
}
.banner__Heading{
  color: #092144;
}
.banner::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../media/patternSVG.svg");
  z-index: -1;
  background-repeat: no-repeat;
  background-position: 80% center;
}
.hero-tick {
  max-width: 64px;
  max-height: 26px;
}
.bannerService{
  color: #343641;
  letter-spacing: 0.27px;
}
.google_badge{
  box-shadow: 0px 1.108px 1.108px 0px rgba(0, 45, 73, 0.30);
  background-color: white;
  padding:9px 23px;
  border-radius: 4px;
  max-width: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.gap_14{
  gap:14px;
}
.google_text{
  font-size: 14px;
  letter-spacing: 0.14px;
  font-family: Arial;
}
.badge_box{
  padding-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap:20px 12px;
}
.headerForm{
  padding:20px 36px 20px 36px;
  box-shadow: 0px 0.6px 0.6px 0px rgba(0, 45, 73, 0.30);
  background-color: white;
  border:1px solid #fff;
  border-radius: 4px;
  margin-bottom: 12px;
}
.formHeading{
  color: #103F6C;
  letter-spacing: 0.21px;
}
.headerForm input{
  height: 48px;
  border-radius: 2px;
  border:1px solid #DFE6E4;
  background-color: #F7F8F8;
  padding-left: 48px;
}
.input_icon{
  position: absolute;
  top: 12px;
  left: 16px;
}
.headerForm input:focus{
  background-color: #F7F8F8;
}
.headerForm select:focus{
  background-color: #F7F8F8;
}
.headerForm select{
  height: 48px;
  border-radius: 2px;
  border:1px solid #DFE6E4;
  background-color: #F7F8F8;
}
.headerForm .theme_btn{
  padding: 18px 10px;
  box-shadow: 0px 4px 0px 0px #F8A53F;
  background:  linear-gradient(90deg, #005BE4 0%, #002355 100%);
  color: #FBFFF4;
  border-radius: 4px;
  box-shadow: 0px 6px 16px 0px rgba(47, 62, 25, 0.20);
  border:none;
  -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%;

}
.headerForm .theme_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;
}
.form__phone{
  color:  #17375C;
  letter-spacing: 0.22px;
}
.form__phone:hover{
  color:  #17375C !important;
}
.headerForm .formText{
  color: #596069; 
  font-size: 15px;
}
@keyframes btnIcon {
  0% {
    transform: translateX(0px);
  }

  25% {
    transform: translateX(10px);
  }

  50% {
    transform: translateX(0px);
  }

  75% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0px);
  }
}
.theme_btn:hover .arrowIcon{
  animation: btnIcon 1s ease-in-out;
}
.mobileBadge{
  display: none;
}

/*about section css
============================================================ */
.about_section{
  background-color: var(--themeDark);
  z-index: 111;
  position: relative;
}
.about_section::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 98%;
  background-image: url("../media/aboutbg.png");
  background-position: right;
  background-repeat: no-repeat;
  z-index: -1;
}
.about__card_box{
  display: flex;
  flex-direction: column;
  gap:48px;
}
.about_card{
  display: flex;
  gap:20px;
}
.about_card__title{
  color: #EEEEF0;
  font-size: 40px;
}
.about_card__text{
  color: #EEEEF0;
  letter-spacing: 0.27px;
}
.team_image_main{
  display: flex;
  gap:12px;
  align-items: flex-end;
  margin-top: -190px;
}
.team_image{
  position: relative;
}
.team_name_box{
  background-color: #FFFAE5;
  border-radius: 48px;
  width: fit-content;
  padding: 13px 17px;
  position: absolute;
  bottom: -40px;
  left: 16%
}
.team_name_box2{
  background-color: #FFFAE5;
  border-radius: 48px;
  width: fit-content;
  padding: 13px 17px;
  position: absolute;
  bottom: -40px;
  left: 0%
}
.team_name_box p{
  color: #25262E;
}
.team_name_box2 p{
  color: #25262E;
}
.about_row_padding{
  padding-top: 118px;
}
.mobile_team_image{
  position: relative;
  padding: 10px 20px 0px 20px;
  display: none;
}
.mobile_team_image .name1{
  background: linear-gradient(90deg, #B1DEFF 0%, #D5EDFF 100%);
  padding: 6px 16px;
  letter-spacing: 0.13px;
  color: #25262E;
  font-size: 13px;
  border-radius: 25px;
  display: inline-block;
  width: 110px;
  text-align: center;
  position: absolute;
  left: 10px;
  bottom: 22px;
}
.mobile_team_image .name2{
  background: linear-gradient(90deg, #B1DEFF 0%, #D5EDFF 100%);
  padding: 6px 16px;
  letter-spacing: 0.13px;
  color: #25262E;
  font-size: 13px;
  border-radius: 25px;
  display: inline-block;
  width: 170px;
  text-align: center;
  position: absolute;
  right: 10px;
  bottom: 34px;
}
/*Founder section css
====================================================================*/
.founder__section{
  background: linear-gradient(to right, #E9F7FF 50%, #fff 50%);
}
.founder_title{
  color: #061737;
  letter-spacing: 0.23px;
}
.founder_sub_title{
  color: #002C62;
  letter-spacing: 0.18px;
}
.founder_btn{
  border:2px;
  color: #F5F6F9;
  text-transform: uppercase;
  padding: 18px 40px;
  background-color: #061737;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15); 
  display: inline-block;
  transition: all 0.2s ease;
    /* iOS-specific fixes */
  -webkit-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;

}
.founder_btn:hover{
  color: #F5F6F9;
}
.founder_btn:hover {
 transform: translateY(4px) scale(0.98);
}
.founder__heading{
  color: #091525;
}
.founder_right{
  padding-left: 60px;
}
.founder__text{
  color: #3D3D3D;
  letter-spacing: 0.27px;
}
.founder_list li{
  display: flex;
  gap:12px;
}
.founder_list li svg{
  min-width: 20px;
  min-height: 24px;
}
.founder_list li p{
  color: #3D3D3D;
}
.founder__text_svg{
  min-width: 24px;
  min-height: 24px;
}
/*video section css
================================================================*/
.video__section__heading{
  color: #091525;
}

/*Testimonial section
====================================================================*/
.Testimonial{
  background-color:var(--themeLightBlue) ;
}
.laptop_Testimonial__heading{
  display: block;
}
.Testimonial_Subheading{
  color: #011C43;
  letter-spacing: 0.27px;
}
.Testimonial_heading{
  color: #002C62;
}
.Testimonial_box{
  z-index: 1;
  position: relative;
}
.Testimonial_box::before{
  content: "";
  position: absolute;
  right:  0px;
  bottom: -50px;
  width: 100%;
  height: 100%;
  background-image: url("../media/Testimonialbg.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
}
.Testimonial_text{
  color: #25262E;
  letter-spacing: 0.27px;
}
.Testimonial_title{
  color: #003958;
}
.Testimonial .carousel-indicators {
  justify-content: flex-start !important;
  margin: 0px !important;
  bottom: -60px;
  column-gap: 20px;
}
.Testimonial .carousel-indicators button{
  width: 15px;
  height: 15px;
  background-color: #D1D1D1;
  border-radius: 50%;
  opacity: 1;
  transition: 0.3s !important;
  margin: 0px !important;
}
.Testimonial .carousel-indicators button.active{
  background-color: #153B93;
  border-radius: 15px !important;
  width: 44px; 
  height: 15px;
  -webkit-clip-path: inset(2% 5% round 140px);
  clip-path: inset(25% 5% round 140px);
}
.video_text{
  color: #003958;
}

/*step section css
==============================================================*/
.step_section{
  background-color: #002355;
}
.step_section_right{
  padding-left: 60px;
}
.timeline {
      position: relative;}
.step {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap:16px;
  cursor: pointer;
}
.step_heading{
  color: #fff;
  letter-spacing: 0.2px;
}
.step_text{
  color: #8BA4C2;
  letter-spacing: 0.27px;
}
.circle {
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background-color: #FFFAE5; /* off-white */
  color: #2C354B;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: -0.72px;
  font-size: 24px;
}
.step:hover .circle {
  background-color: #E2A918;
  color: #2C354B;
}


.step_section .carousel-item img {
      width: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

   .step_section .slider-container {
      display: flex;
      align-items: stretch;
    }

    /* Vertical indicators styling */
   .step_section .vertical-indicators {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin-left: 21px;
      position: absolute;
    }

   .step_section .vertical-indicators .indicator {
      width: 5px;
      height: 160px;
      background-color: transparent;
      margin: 10px 0;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      transform: rotate(180deg);
      
    }
    .step_section .vertical-indicators .indicator::before{
      content: "";
      position: absolute;
      width: 75%;
      height: 100%;
      top:0;
      left: 1px;
      background-image: repeating-linear-gradient(
    to bottom,
    #FDF4BC 0px,
    #FDF4BC 10px,
    transparent 10px,
    transparent 20px
  );
      z-index: -1;
    }


   .step_section .vertical-indicators .indicator .progress-bar {
      position: absolute;
      top: 150%;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #F9B233;
      transition:top 5s linear;
    }
/*services section
==================================================================*/
.services{
  background-color: var(--themegray);
  overflow: hidden;
}
.service_heading{
  color: #002C62;
}
.service_text{
  color: #2C313F;
  letter-spacing: 0.27px;
}
.service__card{
  padding: 16px 24px;
  border-radius: 25px 0px 25px 25px;
  border:2px solid #F7F8F8;
  background-color: #fff;
  transition: 0.35s;
  box-shadow: 0px 4px 0px 0px  #7C94B3;
  cursor: pointer;
}
.service__card:hover{
  box-shadow: 0px 4px 0px 0px #C87A00;
}
.service_card_title{
  color: #001D46;
  letter-spacing: 0.23px;
}
.service_card_text{
  color: #34363F;
  letter-spacing: 0.27px;
}
.image_box{
  width: calc(100% + 200px);
}
.image_box img{
  width: 100%;
  height: auto;
}
.image_box_mobile{
  display: none;
}
/*FAQS section
===========================================================================*/
.faqs{
  background-color: white;
}
.faqs_heading{
  color: #002C62;
}
.accordion-item {
  margin-bottom: 10px;
  border: none !important;
}
.accordion-button {
  background: #F7F8F8 !important;
  color: #484D5C !important;
  letter-spacing: 0.19px;
}
.accordion-button::after {
  background-image: url(../media/faqs.svg) !important;
  width: 44px !important;
  height: 44px !important;
  background-size: 100% !important;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg,  #D57500 0%,  #0043CA 100%) !important;
  color: white !important;
  font-size: 19px;
}
.accordion-button:focus {
  outline: none !important;
  box-shadow: 0 0 0 white !important;
  background-color: #F7F8F8;
}
.accordion-body {
  padding: 20px 40px 40px 40px !important;
}
.accordion-body p {
  color: #34363F;
 letter-spacing: 0.27px;
  line-height: 130%;
}
/*contact section
====================================================================*/
.contact__section{
  background-color: var(--themeLightBlue);
}
.contact_box{
  display: flex;
  justify-content: center;
  gap:0px 32px;
}
.footer__call{
  border-radius: 4px;
  border:2px solid #003D9F;
  width: 100%;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  height: 100%;
  width: 360px;
  z-index: 1;
  position: relative;
  gap:16px;
}
.footer__call::before{
  content: "";
  position: absolute;
  top:0;
  left: 0;
  width: 0%;
  height: 100%;
  background:linear-gradient(90deg, #005BE4 0%,  #002355 100%);
  z-index: -1;
  transition:0.35s;
}
.footer__call:hover::before{
  width: 100%;
}
.footer__call:hover .footer__call__number{
  color: #FBFFF4;
}
.footer__call:hover .footer__call__text{
  color: #FBFFF4;
}
.footer__call:hover .call__icon{
  fill: #FBFFF4;
  stroke: #FBFFF4;
}
.footer__call__icon{
  margin-right: 16px;
}
.footer__call__number{
  letter-spacing: 0.52px;
  color: #003D9F;
  transition: 0.35s;
}
.footer__call__text{
  color: #003D9F;
  transition: 0.35s;
}

/*footer section
===========================================================*/
footer{
  background-color: var(--themeFooter);
}
.footer_heading{
  color: #F6F5FA;
  letter-spacing: 0.19px;
}
.footer_link{
  color: #8B94A4;
  letter-spacing: 0.16px;
  font-size: 16px;
  transition: 0.25s;
}
.footer_link:hover{
  color: #00AEFF;
}
.footer_adress{
  font-size: 16px;
  color: #00AEFF;
  letter-spacing: 0.16px;
  display: flex;
  gap:10px;
  transition: 0.25s
}
.footer_adress:hover{
  color: #00AEFF;
}
.adress_text:hover{
  color: #8B94A4 !important;
}
.copy_right{
  background-color: var(--themeFooter);
  padding-bottom: 5px;
}
.copy_right_text{
  font-size: 16px;
  color: #8B94A4;
}
.copy_right_text a{
  color: #8B94A4;
}
.copy_right_text a:hover{
  color: #00AEFF;
}
.textEnd{
  text-align: right;
}
/*PrivacyPolicy
==============================================================================*/
.PrivacyPolicy{
  background-color: var(--themeLightBlue);
}
.PrivacyPolicy__heading{
  color: #092144;
}
.PrivacyPolicy__text{
  color: #343641;
}


@media screen and (min-width: 1400px){
  .image_box{
    width: calc(100% + 100px);
  }
  .video-container {
    height: 730px !important;
  }
  .video-container2 {
    height: 358px !important;
  }
}
@media screen and (max-width: 1400px){
  .step_section .vertical-indicators .indicator{
    height: 172px;
  }
}
@media screen and (max-width: 1199px){
  .navbar ul li a{
    font-size: 15px;
  }
  .theme_btn{
    font-size: 16px;
  }
  .team_image_main{
    margin-top: -125px;
  }
  .team_name_box2{
    padding: 13px 15px;
  }
  .team_name_box2 p{
    font-size: 14px;
  }
  .team_name_box p{
    font-size: 14px;
  }
  .video-container {
    height: 525px;
  }
  .video-container2 {
    height: 256px;
  }
  .step_section .vertical-indicators .indicator{
    height: 206px;
  }
}
@media screen and (max-width: 991px){
  /*-------------------font size ---------------------*/
  .fontSize15 {
    font-size: 15px;
  }
  .fontSize16 {
    font-size: 16px;
  }
  .fontSize17 {
    font-size: 17px;
  }
  .fontSize18 {
    font-size: 17px;
  }
  .fontSize19 {
    font-size: 18px;
  }
  .fontSize20 {
    font-size: 18px;
  }
  .fontSize23 {
    font-size: 21px;
  }
  .fontSize24 {
    font-size: 22px;
  }
  .fontSize26 {
    font-size: 22px;
  }
  .fontSize28 {
    font-size: 23px;
  }
  .fontSize32 {
    font-size: 26px;
  }
  .fontSize40 {
    font-size: 30px;
  }
  .fontSize48 {
    font-size: 40px;
  }
  .fontSize52 {
    font-size: 42px;
  }
  .fontSize64 {
    font-size: 56px;
  }
  /*topbar 
  ========================*/
  .topbar{
    display: none;
  }
  .navbar{
    display: none !important;
  }
  /*mobile top bar
  ========================*/
  .mobile_topbar{
    display: block;
  }
  /*banner*/
  .banner{
    padding-top: 120px !important;
  }
  .PrivacyPolicy{
    padding-top: 120px !important;
  }
  .banner::before{
    display: none;
  }
  .bannerArrow{
    display: none;
  }
  .laptop_badge{
    display: none;
  }
  .team_image_main{
    display: none;
  }
  .mobile_team_image{
    display: block;
  }
  .mobileBadge{
    display: block;
  }
  .badge_box{
    padding-top: 30px;
  }
  .headerForm {
    margin: 0px;
  }
  /*about section*/
  .about_section::before{
    height: 100%;
    background-size: 30%;
    background-position: bottom right;
  }
  .mobile_colum{
    flex-direction: column-reverse;
    align-items: center;
  }
  .about_row_padding{
    padding-top: 0px;
    gap:48px;
  }
  .about_section{
    padding-top: 50px;
  }
  .mobile_padding_48{
    padding-top: 0px !important;
    padding-bottom: 48px !important;
  }
  /*Founder section===========================*/
  .founder_mobile_column{
    flex-direction: column-reverse;
  }
  .founder_right{
    padding-left: 0px;
  }
  .founder__section{
    background: linear-gradient(to top, #E9F7FF 46.5%, #fff 46.5%); 
  }
  .founder__text_column{
    padding-bottom: 30px;
  }
  .founder_image_column{
    padding-top: 40px;
  }
  /*video section ===========================*/
  .video-container {
    height: 390px;
  }
  .video-container2 {
    height: 290px;
  }
  /*Testimonial ===========================*/
  .Testimonial_video_column{
    padding-top: 86px;
  }
  .Testimonial_box::before{
    display: none;
  }
  .Testimonial_box .carousel{
    border-radius: 4px;
    border:1px solid #7695B6;
    padding: 16px 8px;
    margin-top: 24px;
  }
  .mobile_slider_item{
    padding-top: 0px !important
  }
  .Testimonial .carousel-indicators button{
    width: 25px;
    height: 25px;
  }
  .Testimonial .carousel-indicators button.active{
    width: 60px;
    height: 25px;
  }
  /*step section==================================*/
  .timeline{
    padding-top: 32px;
  }
  .step_section_right{
    padding-left: 0px;
  }
  .mobile_bottom_0{
    padding-bottom: 0px !important;
  }
  .step_row_column{
    flex-direction: column-reverse;
    align-items: center;
  }
  .image-slider-wrapper {
    height: 400px;
    margin-top: 40px;
  }
  /*services section*/
  .mobile_service_column{
    flex-direction: column-reverse;
    align-items: center;
  }
  .image_box{
    display: none;
  }
  .image_box_mobile{
    display: block;
    padding-top: 28px;
  }
  .step_section .vertical-indicators .indicator{
    height: 128px;
  }
  .mobile_top_padding{
    padding-top: 50px;
  }
  .service_text_padding{
    padding-bottom: 36px !important;
  }
  .footer_heading{
    padding-top: 36px !important;
  }
}
@media screen and (max-width: 767px){
  /*-------------------font size ---------------------*/
  .fontSize15 {
    font-size: 15px;
  }
  .fontSize16 {
    font-size: 16px;
  }
  .fontSize17 {
    font-size: 16px;
  }
  .fontSize18 {
    font-size: 16px;
  }
  .fontSize19 {
    font-size: 17px;
  }
  .fontSize20 {
    font-size: 18px;
  }
  .fontSize23 {
    font-size: 19px;
  }
  .fontSize24 {
    font-size: 20px;
  }
  .fontSize26 {
    font-size: 21px;
  }
  .fontSize28 {
    font-size: 21px;
  }
  .fontSize32 {
    font-size: 24px;
  }
  .fontSize40 {
    font-size: 23px;
  }
  .fontSize48 {
    font-size: 30px;
  }
  .fontSize52 {
    font-size: 31px;
  }
  .fontSize64 {
    font-size: 36px;
  }
  /*banner ===================*/
  .banner{
    padding-top: 85px !important;
    padding-bottom: 36px !important;
  }
  .PrivacyPolicy{
    padding-top: 100px !important;
  }
  .mobile_logo{
    width: 146px;
  }
  .mobile_bottom_8{
    padding-bottom: 8px !important;
  }
  .bannerService{
    font-size: 15px !important;
  }
  .headerForm{
    padding: 20px 20px;
  }
  .formHeading{
    font-size: 17px !important;
  }
  .headerForm .formText{
    font-size: 13px !important;
  }
  .badge_box{
    padding-top: 27px;
    justify-content: center;
    align-items: center;
    gap:12px 12px;
  }
  .google_badge{
    padding: 4px 15px;
    width: 143px;
    box-shadow: 0px 0.762px 0.762px 0px rgba(0, 45, 73, 0.30);
  }
  .gap_14{
    gap: 7px;
  }
  .mobile_top-0{
    padding-top: 0px !important;
  }
  .google_text {
    font-size: 11px;
  }
  .startImage{
    width: 80px;
  }
  .google_icon_mobile{
    width: 22px;
    height: 22px;
  }
  .fackbook_badge{
    width: 144px;
    height: auto;
  }
  .naea_badge{
    width: 114px;
    height: auto;
  }
  .astp_badge{
    width: 167px;
    height: auto;
  }
  .enrolledAgent_Badge{
    width: 214px;
    height: auto;
  }
  /*about_section =========================*/
  .about_section::before{
    height: 100%;
    background-size: 50%;
    background-position: bottom right;
  }
  .about_section{
    padding-top: 40px !important;
    padding-bottom: 48px !important;
  }
  .about_card img{
    width: 48px;
    height: 48px;
  }
  .about_card__title{
    font-size: 23px ;
  }
  .about_card__text{
    font-size: 15px;
  }
  .about_card{
    gap:16px;
  }
  .about_row_padding{
    gap:32px;
  }
  .mobile_padding_48{
    padding-top: 0px !important;
    padding-bottom: 32px !important;
  }
  .about__card_box{
    gap:32px;
  }
  /*founder section=======================*/
  .founder__section{
    background: linear-gradient(to top, #E9F7FF 46%, #fff 46%); 
  }
  .founder__section{
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .founder__text_column{
    padding-bottom: 24px;
  }
  .founder_image_column{
    padding-top: 32px;
  }
  .mobile_bottom_16{
    padding-bottom: 16px !important;
  }
  .mobile_bottom_32{
    padding-bottom: 32px !important;
  }
  /*video section ========================*/
  .video__section{
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .video-container {
    height: 290px;
  }
  .video-container2 {
    height: 290px;
  }
  .JoelSquare_image{
    width: 55% !important;
  }
  /*.Testimonial==================*/
  .Testimonial{
    padding-top: 32px !important;
    padding-bottom: 32px !important; 
  }
  /*step_section =============================*/
  .step_section{
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }
  .circle{
    width: 38px;
    height: 38px;
  }
  .image-slider-wrapper {
    height: 350px;
  }
  /*services 7===========================*/
  .services{
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }
  .image_box_mobile{
    display: block;
    padding-top: 24px;
  }
  .service_text_padding{
    padding-bottom: 24px !important;
  }
  .padding_mobile_0{
    padding-bottom: 0px !important
  }
  .mobile_12{
    padding-bottom: 12px !important;
  }
  .service__card{
    box-shadow: 0px 4px 0px 0px #C87A00;
  }
  .service__card img{
    width: 57px;
    height: 57px;
  }
  /*faqs section =================================*/
  .faqs{
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }
  .mobile_padding_24{
    padding-top: 24px !important;
  }
  .Accordion-Questions{
    padding-right: 10px;
  }
  .accordion-body{
    padding: 15px !important;
  }
  .accordion-body p{
    font-size: 15px !important;
  }
  /*contact section===================*/
  .contact__section{
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }
  .contact_box{
    flex-direction: column;
    gap:16px;
    align-items: center;
  }
  .contact_box a{
    width: 100%;
    height: 62px;
    display: flex;
    justify-content: center;
  }
  .footer__call{
    padding: 6px 20px;
  }
  .footer__call svg{
    width: 28px;
    height: 28px;
  }
  .footer__call__number{
    font-size: 18px;
  }
  .footer__call__text{
    font-size: 15px;
  }
  .step_section .vertical-indicators .indicator{
    height: 120px;
  }

  /*footer ==========================*/
  footer{
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }
  .footer_logo{
    text-align: center;
  }
  .footer_logo img{
    width: 200px;
    height: auto;
  }
  .copy_right_text{
    text-align: center;
  }
  .copy_right_text a{
    display: block;
    margin-top: 16px;
  }
}      
@media screen and (max-width: 575px) {
  .video-container {
    height: 309px;
  }
  .video-container2 {
    height: 309px;
  }
}
@media screen and (max-width: 400px){
  .footer__call{
    width: 100%;
  }
  .founder__section{
    background: linear-gradient(to top, #E9F7FF 35.5%, #fff 35.5%) !important; 
  }
}
@media screen and (max-width: 480px){
  .founder__section{
    background: linear-gradient(to top, #E9F7FF 43%, #fff 43%); 
  }
  .step_section .vertical-indicators .indicator{
    height: 145px;
  }
}
@media screen and (max-width: 460px) {
  .video-container {
    height: 240px;
  }
  .video-container2 {
    height: 240px;
  }
}
@media screen and (max-width: 450px){
  .founder__section{
    background: linear-gradient(to top, #E9F7FF 42%, #fff 42%); 
  }
}
@media screen and (max-width: 430px){
  .founder__section{
    background: linear-gradient(to top, #E9F7FF 39.5%, #fff 39.5%); 
  }
  .step_section .vertical-indicators .indicator{
    height: 170px;
  }
}
@media screen and (max-width: 350px){
   .founder__section{
    background: linear-gradient(to top, #E9F7FF 34.5%, #fff 34.5%) !important; 
  }
}
@media screen and (max-width: 380px){
  .mobile_logo{
    width: 130px;
  }
  .founder__section{
    background: linear-gradient(to top, #E9F7FF 33.5%, #fff 33.5%) !important; 
  }
}
@media screen and (max-width: 375px){
.step_section .vertical-indicators .indicator{
    height: 180px;
  }
}
@media screen and (max-width: 360px){
.step_section .vertical-indicators .indicator{
    height: 190px;
  }
}
@media screen and (max-width: 337px){
.step_section .vertical-indicators .indicator{
    height: 200px;
  }
  .founder__section{
    background: linear-gradient(to top, #E9F7FF 32.5%, #fff 32.5%) !important; 
  }
}
@media screen and (max-width: 325px){
.step_section .vertical-indicators .indicator{
    height: 210px;
  }
}
@media screen and (max-width: 365px){
  .mobile_logo{
    width: 120px;
  }
  .mobile_phone{
    grid-gap: 8px ;
  }
  .mobile_phone a{
    padding: 8px 6px;
    font-size: 14px;
  }
  .gap_16{
    gap:10px;
  }
  .formHeading{
    font-size: 16px !important
  }
  .mobile_team_image .name1{
    transform: scale(0.90);
  }
  .mobile_team_image .name2{
    transform: scale(0.90);
  }
  .headerForm .theme_btn{
    font-size: 15px !important
  }
}

@media screen and (max-width: 375px) {
  .video-container {
    height: 195px !important;
  }
  .video-container2 {
    height: 195px !important;
  }
}
@media screen and (max-width: 329px){
  .founder__section{
    background: linear-gradient(to top, #E9F7FF 30.5%, #fff 30.5%) !important; 
  }
}
@media screen and (max-width: 325px){
  .google_badge{
    width: 138px;
    padding: 4px 10px;
  }
}


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

.animation-left {
  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-left.is-visible {
  opacity: 1;
  transform: translateX(0px);
}
@media screen and (max-width: 320px) {
  .animation-top {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  .animation-right {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}
/*===========================================================================================================================
          bootstrap css
============================================================================================================================*/
@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;
}

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


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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container {
  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%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .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-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .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-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

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

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0d6efd;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

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

.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-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.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-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-block {
  display: 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-0 {
  border: 0 !important;
}

.w-100 {
  width: 100% !important;
}

.flex-grow-1 {
  flex-grow: 1 !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;
}

.m-0 {
  margin: 0 !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-2 {
  padding-left: 0.5rem !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;
}


/*============================================================================================
                          Custom style
=============================================================================================*/
/*--------------------------------- Padding bottom ----------------------------*/
.padding-bottom-8{
    padding-bottom: 8px;
}
.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-40{
    padding-bottom: 40px;
}
.padding-bottom-56{
    padding-bottom: 56px;
}
.padding-bottom-72{
    padding-bottom: 72px;
}
.padding-bottom-96{
    padding-bottom: 96px;
}
.padding-bottom-104{
    padding-bottom: 104px;
}
.padding-bottom-120{
    padding-bottom: 120px;
}
.padding-bottom-140{
    padding-bottom: 140px;
}
/*`````````````````````````````````Padding bottom ```````````````````````````*/
/*--------------------------------- Padding top ----------------------------*/
.padding-top-4{
    padding-top: 4px;
}
.padding-top-12{
    padding-top: 12px;
}
.padding-top-24{
    padding-top: 24px;
}
.padding-top-32{
    padding-top: 32px;
}
.padding-top-36{
    padding-top: 36px;
}
.padding-top-40{
    padding-top: 40px;
}
.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;
}
/*---------------------------------Tabs Screens ----------------------------*/
@media screen and (max-width: 992px){
      /*---------------------------------Padding bottom small tabs screens----------------------------*/
    .padding-bottom-8{
        padding-bottom: 8px;
    }
    .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-40{
        padding-bottom: 28px;
    }
    .padding-bottom-56{
        padding-bottom: 40px;
    }
    .padding-bottom-72{
        padding-bottom: 56px;
    }
    .padding-bottom-96{
        padding-bottom: 64px;
    }
    .padding-bottom-104{
        padding-bottom: 72px;
    }
    .padding-bottom-120{
        padding-bottom: 96px;
    }
    .padding-bottom-140{
        padding-bottom: 104px;
    }
    /*```````````````````````````````````Padding bottom  tabs screens``````````````````````````*/
         /*---------------------------------Padding top small tabs screens----------------------------*/
         .padding-top-4{
            padding-top: 4px;
        }
        .padding-top-12{
            padding-top: 12px;
        }
        .padding-top-24{
            padding-top: 20px;
        }
        .padding-top-32{
            padding-top: 20px;
        }
        .padding-top-36{
            padding-top: 24px;
        }
        .padding-top-40{
            padding-top: 28px;
        }
        .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;
        }
    }
@media screen and (max-width: 767px){
     /*---------------------------------Padding bottom  mobile screens----------------------------*/
    .padding-bottom-8{
        padding-bottom: 8px;
    }
    .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-40{
        padding-bottom: 28px;
    }
    .padding-bottom-56{
        padding-bottom: 40px;
    }
    .padding-bottom-72{
        padding-bottom: 48px;
    }
    .padding-bottom-96{
        padding-bottom: 56px;
    }
    .padding-bottom-104{
        padding-bottom: 64px;
    }
    .padding-bottom-120{
        padding-bottom: 72px;
    }
    .padding-bottom-140{
        padding-bottom: 96px;
    }
    /*`````````````````````````````Padding bottom  Mobile screens```````````*/
    /*---------------------------------Padding top mobile   screens----------------------------*/
    .padding-top-4{
        padding-top: 4px;
    }
    .padding-top-12{
        padding-top: 12px;
    }
    .padding-top-24{
        padding-top: 16px;
    }
    .padding-top-32{
        padding-top: 20px;
    }
    .padding-top-36{
        padding-top: 24px;
    }
    .padding-top-40{
        padding-top: 28px;
    }
    .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;
    }
}
/*`````````````````````````````````Mobile Screens end`````````````````````````````*/

}
