/*------ Normalise CSS ------*/
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}button:focus, textarea:focus, div:focus {outline: 0 !important;}select:focus {outline: none;}a, a:hover {text-decoration: none;color: inherit;}button{background: transparent;border: 0;padding: 0;line-height: 0;}button:focus{outline: none;box-shadow: none;}input::placeholder,textarea::placeholder{color:var(--placeholder)!important}input::-moz-placeholder,textarea::-moz-placeholder{color:var(--placeholder)!important;opacity:1}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:var(--placeholder)!important;opacity:1}input:focus{outline:0!important}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}ul{list-style-type:none;padding:0;margin:0}a:hover{text-decoration:none}p{margin:0}button{border:0}button:focus{outline:0}

/*------ Font CSS ------*/

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.woff2') format('woff2'),
        url('../fonts/DMSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Medium.woff2') format('woff2'),
        url('../fonts/DMSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Bold.woff2') format('woff2'),
        url('../fonts/DMSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Serif Display';
    src: url('../fonts/DMSerifDisplay-Regular.woff2') format('woff2'),
        url('../fonts/DMSerifDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*------ Font CSS End ------*/

/*------ Main CSS ------*/

* {
    box-sizing: border-box;
}
:root {
    --theme: #5c98f2;
    --text-color: #848484;
    --grey: #999191;
    --black: #000000;
    --white: #FFFFFF;
}
body {
    font-family: 'DM Sans';
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-color);
    background: var(--white);
	padding: 0;
    margin: 0;
    overflow-x: hidden;
}
.general-btn {
    float: left;
    width: auto;
    line-height: 45px;
    padding: 0 22px;
    font-weight: 500;
    background: var(--theme);
    color: var(--white) !important;
    background-color: var(--theme);
    box-shadow: 0px 4px 10px 0px rgb(255 255 255 / 13%);
}
.title-font {
    font-family: 'DM Serif Display';
}
.mb-30 {
    margin-bottom: 30px;
}
.theme {
    color: var(--theme) !important;
}
.white {
    color: var(--white) !important;
}
.black {
    color: var(--black) !important;
}
.navy {
    color: navy !important;
}
.center {
    display: flow-root;
    width: 100%;
    display: flex;
    justify-content: center;
}
.theme-bg {
    background: var(--theme);
}
.hide {
    display: none !important;
}

/*------ Main CSS End ------*/

/*------ Header ------*/

.header-block {
    float: left;
    width: 100%;
    height: 82px;
    /* background: var(--white); */
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.header-block.sticky {
    background: var(--white);
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
}
.header-inner {
    float: left;
    width: 100%;
    height: 82px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand-logo {
    float: left;
    width: 215px;
    font-family: 'DM Serif Display';
    font-size: 25px;
    color: var(--white);
}
.brand-logo span {
    color: var(--theme);
}
.brand-logo img {
    float: left;
    width: 100%;
    object-fit: contain;
}
.sticky-logo {
    display: none;
}
.sticky .non-sticky-logo {
    display: none;
}
.sticky .sticky-logo {
    display: block;
}
.sticky .brand-logo,
.sticky .brand-logo span,
.inner-header .brand-logo,
.inner-header .brand-logo span {
    color: var(--theme) !important;
}
.menu-link > li {
    float: left;
    margin-left: 25px;
}
.menu-link > li > a {
    float: left;
    width: auto;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;   
    color: var(--white);
    padding: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.sticky .menu-link > li > a,
.inner-header .menu-link > li > a {
    color: var(--text-color);    
}
.menu-link > li  > a:hover, 
.menu-link > li.active > a {
    color: var(--theme);
}
.nav-link:focus, .nav-link:hover {
    color: var(--theme);
}
.menu-link .dropdown-menu {
    float: left;
    width: auto;
    background: #fff;
    padding: 10px 0;
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    position: absolute;
    right: -20px;
    top: 25px;
    box-shadow: 0 5px 7px 0 rgb(0 0 0 / 15%);
    z-index: 10;
}
.menu-link .dropdown-menu li {
    float: left;
    width: 100%;
}
.menu-link .dropdown-menu li a {
    float: left;
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 300;  
    color: var(--text-color);
    letter-spacing: .2px;
    text-transform: uppercase;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.menu-link > li > a.general-btn {
    float: left;
    width: auto;
    padding: 0 22px;
    font-weight: 500;
    background: var(--theme);
    color: var(--white);
    border-radius: 10px;
    background-color: var(--theme);
    box-shadow: 0px 4px 10px 0px rgb(255 255 255 / 13%);
}
.menu-link .dropdown-menu li a:hover {
    background: #fafafa;
    color: var(--theme);
}
.hamburger-menu {
    float: left;
    width: auto;
    position: relative;
    z-index: 1;    
    margin-right: 10px;
    display: none;
}
.hamburger-menu {
    float: left;
    width: auto;
    position: relative;
    z-index: 1;    
    margin-right: 10px;
    display: none;
}
.line {
    width: 33px;
    height: 1px;
    background: var(--theme);
    display: block;
    position: relative;
    top: 0;
    margin-bottom: 9px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.line.line:nth-child(3) {
    margin-bottom: 0;
}
.on .line:nth-child(1) {
    background: transparent;
}
.on .line:nth-child(2) {
    transform: rotate(45deg) translate(0px,0);
    background: white;
}
.on .line:nth-child(3) {
    transform: rotate(-47deg) translate(7px,-7px);
    background: white;
}
.menu-panel .ti-close {
    display: none;
}

/*------ Header End ------*/

/*------ Banner ------*/

.banner-block {
    float: left;
    width: 100%;
    height: 100vh;
}
.banner-block .carousel  {
    float: left;
    width: 100%;
    height: 100%;
}
.carousel-indicators {
    width: 100px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 20px;
    margin-right: 0;
}
.carousel-controller {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
}
.carousel-control-next, 
.carousel-control-prev {
    width: 30px;
    height: 30px;
    background: var(--theme);
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 20px;
}
.carousel-inner {
    float: left;
    width: 100%;
    height: 100%;
}
.banner-block .carousel-item {
    position: relative;
    height: 100%;
}
.banner-block .carousel-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(34 34 34 / 35%);
}
.banner-block .carousel-item img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-description {
    float: left;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / 25%);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.carousel-description p {
    float: left;
    font-size: 18px;
    font-weight: 200;
    color: var(--white);
    line-height: normal;
}
.carousel-description h1 {
    font-family: 'DM Serif Display';
    font-size: 84px;
    font-weight: 500;
    color: var(--white);
    text-shadow: 2px 2px rgb(0 0 0 / 40%);
    margin-bottom: 10px;
}
.carousel-description h5 {
    font-size: 15px;
    line-height: 30px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 15px;
}
.single-banner-block {
    float: left;
    width: 100%;
    height: 500px;
    background: url(https://a6e8z9v6.stackpathcdn.com/traveltour/homepages/main5/wp-content/uploads/sites/6/2022/07/page-title-bg-2.jpg) no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.single-banner-block h1 {
    font-family: 'DM Serif Display';
    font-size: 50px;
    color: var(--black);
}

/*------ Banner End ------*/

.content-area {
    float: left;
    width: 100%;
    padding: 90px 0;
    position: relative;
}
.content-area:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #e3e5e9;
    position: absolute;
    left: 0;
    bottom: 0;
}
.section-header {
    float: left;
    width: 100%;
    margin-bottom: 40px;
}
.section-header h3 {
    float: left;
    width: 100%;
    font-family: 'DM Serif Display';
    font-size: 35px;
    line-height: normal;
    font-weight: 400;
    color: var(--theme);
    position: relative;
}
.section-header p {
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #777;
    margin-top: 10px;
}
.section-content {
    position: relative;
    z-index: 1;
}
.section-content > h5,
.sub-header {
    float: left;
    width: 100%;
    font-size: 18px;
    font-family: 'DM Serif Display';
    color: var(--black);
    margin: 5px 0 20px 0;
}
.section-content > p {
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #777;
    margin-bottom: 20px;
}
.section-content p:last-child {
    margin-bottom: 0px;
}
.section-content .table {
    border: 1px solid #e3e5e9;
    border-radius: inherit;
}
.section-content .table thead tr th {
    font-size: 14px;
    padding: 15px;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom-width: 0px;
}
.section-content .table tbody tr td {
    font-size: 15px;
    padding: 15px;
}
.section-content .table>:not(:first-child) {
    border-top: 1px solid #e3e5e9;
}
.alert-bg svg {
    position: absolute;
    right: -1px;
    bottom: -1px;
    opacity: 0.5;
}
.alert-bg p {
    font-size: 30px;
    line-height: 45px;
    text-shadow: 2px 2px rgb(0 0 0 / 17%);
}
.about-bg {
    background: url(https://a6e8z9v6.stackpathcdn.com/traveltour/homepages/main5/wp-content/uploads/sites/6/2022/07/page-title-bg.png) no-repeat top left;
    background-size: cover;
}
.grid-pack {
    float: left;
    width: 100%;
    height: 290px;
    margin-bottom: 25px;
    position: relative;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.grid-pack img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.grid-pack:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 51%);
    border-radius: 10px;
}
.grid-text {
    float: left;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding: 20px;
}
.grid-text h5 {
    font-family: 'DM Serif Display';
    font-size: 20px;
    color: var(--white);
    line-height: normal;
    text-align: left;
}
.grid-text > p {
    font-size: 15px;
    color: var(--white);
    margin-top: 10px;
    line-height: normal;
    opacity: .8;
}
.grid-text .link {
    color: #aeccf9;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}
.count {
    padding: 10px;
    background: var(--theme);
    color: var(--white);
    border-radius: 10px;
    position: absolute;
    right: 20px;
    top: 20px;
}
.count:hover,
.count:focus {
    color: var(--white);
}
.testimonial-bg {
    background: url(../images/testimonial-bg.jpg) no-repeat;
    background-size: cover;
}
.testimonial-bg .container-fluid {
    padding: 0;
}
.section-redirect {
    margin: 10px 0;
}
.section-redirect a {
    color: var(--theme);
    padding: 10px 0;
    position: relative;
}
.section-redirect a:before {
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--theme);
    position: absolute;
    left: 0;
    bottom: 0px;
}
.each-slider {
    float: left;
    width: 100%;
    height: 340px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 40px 40px rgba(0, 0, 0,0.06); */
}
.avatar-card {
    float: left;
    width: 100%;
    display: flex;
    align-items: flex-start;
}
.avatar-card figure {
    float: left;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-right: 20px;
}
.avatar-card figure img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.avatar-details h5{
    float: left;
    width: 100%;
    color: var(--black);
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}
.avatar-details p{
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    text-align: left;
}
.feedback-rating {
    float: left;
    width: 100%;
    margin: 10px 0;
}
.feedback-rating li {
    float: left;
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: yellow;
    margin-right: 10px;
}
.content-area .owl-dot {
    margin: 40px 2.5px 0;
}
.content-area .owl-dot span {
    float: left;
    width: 15px;
    height: 15px;
    border: 2px solid #ccc;
    border-radius: 50%;
}
.content-area .owl-dot.active span {
    border-color: var(--theme);
    background: var(--theme);
}
.input-box {
    float: left;
    width: 100%;
    margin-bottom: 16px;
    position: relative;
}
.input-box input {
    float: left;
    width: 100%;
    height: 45px;
    border: 1px solid #e3e5e9;
    background: var(--white);
    padding: 0 20px;
}
.input-box textarea {
    float: left;
    width: 100%;
    height: 120px;
    padding: 20px;
    border: 1px solid #e3e5e9;
    resize: none;
}
.input-box input::placeholder,
.input-box textarea::placeholder {
    opacity: .3;
}
.validation-text  {
    float: left;
    width: 100%;
    font-size: 12px !important;
    color: red !important;
    margin-top: 3px;
}
.form-action {
    float: left;
    width: 100%;
}
.form-action button {
    margin-right: 10px;
}
.form-action .grey {
    background: #fafafa;
    border: 1px solid #e3e5e9;
    color: #848484 !important;
}
.contact-line {
    float: left;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e3e5e9;
}
.contact-line:last-child {
    border: 0;
}
.contact-line h5 {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    font-family: 'DM Serif Display';
    font-size: 18px;
    color: black;
}
.contact-line h5 span {
    float: left;
    margin-right: 10px;
}
.contact-line ul {
    float: left;
    width: 100%;
    padding-left: 28px;
}
.contact-line ul li {
    width: 100%;
    margin-bottom: 5px;
}
.whatsapp-icon {
    float: left;
    width: 18px;
    height: 18px;
    background: url(../images/icons/whatsapp.png) no-repeat;
    background-size: contain;
    position: relative;
}
.footer-block {
    float: left;
    width: 100%;
    background: #303030;
}
.sub-footer-one {
    float: left;
    width: 100%;
    padding: 60px 0;
}
.footer-text {
    float: left;
    width: 100%;
}
.footer-text > label {
    float: left;
    width: 100%;
    font-family: 'DM Serif Display';
    color: var(--white);
    line-height: normal;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.footer-text > p, 
.footer-text > address {
    float: left;
    width: 100%;
    color: #9a9a9a;
    font-size: 16px;
    margin-bottom:20px;
}
.footer-text > p > a span{
    margin-right: 10px;
}
.sub-footer-two {
    float: left;
    width: 100%;
    padding: 32px 0;
    border-top: 1px solid #373737;
    background: #000;
}
.sub-footer-two p {
    float: left;
    width: 100%;
    color: rgb(255 255 255 / 25%);
    font-size: 14px;
    text-align: center;
}
.boiler-card {
    float: left;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
}
.boiler-card figure {
    float: left;
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.boiler-card figure img {
    float: left;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
}
.boiler-card-details {
    float: left;
    width: 100%;
    padding: 20px;
}
.boiler-card-details h5 {
    font-size: 18px;
    font-family: 'DM Serif Display';
    color: black;
    margin-bottom: 15px;
}
.boiler-card-details p {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.boiler-card-details a {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--theme);
}
.lc-modal  .modal-header {
    background: var(--theme);
    border-radius: 10px 10px 0 0;
}
.lc-modal  .modal-content {
    border: 0;
    border-radius: 10px;
}
.lc-modal .modal-header h5 {
    font-family: 'DM Serif Display';
    font-size: 18px;
    color: white;
}
.lc-modal .modal-header .btn-close:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}
.lc-modal .modal-body {
    background: #fafafa;
    border-radius: 0 0 10px 10px;
}
.lc-modal .modal-body p {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 18px;
}
.lc-modal .modal-body p:last-child {
    margin-bottom: 0;
}
.lc-accordion {
    float: left;
    width: 100%;
    margin-bottom: 25px;
}
.lc-accordion .accordion-item {
    float: left;
    width: 100%;
    border-color: #e3e5e9;
}
.lc-accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}
.lc-accordion .accordion-button {
    background: #fafafa;
    border-color: #e3e5e9;
    font-family: 'DM Serif Display';
    line-height: normal;
    color: var(--black);
}
.lc-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
}
.lc-accordion .accordion-body {
    float: left;
    width: 100%;
}
.lc-accordion .accordion-body .bullet {
    margin-bottom: 10px;
}
.timeline {
    float: left;
    width: 100%;
    padding-left: 30px;
    position: relative;
}

.timeline > li {
    float: left;
    width: 100%;
    margin-bottom: 18px;
    position: relative;
}
.timeline > li:last-child {
    margin-bottom: 0;
}
.timeline > li:before {
    content: "";
    width: 2px;
    height: calc(100%);
    position: absolute;
    left: -22px;
    top: 18px;
    background: #848484;
}
.timeline > li:last-child::before {
    content: none;
}
.timeline > li:after {
    content: "";
    width: 13px;
    height: 13px;
    border: 2px solid #848484;
    background: white;
    border-radius: 50%;
    position: absolute;
    left: -27px;
    top: 2px;
}
/* .accordion-collapse {
    float: left;
    width: 100%;
} */
.timeline > li > h5 {
    float: left;
    width: 100%;
    font-size: 18px;
    font-family: 'DM Serif Display';
    color: var(--theme);
    margin: 0px 0 0px 0;
}
.timeline > li > p,
.lc-accordion .accordion-body > p {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    color: #848484;
    margin: 0px 0 10px 0;
}
.section-content > ol {
    float: left;
    width: 100%;
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.section-content > ul {
    float: left;
    width: 100%;
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 20px;
}
.section-content > ol > li, 
.section-content > ul > li {
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #777;
    margin-bottom: 7px;
}
.quick-content {
    float: left;
    width: 100%;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #e3e5e9;
}
.quick-content > h5 {
    font-size: 18px;
    font-family: 'DM Serif Display';
    line-height: normal;
    margin-bottom: 15px;
    color: black;
}
.quick-content > ul > li {
    float: left;
    width: 100%;
    margin-bottom: 13px;
}
.quick-content > ul > li > a {
    color: var(--theme);
    font-size: 14px;
}
.boiler-pack {
    float: left;
    width: 100%;
    display: flex;
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
}

.boiler-pack > img {
    float: left;
    width: 250px;
    object-fit: cover;
    border-radius: 10px 0 0  10px;
}

.boiler-text {
    float: left;
    width: 100%;
    padding: 35px;
}

.boiler-top-text > h5 {
    float: left;
    width: 100%;
    font-size: 18px;
}

.boiler-text-top h5 {
    float: left;
    width: 100%;
    font-size: 20px;
    font-family: 'DM Serif Display';
    line-height: normal;
    margin-bottom: 10px;
    color: black;
}

.boiler-text-top ul li {
    float: left;
    width: 100%;
    line-height: normal;
    margin-bottom: 5px;
}

.boiler-text-bottom {
    float: left;
    width: 100%;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #e3e5e9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.boiler-text-bottom h6 {
    font-size: 14px;
}

.boiler-action a {
    float: left;
    width: auto;
    padding: 10px;
    background: var(--theme);
    color: var(--white);
    margin-left: 10px;
    border-radius: 10px;
}
.boiler-action a.green {
    background: #6c757d;
    
}
.boiler-text-bottom h6 span {
    float: left;
    width: 100%;
    font-size: 18px;
    color: black;
    margin-top: 6px;
    font-weight: 600;
}
.grey-bg {
    background: #f1f1f1;
}
.section-tab .nav-pills {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-tab .nav-pills .nav-link {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: bold;
    position: relative;
}
.section-tab .nav-pills .nav-link:before {
    content: "";
    width: 0px;
    height: 3px;
    background: var(--theme);
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.section-tab .nav-pills .nav-link.active, 
.section-tab .nav-pills .show>.nav-link {
    background-color: transparent;
    color: var(--theme);
}
.section-tab .nav-pills .nav-link.active:before, 
.section-tab .nav-pills .show>.nav-link:before {
    width: 100%;
}
.bullet {
    list-style: disc;
    padding-left: 18px;
}
.bullet {
    font-size: 14px;
    line-height: 22px;
}
.tnc-text {
    float: left;
    width: 100%;
    margin-top: 10px;
    font-size: 12px;
    line-height: 22px;
}
.boiler-text-top > p {
    float: left;
    width: 100%;
    line-height: 22px;
}
.side-tab .nav-link {
    padding: 10px;
    border-radius: 0;
    color: var(--default-text);
    border-radius: 0 34px 34px 0;
}
.side-tab  .nav-link.active, 
.side-tab  .show>.nav-link {
    background: var(--theme);
}
strong {
    font-weight: bold;
}
.whatsapp {
    width: 60px;
    height: 60px;
    padding: 10px;
    position: fixed;
    right: 20px;
    bottom: 60px;
    background: rgba(0,0,0,.2);
    border-radius: 10px;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 2;
}
.whatsapp img {
    width: 100%;
}
.whatsapp.top {
    bottom: 20px;
}
.inner .whatsapp {
    bottom: 20px;
}
.menu-panel .ti-close {
    color: var(--text-color);
    font-size: 25px;
    position: absolute;
    right: 34px;
    top: 25px;
    display: none;
}

/*------ Media Queries ------*/

@media (min-width: 992px) {
    
}

@media (min-width: 1200px) {

}

@media(max-width: 1280px) {

}

@media(max-width: 1199px) {

}

@media(max-width: 1024px) {

    .hamburger-menu {
        display: block;
        float: left;
        width: auto;
    }
    .line {
        width: 40px;
        height: 1px;
        background: var(--white);
        display: block;
        position: relative;
        top: 0;
        margin-bottom: 9px;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
    }
    .sticky .line {
        background: var(--theme);
    }
    .inner-header .line {
        background: var(--theme);
    }
    .menu-panel.active .line {
        background: var(--white);
    }
    .line.line:nth-child(3) {
        margin-bottom: 0;
    }
    .on .line:nth-child(1) {
        background: transparent;
    }
    .on .line:nth-child(2) {
        transform: rotate(45deg) translate(0px,0);
        background: var(--white);
    }
    .on .line:nth-child(3) {
        transform: rotate(-47deg) translate(7px,-7px);
        background: var(--white);
    }
    .menu-panel {
        float: left;
        width: 100%;
        height: 100%;
        position: fixed;
        left: -100%;
        top: 0;
        background: var(--white);
        padding: 85px 30px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        z-index: 10;
    }
    .menu-panel.active {
        left: 0;
    }
    .menu-link {
        flex-direction: column;
    }
    .menu-link > li {
        width: 100%;
        margin: 0 0 3px 0;
    }
    .menu-panel .ti-close {
        display: block;
    }
    .menu-link li a {
        color: var(--text-color);
    }
    .header-inner {
        padding: 0 15px;
        height: 75px;
    }
    .header-block {
        height: 75px;
    }
    .brand-logo {
        width: 160px;
        text-align: right;
        display: flex;
        flex-direction: column;
    }
    .carousel-description h1 {
        font-size: 35px;
        line-height: 45px;
    }
    .carousel-description h5 {
        font-size: 14px;
    }
    .carousel-description p {
        font-size: 16px;
    }
    .content-area {
        padding: 30px 15px;
    }
    .alert-bg p {
        font-size: 22px;
        line-height: 40px;
    }
    .section-header {
        margin-bottom: 15px;
    }
    .section-header h3 {
        font-size: 28px;
    }
    .sub-footer-one {
        padding: 30px 0;
    }
    .boiler-pack {
        flex-direction: column;
    }
    
    .boiler-pack > img {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
    .boiler-text-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .boiler-text-bottom h6 {
        width: 100%;
        margin-bottom: 20px;
    }
    .boiler-action {
        float: left;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .boiler-action a {
        margin: 0;
    }
    .boiler-text {
        padding: 20px;
    }
    .section-tab .nav-pills {
        flex-wrap: unset;
        flex-direction: unset;
        overflow-x: auto;
        justify-content: flex-start;
    }
    .section-tab .nav-pills .nav-link {
        white-space: nowrap;
    }
    .single-banner-block {
        height: 300px;
        padding: 15px;
    }
    .single-banner-block h1 {
        font-size: 30px;
        line-height: normal;
    }
   
}

@media(max-width: 991px) { 

    .menu-panel .ti-close {
        display: block;
    }

}

@media(max-width: 767px) {

    
}

/*------ Media Queries End ------*/