
.border {
    border: 1px solid red;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

.main-container {
    max-width: 1200px !important;
    margin: 0 auto;
}

.w-full {
    width: 100%;
}

.user-login{
    text-decoration: none;
    background-color: rgb(35, 192, 224);
    color: white;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 8px 15px;
    letter-spacing: 0.5px;
    border-radius: 0 0 8px 8px;
    position: absolute;
    right: 0;
    z-index: 9999;
    position: fixed;         
    right: -45px;            
    top: 50%;               
    transform: translateY(-50%) rotate(90deg);
}

.privacy-content{
    padding: 50px 0;
    background-color: #fbfbfb;
}

.privacy-content .head{
    font-size: 24px;
    font-family: "Montserrat";
    color: #3f3f3f;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: start;
}

.privacy-content .breadcrumb-wrapper {  
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 15px;
    margin-top: -28px;
}

.fa-greater-than{
    font-size: 10px;
    color: #8d8d8d !important;
    line-height: 10px;
}


.breadcrumb-home a{
   text-decoration: none; 
    color: #8d8d8d !important;
    font-size: 14px;
    font-family: "Raleway";
    font-weight: 400;
    line-height: 23.8px;
}

.breadcrumb-policy{
    font-size: 14px;
    font-weight: 700;
    font-family: "Raleway";
    color: rgb(141, 141, 141);
    line-height: 23.8px;
}

/* Phone widget icon css */
#vdz_cb_widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.vdz_cb_widget_btn {
    width: 65px;
    height: 65px;
    background: #16acce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    position: relative;
}

.vdz_cb_widget_icon svg {
    width: 28px;
    fill: #fff;
}

.vdz_cb_widget_btn {
    animation: vibrate 0.6s infinite;
}

@keyframes vibrate {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-4px); }
    50%  { transform: translateX(4px); }
    75%  { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}


/* Modal css */
.call-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 10000;
}

.call-modal.show {
    opacity: 1;
    visibility: visible;
}

.call-modal-content {
    background: #fff;
    padding: 35px 40px;
    text-align: center;
    position: relative;
    animation: popup 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.call-modal-content h3{
    font-family: "Montserrat";
    color: #3f3f3f;
    font-weight: 700;
    font-size: 21px;
    margin-top: 0;
}

.call-modal-content input{
    margin-bottom: 10px;
    padding: 0px 20px;
    line-height: 48px !important;
    border: 1px solid #e3e3e3;
    color: #8d8d8d;
    font-family: "Raleway";
    font-weight: 400;
    max-width: 188.953px;
}

input::placeholder,
textarea::placeholder {
    font-style: italic;
}

.call-modal-content button{
    color: #333;
    background-color: #fff;  
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: "Raleway";
    width: fit-content;
    text-align: center;
    margin-bottom: 20px;   
}

.call-modal-content button:hover {
    background-color: #e6e6e6;
}

.call-modal-content p{
    font-family: "Raleway";
    color: #8d8d8d;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@keyframes popup {
    from { transform: scale(0.7); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

body, main {
    padding-top: 59px; 
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    transition: all 0.3s ease;
}

nav.nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.3s ease, padding 0.3s ease;
}

nav.nav.shrink {
    height: 50px;
}

.bottom-border-none{
    border-bottom: none !important;
}

.hamburger {
    display: none;
}

.hamburger-dropdown {
    max-height: 0;          
    overflow: hidden;   
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    background-color: rgba(35, 35, 35, 1) !important;   
    transition: max-height 0.5s ease, padding 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    padding-top: 0;  
}

.hamburger-dropdown.show {
    max-height: 600px;         
    opacity: 1;
    padding-top: 20px; 
}

.hamburger-dropdown.show .ham-social {
    display: flex;
}

.hamburger-dropdown.show .ham-social > div {
    flex: 1;
    border: 1px solid rgba(48, 48, 48, 1);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger-dropdown a {
    padding: 20px 0;
    margin: 0 40px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: "Raleway";
    font-size: 14px;
    border-bottom: 1px solid rgba(48, 48, 48, 1);
}

.hamburger-dropdown i {
    margin-right: 5px;
    font-size: 14px;
    width: 20px;
}

.hamburger-dropdown .ham-home{
    border-bottom: 1px solid rgba(48, 48, 48, 1);  
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 0 40px;
}
.hamburger-dropdown .ham-home .fa-chevron-down{
    color: white;
    width: 10%;
}

.hamburger-dropdown .ham-home a{
    border: none;
    width: 90%;
    margin: 0;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 14px;
    color: rgb(255, 255, 255);
}


@media (max-width: 1025px) {
    .main-container {
        max-width: 100% !important; 
        padding: 0 20px !important; 
    }

    .menus {
        display: none !important;        
        flex-direction: column; 
        background-color: #fff;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .menus.show {
        display: flex; 
    }

    .hamburger {
        display: block !important;  
        cursor: pointer;
        font-size: 24px;
        padding: 10px;
    }

    nav.nav {
        justify-content: space-between;
        position: relative;
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .web-info .text{
        font-size: 20px;
    }

    .footer{
        flex-direction: column;
        justify-content: start !important;
        align-items: center !important;
        padding: 40px !important;
    }

    .about, .contact {
        width: 100% !important;
    }

    .privacy-content{
        padding: 50px 20px;
    }

}

@media (max-width: 800px) { 
    nav.nav {  
        justify-content: center !important;
    }

    .privacy-content .head{
        justify-content: center;
    }

    .privacy-content .breadcrumb-wrapper {  
        margin-top: 10px;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .call-modal-content{
        max-width: 60%;
        width: 100%;
        min-height: 287.8px !important;
        max-height: 287.8px !important;
        height: fit-content !important;
    }
}

