/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
    /**
     * Colors
     */
    
    /* PRIMARY */
    --main-color: #2563EB;
    --other-color: #0042d2;
    --soft-main-color: rgba(37, 99, 235, 0.2);
    --soft-other-color: rgba(0, 81, 255, 0.2);

    /* NEUTRAL */
    --bg-color: #F3F4F6;
    --second-bg-color: #FFFFFF;
    --text-color: #000000;
    --second-color: #929292;
    --third-color: #9CA3AF;
    --border-color: #ececed;

    /**
     * FONT FAMILY
     */
    --font-family: "Inter", sans-serif;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
    word-break: break-word !important;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

ol,
ul,
menu {
    padding: 0 !important;
    margin: 0 !important;
}

li {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

a,
img,
span,
label,
input,
select,
button,
textarea { display: block; }

a {
    font-family: var(--font-family) !important;
    color: var(--text-color) !important;
    text-decoration: none;
}

img { height: auto; }

input,
select,
button,
textarea {
    font-family: var(--font-family) !important;
    background: none;
    border: none;
}

input,
select,
textarea {
    box-shadow: 0 0 0 transparent !important;
    outline: none;
    width: 100%;
}

textarea { resize: none; }

input::placeholder { color: var(--third-color) !important; }

select::placeholder { color: var(--third-color) !important; }

textarea::placeholder { color: var(--third-color) !important; }

button { cursor: pointer; }

form { width: 100%; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family) !important;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-weight: normal;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.3px;
}

html[dir="rtl"] body { letter-spacing: 0; }

p { max-width: max-content !important; }

/*-----------------------------------*\
  #DUBLICATE ITEMS
\*-----------------------------------*/

.section { padding-block-end: 30px; }

.container {
    padding-inline: 16px !important;
    margin-inline: auto;
    max-width: 1440px !important;
    width: 100% !important;
}

.img-cover {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.img-holder {
    background-color: var(--second-bg-color) !important;
    overflow: hidden;
}

.main { 
    padding-block-start: 105px;
    min-height: 100vh;
}

.removeClass {
    background: transparent !important;
    outline: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    max-width: auto !important;
    min-height: auto !important;
    max-height: auto !important;
}

.title-section { margin-block-end: 16px; }