/*Color Codes */
:root {
    --color-primary: #0FB20F;
    --color-secondary: #0FB20F;
}

.primary-text {
    color: var(--color-primary);
}

/*** Spinner Start ***/
body * {
    font-family: 'Hellix', sans-serif;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-border.text-secondary {
    color: var(--color-primary) !important;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.back-to-top.call-icon {
    bottom:110px;    
    transform: rotate(90deg);    
    animation-name: pulse1;
}
.back-to-top.btn.btn-primary.call-icon, .back-to-top.btn.btn-primary.call-icon:hover{
    background: #f44336 !important;
    border-color: #f44336;
}
.back-to-top.call-icon i{
    font-size: 22px;
    animation:  oscillate-rotation 2.3s infinite ease-in-out;
    transition: all 0.5s;
}
@keyframes oscillate-rotation {
    0% {
      transform: rotate(0) scale(1) skew(0deg);
    }
  
    10% {
      transform: rotate(-25deg) scale(1) skew(0deg);
    }
  
    20% {
      transform: rotate(25deg) scale(1) skew(0deg);
    }
  
    30% {
      transform: rotate(-25deg) scale(1) skew(0deg);
    }
  
    40% {
      transform: rotate(25deg) scale(1) skew(0deg);
    }
  
    50% {
      transform: rotate(0) scale(1) skew(0deg);
    }
  
    100% {
      transform: rotate(0) scale(1) skew(0deg);
    }
}

.back-to-top.btn.btn-primary {
    font-size: 36px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}
@keyframes pulse1 {
    0% {
        box-shadow: 0 0 0 0 rgba(244,67,54, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(244,67,54, 0);
    }
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--color-primary) !important;
    border: 1px solid var(--color-primary);
    color: var(--bs-white) !important;
    font-weight: 400;
    transition: 0.5s;
    font-size: 14px;
    padding: 9px 20px;
}

.btn.btn.btn-primary:hover {
    background: var(--color-secondary) !important;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--color-primary) !important;
}

.border-primary {
    border-color: var(--color-primary);
}

.request-btn.btn {
    padding: 10px 20px;
    font-size: 14px;
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    transition: all 1s;
}

.request-btn.btn:focus,
.request-btn.btn:hover {
    border-color: var(--color-primary);
    box-shadow: none;
    background-color: #fff;
    color: var(--color-primary) !important;
}

.white-btn.btn {
    padding: 10px 20px;
    font-size: 14px;
    border-color: var(--bs-white);
    background-color: var(--bs-white);
    transition: all 1s;
    color: #2A2A2A;
}

.white-btn.btn:focus,
.white-btn.btn:hover {
    border-color: var(--color-primary);
    box-shadow: none;
    background-color: transparent;
    color: var(--color-primary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto 40px auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    color: var(--color-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 60%;
    left: -60%;
    margin-bottom: -6px;
    /* margin-left: -100px; */
    background: url('../img/sec-line.png')no-repeat;
    height: 1px;
}

.sub-title {
    position: relative;
    display: inline-block;
    color: #515151;
    font-size: 30px;
    min-width: 375px;
}

.sub-title span {
    font-weight: bold;
}

.sub-title::before {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 60%;
    right: -60%;
    transform: rotate(-180deg);
    margin-bottom: -8px;
    /* margin-right: -100px; */
    background: url('../img/sec-line.png')no-repeat;
    height: 1px;
}

.section-title p {
    color: #515151;
    font-size: 16px;
}

.page-section {
    margin-bottom: 40px;
}

/*** Navbar ***/
.headroom {
    padding: 0 2rem;
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    transition: transform .3s linear;
    z-index: 99999;
}

.headroom--pinned {
    transform: translateY(0%);
    background-color: rgba(0, 0, 0, 0.7);
}
.headroom--pinned.headroom--top{
    background-color: transparent;
}
.headroom--unpinned {
    transform: translateY(-100%);
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: .5s;
    padding: 7px 20px;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0FB20F;
}

.navbar-light .navbar-nav .nav-link.active {
    color: #fff;
    background-color: #0FB20F;
    border-radius: 50px;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    color: #0FB20F;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 0;
        color: var(--bs-white);
    }

    .navbar-light .navbar-collapse {
        margin-top: 0px;
        text-align: center;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 19px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
        border-radius: 0 !important;
        margin-right: 0;
        font-size: 17px;
    }
    .navbar-light .navbar-nav .nav-link:not(:last-child){        
        border-bottom: 1px solid #ddd;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    .navbar-light .navbar-nav .nav-link.active {
        background-color: #fff;
        color: #0FB20F !important;
    }
}

@media(min-width:991.98px) {
    .sticky-top .navbar-light {
        background-color: rgba(0, 0, 0, .6);
        padding: 30px 0px;
        transition: 1s all;
    }
}

.contact-link.btn.btn-primary {
    padding: 7px 20px;
}

.contact-link.btn.btn-primary:focus {
    box-shadow: none;
}

/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
/* .carousel-header {
    margin-top: -90px;
} */
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 20px;
    height: 4px;
    border: 4px solid #FFFFFF;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 20px;
    height: 4px;
    border: 4px #0FB20F;
    background-color: rgba(255, 255, 255, .3);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh
}

.carousel-header .carousel-inner .carousel-item .banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    /* .carousel-header .carousel-caption > div {
       margin-top: 90px;
    } */

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }    
}

.carousel-header .carousel-indicators [data-bs-target] {
    border: 0 !important;
}

.carousel-header .display-1 {
    font-size: 60px;
    margin-bottom: 40px;
}

.carousel-header .display-1 span {
    font-size: 80px;
}

.carousel-header .sub-text {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 30px;
}

.carousel-header .carousel .carousel-indicators {
    bottom: 20%;
}

.review-info {
    margin: 30px auto;
    max-width: 375px;
    position: absolute;
    bottom: 0px;
    left: 15px;
    right: 15px;
}

.review-info img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.review-info .col {
    width: 50%;
}

.review-info p {
    font-size: 16px;
    color: rgba(255, 255, 255);
    margin: 0;
}

/* .review-info p:last-child{
    color: #fff;
} */

/*** Carousel Hero Header End ***/


/*** Footer Start ***/
.footer {
    background-color: #F5F5F5;
}

.footer .footer-heading {
    color: #121212;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer .sec-head {
    color: #6E6E6E;
    font-size: 14px;
}

.footer .sec-content {
    color: #6E6E6E;
    font-size: 16px;
    font-weight: bold;
}

.footer .footer-item a {
    line-height: 30px;
    color: #6E6E6E;
    font-size: 14px;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--color-primary);
}

.footer .dots-icon {
    font-size: 5px;
    vertical-align: 4px;
}

.footer .social-links {
    margin-top: 10px;
}

.footer .social-links .btn {
    background-color: var(--color-primary);
    width: 32px;
    height: 32px;
    border-radius: 100px;
    padding: 0;
    margin-right: 10px;
    color: var(--bs-white);
    transition: all 1s;
}

.footer .social-links .btn:hover {
    color: var(--bs-white);
}

.copyright {
    background-color: #EDEDED;
}

.copyright span {
    color: #6E6E6E;
    font-size: 14px;
}

.copyright a {
    color: var(--color-primary);
}

/*** Footer End ***/

/* Thumnail Grid */
.thumbnail-grid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.thumbnail-grid .grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: calc(20% - 10px);
    height: 250px;
}
.thumbnail-grid.popular-routes .grid-item{
    width: calc(25% - 10px);
}

.thumbnail-grid .grid-item .grid-img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: relative;
}

.thumbnail-grid .grid-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    left: 0;
    top: 0;
    z-index: 9;
    border-radius: 10px;
}

.thumbnail-grid .grid-item:hover .grid-img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.thumbnail-grid .grid-item .span-text {
    position: absolute;
    bottom: 25px;
    left: 15px;
    color: #fff;
    font-size: 18px;
    transition: all 1s;
    z-index: 999;
    line-height: 22px;
}

/*why-choose-us */
.why-choose-us {
    padding-top: 80px;
}

.shadow-bg {
    position: relative;
    overflow: hidden;
}

.shadow-bg::before {
    content: '';
    position: absolute;
    right: -25%;
    top: -10%;
    width: 100%;
    height: 100%;
    background: url('../img/glow-shadow.svg');
    background-size: cover;
    z-index: 999;
}

.why-choose-us .sec-title {
    font-size: 30px;
    color: #121212;
    margin-bottom: 5px;
    font-weight: bold;
}

.why-choose-us .sec-content {
    font-size: 16px;
    color: #121212;
    margin-bottom: 20px;
}

.why-choose-us .feature-list {
    padding: 12px 20px 12px 20px;
    border-radius: 10px;
}

.why-choose-us .feature-list:hover {
    box-shadow: 0px 16px 24px 0px #6061701F;
}

.why-choose-us .feature-list .heading {
    font-size: 18px;
    color: #121212;
    margin-bottom: 5px;
    font-weight: bold;
}

.why-choose-us .feature-list .content {
    font-size: 15px;
    color: #121212;
    margin-bottom: 0;
}

.why-choose-us .feature-list .icon {
    margin-right: 15px;
    width: 75px;
    height: 75px;
}

/*Ratting Col */
.ratting-col .ratting-percentage {
    font-size: 60px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.ratting-col .ratting-count {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 0;
}

.ratting-col .ratting-by {
    font-size: 16px;
    color: #121212;
    margin-bottom: 0;
}

.thumbnail-gallery .grid-item {
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.thumbnail-gallery .grid-item:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99;
    right: 0;
}

.thumbnail-gallery .grid-item.grid-sm {
    height: calc(175px - 7px);
    margin-bottom: 15px;
}

.thumbnail-gallery .grid-item .grid-img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.thumbnail-gallery .grid-item:hover .grid-img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    border-radius: 10px;
}

.thumbnail-gallery .grid-item .title-line-text {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    width: 75%;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    max-width: 100%;
    word-break: break-word;
    transition: all 1s;
    z-index: 9999;
}

.thumbnail-gallery .grid-item .title-line-text:after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0px auto;
    background: url('../img/green-line.png')no-repeat;
    height: 1px;
    opacity: 1;
}

.thumbnail-gallery .grid-content {
    position: relative;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin-top: 5px;
    /* opacity: 0;
    height: 0;
    transform: translateY(-100%); */
}

.thumbnail-gallery .grid-col:hover .grid-content {
    transform: translateY(0);
    height: auto;
    opacity: 1;
}

.thumbnail-gallery .grid-col {
    margin-bottom: 20px;
}

.thumbnail-gallery .grid-content span {
    font-size: 14px;
    color: #121212;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.thumbnail-gallery .grid-content a {
    color: #0FB20F;
    position: absolute;
    right: 0;
    font-size: 14px;
    bottom: 0px;
    background-color: #fff;
    padding: 0px 15px;
}

.thumbnail-gallery .grid-content a::before {
    content: '...';
    position: absolute;
    left: 0;
    color: #121212;
    bottom: 2px;
}

.stars img {
    max-width: 70%;
    margin: auto;
}

.about-video {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.about-sec .about-img {
    border: 10px solid #fff;
    border-radius: 10px;
    margin-top: -150px;
    height: 550px;
    width: 100%;
    object-fit: cover;
}

.about-sec .about-content {
    padding: 50px 0px 50px 50px;
}

.about-sec .about-content .heading {
    font-size: 30px;
    color: #121212;
    margin-bottom: 5px;
    max-width: 90%;
    font-weight: bold;
}

.about-sec .about-content .content {
    font-size: 16px;
    color: #121212;
    line-height: 28px;
    margin-bottom: 15px;
}

/*Custom Tabs */
.custom-primary-tabs .tab-pane {
    padding: 40px 15px;
}

.custom-primary-tabs .nav-tabs {
    position: relative;
    border: none;
    background-color: #fff;
    border-radius: 6px;
}

.custom-primary-tabs .nav-tabs li {
    margin: 0px 10px;
    box-shadow: 0px 16px 24px 0px #6061701F;
    border-radius: 10px;
}

.custom-primary-tabs .nav-tabs li a {
    position: relative;
    margin-right: 0px;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    color: #333;
}

.custom-primary-tabs .nav-tabs .active {
    background-color: var(--color-primary);
    border: none;
    color: #fff;
    border-radius: 10px;
}

.custom-primary-tabs li.select-tabs {
    width: 250px;
    box-shadow: none;
}

.custom-primary-tabs li.select-tabs p {
    margin-bottom: 0;
    font-size: 14px;
    color: #121212;
}

.custom-primary-tabs li.select-tabs h6 {
    font-size: 16px;
    color: #121212;
    font-weight: bold;
    margin-bottom: 0;
}

.custom-primary-tabs .table thead th {
    padding: 15px;
    border-bottom: 1px solid #CECECE;
    border-color: #CECECE;
    background-color: #FAFAFA;
    color: #121212;
    font-size: 16px;
}

.custom-primary-tabs .table tbody td {
    border-color: #CECECE;
    border-bottom: 1px solid #CECECE;
    vertical-align: middle;
    padding: 10px 15px;
    color: #121212;
    font-size: 14px;
}

.custom-primary-tabs .table tbody tr:last-child td {
    border-bottom: 0;
}

.custom-primary-tabs .table thead th:first-child,
.custom-primary-tabs .table thead th:last-child {
    border-radius: 10px 10px 0px 0px;
}

.custom-primary-tabs .table>:not(caption)>*>* {
    border-color: #CECECE !important;
}

.custom-primary-tabs .table .btn.btn-primary {
    background-color: transparent !important;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    padding: 7px 30px;
    font-size: 14px;
    transition: all 1s;
}

.custom-primary-tabs .table .btn.btn-primary:hover {
    background-color: var(--color-primary) !important;
    color: var(--bs-white) !important;
}

.custom-primary-tabs li .icon {
    max-width: 50px;
}

.half-thumb-slider .thumb-img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.half-thumb-slider figure {
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
}

.half-thumb-slider figure.effect-sadie figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    content: '';
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}

.half-thumb-slider figure.effect-sadie.gra-sty1 figcaption::before {
    background: linear-gradient(to bottom, rgba(15, 178, 15, 0) 0%, rgba(15, 178, 15, 0.8) 75%);
    background: -webkit-linear-gradient(to bottom, rgba(15, 178, 15, 0) 0%, rgba(15, 178, 15, 0.8) 75%);
}

.half-thumb-slider figure.effect-sadie.gra-sty2 figcaption::before {
    background: linear-gradient(to bottom, rgba(28, 107, 114, 0) 0%, rgba(37, 112, 117, 0.8) 75%);
    background: -webkit-linear-gradient(to bottom, rgba(28, 107, 114, 0) 0%, rgba(37, 112, 117, 0.8) 75%);
}

.half-thumb-slider figure.effect-sadie.gra-sty3 figcaption::before {
    background: linear-gradient(to bottom, rgba(61, 192, 158, 0) 0%, rgba(60, 191, 157, 0.8) 75%);
    background: -webkit-linear-gradient(to bottom, rgba(61, 192, 158, 0) 0%, rgba(60, 191, 157, 0.8) 75%);
}

.half-thumb-slider figure.effect-sadie.gra-sty4 figcaption::before {
    background: linear-gradient(to bottom, rgba(26, 60, 107, 0) 0%, rgba(53, 107, 182, 0.8) 75%);
    background: -webkit-linear-gradient(to bottom, rgba(26, 60, 107, 0) 0%, rgba(53, 107, 182, 0.8) 75%);
}

.half-thumb-slider figure.effect-sadie.gra-sty5 figcaption::before {
    background: linear-gradient(to bottom, rgba(50, 75, 82, 0) 0%, rgba(89, 117, 125, 0.8) 100%);
    background: -webkit-linear-gradient(to bottom, rgba(50, 75, 82, 0) 0%, rgba(89, 117, 125, 0.8) 100%);
}

.half-thumb-slider figure.effect-sadie.gra-sty6 figcaption::before {
    background: linear-gradient(to bottom, rgba(74, 98, 4, 0) 0%, rgba(74, 98, 4, 0.8) 100%);
    background: -webkit-linear-gradient(to bottom, rgba(74, 98, 4, 0) 0%, rgba(74, 98, 4, 0.8) 100%);

}

.half-thumb-slider figure.effect-sadie.gra-sty7 figcaption::before {
    background: linear-gradient(to bottom, rgba(40, 100, 89, 0) 0%, rgba(41, 100, 88, 0.8) 100%);
    background: -webkit-linear-gradient(to bottom, rgba(40, 100, 89, 0) 0%, rgba(41, 100, 88, 0.8) 100%);

}

.half-thumb-slider figure.effect-sadie h2 {
    position: absolute;
    bottom: 25%;
    left: 0;
    width: 100%;
    color: #fff;
    font-size: 22px;
}

.half-thumb-slider figure.effect-sadie h2:after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0px auto;
    background: url('../img/white-line.svg')no-repeat;
    height: 1px;
    opacity: 0.4;
}

.half-thumb-slider figure.effect-sadie .starts-from {
    position: absolute;
    bottom: 24%;
    left: 0;
    width: 100%;
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.half-thumb-slider figure.effect-sadie .starts-from .flag {
    max-height: 24px;
    margin-right: 5px;
}

.sight-seeing .half-thumb-slider figure.effect-sadie h2 {
    bottom: 30%;
}

.sight-seeing .half-thumb-slider figure.effect-sadie h2:after {
    bottom: -50px;
}

.sight-seeing .half-thumb-slider figure.effect-sadie .booknow {
    bottom: -10px;
}

.starts-label span {
    position: absolute;
    top: 5px;
    left: -4px;
    right: 0;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.half-thumb-slider figure.effect-sadie figcaption::before,
.half-thumb-slider figure.effect-sadie .booknow {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.half-thumb-slider figure.effect-sadie .booknow {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 2em;
    width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0, 300px, 0);
    transform: translate3d(0, 300px, 0);
    transition: 1s all;
}

.half-thumb-slider figure.effect-sadie .booknow .btn:hover,
.half-thumb-slider figure.effect-sadie .booknow .btn:focus {
    background-color: #fff !important;
    border-color: #fff !important;
}

.half-thumb-slider figure.effect-sadie:hover figcaption::before,
.half-thumb-slider figure.effect-sadie:hover .booknow {
    border-radius: 10px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.half-thumb-slider .booknow .btn {
    width: 175px;
    height: 45px;
}

.half-thumb-slider {
    position: relative;
}

.half-thumb-slider.owl-carousel .owl-nav button.owl-next,
.half-thumb-slider.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    color: inherit;
    background: rgba(255, 255, 255, .88);
    border-radius: 100px;
    top: 45%;
    border: 1px solid #ddd;
    z-index: 9999;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    line-height: 41px;
}

.half-thumb-slider .owl-prev i,
.half-thumb-slider .owl-next i {
    font-size: 20px;
    color: #2A2A2A;
}

.half-thumb-slider .owl-prev {
    left: -20px;
}

.half-thumb-slider .owl-next {
    right: -20px;
}

.half-thumb-slider .owl-prev.disabled,
.half-thumb-slider .owl-next.disabled {
    display: none;
}

@media(max-width:991px) {

    .sub-title::before,
    .section-title .sub-style::before {
        display: none;
    }

    .sec-title {
        margin: 0 auto 15px auto;
    }

    .half-thumb-slider .owl-next {
        right: 10px;
    }

    .half-thumb-slider .owl-prev {
        left: 10px;
    }

    .carousel-header .display-1,
    .carousel-header .display-1 span {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .carousel-header .sub-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .sub-title {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .thumbnail-grid .grid-item {
        width: calc(50% - 10px);
        height: 200px;
    }

    .why-choose-us {
        padding-top: 0;
    }

    .why-choose-us .sec-title {
        font-size: 24px;
    }

    .why-choose-us .sec-content {
        font-size: 14px;
    }

    .why-choose-us .feature-list.shadow-bg {
        box-shadow: none;
    }    

    .about-sec .about-content {
        padding: 20px;
    }

    .about-sec .about-content .heading {
        font-size: 22px;
    }

    .custom-primary-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .custom-primary-tabs .table .btn.btn-primary {
        min-width: 100px;
        padding: 7px 10px;
    }

    .custom-primary-tabs .nav-tabs li a {
        min-width: 175px;
        padding: 15px 10px;
    }

    .navbar-collapse {
        left: -100%;
        top: 10px;
        transition: all 0.3s ease;
        width: 95%;
        height: 100vh;
        background-color: #fff;
        position: fixed;
        z-index: 0;
        overflow: hidden;
        padding: 20px;
        margin: 10px;
        border-radius: 10px;
    }

    .oppenned {
        left: 0;
    }

    .c-hamburger {
        display: block;
        position: relative;
        overflow: hidden;
        margin: 10px;
        padding: 0;
        width: 36px;
        height: 36px;
        z-index: 2;
        font-size: 0;
        text-indent: -9999px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: transparent;
        box-shadow: none;
        border-radius: none;
        border: none;
        cursor: pointer;
        -webkit-transition: background 0.3s;
        transition: background 0.3s;
    }

    .c-hamburger:focus {
        outline: none;
    }

    .c-hamburger span {
        display: block;
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 4px;
        background: white;
    }

    .c-hamburger span:before,
    .c-hamburger span:after {
        position: absolute;
        display: block;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #fff;
        content: "";
    }

    .c-hamburger span:before {
        top: -10px;
    }

    .c-hamburger span:after {
        bottom: -10px;
    }

    .c-hamburger--htx span {
        -webkit-transition: background 0s 0.3s;
        transition: background 0s 0.3s;
    }

    .c-hamburger--htx span:before,
    .c-hamburger--htx span:after {
        -webkit-transition-duration: 0.3s, 0.3s;
        transition-duration: 0.3s, 0.3s;
        -webkit-transition-delay: 0.3s, 0s;
        transition-delay: 0.3s, 0s;
    }

    .c-hamburger--htx span:before {
        -webkit-transition-property: top, -webkit-transform;
        transition-property: top, transform;
    }

    .c-hamburger--htx span:after {
        -webkit-transition-property: bottom, -webkit-transform;
        transition-property: bottom, transform;
    }

    .c-hamburger--htx.is-active span {
        background: none;
    }

    .c-hamburger--htx.is-active span:before,
    .c-hamburger--htx.is-active span:after {
        -webkit-transition-delay: 0s, 0.3s;
        transition-delay: 0s, 0.3s;
        background-color: #121212;
    }

    .c-hamburger--htx.is-active span:before {
        top: 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .c-hamburger--htx.is-active span:after {
        bottom: 0;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .carousel-header .carousel-inner .carousel-item {
        height: 550px;
        min-height: 100%;
    }
}

@media(min-width:992px) {
    .toggle-menu {
        display: none;
    }
}

@media(min-width:1199px) and (max-width:1440px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 5px;
    }
}

.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    position: relative;
    height: 300px;
}

.bg-breadcrumb.full-bg {
    height: calc(100vh - 5px);
    background-size: cover;
    background-position: center;
}

.bg-breadcrumb.full-bg .breadcrumb-content {
    bottom: 15%;
}

.bg-breadcrumb.full-bg .display-3 {
    font-size: 50px;
    position: relative;
}

.bg-breadcrumb.full-bg .display-3::after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0px auto;
    background: url('../img/white-line.svg')no-repeat;
    background-size: 75%;
    background-position: center;
    height: 1px;
    opacity: 1;
}

.breadcrumb-content {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    text-align: center;
}

.breadcrumb-content .title {
    font-size: 45px;
    position: relative;
}

@media(min-width:1200px) {
    .breadcrumb-content .title::before {
        content: "";
        width: 250px;
        position: absolute;
        bottom: 40%;
        left: -75%;
        margin-bottom: 0;
        margin-left: -100px;
        background: url('../img/sec-line.png')no-repeat;
        height: 1px;
    }

    .breadcrumb-content .title::after {
        content: "";
        width: 250px;
        position: absolute;
        bottom: 40%;
        right: -75%;
        transform: rotate(-180deg);
        margin-bottom: 0;
        margin-right: -100px;
        background: url('../img/sec-line.png')no-repeat;
        height: 1px;
    }
}

.contact {
    padding: 30px;
}

.inner-page {
    padding: 30px 50px;
}

.inner-page .section-title .display-5 {
    font-size: 32px;
    color: #27262C;
}

.inner-page .section-title p {
    font-size: 16px;
    color: #515151;
}

.inner-page .page-content {
    font-size: 15px;
    color: #27262C;
    margin-bottom: 0;
}

.contact .office-item h4 {
    font-size: 20px;
    color: #121212;
    font-weight: bold;
}

.contact .office-item p,
.contact .office-item a {
    font-size: 15px;
    color: #6E6E6E;
    margin-bottom: 0;
}

.contact .office-item {
    background-color: #F7F7F7;
    border-radius: 10px;
    height: 240px;
}

.contact .office-item .icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cab-package {
    padding: 100px 30px 30px;
}

.cab-package .cab-item {
    border: 1px solid rgba(15, 178, 15, 0.47);
    border-radius: 10px;
    height: 130px;
    position: relative;
    text-align: center;
    margin-bottom: 15px;
}

.cab-package .cab-item .cab-img {
    position: absolute;
    left: 0;
    right: 0;
    top: -37%;
}

.cab-package .cab-item .cab-img .icon {
    max-height: 80px;
}

.cab-package .cab-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.cab-package .cab-content h4 {
    font-size: 18px;
    font-weight: bold;
    color: #121212;
    margin-top: 30px;
}

.mx-75 {
    max-width: 75%;
    margin: 20px auto;
}

.cab-package .thumbnail-gallery .grid-item {
    height: 450px;
}

.cab-package .thumbnail-gallery .grid-item img {
    object-fit: cover;
}

.cab-package .thumbnail-gallery .grid-item.grid-sm {
    height: 215px;
}

.breadcrum-list {
    list-style: none;
    margin-bottom: 15px;
    padding: 0;
}

.breadcrum-list li {
    display: inline-block;
    font-size: 15px;
    color: #27262C;
    padding-right: 10px;
    position: relative;
}

.breadcrum-list li:not(:last-child):before {
    content: ">";
    position: absolute;
    right: -10px;
    top: 0px;
}

.breadcrum-list li a {
    color: var(--color-primary);
}

.breadcrum-list li:not(:last-child) {
    margin-right: 15px;
}

.thumbnail-gallery .grid-item.grid-md {
    height: 250px;
    margin-bottom: 20px;
}

.highlight-sec .heading {
    font-size: 22px;
    color: #121212;
    font-weight: bold;
    margin-bottom: 15px;
}

.highlight-sec ul li, .highlight-sec ol li {
    color: #222;
    font-size: 16px;
    margin-bottom: 10px;
}
.highlight-sec p>strong{
    color: #0FB20F;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.highlight-sec a{
    color: #0000EE;
    font-size: 16px;
    border-bottom: 1px solid #0000EE;
    margin-left: 15px;
}

.inner-page .side-heading {
    font-size: 28px;
    color: #121212;
    font-weight: bold;
}

.package-card.card {
    border-color: #E0E0E0;
    padding: 0px 15px;
    margin-bottom: 25px;
}

.package-card.card .card-header {
    border-bottom: 1px solid #E0E0E0;
    background-color: transparent;
    border-radius: 0;
    padding: 15px 0px;
}

.package-card.card .card-body {
    padding: 10px 0px;
}

.package-card .btn-large {
    width: 170px;
}

.package-card .btn.btn-primary:hover {
    color: #0FB20F !important;
    background-color: #fff !important;
    border-color: #0FB20F !important;
}

.package-card .starts-from {
    font-size: 15px;
    color: #121212;
}

.package-card .cost {
    font-size: 28px;
    color: #121212;
    font-weight: bold;
}

.fixed-sidebar {
    position: sticky;
    top: 30px;
    transition: all 1s;
}

.package-card .card-title {
    font-size: 18px;
    color: #121212;
    font-weight: bold;
    margin-bottom: 0;
}

.package-card .package-list {
    margin-bottom: 15px;
}

.package-card .package-list .img-col {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    margin-right: 10px;
}

.package-card .package-list .heading {
    font-size: 16px;
    color: #121212;
    font-weight: bold;
    margin-bottom: 3px;
}

.package-card .package-list .content {
    width: calc(100% - 85px);
}

.package-card .package-list .seats {
    font-size: 12px;
    color: #6E6E6E;
    margin-bottom: 3px;
}

.package-card .package-list .seats img {
    vertical-align: middle;
}

.package-card .package-list .package-cost {
    font-size: 14px;
    color: #121212;
    font-weight: bold;
    margin-bottom: 0;
}

.PlacetoVisitModal h6 {
    color: #121212;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}
.PlacetoVisitModal .modal-body{
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    margin-bottom: 20px;
}

.PlacetoVisitModal p,
.PlacetoVisitModal li, .custom-modal p {
    font-size: 14px;
    color: #121212;
}

.PlacetoVisitModal.modal, .custom-modal.modal {
    z-index: 99999;
}

.PlacetoVisitModal .modal-title, .custom-modal .modal-title {
    color: #121212;
    font-weight: bold;
    margin-bottom: 0px;
    font-size: 18px;
}

.PlacetoVisitModal ul {
    list-style: none;
    padding: 0;
}

.PlacetoVisitModal li {
    margin-bottom: 10px;
}

.tempo-traveller-page .bg-breadcrumb.full-bg {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.364) 70%), url(../img/tempo-full.png);
    background-size: cover;
    background-position: center;
}

.tempo-traveller-page .bg-breadcrumb.full-bg .info {
    font-size: 22px;
    color: #fff;
    margin: 25px auto;
    font-weight: bold;
    text-align: center;
}

.request-btn.btn.btn-primary {
    border-width: 2px;
}

.request-btn.btn.btn-primary:hover {
    background-color: transparent !important;
    border-color: #0FB20F !important;
    color: #fff !important;
    border-width: 2px;
}

.tempo-traveller-page .thumbnail-gallery .grid-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    left: 0;
    top: 0;
    z-index: 9;
    border-radius: 10px;
}

.tempo-traveller-page .thumbnail-gallery .grid-item .title-line-text {
    font-size: 22px;
    font-weight: bold;
}

.package-details-page .bg-breadcrumb {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.364) 70%), url(../img/package-details-bg.png);
    background-size: cover;
    background-position: center;
}

.package-details-page .thumbnail-grid .grid-item {
    width: 140px;
    height: 160px;
    cursor: pointer;
}

.package-details-page .thumbnail-grid .grid-item.active {
    border: 2px solid #0FB20F;
}

.package-details-page .thumbnail-grid .grid-item .span-text {
    left: 0;
    right: 0;
    font-size: 14px;
    white-space: wrap;
    text-align: center;
    line-height: 20px;
}

.package-details-page .half-thumb-slider .thumb-img {
    height: 250px;
    object-fit: cover;
}

.package-details-page .half-thumb-slider figure.effect-sadie h2 {
    font-size: 18px;
    text-align: left;
    padding: 0px 15px;
    font-weight: bold;
}

.package-details-page .half-thumb-slider figure.effect-sadie h2:after {
    display: none;
}

.package-details-page .half-thumb-slider figure.effect-sadie h2:before {
    content: "";
    width: 90%;
    position: absolute;
    bottom: -10px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    background: url('../img/green-line.png')no-repeat;
    height: 1px;
    opacity: 1;
}

.package-details-page .half-thumb-slider figure.effect-sadie .starts-from {
    text-align: left;
    bottom: 45px;
    left: 17px;
    font-size: 15px;
    display: block;
}

.package-details-page .half-thumb-slider figure.effect-sadie .starts-from .label {
    font-weight: normal;
}

.package-details-page .half-thumb-slider figure.effect-sadie .starts-from .cost {
    font-weight: bold;
}

.itinerary-layout {
    padding: 20px 0px;
}

.itinerary-layout .pickup-heading {
    font-size: 18px;
    font-weight: 500;
    color: #27262C;
    margin-bottom: 15px;
}

.pickup-info {
    border: 1px solid #E0E0E0;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pickup-info.active {
    border-color: #0FB20F;
    color: #0FB20F;
}

.pickup-info i {
    margin: 0px 15px;
}

.pickup-info.active p {
    color: #0FB20F;
}

.pickup-info p {
    color: #515151;
    font-size: 14px;
    margin-bottom: 0;
}

.itinerary-layout .side-heading {
    font-size: 16px;
    color: #27262C;
    font-weight: bold;
    margin-bottom: 0px;
}

.custom-accordion .accordion-header {
    background-color: transparent;
    margin: 0px 15px;
}

.custom-accordion .accordion-header .accordion-button {
    padding-left: 0;
    padding-right: 0;
}

.custom-accordion .accordion-header .accordion-button:focus {
    box-shadow: none;
    background-color: transparent;
}

.custom-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
    border-bottom: 1px solid #E0E0E0;
}

.custom-accordion .accordion-item {
    margin-bottom: 20px;
    border-radius: 10px !important;
    border: 1px solid #E0E0E0 !important
}

.custom-accordion .accordion-item:last-of-type .accordion-button.collapsed {
    background-color: transparent;
}

.custom-accordion .pickup-info {
    background-color: #E0E0E0;
    padding: 10px;
}

.custom-accordion .pickup-info .info-container {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.custom-accordion .pickup-info .info-container span {
    font-size: 15px;
    color: #2A2A2A;
}

.custom-accordion .info-heading {
    font-size: 15px;
    color: #2A2A2A;
    margin: 20px 0px 5px;
}

.custom-accordion .acc-content {
    font-size: 15px;
    color: #2A2A2A;
    margin-bottom: 5px;
}

.custom-accordion .day-badge {
    background-color: #0FB20F;
    padding: 7px 20px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    margin-right: 15px;
}

.custom-accordion .pack-card {
    margin-bottom: 15px;
}

.custom-accordion .highlight-sec .heading {
    font-size: 18px;
    margin: 15px 0px 30px;
}

.custom-accordion .sub-heading {
    font-size: 16px;
    color: #27262C;
    font-weight: bold;
    margin-bottom: 15px;
}

.half-thumb-slider .custom-img {
    background-color: #0FB20F;
}

.half-thumb-slider .custom-img figcaption {
    position: absolute;
    bottom: 25%;
    left: 0;
    right: 0;
}

.half-thumb-slider .custom-img .call-btn.btn.btn-primary {
    background-color: #fff !important;
    border-radius: 100px !important;
    padding: 10px 40px;
    color: #0FB20F !important;
    font-size: 16px;
    font-weight: 600;
}

@media(max-width:767px){
    .inner-page {
        padding: 15px 20px;
    }
    .mx-75{
        max-width: 100%;
    }
    .breadcrumb-content .title{
        font-size: 32px;
    }
    .half-thumb-slider .thumb-img{
        height: 350px;
    }
    .cab-package .thumbnail-gallery .grid-item {
        height: 300px;
    }
    .cab-package .container-fluid{
        padding-left: 0;
        padding-right: 0;
    }
    .cab-package .cab-item{
        margin-bottom: 50px;
    }
    .cab{
        margin-top: 20px;
    }
    .sub-title
    {
        min-width: 100%;
    }
    .package-details-page .thumbnail-grid .grid-item{
        width: calc(50% - 10px);
    }
    .thumbnail-gallery .grid-item {
        height: 200px;
    }
    .thumbnail-grid.popular-routes{
        flex-wrap: wrap;
    }
    .thumbnail-grid.popular-routes .grid-item{
        width: calc(50% - 10px);
    }
    .cab-package .thumbnail-gallery .grid-item{
        height: 215px;
    }
    .cab-info-mobile{
        margin-top: 50px;
    }
}
.bg-breadcrumb.sightseeing-bg{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.364) 70%), url(../img/sightseeing-bg.png);
    background-size: cover;
    background-position: center;
}
.bg-breadcrumb.sightseeing-inner-bg{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.364) 70%), url(../img/sightseeing-inner-bg.png);
    background-size: cover;
    background-position: center;
}
.bg-breadcrumb.cab-bg{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.364) 70%), url(../img/cab-bg.png);
    background-size: cover;
    background-position: center;
}
.bg-breadcrumb.contact-bg{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.364) 70%), url(../img/contact-bg.png);
    background-size: cover;
    background-position: center;
}
.bg-breadcrumb.place-bg{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.364) 70%), url(../img/place-bg.png);
    background-size: cover;
    background-position: center;
}
.pickup-drop-page .thumbnail-gallery .grid-item:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99;
    right: 0;
}
.c-pointer{
    cursor: pointer;
}
.page-section-content .side-heading{
    font-size: 16px;
    color: #121212;
    font-weight: bold;
}
.page-section-content p{
    font-size: 16px;
    color: #121212;
}
.page-section-content .highlight-text{
    color: #0FB20F;
    font-size: 16px;
    font-weight: bold;
}
.page-section-content ul li{
    margin-bottom: 15px;
    font-size: 16px;
    color: #121212;
}
.page-section-content .sec-col{
    margin-bottom:25px;
}