
.photos-grid-container {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 6px;
  align-items: start;
}
@media (max-width: 580px) {
  .photos-grid-container {
    grid-template-columns: 1fr;
  }
}
.photos-grid-container .img-box {
  border: 1px solid #ffffff;
  position: relative;
}
.photos-grid-container .img-box:hover .transparent-box {
  background-color: rgba(0, 0, 0, 0.6);
}
.photos-grid-container .img-box:hover .caption {
  transform: translateY(-5px);
}
.photos-grid-container img {
  max-width: 100%;
  display: block;
  height: auto;
}
.photos-grid-container .caption {
  color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 1.5rem;
}
.photos-grid-container .transparent-box {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.photos-grid-container .main-photo {
  grid-row: 1;
  grid-column: 1;
}
.photos-grid-container .sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 0.4em;
}
.photos-grid-container .sub:nth-child(0) {
  grid-column: 1;
  grid-row: 1;
}
.photos-grid-container .sub:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}
.photos-grid-container .sub:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.photos-grid-container .sub:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.hide-element {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
@media screen and (min-width: 1280px) {
  .container {
    margin: 0 auto;
    width: 1250px;
  }
}
.form-box {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      max-width: 500px;
      margin: auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .price {
      font-size: 1.4rem;
      font-weight: bold;
    }

    .old-price {
      text-decoration: line-through;
      color: gray;
      margin-left: 10px;
    }

    .discount-tag {
      background-color: #e6f7ec;
      color: green;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 10px;
    }

    .form-control, .form-select {
      border-radius: 8px;
          border: 1px solid gray;
      margin-bottom: 15px;
      height: 50px;
          width: 100%;
          padding: 10px;
    }

    textarea.form-control {
      height: 100px;
    }

    .btn-orange {
      background-color: #07548c;
      color: #fff;
      font-size:15px;
      font-weight: 500;
      padding: 12px;
      width: 100%;
      border-radius: 10px;
      border: none;
    }

    .btn-orange:hover {
      background-color: #c60505;
    }

    label {
      font-weight: 500;
    }
    .new-n{
        display:flex;
        width:100%;
            gap: 10px;
    }
    #accordion {
  margin: 100px auto;
  width:100%;
  padding:0px;
}

#accordion li {
  list-style: none;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  background: #e6e6e6;
  border-radius: 4px;
}

#accordion li label {
    padding: 10px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    color: #000000;
}

#accordion label span {
  transform: rotate(90deg);
  font-size: 22px;
  color: #333;
}

#accordion label + input[type="radio"] {
  display: none;
}

#accordion .content {
  padding: 0 10px;
  line-height: 26px;
  max-height: 0;
  overflow:hidden;
  transition: max-height .5s linear;
}

#accordion label  + input[type="radio"]:checked  + .content {
  max-height: 400px;
}
.my-c{
    padding-top: 20px;
    overflow-y: scroll;
    height: 400px;
}
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}



.tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}

.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}

input:focus-visible + label {
  outline: 2px solid rgba(0,102,204,1);
  border-radius: 3px;
}

.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
  color: #06c;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}

.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}


.tabset {
  max-width: 100%;
  padding: 10px;
    box-shadow: 1px 1px 6px gray;
    border-radius: 11px;
}
.main-img .main{
    height: 537px!important;
    object-fit: cover;
    object-position: center;
}
.other-img img{
    height: 265px!important;
}
.InclusionsExclusions_itemLabel__sfgRP_exlude {
    display: flex
;
    align-items: center;
    color: #141414;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
}
.MicroComponents_customHighligtsPoint__4owW3 ul li {
    list-style: disc!important;
}





.hero-section {
  padding: 60px 20px;
  background: #fff;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.text-side {
  flex: 1;
  min-width: 300px;
}
.image-side {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.image-side img {
  max-width: 100%;
  height: auto;
}
.tagline {
  color: #999;
  font-weight: bold;
  margin-bottom: 10px;
}
h1 {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin: 0;
}
.highlight {
  color: #f77c00;
}
.subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #0057ff;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  h1 {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
    .display-5 {
        font-size: 5rem!important;
    }
}

/**/
.section-head {
  margin-bottom: 60px;
}
.section-head h4 {
  position: relative;
  padding:0;
  color:#f29e10;
  line-height: 1;
  letter-spacing:0.3px;
  font-size: 34px;
  font-weight: 700;  
  text-align:center;
  text-transform:none;
  margin-bottom:30px;
}
.section-head h4:before {
  content: '';
  width: 60px;
  height: 3px;
  background: #f29e10;
  position: absolute;
  left: 0px;
  bottom: -27px;
  right:0;  
  margin:0 auto;
}
.section-head h4 span {
  font-weight: 700;
  padding-bottom: 5px;
  color:#2f2f2f
}
p.service_text{
  color:#cccccc !important;
  font-size:16px;
  line-height:28px;
  text-align:center;    
}
.section-head p, p.awesome_line{
  color:#818181;
  font-size:16px;
  line-height:28px;
  text-align:center;  
}

.extra-text {
    font-size:34px;
    font-weight: 700;
    color:#2f2f2f;
    margin-bottom: 25px;
    position:relative;
    text-transform: none;
}
.extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}
.extra-text span {
    font-weight: 700;
    color:#f91942;
}
.item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border:5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover{
    background:#f29e10;
    box-shadow:0 8px 20px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover .item, .item:hover span.icon{
    background:#f29e10;
    border-radius:10px;
    color:white;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover h6, .item:hover p{
    color:#fff;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item .icon {
    font-size: 40px;
    margin-bottom:25px;
    color: #f91942;   
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}
.item .feature_box_col_one{
   /*background:rgba(23, 39, 246, 0.15);*/
    color:#f39e10
}

.item .feature_box_col_two{
    /*background:rgba(23, 39, 246, 0.15);*/
    color:#f39e10
}
.item .feature_box_col_three{
   /*background:rgba(23, 39, 246, 0.15);*/
    color:#f39e10
}
.item .feature_box_col_four{
   /*background:rgba(23, 39, 246, 0.15);*/
    color:#f39e10
}
.item .feature_box_col_five{
   /*background:rgba(23, 39, 246, 0.15);*/
    color:#f39e10
}
.item .feature_box_col_six{
    /*background:rgba(23, 39, 246, 0.15);*/
    color:#f39e10
}
.item p{
    font-size:15px;
    line-height:26px;
}
.item h6 {
    margin-bottom:20px;
    color:#2f2f2f;
}
.mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}
.mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}
.mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}
.skills {
    padding-top:0px;
}
.skills .prog-item {
    margin-bottom: 25px;
}
.skills .prog-item:last-child {
    margin-bottom: 0;
}
.skills .prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}
.skills .prog-item .skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius:20px;
    position: relative;
}
.skills .prog-item .skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #f91942;
    width: 10%;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight:600;    
    color: #fff;
    background:rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}


/**/


.timeline{
  position:relative;
  margin:50px auto;
  padding:40px 0;
  width:1000px;
  box-sizing:border-box;
}
.timeline:before{
  content:'';
  position:absolute;
  left:50%;
  width:2px;
  height:100%;
  background:#c5c5c5;
}
.timeline ul{
  padding:0;
  margin:0;
}
.timeline ul li{
  list-style:none;
  position:relative;
  width:50%;
  padding:20px 40px;
  box-sizing:border-box;
}
.timeline ul li:nth-child(odd){
  float:left;
  text-align:right;
  clear:both;
}
.timeline ul li:nth-child(even){
  float:right;
  text-align:left;
  clear:both;
}
.content{
  padding-bottom:20px;
}
.timeline ul li:nth-child(odd):before
{
  content:'';
  position:absolute;
  width:10px;
  height:10px;
  top:24px;
  right:-6px;
  background:#f29e10;
  border-radius:50%;
  box-shadow:0 0 0 3px rgba(233,33,99,0.2);
}
.timeline ul li:nth-child(even):before
{
  content:'';
  position:absolute;
  width:10px;
  height:10px;
  top:24px;
  left:-4px;
  background:#f29e10;
  border-radius:50%;
  box-shadow:0 0 0 3px rgba(233,33,99,0.2);
}
.timeline ul li h3{
  padding:0;
  margin:0;
  color:#f29e10;
  font-weight:600;
}
.timeline ul li p{
  margin:10px 0 0;
  padding:0;
}
.timeline ul li .time h4{
  margin:0;
  padding:0;
  font-size:14px;
}
.timeline ul li:nth-child(odd) .time
{
  position:absolute;
  top:12px;
  right:-165px;
  margin:0;
  padding:8px 16px;
  background:#f29e10;
  color:#fff;
  border-radius:18px;
  box-shadow:0 0 0 3px rgba(233,33,99,0.3);
}
.timeline ul li:nth-child(even) .time
{
  position:absolute;
  top:12px;
  left:-165px;
  margin:0;
  padding:8px 16px;
  background:#f29e10;
  color:#fff;
  border-radius:18px;
  box-shadow:0 0 0 3px rgba(233,33,99,0.3);
}
@media(max-width:1000px)
{
  .timeline{
    width:100%;
  }
}
@media(max-width:767px){
  .timeline{
    width:100%;
    padding-bottom:0;
  }
  h1{
    font-size:40px;
    text-align:center;
  }
  .timeline:before{
    left:20px;
    height:100%;
  }
  .timeline ul li:nth-child(odd),
  .timeline ul li:nth-child(even)
  {
    width:100%;
    text-align:left;
    padding-left:50px;
    padding-bottom:50px;
  }
  .timeline ul li:nth-child(odd):before,
  .timeline ul li:nth-child(even):before
  {
    top:-18px;
    left:16px;
  }
  .timeline ul li:nth-child(odd) .time,
  .timeline ul li:nth-child(even) .time{
    top:-30px;
    left:50px;
    right:inherit;
  }
}


/**/
@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.gallery-item {
  display: block;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme = "dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme = "dark"] .lightbox-modal .carousel-control-prev-icon {
    filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: .6;
  font-size: 1.25rem;
}

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor;
}
/**/
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 24rem;
}
@media screen and (max-width:767px){
    .testimonial-card {
        max-width: 100%!important;
    }
}

.testimonial-image {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: rgb(31, 41, 55);
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgb(75, 85, 99);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: rgb(55, 65, 81);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
}

.star.filled {
  color: rgb(250, 204, 21);
  fill: rgb(250, 204, 21);
}

.star.empty {
  color: rgb(209, 213, 219);
}















.banner_bannerWrapper__pqfbK {
    display: flex;
    position: relative
}

.banner_video__70pMB {
    display: flex;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh)*100)!important;
    object-fit: cover
}

.banner_video__70pMB:before {
    position: absolute;
    content: "";
    height: 100%;
    display: block;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg,#141414,rgba(0,0,0,.8) 22.22%,rgba(0,0,0,.7) 43.37%,transparent);
    pointer-events: none;
    margin-bottom: -2px
}

@media(max-width: 576px) {
    .banner_dynamicHeight__aZ8J3,.banner_dynamicHeight__aZ8J3 img {
        height:calc(var(--vh, 1vh)*100)!important
    }

    .banner_dynamicHeightSaleOn__ABTSb,.banner_dynamicHeightSaleOn__ABTSb img {
        height: calc(var(--vh, 1vh)*100 - 38px)!important
    }
}

.banner_images__bCmom {
    display: flex;
    width: 100vw;
    /*height: 100vh;*/
    object-fit: cover;
    transition: height .1s linear
}

.banner_images__bCmom img {
    width: 100vw!important;
    /*height: 100vh;*/
    object-fit: cover
}

.banner_images__bCmom:before {
    position: absolute;
    content: "";
    height: 100%;
    display: block;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 53%;
    background: linear-gradient(0deg,#141414,rgba(0,0,0,.78) 22.22%,rgba(0,0,0,.56) 46.84%,rgba(65,65,65,0));
    pointer-events: none;
    margin-bottom: -2px
}

@media(max-width: 576px) {
    .banner_images__bCmom,.banner_images__bCmom img {
        height:calc(100vh - 50px)
    }

    .banner_images__bCmom:before {
        position: absolute;
        content: "";
        height: 100%;
        display: block;
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 40%;
        background: linear-gradient(0deg,#141414,rgba(0,0,0,.78) 22.22%,rgba(0,0,0,.56) 46.84%,rgba(65,65,65,0));
        pointer-events: none;
        margin-bottom: -2px
    }
}

.banner_imagesSaleOn__x4WJE {
    height: calc(100vh - 38px);
    overflow-y: hidden
}

.banner_imagesSaleOn__x4WJE img,.banner_imagesSaleOn__x4WJE span img {
    height: calc(100vh - 38px)
}

.banner_bannerBottom__SGHDf {
    min-width: 100vw;
    min-height: 325px;
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-bottom: -3px;
    z-index: 2;
    bottom: 0;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
    justify-content: center
}

@media(max-width: 576px) {
    .banner_bannerBottom__SGHDf {
        padding-left:15px;
        align-items: flex-start;
        text-align: left;
        justify-content: flex-end;
        padding-bottom: 20px;
        min-height: 166px
    }
}

.banner_singleImgBannerBtm__CL6kY {
    min-height: 300px
}

.banner_smallBannerBtm__sI78h {
    min-height: 250px
}

.banner_noCallBackBtn__vaSts {
    min-height: 220px!important
}

.banner_bannerMainHeading__wSKsT {
    display: inline-block;
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    line-height: 50px
}

.banner_bannerMainHeading__wSKsT span {
    color: #ffba0a;
    font-weight: 700;
    text-transform: uppercase
}

.banner_bannerMainHeading__wSKsT h1 {
    font-size: 45px;
    font-weight: 600;
    line-height: 50px
}

@media(max-width: 576px) {
    .banner_bannerMainHeading__wSKsT {
        font-size:25px;
        line-height: 36px;
        margin-bottom: -5px;
        padding-right: 10px;
        width:100%;
    }
    .main-img .main {
    height: 278px !important;
}
.other-img img {
    height: 161px !important;
}
    form {
        padding: 0px!important;
    }
    .ProductInfo_tripDurationPill__OSIQg {
   
    font-size: 8px!important;
   
}
.DestinationInfo_destinationInfoWrapper__Tow9X .DestinationInfo_noOfDays__BFthL {
    font-size: 22px!important;
   
}
#accordion {
    margin: 16px auto!important;
    
}
#accordion li label {
    
    font-size: 13px!important;
    
}
.Divider_divider__yaBCO {
       
        margin: 0px 0!important;
    }
        .container {
         padding: 10px 9px!important; 
    }
    .banner_bannerMainHeading__wSKsT h1 {
        font-size: 25px;
        line-height: 36px
    }
}

@media(max-width: 375px) {
    .banner_bannerMainHeading__wSKsT {
        font-size:23px;
        line-height: 32px;
        padding-right: 10px
    }

    .banner_bannerMainHeading__wSKsT h1 {
        font-size: 23px;
        line-height: 32px
    }
}

@media(max-width: 576px) {
    .banner_bannerMainHeadingRev__2Awyv {
        margin-bottom:7px;
        margin-top: 2.5px
    }
}

.banner_bannerMainHeading_md__oBWET,.banner_bannerMainHeading_md__oBWET h1 {
    font-size: 34px;
    line-height: 41px
}

@media(max-width: 576px) {
    .banner_bannerMainHeading_md__oBWET {
        font-size:22px;
        line-height: 30px;
        margin-bottom: -5px
    }

    .banner_bannerMainHeading_md__oBWET h1 {
        font-size: 22px;
        line-height: 30px
    }
}

@media(max-width: 375px) {
    .banner_bannerMainHeading_md__oBWET,.banner_bannerMainHeading_md__oBWET h1 {
        font-size:20px;
        line-height: 27px
    }
}

.banner_bannerMainHeading_sm__eeCkZ,.banner_bannerMainHeading_sm__eeCkZ h1 {
    font-size: 30px;
    line-height: 38px
}

@media(max-width: 576px) {
    .banner_bannerMainHeading_sm__eeCkZ {
        font-size:20px;
        line-height: 30px;
        margin-bottom: -5px
    }

    .banner_bannerMainHeading_sm__eeCkZ h1 {
        font-size: 20px;
        line-height: 30px
    }
}

@media(max-width: 375px) {
    .banner_bannerMainHeading_sm__eeCkZ,.banner_bannerMainHeading_sm__eeCkZ h1 {
        font-size:18px;
        line-height: 26px
    }
}

.banner_bannerSubHeading__3pEt7 {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    line-height: 33px;
    margin-top: 17px;
    padding-right: 15px;
    width: 1080px;
    justify-content: center
}

.banner_bannerSubHeading__3pEt7 span {
    background: #ffba0a;
    font-weight: 500;
    margin: 0 7px;
    padding: 0 12px;
    border-radius: 5px;
    color: #202020
}

@media(max-width: 576px) {
    .banner_bannerSubHeading__3pEt7 {
        width:100%;
        font-size: 14px;
        line-height: 21px;
        margin-top: 15px;
        justify-content: flex-start
    }

    .banner_bannerSubHeading__3pEt7 span {
        margin: 0 5px;
        padding: 0 7px
    }
}

.banner_bannerSubHeadingHlw__3GOVm span {
    background: transparent;
    font-weight: 600;
    margin: 0;
    padding: 0 4px;
    border-radius: 5px;
    color: #fcaf17
}

@media(max-width: 576px) {
    .banner_bannerSubHeadingHlw__3GOVm span span {
        margin:0 5px;
        padding: 0 7px
    }
}

.banner_locationIcon__6sXnF {
    display: flex;
    margin-right: 7px
}

.banner_subheadingDivider__3aet0 {
    display: flex;
    align-items: center;
    min-height: 1px;
    min-width: 10px;
    width: auto;
    flex-grow: 1;
    background: linear-gradient(270deg,hsla(0,0%,100%,.05) -.13%,hsla(0,0%,88%,.05) 0,#e0e0e0 49.17%,hsla(0,0%,88%,.05))
}

@media(max-width: 576px) {
    .banner_subheadingDivider__3aet0 {
        min-width:calc(10vw - 30px);
        margin: 30px 0
    }
}

.banner_divider__oStqV {
    display: flex;
    align-items: center;
    margin: 15px 0;
    min-height: 1px;
    min-width: 1080px;
    background: linear-gradient(270deg,hsla(0,0%,100%,.05) -.13%,hsla(0,0%,88%,.05) 0,#fff 49.17%,hsla(0,0%,88%,.05))
}

@media(max-width: 576px) {
    .banner_divider__oStqV {
        min-width:calc(100vw - 30px)
    }
}

.banner_priceLabelBox__pesnL {
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 15px;
    justify-content: center
}

@media(max-width: 576px) {
    .banner_priceLabelBox__pesnL {
        justify-content:space-between
    }
}

.banner_priceWrapperBox__Oi2ed {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-right: 15px
}

@media(max-width: 576px) {
    .banner_priceWrapperBox__Oi2ed {
        justify-content:space-between;
        margin-top: 0
    }
}

.banner_priceLabel__dmdbK {
    display: flex;
    align-items: center;
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px
}

@media(max-width: 576px) {
    .banner_priceLabel__dmdbK {
        color:#e0e0e0;
        font-size: 11px;
        line-height: 17px
    }
}

.banner_saleTimer__7px1s {
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 17px;
    margin-top: 5px;
    margin-left: 5px
}

.banner_priceWrapper__IVqb5 {
    display: flex;
    align-items: center
}

.banner_strikeThroughPrice__aqKnw {
    display: flex;
    align-items: center;
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 300;
    line-height: 33px;
    margin-right: 15px;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through
}

@media(max-width: 576px) {
    .banner_strikeThroughPrice__aqKnw {
        color:#bfbfbf;
        font-size: 14px;
        line-height: 21px
    }
}

.banner_actualPrice__CVD4W {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    margin: 0 5px 0 10px
}

@media(max-width: 576px) {
    .banner_actualPrice__CVD4W {
        font-size:16px;
        line-height: 24px;
        margin: 0 5px 0 0
    }
}

.banner_priceOfferBox__ODk81 {
    display: flex;
    align-items: center;
    min-width: 139px;
    min-height: 22px;
    max-height: 22px;
    border-radius: 30px;
    background: #19ad6f;
    padding: 2.5px
}

@media(max-width: 576px) {
    .banner_priceOfferBox__ODk81 {
        min-width:115px;
        min-height: 19px;
        max-height: 19px
    }
}

.banner_saleColor__QEm7v {
    background: linear-gradient(93deg,#ff7b26,#ec048c)
}

.banner_priceOfferIcon__3JD4J {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 30px;
    margin-right: 5px
}

@media(max-width: 576px) {
    .banner_priceOfferIcon__3JD4J {
        width:15.5px;
        height: 15.5px;
        margin-right: 3px
    }

    .banner_priceOfferIcon__3JD4J svg {
        width: 10px;
        height: 10px
    }
}

.banner_priceOfferText__wVgs1 {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase
}

@media(max-width: 576px) {
    .banner_priceOfferText__wVgs1 {
        font-size:10px
    }
}

.banner_bannerMainButton__yzPyq {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    width: 184px;
    height: 51px;
    border-radius: 40px;
    background: var(--primary-color,#f37002);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: capitalize
}

@media(max-width: 576px) {
    .banner_bannerMainButton__yzPyq {
        width:calc(100vw - 30px);
        height: 51px;
        border-radius: 7px;
        font-size: 15px
    }
}

.banner_noPrice__VrmcR {
    margin-top: 0!important
}

/**/



.container-h {
  position: relative;
  width: 100%;
  
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #f37002;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #a14f09);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #b05000;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  /*padding: 2.3rem 2.2rem;*/
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 65px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {

  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.my-bbtt {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #f37002;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #f37002;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #f37002;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
      background: linear-gradient(45deg, #d16305, #f37002);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}



.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}











