@charset "utf-8";

/* Font Css Design */

@font-face {
  font-family: myFirstFont;
  src: url('../fonts/SoleilRegular.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: myFirstFontBold;
  src: url('../fonts/SoleilBold.otf');
}

@font-face {
  font-family: myFirstFontBook;
  src: url('../fonts/SoleilBook.otf');
}

@font-face {
  font-family: myFirstFontLight;
  src: url('../fonts/SoleilLight.otf');
}

@font-face {
  font-family: mySecondFont;
  src: url('../fonts/Regular_Brush.otf');
}


* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  background: #fff;
  overflow-x: hidden;
}

p {
  margin: 0px;
  padding: 0px;
}

h1 {
  margin: 0px;
  padding: 0px;
}

h2 {
  margin: 0px;
  padding: 0px;
}

h3 {
  margin: 0px;
  padding: 0px;
}

h4 {
  margin: 0px;
  padding: 0px;
}

h5 {
  margin: 0px;
  padding: 0px;
}

h6 {
  margin: 0px;
  padding: 0px;
}

address,
blockquote,
dd,
div,
dl,
dt,
fieldset,
form,
frame,
frameset {
  margin: 0;
  padding: 0;
  border: 0px;
  outline: none;
}

label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0px;
  padding: 0;
  outline: none;
  border: 0;
}

a {
  text-decoration: none;
  border: 0px;
  outline: none;
  transition: all .5s;
}

a img {
  border: none;
  outline: none;
}

a:focus {
  outline: none;
}

border {
  border-collapse: collapse;
}

hr {
  height: 1px;
  background: #333333;
  border: none;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  clear: both;
}

img {
  max-width: 100%;
  /* height: auto;*/
}

::-moz-selection {
  color: #fff;
  background: var(--main-clr);
}

::selection {
  color: #fff;
  background: var(--main-clr);
}

button,
input,
select,
option,
textarea {
  outline: 0 !important;
  pointer-events: all;
  font-family: inherit;
  font-size: 100%;
}





/*variables--*/

:root {
  --body-font: myFirstFont;
  --head-font: mySecondFont;
  --pdg: clamp(40px, 4.17vw, 80px);
  --mrg: clamp(20px, 2.09vw, 40px);
  --body-font-size: clamp(16px, 0.94vw, 18px);
  --btn-font-size: clamp(15px, 0.84vw, 16px);
  --h1-font: clamp(30px, 3.6vw, 69px);
  --h2-font: clamp(24px, 2.5vw, 48px);
  --h3-font: clamp(20px, 1.57vw, 30px);
  --fs-24px: clamp(18px, 1.31vw, 24px);
  --fs-16px: clamp(15px, 0.84vw, 16px);
  --fs-15px: clamp(14px, 0.94vw, 15px);
  --main-clr: #01386f;
  --main-clr-one: #ff5300;
  --main-clr-two: #a42fbc;
}

body {
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  color: #545454;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.0000001px;
}

a {
  color: var(--main-clr);
  transition: 0.2s;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--main-clr);
}

p {
  margin-bottom: clamp(15px, 1.27vw, 20px);
  line-height: 1.5
}

p:last-child {
  margin-bottom: 0;
}

li {
  line-height: 1.5
}

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

[id] {
  scroll-margin-top: 200px
}

.text_center {
  text-align: center !important;
}

.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.heading .small_head .p1_txt {
  margin: 0;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
}

.secBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--main-clr); 
}



/*headings*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: clamp(15px, 1.27vw, 20px);
  font-family: var(--head-font);
  color: #191919
}

h1,
.h1 {
  font-size: var(--h1-font);
}

h2,
.h2 {
  font-size: var(--h2-font);
}

h3,
.h3 {
  font-size: var(--h3-font);
}




.btn-main {
  padding: clamp(8px, 0.94vw, 15px) clamp(18px, 2.19vw, 36px);
  color: #fff;
  display: inline-block;
  border-radius: 500px;
  transition: 0.6s;
  z-index: 2;
  position: relative;
  background: var(--main-clr);
  overflow: hidden;
  border: 0;
  font-family: var(--body-font);
  font-weight: 500;
  text-decoration: none;
  font-size: var(--btn-font-size);
  box-shadow: 0px 9px 15px 0px rgba(0, 175, 111, 0.07);
}

.btn-main img {
  margin-right: 6px
}

.btn-main:hover {
  box-shadow: 0px 9px 15px 0px rgba(0, 175, 111, 0.07), inset 0 0 0 50px var(--main-clr2);
  color: #fff
}

.btn-flex {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.282vw, 20px)
}



/*common paddings*/
.common-padd {
  padding-top: var(--pdg);
  padding-bottom: var(--pdg);
}

.common-padd-top {
  padding-top: var(--pdg)
}

.common-padd-btm {
  padding-bottom: var(--pdg);
}

.common-padd-sm {
  padding-top: var(--mrg);
  padding-bottom: var(--mrg);
}


/*slick dots*/
.slick-dots li button:before {
  font-size: 10px;
  color: #373e46;
}

.slick-dots li button {
  padding: 0 4px
}

.slick-dots li {
  margin: 0
}


/*top button*/
.go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-clr2);
  color: #fff;
  border: 2px solid #fff;
  z-index: 99;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
  background-color: #ff5300;
}

.go-to-top:hover{
  background-color: #092966;
}

.go-to-top span {
  width: 10px;
  height: 10px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(-45deg);
  margin-top: 4px;
}

.go-to-top.show {
  opacity: 1
}


.navbar .megamenu{ padding: 1rem; }
.megamenu h4{
    font-size: 16px;
    padding-bottom: 8px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d4d4d4;
}
.megamenu ul{list-style: none;}
.megamenu ul li a{
    font-size: 14px;
    color: #575757;
    display: inline-block;
    margin-bottom: 15px;
}
.menubar .nav-link{
    padding-right: 15px !important;
    color: #000;
    font-weight: 600;
    font-size: 18px;
}



/*header*/
.header-area {
  position: fixed;
  top: 62px;
  left: 0;
  width: 100%;
  z-index: 9800;
  transition: 0.3s;
  overflow: hidden;
}
.header-area.sticky{top:0;}
.site-logo {
  transition: 0.2s;
  flex-shrink: 0;
  width: 13%;
}

.header-area.sticky .header-nav {
  background: var(--main-clr);
  padding: 5px 50px;
  box-shadow: 0px 1px 16px 0px #000000c1;
}

.header-area.sticky .navbar-area-menu {
  padding-top: 0;
}

.header-area.sticky .site-logo img {
  height: 50px;
}

.header-area.sticky .navbar-area-inr {
  align-items: center;
}

.header-nav {
  padding: 10px 50px;
  transition: 0.4s;
}

.navbar-area-inr {
  display: flex;
  justify-content: space-between;
}

.site-logo img {
  height: auto;
  width: auto;
  transition: 0.6s
}

.navbar-area-menu {
  display: flex;
  gap: clamp(23px, 2.35vw, 45px);
  padding-top: 0;
  justify-content: end;
}

.diaplay_none{
  display: none;
}


/* .site-navbar ul {margin: 0;padding: 0;list-style: none;display: flex;align-items: center;justify-content: flex-end;gap:clamp(11px, 1.38vw, 22px)}
.site-navbar ul li {position: relative;font-size:var(--fs-16px);}
.site-navbar ul li a{display:block;color:#fff}
.site-navbar > ul > li a{padding:5px 0;position:relative;}
.site-navbar > ul > li a::after{width:0%;bottom:0;left:50%;transform:translateX(-50%);height:1px;background:var(--main-clr);position:absolute;content:'';transition:0.3s}
.site-navbar > ul > li a:hover::after{width:60%;}
.site-navbar > ul > li a:hover{color:var(--main-clr);}
.site-navbar > ul > li a.active{color:var(--main-clr);font-weight: 800;}
.site-navbar ul ul{flex-direction: column;transform:translateY(100%);position: absolute;width:clamp(150px ,15.625vw ,300px);background: #fff;box-shadow:0px 3px 35px 0px rgba(0, 0, 0, 0.26);transform-origin: top;z-index: 99;transition: 0.2s;align-items: flex-start;top:100%;gap:0;opacity:0;pointer-events:none;text-align:left;text-transform:uppercase;}
.site-navbar ul ul li{width: 100%;text-transform:none;font-weight:bold}
.site-navbar ul ul a{padding:clamp(8px ,0.5208vw ,10px);width: 100%;display:block;color:#222;}
.site-navbar ul ul li a:hover{background: var(--main-clr);color: #fff;}
.site-navbar ul li>span{display: none;}
.site-navbar ul li:hover ul{transform: none;opacity:1;pointer-events:all}


.nav-toggler {border: 0;background-color: #fff0;cursor: pointer;display: none;padding: 5px;}
.nav-toggler span,.nav-toggler span:before,.nav-toggler span:after {width: 28px;height: 2px;background-color: #fff;display: block;transition: .3s;}
.nav-toggler span:before {content: '';transform: translateY(-9px);}
.nav-toggler span:after {content: '';transform: translateY(7px);}
.nav-toggler.toggler-open span {background-color: transparent;}
.nav-toggler.toggler-open span:before {transform: translateY(0px) rotate(45deg);}
.nav-toggler.toggler-open span:after {transform: translateY(-2px) rotate(-45deg);} */

.info_div {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}



.info_div .info a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 20px;
  color: #fff;
}

.info_div .info a:hover {
  color: var(--main-clr-one);
}

.info_div .info a .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 10px;
  padding: 6px;
}

.info_div .info a:hover .icon {
  background-color: var(--main-clr-one);
  border: 1px solid var(--main-clr-one);
}

.info_div .info a:hover .icon img {
  filter: brightness(0) invert(0);
}

.contact_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px 0;
  background-color: var(--main-clr-one);
  box-shadow: 3px 3px 0px 1px #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  color: #fff;
  width: fit-content;
}

.contact_btn:hover {
  background-color: var(--main-clr-two);
  border: 1px solid (--main-clr-two);
  box-shadow: 3px 3px 0px 1px #ffffff;
}

.contact_btn p {
  margin: 0;
}

.contact_btn img {
  margin-left: -20px;
  margin-top: -6px;
}





/* banner design */

.banner {
  position: relative;
  z-index: 2;
  padding: 150px 0;
  color: #fff;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1
}

.banner-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%
}

.banner-text {
  width: 550px;
  margin: 0 auto;
  border: 1px solid #ffffff69;
  padding: 20px;
  position: relative;
}

.banner .banner-text h1 {
  font-size: 100px;
  line-height: 1.1;
  margin-bottom: 10px;
  text-align: center;
  font-family: mySecondFont;
  color: #fff;
  font-weight: 100;
}

.banner .banner-text h2 {
  text-align: left;
  font-size: 40px;
  padding-left: 50px;
  font-family: mySecondFont;
  color: #ff5300;
  font-weight: 100;
}

.banner .banner-text p {
  text-align: center;
  padding: 20px 30px 0px;
}

.banner .banner-text .contact_btn1 p {
  padding: 0 !important;
}

.contact_btn1 {
  width: fit-content;
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-clr-two);
  padding: 6px 20px 0;
}

.contact_btn1:hover{
  background-color: var(--main-clr-one) !important;
}

.contact_btn1 p {
  margin: 0;
  padding: 0;
}

.go_shape1 {
  position: absolute;
  top: -5%;
  right: 8%;
  width: 36%;
  z-index: -1;
}

.banner_txt2 {
  margin-top: 40px;
  text-align: center;
}

.banner_txt2 .sub_txt {
  font-size: 20px;
}

.banner_txt2 p span {
  font-family: mySecondFont;
  font-size: 32px;
}

.banner_txt2 .d_flex_box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_txt2 .d_flex_box .item_one {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.banner_txt2 .d_flex_box .item_one p{
  text-align: left;
}

.banner_txt2 .d_flex_box .item_one:hover img {
  filter: contrast(64%) sepia(1) hue-rotate(313deg) saturate(580%);
}

.banner_txt2 .d_flex_box .item_one:hover p {
  color: var(--main-clr-one);
}

.banner_txt2 .d_flex_box .item_one img {
  margin: 0 10px;
}




/* sec Two */

.secTwo {
  position: relative;
  z-index: 2;
  padding-bottom: 150px;
  overflow: hidden;
}

.secTwo .left_div {
  padding-left: 12rem;
}

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

.heading {
  padding-bottom: 10px;
}

.heading .small_head {
  color: #ff5300;
  padding-bottom: 10px;
}

.heading .small_head p {
  margin: 0;
  padding-right: 10px;
}

.heading h3 {
  font-size: 65px;
  line-height: 65px;
  color: var(--main-clr);
  margin: 0;
  padding-bottom: 5px;
  font-weight: 400;
}

.contact_btn2 {
  background-color: var(--main-clr-two);
}

.contact_btn2:hover {
  background-color: var(--main-clr-one) !important;
}

.secSliderWrap {
  position: relative;
}

.secTwo .secSliderWrap {
  margin-right: -100px;
}

.secSliderNavWrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 6px);
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.secSliderNav {
  pointer-events: all;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #434343;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
}

.secSlider .item {
  padding: 0px 10px 0px;
}

.secImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  /* border-radius: 30px; */
}

.secNine .secImg img {
  border-radius: 30px;
}


.secImg {
  padding-bottom: 45%;
  position: relative;
  /* border: solid 1px rgb(227, 227, 227); */
  border-radius: 4px;
  overflow: hidden;
  /* box-shadow: 0px 3px 3px 0px rgba(15, 15, 15, 0.06); */
}

.secTwo .secImg {
  height: 400px;
  padding: 0;
}

.secTwo .secTwoSliderNext {
  position: absolute;
  right: 18%;
}

.secSliderNav img {
  filter: brightness(0) invert(0);
  padding: 0px;
  height: auto;
}

.secSliderNav:hover {
  background-color: #434343;
}

.secSliderNav:hover img {
  filter: contrast(64%) sepia(1) hue-rotate(313deg) saturate(580%);
}

/* overlay effect */

.overlay_div {
  position: relative;
}

.image1 {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.overlay {
  position: absolute;
  bottom: -54%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 70%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.overlay p{
  min-height: 180px;
}

.overlay_div:hover .overlay {
  height: 100%;
  bottom: 0%;
  background-color: #3939398f;
}

.overlay_div:hover .overlay .text h3 {
  color: var(--main-clr-one);
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.text h3 {
  margin: 0;
  padding-bottom: 5px;
  font-family: mySecondFont;
  color: #fff;
}

.line_img {
  width: 125px !important;
  height: 11px !important;
  position: relative !important;
  margin: 0 auto !important;
}

.inner_txt {
  font-family: myFirstFont;
  font-size: 15px;
  padding: 20px 20px 0;
}

.inner_txt .btn_Know {
  background-color: var(--main-clr);
  color: #fff;
  padding: 15px 20px;
  border-radius: 30px;
}

.inner_txt .btn_Know:hover {
  background-color: var(--main-clr-two);
}






/* sec Three */

.secThree {
  position: relative;
  padding-bottom: 30px;
  overflow: hidden;
}

.sec3Bg{
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.secThree_row{
  align-items: center;
}

.secThree .image_div {
  position: relative;
}

.secThree .image_div img {
  border-radius: 0 15px 15px 0;
  width: 70%;
  height: auto;
}

.secThree .image_div .image_two {
  position: absolute;
  right: 2%;
  bottom: -10%;
  width: 50%;
  border: 2px solid #fff;
  border-radius: 15px;
}

.secThree .list_point .list_point_one {
  display: grid;
  grid-template-columns: 18% 80%;
  align-items: center;
}

.secThree .list_point .list_point_one .icon {
  position: relative;
  margin-left: 20px;
  width: 81px;
  height: 81px;
  margin: 5px 0;
}

.secThree .list_point .list_point_one:hover .icon .icon_one {
  filter: contrast(64%) sepia(1) hue-rotate(313deg) saturate(580%);
}

.secThree .list_point .list_point_one .icon .icon_one {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.secThree .list_point p {
  font-size: 18px;
}

.secThree .list_point .list_point_one:hover p {
  color: var(--main-clr);
  font-weight: bold;
}

.secThree .right_div {
  padding-right: 10rem;
}

#lockTxt {
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  background: var(--main-clr-one);
  animation: mymove 3s infinite;
}

@keyframes mymove { 
  0% {background-color:var(--main-clr-one)} 
  25% {background-color: var(--main-clr-one)} 
  50% {background-color:var(--main-clr)} 
  75% {background-color:var(--main-clr)} 
  100% {background-color:var(--main-clr-two)} 
}




/* sec Four */

.secFour {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
}

.secFour .secFour_banner_div {
  text-align: center;
}

.secFour .secFour_banner_div h4 {
  font-size: 36px;
  font-family: myFirstFont !important;
  color: #fff;
}

.secFour .secFour_banner_div h4 span {
  color: var(--main-clr-one);
}

.secFour .secFour_banner_div .contact_btn {
  position: relative;
  margin: 0 auto;
}





/* sec Five */

.secFive {
  position: relative;
  padding-bottom: 150px;
  overflow: hidden;
}

.sec5Bg{
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.d_flex_three {
  display: flex;
  align-items: center;
  justify-content: center;
}

.secFive .sub_txt1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.secFive .sub_txt1 p {
  margin: 0;
  padding: 0 10px;
  color: var(--main-clr);
}

.secFive .sub_txt2 {
  color: var(--main-clr-one);
  font-weight: bold;
}

.secFive .sub_txt2 span {
  color: var(--main-clr);
}

.secFive .card {
  border-radius: 20px;
  box-shadow: 0 0 6px 0 #0000005f;
  background-color: #fff;
  margin: 10px 0;
}

.secFive .card .image_div {
  position: relative;
}

.secFive .card .image_div img {
  border-radius: 20px 20px 0 0;
  width:100%;
}

.secFive .card .days {
  background-color: var(--main-clr-two);
  color: #fff;
  padding: 5px 10px;
  position: absolute;
  bottom: 7%;
  right: 2%;
  border-radius: 20px;
}

.secFive .special_offer {
  position: absolute;
  top: 7%;
  left: 0%;
}

.secFive .special_offer img {
  border-radius: 0px !important;
}

.secFive .special_offer p {
  position: absolute;
  left: 20px;
  top: 7%;
  padding: 0px 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}

.secFive .title_rating {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
}

.secFive .title_rating .title h3 {
  font-family: myFirstFont;
  margin: 0;
  min-height: 60px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  font-size: 20px;
}

.secFive .title_rating .rating {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.secFive .title_rating .rating img {
  margin-right: 10px;
}

.secFive .card .d_flex_box {
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 10px;
}

.secFive .card .d_flex_box img {
  margin-right: 10px;
}

.secFive .card .d_flex_box2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.secFive .card .form-check {
  margin-right: 18px;
}

.secFive .card .area_points {
  margin-right: 10px;
  width: fit-content;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.secFive .card .area_points img {
  margin-right: 5px;
  width: 20%;
}

.secFive .card .price_div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.secFive .card .price {
  margin: 10px 0px;
}

.secFive .card .price .p1 {
  font-size: 24px;
  font-weight: bold;
  color: #ff5300;
  margin: 0;
  font-family: myFirstFont;
}

.secFive .card .price .p2 {
  font-size: 17px;
  color: #a5a5a5;
  margin: 0;
}

.secFive .card .price .p2 .span_one {
  text-decoration: line-through;
}

.secFive .card .price .p2 .span_two {
  text-decoration: none;
  color: #1fdc30;
  font-weight: bold;
}

.article1, .article2, .article3, .article4, .article5, .article6{
  display: none;
}

.article1.on, .article2.on, .article3.on, .article4.on, .article5.on, .article6.on{
  display: block;
}








/* new css */

.secFive .card .contact_btn3 {
  padding: 12px 12px 10px;
  background-color: var(--main-clr);
  font-size: 13px;
  float: right;
}

.secFive .card .contact_btn3:hover{
  background-color: var(--main-clr-two);
}

.secFive .card .contact_btn3 img{
  margin-right: 5px;
  margin-left: 5px;
}

.secFive .card:hover .title_rating .title h3 {
  color: #a42fbc;
}

.secFive .card {
  overflow: hidden;
}

.secFive .card .image_div .secFive_big_img{
  transition: 1s all ease-in-out;
}

.secFive .card:hover .image_div .secFive_big_img {
  transform: scale(1.1);
}

.secFive .card .content_div .d_flex_box .d_flex_box2 .area_points:hover img{
  filter: contrast(64%) sepia(1) hue-rotate(313deg) saturate(580%);
}






 /* sec Six */

 .secSix{
  position: relative;
  padding-top: 30px;
  overflow: hidden;
}

.secSix .secBg{
  padding: 0px 0;
}

.d_flex_three{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .secSix .heading{
  text-align: center;
}

.secSix .heading .small_head p {
  margin: 0;
  padding: 0 10px;
}

.secSix .heading h3 {
  font-size: 65px;
  color: var(--main-clr);
  margin: 0 auto;
  padding-bottom: 5px;
  text-align: center;
} */

.secSix .secSix_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 120px;
}

.secSix .secSix_con .secSix_con_box {
  width: 19%;
  position: relative;
  overflow: hidden;
  margin: 0 5px;
  margin-bottom: 10px;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con{
  position: absolute;
  bottom: 3%;
  left: 2%;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con .secSix_icon {
  position: relative;
  margin-left: 20px;
  width: 100%;
  height: auto;
  margin: 5px;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_img{
  transition: 1s all ease-in-out;
}

.secSix .secSix_con .secSix_con_box:hover .secSix_con_box_img{
  transform: scale(1.1);
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con .secSix_icon .icon_one {
  position: absolute;
  top: 43%;
  left: 45%;
  transform: translate(-50%, -50%);
  padding: 2px;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con {
  display: grid;
  grid-template-columns: 28% 70%;
  align-items: center;
  width: 100%;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con p{
  color: #fff;
  font-size: 13px;
}

.secSix .secSix_con .secSix_con_box:hover .secSix_con_box_con .secSix_icon .icon_one{
  filter: contrast(64%) sepia(21) hue-rotate(679deg) saturate(550%);
}






/* sec Seven */

.secSeven_con{
  padding: 0px 0 40px;
  overflow: hidden;
}

.secSeven_con .secSeven_box_con p span {
  color: var(--main-clr-one);
}

.secSeven_box{
  height: 164px;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con {
  display: grid;
  grid-template-columns: 30% 50% 20%;
  align-items: center;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con{
  align-items: center;
  position: relative;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con .secSeven_box_txt p{
  font-size: 30px ;
  color: #fff ;
}

.contact_btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  background-color: var(--main-clr-two);
  box-shadow: 3px 3px 0px 1px #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  color: #fff;
  width: fit-content;
}

.contact_btn2:hover {
  background-color: #373e46;
  border: 1px solid (--main-clr-two);
  box-shadow: 3px 3px 0px 1px #ffffff;
}

.contact_btn2 p{
  margin: 0;
}

.contact_btn2 img {
  margin-left: -20px;
  margin-top: -6px;
}

.mobile_view{
  display: none;
}



 /* sec Eight */

 .secEight{
  padding: 40px 0;
  position: relative;
  overflow: hidden;
 }

 .sec8Bg {
  position: absolute;
  left: 0%;
  bottom: 0%;
  z-index: -1;
}

/* .secEight .secEight_head{
  text-align: center;
 }

.secEight .heading .small_head p {
  margin: 0;
  padding: 0 10px;
} */

.secEight .secEight_con {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 80px;
}

.secEight .secEight_con .secEight_box {
  width: 20%;
  text-align: center;
  padding: 0 5px;
}

.secEight .secEight_con .secEight_box .secEight_icon{
  position: relative;
  width: 100%;
  height: auto;
  margin: 5px 0;
}

.secEight .secEight_con .secEight_box h4 {
  font-family: var(--body-font) !important;
  margin-bottom: 10px !important;
  font-size: 20px;
}

.secEight .secEight_con .secEight_box:hover h4{
  color: #01386f;
}

.secEight .secEight_con .secEight_box .secEight_icon .icon_Three{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.secEight .secEight_con .secEight_box:hover .secEight_icon .icon_Three{
  filter: contrast(64%) sepia(1) hue-rotate(313deg) saturate(580%);
}

.secEight .secEight_con .secEight_box p{
  color: #2b2b2b;
  text-shadow: 20px 20px 20px #fff;
}







/* sec Nine  */

.secNine {
  position: relative;
  background-color: #fcfeff;
}

.sec9Bgshape {
  position: absolute;
  left: 0%;
  bottom: -20%;
  z-index: 0;
}

.secNine .secImg {
  height: 300px;
  padding: 0;
  transition: all ease-in .3s;
}

.secNine .secImg:hover{
  transform: scale(0.9);
  /* filter: grayscale(0.7); */
}

.secNine .secNine_img_div{
  position: relative;
}

.secNine .secNine_img_div .inner_content_div{
  position: absolute;
  bottom: 10%;
  width: 100%;
  padding: 5px 10px;
  background: linear-gradient(to right, #fff,  #fff , #ffffff4d);
}

.secNine .secImg:hover .inner_content_div{
  background: linear-gradient(to right, #01386f,  #01386f , #01386f5d);
  color: #fff;
}

.secNine .secNine_img_div .inner_content_div p{
  margin: 0;
}

.star_img{
  height: 14px!important;
  width: 14px!important;
  position: relative!important;
}

.secNine .sml_txt{
  font-size: 12px;
  padding-top: 0px;
  padding-left: 10px;
}






/* sec Ten */

.secTen {
  position: relative;
  padding-bottom: 150px;
}

.side_img{
  position: absolute;
  top: 10%;
  right: 0%;
  width: 13%;
  height: auto;
}

.sec10Bg{
  position: absolute;
  left: 0%;
  bottom: 0%;
  z-index: -1;
}

.secTen .image_div {
  position: relative;
}

.secTen .image_div img {
  border-radius: 15px;
  width: 80%;
  margin-left: 150px;
}

.secTen .image_div .image_two {
  position: absolute;
  left: -25%;
  bottom: -10%;
  width: 53%;
  /* border: 2px solid #fff; */
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #0000003f;
}

.secTen .list_point{
  display: flex;
  align-items: flex-start;
}

.secTen .list_point .list_point_one {
  text-align: center;
  margin-right: 40px;
}

.secTen .list_point .list_point_one .icon {
  position: relative;
  margin-left: 20px;
  width: 81px;
  height: 81px;
  margin: 5px auto;
}

.secTen .list_point .list_point_one:hover .icon .icon_one {
  filter: contrast(64%) sepia(1) hue-rotate(313deg) saturate(580%);
}

.secTen .list_point .list_point_one .icon .icon_one {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px;
}

.secTen .list_point p {
  font-size: 14px;
}

.secTen .list_point .list_point_one:hover p {
  color: var(--main-clr);
  font-weight: bold;
}

.secTen .list_point p {
  font-size: 14px;
  color: #000;
  text-shadow: 0px 1px 0 #fff;
}






/* sec Eleven  */

.secEleven{
  position: relative;
  overflow: hidden;
}

.sec11_shape1{
  position: absolute;
  top: 10%;
  left: 0%;
}

.sec11_shape2{
  position: absolute;
  top: 10%;
  right: 0%;
}

.secEleven .secImg {
  height: 275px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #00000071;
}

.secEleven .secImg:hover img{
  filter: grayscale(0.5);
}

.secEleven .secNine_img_div{
  position: relative;
}

.secEleven .slick-dots li{
  margin: 0 5px;
}

.secEleven .slick-dots li button:before {
    font-size: 40px!important;
    color: var(--main-clr-one);
    border-radius: 50%;
  }

.secEleven .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--main-clr-one);
    border: 1px solid var(--main-clr);
}

.secEleven .vdo_icon{
  height: auto!important;
  width: 18px!important;
  position: relative!important;
}

.secEleven .customer{
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #fff;
}

.secEleven .customer .name{
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.secEleven .customer .vdo_btn{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--main-clr-one);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px 0 40px;
}

.secEleven .secImg:hover .customer{
  color: var(--main-clr-one);
}

.secEleven .secImg:hover .customer .vdo_btn{
  background-color: var(--main-clr-two);
}



/* sec Twelve  */

.secTwelve{
  position: relative;
  padding-top: 20px;
  padding-bottom: 200px;
  overflow: hidden;
}

.sec12Bg{
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.secTwelve .secImg {
  height: 385px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.secTwelve .secImg:hover img{
  filter: grayscale(0.5);
}

.secTwelve .secImg:hover {
  margin-top: 20px;
}

.secTwelve .secNine_img_div{
  position: relative;
}

.secEleven .slick-dots li{
  margin: 0 5px;
}

.secTwelve .slick-dots li button:before {
    font-size: 40px!important;
    color: var(--main-clr);
    border-radius: 50%;
  }

.secTwelve .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--main-clr);
    border: 1px solid var(--main-clr);
}

.secTwelve .slick-dotted.slick-slider {
  margin-bottom: 30px!important;
  width: 130%;
  margin: 0 auto;
  margin-left: -16%;
}

.secTwelve .quatation_img{
  height: auto!important;
  width: 35px!important;
  position: relative!important;
  margin-bottom: 10px;
}

.secTwelve .person_img{
  height: auto!important;
  width: 60px!important;
  position: relative!important;
  margin-right: 10px;
}

.secTwelve .customer_details{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.secTwelve .customer_details .name{
  margin: 0;
  color: var(--main-clr);
  font-weight: bold;
}




/*faq*/

/* new css */

.faq-sec {
  position: relative;
  padding: clamp(50px, 4.88vw, 0px) 0 clamp(33px, 4.07vw, 65px);
  background-color: #f9fefd;
  overflow: hidden;
}

.faq-item {
  width: 100%;
  transition: 0.3s
}

.faq-item details {
  margin-bottom: 20px!important;
  background-color: #fff!important;
  box-shadow: 0 0 6px 0 #00000047;
}

.faq-item:hover details{
  background-color: #ffeee2!important;
}

.faq-item h3 {
  font-size: 100%;
  margin-bottom: 0;
  font-weight: 600;
  font-size: var(--body-font);
  font-family: myFirstFont;
}

.faq-item:hover h3 {
  color: #a42fbc;
}

.faq-item:focus h3{
  color: #01386f;
}

.faq-item summary {
  list-style: none;
  padding: 15px 38px 15px 10px;
  position: relative;
  cursor: pointer;
  transition: 0.3s
}

.faq-item summary:before {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #000;
  border-style: solid;
  border-width: 2px 2px 0 0;
  top: 17px;
  right: 16px;
  content: '';
  transition: 0.3s;
  transform: rotate(135deg);
}

.faq-item [open] summary:before {
  transform: rotate(-45deg);
}

.faq-item [open] {
  background: #ffffff
}

.faq-item details[open] {
  border-bottom: 0;
  margin-top: -1px
}

.faq-ans {
  padding: 0px 42px 15px 15px;
  position: relative;
  animation: sweep .5s ease-in-out;
}

[open] summary~.faq-ans {
  animation: sweep .5s ease-in-out;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}




/* footer top banner design */ 

.footer_top_banner {
  position: relative;
  padding: 18px 0;
  color: #fff;
  overflow: hidden;
}

.footer_top_banner .footer_top_banner_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_top_banner .footer_top_banner_div h4 {
  font-size: 36px;
  font-family: myFirstFont !important;
  color: #fff;
  margin: 0;
}

.footer_top_banner .footer_top_banner_div h4 span {
  color: var(--main-clr-one);
}

.footer_top_banner .footer_top_banner_div .contact_btn {
  position: relative;
  margin: 0 auto;
}

.footer_top_banner  .contact_btn3{
  padding: 10px 12px;
  background-color: var(--main-clr-one);
  font-size: 13px;
  float: right;
  width: 100%!important;
}

.footer_top_banner .contact_btn3:hover{
  background-color: var(--main-clr-two);
}

.footer_top_banner  .contact_btn3 img{
  margin-right: 5px;
  margin-left: 5px;
}





/* footer design */

.site-footer {
  color: #fff;
  font-size: var(--fs-16px);
  overflow: hidden;
}

.site-footer a {
  color: #fff
}

.site-footer a:hover {
  color: var(--main-clr-one);
}

.site-footer-top {
  background: #111f29;
  padding: clamp(40px, 4.17vw, 80px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-head {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--main-clr-one);
}

.footer-head::after {
  background-color: var(--main-clr-one);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 33px;
  height: 2px;
  content: '';
}

.footer_logo {
  margin-bottom: 20px;
}

.footer-item ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.footer_p_txt {
  max-width: 70%;
}

.footer-item1 ul {
  font-size: 14px
}

.footer-item2 li:not(:last-child),
.footer-item3 li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-item1-ul {
  margin-bottom: clamp(25px, 2.61vw, 50px);
  max-width: 350px
}

.footer-item1-ul li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-form .row {
  margin: 0 -6px;
  row-gap: 12px
}

.footer-form .row>[class*=col-] {
  padding: 0 6px
}

.footer-item input {
  border: solid 1px #4c4949;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  padding: 14px 10px 14px 50px;
  color: #000;
  width: 100%;
  margin: 10px 0;
  font-size: 14px;
  height: 44px;
}

.footer-item input[type=submit]:hover{
  background-color: #ff5300;
}

.footer-item .email_div {
  position: relative;
}

.footer-item .email_div img {
  position: absolute;
  top: 40%;
  left: 30px;
  transform: translateX(-50%);
}

.footer-item input[type=submit] {
  background: var(--main-clr-two);
  border: 0;
  padding: 14px 7px;
  color: #fff;
  width: 100%;
  cursor: pointer;
}

.footer-item ::placeholder {
  color: #000;
  opacity: 1;
  text-transform: uppercase
}

.site-footer .btn-main:hover {
  color: #fff
}

.social_icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ftr_icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-right: 10px;
}

.ftr_icon:hover {
  background-color: var(--main-clr-one);
}

.ftr_icon:hover img {
  filter: brightness(0) invert(0);
}

/* footer btm design */

.site-footer-btm {
  padding: 20px 0;
  background-color: #000;
}

.site-footer-btm .left_div {
  text-align: left;
}

.site-footer-btm .right_div {
  text-align: right;
}





.sub_foot{
  text-align: center;
}







/* Popup Design start*/

#enquire_btn {
  background-color: var(--main-clr-two);
  border: 1px solid #fff;
  position: fixed;
  top: 50%;
  right: -47px;
  padding: 9px 60px 9px 20px;
  z-index: 1000;
  rotate: -90deg;
  border-radius: 4px;
}

.popup_icon {
  position: absolute;
  top: -1px;
  right: 0;
  padding: 7px 8px 6px 8px;
  background-color: #7c1b90;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.popup_icon img{
  rotate: 90deg!important;
}

#enquire_btn p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  font-family: myFirstFont;
}

#enquire_btn:hover {
  cursor: pointer;
  background-color: var(--main-clr-one);
}

#enquire_btn:hover .popup_icon{
  background-color: #ff5300;
}

/* form change - start*/

.pnr_label{
  padding-left: 10px;
}

.hide {
  display: none;
}

.pnr_input{
  margin-left: 20px;
}

/* form change - end*/

.sidepopup {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 15%;
  right: 5%;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  border-radius: 6px;
  box-shadow: 0px 3px 11px -7px rgb(0 0 0);
  font-family: myFirstFont;
}

.sidepopup .btn-main{
  box-shadow: inset 0 0 0 50px var(--main-clr);
}

.sidepopup .btn-main:hover {
  box-shadow: inset 0 0 0 50px var(--main-clr-two);
  color: #fff;
}

.sidepopup form {
  /* width: 340px !important; */
  padding: 10px 20px;
  height: auto;
}

.sidepopup .from_content {
  padding: 0 20px;
}

.sidepopup .from_content .btn-custom {
  margin: 0;
  width: 100%;
}

.sidepopup .form_heading {
  text-align: center;
  color: #000;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  padding-bottom: 10px;
}

.sidepopup p {
  font-size: 14px;
  text-align: center;
  margin: 0;
  padding-bottom: 6px;
}

.sidepopup a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidepopup a:hover {
  color: #000000;
}

.sidepopup .closebtn {
  position: absolute;
  top: -5px;
  right: 5px;
  font-size: 36px;
  margin-left: 50px;
  z-index: 100;
}

.sidepopup .form_design textarea {
  height: 50px;
}

.sidepopup .form_design :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  border: solid 1px #cfcfcf;
  border-radius: 4px;
  background-color: #fff;
  padding: 8px 12px;
  color: #909090;
  width: 100%;
  font-size: 13px;
  margin: 7px 0;
  font-family: myFirstFont;
}

.form-control,
.form-select {
  border: 1px solid #092966;
}

.sidepopup label {
  font-size: 13px;
  color: #01386f;
}

::placeholder {
  color: #909090;
}

.sidepopup .form_design input[type=submit] {
  background: var(--main-sub-clr);
  border: 0;
  padding: 14px 7px;
  color: #fff;
  width: 100%;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 10px;
}

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 66%;
  right: 19px;
  z-index: 1000;
}

.fixed_call {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-clr-one);
  padding: 8px;
  position: fixed;
  top: 71%;
  right: 19px;
  z-index: 1000;
}

.fixed_whatsapp:hover, .fixed_call:hover{
  background-color: var(--main-clr-two);
}

/* Popup Design end*/




/* sikkim start */


.sikkim .go_shape1 {
  position: absolute;
  top: -11%;
  right: 2%;
  width: 36%;
  z-index: -1;
}

.sikkim .banner .banner-text h2 {
  text-align: left;
  font-size: 40px;
  padding-left: 20px;
  font-family: mySecondFont;
  color: #ff5300;
  font-weight: 100;
}

 .sikkim .secThree .list_point p {
    font-size: 18px;
    color: #000;
    text-shadow: -1px -1px 0px #fff;
}

.sikkim .secFive .card p, .secFive .card label {
  font-size: 13px;
  min-height: 35px;
}

.sikkim .secFive .card .d_flex_box {
  display: flex;
  align-items: flex-start;
  padding: 0 10px;
  margin-bottom: 10px;
  justify-content: flex-start;
}

/* .sikkim .secTwo .left_div a .contact_btn2 {
  text-align: center !important;
  margin: 0 auto !important;
} */



.sikkim .secEight .secEight_con .secEight_box {
  width: 33%;
  text-align: center;
  padding: 0 5px;
  margin-bottom: 20px;
}

.sikkim .secEight .secEight_con {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 80px;
  flex-wrap: wrap;
}

.sikkim .contact_btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 25px;
  background-color: var(--main-clr-two);
  box-shadow: 3px 3px 0px 1px #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  color: #fff;
  width: fit-content;
}



/* sikkim end */




/* meghalaya start */

.meghalaya .banner .banner-text h2 {
  text-align: left;
  font-size: 40px;
  padding-left: 20px;
  font-family: mySecondFont;
  color: #ff5300;
  font-weight: 100;
}

.meghalaya .go_shape1 {
  position: absolute;
  top: -11%;
  right: 2%;
  width: 36%;
  z-index: -1;
}

.meghalaya .secThree .list_point p {
  font-size: 18px;
  color: #000;
  text-shadow: -1px -1px 0px #fff;
}

.meghalaya .secEight_box p{
  color: #242424;
  text-shadow: 20px 20px 20px #fff;
}

.meghalaya .secTen .list_point p {
  font-size: 14px;
  text-shadow: 20px 20px 20px #fff;
  color: #252525;
}




/* meghalaya end */

.secThree .list_point p {
  font-size: 18px;
  color: #000;
  text-shadow: -1px -1px 0px #fff;
}

.secTwo .heading img{
  padding-bottom: 4px;
}

.heading p{
  font-size: 18px;
}

.sec3_2nd_line{
  font-size: 17px;
  padding-left: 15px;
}





.footer-item4{
  padding-top: 40px;
}

.foot_address {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: center;
  justify-content: center;
}

.ftr_icon1 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-right: 10px;
}

.site-footer .foot_address:hover .ftr_icon1{
  background-color: var(--main-clr-one);
}

.site-footer .foot_address:hover .ftr_icon1 img {
  filter: brightness(0) invert(0);
}


/*media queries start*/


@media(max-width:1920px) {


  .banner {
    position: relative;
    z-index: 2;
    padding: 210px 0;
    color: #fff;
    overflow: hidden;
}

  .secTwo .left_div {
    padding-left: 15rem;
}

.secTwo {
  position: relative;
  z-index: 2;
  padding-bottom: 300px;
}

.secFour .secBg{
  z-index: 0;
}

.secFourDiv{
  z-index: 10;
}

.secFour {
  position: relative;
  padding: 56px 0;
}

.secFive .image_div .special_offer img{
  height: 30px;
  width: auto;
}

.secSix {
  position: relative;
  padding-top: 50px;
  padding-bottom: 170px;
}

.secEight {
  padding: 40px 0 110px;
  position: relative;
}

.secTen {
  position: relative;
  padding-bottom: 300px;
}

.secThree .image_div {
  position: relative;
}

.overlay p {
  min-height: 130px;
}

.overlay {
  position: absolute;
  bottom: -47%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 70%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.secFive .special_offer p {
  position: absolute;
  left: 12px;
  top: 20%;
  padding: 0px 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}

.contact_btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  background-color: var(--main-clr-two);
  box-shadow: 3px 3px 0px 1px #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  color: #fff;
  width: fit-content;
}

.secTwelve .secImg {
  height: 390px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.secFive {
  position: relative;
  padding-bottom: 250px;
  overflow: hidden;
}

.secThree {
  position: relative;
  padding-bottom: 30px;
  overflow: hidden;
}

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 64%;
  right: 19px;
  z-index: 1000;
}

.fixed_call {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-clr-one);
  padding: 8px;
  position: fixed;
  top: 69%;
  right: 19px;
  z-index: 1000;
}



/* new css */

.banner-text {
  width: 640px;
  margin: 0 auto;
  border: 1px solid #ffffff69;
  padding: 20px;
  position: relative;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con p{
  color: #fff;
  font-size: 16px;
}

#enquire_btn {
  background-color: var(--main-clr-two);
  border: 1px solid #fff;
  position: fixed;
  top: 48%;
  right: -65px;
  padding: 9px 60px 9px 20px;
  z-index: 1000;
  rotate: -90deg;
  border-radius: 4px;
}

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 61%;
  right: 1px;
  z-index: 1000;
}

.fixed_call {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-clr-one);
  padding: 8px;
  position: fixed;
  top: 66%;
  right: 1px;
  z-index: 1000;
}

.secThree .image_div {
  position: relative;
  margin-top: -100px;
}



.banner_txt2 .d_flex_box .item_one {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
}

.secFive .image_div .special_offer img {
  height: auto;
  width: 300px;
}

.meghalaya .secEleven .secImg {
  height: 290px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #00000071;
}

.sidepopup {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 100000;
  top: 27%;
  right: 5%;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  border-radius: 6px;
  box-shadow: 0px 3px 11px -7px rgb(0 0 0);
  font-family: myFirstFont;
}

.secTwelve .secImg {
  height: 400px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

}

@media(max-width:1800px) {

  .overlay p {
    min-height: 150px;
}

.overlay {
  position: absolute;
  bottom: -50%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 70%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 62%;
  right: 1px;
  z-index: 1000;
}

.fixed_call {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-clr-one);
  padding: 8px;
  position: fixed;
  top: 67%;
  right: 1px;
  z-index: 1000;
}

.sidepopup {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 100000;
  top: 24%;
  right: 5%;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  border-radius: 6px;
  box-shadow: 0px 3px 11px -7px rgb(0 0 0);
  font-family: myFirstFont;
}

}

@media(max-width:1700px) {

  .secFour {
    position: relative;
    padding: 36px 0;
}

.secSix {
  position: relative;
  padding-top: 50px;
  padding-bottom: 150px;
}

.secEight {
  padding: 40px 0 170px;
  position: relative;
}

.overlay p {
  min-height: 160px;
}

.overlay {
  position: absolute;
  bottom: -52%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 70%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

/* .fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 66%;
  right: 19px;
  z-index: 1000;
}

.fixed_call {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-clr-one);
  padding: 8px;
  position: fixed;
  top: 72%;
  right: 19px;
  z-index: 1000;
} */

.secEight {
  padding: 40px 0 120px;
  position: relative;
}

.fixed_whatsapp {
    width: 40px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1edc30;
    padding: 8px;
    position: fixed;
    top: 64%;
    right: 1px;
    z-index: 1000;
}

.fixed_call {
    width: 40px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-clr-one);
    padding: 8px;
    position: fixed;
    top: 70%;
    right: 1px;
    z-index: 1000;
}

.meghalaya .overlay p {
    min-height: 190px;
}

.meghalaya .overlay {
    position: absolute;
    bottom: -72%;
    left: 0;
    right: 0;
    background-color: transparent;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: .5s ease;
    border-radius: 15px;
    margin: 0 auto;
    text-align: center;
}

.secFive .image_div .special_offer img {
  height: auto;
  width: 260px;
}

.sidepopup {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 100000;
  top: 21%;
  right: 5%;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  border-radius: 6px;
  box-shadow: 0px 3px 11px -7px rgb(0 0 0);
  font-family: myFirstFont;
}


}

@media(max-width:1600px) {

.secTwo {
    position: relative;
    z-index: 2;
    padding-bottom: 200px;
}

  .secFour {
    position: relative;
    padding: 29px 0;
}

.secSix {
  position: relative;
  padding-top: 50px;
  padding-bottom: 100px;
}

.secEight {
  padding: 40px 0 130px;
  position: relative;
}

.overlay p {
    min-height: 190px;
}

.overlay {
    position: absolute;
    bottom: -70%;
    left: 0;
    right: 0;
    background-color: transparent;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: .5s ease;
    border-radius: 15px;
    margin: 0 auto;
    text-align: center;
}



}

@media(max-width:1500px) {

  .secFour {
    position: relative;
    padding: 35px 0;
}

.secEight {
  padding: 40px 0 90px;
  position: relative;
}

.secTen {
  position: relative;
  padding-bottom: 200px;
}

.secEleven .secImg {
  height: 270px;
}

.footer_top_banner {
  position: relative;
  padding: 17px 0;
  color: #fff;
  overflow: hidden;
}

.secFour .secFour_banner_div h4 {
  font-size: 26px;
  font-family: myFirstFont !important;
  color: #fff;
}

.secFive .title_rating .rating {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  font-size: 14px;
}

.secFive .card p{
  font-size: 12px;
}

.secFive .card label{
  font-size: 14px;
}

.secFive .card .area_points {
  margin-right: 10px;
  width: 29%;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.secFive .card .area_points img {
  margin-right: 5px;
  width: 30%;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con .secSix_icon {
  position: relative;
  margin-left: 20px;
  width: 100%;
  height: auto;
  margin: 5px 0;
}

.secSix .secSix_con .secSix_con_box {
  width: 18%;
  position: relative;
  overflow: hidden;
  margin: 0 5px;
  margin-bottom: 10px;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con {
  display: grid;
  grid-template-columns: 30% 68%;
  align-items: center;
  width: 100%;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con .secSeven_box_txt p {
  font-size: 28px;
  color: #fff;
}

.secEight {
  padding: 40px 0 40px;
  position: relative;
}

.secEight {
  padding: 40px 0 40px;
  position: relative;
}

.footer_top_banner .footer_top_banner_div h4 {
  font-size: 28px;
  font-family: myFirstFont !important;
  color: #fff;
  margin: 0;
}

.secTwelve .secImg {
  height: 410px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

/* #enquire_btn {
  background-color: var(--main-clr-two);
  border: 1px solid #fff;
  position: fixed;
  top: 48%;
  right: -47px;
  padding: 9px 60px 9px 20px;
  z-index: 1000;
  rotate: -90deg;
  border-radius: 4px;
} */

.overlay p {
  min-height: 190px;
}

.overlay {
  position: absolute;
  bottom: -70%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.fixed_call {
    width: 40px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-clr-one);
    padding: 8px;
    position: fixed;
    top: 72%;
    right: 1px;
    z-index: 1000;
}

.fixed_whatsapp {
    width: 40px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1edc30;
    padding: 8px;
    position: fixed;
    top: 66%;
    right: 1px;
    z-index: 1000;
}

.meghalaya .overlay p {
    min-height: 210px;
}

.meghalaya .overlay {
    position: absolute;
    bottom: -74%;
    left: 0;
    right: 0;
    background-color: transparent;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: .5s ease;
    border-radius: 15px;
    margin: 0 auto;
    text-align: center;
}

.secFive .image_div .special_offer img {
  height: auto;
  width: 200px;
}



.meghalaya .secEleven .secImg {
  height: 270px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #00000071;
}


/* .sidepopup {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 100000;
  top: 15%;
  right: 5%;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  border-radius: 6px;
  box-shadow: 0px 3px 11px -7px rgb(0 0 0);
  font-family: myFirstFont;
} */

  .sidepopup {
      height: auto;
      width: 0;
      position: absolute;
      z-index: 100000;
      top: 15%;
      right: 30%;
      background-color: #fff;
      overflow-x: hidden;
      transition: 0.5s;
      border-radius: 6px;
      box-shadow: 0px 3px 11px -7px rgb(0 0 0);
      font-family: myFirstFont;
  }


}

@media(max-width:1400px) {



  .banner {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    color: #fff;
    overflow: hidden;
  }

  .banner_txt2 .d_flex_box .item_one {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    text-align: left;
}

.secTwo {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}

.footer_top_banner {
  position: relative;
  padding: 14px 0;
  color: #fff;
  overflow: hidden;
}

.secTen .list_point .list_point_one {
  text-align: center;
  margin-right: 30px;
}

.secTen .list_point .list_point_one {
  text-align: center;
  margin-right: 30px;
}

.secFour {
  position: relative;
  padding: 29px 0;
}

.secFive .image_div .special_offer img {
  height: auto;
  width: 201px;
}

p{
  font-size: 14px;
}

.secEleven .secImg {
  height: 245px;
}

.secTwo .left_div {
  padding-left: 12rem;
}

.secThree .image_div {
  position: relative;
}

.secSix {
  position: relative;
  padding-top: 50px;
  padding-bottom: 0px;
}

.secTwelve .secImg {
  height: 360px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.secFive {
  position: relative;
  padding-bottom: 180px;
  overflow: hidden;
}



/* new css */

.banner-text {
  width: 550px;
  margin: 0 auto;
  border: 1px solid #ffffff69;
  padding: 20px;
  position: relative;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con p{
  color: #fff;
  font-size: 12px;
}

.fixed_call {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-clr-one);
  padding: 8px;
  position: fixed;
  top: 74%;
  right: 1px;
  z-index: 1000;
}

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 67%;
  right: 1px;
  z-index: 1000;
}

.meghalaya .secTwo {
  position: relative;
  z-index: 2;
  padding-bottom: 140px;
}

.meghalaya .secEleven .secImg {
  height: 250px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #00000071;
}

}

@media(max-width:1366px){
  .meghalaya .overlay p {
    min-height: 200px;
}

.overlay {
  position: absolute;
  bottom: -72%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 68%;
  right: 1px;
  z-index: 1000;
}

.fixed_call {
    width: 40px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-clr-one);
    padding: 8px;
    position: fixed;
    top: 75%;
    right: 1px;
    z-index: 1000;
}

.secTwelve .secImg {
  height: 380px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}


}

@media(max-width:1280px) {

  .secTwo .secImg {
    height: 350px;
    padding: 0;
}

.heading h3 {
  font-size: 50px;
  line-height: 50px;
  color: var(--main-clr);
  margin: 0;
  padding-bottom: 5px;
  font-weight: 400;
}

.secFour {
  position: relative;
  padding: 21px 0;
}


/* new css */

.secFive .card .contact_btn3 {
  padding: 12px 12px 10px;
  background-color: var(--main-clr);
  font-size: 10px;
  float: right;
}

.secFive .card .price .p1 {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-clr-one);
  margin: 0;
}

.secFive .card .price .p2 {
  font-size: 14px;
  color: #a5a5a5;
  margin: 0;
}

.secFive .card p, .secFive .card label {
  font-size: 13px;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con .secSeven_box_txt p {
  font-size: 24px;
  color: #fff;
}

.secNine .secImg {
  height: 230px;
  padding: 0;
  transition: all ease-in .3s;
}

.secTen .list_point p {
  font-size: 12px;
}

.secEleven .secImg {
  height: 225px;
}

.overlay p {
  min-height: 180px;
}

.overlay {
  position: absolute;
  bottom: -72%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

/* .fixed_call {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-clr-one);
  padding: 8px;
  position: fixed;
  top: 74%;
  right: 19px;
  z-index: 1000;
}

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 68%;
  right: 19px;
  z-index: 1000;
}

.secTwelve .secImg {
  height: 380px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
} */

.fixed_call {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-clr-one);
  padding: 8px;
  position: fixed;
  top: 75%;
  right: 1px;
  z-index: 1000;
}

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 68%;
  right: 1px;
  z-index: 1000;
}

.sikkim .secTwelve .secImg {
  height: 380px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -75%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.secFive .image_div .special_offer img {
  height: auto;
  width: 220px;
}


.sikkim .secTwelve .secImg {
  height: 380px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.sikkim .overlay p {
  min-height: 200px;
}

.sikkim .overlay {
  position: absolute;
  bottom: -75%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}



.sikkim .secSix .secSix_con .secSix_con_box .secSix_con_box_con {
  display: grid;
  grid-template-columns: 30% 69%;
  align-items: center;
  width: 100%;
}




.meghalaya .secEleven .secImg {
  height: 225px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #00000071;
}

.meghalaya .secSix .secSix_con .secSix_con_box .secSix_con_box_con {
  display: grid;
  grid-template-columns: 30% 69%;
  align-items: center;
  width: 100%;
}

.overlay p {
  min-height: 190px;
}

.overlay {
  position: absolute;
  bottom: -74%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}


.sidepopup {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 100000;
  top: 15%;
  right: 5%;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  border-radius: 6px;
  box-shadow: 0px 3px 11px -7px rgb(0 0 0);
  font-family: myFirstFont;
}

}

@media only screen and (min-width:1200px) {

  .container {
    max-width: clamp(585px, 73.13vw, 1170px)
  }

}

@media(max-width:1199px) {

  .secFour {
    position: relative;
    padding: 16px 0;
}

.secThree .list_point .list_point_one {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: center;
}

.secTwo .left_div {
  padding-left: 10rem;
}

.secThree {
  position: relative;
  padding-bottom: 50px;
  overflow: hidden;
}

.secSix {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px;
}

.secSeven_box {
  height: 160px;
}

.secEight {
  padding: 40px 0 10px;
  position: relative;
}

.secTen {
  position: relative;
  padding-bottom: 170px;
}

.secTwelve .secImg {
  height: 400px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}


.sikkim .secEleven .secImg {
  height: 235px;
}

.sikkim .secTwelve .secImg {
  height: 400px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}






.meghalaya .overlay p {
min-height: 220px;
}

.meghalaya .overlay {
position: absolute;
bottom: -80%;
left: 0;
right: 0;
background-color: transparent;
overflow: hidden;
width: 100%;
height: 100%;
transition: .5s ease;
border-radius: 15px;
margin: 0 auto;
text-align: center;
}

.meghalaya .secEleven .secImg {
height: 230px;
padding: 0;
transition: all ease-in .3s;
border-radius: 30px;
box-shadow: 0 0 6px 0 #00000071;
}

}

@media(max-width:1024px) {

  .secTwo .left_div {
    padding-left: 7rem;
}

.secTwo .secImg {
  height: 280px;
  padding: 0;
}

.overlay {
  bottom: -50%;
  height: 70%;
}

.inner_txt .btn_Know {
  background-color: var(--main-clr);
  color: #fff;
  padding: 5px 20px;
  border-radius: 30px;
}

.heading h3 {
  font-size: 40px;
  line-height: 40px;
  color: var(--main-clr);
  margin: 0;
  padding-bottom: 5px;
  font-weight: 400;
}

.secThree .list_point .list_point_one {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
}

.secFour .secFour_banner_div h4 {
  font-size: 18px;
  font-family: myFirstFont !important;
  color: #fff;
}

.secFour .secFour_banner_div .contact_btn {
  position: relative;
  margin: 0 auto;
  padding: 6px 20px 0;
  font-size: 12px;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con .secSix_icon .icon_one {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2px;
}

.secSix {
  position: relative;
  padding-top: 20px;
  padding-bottom: 0px;
}

.secEight .secEight_con {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0px;
}

.secTen {
  position: relative;
  padding-bottom: 30px;
}

.sec11_shape1 , .sec11_shape2, .sec9Bgshape{
  width: 10%;
}

.secTwelve .secImg {
  height: 320px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.footer_top_banner .footer_top_banner_div h4 {
  font-size: 20px;
  font-family: myFirstFont !important;
  color: #fff;
  margin: 0;
}

.footer_top_banner p {
  font-size: 12px;
}

.secTwelve {
  position: relative;
  padding-top: 20px;
  padding-bottom: 120px;
  overflow: hidden;
}

.contact_btn {
  padding: 6px 20px 0;
}

.contact_btn p{
  font-size: 12px;
}

.secThree .image_div .image_two {
  position: absolute;
  right: -2%;
  bottom: -30%;
  width: 70%;
  border: 2px solid #fff;
  border-radius: 15px;
}

#lockTxt {
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--main-clr-one);
  animation: mymove 3s infinite;
}

.secThree .right_div {
  padding-right: 9rem;
}

.secTen .image_div img {
  border-radius: 15px;
  width: 80%;
  margin-left: 124px;
}

.secTwelve .secImg {
  height: 460px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.inner_txt {
  font-family: myFirstFont;
  font-size: 15px;
  padding: 20px 10px 0;
}

.overlay {
  bottom: -80%;
  height: 100%;
}

.secSix .secBg {
  padding: 90px 0;
}

.secTwo .secBg {
  padding: 90px 0;
}

.secEight {
  padding: 40px 0 60px;
  position: relative;
}

.secTen {
  position: relative;
  padding-bottom: 130px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -87%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 110%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.meghalaya .overlay p {
  min-height: 210px;
}

.sikkim .overlay {
  position: absolute;
  bottom: -90%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 110%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}


.sikkim .secTwelve .secImg {
    height: 470px;
    padding: 0;
    transition: all ease-in .3s;
    border-radius: 30px;
    background-color: #f9f9f9;
    border: 1px solid #a7a7a7;
    padding: 20px;
    margin-top: 40px;
}





.meghalaya .overlay {
  position: absolute;
  bottom: -98%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 120%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.meghalaya .secTwo {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}



}

@media(max-width: 992px){

  .secTen .image_div img {
    border-radius: 15px;
    width: 80%;
    margin-left: 100px;
  }
  
  .footer_top_banner .footer_top_banner_div h4 {
    font-size: 18px;
    font-family: myFirstFont !important;
    color: #fff;
    margin: 0;
  }

  #lockTxt {
    color: #fff;
    padding: 6px 5px;
    border-radius: 20px;
    background: var(--main-clr-one);
    animation: mymove 3s infinite;
}
  
  .secThree .right_div {
    padding-right: 8rem;
  }

  .secTwo .left_div {
    padding-left: 5rem;
}

.overlay p {
  min-height: 220px;
}

.overlay {
  bottom: -100%;
  height: 120%;
}

.secTwelve .secImg {
  height: 310px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.meghalaya .secTwo .secImg {
  height: 350px;
  padding: 0;
}

.meghalaya .overlay p {
  min-height: 234px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -87%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 110%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}


.sikkim .overlay p {
  min-height: 240px;
}

.sikkim .overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 125%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}


.sikkim .secTwelve .secImg {
    height: 320px;
    padding: 0;
    transition: all ease-in .3s;
    border-radius: 30px;
    background-color: #f9f9f9;
    border: 1px solid #a7a7a7;
    padding: 20px;
    margin-top: 40px;
}




.meghalaya .overlay p {
  min-height: 210px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -90%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 120%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.secTwo .secImg {
  height: 340px;
  padding: 0;
}

}

@media(max-width:991px) {

  body.no-scroll {
    height: 100vh;
    overflow: hidden;
  }

  .nav-toggler {
    display: none;
    position: relative;
    z-index: 10;
  }

  /* .nav-toggler.toggler-open {
    position: fixed;
    top: 16px;
    right: 5px;
  }

  .navbar-area-menu {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    font-family: var(--font1);
    transform: scale(0);
    transition: 0.6s;
    opacity: 0;
    transform-origin: top right;
    height: 100vh;
    width: 100%;
    flex-direction: column;
  }

  .site-navbar>ul {
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: clamp(40px, 7.5vw, 120px) 0px clamp(20px, 2.5vw, 40px);
    width: 100%;
    transition: 0.6s;
    overflow-y: auto;
    max-height: 100vh;
    justify-content: flex-start;
  }

  .site-navbar ul li {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--head-font);
  }

  .site-navbar>ul>li:not(:last-child) {
    border-bottom: 1px solid #ffffff38;
  }

  .site-navbar ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 25px 0;
    border-bottom-width: 0
  }

  .navbar-area-menu.open {
    transform: scale(1);
    opacity: 1;
  }

  .navbar-close {
    position: absolute;
    top: clamp(10px, 1.25vw, 20px);
    right: clamp(30px, 3.75vw, 60px);
    font-family: var(--font1);
    font-size: var(--40px);
    font-weight: bold;
    cursor: pointer;
  }

  .navbar-area-menu::before {
    background: var(--main-clr2);
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 50%;
    transform: translate(50%, -50%);
    padding: 300%;
  }

  .site-navbar ul ul {
    position: static;
    background: #0000;
    box-shadow: none;
    width: auto;
    text-align: center;
    pointer-events: all;
    opacity: 1;
    transform: none;
    display: none;
    transition: 0s;
    padding-bottom: 10px;
  }

  .site-navbar ul ul a {
    display: block;
    text-transform: none;
    padding: 8px 0;
  }

  .site-navbar ul ul a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0 1px 1px 0;
    display: inline-block;
  }

  .site-navbar .li-sub-menu-wrap>a {
    display: inline-block;
    width: auto;
  }

  .site-navbar .li-sub-menu-wrap {
    padding: 0 35px
  }

  .site-navbar .li-sub-menu-wrap.open-submenu {
    background: #111;
  }

  .site-navbar .li-sub-menu-wrap::after {
    content: '\002B';
    color: #fff;
    border-width: 0 1px 1px 0;
    position: absolute;
    top: 10px;
    right: 13px;
    font-size: 140%;
    transition: 0.2s;
  }

  .site-navbar .li-sub-menu-wrap.open-submenu::after {
    transform: rotate(45deg);
  }

  .site-navbar ul ul li a:hover {
    background: #0000
  }

  .site-navbar {
    width: 100%;
  } */


  .navbar-area-inr {
    align-items: center;
  }

/* code start */

.footer_p_txt {
  max-width: 100%;
}

.info_div .info .details{
  display: none;
}

.banner_txt2 .d_flex_box .item_one p{
  font-size: 12px;
}

.secTwo .left_div {
  padding-left: 7rem;
  padding-right: 7rem;
  margin-bottom: 5rem;
}

.secTwo .secImg {
  height: 400px;
  padding: 0;
}

.overlay {
  bottom: -38%;
  height: 70%;
}

.overlay {
  bottom: -48%;
  height: 70%;
}

.secThree .image_div .image_two {
  position: absolute;
  right: 2%;
  bottom: -11%;
  width: 40%;
  border: 2px solid #fff;
  border-radius: 15px;
}

.secThree .list_point .list_point_one {
  display: grid;
  grid-template-columns: 13% 70%;
  align-items: center;
}

.secThree .right_div {
  padding: 5rem 7rem 0;
}

.secSix .secSix_con .secSix_con_box {
  width: 25%;
  position: relative;
  overflow: hidden;
  margin: 0 5px;
  margin-bottom: 10px;
}

.secEight .secEight_con {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0px;
  flex-wrap: wrap;
}

.secEight .secEight_con .secEight_box {
  width: 100%;
  text-align: center;
}

.order_one{
  order: 1;
}

.order_two{
  order: 2;
}

.secTen .right_div{
  margin-top: 5rem;
}

.secTen {
  position: relative;
  padding-bottom: 140px;
}

.footer-head{
  margin-top: 3rem;
}

.site-footer-btm .right_div, .site-footer-btm .left_div{
  text-align: center;
  padding: 5px 0;
}

.secEleven .secImg {
  height: 164px;
}

.secEleven .secImg {
  border-radius: 11px;
}

.secTwelve .secImg {
  height: 310px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con .secSeven_box_txt p {
  font-size: 20px;
  color: #fff;
}

.desktop_view{
  display: none;
}

.mobile_view {
  display: block!important;
  width: 100%;
}

.secSeven_box {
  height: 561px!important;
  border-radius: 10px;
  background-size: cover!important;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con .secSeven_box_txt p {
  font-size: 28px;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con{
  display: block;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con .secSeven_box_txt p br{
  display: none;
}

.secSeven .secSeven_con .contact_btn {
  padding: 2px 25px;
  margin: 10px auto;
}

.overlay p {
  min-height: 130px;
}

.secEight {
  padding: 40px 0 80px;
  position: relative;
}

.secTwo .secBg {
  padding: 500px 0;
}

.secTwo {
  position: relative;
  z-index: 2;
  padding-bottom: 150px;
}

.secThree {
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
}

.secSix .secBg {
  padding: 300px 0;
}

.contact_btn {
  padding: 6px 20px 0;
}



/* new css */

.secEight .secEight_con .secEight_box {
  width: 50%;
  text-align: center;
}

.secThree .image_div {
  position: relative;
  margin-left: 10px;
}

.secThree .image_div img {
  border-radius: 15px 15px;
  width: 70%;
  height: auto;
}

.wraper {
  flex-direction: column-reverse;
}

.secTen .image_div {
  position: relative;
  padding-top: 50px;
}

.secThree .image_div {
  position: relative;
  margin-left: 10px;
  padding-top: 140px;
}


.meghalaya .overlay p {
  min-height: 139px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -72%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 110%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.sikkim .overlay {
  position: absolute;
  bottom: -90%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 125%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}


.sikkim .secEleven .secImg {
    height: 170px;
}









.meghalaya .overlay {
  position: absolute;
  bottom: -84%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 120%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.meghalaya .secTwo {
  position: relative;
  z-index: 2;
  padding-bottom: 140px;
}

.meghalaya .secEleven .secImg {
  height: 171px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #00000071;
}

.meghalaya .overlay p {
  min-height: 125px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -78%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 120%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.footer-item4{
  padding-top: 0px;
}

.foot_address {
  display: grid;
  grid-template-columns: 8% 92%;
  align-items: center;
  justify-content: center;
}


}


@media(max-width: 820px) {

  .secThree .list_point .list_point_one {
    display: grid;
    grid-template-columns: 16% 70%;
    align-items: center;
}

.secFour {
  position: relative;
  padding: 8px 0;
}

.footer_top_banner {
  position: relative;
  padding: 7px 0;
  color: #fff;
  overflow: hidden;
}

.secTwo .secBg {
  padding: 630px 0;
}

.secSix .secBg {
  padding: 380px 0;
}

.secSix .secBg {
  padding: 300px 0;
}

.overlay {
  bottom: -50%;
  height: 70%;
}

.secTwelve .secImg {
  height: 360px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.secTwo .secBg {
  padding: 690px 0;
}

.sikkim .secTwelve .secImg {
  height: 370px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}



.meghalaya .secTwo .secBg {
padding: 560px 0;
}

.meghalaya .secTwo {
position: relative;
z-index: 2;
padding-bottom: 90px;
}

.meghalaya .overlay p {
min-height: 150px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -78%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 120%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

}

@media(max-width:768px) {
 
  .secFour .secFour_banner_div h4 {
    font-size: 14px;
    font-family: myFirstFont !important;
    color: #fff;
}

.banner_txt2 .d_flex_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.secThree .list_point .list_point_one {
  display: grid;
  grid-template-columns: 18% 70%;
  align-items: center;
}

.secFive .card .image_div img {
  border-radius: 20px 20px 0 0;
  width: 100%;
}

.secSix .secSix_con .secSix_con_box {
  width: 47%;
  position: relative;
  overflow: hidden;
  margin: 0 5px;
  margin-bottom: 10px;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con .secSix_icon .icon_one {
  position: absolute;
  top: 43%;
  left: 33%;
  transform: translate(-50%, -50%);
  padding: 2px;
}

.secSeven_box {
  height: 86px;
}

.secTen .image_div .image_two {
  position: absolute;
  left: -15%;
  bottom: -10%;
  width: 53%;
  /* border: 2px solid #fff; */
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #0000003f;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con {
  display: block;
}

.secSeven .secSeven_con .contact_btn {
  padding: 6px 20px 0;
}

.secSix .secSix_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.secEleven .secImg {
  height: 260px;
}

.secEleven .secImg {
  border-radius: 28px;
}

.secTwelve .secImg {
  height: 250px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.footer_top_banner .footer_top_banner_div h4 {
  font-size: 16px;
  font-family: myFirstFont !important;
  color: #fff;
  margin: 0;
}

.secTwelve .slick-dotted.slick-slider {
  margin-bottom: 30px!important;
  width: 100%;
  margin: 0 auto;
  margin-left: 0;
  margin-right: 0;
}

.footer_top_banner .secBg img {
  height: 200px;
}

.secSeven_box {
  height: 471px!important;
  border-radius: 10px;
  background-size: cover!important;
}

.overlay p {
  min-height: 150px;
}

#enquire_btn p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  font-family: myFirstFont;
  display: none;
}

.popup_icon {
  top: -1px;
  right: 0;
  background-color: #7c1b90;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

#enquire_btn {
  background-color: transparent;
  border: none;
  position: fixed;
  top: 61%;
  right: 9px;
  padding: 9px 60px 9px 20px;
  z-index: 1000;
  rotate: -90deg;
  border-radius: 4px;
}

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 63%;
  right: 19px;
  z-index: 1000;
}

.fixed_call {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-clr-one);
  padding: 8px;
  position: fixed;
  top: 70%;
  right: 19px;
  z-index: 1000;
}

.meghalaya .overlay p {
  min-height: 170px;
}



.secFive .image_div .special_offer img {
  height: auto;
  width: 220px;
}



.sikkim .secEleven .secImg {
  height: 260px;
}


.sikkim .secTwelve .secImg {
  height: 250px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}


.sikkim .secSix .secSix_con .secSix_con_box .secSix_con_box_con {
display: grid;
grid-template-columns: 22% 67%;
align-items: center;
width: 100%;
}


.sikkim .secEight .secEight_con .secEight_box {
width: 49%;
text-align: center;
padding: 0 5px;
margin-bottom: 20px;
}




.meghalaya .secTwo .secBg {
padding: 600px 0;
}

.meghalaya .secSix .secSix_con .secSix_con_box .secSix_con_box_con {
display: grid;
grid-template-columns: 17% 63%;
align-items: center;
width: 100%;
}

.meghalaya .secSix .secBg {
padding: 1100px 0;
}

.meghalaya .secEleven .secImg {
height: 350px;
padding: 0;
transition: all ease-in .3s;
border-radius: 30px;
box-shadow: 0 0 6px 0 #00000071;
}

.meghalaya .overlay p {
min-height: 180px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -81%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 120%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.secTwelve .secImg {
  height: 340px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}



}



@media(max-width: 767px){
  .sikkim .secSix .secSix_con .secSix_con_box .secSix_con_box_con {
    display: grid;
    grid-template-columns: 29% 68%;
    align-items: center;
    width: 100%;
}

.meghalaya .secSix .secBg {
  padding: 950px 0;
}

.meghalaya .secEleven .secImg {
  height: 252px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #00000071;
}

}

@media(max-width: 600px) {

  .banner-text {
    width: auto;
    margin: 0 auto;
    border: 1px solid #ffffff69;
    padding: 20px;
    position: relative;
}

.secTwo .secImg {
  height: 300px;
  padding: 0;
}

.secTwo .secImg {
  height: 300px;
  padding: 0;
}

.secThree .list_point .list_point_one {
  display: grid;
  grid-template-columns: 26% 70%;
  align-items: center;
}

.secTwelve .secImg {
  height: 320px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.header-nav {
  padding: 10px 10px;
  transition: 0.4s;
}

.overlay p {
  min-height: 220px;
}

.overlay {
  bottom: -90%;
  height: 115%;
}

.secTwelve .secImg {
  height: 280px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.header-area.sticky .site-logo img {
  height: auto;
}

.meghalaya .overlay p {
  min-height: 210px;
}

.sikkim .overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 125%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}


.sikkim .secTwelve .secImg {
    height: 260px;
    padding: 0;
    transition: all ease-in .3s;
    border-radius: 30px;
    background-color: #f9f9f9;
    border: 1px solid #a7a7a7;
    padding: 20px;
    margin-top: 40px;
}



.meghalaya .overlay p {
  min-height: 220px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -91%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 120%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}

.heading p {
  font-size: 16px;
}

.secTwelve .secImg {
  height: 400px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

}

@media(max-width:576px) {


  .overlay {
    bottom: -44%;
    height: 70%;
}

.secThree .list_point .list_point_one {
  display: grid;
  grid-template-columns: 20% 70%;
  align-items: center;
}

.secThree .right_div {
  padding: 0rem 2rem 93px;
}

  .site-footer-top-inr {
    flex-direction: column;
    gap: 13px;
  }

  .site-footer-navbar ul {
    flex-wrap: wrap;
    gap: 0px 20px;
    justify-content: center;
  }

  .site-footer-btm-inr {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .site-footer-developed {
    padding-right: 0;
  }

  .secTwelve .slick-dotted.slick-slider {
    margin-bottom: 30px!important;
    width: 130%;
    margin: 0 auto;
    margin-left: 0;
    margin-right: -16%;
}

.secTwelve .slick-dots {
  position: absolute;
  bottom: -25px;
  left: 0;
  display: block;
  width: 80%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.footer_top_banner .secBg img{
  height: 200px;
}

.banner-text {
  width: auto;
  margin: 0 auto;
  border: 1px solid #ffffff69;
  padding: 20px 10px;
  position: relative;
}

.secTwo .left_div {
  padding-left: 3rem;
  padding-right: 3rem;
  margin-bottom: 5rem;
}

.footer_top_banner {
  position: relative;
  padding: 17px 0;
  color: #fff;
  overflow: hidden;
}

.secTen .image_div .image_two {
  position: absolute;
  left: -18%;
  bottom: -10%;
  width: 53%;
  /* border: 2px solid #fff; */
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #0000003f;
}

.header-area.sticky .header-nav {
  background: var(--main-clr);
  padding: 10px 20px;
  box-shadow: 0px 1px 16px 0px #000000c1;
}

.overlay p {
  min-height: 160px;
}

.overlay {
  bottom: -74%;
  height: 100%;
}

.secThree .image_div {
  position: relative;
  margin-left: 10px;
  padding-top: 50px;
}


.sikkim .secEleven .secImg {
  height: 280px;
}






.meghalaya .overlay p {
min-height: 160px;
}

.meghalaya .overlay {
position: absolute;
bottom: -82%;
left: 0;
right: 0;
background-color: transparent;
overflow: hidden;
width: 100%;
height: 120%;
transition: .5s ease;
border-radius: 15px;
margin: 0 auto;
text-align: center;
}


.secTwelve .secImg {
  height: 340px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

}

@media(max-width: 480px) {

 



  .banner .banner-text h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: center;
    font-family: mySecondFont;
    color: #fff;
}

.secTwo .secSliderWrap {
  margin-right: 0;
}

.secTwo .secTwoSliderNext {
  position: absolute;
  right: 5%;
}

.secTwo .secTwoSliderPrev {
  position: absolute;
  left: 5%;
}

.secTwo .secImg {
  height: 450px;
  padding: 0;
}


.secThree .list_point .list_point_one {
  display: grid;
  grid-template-columns: 26% 70%;
  align-items: center;
}

.secEight .secEight_con .secEight_box {
  width: 50%;
  text-align: center;
}

.secEight .secEight_con .secEight_box {
  width: 100%;
  text-align: center;
}

.secTen .image_div img {
  border-radius: 15px;
  width: 80%;
  margin-left: 60px;
}

.secTen .list_point {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.secTen .list_point .list_point_one {
  text-align: center;
  margin-right: 0px;
  width: 45%!important;
}

.secTen .list_point p br{
  display: none;
}

.secTwelve .slick-dotted.slick-slider {
  margin-bottom: 30px!important;
  width: 100%;
  margin: 0 auto;
  margin-left: 0;
  margin-right: 0;
}

.secTwelve .slick-dots {
  position: absolute;
  bottom: -25px;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.secTwelve .secImg {
  height: 240px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.footer_top_banner .footer_top_banner_div {
  display: block;
  align-items: center;
  justify-content: space-between;
}

.footer_top_banner .contact_btn3 {
  padding: 10px 12px;
  background-color: var(--main-clr-one);
  font-size: 13px;
  float: none;
  width: fit-content!important;
  margin-top: 40px;
}

.footer_top_banner_div div{
  margin-bottom: 20px;
  text-align: center;
}

.secFour .secBg img {
  height: 150px;
}

.secEleven .secImg {
  height: 189px;
}

.secFour .secBg img {
  height: 200px;
}

.info_div .info a .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 0px;
  padding: 6px;
}

.info_div .info a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 5px;
  color: #fff;
}

.header_line{
  display: none;
}

.site-logo {
  transition: 0.2s;
  flex-shrink: 0;
  width: 30%;
}

.secSix .secSix_con .secSix_con_box .secSix_con_box_con .secSix_icon .icon_one {
  position: absolute;
  top: 43%;
  left: 45%;
  transform: translate(-50%, -50%);
  padding: 2px;
}

/* .secSeven .secSeven_con .secSeven_box .secSeven_box_con .secSeven_box_txt p {
  font-size: 18px;
  color: #fff;
  padding: 20px;
  text-align: center;
} */

.secThree .list_point p {
  font-size: 13px;
}

.secFour {
  position: relative;
  padding: 55px 0;
}

.contact_btn p {
  font-size: 11px;
}

.banner_txt2 .d_flex_box .item_one {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 10px;
  text-align: left;
  width: 35%;
}

.contact_btn {
  padding: 6px 15px 0;
}

.heading h3 {
  font-size: 30px;
  line-height: 40px;
  color: var(--main-clr);
  margin: 0;
  padding-bottom: 5px;
  font-weight: 400;
}

.secFour {
  position: relative;
  padding: 30px 0;
}

.secFour .secFour_banner_div h4 {
  font-size: 14px;
  font-family: myFirstFont !important;
  color: #fff;
}

.secFour .secFour_banner_div h4 br {
  display: none;
}

.banner_txt2 .d_flex_box .item_one img {
  margin: 0 10px;
  width: 20%;
}

.secSeven_box {
  height: 366px!important;
  border-radius: 10px;
  background-size: cover!important;
}

.overlay p {
  min-height: 130px;
}



.secTwo .secBg {
  padding: 830px 0;
}

.secSix .secBg {
  padding: 970px 0;
}

/* .secTwelve .secImg {
  height: 290px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
} */



/* new css */

.contact_btn p {
  font-size: 12px;
}

.info_div {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: -5px;
}

.secEight .secEight_con .secEight_box {
  width: 50%;
  text-align: center;
}

.fixed_call {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-clr-one);
  padding: 8px;
  position: fixed;
  top: 77%;
  right: 11px;
  z-index: 1000;
}

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1edc30;
  padding: 8px;
  position: fixed;
  top: 70%;
  right: 11px;
  z-index: 1000;
}

#enquire_btn {
  background-color: transparent;
  border: none;
  position: fixed;
  top: 68%;
  right: 1px;
  padding: 9px 60px 9px 20px;
  z-index: 1000;
  rotate: -90deg;
  border-radius: 4px;
}

.secTwo .left_div {
  padding-left: 2rem;
  padding-right: 3rem;
  margin-bottom: 2rem;
}

.secTwo .secBg {
  padding: 610px 0;
}

.secThree {
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
  margin-top: -60px;
}

.secFour {
  position: relative;
  padding: 15px 0;
}

.secFive {
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

.secEight {
  padding: 10px 0 30px;
  position: relative;
}

.secNine {
  position: relative;
  background-color: #fcfeff;
  overflow: hidden;
  padding-top: 20px;
}

.sec9Bgshape {
  position: absolute;
  left: 0%;
  bottom: 10%;
  z-index: 0;
}

.secTen {
  position: relative;
  padding-bottom: 140px;
  margin-top: -60px;
}

.secTen {
  position: relative;
  padding-bottom: 110px;
  margin-top: -60px;
}

.secTen .list_point p {
  font-size: 12px;
  color: #01386f;
}

.secTwelve {
  position: relative;
  padding-top: 20px;
  padding-bottom: 80px;
  overflow: hidden;
}



/* new code */

.secTwo .slick-slider{
  width: 150%;
} 

.secTwo .secImg {
  height: 320px;
  padding: 0;
}

.overlay {
  bottom: -67%;
  height: 97%;
}

.secNine .slick-slider{
  width: 150%;
}

.secNine .secImg {
  border-radius: 24px;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con .secSeven_box_txt p {
  font-size: 25px;
  color: #fff;
  padding: 10px 20px 0;
  text-align: center;
}

.mobile_view {
  display: block!important;
  width: 100%;
  position: absolute;
  bottom: -90%;
  z-index: 0;
}

.secSeven_box {
  height: 336px!important;
  border-radius: 10px;
  background-size: cover!important;
}

.secSeven_box .contact_btn p {
  font-size: 15px!important;
  z-index: 5;
}

.secNine {
  position: relative;
  background-color: #fcfeff;
  overflow: hidden;
}

.secTwelve .slick-dotted.slick-slider {
  margin-bottom: 30px!important;
  width: 220%;
  margin: 0 auto;
  margin-left: -60%;
}

.secTwelve .secImg {
  height: 430px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

#lockTxt {
  font-size: 12px;
}

.sikkim .secEleven .secImg {
  height: 230px;
}



.sikkim .secTwelve .secImg {
  height: 410px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}




.sikkim .secEight .secEight_con .secEight_box {
width: 100%;
text-align: center;
padding: 0 5px;
margin-bottom: 20px;
}









.meghalaya .secTen .image_div .image_two {
position: absolute;
left: -13%;
bottom: -10%;
width: 53%;
/* border: 2px solid #fff; */
border-radius: 30px;
box-shadow: 0 0 6px 0 #0000003f;
}

.meghalaya .secEleven .secImg {
height: 222px;
padding: 0;
transition: all ease-in .3s;
border-radius: 30px;
box-shadow: 0 0 6px 0 #00000071;
}

.meghalaya .secTwelve .secImg {
height: 340px;
padding: 0;
transition: all ease-in .3s;
border-radius: 30px;
background-color: #f9f9f9;
border: 1px solid #a7a7a7;
padding: 20px;
margin-top: 40px;
}



.meghalaya .overlay p {
min-height: 160px;
}

.meghalaya .overlay {
position: absolute;
bottom: -82%;
left: 0;
right: 0;
background-color: transparent;
overflow: hidden;
width: 100%;
height: 120%;
transition: .5s ease;
border-radius: 15px;
margin: 0 auto;
text-align: center;
}

.meghalaya .secTwo .secBg {
padding: 580px 0;
}

.foot_address {
  display: grid;
  grid-template-columns: 10% 90%;
  align-items: center;
  justify-content: center;
}


}


@media(max-width:393px) {

  .secEleven .secImg {
    height: 178px;
}

.secEleven .secImg {
  border-radius: 15px;
}

.secThree .list_point .list_point_one {
  display: grid;
  grid-template-columns: 28% 70%;
  align-items: center;
}

p {
  font-size: 13px;
}

.secThree .list_point .list_point_one {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
}

.banner_txt2 .d_flex_box .item_one {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 7px;
  text-align: left;
}

.secSeven_box {
  height: 355px!important;
  border-radius: 10px;
  background-size: cover!important;
}

.secTwo .secBg {
  padding: 870px 0;
}

.secSix .secBg {
  padding: 830px 0;
}

/* .secTwelve .secImg {
  height: 310px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
} */



/* new css */

.go_shape1 {
  position: absolute;
  top: -8%;
  right: 8%;
  width: 36%;
  z-index: -1;
}

.secTwo .left_div {
  padding-left: 2rem;
  padding-right: 3rem;
  margin-bottom: 2rem;
}

.secTwo .secBg {
  padding: 610px 0;
}

.secThree {
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
  margin-top: -60px;
}

.secFour {
  position: relative;
  padding: 15px 0;
}

.secFive {
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

.secEight {
  padding: 10px 0 30px;
  position: relative;
}

.secNine {
  position: relative;
  background-color: #fcfeff;
  overflow: hidden;
  padding-top: 20px;
}

.sec9Bgshape {
  position: absolute;
  left: 0%;
  bottom: 10%;
  z-index: 0;
}

.secTen {
  position: relative;
  padding-bottom: 140px;
  margin-top: -60px;
}

.secTen {
  position: relative;
  padding-bottom: 110px;
  margin-top: -60px;
}

.secTen .list_point p {
  font-size: 12px;
  color: #01386f;
}

.secTwelve {
  position: relative;
  padding-top: 20px;
  padding-bottom: 80px;
  overflow: hidden;
}

.mobile_view {
  display: block!important;
  width: 100%;
  position: absolute;
  bottom: -60%;
  z-index: 0;
}

.sikkim .mobile_view {
  display: block!important;
  width: 100%;
  position: absolute;
  bottom: -100%;
  z-index: 0;
}


.sikkim .mobile_view {
  display: block!important;
  width: 100%;
  position: absolute;
  bottom: -100%;
  z-index: 0;
}


.sikkim .secEleven .secImg {
    height: 180px;
}




.meghalaya .mobile_view {
  display: block!important;
  width: 100%;
  position: absolute;
  bottom: -90%;
  z-index: 0;
}

.meghalaya .secEleven .secImg {
  height: 179px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #00000071;
}

.meghalaya .secTwelve .secImg {
  height: 360px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}

.meghalaya .overlay p {
  min-height: 160px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -82%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 120%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}


}



@media(max-width:376px) {


  .secSeven_box {
    height: 306px!important;
    border-radius: 10px;
    background-size: cover!important;
}

#lockTxt {
  color: #fff;
  padding: 6px 2px;
  border-radius: 20px;
  background: var(--main-clr-one);
  animation: mymove 3s infinite;
  font-size: 12px;
}

.secSeven .secSeven_con .secSeven_box .secSeven_box_con .secSeven_box_txt p {
  font-size: 22px;
  color: #fff;
  padding: 10px 20px 0;
  text-align: center;
}

.mobile_view {
  display: block!important;
  width: 100%;
  position: absolute;
  bottom: -66%;
}

.sikkim .mobile_view {
  display: block!important;
  width: 100%;
  position: absolute;
  bottom: -90%;
  z-index: 0;
}


.sikkim .mobile_view {
  display: block!important;
  width: 100%;
  position: absolute;
  bottom: -90%;
  z-index: 0;
}


.sikkim .secEleven .secImg {
    height: 170px;
}







.meghalaya .secEleven .secImg {
  height: 170px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  box-shadow: 0 0 6px 0 #00000071;
}

.meghalaya .overlay p {
  min-height: 130px;
}

.meghalaya .overlay {
  position: absolute;
  bottom: -78%;
  left: 0;
  right: 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  height: 120%;
  transition: .5s ease;
  border-radius: 15px;
  margin: 0 auto;
  text-align: center;
}






}

@media(max-width:360px) {

  p {
    font-size: 11px;
}

.secSeven_box {
  height: 318px!important;
  border-radius: 10px;
  background-size: cover!important;
}

#lockTxt {
  color: #fff;
  padding: 6px 5px;
  border-radius: 20px;
  background: var(--main-clr-one);
  animation: mymove 3s infinite;
  font-size: 10px;
}

.secTwelve .secImg {
  height: 350px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}


/* new css */

.contact_btn {
  padding: 6px 10px 0;
}

.info_div {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: -12px;
}



.sikkim .secEleven .secImg {
  height: 165px;
}


.sikkim .secTwelve .secImg {
  height: 370px;
  padding: 0;
  transition: all ease-in .3s;
  border-radius: 30px;
  background-color: #f9f9f9;
  border: 1px solid #a7a7a7;
  padding: 20px;
  margin-top: 40px;
}





.meghalaya .secEleven .secImg {
height: 163px;
padding: 0;
transition: all ease-in .3s;
border-radius: 30px;
box-shadow: 0 0 6px 0 #00000071;
}

.meghalaya .overlay p {
min-height: 120px;
}

.meghalaya .overlay {
position: absolute;
bottom: -75%;
left: 0;
right: 0;
background-color: transparent;
overflow: hidden;
width: 100%;
height: 120%;
transition: .5s ease;
border-radius: 15px;
margin: 0 auto;
text-align: center;
}

.heading p {
  font-size: 14px;
}

.foot_address {
  display: grid;
  grid-template-columns: 12% 88%;
  align-items: center;
  justify-content: center;
}


}







/*package2*/
        
        .package-box2 {
            box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.3);
             padding: 0px 5px;
            margin-bottom: 20px;
        }
        
        .package-box2 i {
            color: #a03734;
            text-shadow: 1px 1px 4px #000;
           
        }
        
        .destination2 {
            padding: 10px 0px;
            border-bottom: 2px dotted #ccc;
        }
        
        .time2 h4,
        p {
            margin: 0px!important;
           
        }
        
        .sightseeing2 {
            padding: 10px 0px;
            border-bottom: 2px dotted #ccc;
        }
        
        .sightseeing2 ul {
            text-align: center;
        }
        
        .sightseeing2 ul li {
            display: inline-block;
            text-align: center;
            padding: 0px 15px;
        }
        
        .sightseeing2 ul li span {
            display: block;
            font-size: 12px;
        }
        
        .price2 {
            padding: 10px 0px;
            border-bottom: 2px dotted #ccc;
        }
        
        .price2 .call p {
            font-size: 14px;
            font-weight: 600;
        }
        
        .button-group2 {
            padding: 10px 0px;
        }
        
        .mm {
            background-color: #fff;
        }
        
        .from_left_and_right {
            position: relative;
            margin: 10px
        }
        
        .from_left_and_right .figcaption {
            position: absolute;
            bottom: 0px;
            width: 100%;
            color: #fff;
            text-align: center;
            background-color: darkorange;
            padding: 10px
        }
        /*package2*/
.realtd{
    text-align: center;
    padding: 50px;
}

 .icon-section ul li i{
}
 .itenry-section .img-wrap{
     width: 50%;
     position: relative;
}
 .itenry-section .img-wrap .pkgimg{
     width: 100%;
     height: 232px;
}
 .itenry-section .img-wrap .pkg-name{
     background: #06060696;
     text-align: center;
     color: #fff;
     padding: 5px 0px;
     position: absolute;
     bottom: 0;
     width: 100%;
}
 .itenry-section .img-wrap .pkg-name p{
     color: #fff;
     text-align: center;
}
 .itenry-section .img-wrap .pkg-name span{
}
 .itenry-section .img-wrap .pkg-name span i{
}
 .itenry-section .contant-wrap{
     width: 50%;
     padding: 10px;
}
.pry{
    background-color: #00abc9;
    border-color: #00abc9;
}
 .itenry-section .contant-wrap h3{
     margin: 0;
     font-size: 18px;
     color: #00abc9;
}
 .itenry-section .contant-wrap ul{
     margin-top: 20px;
}
 .itenry-section .contant-wrap ul li{
     font-size: 11px;
     line-height: 25px;
     letter-spacing: 0px;
}
 .itenry-section .contant-wrap ul li i{
}
 .itenry-section .contant-wrap .iconimg{
     width: 100%;
     margin-top: 10px;
}
 .book-now p{
     text-align: center;
     color: #fff;
     font-size: 15px;
}
 .book-now a{
     display: block;
     border: 1px solid #fff;
     margin: 25px 0px 0px 0px;
     padding: 10px;
     text-align: center;
     color: #fff;
     text-decoration: none;
     transition: all 0.5s ease;
     border-radius: 50px;
     transition: 1s;
}
 .book-now a:hover{
     background: #00abc9;
     color: #fff;
     box-shadow: 5px 5px 10px 2px #000;
     transition: 1s;
}
 .panel-primary{
     border-color: #00abc9 !important;
     border-radius: 5px !important;
     border: 5px solid #00abc9 !important;
}
 .panel-primary>.panel-heading{
     text-align: center;
     background: #00abc9 !important;
     border-radius: 0 !important;
}
 .panel-primary>.panel-heading h4{
     margin: 0;
}
 .panel-primary .panel-body{
     padding: 10px;
}
 .form1 .colums{
     padding-right: 5px !important;
     padding-left: 5px !important;
}
 .form1 .form-control{
     padding: 6px 2px;
     border-radius: 0;
     margin-bottom: 10px;
     width:100%;
}
 .form1 .form-control::placeholder{
     color: #555;
}
.t-pack{
    
    padding: 0;
}
 .t-pack li{
     text-align: center;
     padding: 10px 0px;
}
 .t-pack li a{
     text-decoration: none;
}
 .t-pack li a:hover{
     text-decoration: none;
}
 .t-pack li:not(:last-child){
     border-bottom: 1px solid #00000045;
}
.btn-warning {
    color: #fff !important;
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn-danger {
    color: #fff !important;
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-group > .btn:first-child {
    margin-left: 0;
}
.btn-group-justified > .btn, .btn-group-justified > .btn-group {
    display: table-cell;
    float: none;
    width: 1%;
}
.btn-group > .btn, .btn-group-vertical > .btn {
    position: relative;
    /*float: left;*/
}
.bannerbread{
    background-image:url(../../my-img/ddd.webp);
    height:300px;
    margin-bottom:50px;
    background-size:cover;
    position:relative;
}
.breadcontent{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:10px 15px;
}
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
  color:#fff;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: #fff;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #fff;
  text-decoration: underline;
}
.panel-primary.pan{margin-bottom:20px;}
.text-center{text-align:Center;}