@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --default-color: #ffffff;
    --primary-color: #000000;
    --secondary-color: #D98D5B;
    --light-color: #FFDEC8;
    /* --secondary-color: #1f2853;
    --light-color: #edfbfe;
    --light-thin-color: #e0f8ff;
    --gray-color: #a8aab6;
    --black-color: #000000; */
}

html{
    font-size: 10px;
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    color: #333333;
}

.default-color{
    color: var(--default-color)!important;
}

.primary-color{
    color: var(--primary-color)!important;
}

.gradient-color{
    color: var(--secondary-color)!important;
}

.hover-color{
    color: var(--light-color)!important;
}

/* .light-color{
    color: var(--light-color)!important;
}

.light-thin-color{
    color: var(--light-thin-color)!important;
}

.gray-color{
    color: var(--gray-color)!important;
}

.black-color{
    color: var(--black-color)!important;
} */

h1,h2,h3,h4,h5,h6,p,figure{
    margin: 0;
}

h1, h2{
    font-size: 2.5rem;
}

h3{
    font-size: 2.4rem;
}

h4{
    font-size: 2.2rem;
}

h5, h6{
    font-size: 2rem;
}

p {
    font-size: 1.6rem;
    line-height: 1.7;
}

.form-control {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
}

/* header starts here */

header {
    box-shadow: 0 0 3.5px rgba(0,0,0,0.15);
    z-index: 9;
    position: relative;
}

.logo .navbar-brand {
    max-width: 20rem;
    display: block;
}

#navbar-menu .navbar-nav {
    gap: 3rem;
}

#navbar-menu .navbar-nav li a {
    display: block;
    font-size: 1.6rem;
    color: var(--primary-color);
    padding: 0 0 0.3rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

#navbar-menu .navbar-nav li a.active {
    border-bottom: 1px solid var(--secondary-color);
}

header .navbar-toggler {
    font-size: 3rem;
    color: var(--title-color);
    border: 0;
    padding: 0;
}

header .navbar-toggler:focus {
    box-shadow: none;
}

/* header ends */

.custom-btn {
    background: var(--secondary-color);
    display: flex;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: 1px solid var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 0.5rem;
    max-width: max-content;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.custom-btn i {
    margin-left: 1rem;
}

.custom-btn:hover{
    background: 0;
    color: var(--secondary-color);
}

.section-heading {
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--primary-color);
    font-family: "Playfair Display", serif;
}

.banner-heading {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.section-subheading {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-padding {
    padding: 4rem 0;
}

.section-padding-top{
    padding-top: 4rem;
}

.section-padding-bottom{
    padding-bottom: 4rem;
}

/* top news section starts here */

.recent-news .section-heading {
    font-size: 3rem;
    border-bottom: 1px solid var(--secondary-color);
    max-width: max-content;
}

.recent-news-item {
    border-bottom: 1px solid hwb(0deg 0% 100% / 20%);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.recent-news-item a {
    text-decoration: none;
    color: #333333;
    font-weight: 400;
    font-size: 1.6rem;
    transition: all 0.3s;
}

.recent-news-item a:hover {
    color: var(--secondary-color);
}

.recent-news-item .post-author {
    padding: 0;
    margin-top: 1rem;
}

.top-news-center-img {
    display: block;
    width: 100%;
    height: 34rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.top-news-center-img figure,
.top-news-center-img figure img {
    width: 100%;
    height: 100%;
}

.top-news-center h2 {
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: "Mona Sans", sans-serif;
}

.top-news-center h2 a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s;
}

.post-and-like {
    margin-top: 2rem;
}

.post-name {
    font-size: 1.4rem;
    font-weight: 700;
}

.post-date {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    font-weight: 400;
    color: #333333a3;
}

.likes-and-comment {
    gap: 4rem;
}

.like-column, .comment-column {
    font-size: 1.4rem;
    color: #333333a3;
    font-weight: 400;
}

.like-column i, .comment-column i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-right: 1rem;
    cursor: pointer;
}

/* top news section ends here */

.top-grid-left-item {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    display: block;
}

.top-grid-left-item figure {
    width: 100%;
    height: 55rem;
    overflow: hidden;
}

.top-grid-left-item figure img {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.upper-text {
    position: absolute;
    bottom: 0;
    color: var(--default-color);
    padding: 3rem;
}

.upper-text h2 {
    font-size: 3.5rem;
    line-height: 1.5;
    font-weight: 700;
}

.upper-text h2 .fa-arrow-right-long {
    display: block;
    margin-top: 0.5rem;
}

.grid-row-item {
    gap: 2rem;
    margin-bottom: 2rem;
    text-decoration: none;
}

.grid-img {
    width: 20rem;
    min-width: 20rem;
    overflow: hidden;
    height: 12.3rem;
    border-radius: 1rem;
}

.grid-img img {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.grid-row-item-details {
    flex: 1;
}

.grid-row-item h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--primary-color);
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.grid-row-item h3:hover {
    color: var(--light-color);
}

.grid-row-item-details p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: var(--primary-color);
}

.column-img {
    width: 100%;
    height: 29rem;
    overflow: hidden;
    border-radius: 1rem;
}

.column-img a {
    display: block;
    height: 29rem;
}

.column-img img {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    object-fit: cover;
}

.column-box-details {
    padding-left: 1rem;
    padding-top: 2rem;
}

.date-and-time {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.column-heading {
    font-size: 2rem;
    margin-top: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.column-heading a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.column-heading a:hover {
    color: var(--light-color);
}

.custom-btn-1 {
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s;
}

.custom-btn-1:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

.three-item-slider .owl-nav button {
    width: 4rem;
    height: 4rem;
    background: var(--secondary-color) !important;
    border-radius: 50% !important;
    color: var(--primary-color) !important;
}

.three-item-slider .owl-nav {
    position: absolute;
    top: -7rem;
    right: 0;
    gap: 0.5rem;
    display: flex;
}

.three-item-slider .owl-stage-outer .owl-stage {
    padding-left: 0 !important;
}

.block-listing-img {
    width: 100%;
    height: 40rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.block-listing-img a {
    display: block;
}

.block-listing-img a img {
    width: 100%;
    height: 100%;
}

.post-author {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.post-author p {
    font-size: 1.5rem;
    margin: 0;
}

.post-author p i {
    margin-left: 5rem;
}

.block-listing-left h2 {
    padding: 0 1rem 2rem;
    font-size: 5rem;
    font-weight: 700;
}

.block-listing-left h2 a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s
}

.block-listing-left p {
    margin: 0 1rem;
}

.highlight-headline {
    background: var(--secondary-color);
    position: relative;
    width: max-content;
    padding: 0.8rem 5rem 0.5rem 1rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.block-listing-group {
    border-top: 1px solid var(--secondary-color);
}

.block-listing-item {
    margin-top: 3rem;
}

.block-listing-item h3 a {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.block-listing-item h3 a:hover,
.block-listing-left h2 a:hover {
    color: var(--light-color);
}

.offers-box {
    display: block;
    position: relative;
}

.offers-box figure {
    width: 100%;
    height: 33rem;
    overflow: hidden;
    border-radius: 1rem;
}

.offers-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.offers-box-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding: 3rem 0;
}

.offers-box-details .column-heading {
    color: var(--default-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

.gradient-heading {
    background-image: linear-gradient(180deg, #FAD763 0%, #FE5CCB 100%);
    color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
}

.offers-box-details p {
    font-size: 1.6rem;
    color: var(--default-color);
    font-weight: 300;
    margin-top: 0.5rem;
}

.listing-search-form {
    display: flex;
    border: 1px solid rgb(0 0 0 / 25%);
    border-radius: 5rem;
    padding: 0.6rem 2rem;
    margin-bottom: 3rem;
}

.listing-search-form .form-control {
    border: 0;
    background: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 500;
}

.listing-search-form .form-control::placeholder{
    color: rgb(0 0 0 / 25%);
}

.listing-search-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.search-icon {
    width: 4rem;
    cursor: pointer;
}

.search-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flight-item {
    border: 1px solid #FF4E50;
    border-radius: 10rem;
    padding: 0rem 0 0rem 2rem;
}

.flight-item-img {
    width: 5rem;
    padding-right: 1rem;
    border-right: 1px solid #ddd;
}

.flight-item-img img {
    width: 100%;
    height: 100%;
}

.flight-name-and-date {
    padding-left: 2rem;
}

.flight-name {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 0.2rem;
}

.flight-name span {
    font-weight: 500;
}

.flight-date {
    font-size: 1.5rem;
    color: #3A3A3A;
}

.flight-icon {
    width: 4rem;
    margin-left: 5rem;
    margin-right: 2rem;
}

.flight-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ticket-price {
    background: var(--secondary-color);
    flex: 1;
    border-radius: 5rem;
    padding: 1rem;
    text-align: center;
    margin-left: 2rem;
}

.ticket-price a {
    font-size: 3rem;
    color: var(--primary-color);
    text-decoration: none;
}

.compare-column {
    border: 1px solid #FF4E50;
    padding: 2rem;
    border-radius: 1.5rem;
}

.compare-item {
    text-align: center;
    width: 50%;
    text-decoration: none;
    display: block;
}

.compare-item-img {
    width: 100%;
    height: 10rem;
    overflow: hidden;
}

.compare-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compare-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 1rem;
}

.compare-price {
    color: #3A3A3A;
    font-weight: 400;
    font-size: 1.5rem;
}

.compare-column .custom-btn {
    max-width: 90%;
    margin: auto;
    margin-top: 2rem;
    font-size: 2.5rem;
    font-weight: 600;
    border-radius: 5rem;
}

.compare-column span {
    width: 4rem;
    height: 4rem;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    min-width: 4rem;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 0;
    position: relative;
}

.compare-item:first-child {
    position: relative;
}

.compare-item:first-child::before {
    position: absolute;
    content: "";
    background: #fad365;
    width: 1px;
    height: 86%;
    right: -2rem;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(10deg);
}

/* other css starts */

.make-different-caars-container {
    display: flex;
    box-shadow: 0 0 9px #ddd;
    border-radius: 8px;
}

.make-different-caars-left {
    flex: 1;
    padding: 18px;
    height: 100%;
    margin-right: 40px;
}

.make-different-caars-left p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.make-different-caars-list {
    margin-top: 20px;
}

.make-different-caars-list li {
    font-size: 14px;
    margin-bottom: 6px;
}

.make-different-caars-right {
    text-align: center;
    border-radius: 8px;
    max-width: 400px;
    position: relative;
    z-index: 1;
    padding-top: 4rem;
}

.make-different-caars-right:before {
    position: absolute;
    content: "";
    height: calc(100% + 70px);
    width: 100%;
    background: var(--secondary-color);
    z-index: -1;
    box-shadow: 0 0 9px #8d8d8d;
    border-radius: 8px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* .make-different-caars-right::after {
    position: absolute;
    content: "";
    background: url("/assets/images/sign-up-newlatter-circle.png") no-repeat
    bottom/ cover;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -70px;
    z-index: -1;
} */

.make-different-caars-right h3 {
    font-size: 20px;
    line-height: 1.5;
    color: var(--default-color);
    padding: 25px;
}

.make-different-caars-right .form-group {
    width: 85%;
    display: flex;
    justify-content: center;
    margin: auto;
    gap: 5px;
}

.make-different-caars-right .form-control {
    width: 100%;
    padding: 10px 18px;
    height: auto;
    font-size: 14px;
}

.make-different-caars-right .form-group .custom-btn {
    min-width: max-content;
    padding: 1rem 2rem;
}

/* other css ends */

/* footer starts here */

footer {
    background: var(--secondary-color);
    padding: 4rem 0 1rem;
}

.footer-column-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.footer-column-container .footerMenuColumn {
    width: 100%;
    border-right: 1px solid #0000002b;
    padding: 0 2rem;
}

.footer-column-container .footerMenuColumn:first-child {
    padding-left: 0;
    padding-right: 2rem;
}

.footerLogo {
    max-width: 20rem;
    margin-bottom: 2rem;
}

.footer-column-container .footerMenuColumn:first-child p {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-align: justify;
    line-height: 1.6;
    font-weight: 400;
}

.footer-column-container .footerMenuColumn:last-child {
    grid-column: span 2;
    border-right: 0;
    padding-right: 0;
}

.footer-menu-inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 4rem;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.footer-menu-inline-list li a {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 3px;
    transition: all 0.3s;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.footerSocialIconBox {
    margin-bottom: 2rem;
}

.footerSocialIcon {
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}

.footerSocialIcon > li > a {
    background: var(--primary-color);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--default-color);
    font-size: 1.8rem;
    transition: all 0.3s;
    border-radius: 4px;
    text-decoration: none;
}

.footerSocialIcon > li > a.facebook {
    background: #334c8c;
}

.footerSocialIcon > li > a.linkedin {
    background: #0b69c7;
}

.footerSocialIcon > li > a.youtube {
    background: #c91d1d;
}

.footerHeading h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 3rem;
}

.footerMenuColumnList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerMenuColumnList > li > a {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.footer-popular-car {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 10px;
}

.car-news-right-items {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.3s;
    border-radius: 5px;
    background: 0;
    box-shadow: 0 0 9px #202020;
    overflow: hidden;
    border: 1px solid #484848;
}

.footer-popular-car .car-news-smlImg {
    margin-right: 5px;
    background: var(--default-color);
}

.car-news-smlImg figure {
    width: 80px;
    height: 70px;
    border-right: 1px solid rgb(0 0 0 / 10%);
    overflow: hidden;
}

.car-news-smlImg figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-popular-car .car-heading {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
}

.footer-popular-car .car-price {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 500;
}

.footer_bottom {
    border-top: 1px solid #0000002b;
    padding-top: 1rem;
}

.copurightText p {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* footer ends here */

.pass-sights-details p {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

/* Cards */

.step-card {
    background: var(--default-color);
    border-radius: 1rem;
    padding: 1.4rem;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2rem;
    max-width: 52rem;
    box-shadow: 0px 4px 15px 2px #00000059;
}

.icon-box {
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
}

.icon-box img {
    width: 3rem;
    object-fit: contain;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 2rem;
}

.step-text {
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
}

/* Right Image Gallery */

.hero-gallery{
    position:relative;
    width:100%;
    height:520px;
}

.gallery-item{
    position:absolute;
    overflow:hidden;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* TOP TRAIN WINDOW */
.item-1{
    width:160px;
    height:135px;
    left:70px;
    top:0;
    z-index:2;
}

/* WOMAN AT PLATFORM */
.item-2{
    width:190px;
    height:130px;
    right:0;
    top:30px;
    z-index:3;
}

/* BIG RED TRAIN */
.item-3{
    width:300px;
    height:130px;
    left:35px;
    top:128px;
    z-index:4;
}

/* YELLOW TRAIN */
.item-4{
    width:190px;
    height:130px;
    right:0;
    top:160px;
    z-index:2;
}

/* GIRL WITH BAG */
.item-5{
    width:170px;
    height:115px;
    left:60px;
    bottom:30px;
    z-index:3;
}

/* PLATFORM */
.item-6{
    width:120px;
    height:60px;
    right:100px;
    bottom:55px;
    z-index:1;
}

/* BEACH */
.item-7{
    width:70px;
    height:50px;
    right:20px;
    bottom:65px;
    z-index:1;
}

