@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
    font-family: Helvetica;
    font-weight: 100;
    src: url('/../../assets/font/helvetica/Helvetica.ttf');
}

@font-face {
    font-family: Helvetica;
    font-weight: 200;
    src: url('/../../assets/font/helvetica/Helvetica-Bold.ttf');
}

:root {
    --default-color: #ffffff;
    --primary-color: #000000;
    --secondary-color: #d36335;
    --dark-color: #1b3358;
    --light-color: #fff2e2;
}

html{
    font-size: 10px;
}

body{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    /* font-family: Helvetica; */
}

.default-color{
    color: var(--default-color)!important;
}

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

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

.dark-color{
    color: var(--dark-color)!important;
}

.light-color{
    color: var(--light-color)!important;
}

h1, h2, h3, h4, h5, h6, p, figure{
    margin:0;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}

a{
    text-decoration: none;
}

p {
    font-size: 1.6rem;
    line-height: 1.6;
}

.custom-btn {
    display: inline-block;
    background: var(--secondary-color);
    font-size: 1.6rem;
    color: var(--default-color);
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 40px;
    min-width: 14rem;
    text-align: center;
    transition: all 0.3s;
    font-family: Helvetica;
}

.custom-btn:hover {
    background: var(--dark-color);
}

.section-padding{
    padding: 5rem 0;
}

.section-padding-top{
    padding-top: 5rem;
}

.section-padding-bottom{
    padding-bottom: 5rem;
}

.section-heading {
    font-size: 4rem;
    font-family: Helvetica;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    z-index: 0;
    padding-top: 1.5rem;
    margin-bottom: 1rem;
    /* display: inline-block;
    overflow: hidden; */
}

.section-heading::before {
    position: absolute;
    content: "";
    background: url('../../assets/images/curved-line.png') no-repeat;
    width: 23rem;
    height: 1.5rem;
    top: 0;
    left: 0;
    transition: all 0.4s;
    z-index: 2;
}

.heading-center-arrow {
    position: relative;
    text-align: center;
}

.heading-center-arrow::before {
    right: 0;
    margin: auto;
}

.custom-light-bg{
    background: var(--light-color);
}

/* header css starts here */

header .navbar {
    padding: 0;
    box-shadow: 0px 2px 8px -2px #e6e2e2;
}

.headerTop {
    border-bottom: 1px solid #ddd;
}

.logo .navbar-brand {
    display: block;
    padding: 0;
    max-width: 20rem;
    height: 15rem;
}

.logo .navbar-brand img {
    height: 100%;
    object-fit: contain;
}

.navbarMenu>li {
    padding: 1.5rem 2rem;
    overflow: hidden;
    list-style: none;
}

.navbarMenu>li>a {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    text-decoration: none;
    position: relative;
    transition: all 0.4s;
    z-index: 0;
    font-family: Helvetica;
}

.navbarMenu>li>a::after {
    position: absolute;
    content: "";
    background: url('../../assets/images/curved-line.png') no-repeat;
    width: 100%;
    height: 100%;
    top: 100%;
    left: -100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 2;
}

.navbarMenu>li>a:hover::after,
.navbarMenu li .active::after{
    opacity: 1;
    visibility: visible;
    left: 0;
}

.navbarMenu>li>a:hover{
    color: var(--secondary-color);
}

.navbarMenu li .active{
    color: var(--secondary-color);
}

.headerTop .navbar-toggler {
    padding: 0;
    border: 0;
    font-size: 4rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.header-ads-on-mobile {
    padding-top: 0.5rem;
}

/* header css ends here */

.horizontal-banner a img, .header-ads a img {
    transition: all 0.5s;
}

.horizontal-banner a img:hover, .header-ads a img:hover {
    transform: scale(1.02);
}

/* home page starts here */

.discover-destination {
    padding: 6rem 0 5rem;
}

.discover-destination-right {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.top-banner {
    height: 40rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-banner .section-heading {
    font-size: 5rem;
}

.white-arrow::before {
    background: url('../../assets/images/curved-white-line.png') no-repeat;
    right: 0;
    margin: auto;
}

.home-about-list {
    margin-top: 3rem;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 4rem;
}

.home-about-list li {
    position: relative;
    font-size: 1.6rem;
    width: calc(50% - 2rem);
    padding-left: 3rem;
}

.home-about-list li::before {
    position: absolute;
    content: "\f101";
    font-family: 'FontAwesome';
    left: 0;
    top: 0;
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.destination-block-img figure {
    width: 100%;
    height: 35rem;
    margin: 0;
    border-radius: 1rem;
    overflow: hidden;
}

.destination-block-img figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.destination-block-img figure img:hover {
    transform: scale(1.1);
}

.destination-box {
    box-shadow: 0 0 12.5px rgba(0,0,0,0.25);
    transition: transform .12s ease, box-shadow .12s ease;
}

.destination-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.destination-image figure {
    width: 100%;
    height: 20rem;
    overflow: hidden;
}

.destination-image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.destination-image figure:hover img{
    transform: scale(1.05)
}

.destination-box-details {
    padding: 1rem 0.8rem 0.6rem;
    background: var(--default-color);
}

.column-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.column-heading a {
    color: var(--primary-color);
    transition: all 0.3s;
}

.column-heading a:hover {
    color: var(--secondary-color);
}

.destination-box-details p {
    font-size: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.location-price-row {
    margin-top: 0.5rem;
}

.location {
    position: relative;
}

.location::before {
    content: "\f3c5";
    font-family: 'FontAwesome';
    color: var(--dark-color);
    font-size: 2rem;
}

.destination-price {
    font-weight: 700;
    font-size: 2rem !important;
    color: var(--dark-color);
}

.destination-price::before {
    content: "\e1bc";
    font-family: 'FontAwesome';
    color: var(--dark-color);
    font-size: 1.6rem;
}

.why-travel-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.why-travel-item {
    text-align: center;
    position: relative;
    z-index: 0;
}

.why-travel-item::after {
    position: absolute;
    content: '';
    background: url('../../assets/images/travel-curved-line.png') no-repeat center /cover;
    width: 100%;
    height: 8rem;
    top: 2rem;
    right: -20rem;
    z-index: 1;
}

.why-travel-item:last-child::after{
    display: none;
}

.travel-number {
    width: 5rem;
    height: 5rem;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--default-color);
    font-weight: 700;
    margin: auto;
    border-radius: 50%;
    z-index: 9;
    position: relative;
}

.why-travel-item .column-heading {
    margin-top: 5rem;
    margin-bottom: 1.5rem;
}

.why-travel-item p {
    font-size: 1.5rem;
}

.popular-tourist-item {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 0.5rem;
}

.popular-tourist-item figure {
    width: 100%;
    height: 35rem;
    overflow: hidden;
}

.popular-tourist-item figure:hover img {
    transform: scale(1.05);
}

.popular-tourist-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.tourist-item-details {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem 1rem 1rem;
    background: rgb(0 0 0 / 45%);
}

.tourist-item-details .column-heading {
    font-size: 2.5rem;
    color: var(--default-color);
    margin: 0;
    transition: all 0.3s;
}

.tourist-item-details .column-heading:hover {
    color: var(--light-color);
}

.travel-deals {
    height: 38rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.travel-deals p {
    color: var(--default-color);
    font-size: 2rem;
}

.offer-box {
    box-shadow: 0 0 9px #c1c1c1;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform .12s ease, box-shadow .12s ease;
}

.offer-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.offer-box figure {
    width: 100%;
    height: 20rem;
    overflow: hidden;
}

.offer-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.offer-box figure:hover img {
    transform: scale(1.05);
}

.offer-box-details {
    background: var(--light-color);
    text-align: center;
    padding: 1rem;
}

.offer-box-details .column-heading {
    font-size: 1.6rem;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: 400;
}

.offer-box-details .custom-btn {
    margin-top: 1rem;
}

.sign-up-form {
    margin-top: 2rem;
    gap: 1rem;
}

.sign-up-form .form-control {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    border-radius: 4rem;
    border: 1px solid var(--dark-color);
}

.submit-btn {
    border: 0;
    padding: 1rem;
}

/* Footer starts here */

footer {
    background: var(--dark-color);
    padding: 7rem 0 0;
}

.footer-logo {
    height: 150px;
}

.footer-logo a img {
    height: 100%;
}

.footer-column-left p {
    color: var(--default-color);
    font-size: 1.5rem;
}

.footer-heding {
    font-size: 2.4rem;
    color: var(--default-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 0;
    font-weight: 700;
    padding-bottom: 2rem;
}

.footer-heding::before {
    position: absolute;
    content: "";
    background: url(../../assets/images/curved-line.png) no-repeat;
    width: 27rem;
    height: 1.5rem;
    bottom: 0;
    left: 0;
    transition: all 0.4s;
    z-index: 5;
}

.footer-menu-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-menu-list li {
    width: calc(50% - 0.5rem);
}

.footer-menu-list li a {
    color: var(--default-color);
    font-size: 1.5rem;
}

.footer-menu-list li a::after {
    position: absolute;
    content: "";
    background: url(../../assets/images/curved-line.png) no-repeat;
    width: 100%;
    height: 100%;
    top: 100%;
    left: -100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 2;
}

.footer-menu-list li a:hover::after {
    opacity: 1;
    visibility: visible;
    left: 0;
}

.copyright-container {
    border-top: 1px solid #ffffff45;
    margin-top: 2rem;
}

.copyright-container p {
    font-size: 1.3rem;
}

.copyright-container .footer-menu-list {
    gap: 3rem;
}

.copyright-container .footer-menu-list li {
    width: max-content;
}

.copyright-container .footer-menu-list li a {
    font-size: 1.4rem;
}

/* individual page */

.holiday-vacation-content .section-heading {
    margin-bottom: 2rem;
}

.holiday-vacation-content p {
    margin-top: 1rem;
}

.holiday-vacation figure {
    height: 100%;
}

.trip-highlight-box {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.trip-highlight-item {
    display: block;
    text-align: center;
    transition: all 0.3s;
}

.trip-highlight-item figure {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    background: var(--light-color);
    box-shadow: 0 0 9px #c1c1c1;
}

.trip-highlight-item:hover img{
    transform: scale(1.04);
}

.trip-highlight-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: all 0.3s;
}

.trip-highlight-item .column-heading {
    margin-top: 1rem;
    margin-bottom: 0;
    transition: all 0.3s;
    font-size: 1.5rem;
}

.trip-highlight-item .column-heading:hover{
    color: var(--secondary-color);
}

.tours-form-container p {
    color: var(--default-color);
}

.tours-form-container .form-group .form-control, .tours-form-container .form-group .form-select {
    font-size: 1.4rem;
    padding: 1rem;
}

.tours-form-container .form-group .form-select{
    cursor: pointer;
}

.tours-form-container .form-check-label {
    color: var(--default-color);
    font-size: 1.3rem;
    margin: 2rem 0;
}

/* faq section starts here */

.faq-section .section-heading {
    margin-bottom: 40px;
}

.faq-container .accordion {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-container .accordion-item {
    border: 0;
    padding: 1.5rem;
    width: calc(50% - 2rem);
    box-shadow: 0 0 9px #ddd;
    border-radius: 1rem;
}

.faq-container .accordion-button {
    background: 0;
    padding: 0;
    border-bottom: 0;
    border-radius: 0 !important;
    font-weight: 600;
    font-size: 1.8rem;
    box-shadow: none;
    line-height: 1.5;
}

.faq-container .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
}

.faq-container .accordion-body {
    padding: 0;
    padding-top: 1rem;
}

.faq-container .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.faq-container .accordion-button::after {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: auto;
    transition: transform 0.2s;
    background: none;
    border: 0;
    /* width: 40px;
    height: 40px; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.faq-container .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: rotate(180deg);
    background: none;
    color: var(--secondary-color);
    /* border-color: var(--secondary-color); */
}

.travel-planning-details {
    padding: 2rem;
}

.travel-planning-details .custom-btn {
    margin-top: 1rem;
}

.travel-planning-image {
    text-align: end;
}

.travel-planning-image figure {
    max-width: 100%;
    height: 33rem;
    overflow: hidden;
}

.travel-planning-image figure img {
    height: 100%;
    border-radius: 2rem;
}

.four-destination-slider .offer-box {
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.1);
}

.four-destination-slider .offer-box-details {
    background: var(--default-color);
    text-align: left;
}

.post-and-date {
    margin-bottom: 0.6rem;
}

.post-name, .post-date {
    font-size: 1.4rem;
}

.four-destination-slider .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--dark-color) !important;
    color: var(--default-color) !important;
    border-radius: 50% !important;
    top: 0;
    bottom: 0;
    margin: auto !important;
}

.four-destination-slider .owl-nav button.owl-prev {
    left: -1.5rem;
    box-shadow: -3px 3px 9px #757575;
}

.four-destination-slider .owl-nav button.owl-next {
    right: -1.5rem;
    box-shadow: 3px 3px 9px #757575;
}

.slider-banner-item {
    display: block;
    transition: all 0.3s;
}

.slider-banner-item figure {
    width: 100%;
    height: 35rem;
    border-radius: 1rem;
    overflow: hidden;
}

.slider-banner-item figure img {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    border-radius: 1rem;
}

.slider-banner-item:hover img{
    transform: scale(1.05);
}

.top-destination-item {
    border: 2px solid rgba(27,51,88,0.3);
    padding: 2rem;
    height: 100%;
    background: var(--default-color);
}

.top-destination-item figure {
    width: 4rem;
    height: 6rem;
}

.top-destination-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top-destination-item .column-heading {
    margin: 1rem 0;
}

.top-destination-item p {
    font-size: 1.5rem;
    color: #707070;
}

.looking-for-travel {
    height: 40rem;
    display: flex;
    align-items: center;
}

.white-arrow-left::before {
    left: 0;
    margin: inherit;
}

.travel-partner-item {
    display: block;
    background: var(--default-color);
    padding: 1rem;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
    border-radius: 0.8rem;
    overflow: hidden;
}

.travel-partner-item figure {
    width: 100%;
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.travel-partner-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s;
}

.travel-partner-item:hover img {
    transform: scale(1.05);
}

/* contact us page css starts here */

/* .top-banner {
    height: 45rem;
    display: flex;
    align-items: center;
} */

.top-banner p {
    font-size: 2.2rem;
}

.trusted-travels-container {
    padding: 2rem 0;
}

.trusted-travels-box {
    align-items: center;
    gap: 1.5rem;
    border-right: 1px solid var(--secondary-color);
    padding: 0 4rem;
}

.trusted-travels-box:last-child{
    border-right: 0;
}

.trusted-travels-box figure {
    min-width: 4rem;
    max-width: 4.5rem;
    height: 4rem;
}

.trusted-travels-box figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trusted-travels-text {
    color: var(--title-color);
}

.trusted-travels-text p {
    font-size: 1.4rem;
    font-weight: 700;
}

/* contact form */

.indiPro-contactUs-container {
    background: var(--default-color);
    box-shadow: 0 0 9px #ddd;
    border-radius: 0.8rem;
}

.start-journey-heading {
    background: var(--dark-color);
    padding: 2rem;
    border-radius: .8rem .8rem 0 0;
    position: relative;
    z-index: 1;
}

.start-journey-heading:before {
    position: absolute;
    content: "";
    background: var(--dark-color);
    width: 4rem;
    height: 4rem;
    bottom: -1rem;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    z-index: -1;
}

.start-journey-heading .section-heading {
    margin-bottom: 0;
    padding-top: 0;
    font-size: 3rem;
    color: var(--default-color);
    font-weight: 400;
}

.start-journey-heading .section-heading::before{
    display: none;
}

.start-journeyForm-container {
    border-top: 0;
    border-radius: 0 0 .8rem .8rem;
    padding: 5rem 5rem 3rem;
}

.start-journeyForm-container .form-group {
    margin-bottom: 4rem;
    position: relative;
}

.start-journey-label {
    position: absolute;
    top: -1rem;
    left: 3rem;
    background: #fff;
    padding: 0 1rem;
    line-height: 1;
    font-weight: 500;
    font-size: 1.5rem;
}

.start-journeyForm-container .form-control {
    padding: 1.4rem;
    font-size: 1.2rem;
    border: 1px solid var(--dark-color);
}

.start-journeyForm-container .form-group.select-form-control:after {
    line-height: inherit;
}

.start-journeyForm-container .custom-btn {
    min-width: 20rem;
}

.select-form-control {
    position: relative;
}

.select-form-control:after {
    position: absolute;
    content: "\f078";
    font-family: 'FontAwesome';
    top: 50%;
    right: 20px;
    bottom: 0;
    margin: auto;
    font-size: 14px;
    color: var(--title-color);
    transform: translateY(-50%);
    line-height: 1;
}

.select-form-control .form-control {
    cursor: pointer;
}

/* form ends */

.contact-address-box {
    background: var(--light-color);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 0 9px #ddd;
}

.contact-address-box .column-heading {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.contact-address-box address {
    font-size: 1.5rem;
    color: #5a5a5a;
}

.contact-address-box address a {
    color: var(--primary-color);
}

.contact-address-box address a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.discover-dream-container {
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    bottom: -4rem;
    border-radius: 2rem;
    overflow: hidden;
}

.get-started-container .custom-btn{
    margin-top: 2rem;
}

.discover-dream-container .section-heading {
    padding: 0;
    color: var(--default-color);
    font-size: 5rem;
}

.discover-dream-container .section-heading::before{
    display: none;
}

/* about us css */

.about-who-we-are .section-heading::before {
    width: 15rem;
}

.listing-search {
    padding: 8rem 0;
}

.listing-search-form {
    display: flex;
    background: var(--default-color);
    align-items: center;
    border-radius: 0.6rem;
}

.listing-search-form .form-control {
    padding: 1.3rem 1.5rem;
    border: 0;
    font-size: 1.3rem;
}

.listing-search-icon {
    width: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.listing-search-icon svg {
    font-size: 2rem;
}

.listing-search-icon path {
    fill: var(--secondary-color);
}

.choose-destination-img figure {
    border-radius: .8rem;
    overflow: hidden;
    width: 100%;
    height: 45rem;
}

.choose-destination-img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-destination-content {
    background: var(--light-color);
    position: relative;
    right: 8rem;
    border-radius: 1.5rem;
    padding: 3rem 2.4rem;
}

.choose-destination-content p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.choose-destination-content .custom-btn {
    margin-top: 1.5rem;
}

.dream-vacation {
    overflow: hidden;
}

.dream-vacation-item {
    background: var(--default-color);
    padding: 2rem 1rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 17.5px rgba(0, 0, 0, 0.23);
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.dream-vacation-item figure {
    width: 7rem;
    margin: auto;
    margin-bottom: 1rem;
    height: 7rem;
    overflow: hidden;
}

.dream-vacation-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s;
}

.dream-vacation-item .column-heading {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.get-dreaming-for .choose-destination-content {
    right: -8rem;
}

.type-of-visa-item {
    box-shadow: 0 0 9px #ddd;
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 2rem 1rem;
}

.type-of-visa-item .column-heading {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 1.5rem;
    text-align: center;
}

.type-of-visa-list {
    padding-left: 0;
    margin: 0;
}

.type-of-visa-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-left: 0.9rem;
    font-weight: 500;
    color: #5a5a5a;
}

.type-of-visa-list li:last-child {
    margin: 0;
}

.type-of-visa-list li::before {
    position: absolute;
    content: "\f111";
    font-family: 'FontAwesome';
    left: -0.5rem;
    font-size: 0.8rem;
    top: 0.3rem;
}

.type-of-visa-list li span {
    color: var(--secondary-color);
    font-weight: 600;
}

.required-docs-accordian .accordion-item {
    box-shadow: 0 0 9px #c1c1c1;
    margin-bottom: 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.required-docs-accordian .accordion-item .accordion-button {
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.5rem 2.5rem;
    background: none;
    box-shadow: none;
}

.required-docs-accordian-body {
    padding: 2rem 3rem;
    border-top: 1px solid #b3b3b3;
}

.required-docs-list li {
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
}

.required-docs-list li::marker {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.visa-apply {
    box-shadow: 0 0 9px #c1c1c1;
    background: var(--default-color);
    border: 1px solid var(--secondary-color);
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    margin: 2rem 0;
}

.visa-apply .column-heading {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.visa-apply .form-control {
    border: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.visa-amount {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-right: 1rem;
}

.visa-apply .select-form-control:after {
    right: 0px;
    color: var(--secondary-color);
    line-height: 1.5;
}

.call-btn {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    border-radius: 1rem;
    padding: 1.2rem 2rem;
    color: var(--default-color);
    position: relative;
    font-size: 1.6rem;
    transition: all 0.3s;
}

.call-btn::after {
    position: absolute;
    content: '\f879';
    font-family: 'FontAwesome';
    right: 2rem;
    font-size: 3rem;
}

.call-btn:hover {
    background: 0;
    color: var(--primary-color);
}

.block-listing {
    margin-bottom: 0;
    margin-top: 2rem;
}

.block-listing li {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.block-listing li::marker {
    color: var(--secondary-color);
}

.quick-visa-tips .top-destination-item {
    border-radius: 2rem;
}

.all-destination .destination-box-details{
    padding-bottom: 0;
}

.all-dest-image {
    width: 100%;
    height: 27rem;
    border-radius: 1rem;
    overflow: hidden;
}

.all-dest-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all-dest-last-image .all-dest-image {
    height: 38rem;
}

.all-destination-alternate:nth-child(odd) {
    background: var(--light-color);
}

.location-name {
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.location-name::before {
    content: '\f3c5';
    font-family: 'FontAwesome';
    color: var(--secondary-color);
    font-size: 2rem;
    margin-right: 0.8rem;
}

.read-more-btn {
    display: inline-block;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
    overflow: hidden;
}

.read-more-btn::after {
    position: absolute;
    content: "";
    background: url(../../assets/images/curved-line.png) no-repeat;
    width: 8.4rem;
    height: 1.1rem;
    bottom: 0;
    left: -100%;
    transition: all 0.4s;
    z-index: 5;
}

.read-more-btn:hover::after {
    left: 0;
}

/* country page starts here */

.destination-image-left {
    float: left;
    margin-right: 3rem;
    min-width: 40%;
    max-width: 45%;
    margin-bottom: 1rem;
}

.destination-right-content {
    padding-top: 2rem;
}

.destination-right-content .section-heading {
    display: inline-block;
    overflow: hidden;
}

.destination-right-content div, .destination-right-content p, .destination-right-content p span, .destination-right-content span,
.holiday-vacation-content div, .holiday-vacation-content p, .holiday-vacation-content p span, .holiday-vacation-content span {
    font-size: 1.5rem !important;
    line-height: 1.8;
}

.readmore, .readless {
    border: 0;
    background: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.readmore:hover, .readless:hover{
    color: var(--primary-color);
}

.logInModal .btn-close,
.enquireFormModal .btn-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: var(--default-color);
    opacity: 1;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
}

.logInModal .modal-content,
.enquireFormModal .modal-content {
    padding: 2rem 1rem;
    text-align: center;
}

.ui-menu .ui-menu-item {
    border-bottom: 1px solid #ddd;
    font-size: 1.5rem;
}

/* travel essentials starts here */

/* travel essential css starts here */

.travel-essential-list {
    /* box-shadow: 0 0 9px #ddd; */
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.travelGearLeft figure {
    height: 25rem;
    width: 100%;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

.travelGearLeft figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-gear-details{
    font-size: 15px;
    text-align: justify;
    color: #000;
}

.travelGearRight .column-para {
    text-align: justify;
    margin: 0;
}

.travelGear_store {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 3%;
}

.travelGear_storeText {
    font-size: 16px;
    font-weight: 800;
    margin-top: 8px;
    display: inline-block;
}

.travel-gear-item {
    transition: all 0.5s;
    box-shadow: 0 0 9px #ddd;
    border-radius: 2rem;
    overflow: hidden;
    height: 100%;
    background: var(--light-color);
}

.travel-gear-item:hover {
    transform: translateY(-2px);
}

.travel-gear-item-img {
    position: relative;
    background: var(--default-color);
}

.travel-gear-item-img figure {
    height: 14rem;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem;
}

.travel-gear-item-img figure img {
    object-fit: contain;
    transition: all 0.8s;
    width: 100%;
    height: 100%;
}

.travel-gear-item:hover img {
    transform: scale(1.05);
}

.discount-offer {
    position: absolute;
    top: 0px;
    left: 0;
    background: var(--secondary-color);
    padding: 0px;
    font-size: 9px;
    color: #fff;
    height: 4rem;
    width: 10rem;
    display: flex;
    border-radius: 5rem;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.discount-offer p {
    font-size: 15px;
}

.travel-gear-item-content {
    padding: 1rem 0.2rem;
    text-align: center;
}

.travel-gear-item-content .column-heading {
    font-size: 15px;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.travel-gear-item-content .custom-btn {
    font-size: 14px;
    margin-top: 3px;
    background: 0;
    border: 0;
    padding: 0;
    color: var(--secondary-color);
    box-shadow: none;
}

/* travel essentials ends here */

/* shopping product starts */

.category_filter_left {
    width: 290px;
}

.category_filter_left_bottom {
    position: sticky;
    top: 0;
}

.category_filter_right {
    flex: 1;
    margin-left: 20px;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 0 9px #ddd;
}

.category_filter_left_top {
    width: 100%;
    box-shadow: 0 0 9px #bfbfbf;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.category_filter_left_top .section_heading {
    text-align: left;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

.cat_filter_border {
    margin: 15px -15px;
    color: #ddd;
}

.filter_box_heading {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.search_filter_form {
    border: 1px solid #000;
    border-radius: 5px;
}

.search_filter_form .form-control {
    border: 0;
    border-radius: 0;
    background: 0;
}

.search_filter_form .form-control::placeholder{
    color: #000;
    font-size: 12px;
    font-weight: 500;
}

.search_filter_form>i {
    padding-right: 12px;
}

.filter_cat_text {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.filter_clear_text {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.filter_input_box_heading {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border: 0;
    background: 0;
    padding: 0;
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.filter_input_box_heading>i {
    font-weight: 900;
    font-size: 20px;
    line-height: 15px;
}

.filter_input_box .form-check {
    padding-left: 0px;
    margin-top: 5px;
}

.filter_input_box .checkbox-inline {
    font-size: 14px;
    color: #444444;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.filter_input_box .checkbox-inline .deals_check {
    margin-right: 10px;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.filter_input_box .collapse {
    max-height: 200px;
    overflow: auto;
}

.filter_input_box .collapse::-webkit-scrollbar{
    width: 5px;
    background: #ddd;
}

.filter_input_box .collapse::-webkit-scrollbar-thumb{
    background: var(--secondary-color);
}

.product-item {
    display: block;
    box-shadow: 0 0 9px #ddd;
    transition: all 0.3s;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-4px);
}

.product-img {
    position: relative;
    background: #f7f7f7;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-img .offer-box {
    height: 90px;
    top: 0;
    width: 40%;
}

.product-item-details {
    padding: 8px;
}

.product-item-details .box-heading {
    margin-bottom: 6px;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--primary-color);
    line-height: 1.3;
}

.product-item-details .box-heading:hover {
    color: var(--secondary-color);
}

.product-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 14px;
}

.product-details {
    font-size: 13px;
    color: #000;
    margin-top: 4px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.total-store-item {
    box-shadow: 0 0 9px #ddd;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
}

.total-store-icon {
    width: 50px;
    height: 50px;
    margin: auto;
    margin-bottom: 10px;
}

.total-store-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-number {
    font-size: 20px;
    font-weight: 700;
    color: #00a0ed;
}

/* shopping product ends */

#no-data {
    text-align: center;
    position: relative;
    padding: 9rem 0 1rem;
    box-shadow: 0 0 9px #ddd;
    background: var(--default-color);
    border-radius: 1rem;
    font-size: 1.8rem;
}

#no-data::before {
    position: absolute;
    content: '';
    background: url('../../assets/images/no-data.png') no-repeat center / contain;
    width: 100%;
    height: 7rem;
    top: 1rem;
    left: 0;
}

.pp-content-section .box-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pp-content-section .column-para {
    margin-bottom: 2rem;
}

/* tab destination starts here */

.vertical-tab-destination-btn {
    background: var(--default-color);
    padding: 2rem;
    box-shadow: 0 0 9px #ddd;
    border-radius: 1rem;
    gap: 1.5rem;
}

.vertical-tab-destination-btn .nav-link {
    padding: 1.6rem 2rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: left;
    font-size: 1.6rem;
    background: var(--light-color);
    box-shadow: 0 0 9px #ddd;
}

.vertical-tab-destination-btn .nav-link:last-child{
    border-bottom: 0;
}

.vertical-tab-destination-btn .nav-link.active,
.vertical-tab-destination-btn .nav-link:hover {
    background: var(--secondary-color);
}

.vertical-tab-destination-btn .nav-link:hover{
    color: var(--default-color);
}

.vertical-tab-destination-content {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 1rem;
    margin-left: 1rem;
    box-shadow: 0 0 9px #ddd;
}

.horizontal-tab-destination-btn {
    border: 0;
    gap: 1rem;
    justify-content: space-between;
}

.horizontal-tab-destination-btn .nav-link {
    font-size: 1.8rem;
    padding: 2rem;
    color: var(--primary-color);
    border: 0;
    border-radius: 2rem 2rem 0 0;
    box-shadow: 0px -8px 10px #ddd;
}

.horizontal-tab-destination-btn .nav-link.active {
    background: var(--light-color);
}

.horizontal-tab-destination-content {
    padding: 3rem;
    background: var(--light-color);
    box-shadow: 0 0 9px #ddd;
}

/* tab destination ends */

.country-product-slider .owl-stage {
    padding-left: 0 !important;
}

.country-product-slider .owl-stage .item {
    padding: 1rem;
}

.product-item-slider-img {
    width: 85%;
    height: 23rem;
    overflow: hidden;
    margin: auto;
    border-radius: 2rem 2rem 0 0;
    z-index: 0;
    position: relative;
    display: block;
    border: 1px solid #ddd;
}

.product-item-slider-img figure {
    width: 100%;
    height: 100%;
}

.product-item-slider-img figure img {
    width: 100% !important;
    height: 100%;
    object-fit: contain;
}

.product-item-slider-details {
    box-shadow: 0 0 9px #ddd;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    position: relative;
    top: -0.2rem;
    background: var(--light-color);
    text-align: center;
}

.product-item-slider-details .box-heading a {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    font-size: 2rem;
    transition: all 0.3s;
}

.product-item-slider-details .box-heading a:hover {
    color: var(--secondary-color);
}

.product-item-details-slider-text p {
    font-size: 1.5rem;
}

.product-item-slider-details .custom-btn {
    margin-top: 1.5rem;
}

/* mobile optimized starts here */

@media (max-width: 1199px) {
.navbarMenu>li {
    padding: 1.5rem 1rem;
}
.logo .navbar-brand {
    height: 13rem;
}
.why-travel-item::after {
    right: -16rem;
}
.destination-right-content {
    padding-top: 0rem;
}
.trusted-travels-box {
    padding: 0 1rem;
}
}



@media (max-width: 991px) {
.home-about-list li {
    width: 100%;
}
.destination-block-content {
    margin-bottom: 1.5rem;
}
.why-travel-item::after{
    display: none;
}
.why-travel-item .column-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.tours-form-container .section-heading br{
    display: none;
}
.trip-highlight-box {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 1rem;
}
.trip-highlight-item .column-heading {
    font-size: 1.4rem;
    -webkit-line-clamp: 3;
}
.trusted-travels-container {
    padding: 1rem 0;
}
.trusted-travels-text p {
    font-size: 1.3rem;
}
.contact-address-box {
    padding: 2rem 1rem;
}
.contact-address-box .column-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.discover-dream-container {
    padding: 3rem 2rem;
}
.discover-dream-container .section-heading {
    font-size: 3.5rem;
}
.start-real-journey p br{
    display: none;
}
.top-banner {
    height: 32rem;
}
.top-banner .section-heading {
    font-size: 4rem;
}
}



@media (max-width: 767px) {
.why-travel-container {
    grid-template-columns: repeat(1, 1fr);
}
.copyright-container {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 2rem;
}
.copyright-container .footer-menu-list {
    order: -1;
}
.faq-container .accordion-item {
    margin-bottom: 10px;
    padding-bottom: 5px;
}
.faq-container .accordion-button {
    padding: 0 0 0px 0;
    font-size: 1.6rem;
}
.faq-container .accordion-body p {
    font-size: 1.4rem;
}
.about-who-we-are .destination-block-img figure {
    height: 25rem;
}
.dream-vacation .section-heading::before {
    margin: auto;
    right: 0;
}
.choose-destination-img figure {
    height: 30rem;
}
.choose-destination-content, .get-dreaming-for .choose-destination-content {
    right: 0rem;
    top: -3rem;
    margin: 0 2rem;
    text-align: center;
}
}


@media (max-width: 576px) {
.logo .navbar-brand {
    height: 10rem;
}
.navbarMenu {
    position: absolute;
    background: var(--light-color);
    left: 0;
    width: 100%;
    z-index: 99;
}
.headerTop .navbar-toggler {
    font-size: 3rem;
}
.section-padding {
    padding: 3rem 0;
}
.section-padding-top{
    padding-top: 3rem;
}
.section-padding-bottom{
    padding-bottom: 3rem;
}
.section-heading {
    font-size: 3rem;
}
.section-heading::before {
    width: 17rem;
}
.discover-destination {
    padding: 2rem 0 2rem;
}
.discover-destination-right {
    gap: 0.5rem;
}
.discover-destination-right .custom-btn {
    min-width: 10rem;
    font-size: 1.2rem;
}
.destination-block-img figure {
    height: 28rem;
}
.custom-btn {
    font-size: 1.4rem;
    padding: 0.8rem 2rem;
    min-width: 12rem;
}
.sign-up-form {
    margin-top: 1rem;
    gap: 0.5rem;
}
.submit-btn {
    border: 0;
    padding: 1rem 1rem;
    min-width: 11rem;
}
/* .destination-image-left {
    min-width: 100%;
    margin-right: 0;
} */
.destination-right-content .section-heading {
    display: block;
    text-align: center;
}
.destination-right-content .section-heading::before,
.destination-block-content .section-heading::before,
.holiday-vacation-content .section-heading::before {
    margin: auto;
    right: 0;
}
.destination-block-content .section-heading,
.holiday-vacation-content .section-heading {
    text-align: center;
}
.destination-block-content .section-heading br {
    display: none;
}
footer {
    padding: 3rem 0 0;
}
.footer-heding {
    margin-bottom: 1rem;
}
.footer-menu-list li {
    width: 100%;
}
.copyright-container {
    gap: 1rem;
}
.copyright-container p {
    font-size: 1.1rem;
}
.copyright-container .footer-menu-list {
    gap: 2rem;
}
.copyright-container .footer-menu-list li a {
    font-size: 1.3rem;
}
.travel-planning-image figure {
    height: 25rem;
}
.trip-highlight-box {
    grid-template-columns: repeat(2, 1fr);
}
.all-dest-image {
    height: 20rem;
}
.all-dest-last-image .all-dest-image {
    height: 25rem;
}
.slider-banner-item figure {
    height: 25rem;
}
.contact-us-banner {
    padding: 5rem 0;
}
.trusted-travels-box {
    padding: 1rem 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--secondary-color);
}
.trusted-travels-box:last-child{
    border-bottom:0;
}
.start-journey-heading .section-heading {
    font-size: 2rem;
}
.start-journeyForm-container {
    padding: 5rem 1.5rem 1rem;
}
.start-journeyForm-container .form-group {
    margin-bottom: 3rem;
}
.get-started-container .section-heading br {
    display: none;
}
.discover-dream-container {
    padding: 2rem 1rem;
    bottom: -2rem;
}
.discover-dream-container .section-heading {
    font-size: 2.5rem;
}
.travel-essential-list {
    padding: 10px 0px;
}
.travelGearLeft {
    margin-bottom: 1rem;
}
}

















/* old css */

.interNationAirportSec {
    margin-top: 30px;
}

.interNationAirportContainer {
    background: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.interNationAirportContainer h2 {
    font-size: 20px;
}

.interNationAirportContainer p {
    font-size: 16px;
    padding: 0;
    color: #000;
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.aboutContainer p {
    text-align: justify!important;
    font-size: 15px;
}

.why-europe-scContent p {
    padding: 0;
    margin-bottom: 5px;
    text-align: justify;
}

.why-europe-scContent span {
    font-weight: 500;
    margin-left: 5px;
}

.why-europe-scImg figure {
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

.why-europe-scImg figure img {
    max-width: 350px;
    max-height: 185px;
    object-fit: contain;
}

.why-erope-left{
    border-radius: 5px;
    padding: 12px 10px;
    box-shadow: 0 0 9px #ddd;
    margin-top: 20px;
}

.countary-htl-btn {
    background-color: #2925a0;
    color: #fff !important;
}

.countary-htl-btn:hover{
    background-color: #fed511;
}

.content-side-mm {
    text-align: center;
}

.tourAttracItly_rightColumn .why-erope-left {
    min-height: 435px;
}

.cont_popHotelsColumn {
    margin-bottom: 20px!important;
}

.cont_popHotelsColumn img {
    width: 100%;
}

.interNationAirportContainer_right p {
    width: 100%;
    justify-content: flex-start;
    line-height: 40px;
}

.interAirportColumnHead:after {
    display: none;
}

.interAirport_ColumnTop {
    display: flex;
}

.interAirportColumnHead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    width: 48%;
}

.interAirportName {
    padding-left: 15px!important;
    line-height: 28px!important;
    color: #000;
    font-weight: 600;
    display: flex;
    /* justify-content: space-between; */
}

.interAirportName span {
    width: 50%;
}

.travelInsuList li {
    list-style: disc;
    margin-left: 30px;
    font-size: 15px;
    line-height: 30px;
    color: #000;
    text-align: left;
}

.popHotel4Column {
    margin-top: 30px;
}

/*  */

.flightBooking_section {
    margin-top: 35px;
}

.flightBookingTop {
    padding: 25px 15px;
}

.flightBooking_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flightBooking_sectionHead {
    text-align: center;
    color: #ffc031;
}

.flightBooking_sectionPara {
    margin-bottom: 20px;
    font-size: 13px;
    color: #000;
    font-weight: 400;
}

.flighBooking_box {
    width: 32%;
    background: #fff;
    box-shadow: 0 0 9px #ddd;
    padding: 10px;
    margin-bottom: 20px;
}

.flightBookingBox_img {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.flightBookingBox_img img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    min-height: 150px;
}

.flightBookingBox_heading {
    text-align: center;
    font-size: 18px;
    color: #ffc031;
        padding-left: 0;
}

.flightBookingBox_para {
    color: #000;
    font-size: 13px;
    text-align: justify;
    line-height: 28px;
    padding-top: 10px;
}

.flightBooking_container h3::after{
    display: none;
}

.railEuropeBox_container {
    margin-top: 20px;
}

.railEuropeBox_container .flighBooking_box {
    min-height: 275px;
}

.railEuropeBox_container .flightBookingBox_img img{
    object-fit: cover;
}

/* best time visit page css starts here */

/*.bestTimeVisit_banner{
    background: url("../images/europeVisit_bg.jpg");
}*/

.bestTimeVisit_bannerSection {
    background-size: cover!important;
    background-position: center!important;
    height: 300px;
    margin: 5px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bestTimeVisit_bannerSection h6{
    padding: 0 0 20px 0;
    letter-spacing: 8px;
    font-size: 25px;
}

.bestTimeVisit_bannerSection h1{
    line-height: 55px;
    font-size: 80px;
    letter-spacing: 8px;
    padding-bottom: 20px;
}

.visitDestinationSection {
    margin-top: 20px;
    padding: 30px 0;
}

.visitDestinationTop {
    margin-bottom: 20px;
}

.visitDestination_sectionHead {
    text-align: center;
    font-size: 35px;
}

.visitDestinationBoxItem {
    position: relative;
    margin-bottom: 20px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 9px #ddd;
    border-radius: 3px;
    min-height: 645px;
}

.visitDestinationBoxImg {
    margin-bottom: 0;
    text-align: center;
}

.visitDestinationBoxImg img {
    width: 100%;
    max-height: 220px;
    text-align: center;
    object-fit: cover;
}

.visitDestinationBoxHeading {
    text-align: center;
    font-size: 18px;
    color: #ffc031;
    padding: 10px 0;
}

.visitDestinationContent {
    padding: 0;
    color: #000;
    font-size: 14px;
    text-align: justify;
    margin-bottom: 5px;
}

.visitDestinationBoxItem .helpTravelBtnBox .helpTravelBtn {
    background: #2925a0;
    color: #fff;
    text-align: center;
}

.visitDestinationBoxItem .helpTravelBtnBox .helpTravelBtn:hover {
    background: 0;
    color: #ffc031;
    border: 1px solid #ffc031;
    box-shadow: 3px 4px 9px #ad8225;
}

.whyEuropeTravel_section {
    padding: 30px 0 0;
}

.whyEuropeTravelHeading {
    color: #ffc031;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.whyEuropeTravelList {
    position: relative;
}

.whyEuropeTravelList:before {
    position: absolute;
    content: "";
    background: #ffc031;
    width: 3px;
    height: 90%;
    left: 8px;
    top: 10px;
}

.whyEuropeTravelList>li {
    font-size: 14px;
    line-height: 40px;
    color: #000;
    font-weight: 400;
    padding-left: 30px;
    position: relative;
}

.whyEuropeTravelList>li>i {
    font-size: 14px;
    background: #1f1ba3;
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 100%;
    font-weight: 600;
    color: #fff;
    position: absolute;
    left: 0;
    top: 10px;
}

.helpTravelContainer {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 9px #ddd;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.helpTravelPara {
    padding-top: 0;
    font-size: 14px;
    color: #000;
    font-weight: 300;
    margin-bottom: 20px;
}

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

.helpTravelBtn {
    display: flex;
    margin-right: 15px;
    padding: 10px 20px;
    box-shadow: 4px 5px 9px #e6e6e6;
    color: #ffc031;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.helpTravelBtnBox .helpTravelBtn:last-child{
    margin-right: 0;
}

.commonTravelContainer {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
        margin-top: 20px;
}

.commonTravelBox {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.commonTravelBoxItem {
    box-shadow: 0 0 9px #ddd;
    width: 19%;
    padding: 10px;
    background: #fff;
}

.commonTravelBox_heading {
    color: #1f1ba3;
    font-size: 20px;
    font-weight: 800;
    margin: 5px 0 12px 0;
}

.commonTravelBox_text {
    padding: 0;
    text-align: left;
    line-height: 24px;
    color: #000;
    font-size: 12px;
}

/* best time visit page css ends here */

.addSection {
    text-align: center;
    margin-top: 30px;
}

.addSection figure {
    margin-bottom: 0;
}

.aboutTravelSection {
    margin-top: 30px;
}

.abtTravelHead {
    font-size: 40px;
    text-align: center;
}

.touristAttraList {
    text-align: left;
    padding-left: 16px;
    margin-top: 5px;
}

.touristAttraList>li {
    font-size: 13px;
    list-style: disc;
    line-height: 28px;
    color: #212529;
}

/* travel insurance css starts here */

.countryInsurance_container {
    background: #fff;
    margin-top: 30px;
    padding: 20px;
    box-shadow: 0 0 9px #ddd;
}

.countryInsuranceHeading {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    color: #000;
    margin-bottom: 25px;
}

.countryInsurance_fullRow {
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 9px #ddd;
}

.allTypeIns_andAmoutofInsu_box {
    display: flex;
    justify-content: space-between;
    width: 65%;
    margin-right: 15px;
    padding: 20px 15px;
}

.allTypeInsurance {
    width: 50%;
}

.amountInsurance {
    flex: 1;
    text-align: center;
}

.amountInsuranceText {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    padding: 10px 20px;
    border: 1px solid #eaeaea;
    box-shadow: 1px 2px 9px #ddd;
    display: inline-block;
}

.countryInsurance_fullRow h3::after{
    display: none;
}

.allTypeInsuranceHeading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    padding-left: 0;
    line-height: 30px;
}

.allTypeInsurance_text>p {
    font-size: 13px;
    padding: 0;
    color: #000;
    font-weight: 400;
}

.buyInsurance_container {
    flex: 1;
    padding: 20px 10px;
}

.buyInsurance_container .allTypeInsuranceHeading{
    margin-bottom: 0;
}

.buyInsurance_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.buyInsurance_boxItem {
    width: 48%;
    margin-top: 15px;
    box-shadow: 0 0 9px;
    text-align: center;
    padding: 10px;
    min-height: 112px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 112px;
}

.buyInsurance_boxItem figure {
    margin: 0;
}

.buyInsurance_ItemText {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-top: 10px;
}

/* travel insurance css ends here */

/* visa page css starts here */

.countryVisa_section {
    margin-top: 30px;
}

.countryVisa_section .about-content-side {
    box-shadow: 0 0 9px #ddd;
}

.countryVisa_section .travelInsuList {
    display: flex;
    flex-wrap: wrap;
}

.countryVisa_section .travelInsuList li {
    width: calc(33% - 30px);
    list-style: decimal;
    padding-left: 8px;
}

/* visa page css ends here */

/* attraction gallery section starts here */

.celebratDressGalleryItem {
    margin: 15px 0;
}

.celebratDressGalleryItem img {
    min-height: 180px;
    max-height: 180px;
    cursor: zoom-in;
}

/* attraction gallery section starts here */

/* countryCurrency_tableContainer starts here */

.countryCurrency_tableContainer {
    margin-top: 10px;
}

.countryCurrency_tableContainer .table thead {
    background: #eaeaea;
}

/* countryCurrency_tableContainer ends here */