/* ===== NAVBAR SECTION ===== */


/* .navbar-brand {
    color: white;
    padding: 10px 15px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 3px;
} */

html {
    min-height: 100%;
    scroll-padding-top: 150px
}

body {
    font-family: Montserrat-Medium;
    color: #656F7D;
}

@font-face {
    font-family: Montserrat-ExtraBold;
    src: url(../css/Montserrat-fonts/Montserrat-SemiBold.ttf);
    font-display: swap;
}

@font-face {
    font-family: Montserrat-Medium;
    src: url(../css/Montserrat-fonts/Montserrat-Medium.ttf);
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    font-family: Montserrat-ExtraBold;
}

p {
    color: #656F7D;
    font-family: Montserrat-Medium;
}

.container {
    max-width: 1300px !important;
}

.nav-menu {
    background: #F9F9F9;
    /* padding: 30px 0px 0px 0px; */
    position: fixed;
    width: 100%;
    z-index: 1;
    transition: all 0.4s;
}

.btn-click {
    background-color: #003B95 !important;
    color: #FFFFFF !important;
    padding: 12px 25px;
    border-radius: 20px;
}

img {
    max-width: 100%;
}

a:hover {
    text-decoration: none !important;
}

small {
    font-size: 18px;
    font-weight: 400;
}


/* ---------------------------------- */

.top-bar {
    /* background-color: #f8f9fa;/ */
    font-size: 14px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    transition: top 0.3s;
}

.contact-info span,
.social-icons a {
    margin-right: 15px;
    color: #6c757d;
}

.social-icons a {
    color: #007bff;
    text-decoration: none;
}


/* ----------------------------------------- */

.nav-item {
    padding: 0 10px;
}

.menu-item {
    font-size: 14px;
    color: #0F0E0E;
    font-weight: 500;
}

.menu-item:hover {
    color: #0F0E0E;
}

.nav-active {
    color: #0F0E0E;
}

.navbar-toggler {
    cursor: pointer;
    outline: 0;
}

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

.ham {
    transition: width 0.3s;
    background: #265C8C;
}

.line1,
.line3 {
    width: 28px;
    height: 2px;
    margin: 6px;
    transition: 0.4s;
}

.change .line1 {
    transform: rotate(-45deg) translate(-3px, 2px);
}

.change .line3 {
    transform: rotate(45deg) translate(-3px, -2px);
}

@media (max-width: 34em) {
    .nav-menu {
        background: #fff !important;
        padding-bottom: 25px;
    }
    .menu-item {
        padding: 10px;
    }
    .navbar-nav {
        display: flex;
        justify-content: center;
        align-items: normal;
    }
    .nav-item {
        margin-top: 15px;
    }
}

.costum-navbar {
    padding: 5px;
    background-color: #f9f9f9 !important;
}

.section-top {
    margin-top: 100px;
}

a {
    color: #F3BD7D;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:hover {
    color: #000;
    text-decoration: underline;
}


/* ===== HERO SECTION ===== */

.hero-p {
    color: #003B95 !important;
    font-size: 16px;
    font-weight: bold;
}

.hero-top {
    padding-top: 150px;
}

h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 55px;
}

h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 55px;
}


/* -----------------about-------------------- */

.about {
    background-color: #F7F8FA;
}

.about-left {
    padding-left: 50px;
}


/* -----------------SERVICES-------------------- */

.services {
    margin-top: 80px;
}

.services h3 {
    font-size: 22px;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 20px auto;
    width: 90%;
    max-width: 1200px;
}

.service-box {
    padding: 30px 30px 100px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-right: 2px dashed #d3d3d3;
    border-bottom: 2px dashed #d3d3d3;
    transition: transform 0.3s;
}


/* Remove the right border for the last column in each row */

.service-container .service-box:nth-child(3n) {
    border-right: none;
}


/* Remove the bottom border for the last row */

.service-container .service-box:nth-child(n + 7) {
    border-bottom: none;
}


/* Responsive Styles */

@media (max-width: 768px) {
    /* For tablets, switch to two columns */
    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Remove right border for every second item in two-column layout */
    .service-container .service-box:nth-child(2n) {
        border-right: none;
    }
    /* Remove bottom border for the last row */
    .service-container .service-box:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    /* For mobile, switch to one column */
    .service-container {
        grid-template-columns: 1fr;
    }
    /* Remove all borders on mobile for cleaner layout */
    .service-box {
        border: none;
    }
}

.services-ft {
    margin-top: -255px;
}


/* ------------------------what we offer--------------------------------- */

.offer {
    background-color: #F7FAFF;
    padding: 80px 0px;
}

#tabs {
    width: 100%;
    position: relative;
    margin-top: 50px;
}

#accordion {
    list-style-type: none;
    padding: 0;
}

#accordion li a {
    display: block;
    text-decoration: none;
    color: #3b3b3b;
    padding: 20px 5px;
    /* opacity: .5; */
    transition: 0.3s ease;
}

.title {
    color: #003B95;
    font-size: 22px;
    font-weight: 600;
}

#accordion li a.active {
    opacity: 1;
}

.tag {
    display: flex;
    align-items: center;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    position: absolute;
    left: -36px;
}

.addon {
    font-size: 16px;
    color: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.addon.fadein {
    opacity: 1;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


/* --------------------Our Airbnb Listings---------------------------  */

.starone {
    display: flex;
    justify-content: space-between;
}

.lh-1 {
    line-height: 0px;
}

#AirbnbListings p {
    font-size: 15px;
}

.View-listings-btn {
    background: #003B9500 0% 0% no-repeat padding-box;
    border: 2px solid #003B95;
    border-radius: 24px;
    opacity: 1;
    padding: 10px 20px;
    color: #003B95 !important;
    font-size: 20px;
    font-weight: 600;
}


/* -----------------WHY CHOOSE -------------------------- */

.divline-white {
    width: 368px;
    height: 8px;
    opacity: 1;
    margin-bottom: 15px;
    background: transparent linear-gradient(90deg, #FFFFFF 0%, #DCE4EC 52%, #265C8C 100%) 0% 0% no-repeat padding-box;
}

.choose-card {
    position: absolute;
    right: 266px;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    background-color: #265C8C;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.choose-card h2 {
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    line-height: 44px;
}

.accordion {
    margin-top: 20px;
}

.accordion-item {
    margin-bottom: 10px;
    background: #F7F8FA;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    overflow: hidden;
    border-radius: 20px;
}

.accordion-item button {
    width: 100%;
    padding: 15px;
    background: #F7F8FA;
    color: #000;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    outline: none;
    border: none;
}

.accordion-item button:after {
    content: '+';
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.accordion-item button.active:after {
    content: '-';
}

.accordion-item-content {
    display: none;
    padding: 15px;
    background: #fff;
    color: #0a568c;
    font-size: 14px;
}


/*** Img Border ***/

.img-border {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 30rem;
    bottom: 0rem;
    background-image: url('../images/WHY-CHOOSE.png');
    background-size: cover;
    background-position: center;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 30rem;
    width: calc(100% - 40rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/* ----------------------------CLIENT TESTIMONIALS---------------------------------------- */

.testimonials {
    /* background-image: url('../images/testimonials-bg.png'); */
    background-color: #B3EBF1;
    background-size: cover;
    background-position: center;
}

.testimonials-card-img {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.line-height-0 {
    line-height: 0;
}

.testimonials-card {
    padding: 60px;
    background: #fff;
    box-shadow: 0px 3px 6px #00000029 !important;
    opacity: 1 !important;
    border-radius: .25rem;
}

.client-name {
    color: #265C8C;
    font-size: 30px;
    font-weight: 700;
}

.card-testimonials {
    background: #fff;
    display: inline-block;
    margin: 1rem;
    padding: 30px;
    position: relative;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.19), 0 3px 15px rgba(0, 0, 0, 0.23);
    border-radius: 50px;
}

.carousel-indicators li {
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    margin-left: 5px;
    text-indent: -999px;
    cursor: pointer;
    background-color: gray;
    margin-bottom: 15px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #265C8C;
}

.carousel-item-img {
    height: 400px;
    width: 100%;
    border-radius: 20px;
}


/* -------------------Pricing----------------------------------- */

.bg-pricing {
    background-color: #F7FAFF;
}

.display-v2-nov {
    display: none;
}

.par-user-check-left {
    padding-left: 10px;
}

.par-user-check-right {
    padding-right: 10px;
}

.par-user-p {
    font-size: 18px;
    line-height: 28px;
    color: #323A45;
}

input[type="email"] {
    display: inline-block;
    width: 50%;
    padding: 18px 36px;
    margin: 8px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
    height: 70px;
    margin-top: 18px;
    border-radius: 55px;
    border: none;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.06);
    background-color: #fff;
}

input,
input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 3;
}

.bt {
    margin-left: -280px;
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    padding: 16px 60px;
    border-radius: 55px;
    /* Only necessary for .btn */
    border: none;
    cursor: pointer;
    background-color: #003B95;
    color: #fff;
}

@media screen and (max-width:767px) {
    .display-v2-nov-phone {
        display: block;
    }
    .phone-hidden-v2 {
        display: none;
    }
}


/* -----------------------blog--------------------------- */

.blog-showcase {
    width: 100%;
    height: 500px;
    position: relative;
    color: white;
    text-align: center;
    z-index: 0;
}

.blog-showcase .overlay {
    width: 100%;
    height: 600px;
    /* background-color: rgba(0, 35, 82, 0.7); */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}

.blog-showcase .imges {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99
}

.blog-showcase h1 {
    margin-top: 185px;
}

.card-img {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.card-title {
    margin-bottom: 0.3rem;
}

.cat {
    display: inline-block;
    margin-bottom: 1rem;
}

.fa-users {
    margin-left: 1rem;
}

.card-footer {
    font-size: 18px;
}

.card-footer {
    padding: 0;
    background-color: transparent;
    border-top: none;
}


/* ----------------------blog------------------------ */

.blog-card {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029 !important;
    opacity: 1 !important;
    border: 1px solid transparent !important;
    border-radius: .25rem;
}

.blog-card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 10px 15px 10px 15px;
}

.blog-card {
    position: relative;
}

.blog-card-img-overlay {
    position: absolute;
    bottom: 53%;
    left: 15px;
    text-align: center;
    padding: 0px 0px 0px 0px;
}

.blog-date {
    background-color: #003B95;
    color: #fff !important;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 50px;
    padding: 5px 18px;
}

.blog-Read-More {
    font-size: 18px;
    color: #003B95 !important;
}

.text-authors {
    color: #003B95;
    font-size: 15px;
}

.table-contents {
    position: sticky;
    top: 110px;
    right: 0;
    bottom: 0;
}

.innercontentarea h2 {
    font-size: 24px;
    line-height: 40px;
}

.innercontentarea h3 {
    font-size: 20px;
    line-height: 34px;
}

.blogdetals {
    text-align: start;
    font-size: 60px;
    font-weight: 900;
    line-height: 70px;
    text-transform: uppercase;
}

.blogtext {
    margin-top: -80px;
    padding-left: 37px;
}


/* ---------------share------------------------- */


/* Styling for the team details section */

.teamdetails {
    margin: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.Tablescroll {
    height: 400px;
    overflow-y: scroll
}

.Tablescroll::-webkit-scrollbar-track {
    padding: 2px 0
}

.Tablescroll::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px
}

.Tablescroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ebe9f3
}

.Tablescroll ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

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

.Tablescroll a {
    display: block;
    text-decoration: none;
    color: #656F7D;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.Tablescroll a:hover {
    background-color: #e9ecef;
    color: #656F7D;
}

.Tablescroll a.active {
    background-color: #007bff;
    color: #fff;
}

.Tablescroll ul ul {
    margin-left: 20px;
    padding-left: 10px;
    border-left: 2px solid #ddd;
    list-style-type: none;
}


/* ------------------------------------------------------------------------------- */

#contactform input {
    border: 2px solid #003B95;
    border-radius: 20px;
    padding: 0px 10px;
    width: 100%;
    height: 60px;
    box-shadow: none;
    margin-top: 28px;
}

#contactform h2 {
    font-size: 22px;
    color: #003B95;
    text-transform: uppercase;
}

#contactform p {
    color: #003B95;
}

#contactform .counter-group {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

#contactform .counter span {
    font-size: 18px;
    color: #0056b3;
    padding: 0px 20px;
}

#contactform .counter button {
    background-color: #fff;
    border: 2px solid #0056b3;
    color: #0056b3;
    width: 80px;
    height: 40px;
    border-radius: 20px;
    font-size: 20px;
    cursor: pointer;
}

#contactform .submit-btn {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1em;
    border-radius: 20px;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
}

#contactform .submit-btn:hover {
    background-color: #00429d;
}


/* -------------------------------services------------------------------------- */

.showcase {
    width: 100%;
    height: 600px;
    position: relative;
    color: white;
    text-align: center;
    z-index: 0;
}

.showcase .imges {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99
}

.showcase .overlay {
    width: 100%;
    height: 600px;
    /* background-color: rgba(0, 35, 82, 0.7); */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999
}

.showcase h1 {
    margin-top: 250px;
}

.showcase h2 {
    margin-top: 250px;
    font-size: 50px;
    font-weight: 900;
    line-height: 55px;
    text-transform: uppercase;
}

.subheading {
    color: #265C8C !important;
}

.section-bg {
    background-color: #F7F8FA;
}


/* ----------------------------------------FAQ------------------------------------------------------ */

.faq {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    overflow: hidden;
    font-weight: 600;
    font-size: 24px;
}

.faq-item button {
    width: 100%;
    padding: 15px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    outline: none;
    border: 1px solid #DADADA;
    font-weight: 500;
}

.faq-item button:after {
    content: '+';
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item button.active:after {
    content: '-';
}

.faq-item-content {
    display: none;
    padding: 15px;
    background: #fff;
    color: #0a568c;
    font-size: 18px;
    font-weight: 400;
}


/* -------------------------------contact------------------------------------------------ */

.card-contact {
    background: #fff;
    border-radius: 2px;
    display: inline-block;
    margin: 1rem;
    padding: 30px;
    position: relative;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.19), 0 3px 15px rgba(0, 0, 0, 0.23);
    width: 100%;
}


/* -------------------------------footer-top------------------------------------------------ */

.footer-bg {
    background-color: #B2F8FF;
    padding: 80px;
    border-radius: 46px;
}

.footer-top {
    background-color: #F7F8FA;
}

.footer {
    background-color: #F7F8FA !important;
}

.footer p a {
    color: #323A45;
}

.footer p b {
    color: #323A45;
}

.footercol-4 {
    margin-bottom: 25px;
}

.Quick-Links {
    margin-bottom: 43px;
}

.Latest-Blog {
    margin-bottom: 37px;
}

.Newsletter-Signup {
    margin-bottom: 44px;
}

.whymigrate {
    display: flex;
    align-items: center;
}

.whymigrate-span {
    margin-left: 15px;
}


/* -----------------------------------phone ------------------------------------------- */

@media screen and (max-width:767px) {
    .topbar {
        display: none;
    }
    .nav-menu {
        background: transparent;
        padding: 5px 5px 25px 5px;
        position: fixed;
        width: 100%;
        z-index: 1;
        transition: all 0.4s;
        border: 1px solid #DADADA;
    }
    h1 {
        font-size: 35px;
        font-weight: 700;
        line-height: 40px;
    }
    h2 {
        font-size: 28px;
        font-weight: 700;
        line-height: 35px;
    }
    .choose-card h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #fff;
        line-height: 35px;
    }
    .client-name {
        color: #265C8C;
        font-size: 20px;
        font-weight: 700;
    }
    .about-left {
        padding-left: 15px;
    }
    .arrow-image {
        position: absolute;
        bottom: 0px;
        left: 92%;
        display: none;
    }
    .choose-card {
        position: absolute;
        right: -8px;
        top: 45%;
        transform: translateY(-50%);
        width: 100%;
        background-color: #0a568c;
        color: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .how-work-img {
        background: #FFFFFF 0% 0% no-repeat padding-box;
        border: 2px solid transparent;
        opacity: 1;
        border-radius: 50%;
        padding: 0px;
    }
    .section-top {
        margin-top: 50px;
    }
    .how-work-text {
        margin-top: 15px;
        margin-bottom: 35px;
    }
    .showcase h1 {
        margin-top: 170px;
    }
    .showcase {
        width: 100%;
        height: 290px;
        position: relative;
        color: white;
        text-align: center;
        z-index: 0;
    }
    .blogdetals {
        text-align: start;
        font-size: 25px;
        font-weight: 900;
        line-height: 30px;
        text-transform: uppercase;
    }
    .blogtext {
        margin-top: 20px;
        padding-left: 0px;
    }
    .blog-showcase h1 {
        margin-top: 155px;
    }
    .blog-showcase {
        width: 100%;
        height: 310px;
        position: relative;
        color: white;
        text-align: center;
        z-index: 0;
    }
    .card-testimonials {
        background: #fff;
        border-radius: 2px;
        display: inline-block;
        margin: 1rem;
        padding: 15px 10px 15px 10px;
        position: relative;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }
    .divline {
        width: 100%;
        height: 8px;
        background: transparent linear-gradient(90deg, #265C8C 0%, #DCE4EC 52%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
        opacity: 1;
        margin-bottom: 15px;
        margin-top: 15px;
    }
    .divline-white {
        width: 100%;
        height: 8px;
        opacity: 1;
        margin-bottom: 15px;
        background: transparent linear-gradient(90deg, #FFFFFF 0%, #DCE4EC 52%, #265C8C 100%) 0% 0% no-repeat padding-box;
        margin-top: 15px;
    }
    .footer-top-btn {
        margin-top: 20px;
    }
    .top-ph {
        margin-top: 30px;
    }
    .services-ft {
        margin-top: -65px;
    }
    input[type="email"] {
        display: inline-block;
        width: 95%;
        padding: 3px 15px;
        margin: 8px 0;
        border: 1px solid #ccc;
        box-sizing: border-box;
        height: 70px;
        margin-top: 18px;
        border-radius: 55px;
        border: none;
        box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.06);
        background-color: #fff;
    }
    .bt {
        margin-left: -145px;
        font-size: 12px;
        display: inline-block;
        font-weight: 600;
        padding: 15px 15px;
        border-radius: 55px;
        border: none;
        cursor: pointer;
        background-color: #003B95;
        color: #fff;
    }
    .footer-bg {
        background-color: #B2F8FF;
        padding: 30px 10px 30px 10px;
        border-radius: 46px;
    }
    .footer-bg-h2 {
        font-size: 22px;
    }
}

@media screen and (max-width:1023px) {}

@media only screen and (min-width:969px) and (max-width:1024px) {}