/*=================== start globle ===================*/
/* CSS Reset - Resetting default styles applied by browsers */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}

/* Remove list styles for ul, ol */
ul,
ol {
    list-style: none;
}

/* Remove default link styles */
a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

a:hover {
    color: inherit;
}

main {
    flex: 1;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    font-family: "Vazirmatn", sans-serif;
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-wrap: break-word !important;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #77181f;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #55212b;
}

#index-contact-icon-container {
    display: flex;
    justify-content: center;
    height: 60px;
    width: 60px;
    cursor: pointer;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 100;
}

#index-contact-icon-container img {
    object-fit: cover;
}
.desAbout {
    font-size: 18px;
    text-align: justify;
    line-height: 35px;
    margin-bottom: 60px;
}

/*=================== end globle ===================*/

/*=================== start navbar ===================*/
.logo {
    width: 70px;
    height: 70px;
}

.navbar {
    background-color: #230005;
}

.navbar .navbar-nav .nav-link {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover {
    color: #e3aa63;
    font-weight: 700;
}

.navbar .navbar-toggler {
    color: white;
    border-color: white;
    padding: 8px 12px;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.btnLanguage {
    padding: 8px 8px 6px;
    font-weight: 700;
    margin: 0px 5px;
    border-radius: 10px;
    background-color: #230005;
    color: white;
    outline: none;
    box-shadow: none;
    border: none;
    font-size: 18px;
    transition: 0.3s;
}

.btnLanguage.active {
    color: #e3aa63;
}


/*=================== end navbar ===================*/

/*footer*/
footer {
    background-color: #26090f;
    color: white;
    padding: 40px 0px;
}

footer .contact .title {
    font-size: 30px;
    margin-bottom: 30px;
}

footer .contact .Information {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1400px) {
    footer .contact .Information {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

footer .contact .Information li {
    font-size: 18px;
    font-weight: 300;
    margin: 10px 0px;
}

footer .contact .line {
    padding: 15px 0px;
    border-bottom: 1px solid #ffffff21;
}

footer .media {
    padding-top: 30px;
}

footer .media li {
    background-color: #e3aa63;
    padding: 18px;
    margin: 0px 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .media p {
    font-size: 18px;
    font-weight: 300;
    padding-left: 15px;
}

body[dir="rtl"] footer .media p {
    padding-right: 15px;
    padding-left: 0px;
}
