/*===========================================================================================================================
					Theme Colors , size , font familes , line height , letter spacing , fontweight
============================================================================================================================*/
/*------------------Defalt Styling------------------*/
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;

}
html{
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}
a {
  text-decoration: none !important;
}
::selection {
  background-color: #CDEEFF;
  color: #092144;
}
/*------------------color---------------------------*/
:root {
  --themeLightBlue: #F3FDFF;
  --themeDark:#142630;
  --themeFooter: #142630;

/*  --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: 38px;
}
.fontSize48 {
  font-size: 48px;
}
.fontSize56 {
  font-size: 44px;
}
.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%;
}
.lineHeight150 {
  line-height: 150%;
}
/*-------------------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: 'Geist'; src: url('./Geist-VariableFont_wght.woff2') format('woff2'); font-style: normal; font-display: swap; } 
.GeisFont {
  font-family: "Geist", Roboto, 'Helvetica Neue', Arial, sans-serif;;
}

@font-face { font-family: 'NotoSerif'; src: url('./NotoSerif_SemiCondensed-Bold.woff2') format('woff2'); font-style: normal; font-display: swap; } 
.NotoSerif {
  font-family: "NotoSerif", Georgia, 'Times New Roman', Times, serif;
}


/*video farames
==========================================================================*/
.video-container {
  position: relative;
  width: 100%;
  height: 315px;
  background: url("../media/thumnail.jpg"); /* change thumnail here */
  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;
}
/*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;
	}
}

/*topbar css
====================================================================*/
.topbar{
  background-color: var(--themeDark);
  padding: 19px 0px;
}
.top_phone_number{
  color: #FAFAFA;
  font-size: 27px;
  letter-spacing: 0.27px;
}
.top_phone_text{
  color: #FAFAFA;
  font-size: 14px;
  letter-spacing: 0.14px;
}
.top_phone{
  min-width: 265px;
  border:1px solid #F6F5FA;
  border-radius: 4px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap:16px;
}
.mobile_logo{
  display: none;
}

/*banner 
======================================================================*/
.banner{
  background-color: #FAFEFF;
  position: relative;
  z-index: 1;
}
.banner::before{
  content: "";
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../media/gray-glitter-textured.png");
  background-repeat: no-repeat;
  background-position: bottom right;
}
.banner__Heading{
  color: #1D1F23;
}
.bannerService{
  color: #373C43;
}
.banner__text{
  color: #373C43;
}
.banner_text_mobile{
  display: none;
}
.badge_box{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
  align-items: center;
}
.badge_box_main{
  position: relative;
  padding-bottom: 80px;
}
.badge__mobile{
  display: none;
}
.Steve__image{
  position: absolute;
  bottom: 0;
  right: -85px;
  z-index: 1;
  width: 250px;
}
.headerForm{
  padding: 20px 36px;
  box-shadow: 0px 2px 8px 0px rgba(68, 118, 143, 0.30);
  background-color: #fff;
  border-radius: 4px;
}
.formHeading{
  color: #0A2D3D;
  letter-spacing: 0.1px;
}
.formHeading label{
  color: #6A6A6E;
  margin-bottom: 5px;
}
.headerForm input{
  height: 48px;
  border-radius: 2px;
  border:1px solid #DAD9E2;
  background-color: #FDFDFD;
}
.theme_btn{
  border-radius: 4px;
  color: #FCFFF5;
  padding: 18px 0px;
  background:linear-gradient(90deg,  #176787 0%, #1B475E 100%);
  box-shadow: 0px 6px 16px 0px rgba(50, 61, 30, 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;
}
@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;
}
.form__phone{
  color: #083144;
}
.form__phone:hover{
  color: #083144;
}
.formText{
  color: #6D6D6D;
  font-size: 13px;
}
.googleBadge{
  padding: 10px 23px 8px 23px;
  box-shadow: 0px 1.053px 1.053px 0px rgba(9, 44, 71, 0.30);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  background-color: #fff;
}
.gap_12{
  gap: 12px;
}
.googleBadge_text{
  color: #3B3C48;
  font-size: 14px;
  font-family: Arial;
}


/*Testimonial
===========================================================================*/
.Testimonial{
  background: linear-gradient(79deg, #0C2D40 4.36%, #0C2D40 61.69%, #1B475E 101.08%);
}
.Testimonial_subheading{
  color: #71D7EF;
}
.Testimonial_heading{
  color: #F5F9FF;
}
.Testimonial_text{
  color: #F5F9FF;
  letter-spacing: 0.09px;
}
.Testimonial_title{
  color: #F5F9FF;
}
.Testimonial_box{
  z-index: 1;
  position: relative;
}
.Testimonial_box::before{
  content: "";
  position: absolute;
  right:  75px;
  bottom: 50px;
  width: 100%;
  height: 100%;
  background-image: url("../media/Testimonial.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
}
.Testimonial .carousel-indicators {
  position: relative;
  justify-content: flex-start !important;
  margin: 0px !important;
  column-gap: 20px;
  padding-top: 32px;
}
.Testimonial .carousel-indicators button{
  width: 25px;
  height: 25px;
  background-color: #D1D1D1;
  border-radius: 50%;
  opacity: 1;
  transition: 0.3s !important;
  margin: 0px !important;
}
.Testimonial .carousel-indicators button.active{
  background-color: #1480A6;
}
.video_text{
  color: #F5F9FF;
}
/*about section css
===================================================================*/
.about_heading{
  color: #0E1523;
}
.about_heading span{
  color: #1C556E;
}
.about_text{
  color: #3D3D3D;
}
.about_list li{
  display: flex;
  gap:12px;
}
.about_list li svg{
  min-width: 24px;
  min-height: 24px;
}
.about_image{
  border-radius: 8px;
}
.about__subheading{
  color: #0E1523;
}
.about__text2{
  color: #373C43;
}
.about__text2 a{
  color: #176787;
}
/*why_choose_heading
======================================================================*/
.why_choose_heading{
  color: #0E1523;
}
.why_choose_text{
  color: #3D3D3D;
}
.why_choose_badge{
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.why_choose_badge2{
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.why_choose_card_grid{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why_choose_card{
  padding: 24px;
  border:1px solid #E7E7E7;
  background-color: #FCFCFD;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.35s;
}
.why_choose_card::before{
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  top: 38px;
  left: 38px;
  position: absolute;
  border-radius: 6px;
  transition: 0.35s;
  z-index: -1;
}
.why_choose_card:hover::before{
  transform: scale(100);
}
.why_choose_card:hover{
  border-color: #9BCEF5;
}
.why_choose_card_number{
  width: 48px;
  height: 48px;
  border-radius: 20px;
 background-color: #1B475E;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.35s;
  box-shadow: 0px 26.608px 7.139px 0px rgba(5, 59, 189, 0.00), 0px 16.874px 6.49px 0px rgba(5, 59, 189, 0.02), 0px 9.735px 5.841px 0px rgba(5, 59, 189, 0.08), 0px 4.543px 4.543px 0px rgba(5, 59, 189, 0.14), 0px 1.298px 2.596px 0px rgba(5, 59, 189, 0.17);
}
.why_choose_card:hover .why_choose_card_number{
  background-color: #0080B4;
  box-shadow: 0px 26.608px 7.139px 0px rgba(5, 59, 189, 0.00), 0px 16.874px 6.49px 0px rgba(5, 59, 189, 0.02), 0px 9.735px 5.841px 0px rgba(5, 59, 189, 0.08), 0px 4.543px 4.543px 0px rgba(5, 59, 189, 0.14), 0px 1.298px 2.596px 0px rgba(5, 59, 189, 0.17);
}
.why_choose_card_number span{
  color: #fff;
  font-size: 18px;
}
.why_choose_card_title{
  color: #0D0D0D;
}
.why_choose_card_text{
  color: #454545;
}
.why_choose_image_box{
  position: relative;
}
.why_choose_image_star{
  position: absolute;
  bottom:25px;
  left: 26%;
}
/*founder_section
=================================================================*/
.founder_section{
  background:
    linear-gradient(to right, #0D1E27 0%, #0D1E27 50%, transparent 50%, transparent 100%),
    url('../media/Rectangle.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.founder_title{
  color: #F3FDFF;
}
.founder_subTitle{
  color: #D8DBDF;
}
.founder_name{
  color: #F7F8F8;
}
.founder_btn{
  padding: 18px 42px;
  color: #F0F7FE;
  border-radius: 8px;
  background-color: #176787;
  box-shadow: 0px 5px 18px 0px #0F1013;
  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 {
 transform: translateY(4px) scale(0.98);
 color: #F0F7FE;
}
.video_box{
  width: fit-content;
  position: relative;
}
.video_box button{
  position: absolute;
  bottom: -20px;
  left: 40%;
}
.founder_right{
  padding-left: 75px;
}
.founder_heading{
  color: #F7F8F8;
}
.founder_heading span{
  color: #C4E2F9;
  display: block;
}
.founder_text{
  color: #F7F8F8;
}
.founder_text span{
  color: #6BB4EF;
}
/*tax_issues css
=========================================================================*/
.tax_issues_heading{
  color: #12103B;
}
.tax_issues_row{
  gap:36px 0px;
}
.tax_issues_card{
  padding: 24px;
  background-color: #EDEEF1;
  border-radius: 8px;
  min-height: 330px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tax_issues_card::before{
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #142630;
  transition: 0.35s;
  z-index: -1;
}
.tax_issues_card:hover::before{
  transform: scale(300);
}
.tax_issues_card_title{
  color: #373C43;
  transition: 0.35s;
}
.tax_issues_card:hover .tax_issues_card_title{
  color: #F7F8F8;
}
.tax_issues_card_line{
  width: 88px;
  height: 2px;
  background-color: #30BDE0;
  margin: 24px 0px;
  transition: 0.35s;
}
.tax_issues_card:hover .tax_issues_card_text{
  color: #F7F8F8;
}
.tax_issues_card:hover .tax_issues_card_icon{
  fill: #F6F6F6;
}
.tax_issues_card:hover .tax_issues_card_icon5{
  stroke: #F6F6F6;
}
.tax_issues_card_text{
  color: #49505B;
  transition: 0.35s;
}
/*FAQS section css
======================================================================*/
.faqs{
  background-color: #fff;
}
.faqs_heading{
  color: #002B37;
}
.accordion-button:focus,
.accordion-button:active,
.accordion-button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.accordion-header {
  border-bottom: none !important;
}
.accordion-item {
  margin-bottom: 16px;
  border: none !important;
  background-color: white;
}
.accordion-button {
  background: #F6F6F6 !important;
  color: #0C2D40 !important;
  letter-spacing: 0.19px;
  border-radius: 8px;
  padding: 23px 20px 23px 65px !important;
}
.accordion-button::after {
  background-image: url(../media/downArrow.svg) !important;
  width: 35px !important;
  height: 35px !important;
  background-size: 100% !important;
  position: absolute;
  left: 23px;
}
.accordion-button:not(.collapsed) {
  background: #FFF !important;
  color: #0C2D40 !important;
  font-size: 19px;
}
.accordion-button:focus {
  outline: none !important;
  box-shadow: 0 0 0 white !important;
  background-color: #F7F8F8;
}
.accordion-body {
  padding: 0px 40px 40px 65px !important;
}
.accordion-body > p {
  color: #1B475E;
 letter-spacing: 0.27px;
  line-height: 130%;
  border-left: 1px solid #6BB4EF;
  padding: 10px;
}

.accordion-body ul li p {
  color: #1B475E;
 letter-spacing: 0.27px;
  line-height: 130%;
}
.accordion-body ul li::marker{
  color: #6BB4EF;
}
.accordion-item.active-accordion {
  box-shadow: 0px 4px 12.8px 0px rgba(27, 71, 94, 0.08);
  background-color: #fff;
  border: 1px solid #EDEEF1;
  border-radius: 8px;
  margin: 32px 0px;
}
.accordion-button:not(.collapsed){
  box-shadow: 0 0 0 white !important;
}

/*consultation section css
===============================================================*/
.consultation_image_box{
  background-image: url(../media/consultation@2x.webp);
  background-position: center;
  background-size: cover;
}
.consultation__form{
  background-color: #ECF4F8;
  padding: 88px 116px 88px 64px !important;
}
.consultation_heading{
  color: #002B37;
}
.consultationFrom label{
  color: #49505B;
  font-size: 15px;
  letter-spacing: 0.15px;
}
.consultationFrom input{
  border-bottom: 1px solid #B5BBC4 !important;
  border-top:none;
  border-left:none;
  border-right:none;
  background-color: transparent;
}
.consultationFrom input:focus{
  background-color: transparent;
  box-shadow: 0 0 0 white;
  border-bottom: 2px solid #49505B !important;
}
.consultationFrom_btn{
  padding: 18px 40px;
  color: #FCFFF5;
  font-size: 19px;
  background: linear-gradient(90deg, var(--Orient-700, #176787) 0%, var(--Orient-900, #1B475E) 100%);
  box-shadow: 0px 6px 16px 0px rgba(50, 61, 30, 0.20);
  border-radius: 4px;
  -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%;
}
.consultationFrom_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;
  color: #FCFFF5;
}
.consultationFrom_btn:hover .arrowIcon{
  animation: btnIcon 1s ease-in-out;
}
/*footer 
============================================================*/
footer{
  background-color: #142630;
  margin-top: -2px;
}
.footer_phone{
  border:2px solid #1BC7FF;
  border-radius: 4px;
  display: flex;
  max-width: 334px;
  position: relative;
  z-index: 1;
}
.footer_phone::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #1BC7FF;
  transition: 0.35s;
}
.footer_phone:hover::before{
  width: 100%;
  z-index: -1;
}
.footer_phone_body{
  padding: 6px 20px;
}
.footer_phone_icon{
  padding: 16px 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1BC7FF;
  z-index: 1;
}
.footer_phone_number{
  color: #FAFAFA;
  letter-spacing: 0.27px;
  font-size: 27px;
}
.footer_phone_text{
  color: #FAFAFA;
  font-size: 14px;
  letter-spacing: 0.14px;
}
.footer__heading{
  color: #F6F5FA;
}
.footer__adress{
  color: #D1D1D1;
  opacity: 0.9;
}
.footer__link{
  color: #30BDE0;
}
.footer__link:hover{
  color: #30BDE0;
}
.copy_right{
  background-color: var(--themeFooter);
  padding: 26px 0px 46px 0px;
  border-top: 1px solid #233641;
}
.copy_right_text{
  color: #E4F8F6;
  opacity: 0.6;
  font-size: 16px;
}
.PrivacyPolicy{
  text-align: right;
}
.PrivacyPolicy a{
  color: #fff;
  opacity: 0.6;
  font-size: 16px;
}
.PrivacyPolicy a:hover{
  color: #fff;
  opacity: 1;
}

.PrivacyPolicy__section{
  background-color: var(--themeLightBlue);
}
.PrivacyPolicy_heading{
  color: #1D1F23;
}
.PrivacyPolicy_text{
  color: #1D1F23;;
}


@media screen and (min-width:1400px){
  .badge_box{
    width: 80%;
  }
  .Steve__image{
    right: -60px;
    width: 300px;
  }
}
@media screen and (max-width:1199px){
  .banner__Heading{
    font-size: 45px;
  }
  .formHeading{
    font-size: 17px;
  }
  .Steve__image{
    width: 200px;
    right: -125px;
  }
  .founder_right{
    padding-left: 50px;
  }
  .googleBadge_2{
  padding: 6px 10px;
}
}
@media screen and (max-width: 991px){
  .fontSize15 {
    font-size: 15px;
  }
  .fontSize16 {
    font-size: 16px;
  }
  .fontSize17 {
    font-size: 16px;
  }
  .fontSize18 {
    font-size: 17px;
  }
  .fontSize19 {
    font-size: 17px;
  }
  .fontSize20 {
    font-size: 18px;
  }
  .fontSize23 {
    font-size: 19px;
  }
  .fontSize24 {
    font-size: 20px;
  }
  .fontSize26 {
    font-size: 22px;
  }
  .fontSize28 {
    font-size: 23px;
  }
  .fontSize32 {
    font-size: 26px;
  }
  .fontSize40 {
    font-size: 28px;
  }
  .fontSize48 {
    font-size: 32px;
  }
  .fontSize56 {
    font-size: 40px;
  }
  .fontSize64 {
    font-size: 44px;
  }
  .Steve__image{
    right: 0px;
  }
  .why_choose_image_star{
    left: 0;
  }
  .consultation{
    overflow: hidden;
  }
  /* topbar ================= */
  .topbar{
    padding: 12px 0px 13px 0px !important;
  }
  /* banner
  ========================== */
  .bannerArrow{
    display: none;
  }
  .banner{
    padding-bottom: 40px;
  }
  .banner::before{
    display: none;
  }
  .bannerService{
    font-size: 16px;
  }
  .badge_box_main{
    display: none;
  }
  .banner_text_laptop{
    display: none;
  }
  .banner_text_mobile{
    display: block;
  }
  .mobile_badge_padding{
    padding-bottom:12px;
  }
  .badge__mobile{
    position: relative;
    display: block;
    padding: 16px 0px 10px 0px;
  }
  .badge_mobile_flex{
    display: flex;
    gap:24px;
    justify-content: center;
  }
  .badge_mobile_width{
    width: 200px;
  }
  .Steve_mobile{
    position: absolute;
    width: 260px;
    height: auto;
    right: 0;
    bottom: 0;
  }
  /* Testimonial
  ==================================== */
  .TestimonialArrow{
    display: none;
  }
  .TestimonialVideo{
    padding-top: 40px;
  }
  /* about 
  ==================================== */
  .mobile_column{
    flex-direction: column-reverse;
    align-items: center;
  }
  .mobile_botoom_20{
    padding-bottom: 36px;
  }
  .mobile_hide{
    display: none;
  }
  .why_choose_badge2{
    gap:12px;
    padding-bottom: 32px;
  }
  /* founder_section
  ================================== */
  .founder_section{
    background:
    linear-gradient(to bottom, #0D1E27 0%, #0D1E27 44.5%, transparent 44.5%, transparent 100%),
    url('../media/Rectangle.png');
  }
  .founder_video_column{
    padding-bottom: 40px;
  }
  .founder_text_column{
    padding-top: 40px;
  }
  .founder_right{
    padding-left: 0px;
  }
  .Steve_video{
   width: 280px !important;
    height: auto;
  }
  .consultation_image_box{
    height: 400px;
    overflow: hidden;
  }
  .consultation_image{
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .googleBadge_2{
    width: 170px !important;
  }

}

@media screen and (max-width: 767px){
  .fontSize15 {
    font-size: 15px;
  }
  .fontSize16 {
    font-size: 15px;
  }
  .fontSize17 {
    font-size: 15px;
  }
  .fontSize18 {
    font-size: 15px;
  }
  .fontSize19 {
    font-size: 16px;
  }
  .fontSize20 {
    font-size: 17px;
  }
  .fontSize23 {
    font-size: 17px;
  }
  .fontSize24 {
    font-size: 18px;
  }
  .fontSize26 {
    font-size: 19px;
  }
  .fontSize28 {
    font-size: 20px;
  }
  .fontSize32 {
    font-size: 22px;
  }
  .fontSize40 {
    font-size: 23px;
  }
  .fontSize48 {
    font-size: 26px;
  }
  .fontSize56 {
    font-size: 28px;
  }
  .fontSize64 {
    font-size: 30px;
  }
  html{
    overflow-x: visible !important;
  }
  /* topbar =================================== */
  .topbar{
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1111;
  }
  .laptop_logo{
    display: none;
  }
  .mobile_logo{
    display: flex;
    align-items: center;
  }
  .mobile_logo img{
    display: block;
    width: 65px;
    height: auto !important;
  }
  .top_phone{
    gap:9px;
    padding: 6px 12px;
    min-width: 205px;
  }
  .phone__icon{
    width: 18px;
    height: 18px;
  }
  .top_phone_number{
    font-size: 20px !important;
  }
  .top_phone_text{
    font-size: 12px !important;
  }
  /* banner
  ====================== */
  .banner{
    padding-top: 24px !important;
    padding-bottom: 40px !important;
  }
  .banner_text_mobile{
    display: none;
  }
  .bannerService {
    font-size: 15px !important;
  }
  .banner__text{
    font-size: 15px !important;
  }
  .mobile_padding_12{
    padding-bottom: 12px !important;
  }
  .headerForm{
    padding: 20px !important;
  }
  .googleBadge{
    width: 200px;
    padding: 5px 15px !important;
    box-shadow: 0px 0.724px 0.724px 0px rgba(9, 44, 71, 0.30);
  }
  .googleBadge_2{
   padding: 6px 0px !important;
   width: 170px !important;
  }

  /* Testimonial 
  ========================================= */
  .Testimonial{
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .mobile_top4{
    padding-top: 4px !important;
  }
  /* about 
  ========================================= */
  .about {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .mobile_botoom_20{
    padding-bottom: 20px !important;
  }

  /* why chose
  ======================================== */
  .why_choose{
    padding-bottom: 40px !important;
  }
  .why_choose_card_grid{
    gap:20px;
  }
  .mobile_b_24{
    padding-bottom: 24px !important;
  }
  .why_choose_badge{
    gap:12px;
  }
  .why_choose_badge2{
    gap:12px;
    padding-bottom: 24px;
  }
  .why_choose_card{
    box-shadow: 0px 3px 9px 0px rgba(9, 44, 71, 0.15);
    background-color: #fff;
    border:1px solid #9BCEF5;
  }
  .why_choose_card_number{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1B475E;
    box-shadow: 0px 26.608px 7.139px 0px rgba(5, 59, 189, 0.00), 0px 16.874px 6.49px 0px rgba(5, 59, 189, 0.02), 0px 9.735px 5.841px 0px rgba(5, 59, 189, 0.08), 0px 4.543px 4.543px 0px rgba(5, 59, 189, 0.14), 0px 1.298px 2.596px 0px rgba(5, 59, 189, 0.17);
  }
  /* founder_section 
  ===================================== */
  .founder_section{
    background:
    linear-gradient(to bottom, #0D1E27 0%, #0D1E27 42%, transparent 42%, transparent 100%),
    url('../media/Rectangle.png');
  }
  .founder_section{
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }
  .Steve_video{
    width: 210px !important;
    height: auto;
  }
  .founder_video_column{
    padding-bottom: 36px;
  }
  .founder_text_column{
    padding-top: 32px;
  }
  .video_box button img{
    width: 60px;
  }
  /* tax_issues 
  =================================== */
  .tax_issues {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .tax_issues_row{
    padding-top: 32px !important;
    gap: 24px;
  }
  .tax_issues_card{
    background-color: #fff;
    border:1px solid #71D7EF;
    box-shadow: 0px 3px 9px 0px rgba(9, 44, 71, 0.15);
    min-height: auto;
  }
  .tax_issues_card::before{
    display: none;
  }
  .tax_issues_card_icon{
    fill: #49505B;
  }
  .tax_issues_card_title{
    color: #3D3D3D;
  }
  .tax_issues_card_text{
    color: #454545;
  }
  .tax_issues_card:hover .tax_issues_card_icon{
    fill: #49505B;
  }
  .tax_issues_card:hover .tax_issues_card_title{
    color: #3D3D3D;
  }
  .tax_issues_card:hover .tax_issues_card_text{
    color: #454545;
  }
  /* faqs
  =================================== */
  .mobile_top_24{
    padding-top: 24px !important;
  }
  .faqs{
    padding-bottom: 40px !important;
  }
  .consultation_image_box{
    height: 300px;
    overflow: hidden;
  }
  .consultation__form{
    padding: 24px 56px 40px 56px !important;
  }
  .consultationFrom_btn{
    font-size: 15px ;
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .mobile_20{
    padding-bottom: 20px !important;
    text-align: center;
  }
  /* footer
  ================================== */
  footer{
    padding-top: 36px !important;
    padding-bottom: 56px !important;
  }
  .footer_logo{
    padding-bottom: 26px !important;
    text-align: center;
  }
  .footer_logo img{
    width: 250px;
    height: auto;
  }
  .footer_phone{
    max-width: 300px;
    margin: 0px auto 0px auto;
  }
  .footer_phone_icon svg{
    width: 22px;
    height: 22px;
  }
  .footer_phone_number{
    font-size: 15px;
  }
  .footer_phone_text{
    font-size: 14px;
  }
  .footer__heading{
    font-size: 18px !important;
    padding-bottom: 8px;
    padding-top: 56px;
  }
  .copy_right_text{
    text-align: center;
  }
  .PrivacyPolicy{
    text-align: center;
    padding-top: 15px;
  }

}
@media screen and (max-width: 500px){
  .Steve_mobile{
    width: 220px;
  }
  .founder_section{
    background:
    linear-gradient(to bottom, #0D1E27 0%, #0D1E27 38.5%, transparent 45.5%, transparent 100%),
    url('../media/Rectangle.png');
  }
}
@media screen and (max-width: 445px){
  .founder_section{
    background:
    linear-gradient(to bottom, #0D1E27 0%, #0D1E27 36%, transparent 45%, transparent 100%),
    url('../media/Rectangle.png');
  }
}
@media screen and (max-width: 445px){
  .googleBadge{
    width: 180px;
  }
  .googleIcon{
    width: 23px;
    height: 23px;
  }
  .googleBadge_text{
    font-size: 12px;
  }
  .star_image{
    width: 80px;
  }
}
@media screen and (max-width: 400px){
  .founder_section{
    background:
    linear-gradient(to bottom, #0D1E27 0%, #0D1E27 30%, transparent 40%, transparent 100%),
    url('../media/Rectangle.png');
  }
  .consultation_image_box{
    height: 250px;
    overflow: hidden;
  }
  .badge_mobile_width{
    width: 150px;
  }
  .Steve_mobile{
    width: 200px;
  }
  .badge_mobile_flex{
    justify-content: flex-start;
  }
  .googleBadge{
    width: 150px;
    padding: 2px 10px !important;
  }
  .googleIcon{
    width: 23px;
    height: 23px;
  }
  .googleBadge_text{
    font-size: 11px;
  }
  .star_image{
    width: 80px;
  }
  .gap_12{
    gap: 6px;
  }
  .googleBadge_2{
    width: 180px !important;
  }
}
@media screen and (max-width: 376px){
  .googleBadge_2{
    width: 180px !important;
    padding: 0px !important;
  }
}
@media screen and (max-width: 360px){
  .Steve_mobile{
    width: 180px;
  }
}
@media screen and (max-width: 340px){
  .Steve_mobile{
    width: 160px;
  }
  .badge_mobile_flex{
    gap: 12px;
  }
  .googleBadge_text{
    font-size: 10px;
  }
}

@media screen and (min-width: 1400px) {
        .video-container {
          height: 358px !important;
        }
        .video-container2 {
          height: 358px !important;
        }
      }

      @media screen and (max-width: 1199px) {
        .video-container {
          height: 256px;
        }
        .video-container2 {
          height: 256px;
        }
      }

      @media screen and (max-width: 991px) {
        .video-container {
          height: 290px;
        }
        .video-container2 {
          height: 290px;
        }
      }

      @media screen and (max-width: 767px) {
        .video-container {
          height: 290px;
        }
        .video-container2 {
          height: 290px;
        }
      }

      @media screen and (max-width: 575px) {
        .video-container {
          height: 309px;
        }
        .video-container2 {
          height: 309px;
        }
      }

      @media screen and (max-width: 460px) {
        .video-container {
          height: 240px;
        }
        .video-container2 {
          height: 240px;
        }
      }
      @media screen and (max-width: 375px) {
        .video-container {
          height: 195px !important;
        }
        .video-container2 {
          height: 195px !important;
        }
}

  /*----------------------------------------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;
}

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;
}

/* 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%;
}

.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-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-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .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-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));
}

.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,
.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;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.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.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-flex {
  display: flex !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.border-0 {
  border: 0 !important;
}

.w-100 {
  width: 100% !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;
}

.align-content-center {
  align-content: center !important;
}

.m-0 {
  margin: 0 !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;
}

.ps-0 {
  padding-left: 0 !important;
}

.text-center {
  text-align: center !important;
}

/* rtl:begin:remove */

/* rtl:end:remove */

.bg-transparent {
  background-color: transparent !important;
}

.visible {
  visibility: visible !important;
}
/*=============================================================================================
                                    custom style css
===============================================================================================*/
/*--------------------------------- Padding bottom ----------------------------*/
.padding-bottom-4{
    padding-bottom: 4px;
}
.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-36{
    padding-bottom: 36px;
}
.padding-bottom-40{
    padding-bottom: 40px;
}
.padding-bottom-48{
    padding-bottom: 48px;
}
.padding-bottom-56{
    padding-bottom: 56px;
}
.padding-bottom-96{
    padding-bottom: 96px;
}
.padding-bottom-104{
    padding-bottom: 104px;
}
.padding-bottom-120{
    padding-bottom: 120px;
}
/*`````````````````````````````````Padding bottom ```````````````````````````*/
/*--------------------------------- Padding top ----------------------------*/
.padding-top-4{
    padding-top: 4px;
}
.padding-top-8{
    padding-top: 8px;
}
.padding-top-12{
    padding-top: 12px;
}
.padding-top-24{
    padding-top: 24px;
}
.padding-top-32{
    padding-top: 32px;
}
.padding-top-48{
    padding-top: 48px;
}
.padding-top-64{
    padding-top: 64px;
}
.padding-top-72{
    padding-top: 72px;
}
.padding-top-96{
    padding-top: 96px;
}
@media screen and (max-width: 992px){
      /*---------------------------------Padding bottom small tabs screens----------------------------*/
    .padding-bottom-4{
        padding-bottom: 4px;
    }
    .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-36{
        padding-bottom: 24px;
    }
    .padding-bottom-40{
        padding-bottom: 28px;
    }
    .padding-bottom-48{
        padding-bottom: 36px;
    }
    .padding-bottom-56{
        padding-bottom: 40px;
    }
    .padding-bottom-96{
        padding-bottom: 64px;
    }
    .padding-bottom-104{
        padding-bottom: 72px;
    }
    .padding-bottom-120{
        padding-bottom: 96px;
    }
    /*```````````````````````````````````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-24{
            padding-top: 20px;
        }
        .padding-top-32{
            padding-top: 20px;
        }
        .padding-top-48{
            padding-top: 36px;
        }
        .padding-top-64{
            padding-top: 48px;
        }
        .padding-top-72{
            padding-top: 56px;
        }
        .padding-top-96{
            padding-top: 64px;
        }
    }   
@media screen and (max-width: 767px){
     /*---------------------------------Padding bottom  mobile screens----------------------------*/
     .padding-bottom-4{
        padding-bottom: 4px;
    }
    .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-36{
        padding-bottom: 24px;
    }
    .padding-bottom-40{
        padding-bottom: 28px;
    }
    .padding-bottom-48{
        padding-bottom: 36px;
    }
    .padding-bottom-56{
        padding-bottom: 40px;
    }
    .padding-bottom-96{
        padding-bottom: 56px;
    }
    .padding-bottom-104{
        padding-bottom: 64px;
    }
    .padding-bottom-120{
        padding-bottom: 72px;
    }
    /*`````````````````````````````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-24{
        padding-top: 16px;
    }
    .padding-top-32{
        padding-top: 20px;
    }
    .padding-top-48{
        padding-top: 36px;
    }
    .padding-top-64{
        padding-top: 44px;
    }
    .padding-top-72{
        padding-top: 48px;
    }
    .padding-top-96{
        padding-top: 56px;
    }
}
/*`````````````````````````````````Mobile Screens end`````````````````````````````*/

