@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background-color: var(--IVIS-gray-100);
}

body::-webkit-scrollbar-thumb {
    background-color: #265ddb;
}


.tawk-bubble-container .tawk-icon-right img {
    display: none !important;
}

:root {
    --IVIS-primary: #3F73EB;
    --IVIS-primary-200: #d8efff;
    --IVIS-primary-100: rgba(230 239 255);
    --IVIS-primary-50: rgb(248 251 255);
    --IVIS-primary-light: #0093F4;
    --IVIS-secondary: #ffc300;

    --IVIS-white: #fff;
    --IVIS-black-100: #111827;
    --IVIS-black-50: #1D2939;

    --IVIS-slate-50: #F8FAFC;
    --IVIS-slate-100: #F1F5F9;
    --IVIS-slate-200: #E2E8F0;
    --IVIS-slate-300: #CBD5E1;
    --IVIS-slate-400: #94A3B8;
    --IVIS-slate-500: #64748B;
    --IVIS-slate-600: #475569;
    --IVIS-slate-700: #334155;
    --IVIS-slate-800: #1E293B;
    --IVIS-slate-900: #0F172A;

    --IVIS-gray-50: #F9FAFB;
    --IVIS-gray-100: #F3F4F6;
    --IVIS-gray-200: #E5E7EB;
    --IVIS-gray-300: #D1D5DB;
    --IVIS-gray-400: #9CA3AF;
    --IVIS-gray-500: #6B7280;
    --IVIS-gray-600: #4B5563;
    --IVIS-gray-700: #374151;
    --IVIS-gray-800: #1F2937;
    --IVIS-gray-900: #111827;

    --IVIS-success-100: rgba(18 183 106);
    --IVIS-success-50: rgba(209 250 223);
    --IVIS-warning-100: rgba(255 140 75);
    --IVIS-warning-50: rgba(255 232 219);
    --IVIS-danger-100: rgba(240 68 56);
    --IVIS-danger-50: rgba(254 228 226);

    --IVIS-border: var(--IVIS-slate-200);

    --IVIS-shadow-sm: 0 4px 8px -8px rgba(8, 31, 77, .2);
    --IVIS-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --IVIS-shadow-md: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
    --IVIS-shadow-lg: 0 .5rem 1.2rem #3a3b4126;
    --IVIS-shadow-elg:rgba(0, 0, 0, 0.06) 0px 1.5px 12px 2px;    ;
}

p {
    color: var(--IVIS-gray-500);
    font-size: 14px;

}

a {
    text-decoration: none;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 23px;
    position: relative;
}

h2::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 3px;
    bottom: -2px;
    left: 0px;
    background-color: var(--IVIS-primary);
}

section {
    padding: 45px 20px;
}

@media (max-width:700px) {
    h2 {
        font-size: 28px;
        margin-bottom: 17px;
    }

    section {
        padding: 25px 15px !important;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--IVIS-black-100);
    font-weight: 600;
}

.inline-block {
    display: inline-block;
}

.btn-primary,
.btn-secondary,
.btn-outline-primary,
.btn-success,
.btn-danger {
    background-color: var(--IVIS-primary);
    border: none;
    outline: none;
    padding: 8px 23px;
    font-size: 17px;
    font-weight: 500;
    border-radius: .325rem;
    border: 1px solid transparent;
    transition: 0.4s;
    color: white;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline-primary {
    background-color: var(--IVIS-gray-50);
    border: 1px solid var(--IVIS-primary);
    box-sizing: content-box;
    color: var(--IVIS-black-100);
}

.btn-outline-primary:hover {
    background-color: var(--IVIS-primary-200);
}

.btn-secondary {
    background-color: var(--IVIS-secondary);
    color: var(--IVIS-black-100);
}

.btn-secondary:hover {
    background-color: #e9b50a;
}

.btn-primary:hover {
    background-color: var(--IVIS-primary-light);
}

.btn-success {
    background-color: var(--IVIS-success-100);
    border-radius: 4px;
}

.btn-success:hover {
    background-color: rgb(18, 172, 100);
}

.btn-danger {
    background-color: var(--IVIS-danger-100);
}

.btn-danger:hover {
    background-color: rgb(224, 58, 46);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 3px;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}

.w-50 {
    width: 50%;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex {
    display: flex;
}

.itmes-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.mx-auto {
    margin: 0 auto;
}

.rounded-full {
    border-radius: 50%;
}

.text-center {
    text-align: center;
}

.modal {
    z-index: 10000;
    top: 0px;
}

.modal .overlay {
    background-color:rgb(255 255 255 / 57%);
}

.modal .overlay .body {
    width: 400px;
    border-radius: 4px;
    background-color: var(--IVIS-white);
    padding: 12px;
    border: 1px solid var(--IVIS-primary);
    margin: 0 8px;
    box-shadow: var(--IVIS-shadow-md);
}

.modal .overlay .body .img {
    width: 40px;
    height: 40px;
}

.modal.danger .overlay .body .img {
    background-color: var(--IVIS-danger-50);
}
.modal.success .overlay .body .img {
    background-color: var(--IVIS-success-50);
}
.modal .overlay .body .img svg{
    display: none ;
}
.modal.success .overlay .body .img svg.success_icons{
    display: block;
}
.modal.danger .overlay .body .img svg.danger_icons{
    display: block;
}
.modal .overlay .body h3 {
    font-size: 17px;
    line-height: 28px;
    padding: 12px 0 15px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--IVIS-border);
    color: var(--IVIS-gray-800);
}

.modal .overlay .body .button-bar button {
    padding: 8px 0 !important;
    border-radius: 4px !important;
}

.modal .overlay .body .button-bar {
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.hide {
    display: none;
}

.fade-out {
    animation: fadeOut .4s forwards;
    opacity: 1;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        display: none;
    }
}

.fade-in {
    animation: fadeIn linear .5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        display: block;
    }
}

.loader {
    width: 50px;
    height: 50px;
    position: relative;
}

.block {
    width: 20px;
    height: 20px;
    background-color: var(--IVIS-primary);
    position: absolute;
    border-radius: 2px;
}

.block1 {
    top: 0;
    left: 0;
    animation: move1 1s linear infinite;
}

.block2 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: move2 1s linear infinite;
}

.block3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: move3 1s linear infinite;
}

@keyframes move1 {
    0% {
        top: 0;
        left: 0;
    }

    25% {
        top: 0;
        left: 50%;
    }

    50% {
        top: 50%;
        left: 50%;
    }

    75% {
        top: 50%;
        left: 0;
    }

    100% {
        top: 0;
        left: 0;
    }
}

@keyframes move2 {
    0% {
        top: 0;
        left: 50%;
    }

    25% {
        top: 50%;
        left: 50%;
    }

    50% {
        top: 50%;
        left: 0;
    }

    75% {
        top: 0;
        left: 0;
    }

    100% {
        top: 0;
        left: 50%;
    }
}

@keyframes move3 {
    0% {
        top: 50%;
        left: 50%;
    }

    25% {
        top: 50%;
        left: 0;
    }

    50% {
        top: 0;
        left: 0;
    }

    75% {
        top: 0;
        left: 50%;
    }

    100% {
        top: 50%;
        left: 50%;
    }
}

.discount_top_bar{
    background-color: var(--IVIS-primary);
   position: fixed;
   top: -50px;
   transition: 0.4s;
  left: 50%;
  transform: translateX(-50%);
    border: 3px solid var(--IVIS-secondary);
    border-radius: 0px 0px 10px 10px;
    z-index: 2;
    
}
.discount_top_bar .service_row{
     display: flex;
    justify-content: space-around;
    align-items: center;
}
.discount_top_bar .icon {
    width: 35px;
    height: 35px;
    background: var(--IVIS-secondary);
    color: var(--IVIS-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.6s;
}
.discount_top_bar .icon:hover{
    background-color: var(--IVIS-black-50);
}
.top_bar_text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 8px;
}
.discount_top_bar .service_row span{
    color: var(--IVIS-secondary);
    padding: 0px 10px;
    font-weight: 700;
}
.discount_top_bar .service_row h3{
    font-size: 25px;
    font-weight: 600;
    color:var(--IVIS-white);
    text-shadow: 1px 2px 2px rgba(0, 0, 0, .3);
}

@media (max-width:537px) {
    .discount_top_bar .service_row h3{
        font-size: 16px;
    }
    .discount_top_bar .service_row .top_bar_text{
        gap: 8px;
    }
    .discount_top_bar .service_row .btn-secondary{
        padding:4px 8px !important;
        font-size: 13px;
    }
    .discount_top_bar .btn-secondary{
        display:none;
    }
    .discount_top_bar .icon{
        width: 25px;
        height: 25px;
    }
}



.chaty-channels {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chaty-channels svg {
    width: 37px;
    height: 37px;
}

.chaty-channels .chaty-channel-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 54px;
    overflow: hidden;
}

.chaty-channels .chaty-channel-list .phone {
    transition: 1s;
}

.chaty-channels .chaty-channel-list .messenger {
    transition: 0.8s;
}

.chaty-channels .chaty-channel-list .whatsapp {
    transition: .6s;
}

.chaty-channels.active .chaty-channel-list .chaty-channel-list-icons {
    transform: translateY(160px);
}

.chaty-channels .main_icons {
    cursor: pointer;
}

.chaty-channels.active .main_icons .open {
    display: inline-block;
}

.chaty-channels .main_icons .open {
    display: none;
}

.chaty-channels.active .main_icons .close {
    display: none;
}

.chaty-channels .main_icons .close {

    display: inline-block;
}

header .top {
    background-color: var(--IVIS-primary);
}

header .top-social {
    padding: 6px;
    color: white;
}

header {
    background: var(--IVIS-white);
    box-shadow: var(--IVIS-shadow-md);
    position: sticky;
    top: -38px;
    z-index: 1000;
}

header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

header .top-header .mail-phone {
    display: flex;
    gap: 20px;
}

header .top-header .mail-phone a {
    color: var(--IVIS-white);
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}

header .top-header .top-social ul {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
}

header .top-header .top-social ul li a:hover {
    transform: scale(1.15);
    transform-origin: top right;
    background: var(--IVIS-secondary);
}

header .top-header .top-social ul li a {
    display: flex;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--IVIS--white);
}



header .logo img {
    width: 100px;
    height: 100%;
    border-radius: 4px;
    display:block;

}


header .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
    padding: 15px;
}

nav ul {
    list-style: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3px;

}

nav ul li {
    position: relative;
}

nav ul li a {
    padding: 5px 18px;
    transition: .4s;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--IVIS-black-100);
    font-size: 15px;
}

nav ul li a:hover {
    background-color: var(--IVIS-primary);
    color: var(--IVIS-white);
}

header nav ul .dropdown {
    display: flex;
    gap: 6px;
    flex-direction: column;
    position: absolute;
    top: 54px;
    left: 0px;
    padding: 12px;
    opacity: 0;
    box-shadow: var(--IVIS-shadow-sm);
    transition: .4s;
    pointer-events: none;
    overflow: hidden;
    border: 1px solid var(--IVIS-gray-300);
    border-radius: 4px;
    z-index: 1000;
}

header nav ul .dropdown li a {
    display: block;
    background-color: var(--IVIS-white);
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 13px;
    white-space: nowrap;
}

header nav ul .dropdown li {
    width: 100%;
}

header nav ul .dropdown li:hover {
    background-color: unset;
}

header nav ul .dropdown li a:hover {
    background-color: var(--IVIS-primary);
    color: var(--IVIS-white);
}

header nav ul li:hover .dropdown {
    background-color: var(--IVIS-gray-100);
    color: unset;
    opacity: 1;
    pointer-events: auto;
    top: 33px;
    align-items: unset;
}

header .menu {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

header .menu:hover {
    background-color: var(--IVIS-primary);
    color: var(--IVIS-white);
}


svg.lucide.lucide-x {
    display: none;
}

footer {
    background: #091034;
    padding: 40px 0px 10px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}
footer .bg{
    position: absolute;
    top: 0px;
    height: 100%;
    object-fit: cover;
    width: 150%;
    pointer-events: none;
}

footer .logo {
    width: 100px;
}

footer .row {
    padding: 5px;
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
}

footer ul li {
    list-style: none;
    font-size: 14px;
}

footer .col-1 .f-text {
    padding: 5px 0px 10px;
    line-height: 23px;
    width: 90%;
}

footer .col-1 .f
-text p {
    color: var(--IVIS-white);
}

footer h2,
footer h3 {
    color: var(--IVIS-white);
    font-size: 22px;
    margin-bottom: 8px;
}

footer ul li a {
    color: rgb(235, 233, 233);
    padding: 6px 0px;
    display: block;

}
footer ul .icon li a {
    background-color: var(--IVIS-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    width: 35px;
    height:35px ;
    margin-top: 15px;
    transition: 0.3s;
}
footer ul .icon li a:hover{
    transform: scale(1.2);
    color: white;
}



footer .col a {
    font-size: 14px;
    color: var(--IVIS-white);
    gap: 6px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    width: fit-content;

}
footer .col ul{
    list-style: revert-layer;
}
footer .col ul li{
    list-style: revert-layer ;
    margin-left: 15px;
    width: fit-content;
    transition: 0.3s;
}
footer li.contact_email {
    align-items: center;
    display: flex;
}
footer li.contact_website {
    display: flex;
}
/* footer li.contact_email::marker{
    color: var(--IVIS-white);
} */
footer .col ul li::marker{
    color: var(--IVIS-white);
}
footer .col li:hover{
    transform: translateX(8px);
}

footer .icon {
    display: flex;
    gap: 12px;
}

footer .copyright {
    padding-top: 25px;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid var(--IVIS-white);
    color: var(--IVIS-white);
    width: 90%;
    margin-inline: auto;
}

@media (max-width:980px) {
    footer .row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 30px;
    }
}

@media (max-width:800px) {
    header .menu {
        display: flex;
    }
    header .logo {
        padding:0px 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: start;
        gap: 20px;
        width: 100%;
    }

    nav {
        background-color: var(--IVIS-gray-100);
        position: fixed;
        width: 60%;
        min-width: 280px;
        height: 100%;
        left: -10000px;
        top: 0;
        padding: 15px;
        display: flex;
        box-shadow: var(--IVIS-shadow-lg);
        transition: 0.4s;
        align-items: center;
    }

    nav.active {
        left: 0px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        border-bottom: var(--border-1);
        font-size: 16px;
        width: 100%;
        justify-content: space-between;
        box-sizing: border-box;
    }

    header nav ul li:hover .dropdown {
        left: unset;
        right: 0px;
        top: 40px;
        width: fit-content;
    }

    svg.lucide.lucide-x {
        display: block;
        position: absolute;
        top: 20px;
        width: 28px;
        height: 30px;
        right: 20px;
    }

    svg.lucide.lucide-x :hover {
        color: var(--primary);
    }

    footer .row {
        padding-left: 20px;
    }

    footer .icon {
        justify-content: start;
    }

    footer .col {
        margin-bottom: 25px;
    }
    footer .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width:600px) {
    header .top-header .mail-phone {
        gap: 8px;
    }

    header .top-social {
        display: none;
    }

    header .top-header {
        justify-content: center;
    }
}

@media (max-width:500px) {
    header .top{
        display:none;
    }
    header{
        top:-2px;
    }
    footer .row {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}



.image-container {
    position: relative;
}

.placeholder {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.preloader {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 1;
}

@keyframes fadeInOut {
0% {
opacity: 1;
}
50% {
opacity: 0.4;
}
100% {
opacity: 1;
}
}