.cstm-height-card .card-img-top {
    height: 100px;
    object-fit: cover;
}

#card1 {
    margin-top: 50px;
}

.img1 {
    margin-top: 50px;
}

@charset "utf-8";
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* CSS Document */

@font-face {
    src: url(../fonts/Atelier%20Omega.ttf);
    font-family: AtelierOmega;
}

a,
a:hover {
    text-decoration: none;
}

.container-fluid {
    max-width: 1920px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'AtelierOmega';
    line-height: normal;
}

li,
p {
    font-family: 'Muli', sans-serif;
    margin-bottom: 0;
}

.oth-font {
    font-family: 'Muli', sans-serif;
    font-size: 20px;
}

html {
    overflow-x: hidden;
}

body {
    font-size: 16px;
    background-color: #fff;
}

:focus,
button:focus {
    outline: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/* --- Text Color --- */

.light-text-color {
    color: #fff;
}

.medium-text-color {
    color: #06456f;
}

.semi-medium-text-color {
    color: #33cea5;
}

.dark-text-color {
    color: #333;
}


/* --- Background Color --- */

.light-background-color {
    background-color: #ffffff;
}

.medium-background-color {
    background-color: #f7f5ec;
}

.dark-background-color {
    background-color: #8E79E8;
}


/* --- Golobal CSS --- */

section {
    padding: 5px 0;
}

.cover-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

section .bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

img {
    width: 100%;
    display: block;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.container-fluid .row>div {
    padding: 0;
}


/* - Custom Button - */

.custom-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 0;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.custom-btn:hover {
    text-decoration: none;
}

.dark-btn {
    background-color: transparent;
    color: #444;
    border-bottom: 2px solid #444;
}

.dark-btn:hover {
    color: #0da63c;
    background-color: #fff;
    border-bottom: 2px solid #0da63c;
}


/* - Link Color - */

.link-color {
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.link-color:hover {
    color: #222;
    text-decoration: none;
}


/* - List Styling - */

ul.lists li {
    list-style: none;
    font-weight: 500;
    padding: 3px 0px 3px 22px;
    display: inline-block;
    width: 100%;
    background: url(http://ecomappraisals.wpengine.com/wp-content/uploads/2018/03/check.png);
    background-repeat: no-repeat;
    background-position: left 10px;
}


/* --- Header --- */

#myheader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#myheader>div {
    padding: 0;
}

#myheader.sticky {
    position: fixed;
    top: -56px;
    width: 100%;
}

#myheader .top-bar {
    background-color: #3285aa;
    border-bottom: 1px solid #fff;
}

.top-bar {
    padding: 12px 0;
}

.top-bar p {
    color: #fff;
    font-size: 16px;
    padding: 3px 0;
    margin-bottom: 0;
}

.top-bar ul.top-social {
    list-style: none;
}

.top-bar ul.top-social li {
    display: inline-block;
    margin: 0 4px;
}

.top-bar ul.top-social li a {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

.top-bar ul.top-social li i {
    color: #fff;
}

#myheader .navbar {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#myheader.sticky .navbar {
    background-color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    color: #666;
    font-size: 12px;
    font-weight: 700;
}

.sticky .navbar-light .navbar-nav .nav-link {
    color: #666;
}

.sticky .navbar-light .navbar-nav .nav-link:hover,
.sticky .navbar-light .navbar-nav .nav-link:active,
.sticky .navbar-light .navbar-nav .nav-link:focus,
.sticky .navbar-light .navbar-nav .active .nav-link {
    color: #000;
}


/* For mobile nav */

#myheader .navbar.mob-nav {
    background-color: rgba(255, 255, 255, .85);
    -webkit-box-shadow: 0 0 10px 15px rgba(0, 0, 0, .06);
    box-shadow: 0 0 10px 15px rgba(0, 0, 0, .06);
}

#myheader .navbar.mob-nav .navbar-nav,
#myheader .navbar.mob-nav .navbar-nav li {
    width: 100% !important;
    text-align: center;
}

#myheader .navbar.mob-nav .navbar-nav li a {
    color: #333;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#myheader .navbar.mob-nav .navbar-nav li a:hover {
    background-color: #0da63c;
    color: #fff;
}

.navbar .navbar-brand img {
    width: 30%;
}

.navbar .navbar-toggler {
    background-color: #666;
    border: 0px;
    border-radius: 2px;
}

#myheader .navbar.mob-nav #myheader.sticky .navbar {
    background-color: #fff;
}

.navbar-nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 80%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
}

.navbar-nav a {
    font-weight: 800;
    text-transform: uppercase;
}

.navbar-nav .navbar-brand {
    margin-right: 0;
}

#myheader.sticky .navbar-nav .navbar-brand img {
    width: 30%;
}

.navbar-nav .navbar-brand img {
    width: 80%;
    display: block;
    margin: 0 auto;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}


/* --- Footer --- */

#mountain {
    background-image: url(../images/mountain.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    height: 400px;
}

#myfooter {
    background-image: url(../images/footer-bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding-top: 15%;
    margin-top: 100px;
}

#myfooter h6 {
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 0;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

#myfooter h6::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #999;
}

#myfooter h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: #000;
    z-index: 9;
}

#myfooter ul.footer-link {
    padding: 0 20px;
    margin: 0 0 20px 0;
}

#myfooter ul.footer-link li {
    list-style: none;
    margin: 3px 0;
}

#myfooter ul.footer-link li a {
    color: #222;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#myfooter ul.footer-link li a:hover {
    text-decoration: none;
    font-weight: 700;
    color: #0da63c;
}

#myfooter .footer-img {
    color: #fff;
}

#myfooter .footer-img>div:first-child,
#myfooter .footer-img>div:last-child {
    padding: 0;
}

#myfooter .bottom-social {
    padding: 0;
    margin: 15px 0;
}

#myfooter .bottom-social li {
    list-style: none;
    display: inline-block;
    margin: 0 3px;
}

#myfooter .bottom-social li i {
    font-size: 20px;
}

#myfooter .bottom-social li a {
    color: #fff;
}

#myfooter .footer-img p {
    text-align: right;
    font-size: 14px;
}

#myfooter .footer-img {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}


/* --- Fixed Sidebar --- */

.sidebar {
    position: fixed;
    top: 25%;
    left: 0;
    height: auto;
    width: 0;
    z-index: 9999;
    text-align: center;
    color: #fff;
}

.side-btn {
    font-size: 30px;
    background-color: #296e9d;
    width: 42px;
    height: 46px;
    line-height: 44px;
    cursor: pointer;
    position: relative;
    z-index: 99;
}

.side-btn div {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.side-btn:hover div {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.side-content {
    position: relative;
    top: -46px;
    width: 200px;
    left: -200px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.side-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 95, 148, 0.6);
    -webkit-filter: blur(3px);
    filter: blur(3px);
    z-index: -1;
}

.side-content.slide {
    left: 42px;
}

.sidebar .dv-1 {
    border-bottom: 1px solid #fff;
    padding: 0 0 10px 0;
}

.sidebar .dv-1 h6 {
    padding: 10px;
    background-color: rgba(16, 95, 148, 0.6);
}

.sidebar .dv-2 {
    padding: 10px;
}

.sidebar .dv-3 h6 {
    font-size: 16px;
    padding: 10px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.sidebar .dv-4 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    font-size: 14px;
    text-align: center;
    margin: 0;
    padding: 0 10px;
}

.sidebar .dv-4 ul li {
    width: 50%;
    padding: 10px;
    text-align: center;
}


/* --- Top Banner --- */

#top-banner {
    /* background-image: url(../images/banner-img.png); */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    margin-bottom: -100px;
    z-index: 9;
    position: relative;
}

#top-banner .container {
    height: 100%;
}

#top-banner .row {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.form-row .form-control {
    background-color: rgba(16, 95, 148, 0.9);
    color: #fff;
    border: 0;
    font-size: 14px;
    height: 45px;
}

.form-row .form-control::-webkit-input-placeholder {
    color: #fff;
}

.form-row .form-control::-moz-placeholder {
    color: #fff;
}

.form-row .form-control:-ms-input-placeholder {
    color: #fff;
}

.form-row .form-control::-ms-input-placeholder {
    color: #fff;
}

.form-row .form-control::placeholder {
    color: #fff;
}

.form-row .btn {
    background-color: #0da63c;
    color: #fff;
    border: 0;
    font-size: 14px;
    height: 45px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    text-transform: uppercase;
}

.form-row .btn:hover {
    background-color: rgba(13, 166, 60, 0.9);
}

#myfooter .form-row .form-control {
    background-color: #fff;
}

#myfooter .form-row .form-control::-webkit-input-placeholder {
    color: #222;
}

#myfooter .form-row .form-control::-moz-placeholder {
    color: #222;
}

#myfooter .form-row .form-control:-ms-input-placeholder {
    color: #222;
}

#myfooter .form-row .form-control::-ms-input-placeholder {
    color: #222;
}

#myfooter .form-row .form-control::placeholder {
    color: #222;
}


/* --- Lahaul Sniti --- */

#lahaul-sniti .bg {
    background-image: url(../images/lahaul-spiti-bg.png);
    background-position: top left;
}


/* --- kinnaur --- */

#kinnaur .bg {
    background-image: url(../images/kinnar-bg.png);
    background-position: top right;
}


/* --- Chamba --- */

#chamba .bg {
    background-image: url(../images/chambo-bg.png);
    background-position: top left;
}


/* --- Kullu --- */

#kullu .bg {
    background-image: url(../images/kullu-bg.png);
    background-position: top right;
}


/* --- Shimla --- */

#shimla .bg {
    background-image: url(../images/shimla-bg.png);
    background-position: top left;
}


/* --- Kangra --- */

#kangra .bg {
    background-image: url(../images/kangra-bg.png);
    background-position: 0 -180%;
}


/* --- Sirmanur --- */

#sirmaur .bg {
    background-image: url(../images/sirmaur-bg.png);
    background-position: -20px -40%;
}


/* --- Mandi --- */

#mandi .bg {
    background-image: url(../images/mandi-bg.png);
    background-position: top right;
}


/* --- Solan --- */

#solan .bg {
    background-image: url(../images/solan-bg.png);
    background-position: top left;
}


/* --- Bilaspur --- */

#bilaspur .bg {
    background-image: url(../images/bilaspur-bg.png);
    background-position: top right;
}


/* --- Hamirpur --- */

#hamirpur .bg {
    background-image: url(../images/hamirpur-bg.png);
    background-position: top left;
}


/* --- Una --- */

#una .bg {
    background-image: url(../images/una-bg.png);
    background-position: top right;
}


/* --- Line --- */

.line {
    position: relative;
}

.line svg {
    position: absolute;
    top: 300px;
    left: -20px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.feets-info {
    font-size: 20px;
    font-weight: 700;
    color: #8b8375;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media screen and (min-width: 600px) {
    .feets-info {
        font-size: 20px;
        font-weight: 700;
        color: #8b8375;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.feets-info img {
    margin: 0 10px 0 10px;
}

.custom-btn {
    border: 2px solid #0ea63c;
    background: #fff;
    color: #0ea63c;
    border-radius: 30px;
    padding: 0 35px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/* Inner Page Header */

#myheader.innerpage .top-bar {
    background: #3285aa;
}

.innerpage .navbar-light .navbar-nav .nav-link {
    color: #555;
}

.innerpage .navbar-light .navbar-nav .active .nav-link,
.innerpage .navbar-light .navbar-nav .nav-link:hover,
.innerpage .navbar-light .navbar-nav .nav-link:active,
.innerpage .navbar-light .navbar-nav .nav-link:focus {
    color: #000;
}


/* explore-section */

.explore-section {
    padding: 40px 0 80px;
}

.explore-section .content-left {
    padding: 0;
}

.explore-section .title {
    font-family: 'Muli', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin-top: -30px;
    margin-left: 40px;
}

.btn-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

.btn-list li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 15px;
    width: calc(100% / 3 - 15px);
}

.grey-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #b3b3b3;
    font-size: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'Muli', sans-serif;
    width: 100%;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.grey-btn:hover {
    color: #fff;
    border-color: #16b86a;
}

.grey-btn:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 101%;
    width: 0px;
    z-index: -1;
    content: '';
    background: #16b86a;
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}

.grey-btn:hover:before {
    left: -1%;
    right: auto;
    height: 101%;
    width: 101%;
}


/* package-section */

.package-section {
    display: block;
    padding: 40px 0;
}

.outer-wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    width: 100%;
}

.outer-wrap .img {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-height: 205px;
}

.outer-wrap .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.outer-wrap .details {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    border: 1px solid #ececec;
    position: relative;
    padding-bottom: 60px;
}

.outer-wrap .name {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    padding: 40px 25px 0;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000;
}

.outer-wrap .desc {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    padding: 5px 25px;
    color: #000;
}

.view-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    font-weight: 500;
    min-height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    color: #000;
    z-index: 1;
    border-top: 1px solid #ececec;
    border-radius: 0px;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 0;
    overflow: hidden;
}

.custom-btn {
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 0;
    overflow: hidden;
}

.view-btn:hover,
.custom-btn:hover {
    color: #fff;
}

.view-btn:before,
.custom-btn:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 101%;
    width: 0px;
    z-index: -1;
    content: '';
    background: #16b86a;
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}

.view-btn:hover:before,
.custom-btn:hover:before {
    left: -1%;
    right: auto;
    height: 101%;
    width: 101%;
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
    margin-top: 1060px;
}

.section .bg {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}


/* --- Media Query --- */

@media screen and (min-width: 768px) and (max-width:1199px) {
    /* .desktop-only,.mobile-only{display: none!important;} */
}

@media screen and (min-width: 992px) {
    h1 {
        font-size: 8rem;
    }
    h2 {
        font-size: 6rem;
    }
    h3 {
        font-size: 5rem;
    }
    h4 {
        font-size: 4rem;
    }
    h5 {
        font-size: 3rem;
    }
    h6 {
        font-size: 2rem;
    }
    .mob-nav {
        display: none;
    }
    #myheader .top-bar {
        padding-left: 60px;
        padding-right: 60px;
    }
    .top-bar ul.top-social {
        text-align: right;
    }
    #top-banner .row {
        height: 95vh;
    }
    .form-row>div {
        padding-left: 0;
    }
    .form-row>div:last-child {
        padding-right: 0;
    }
    .content-right {
        padding: 50px 50px 0;
        width: 90%;
        margin-left: 0;
        margin-right: auto;
    }
    .content-left {
        padding: 50px 65px 0;
        width: 95%;
        margin-right: 0;
        margin-left: auto;
    }
    #myfooter .container {
        max-width: 980px !important;
    }
    #lahaul-sniti .feets-info {
        position: absolute;
        top: 240px;
        left: 10%;
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    #kinnaur .feets-info {
        position: absolute;
        top: 130px;
        left: 15%;
        -webkit-transform: rotate(2deg);
        -ms-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    #chamba .feets-info {
        position: absolute;
        top: 50px;
        left: 5%;
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    #kullu .feets-info {
        position: absolute;
        top: 0px;
        left: auto;
        right: 0px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    #kullu .feets-info span {
        position: relative;
        top: -30px;
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    #shimla .feets-info {
        position: absolute;
        top: 45px;
        left: 11%;
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    #kangra .feets-info {
        position: absolute;
        top: -10px;
        left: 15%;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    #sirmaur .feets-info {
        position: absolute;
        top: -5px;
        left: 6%;
    }
    #mandi .feets-info {
        position: absolute;
        top: 50px;
        left: 82%;
    }
    #solan .feets-info {
        position: absolute;
        top: 50px;
        left: 15%;
    }
    #bilaspur .feets-info {
        position: absolute;
        top: 50px;
        left: 24%;
    }
    #hamirpur .feets-info {
        position: absolute;
        top: 110px;
        left: 10%;
    }
    #una .feets-info {
        position: absolute;
        top: 120px;
        left: auto;
        right: 15%;
        line-height: 72px;
    }
    #lahaul-sniti .bg,
    #bilaspur .bg,
    #hamirpur .bg,
    #una .bg,
    #solan .bg {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .desktop-only {
        display: block;
    }
    .mobile-only {
        display: none;
    }
}

@media screen and (min-width: 1370px) {
    p,
    li {
        font-size: 18px;
    }
    #myfooter {
        padding-top: 20% !important;
    }
    #mountain {
        height: 500px !important;
    }
}

@media screen and (min-width: 1580px) {
    #lahaul-sniti .bg,
    #bilaspur .bg,
    #hamirpur .bg,
    #una .bg,
    #solan .bg {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .line svg {
        top: 290px;
        left: -15px;
        height: 100.5%;
    }
    #chamba .feets-info {
        top: 0;
    }
    #shimla .feets-info {
        top: 0;
    }
    #kangra .feets-info {
        left: 9%;
    }
    #mandi .feets-info {
        left: 85%;
    }
    #bilaspur .feets-info {
        top: 20px;
        left: 11%;
    }
}

@media screen and (max-width: 1440px) {
    #chamba .feets-info,
    #shimla .feets-infos {
        top: 0;
    }
    #bilaspur .feets-info {
        top: 20px;
    }
    #hamirpur .feets-info {
        top: 90px;
    }
    .line svg {
        top: 250px;
    }
}

@media screen and (max-width: 1280px) {
    #top-banner {
        margin-bottom: 0;
    }
    .line {
        overflow: hidden;
    }
    .line svg {
        top: 250px;
    }
    section .bg .feets-info {
        top: 0!important;
    }
    #lahaul-sniti .feets-info {
        top: 30%!important;
    }
    #kinnaur .feets-info,
    #una .feets-info {
        top: 100px!important;
    }
}

@media screen and (max-width: 1199px) {
    .line svg {
        top: -5%;
        height: 115%;
    }
    section .bg {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }
    section .bg .feets-info {
        top: 0!important;
        position: static!important;
        margin-left: 0;
        margin-right: auto;
    }
}

@media screen and (max-width: 992px) {
    .line section .bg {
        background-position: top right !important;
        background-size: cover !important;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        min-height: 350px;
        padding: 40px 20px;
        margin: 0 auto;
    }
    .cover-img {
        margin: 0 auto;
    }
    section .bg p {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 5rem;
    }
    h2 {
        font-size: 4rem;
    }
    h3 {
        font-size: 3rem;
    }
    h4 {
        font-size: 3rem;
    }
    h5 {
        font-size: 2rem;
    }
    h6 {
        font-size: 2rem;
    }
    .desktop-nav,
    .mob-hide {
        display: none;
    }
    .reverse-row>div:last-child {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    #myheader .top-bar {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    #top-banner .row {
        height: 80%;
    }
    .form-row>div {
        padding: 5px 10px;
    }
    .content-right,
    .content-left {
        padding: 20px;
        width: 100% !important;
    }
    #myfooter .bottom-social,
    #myfooter .footer-img p {
        text-align: center !important;
    }
    .feets-info span {
        display: none;
    }
    #top-banner {
        margin-bottom: 0;
    }
    .explore-section .title {
        margin: 0px;
    }
    .grey-btn {
        font-size: 16px;
    }
    .explore-section {
        padding: 40px 0;
    }
    .outer-wrap .name {
        padding: 30px 15px 0;
        line-height: normal;
    }
    .outer-wrap .desc {
        padding: 5px 15px;
        line-height: normal;
    }
}

@media screen and (max-width: 767px) {
    .explore-section {
        padding: 25px 0;
    }
    .explore-section .content-left {
        text-align: center;
        margin-bottom: 25px;
    }
    .outer-wrap {
        margin-bottom: 20px;
    }
    .outer-wrap .name {
        padding: 20px 15px 0;
        line-height: normal;
    }
    /* .line svg.mobile-only{
        display: none;
    /* }  */
    #myheader.sticky {
        top: -80px;
    }
}

@media screen and (max-width: 420px) {
    h1 {
        font-size: 5rem;
    }
    h2 {
        font-size: 4rem;
    }
    h3 {
        font-size: 3rem;
    }
    h4 {
        font-size: 3rem;
    }
    h5 {
        font-size: 2rem;
    }
    h6 {
        font-size: 2rem;
    }
    #myheader.sticky {
        top: -80px !important;
    }
    .navbar .navbar-brand,
    .navbar .navbar-brand img {
        max-width: 90px;
        width: 100%;
    }
}


/*---Scrollbar Design ---*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.sourav-blog-main-section .card.card-body a,
.sourav-blog-main-section .card-body a,
.packages .card-body a {
    border: 2px solid #0ea63c;
    background: #fff;
    color: #0ea63c;
    border-radius: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 0;
    overflow: hidden;
}

.sourav-blog-main-section .card.card-body a:hover,
.sourav-blog-main-section .card-body a:hover,
.packages .card-body a:hover {
    background: #16b86a;
    color: #fff !important;
}

.sourav-blog-main-section .card.card-body a:before,
.sourav-blog-main-section .card-body a:before,
.packages .card-body a:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 101%;
    width: 0px;
    z-index: -1;
    content: '';
    background: #16b86a;
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}

.sourav-blog-main-section .card.card-body a:hover:before,
.sourav-blog-main-section .card-body a:hover:before,
.packages .card-body a:hover:before {
    left: -1%;
    right: auto;
    height: 101%;
    width: 101%;
}