﻿@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;700&display=swap');

/* Local Style Page */
* {
    border: 0;
    margin: 0;
    padding: 0;
    outline: none !important;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #f1f1f6;
    overflow-x: hidden;
/*    overflow-y: hidden;*/
    font-family: "IBM Plex Sans Arabic", sans-serif !important;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, a:hover {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

button{
    transition:all 0.3s ease-in-out;
    &:hover {
        transform: scale(0.9);
    }
}

img {
    transition: all 0.3s ease-in-out;
}

@media (width > 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Style Scroll Site */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: #fff;
    border: 1px solid #fff;
}

::-webkit-scrollbar-thumb {
    background: #090326;
    border-radius: 10px
}

/* Selectione */
::selection {
    background: #090326;
    color: #fff;
}

::-moz-selection {
    background: #090326;
    color: #fff;
}

/* Style Form Validation */
::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
    color: #166434;
    opacity: 1;
}

.back {
    transform: translate(0) !important;
    visibility: initial !important;
    opacity: 1 !important;
}

.active-list {
    visibility: initial !important;
    opacity: 1 !important;
    display: block !important
}

@media (min-width: 576px) {
    #contactModal .modal-dialog {
        max-width: 580px;
    }
    #appModal .modal-dialog {
        max-width: 800px;
    }
    #contactSuccess .modal-dialog {
        max-width: 650px;
    }
}



/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.7s ease-in-out;
    z-index: 99;
}

.rotate {
    transform: rotate(180deg);
}
