/*
Theme Name: NYCChauffeur
Author: Michel Braverman
Description: A custom WordPress theme for a chauffeur service in NYC.
Version: 2.2.3
*/

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1;
}

html,
body {
  height: 100%;
      overflow-x: hidden;
}

body {
  
    color: black;
    margin: 0 !important;
    letter-spacing: 0.02em;
    font-family: Arial, Helvetica, sans-serif; /* Choose a web-safe font or a custom Hebrew font */
    font-size: 16px; /* Base font size */
    line-height: 1.5; /* Adjust line height for readability */
 }
.ti-widget *{

    letter-spacing: 0.02em!important;
    font-family: Arial, Helvetica, sans-serif!important; 

}
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.3; /* Slightly tighter line height for headings */
    text-align: left;
}

p {
    margin: 0 0 1em 0;
    text-align: left; /* Ensure justified text */
}

a {
    color: #1a0dab; /* Link color */
    text-decoration: none; /* Remove underline */
}

a:hover, a:focus {
    text-decoration: underline; /* Underline on hover */
}

strong, b {
    font-weight: bold;
}

em, i {
    font-style: italic;
}

/* Adjust kerning (letter-spacing) */
body, p, h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0.02em; /* Adjust as needed */
}

/* Additional styling for improved readability */
ul, ol {
    margin: 0 0 0 1.5em;
    padding: 0;
   
    /* line-height: 1.8em; */
}

blockquote {
    margin: 0 0 1em 0;
    padding: 0.5em 10px;
    border-left: 5px solid #ccc;
    color: #555;
    font-style: italic;
}


/* Body Styling */
body {
    background-color: #fff;
    background: linear-gradient(179deg, #ffffff 0%, #d0d0d0 33%, #ffffff 50%);
}
body.wp-admin {
    background:none;
    background-color: #fff;
 
}

/* Header Content */
.header-content {
    position: relative;
}

/* Container Styling */
.container {
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    width: calc(80% - 20px);
    margin: 0 auto;
    justify-content: flex-start;
    align-self: center;
    gap: 20px;
    padding: 20px;
    max-width: 100%;
    /* Uncomment the box-shadow if needed */
    /* box-shadow: 0 0 10px 3px #808080; */
}

/* Site Logo */
.site-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1001;
}

.site-logo img {
    width: auto;
}

/* Page Polygon Styling */
.mb__page-poly {
    width: 100%;
    height: 100%;
    min-height: max-content;
    background-color: #fff;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 100% 71px, 0 200px);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 100% 71px, 0 200px);
}


.home .mb__content,
.home .mb__content .container {
    min-height: 720px;
}

p#breadcrumbs {

    border-top: 1px solid #c0c0c0;
}

.mb__page-poly .content {
    width: 100%;
    display: flex;
}

.mb__page-poly:after {
    content: "";
    position: absolute;
    left: 0;
    top: 14.8rem;
    width: 100%;
    height: 16.9rem;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Menu Item Styling */
.mb__menu-item {
    z-index: -1;
    position: absolute;
    left: 0;
    width: 9.2rem;
    height: 10.6rem;
    background-color: #1a4898;
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
}

.mb__menu-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.6rem;
    width: 1.6rem;
    height: 1.2rem;
    background: linear-gradient(#fff 0, #fff 0.2rem, transparent 0.2rem, transparent 0.5rem, #fff 0.5rem, #fff 0.7rem, transparent 0.7rem, transparent 1rem, #fff 1rem, #fff 100%);
    transition-delay: inherit;
    opacity: 0;
}

.mb__menu-item.m--btn:after {
    transform: translate3d(3.6rem, 0, 0);
    opacity: 1;
}

.m--btn .mb__menu-item-content {
    transform: translate3d(1.6rem, 0, 0) rotate(-90deg);
    opacity: 0;
}

.mb__menu-item.m--btn {
    z-index: 5;
    position: absolute;
    left: 0;
    top: 14px;
    width: 6.8rem;
    height: 7.8rem;
    opacity: 1;
    transform: translate(calc(100vw - 6.8rem), 0);
    -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.mb__menu-item.m--btn:after {
    transform: translate3d(3.6rem, 0, 0);
    opacity: 1;
}

/* Side Menu Styling */
.side-menu-items {
    width: 350px;
    height: fit-content;
    position: absolute;
    border-radius: 10px 0 0 10px;
    top: 10px;
    right: -450px;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
    z-index: 9999999999999999999;
}

.side-menu-items.open {
    right: 0; 
}

.sidebar {
    transition: all 0.3s ease-in-out;
}

.sidebar.open {
    width: 3.4rem;
    height: 3.9rem;
    transform: translate(calc(100vw - 3.4rem - 350px), 56px);
}

.sidebar.open::after {
    background: 0 0;
    content: '✖';
    color: #fff;
    font-size: 21px;
    margin-top: -11px;
    transform: translate3d(1.2rem, 0, 0);
}

/* Side Menu Items */
.side-menu-items,
.side-menu-items ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.side-menu-items ul {
    padding: 10px 0;
}

.side-menu-items > li {
    margin-bottom: 0;
}

.side-menu-items ul > li {
    padding-left: 0;
}

.side-menu-items a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    display: block;
    padding: 0;
    line-height: 44px;
    border-radius: 5px;
    padding-left: 20px;
    font-size: 1.2em;
    text-overflow: ellipsis;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.side-menu-items ul > li a {
    padding-left: 40px;
}

.side-menu-items a:hover {
    background-color: #1a4898;
    color: white;
}

/* Mobile and Multi-Browser Support */

/* Mobile Styles */
@media (max-width: 767px) {
    .container {
        width: calc(100% - 20px);
        padding: 10px;
    }

    .side-menu-items {
        width: 100%;
        left: -100%;
        border-radius: 0;
    }

    .side-menu-items.open {
        left: 0;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        width: calc(80% - 20px);
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .container {
        width: calc(80% - 20px);
    }
}

/* Ultra-Wide Screen Styles */
@media (min-width: 1900px) {
    .container {
        width: calc(80% - 20px);
    }
}

/* Blossom Top Button */
#blossom-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 10px;
    background: #1a4898;
    color: #fff;
    line-height: 2.2em;
    text-transform: uppercase;
    width: 60px;
    height: 60px;
    z-index: 9999;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
}
#blossom-top span {
    position: absolute;
    top: 40%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -40%);
    -moz-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
}

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}

svg:not(:root) {
    overflow: hidden;
}

.svg-inline--fa.fa-w-10 {
    width: 0.625em;
}

svg:not(:root).svg-inline--fa {
    overflow: visible;
}

#blossom-top svg {
    font-size: 20px;
    display: block;
    line-height: 0;
    text-align: center;
    margin: 0 auto;
}

#blossom-top.show {
    opacity: 1;
    visibility: visible;
}

/* Carousel Styling */
.news-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    top: 199px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10004;
}

.carousel-frame {
    background: #fff;
    border-radius: 20px;
    width: calc(100% - 20px);
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    box-shadow: 0 0 6px 1px #808080;
}
.carousel-inner {
   
    height: 100%;
}

.carousel-item {
    position: relative;
    width: 100%;
    height: 100%; /* Ensure the container has a defined height */
}
.carousel-item .imgbg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.news-text {
    padding: 20px;
    padding-top: 0;
    width: 40%;
    right: 0;
    border-radius: 10px 0 0 10px;
    bottom: 49px;
    opacity: .8;
    box-shadow: 0 0 10px #000;
    background: #FFF;
    position: absolute;
    top: auto;
    height: fit-content;
    max-height: 100%;
}

.news-text h2 {
    display: block;
    clear: both;
    width: 100%;
}

.post-content {
    margin-top: 20px;
    font-size: 1.2em;
    z-index: 1;
}



.carousel-indicators .dot {
    width: 10px;
    height: 10px;
    background-color: #000000; /* Black */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 0 10px #fff;
    border: 1px solid #FFF;
}

.carousel-indicators .dot.active {
    background-color: #1a4898; /* Blue */
}

/* Mobile and Multi-Browser Support */

/* Mobile Styles */
@media (max-width: 767px) {
    #blossom-top {
        bottom: 10px;
        left: 10px;
        width: 50px;
        height: 50px;
    }

    .news-carousel {
        height: 300px;
        top: 100px;
    }

    .carousel-frame {
        min-height: 300px;
    }

    .carousel-frame img {
        object-fit: cover;
    }

    .news-text {
        padding: 10px;
        padding-bottom: 30px;
        padding-top: 30px;
        bottom: 0;
        top: auto;
        height: fit-content;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1024px) {
    #blossom-top {
        bottom: 15px;
        left: 15px;
        width: 55px;
        height: 55px;
    }

    .news-carousel {
        height: 400px;
        top: 150px;
    }

    .carousel-frame {
        min-height: 400px;
    }

    .carousel-frame img {
        object-fit: cover;
    }

    .news-text {
        padding: 15px;
        padding-bottom: 40px;
        padding-top: 40px;
        box-shadow:none;
        bottom: 0;
        top: auto;
        height: fit-content;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    .carousel-dots .dot {
        width: 9px;
        height: 9px;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    #blossom-top {
        bottom: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
    }

    .news-carousel {
        height: 500px;
        top: 199px;
    }

    .carousel-frame {
        min-height: 500px;
    }

    .carousel-frame img {
        object-fit: cover;
    }



    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
}
/* Dynamic Post Section */
section.dynamic-post {
    position: relative;
    width: 100%;
    /* display: flex; */
    margin-top: 30px;
    background: transparent;
    clear: both;
    height: fit-content;
}

.dynamic-post .row {
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    width: calc(80% - 20px);
    margin: 0 auto;
    justify-content: flex-start;
    align-self: center;
    gap: 20px;
    padding: 20px;
    /* box-shadow: 0 0 10px 3px #808080; */
}

.dynamic-post .row * {
    line-height: 1.2em;
}

.row {
    width: calc(100% - 20px);
}

.ti-verified-by.ti-verified-by-row {
    display: none !important;
}

.reviews {
    background-color: #fff;
}
.repocean-footer{
    display: none!important;
}

.reviews .row {
    border-radius: 0;
    width: calc(100% - 20px);
}

.dki-post {
    position: static;
    width: 100%;
    margin-top: 2px;
    background: 0 0;
    clear: both;
    height: fit-content;
    margin-top: 170px;
    z-index: 0999999999999999999999999999999999999999999999;
}

/* Header Phone and WhatsApp */
.header-phone,
.header-whatsapp {
    display: inline-block;
    margin: 0 10px;
}

.header-phone a,
.header-whatsapp a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.header-whatsapp img {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.phones {
    position: absolute;
    display: inline-block;
    left: 250px;
    top: 60px;
}

.phones div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* line-height: 57px; */
    color: #1a4898;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.phones div a {
    color: #1a4898;
}

.phones div svg {
    padding-left: 1em;
}

/* Media Queries */
@media (min-width: 768px) {
    .row {
        width: calc(80% - 20px);
    }

}


@media (min-width: 1400px) {
    .row {
        width: calc(80% - 20px);
    }
}

@media (min-width: 1900px) {
    .row {
        width: calc(80% - 20px);
    }
}

    .img-250 {
        max-width: 250px !important;
    }
    .img-300 {
        max-width: 300px !important;
    }
    .img-350 {
        max-width: 350px !important;
    }
    .img-400 {
        max-width: 400px !important;
    }
    .img-450 {
        max-width: 450px !important;
    }

@media (min-width: 1480px){
    .phones {
        left: 242px!important;
        top: 62px!important;
        z-index: 999999;
        font-size: 1em !important;
    }

}
@media (max-width: 1480px) {
    .site-logo img {
        width: auto;
        max-height: 75px !important;
    }
    .phones {
        left: 20px !important;
        top: 107px !important;
        z-index: 999999 !important;
        font-size: .9em !important;
    }

    .phones div {
        font-size: .8rem;
        margin-bottom: 0;
    }

    .mb__page-poly {
        margin-top: 1px !important;
        -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 100% 71px, 0 128px) !important;
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 100% 71px, 0 128px) !important;
    }

    .news-carousel {
        top: 138px;
    }

    section.available-vehicles {
        margin-top: 150px;
    }

    .dki-post {
        margin-top: 138px !important;
    }

    .dki-post :where(img[class*=wp-image-]) {
        float: none !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

}
@media (pointer: coarse) and (hover: none) {
    .phones {
        left: 20px !important;
        top: 107px !important;
        z-index: 999999 !important;
        font-size: .9em !important;
    }
    .dki-post {
        margin-top: 138px !important;
    }
    .dki-post :where(img[class*=wp-image-]) {
        float: none !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

}       

@media (max-width: 768px) {
    .mb__page-poly {
        margin-top: 0 !important;
        min-height: 160px;
        -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 100% 71px, 0 128px) !important;
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 100% 71px, 0 128px) !important;
    }

    body {
        background-color: #fff;
        background: linear-gradient(179deg, #ffffff 0%, #d0d0d0 33%, #ffffff 34%);
    }

    .mb__page-poly .content {
        min-height: 156px;
    }

    footer {
        margin-top: 0;
    }
    .home .mb__content, .home .mb__content .container {
        min-height: 0;
    }

    .news-carousel {
        display: none !important;
    }

    section.available-vehicles {
        position: static !important;
        margin-top:0 !important;
    }

    .side-menu-items.open {
        overflow: hidden;
    }

    section.dynamic-post {
        margin-top: 110px !important;
    }

    .row {
        width: 100% !important;
    }

    .vehicle {
        flex: 0 1 calc(100% - 0px) !important;
        overflow: hidden !important;
    }
    .dki-post {
        margin-top: 138px !important;
    }
    .dki-post :where(img[class*=wp-image-]) {
        float: none !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .repocean-slider-main-v2 .repocean-content-wrapper {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        width: 100%;
     
    }
}

footer,
.bottom{
    background-color: #fff;
}

.sidebar.open,
.sidebar.open:after,
#closemenu{
    display: none;
}

#closemenu.open {
    display: block;
    z-index: 999999999999999999;
    position: relative;
}


#menu-item-4055 > a {
    pointer-events: none;
    cursor: default;
    color: inherit;
}
p#breadcrumbs {
    width: calc(80% - 20px);
    display: block;
    alignment-baseline: middle;
    justify-content: center;
    background: #FFF;
    margin: 0 auto;
    padding: 0 20px;
}
.editor-styles-wrapper :where(:not(.is-layout-flex,.is-layout-grid))>.wp-block {

   
    text-align: left;
}
.wp-admin  * {
 
    text-align: left;
}
#wpadminbar .unread-messages-link .dashicons-before{
    
}
#wpadminbar .unread-messages-link .ab-item {
    display: flex;
    align-items: center;
}
#wpadminbar .unread-messages-link .dashicons-before {
    margin-left: 5px;
    margin-top: 10px;
}

#wpadminbar .unread-messages-link  .unread-count {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    margin: 0px 0 4px 4px;
    padding: 2px 5px;
    min-width: 16px;
    height: 16px;
    border-radius: 9px;
    background-color: #d54e21;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    text-align: center;
    z-index: 26;
}
#adminmenu  .update-plugins {
    background-color: #d54e21;
    color: #fff;
    float: left;
    margin-top: -4px;
}

[itemprop="reviewBody"] *, 
.review-box-parent {
    text-align: center !important;
}
.repocean-slider-main .repocean-slider-box-parent .slider-box .slider-box-inner .review-box {
    margin: 0 auto;
}
.repocean-content-wrapper {
    width: 80%;
    padding-left: 60px!important;
}

.dki-post .row{
    width: 100% !important;
}