@import url('https://fonts.googleapis.com/css2?family=Protest+Riot&display=swap');
@font-face {
  font-family: 'ebrima';
  src: url('../fonts/ebrimafont/ebrima.woff2') format('woff2'),
       url('../fonts/ebrimafont/ebrima.woff') format('woff'),
       url('../fonts/ebrimafont/ebrima.ttf') format('truetype');
}

@font-face {
  font-family: 'ebrima';
  src: url('../fonts/ebrimafont/ebrima-bold.woff2') format('woff2'),
       url('../fonts/ebrimafont/ebrima-bold.woff') format('woff'),
       url('../fonts/ebrimafont/ebrima-bold.ttf') format('truetype');
  font-weight: bold;
}

:root {
    --primary: #FF6000;
    --dark: #003C79;
    --black: #000000;
    --gray: #E9EEF2;
    --gray-light: #eff4f7;
    --gradient-light: #EEF3F9;

    --secondary: #565656;
    --white: #ffffff;
    --yellow: #ffda59;
    --border1: rgba(0, 24, 55, 0.15);
    --border2: #414141;
    --fb: #316FF6;
    --ln: #0077B5;
    --tw: #008AD8;
    --wh: #075E54;
    --mail: #ea4135;
    --ph: #1a1d1e;

    --ebrima: 'ebrima', sans-serif;
    --gray-800: #ffffff;
}

body {
  font-family: var(--ebrima);
    margin: 0;
    padding: 0;
    color: var(--black);
    font-size: 18px;
    font-weight: 100;
    line-height: 1.5;
}

select.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}

.text-justify {
  text-align: justify;
}
a, a:hover{
  text-decoration: none !important;
  color: initial;
}
.bg_gray {
  background-color: var(--gray);
}
.form-control:focus, .form-select:focus {
  color: initial;
  background-color: transparent !important;
  border-color: var(--white);
  outline: 0;
  box-shadow: none !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
b, strong {
  font-weight: 600;
}

/* Form */
.form-control, .form-select {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 13px;
  border: 2px solid var(--white);
  background-color: transparent !important;
  color: var(--white) !important;
}
.form-control::placeholder {
  color: var(--white);
  opacity: 1; 
}

.form-control::-ms-input-placeholder { 
  color: var(--white);
}

/* Buttons */
.btn {
  position: relative;
  font-size: 20px;
  padding: 7px 20px;
  border-radius: 30px;
}
.btn:hover::before, .btn:hover::before {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.btn_sm {
  font-size: 16px;
  padding: 7px 16px;
}
.btn_lg {
  font-size: 32px;
  font-weight: 100;
  border-radius: 19px;
  border-width: 3px;
}

.btn_theme {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn_theme:hover {
  color: var(--primary);
  background-color: var(--white);
  border-color: var(--primary);
}

.btn_bordered {
  color: var(--black);
  background-color: transparent;
  border-color: var(--primary);
}
.btn_bordered:hover {
  color: var(--white);
  background-color: var(--primary);
}

.btn-check:focus+.btn, .btn:focus {
  box-shadow: none;
}

/* Section Heading */
.section_padding {
  padding: 80px 0;
}
.section_heading {
  margin-bottom: 50px;
}
.section_heading h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--dark);
}

/* Header */
.main_header{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--white);
  z-index: 1030;
}
.main_header.fixed-top{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
@keyframes fadeInDown {
	0% {
	  opacity: 0;
	  transform: translate3d(0, -100%, 0);
	}
	to {
	  opacity: 1;
	  transform: translateZ(0);
	}
}

/* Main Header */
.main_header .navbar {
  padding: 0 16px;
}
.main_header .navbar-brand img, .main_header.fixed-top .navbar-brand img{
    height: 71px;    
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.main_header .navbar-nav .nav-link {
    color: var(--black);
    font-size: 20px;
    font-weight: 100;
    padding: 4px 12px;
    border-radius: 5px;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.main_header .navbar-nav .nav-link.active {
    color: var(--primary);
}
.main_header .navbar-nav .nav-link:hover {
    color: var(--primary);
}
.main_header .nav-link span{
    position: relative;
}
.main_header .navbar-nav li.nav-item {
  position: relative;
}



/* Bootstrap Offcanvas */
@media (max-width: 991.98px) {
  .main_header .offcanvas-collapse {
      position: fixed;
      top: 0; 
      bottom: 0;
      left: 100%;
      width: 42%;
      padding: 60px 12px 16px;
      overflow-y: auto;
      visibility: hidden;
      background-color: var(--white);
      transition: transform .3s ease-in-out, visibility .3s ease-in-out;
      z-index: 1100;
    }
    .main_header .offcanvas-collapse.open {
      visibility: visible;
      transform: translateX(-100%);
    }

    .main_header .btn-close {
        position: absolute;
        top: 8px;
        right: 10px;
        font-size: 15px;
        padding: 10px;
        border-radius: 50%;
        display: block !important;
        background-color: var(--white);
        z-index: 1100;
    }
  }
  
  .main_header .nav-scroller .nav {
    color: rgba(255, 255, 255, .75);
  }
  
  .main_header .nav-scroller .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    color: #6c757d;
  }
  
  .main_header .nav-scroller .active {
    font-weight: 500;
    color: #343a40;
  }

.main_header .btn-close{
  display: none;
}
@media (min-width: 992px){
  .main_header .navbar-expand-lg .navbar-nav {
    background-color: transparent;
    padding: 28px 5px;
    margin: 0 auto;
  }
.main_header .navbar-expand-lg .navbar-nav li.nav-item {
    padding: 0 24px;
}
.main_header .navbar-expand-lg .navbar-nav li:last-child .nav-link {
  margin-right: 0;
}
.main_header.fixed-top .navbar-expand-lg .navbar-nav {
  background-color: transparent;
}
.main_header.fixed-top .navbar-expand-lg .navbar-nav::after, .main_header.fixed-top .navbar-expand-lg .navbar-nav::before {
  box-shadow: 0 -20px 0 0 var(--white);
}
}

/* *********************** */
/* Home Banner */
/* *********************** */
.home_banner {
  background-color: #fdf1e9;
  overflow: hidden;
  padding: 7% 0 9%;
  background-image: url(../images/banner/bannerimg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner_text {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.banner_text h1 {
  font-size: 80px;
  font-weight: normal;
  line-height: 90px;
  margin-bottom: 30px;
  font-family: "Protest Riot", serif;
}
.banner_text h1 span {
  display: block;
}
.banner_text h3 {
  font-size: 35px;
  font-weight: 100;
}
.banner_text h2 {
  font-size: 36px;
  font-weight: 600;
}
.banner_text h2 span {
  padding: 5px 8px;
  background-color: var(--primary);
  color: var(--white);
}

/* Banner Form */
.bannerform {
  position: relative;
  padding: 50px 30px;
  border-radius: 35px;
  background: rgba(60, 60, 60, 0.7);
  border: 2px solid var(--white);
  max-width: 475px;
  margin-left: auto;
}
.bannerform_btn {
  position: relative;
}
.bannerform_btn a, .bannerform_btn button {
  position: relative;
  z-index: 2;
}
.bannerform h4 {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 30px;
}
.bannerform h4 span {
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  display: block;
  color: var(--primary);
}

.banner_btm_msg {
  background-color: #090B0B;
  position: relative;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: center;
}
.banner_btm_msg h3 {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--primary);
}

/* Why Choose Dham Yatra with MTC? */
.why_choose {
  background-color: #fdf1e9;
}
.why_choose .why_choose_card {
  position: relative;
  text-align: center;
  padding: 0 10%;
}
.why_choose .why_choose_card img {
  width: 90px;
  margin: 0 auto 12px;
}
.why_choose .why_choose_card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.why_choose .why_choose_card p {
  font-size: 16px;
  margin-bottom: 0;
}
.why_choose .owl-carousel, .client_testimonials .owl-carousel {
  padding: 0 60px;
}
.why_choose .item {
  justify-content: center;
}
.why_choose .owl-carousel .owl-nav button.owl-next, .why_choose .owl-carousel .owl-nav button.owl-prev, .client_testimonials .owl-carousel .owl-nav button.owl-next, .client_testimonials .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  bottom: 50%;
  font-size: 22px;
}
.why_choose .owl-carousel .owl-nav button.owl-prev, .client_testimonials .owl-carousel .owl-nav button.owl-prev {
  left: 0;
}
.why_choose .owl-carousel .owl-nav button.owl-next, .client_testimonials .owl-carousel .owl-nav button.owl-next {
  right: 0;
}

/* Package Details */
.package_details .package_details_card:not(:last-child) {
  margin-bottom: 60px;
}
.package_name h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.package_img img {
  border-radius: 45px 0;
}
.package_content h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 5px;
}
.package_content p {
  font-size: 18px;
  font-weight: 600;
}
.package_content .package_content_icon {
  position: relative;
  text-align: center;
  padding: 12px 0;
}
.package_content .package_content_icon img {
  width: 68px;
  margin-bottom: 6px;
}
.package_content .package_content_icon p {
  font-size: 16px;
  font-weight: 600;
}
.package_content .btn {
  margin: 0 auto;
}

/* Gallery */
.gallery_img img {
  margin-bottom: 16px;
}

/* CTA */
.cta_main {
  background-color: rgba(255, 96, 0, 0.40);
}
.cta_content {
  position: relative;
  text-align: center;
}
.cta_content h2 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.cta_content h2 span {
  display: block;
}

/* Home Client Testimonials */
.client_testimonials {
  
}
.testimonials_card {
  position: relative;
  height: 100%;
  margin-left: 16px;
  width: 100%;
  padding-bottom: 20px;
}
.testimonials_card::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -8px;
  background: var(--primary);
  height: 28px;
  width: 28px;
  transform: rotate(45deg);
}

.testimonials_card::after {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: -14px;
  padding: 8px 15px 8px 15px;
  width: 240px;
  background: var(--primary);
  color: white;
  border-radius: 14px 0;
  font-size: 16px;
  font-weight: 500;
}

.testimonials_card_content {
  position: relative;
  background-color: #FEE8DB;
  padding: 60px 20px 15px;
  height: 100%;
  border-radius: 15px;
  width: 100%;
}
.testimonials_stars {
  color: #F7D323;
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 12px;
}
.testimonials_card_content p {
  font-size: 14px;
}
.testimonials_card_content i.fa-quote-right {
  font-size: 18px;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--primary);
  color: var(--primary);
  position: absolute;
  bottom: -20px;
  left: 43%;
  z-index: 1;
}

/* Owl carausel */
.owl-carousel .owl-stage {
  display: flex;
}
.item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}

/* FAQ */
.accordion-button:focus {
  border-color: initial;
  outline: 0;
  box-shadow: none;
}
.home_faq {
  position: relative;
}
.home_faq .accordion-button, .home_faq .accordion-button:not(.collapsed) {
  font-size: 19px;
  font-weight: 100;
  line-height: 26px;
  padding-left: 36px;
  font-weight: 400;
}
.home_faq .accordion-button:not(.collapsed) {
  color: var(--black);
  background-color: var(--white) !important;
}
.home_faq .accordion-item {
  position: relative;
  background-color: var(--white);
  margin-bottom: 10px;
  border-top: 1px solid rgba(0, 0, 0, .125);
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}
.home_faq .accordion-body {
  font-size: 14px;
  padding-left: 36px;
  border-top: 1px solid rgba(0, 0, 0, .125);
}
.home_faq .accordion-body p {
  margin-bottom: 10px;
}
.home_faq .accordion-body p:last-child {
  margin-bottom: 0;
}
.home_faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%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");
}
.home_faq .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='%23000000'%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");
}
.home_faq .accordion-item::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 16px;
  background: var(--primary);
  height: 9px;
  width: 9px;
  transform: rotate(45deg);
  z-index: 100;
  border-radius: 50%;
}
.home_faq .accordion-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  background: var(--primary);
  height: 100%;
  width: 1px;
  z-index: 100;
}

/* Certified by */
.certified_by img {
  width: 154px;
}


/* Footer */
footer {
  position: relative;
  background-color: var(--dark);
}
footer .footer_top {
  padding: 80px 0 24px;
}
.footer_logo_main {
  position: relative;
  height: 100%;
  margin-bottom: 0;
  padding-right: 15%;
}
footer .footer_logo img {
  height: 113px;
  margin-bottom: 16px;
}
.footer_logo_main p {
  font-size: 16px;
  color: var(--white);
}

footer .useful_link_list {
  position: relative;
  width: 100%;
  color: var(--white);
}
footer .useful_link_list p span {
  font-weight: 600;
}
footer .useful_link_list ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}
footer .useful_link_list ul li {
  margin-bottom: 8px;
  position: relative;
}
footer .useful_link_list ul a {
  text-decoration: none;
  color: var(--white);
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
footer .useful_link_list ul a:hover {
  color: var(--primary);
}
.footer_contacts {
  margin-bottom: 16px;
}
.footer_contacts p{
  margin-bottom: 4px;
  text-align: left;
  display: flex;
}
.footer_contacts p a{
  color: var(--white) !important;
}
footer .footer_copyright {
  position: relative;
  padding: 16px 30px;
}
footer .footer_copyright p, footer .footer_copyright p a {
  font-size: 16px;
  margin: 0;
  color: var(--white);
}

/* *********************** */
/* Thank You */
/* *********************** */
.thank_you {
  background-image: url(../images/thanku/bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank_you_inn {
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Thank You */
.thanku_img {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
.thanku_img img {

}
.thanku_msg p {
  font-size: 32px;
  margin-bottom: 24px;
}

.booknow_mob {
  display: none;
}

/* Privacy Policy */
.privacy_policy_content h3 {
  font-size: 20px;
  font-weight: 600;
}
.privacy_policy_content a {
  color: var(--primary);
}

/* *********************** */
/* Responsive */
/* *********************** */
@media (max-width: 1920px) and (resolution: 120dpi){
  body {
    font-size: 14.5px;
  }
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1070px;
}
  .main_header .navbar-expand-lg .navbar-nav {
    padding: 20px 5px;
}
  .main_header .navbar-brand img, .main_header.fixed-top .navbar-brand img {
    height: 56px;
}
.main_header .navbar-expand-lg .navbar-nav li.nav-item {
  padding: 0 18px;
}
.main_header .navbar-nav .nav-link {
  font-size: 16px;
}
.btn {
  font-size: 14px;
  padding: 6px 16px;
}
.btn_sm {
  font-size: 13px;
  padding: 5px 14px;
}
.btn_lg {
  font-size: 24px;
  border-radius: 17px;
  padding-left: 36px;
  padding-right: 36px;
}
.section_padding {
  padding: 50px 0;
}
.home_banner {
  padding: 6% 0 8%;
}
.banner_text h3 {
  font-size: 27px;
}
.banner_text h1 {
  font-size: 64px;
  line-height: 68px;
}
.banner_text h2 {
  font-size: 27px;
  font-weight: 600;
}
.bannerform {
  padding: 46px 28px;
  border-radius: 32px;
  max-width: 390px;
}
.bannerform_btn .btn {
  font-size: 16px;
  font-weight: 500;
}
.bannerform h4 {
  font-size: 26px;
}
.bannerform h4 span {
  font-size: 18px;
}
.form-control, .form-select {
  font-size: 15px;
  padding: 10px 15px;
  border-radius: 12px;
}
.section_heading {
  margin-bottom: 36px;
}
.section_heading h2 {
  font-size: 26px;
}
.why_choose .section_heading {
  margin-bottom: 28px;
}
.why_choose .why_choose_card img {
  width: 70px;
  margin: 0 auto 10px;
}
.why_choose .why_choose_card h3 {
  font-size: 17px;
  margin-bottom: 2px;
}
.privacy_policy_content h3 {
  font-size: 17px;
}
.why_choose .why_choose_card p {
  font-size: 14px;
}
.package_name h2 {
  font-size: 18px;
  margin-bottom: 18px;
}
.package_content h3 {
  font-size: 17px;
  margin-bottom: 4px;
}
.package_content p {
  font-size: 15px;
}
.package_content .package_content_icon img {
  width: 58px;
  margin-bottom: 5px;
}
.package_content .package_content_icon p {
  font-size: 13px;
  line-height: 1.2;
}
.package_content .package_content_icon {
  padding: 8px 0;
}
.cta_content h2 {
  font-size: 19px;
}
.why_choose .owl-carousel, .client_testimonials .owl-carousel {
  padding: 0 36px;
}
.testimonials_card::after {
  padding: 6px 15px 7px 15px;
  font-size: 12px;
  width: 192px;
}
.testimonials_card::before {
  top: 18px;
}
.testimonials_card_content {
  padding: 50px 16px 10px;
  width: 100%;
}
.testimonials_stars {
  font-size: 10px;
}
.testimonials_card_content p {
  font-size: 12px;
}
.home_faq .accordion-button, .home_faq .accordion-button:not(.collapsed) {
  font-size: 15px;
  line-height: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 32px;
  font-weight: 400;
}
.home_faq .accordion-item::before {
  top: 15px;
}
.home_faq .accordion-item {
  margin-bottom: 8px;
}
.home_faq .accordion-body {
  font-size: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.certified_by img {
  width: 114px;
}
.footer_logo_main p {
  font-size: 13px;
}
footer .footer_logo img {
  height: 95px;
  margin-bottom: 10px;
}
footer .useful_link_list ul {
  font-size: 13px;
}
footer .footer_copyright p, footer .footer_copyright p a {
  font-size: 14px;
}
footer .footer_top {
  padding: 60px 0 0;
}
footer .useful_link_list ul li {
  margin-bottom: 4px;
  position: relative;
}
footer .useful_link_list p {
  margin-bottom: 6px;
}
.thanku_img {
  margin-bottom: 10px;
  max-width: 80%;
  margin: 0 auto 0;
}
.thanku_msg p {
  font-size: 26px;
  margin-bottom: 20px;
}






}
@media (max-width: 1440px) and (min-width:1100px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1070px;
  }
}
@media (max-width: 1440px){
  body {
    font-size: 14.5px;
  }
  .main_header .navbar-expand-lg .navbar-nav {
    padding: 20px 5px;
}
  .main_header .navbar-brand img, .main_header.fixed-top .navbar-brand img {
    height: 56px;
}
.main_header .navbar-expand-lg .navbar-nav li.nav-item {
  padding: 0 18px;
}
.main_header .navbar-nav .nav-link {
  font-size: 16px;
}
.btn {
  font-size: 14px;
  padding: 6px 16px;
}
.btn_sm {
  font-size: 13px;
  padding: 5px 14px;
}
.btn_lg {
  font-size: 24px;
  border-radius: 17px;
  padding-left: 36px;
  padding-right: 36px;
}
.section_padding {
  padding: 50px 0;
}
.home_banner {
  padding: 4% 0 7%;
}
.banner_text h3 {
  font-size: 27px;
}
.banner_text h1 {
  font-size: 64px;
  line-height: 68px;
}
.banner_text h2 {
  font-size: 27px;
  font-weight: 600;
}
.bannerform {
  padding: 36px 24px;
  border-radius: 32px;
  max-width: 390px;
}
.bannerform_btn .btn {
  font-size: 16px;
  font-weight: 500;
}
.bannerform h4 {
  font-size: 26px;
}
.bannerform h4 span {
  font-size: 18px;
}
.form-control, .form-select {
  font-size: 15px;
  padding: 10px 15px;
  border-radius: 12px;
}
.section_heading {
  margin-bottom: 36px;
}
.section_heading h2 {
  font-size: 26px;
}
.why_choose .section_heading {
  margin-bottom: 28px;
}
.why_choose .why_choose_card img {
  width: 70px;
  margin: 0 auto 10px;
}
.why_choose .why_choose_card h3 {
  font-size: 17px;
  margin-bottom: 2px;
}
.privacy_policy_content h3 {
  font-size: 17px;
}
.why_choose .why_choose_card p {
  font-size: 14px;
}
.package_name h2 {
  font-size: 18px;
  margin-bottom: 18px;
}
.package_content h3 {
  font-size: 17px;
  margin-bottom: 4px;
}
.package_content p {
  font-size: 15px;
}
.package_content .package_content_icon img {
  width: 58px;
  margin-bottom: 5px;
}
.package_content .package_content_icon p {
  font-size: 13px;
  line-height: 1.2;
}
.package_content .package_content_icon {
  padding: 8px 0;
}
.cta_content h2 {
  font-size: 19px;
}
.why_choose .owl-carousel, .client_testimonials .owl-carousel {
  padding: 0 36px;
}
.testimonials_card::after {
  padding: 6px 15px 7px 15px;
  font-size: 12px;
  width: 192px;
}
.testimonials_card::before {
  top: 18px;
}
.testimonials_card_content {
  padding: 50px 16px 10px;
  width: 100%;
}
.testimonials_card_content p {
  font-size: 12px;
}
.home_faq .accordion-button, .home_faq .accordion-button:not(.collapsed) {
  font-size: 15px;
  line-height: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 32px;
  font-weight: 400;
}
.home_faq .accordion-item::before {
  top: 15px;
}
.home_faq .accordion-item {
  margin-bottom: 8px;
}
.home_faq .accordion-body {
  font-size: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.certified_by img {
  width: 114px;
}
.footer_logo_main p {
  font-size: 13px;
}
footer .footer_logo img {
  height: 95px;
  margin-bottom: 10px;
}
footer .useful_link_list ul {
  font-size: 13px;
}
footer .footer_copyright p, footer .footer_copyright p a {
  font-size: 14px;
}
footer .footer_top {
  padding: 60px 0 0;
}
footer .useful_link_list ul li {
  margin-bottom: 4px;
  position: relative;
}
footer .useful_link_list p {
  margin-bottom: 6px;
}
.thanku_img {
  margin-bottom: 10px;
  max-width: 80%;
  margin: 0 auto 0;
}
.thanku_msg p {
  font-size: 26px;
  margin-bottom: 20px;
}



}

@media (max-width: 1366px){
  .home_banner {
    padding: 7% 0 10%;
  }
  .bannerform {
    padding: 36px 24px;
    max-width: 370px;
  }
}

@media (max-width: 1024px){
  .section_padding {
    padding: 40px 0;
}
.main_header .navbar-brand img, .main_header.fixed-top .navbar-brand img {
  height: 50px;
}
.main_header .navbar-nav .nav-link {
  font-size: 14px;
  padding: 0 4px;
}
.main_header .navbar-expand-lg .navbar-nav li.nav-item {
  padding: 0 12px;
}
.home_banner {
  padding: 5% 0 10%;
}
.banner_text h1 {
  font-size: 54px;
  line-height: 60px;
}
.banner_text h3, .banner_text h2 {
  font-size: 22px;
}
.bannerform {
  padding: 20px 20px;
  max-width: 320px;
}
.form-control, .form-select {
  font-size: 15px;
  padding: 7px 14px;
  border-radius: 10px;
}
.bannerform h4 {
  font-size: 22px;
  margin-bottom: 18px;
}
.bannerform h4 span {
  font-size: 16px;
}
.why_choose .why_choose_card h3 {
  font-size: 16px;
  margin-bottom: 2px;
}
.privacy_policy_content h3 {
  font-size: 16px;
}
.certified_by img {
  width: 104px;
}
.thanku_img {
  margin-bottom: 8px;
  max-width: 60%;
  margin: 0 auto 0;
}
.thanku_msg p {
  font-size: 22px;
  margin-bottom: 16px;
}
.btn_lg {
  font-size: 20px;
  border-radius: 14px;
}
.testimonials_stars {
  font-size: 10px;
  letter-spacing: -1px;
}
}

@media (max-width: 991px) {
.main_header .navbar-nav .nav-link {
  padding: 20px 12px;
}
.main_header .navbar-expand-lg .navbar-nav .nav-link {
  font-size: 18px;
}
.navbar-brand {
  margin-right: auto;
}
.main_header .navbar {
  padding: 6px 16px;
}
.main_header .navbar-toggler {
  color: var(--dark);
}
.banner_text {
  text-align: center;
  padding: 0 0 30px;
  width: 100%;
}
.bannerform {
  max-width: 100%;
}
.home_banner {
  padding: 8% 0 15%;
}
.package_img img {
  border-radius: 28px 0;
}
.package_content .package_content_icon img {
  width: 42px;
}
.package_content .package_content_icon {
  padding: 0;
}
.package_content .package_content_icon p {
  font-size: 12px;
}
.footer_logo_main {
  padding-right: 0;
  text-align: center;
}
footer .footer_logo img {
  height: 80px;
  margin-bottom: 10px;
}
footer .useful_link_list {
  text-align: center;
}
.footer_logo_main p, .useful_link_list {
  margin-bottom: 24px;
}
.footer_contacts p {
  text-align: center;
  display: block;
}
}

@media (max-width: 600px) {
  .section_padding {
    padding: 40px 0;
}
.main_header .navbar-brand img, .main_header.fixed-top .navbar-brand img {
  height: 36px;
}
.main_header .offcanvas-collapse {
  width: 64%;
  padding: 40px 12px 16px;
}
.main_header .navbar-nav .nav-link {
  padding: 12px 0;
  font-size: 16px;
}
.main_header .navbar-expand-lg .navbar-nav .nav-link{
  font-size: 16px;
}
.banner_text h3, .banner_text h2 {
  font-size: 19px;
}
.banner_text h1 {
  font-size: 40px;
  line-height: 46px;
}
.section_heading {
  margin-bottom: 30px;
}
.section_heading h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.package_name h2 {
  font-size: 16px;
  margin-bottom: 16px;
}
.package_img img {
  margin-bottom: 16px;
}
.package_content {
  text-align: center;
}
.package_details .package_details_card:not(:last-child) {
  margin-bottom: 42px;
}
.gallery_img img {
  margin-bottom: 12px;
}
.cta_content h2 {
  font-size: 18px;
  line-height: 1.2;
}
.cta_content h2 span {
  display: inline;
}
.certified_by img {
  width: 84px;
}
footer .footer_logo img {
  height: 68px;
}
.footer_logo_main p, .useful_link_list {
  margin-bottom: 12px;
}
footer {
  padding-bottom: 40px;
}
.testimonials_card::after {
  padding: 6px 5px 7px 15px;
  width: 174px;
}
.testimonials_card_content {
  padding: 42px 14px 10px;
}
.btn {
  padding: 5px 12px;
}
.booknow_mob {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: block;
}
.booknow_mob a {
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  padding: 11px 12px;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

body .gallery_slider_mobile {
  display:block !important;
}

body .gallery_masonry{
  display:none !important;
}

.gallery_slider_mobile .gallery_slider {
padding: 0 60px !important;
}

}

.gallery_slider_mobile .gallery_item {
  width: 100%;
}
.gallery_slider_mobile .gallery_slider img {
  width: 100% !important;
  height: 300px!important;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.gallery_slider_mobile {
  display:none !important;
}

.gallery_slider_mobile .owl-carousel .owl-nav button.owl-next, .gallery_slider_mobile .owl-carousel .owl-nav button.owl-prev {
position: absolute;
bottom: 50%;
font-size: 22px;
}
.gallery_slider_mobile .owl-carousel .owl-nav button.owl-prev {
left: 0;
}
.gallery_slider_mobile .owl-carousel .owl-nav button.owl-next {
right: 0;
}
section:target {
scroll-margin-top: 60px;
}


/*********************************************/

.bannerform .loading{
  font-size:0;
  width:30px;
  height:30px;
  margin-top:20px;
  border-radius:15px;
  padding:0;
  border:3px solid #FF6000;
  border-bottom:3px solid rgba(255,255,255,0.0);
  border-left:3px solid rgba(255,255,255,0.0);
  background-color:transparent !important;
  animation-name: rotateAnimation;
  -webkit-animation-name: wk-rotateAnimation;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes rotateAnimation {
    0%   {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
@-webkit-keyframes wk-rotateAnimation {
    0%   {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);}
}

.bannerform .fa{
  color:#FF6000;
  font-size:18px !important;
  position:absolute;
  left:50%;
  margin-top: 25px;
  margin-left:-9px;
  -webkit-transform:scaleX(0) !important;
  transform:scaleX(0) !important;
}

.bannerform .finish{
  -webkit-transform:scaleX(1) !important;
  transform:scaleX(1) !important;
}
.bannerform .hide-loading{
  opacity:0;
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
  -webkit-transform:scale(0) !important;
  transform:scale(0) !important;
}