@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap");

input[type=number] {
	-moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
-webkit-appearance:none;
margin: 0;
}



body {
  font-family: "Nunito", sans-serif;
}
img {
  width: 100%;
  height: auto;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #f26841;
  --bs-btn-border-color: #f26841;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #d85935;
  --bs-btn-hover-border-color: #c54e2d;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #c54e2d;
  --bs-btn-active-border-color: #c54e2d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #f26841;
  --bs-btn-disabled-border-color: #f26841;
}

.btn-outline-primary {
  --bs-btn-color: #f26841;
  --bs-btn-border-color: #f26841;
  --bs-btn-hover-color: #f26841;
  --bs-btn-hover-bg: #fef0ec;
  --bs-btn-hover-border-color: #f26841;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #f26841;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #f26841;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f26841;
  --bs-btn-disabled-bg: #fef0ec;
  --bs-btn-disabled-border-color: #f26841;
  --bs-gradient: none;
  --bs-btn-bg: #fff;
  --bs-btn-font-weight: 500;
}

.btn-light.outline{
  border-color: #3A536C;
}
.btn.sm{
  padding-left: 30px;
  padding-right: 30px;
}
.btn.md{
  padding-left: 40px;
  padding-right: 40px;
}
.btn.lg{
  padding-left: 50px;
  padding-right: 50px;
}

.breadcrumb {
  --bs-breadcrumb-divider: ">";
  --bs-breadcrumb-item-active-color: #f26841;
  --bs-breadcrumb-item-padding-x: 1rem;
  --bs-breadcrumb-padding-y: 0.75rem;
}
.primary_bg {
  background-color: #f26841 !important;
}
.primary_light_bg{
  background-color: #FDECDF !important;
}

.secondary_bg {
  background-color: #365069 !important;
}
.secondary_light_bg {
  background-color: #F4F4F4 !important;
}


.primary_clr {
  color: #f26841 !important;
}

.secondary_clr {
  color: #365069 !important;
}

.text_justify {
  text-align: justify !important;
}



.fw-200{
  font-weight: 200 !important;
}
.fw-300{
  font-weight: 300 !important;
}
.fw-400{
  font-weight: 400 !important;
}
.fw-500{
  font-weight: 500 !important;
}
.fw-600{
  font-weight: 600 !important;
}
.fw-700{
  font-weight: 700 !important;
}
.fw-800{
  font-weight: 800 !important;
}
.fw-900{
  font-weight: 900 !important;
}






.navbar-nav {
  --bs-nav-link-color: #000;
  --bs-nav-link-font-size: 1rem;
  --bs-nav-link-font-weight: 600;
  --bs-nav-link-color: rgb(51 51 51);
  --bs-navbar-active-color: rgb(51 51 51);
}

.navbar {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  height: 66px;
  background-color: #fff;
}

.wrapper {
  padding-top: 66px;
}

.nav_link_btn {
  font-size: 0.75rem;
  height: 38px;
  min-width: 70px;
  border-radius: 19px;
}

.nav_link_btn > img {
  vertical-align: middle;
}

.sub_menu {
  background-color: rgb(239 239 239);
}

.sub_menu_link {
  padding-right: 25px !important;
  position: relative;
}

.sub_menu_link::after,
.sub_menu_list_title::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../icons/arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.collapsed.sub_menu_link::after,
.collapsed.sub_menu_list_title::after {
  transform: translateY(-50%) rotate(0deg);
}

ul.sub_menu_list {
  list-style: none;
  padding-left: 30px;
}

ul.sub_menu_list > li {
  margin-bottom: 0.5rem;
  position: relative;
  color: rgb(51 51 51);
}

ul.sub_menu_list > li > a {
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(51 51 51);
  font-weight: 300;
}

ul.sub_menu_list > li > a:hover {
  color: rgb(242 104 65);
}

.sub_menu_list_title {
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem 30px;
  pointer-events: all;
}

.sub_menu_list_wrapp {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sub_menu_list_wrapp > a {
  text-decoration: none;
  color: rgb(51 51 51);
  font-weight: 600;
  padding: 0.5rem;
  display: inline-block;
  width: 100%;
}

.sub_menu_list_title.collapsed:last-child {
  border-bottom: none !important;
}

.sub_menu_list_title .nav_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 5px;
}

.sub_menu_list_title .nav_icon > img {
  width: 100%;
  height: auto;
}

.navbar-brand {
  max-width: 100px;
  display: inline-block;
}

.navbar-brand > img {
  width: 100%;
  height: auto;
}

.navbar-collapse {
  background-color: #fff;
}

.hamburger {
  flex-wrap: wrap;
  display: inline-flex;
  justify-content: center;
  padding: 5px;
  align-items: center;
  vertical-align: middle;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  color: #ffffff;
}

.hamburger .line {
  width: 30px;
  height: 2px;
  background-color: #ecf0f1;
  margin: 0 !important;
}

.body_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}

.footer_logo {
  display: inline-block;
  max-width: 90px;
}
.footer_logo > img {
  width: 100%;
  height: auto;
}
footer .link {
  text-decoration: none;
  color: #fff;
}
footer .border-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}
footer .footer_nav_links {
  list-style: none;
  padding: 0;
}
footer .footer_nav_links li {
  margin-bottom: 0.5rem;
}
footer .footer_nav_links li > .title {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: inline-block;
  width: 100%;
}
footer .footer_nav_links li > a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 300;
}
.social_link {
  display: inline-block;
  width: 2.5rem;
  height: auto;
  margin: 0 3rem;
}
.social_link > img {
  width: 100%;
  height: auto;
}



.container.container_space {
  padding-top: 3rem;
  padding-bottom: 3rem;
}








.seashell_bg{
  background-color: #FFFBF8 !important;
}
.magnolia_bg{
  background-color: #F7F4F9 !important;
}
.aliceBlue_bg{
  background-color: #EEF9FD !important;
}



.home-wraper {
  min-height: calc(100dvh - 66px);
  height: 100%;
  position: relative;
  background: linear-gradient(180deg, #FFF1E2 0%, rgba(255, 241, 226, 0) 100%);
  z-index: 0;
  padding: 30px 0;
}

.home-wraper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pitch-central-bg.png") center;
  opacity: 0.7; /* Set your desired opacity */
  z-index: -1;
}


.captcha_img {
            display: inline-block;
            width: 100%;
            background-color: #fff;
            border: 1px solid #E0DFDF;
            height: 39px;
            line-height: 39px;
            border-radius: 4px;
            vertical-align: bottom;
            padding-right: 39px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

            .captcha_img .refresh {
                position: absolute;
                right: 0;
                height: 38px;
                width: 38px;
                background-color: #E0DFDF;
                text-align: center;
                color: #000000;
                font-size: 18px;
                cursor: pointer;
            }

            .captcha_img > img {
                max-width: 100%;
                max-height: 100%;
                width: auto;
                height: auto;
                vertical-align: middle;
                mix-blend-mode: multiply;
            }

.input_field {
  margin-bottom: 1.8rem;
}

.input_field label {
  font-size: 15px;
  color: #365069;
  padding-bottom: 5px;
}

.input {
  position: relative;
  color: rgba(28, 28, 28, 0.65);
  border-bottom: 1px solid #afb9c3;
  border-radius: 0;
  background-color: transparent;
}

.input input,
.input select,
.input textarea {
  width: 100%;
  height: 34px;
  line-height: 34px;
  font-size: inherit;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  vertical-align: top;
  font-size: 16px;
}

.input input::placeholder {
  font-weight: 400;
  color: #b3b3b3;
}

.input.select select {
  padding-right: 50px;
}

.input.select:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 18px;
  color: #333;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 9px;
  pointer-events: none;
}

select:has(option:disabled:checked) {
  color: #888; /* Gray text */
}

.input.input.with_icon_btn {
  display: flex;
  gap: 10px;
}

.input.with_icon_btn .icon_btn {
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  color: #fff;
  background-color: #f26841;
  border-radius: 5px;
  text-decoration: none;
  padding: 0 10px;
  cursor: pointer;
}
.input.with_icon_btn .icon_btn:hover{
  background-color: #d85935;
}
.input.with_icon_btn .text_only {
  font-size: 16px;
  line-height: 32px;
  text-align: left;
  display: inline-block;
  color: #808080;
  white-space: nowrap;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}

.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  pointer-events: all;
}

a.link {
  color: #f26841;
  font-weight: 600;
  text-decoration: underline;
}

.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: -webkit-inline-table;
  display: inline-table;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  background-color: #f7f9fc;
  border: 1px solid #e0dfdf;
  border-radius: 4px;
}

.styled-checkbox:checked + label:before {
  background: #20303f;
}

.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white,
    4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}


input, select, option {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}
select::-ms-expand {
display: none;
}


.up-in-toggle {
  padding: 7px 0 0 0;
  display: flex;
}
.up-in-toggle input {
  clip: rect(0, 0, 0, 0);
  height: 0;
  width: 0;
  border: 0;
  overflow: hidden;
}
.up-in-toggle input:checked + label {
  background: #fdeae4;
  border-color: #F26841;
  z-index: 1;
}
.up-in-toggle label {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #3E4F61;
  color: #3E4F61;
  text-align: center;
  padding: 4px 14px;
  white-space: nowrap;
  font-weight: 400;
  transition: all 0.1s ease-in-out;
}
.up-in-toggle label:hover {
  cursor: pointer;
}
.up-in-toggle label:first-of-type {
  border-radius: 20px 0 0 20px;
  margin-right: -2px;
}
.up-in-toggle label:last-of-type {
  border-radius: 0 20px 20px 0;
}







.home-slider {
  position: relative;
  height: calc(100dvh - 126px);
  overflow: hidden;
  border-radius: 20px;
  position: sticky;
  top: 96px;
}

.home-slider .swiper-container {
  height: 100%;
}

.home-slider .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}

.home-slider .swiper-slide img {
  height: 100%;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: left;
}

.home-slider .swiper-slide {
  padding-bottom: 0;
}

.home-slider .swiper-button-home{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.home-slider .swiper-button-home .swiper-pagination-bullet {
  background: #253846;
  opacity: .5;
}

.home-slider .swiper-button-home .swiper-pagination-bullet-active {
  opacity: 1;
}


.home-slider  .swiper-button-home .swiper-pagination-bullets.swiper-pagination-horizontal {
  display: inline-block;
  position: relative;
  bottom: auto;
  top: auto;
  left: auto;
  width: auto;
  vertical-align: middle;
  padding: 0 10px;
}

.home-slider .swiper-button-home .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #cacdd0;
  opacity: 1;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
}

.home-slider .swiper-button-home .swiper-pagination-bullet-active {
  background: #EF4023 !important;
  opacity: 1;
}

.comment-box{
  width: calc(100% - 40px);
  padding: 20px;
  padding-bottom: 50px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.comment-box h4{
  font-size: 20px;
  font-weight: 700;
}
.comment-box p{
  margin-bottom: 0;
}





.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}
.step {
  position: relative;
  z-index: 1;
  padding: 8px 0;
  flex: 1;
}
.step::after {
  content: '';
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #253846;
  z-index: 0;
}
.step:first-child{
  padding-left: 0;
}
.step:last-child{
  padding-right: 0;
}

.step:last-child::after{
  display: none;
}

.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #FFF2E4;
  border: 1px solid #253846;
  border-radius: 50%;
  line-height: 40px;
  color: #000;
  user-select: none;
  position: relative;
  z-index: 1;
  text-align: center;
}

.step.active .step-number {
  background-color: #fff;
  border-width: 14px;
  color: #fff;
}
.step.done .step-number{
  background-color: #253846;
  color: #fff;
}

.step-num{
  font-size: 13px;
  padding: 10px 0;
  color: rgba(51, 51, 51, 0.87);
}
.step-label {
  font-size: 16px;
  color: #365069;
  text-align: left;
  /* white-space: nowrap; */
}
.step.active .step-label{
  font-weight: bold;
}


.rupeeIcon {
  width: 75px;
}

.qrCode-wrap{
  display: flex;
  align-items: center;
  gap: 15px;
}
.qrCode-img{
  min-width: 130px;
  width: 130px;
  height: 130px;
}




.btn-close {
    position: absolute;
    right: 10px;
    top: 15px;
    margin: 0;
    padding: 0.5rem;
    z-index: 9;
}

.popWrapr {
    padding: 30px;
}

.thank-img img {
    width: 40%;
    display: inline-block;
}

.checkCircle {
    margin-bottom: 20px;
}

.checkCircle i {
    font-size: 70px;
    color: #d60000;
}

.yesCircle {
    margin-bottom: 20px;
}

.yesCircle i {
    font-size: 70px;
    color: #267f14;
}

.errorPopWrap {
    padding: 20px;
    text-align: center;
}

.errorPopWrap h2 {
    font-size: 30px;
    padding: 10px 0;
    color: #d60000;
    margin-bottom: 10px;
}

.errorPopWrap p, .popWrapr p {
    font-size: 20px;
    padding: 10px 0;
}

.popWrapr {
    padding: 30px;
}



.swiper-button-all{
  text-align: left;
  padding-top: 10px;
}
.swiper-button-all.absolute{
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.swiper-button-all .swiper-button-prev, .swiper-button-all .swiper-button-next{
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  overflow: hidden;
  position: relative;
  top: auto;
  margin-top: 0;
  margin: 0;
  background-image: none;
  text-align: center;
  color: #202020;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.swiper-button-all .swiper-button-prev:hover, .swiper-button-all .swiper-button-next:hover{
  color: #F26842; 
}
.swiper-button-all .swiper-button-prev {
  left: auto;
  right: auto;
  margin-right: 10px;
}
.swiper-button-all .swiper-button-next {
  right: auto;
  left: auto;
  margin-left: 10px;
}
.swiper-button-all .swiper-button-prev:before, .swiper-button-all .swiper-button-next:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: block;
  height: 100%;
  width: 100%;
  font-size: 25px;
}

.swiper-button-all .swiper-button-prev:before {
  content: "\f053";
}
.swiper-button-all .swiper-button-next:before {
  content: "\f054";
}

.swiper-button-all .swiper-pagination-bullets.swiper-pagination-horizontal{
  display: inline-block;
  position: relative;
  bottom: auto;
  top: auto;
  left: auto;
  width: auto;
  vertical-align: middle;
  padding: 0 10px;
}
.swiper-button-all .swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  border-radius: 0;
  background: #fff;
  opacity: 0.3;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
}

.swiper-button-all .swiper-pagination-bullet-active {
  background: #F26842 !important;
  opacity: 1;
}

.three-col-slider .swiper-button-all .swiper-pagination-bullet {
  background: #253846;
}
.three-col-slider .swiper-container{
  padding: 0 10px;
}




.all_card figure .image {
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  transition: all ease 0.3s;
}

.all_card figure .image::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}
.all_card figure .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.all_card figure .image img{
  width: 100%;
    height: 100%;
    object-fit: cover;
}
.all_card figure .image .play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  z-index:1;
}

.all_card.swiperCard figure .image .play-btn{
  top: 50%;
}


.all_card.copyUper{
  padding: 0;
}
.all_card.copyUper a{
  text-decoration: none;
  overflow: hidden;
    border-radius: 10px;
    display: block;
}
.all_card.copyUper figure{
  margin: 0;
}
.all_card.copyUper figure .image{
  margin-bottom: 0;
}

.all_card.copyUper figure figcaption {
  text-decoration: none;
  width: 100%;
  height: auto;
  background: #365069;
  padding: 6px 10px;
  color: #fff;
}

.all_card.copyUper figure figcaption .header{
  font-size: 14px;
  text-align: left;
  margin-bottom: 0;
  line-height: 1.5;
  display: block;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.all_card.copyUper:hover figure figcaption .header{
  color: #fff;
}














@media (min-width: 992px) {

  .download_card > .caption{
    visibility: hidden;
    opacity: 0;
  transition: all ease 0.3s;
  }
  .download_card:hover > .caption{
    opacity: 1;
    visibility: visible;
    
  }

  .sub_menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  .sub_menu_list_title::after {
    display: none !important;
  }

  .sub_menu_list_title {
    pointer-events: none;
  }

  .sub_menu_list_wrapp {
    border-bottom: 0;
  }

  .navbar-nav .nav-item {
    margin-right: 1rem;
  }

  ul.sub_menu_list > li:last-child {
    margin-bottom: 0;
  }

  .sub_menu_link:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -36px;
    width: 100%;
    height: 2px;
    background-color: #f26841;
    transition: all ease 0.3s;
  }

  .sub_menu_link.collapsed:before {
    width: 0;
  }
  .footer_logo {
    max-width: 150px;
  }

}

@media (max-width: 1200px) {
  .container, .container.container_space {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1160px;
  }

  .navbar-nav .nav-item {
    margin-right: 0.75rem;
  }
  .social_link {
    width: 1.5rem;
    margin: 0 1rem;
  }

}

@media (max-width: 992px) {

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgb(250 250 250);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav-item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sub_menu {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: rgb(250 250 250);
  }

  .sub_menu {
    background-color: #fff;
  }

  .sub_menu_list {
    background-color: #fff;
  }

  .sub_menu_list_title .nav_icon {
    width: 18px;
    height: 18px;
  }

  .navbar-nav {
    --bs-nav-link-padding-y: 1rem;
  }

  li.nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .sub_menu_list_title {
    font-size: 0.875rem;
  }

  .navbar {
    height: 72px;
  }

  .wrapper {
    padding-top: 72px;
  }

  .navbar-brand {
    max-width: 90px;
  }

  .sub_menu_list_title {
    position: relative;
    padding: 1rem 1rem 1rem 30px;
    pointer-events: all;
  }

  .sub_menu_list_title .nav_icon {
    top: 14px;
  }



  .appStore-img {
    height: 50px;
    max-height: 50px;
  }


.home-slider {
  height: calc(70dvh - 126px);
}




}


@media (max-width: 767px) {
  
  .home-wraper{
    height: auto;
  }

  .appStore-img {
    height: 46px;
    max-height: 46px;
  }

  .bannerGreen {
    padding: 40px 30px;
    font-size: .9rem;
  }

  .benefits_card .pv_icon.xxl{
    width: 50px;
    height: 50px;
  }
  .eligibility_card img{
    width: 150px;
    height: 150px;
  }


  .social_link {
    margin: 0 0.8rem;
  }


  .step-num{
    font-size: 12px;
  }
  .step-label {
    font-size: 13px;
  }


}

@media (max-width: 575px) {

  .bannerGreen {
    padding: 20px 20px;
  }

  .comment-box{
    width: calc(100% - 20px);
    padding: 10px;
    padding-bottom: 40px;
    bottom: 10px;
  }

  .comment-box h4{
    font-size: 14px;
  }
  .comment-box p{
    font-size: 12px;
  }
  .home-slider .swiper-button-home{
    bottom: 18px;
  }
}