@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {

    --primary: 150, 67%, 39%;
    --secondary: hsl(150, 67%, 24%);
    --optional: #142532;
    --txt-color: #fff;

    --warning: 0, 100%, 50%;
    --yellow-warning: 50, 100%, 35%;
    --success: 120, 100%, 43%;

    --light-hover: #E4EEFF;

    --bg: #F0DBA5;
    --text: #151515;

    --light: #EFFDF5;
    --dark: #0E2E50;

}

@font-face {
    font-family: krd;
    src: url(assets/krd.woff);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    transition: background .3s ease-in-out,
    background-color .3s ease-in-out,
    border .3s ease-in-out,
    color .3s ease-in-out;
    position: relative;
    line-height: 1.3;
}

*:hover,
*:focus,
*:focus-visible {
    outline: transparent;
}

::selection {
    color: white;
    background-color: hsl(var(--primary));
}

img::selection {
    color: transparent;
    background-color: transparent;
}

::-webkit-scrollbar {
    width: .5vw;
    height: .5vw;
    cursor: pointer;
}

::-webkit-scrollbar-track {
    background: var(--text);
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--primary));
    transition: .3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text);
}

object {
    pointer-events: none;
}

.rtl {
    letter-spacing: -.7px;
}

body,
html {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    scrollbar-color: hsl(var(--primary)) var(--text);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    overflow-x: clip;
    font-family: Heebo, sans-serif;
    background-color: white;
}

body.stretch,
html.stretch {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

body.stretch.rtl,
html.stretch.rtl {
    flex-direction: row-reverse;
}

body.rtl {
    font-family: "krd";
}

body.center {
    justify-content: center;
}

body.static {
    position: fixed;
    overflow: hidden;
    padding-right: 1vh;
}

.off {
    display: none;
}

p {
    line-height: 1.75;
    font-size: 1.25rem;
}

main {
    width: 100%;
    margin: 0;

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

body.stretch main {
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-color: hsl(var(--primary)) var(--text);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding: 3rem;
}

body.stretch main .title {
    font-family: poppins;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    color: hsl(var(--primary));
}

body.stretch main .title.rtl {
    font-family: krd;
    direction: rtl;
    font-weight: bold;
}

body.stretch main .title.auto {
    margin-top: auto;
}

body.stretch main .title i {
    margin-left: .75rem;
}

body.stretch main .title.rtl i {
    margin-left: unset;
    margin-right: .75rem;
    display: inline-block;
}

.smallScreenHeader {
    display: none
}

body .rtl {
    font-family: krd;
}

body i.rtl {
   font-family: "Font Awesome 6 Pro"; 
}

main a,
main p,
main h1 {
    pointer-events: all;
}

.loaderContainer::before,
.loaderContainer::after {
    position: fixed;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 60%;
}

.loaderContainer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.loader {
    --color: var(--text);
    --size-mid: 6vmin;
    --size-dot: 1.5vmin;
    --size-bar: 0.4vmin;
    --size-square: 2rem;
    
    display: block;
    position: relative;
    width: 50%;
    display: grid;
    place-items: center;
}

.loader::before,
.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
}

.loader.--7::before,
.loader.--7::after {
    width: var(--size-square);
    height: var(--size-square);
    background-color: var(--color);
}

.loader.--7::before {
    top: calc(50% - var(--size-square));
    left: calc(50% - var(--size-square));
    animation: loader-6 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

.loader.--7::after {
    top: 50%;
    left: 50%;
    animation: loader-7 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

@keyframes loader-6 {
    0%, 100% {
        transform: none;
    }
    
    25% {
        transform: translateX(100%);
    }
    
    50% {
        transform: translateX(100%) translateY(100%);
    }
    
    75% {
        transform: translateY(100%);
    }
}

@keyframes loader-7 {
    0%, 100% {
        transform: none;
    }
    
    25% {
        transform: translateX(-100%);
    }
    
    50% {
        transform: translateX(-100%) translateY(-100%);
    }
    
    75% {
        transform: translateY(-100%);
    }
}

.landing {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 70%;
    height: calc(100% - 15rem);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    transition: opacity .3s ease-in-out;
}

.landing.off {
    opacity: 0;
}

.landing.off .hero,
.landing.off h1,
.landing.off p,
.landing.off a{
    pointer-events: none !important;
}

.landing .filter {
    height: 0;
    width: 0;
    pointer-events: none;
}

.blob-cont {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: -2;
    height: 500px;
    width: 500px;
    left: 50%;
    top: 40%;
    transform: translateY(-50%);
}

.blob-cont.rtl {
    right: 50%;
    left: unset;
}

.blob-cont .blob {
    position: absolute;
    border-radius: 10rem;
    filter: blur(60px);
}

.blob-cont .blob.one {
    background-color: var(--one);
    top: 200px;
    left: 100px;
    height: 200px;
    width: 200px;

    animation: one 8s infinite ease;
}

.blob-cont .blob.two {
    background-color: var(--two);
    position: absolute;
    right: 0;
    top: 300px;
    height: 250px;
    width: 200px;

    animation: two 8s infinite linear;
}

.blob-cont .blob.three {
    background-color: var(--three);
    position: absolute;
    top: 80px;
    right: -20px;
    height: 200px;
    width: 250px;

    animation: three 8s infinite ease;
}

@keyframes one {
    0% {top: 200px; left: 100px; transform: scale(1);}
    30% {top: 300px; left: 150px; transform: scale(1.2);}
    60% {top: 100px; left: 200px; transform: scale(1.3);}
    100% {top: 200px; left: 100px; transform: scale(1);}
}

@keyframes two {
    0% {top: 250px; right: 0px; transform: scale(1);}
    30% {top: 150px; right: 150px;transform: scale(1.4);}
    60% {top: 250px; right: 100px;transform: scale(1);}
    100% {top: 250px; right: 0px; transform: scale(1);}
}

@keyframes three {
    0% {top: 80px; right: -20px; transform: scale(1.2);}
    30% {top: 300px; right: -20px;transform: scale(1);}
    60% {top: 200px; right: 100px;transform: scale(1);}
    100% {top: 80px; right: -20px; transform: scale(1.2);}
}

.landingImages {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 580px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.landingImage {
    width: 480px;
    height: 400px;
    background-image: url("assets/landing-1.webp");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 40px 40px -20px rgba(0, 0, 0, .4);
    will-change: transform;
    transform:
    translate3d(20px, 16.5786px, 0px)
    scale3d(1, 1, 1)
    rotateX(0deg)
    rotateY(0deg)
    rotateZ(0deg)
    skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.landingImage.two {
    position: static;
    z-index: 2;
    width: 200px;
    height: 160px;
    margin-top: -120px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    background-image: url("assets/landing-2.webp");
    transform:
    translate3d(0px, -40px, 0px)
    scale3d(1, 1, 1)
    rotateX(0deg)
    rotateY(0deg)
    rotateZ(0deg)
    skew(0deg, 0deg);
}

.landingImage.three {
    width: 280px;
    height: 200px;
    margin-top: -90px;
    margin-right: 50px;
    background-image: url("assets/landing-3.webp");
    transform:
    translate3d(0px, -30px, 0px)
    scale3d(1, 1, 1)
    rotateX(0deg)
    rotateY(0deg)
    rotateZ(0deg)
    skew(0deg, 0deg);
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 3;
    display: flex; 
    justify-content: center;
    align-items: center;
    isolation: isolate;
}

/*header,
.hero,
.hero .hero-text h1,
.hero .hero-text p,
.hero .hero-text .buttons .button,
.hero .social-links,
.scroll-down {
    transform: translateY(-2rem);
    opacity: 0;
    transition: unset;
    pointer-events: none;
}*/

nav {
    border-radius: 1rem;
    transition: border-radius .3s ease-in-out;
}

nav.rtl {
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}

nav h2 {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
    transition: color 0s;
    filter: drop-shadow(0 0 .5rem #0005);
    white-space: nowrap;
}

nav.rtl h2{
    margin-left: 2rem;
    margin-right: 0;
}

nav h2 span{
    transition: color 0s;
}

nav h2 img {
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1;
    object-fit: cover;
    margin-right: .75rem;
    border: .1rem solid;
    border-radius: 10rem;
    transition: all 0s;
    background-color: var(--text);
}

nav h2.rtl img {
    margin-right: 0;
    margin-left: .75rem;
}

.burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: none;
    border: none;
}

.burger span {
    pointer-events: none;
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out,
    background 0s;
    box-shadow: 0 0 .5rem #0005;
}

.burger span:nth-of-type(1) {
    top: 0;
    transform-origin: left center;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.burger[aria-expanded=true] span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0;
    left: 5px;
}

.burger[aria-expanded=true] span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.burger[aria-expanded=true] span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
}

nav .menu {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    place-items: center;
    grid-gap: 2rem;
}

nav .menu::before {
    position: fixed;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #DFDFDF;
    background-image: url(assets/noise.png);
    background-position: center;
    background-size: 600px;
    opacity: 0;
}

nav .menu a {
    font-size: 1.25rem;
    font-weight: 500;
    display: grid;
    grid-template-columns: auto auto;
    place-items: center;
    grid-gap: .5rem;
    filter: drop-shadow(0 0 .5rem #0005);
    font-weight: bold;
    transition: color .3s ease-in-out;
}

nav .menu a.active::after {
    content: "";
    position: absolute;
    bottom: -.5rem;
    z-index: 2;
    width: 100%;
    height: .1em;
    background-color: black;
    border-radius: 2rem;
    transition: background-color .3s ease-in-out;
}

nav .menu a.active:hover::after {
    background-color: white;
}

nav .menu a.rtl {
    font-weight: 500;
}

nav .menu a > * {
    pointer-events: none;
}

nav .menu a span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

nav .menu a i {
    font-size: 1rem;
    margin-left: .5rem;
}

nav .menu.rtl a i {
    margin-right: .5rem;
    margin-left: 0;
}

nav .menu a::before {
    position: absolute;
    content: "";
    width: 120%;
    height: 80%;
    background-color: hsl(hsl(var(--primary)), .75);
    transform: translateY(50%) scaleY(0);
    z-index: 0;
    transition: transform .3s ease-in-out;
    transform-origin: bottom;
}

nav .menu a:hover,
nav .menu a:focus-visible {
    color: white;
}

nav .menu a:hover::before,
nav .menu a:focus-visible::before {
    transform: translateY(25%) scaleY(1);
}

.changeLanguageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: margin .3s ease-in-out;
}

.changeLanguageContainer.space {
    margin-bottom: 0;
}

.changeLanguageContainer .changeLanguage {
    display: grid;
    grid-template-columns: auto auto auto;
    place-items: center;
    grid-gap: .75rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #0E2E50;
    background: white;
    border: none;
    border-radius: .75rem;
    padding: .5rem .75rem;
    font-family: poppins;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
}

.changeLanguageContainer .changeLanguage.rtl {
    font-family: krd;
}

.changeLanguageContainer .changeLanguage::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 110%;
    height: 125%;
    background-color: hsl(var(--primary));
    transform: translate(-50%, -50%) scaleX(0);
    transform-origin: left;
    transition: transform .3s ease-in-out;
}

.changeLanguageContainer .changeLanguage.rtl::before {
    transform-origin: right;
}

.changeLanguageContainer .changeLanguage:hover,
.changeLanguageContainer .changeLanguage:focus-visible {
    color: white;
}

.changeLanguageContainer .changeLanguage:hover::before,
.changeLanguageContainer .changeLanguage:focus-visible::before {
    transform: translate(-50%, -50%) scaleX(1);
}

.changeLanguageContainer .changeLanguage img {
    width: 1em;
    height: 1em;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10rem;
    border: .1em solid currentColor;
}

.changeLanguageContainer .changeLanguage i {
    transition: transform .3s ease-in-out;
}

.changeLanguageContainer .changeLanguage i.close {
    transform: rotate(.5turn);
}

.changeLanguageContainer .languages {
    width: max-content;
    min-width: 100%;
    position: absolute;
    top: calc(100% + .75rem);
    background-color: white;
    padding: .5rem;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    grid-gap: .5rem;
    border-radius: .75rem;
    box-shadow: 0 0 1rem #0003;
    transition: opacity .3s ease-in-out,
    top .3s ease-in-out;
    direction: rtl;
}

.changeLanguageContainer .languages.hidden {
    opacity: 0;
    pointer-events: none;
    top: 100%;
}

.changeLanguageContainer .languages .language {
    font-size: 1.25rem;
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: .5rem;
    place-items: center;
    place-content: space-between;
    border: none;
    border-radius: .5rem;
    padding: .25rem .5rem;
    background-color: transparent;
    font-family: krd;
    margin-bottom: .5rem;
    cursor: pointer;
    color: #0E2E50;
}

.changeLanguageContainer .languages .language > * {
    pointer-events: none;
}

.changeLanguageContainer .languages .language.off{
    display: none;
}

.changeLanguageContainer .languages .language::after {
    content: "";
    position: absolute;
    bottom: -.5rem;
    width: calc(100% - 1rem);
    height: 1px;
    background-color: var(--text);
}

.changeLanguageContainer .languages .language:last-child {
    margin-bottom: 0;
}

.changeLanguageContainer .languages .language:last-child::after {
    display: none;
}

.changeLanguageContainer .languages .language:hover,
.changeLanguageContainer .languages .language:focus-visible {
    background-color: hsl(var(--primary));
    color: white;
}

.changeLanguageContainer .languages .language img {
    width: 1em;
    height: 1em;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10rem;
    border: .1em solid currentColor;
}

aside {
    height: 100%;
    min-width: 25%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: var(--text);
    padding: 2rem;
    overflow-y: auto;
    box-shadow: -.5rem 0 .5rem #0003;
}

aside.off {
    display: flex;
}

aside header,
aside header nav,
aside header nav::before,
aside .languages,
aside .languages .language {
    all: unset;
}

aside .menuClose {
    display: none;
}

aside header {
    width: 100%;
    display: grid;
    place-items: center;
    grid-gap: 2rem;
    margin-bottom: auto;
}

aside header .company {
    display: grid;
    place-items: center;
    grid-gap: 1rem;
}

aside header .company img {
    width: 5rem;
    height: 5rem;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10rem;
    border: .2rem solid white;
}

aside header .company h3 {
    font-size: 2rem;
    color: white;
    text-align: center;
}

aside header nav {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    grid-gap: 1rem;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

aside header nav::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    opacity: 1;
}

aside header nav .navBtn,
.firstPost {
    background-color: hsl(var(--primary));
    border: .2rem solid hsl(var(--primary));
    border-radius: 1rem;
    width: 100%;
    padding: 1rem;
    font-family: poppins;
    color: white;
    font-size: 1.2rem;
    display: grid;
    grid-template-columns: auto auto;
    place-items: center;
    place-content: space-between;
    grid-gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-weight: 500;
}

.firstPost {
    width: max-content;
    margin: 0 auto;
}

.firstPost.off {
    display: none;
}

aside header nav .navBtn.rtl,
.firstPost.rtl {
    direction: rtl;
    text-align: right;
    font-family: krd;
}

aside header nav .navBtn:hover,
aside header nav .navBtn:focus-visible,
.firstPost:hover,
.firstPost:focus-visible {
    background-color: var(--secondary);
    border: .2rem solid hsl(var(--primary));
}

aside .languages {
    display: grid;
    grid-template-columns: auto auto auto auto;
    place-items: center;
    grid-gap: 1.5rem;
    margin-top: auto;
}

aside .languages .language {
    display: grid;
    place-items: center;
    grid-gap: .5rem;
    cursor: pointer;
}

aside .languages .language > * {
    pointer-events: none;
}

aside .languages .language span {
    color: white;
    font-family: krd;
}

aside .languages .language[data-language=en] span,
aside .languages .language[data-language=tr] span {
    font-family: poppins;
}

aside .languages .language img {
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1;
    border-radius: 10rem;
    object-fit: cover;
    border: .2rem solid hsl(var(--primary));
    transition: filter .3s ease-in-out,
    transform .3s ease-in-out;
}

aside .languages .language:hover img,
aside .languages .language:focus-visible img {
    filter: brightness(1.5);
    transform: translateY(-.5rem);
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
/*    background:
        linear-gradient(to right, #151515 1px, transparent 1px) 0 0,
        linear-gradient(to right, #151515 1px, transparent 1px) 0 100%,
        linear-gradient(to left, #151515 1px, transparent 1px) 100% 0,
        linear-gradient(to left, #151515 1px, transparent 1px) 100% 100%,
        linear-gradient(to bottom, #151515 1px, transparent 1px) 0 0,
        linear-gradient(to bottom, #151515 1px, transparent 1px) 100% 0,
        linear-gradient(to top, #151515 1px, transparent 1px) 0 100%,
        linear-gradient(to top, #151515 1px, transparent 1px) 100% 100%;*/
    background-repeat: no-repeat;
    background-size: 1rem 1rem;
    padding: 0 2rem;
}

.hero.rtl {
    direction: rtl;
}

.hero .hero-text,
#contact .contactText {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.hero .hero-text h1 {
    font-size: 4rem;
    font-weight: normal;
    margin: 0;
}

.hero .hero-text p {
    width: 80%;
    font-size: 1.75rem;
    margin: 3rem 0;
    font-weight: bold;
}

.hero .hero-text p.rtl {
    font-weight: 500;
}

.hero .hero-text .buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}

#contact .contactText .phones {
    display: flex;
    justify-content: flex-start;
    align-items: center;    
    flex-wrap: wrap;
    margin-top: 1.5rem;
    transform: translateX(-.5rem);
}

#contact .contactText .phones.rtl {
    transform: translateX(.5rem);
}

.hero .hero-text .buttons .button,
#contact .contactText .phones .button,
#work .button {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: .5rem;
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    color: white;
    font-family: Marcellus;
    cursor: pointer;
    isolation: isolate;
}

.hero .hero-text .buttons .button.rtl,
#contact .contactText .phones .button.rtl,
#work .button.rtl {
    font-family: krd;
    padding: 1rem 1.5rem;
}

#work .button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

#contact .contactText .phones .button {
    grid-template-columns: auto auto auto;
    font-size: 1rem;
    width: max-content;
    margin: .75rem;
}

.hero .hero-text .buttons .button::before,
#contact .contactText .phones .button::before,
#work .button::before,
.hero .hero-text .buttons .button::after,
#contact .contactText .phones .button::after,
#work .button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--primary));
    transition: transform .3s ease-in-out,
    background-color .3s ease-in-out;
    z-index: 0;
}

.hero .hero-text .buttons .button::before,
#contact .contactText .phones .button::before,
#work .button::before {
    border: .2rem solid #333;
}

.hero .hero-text .buttons .button::after,
#contact .contactText .phones .button::after,
#work .button::after {
    background-color: #333;
    transform: translate(.5rem, .5rem);
    transition: transform .3s ease-in-out;
    z-index: -1;
}

.hero .hero-text .buttons .button:hover::after,
.hero .hero-text .buttons .button:focus-visible::after,
#contact .contactText .phones .button:hover::after,
#contact .contactText .phones .button:focus-visible::after,
#work .button:hover::after,
#work .button:focus-visible::after {
    transform: translate(0, 0);
}

.hero .hero-text .buttons .button:hover::before,
.hero .hero-text .buttons .button:focus-visible::before,
#contact .contactText .phones .button:hover::before,
#contact .contactText .phones .button:focus-visible::before,
#work .button:hover::before,
#work .button:focus-visible::before {
    background-color: hsl(var(--primary));
}

.hero .hero-text .buttons .button:hover,
.hero .hero-text .buttons .button:focus-visible,
#contact .contactText .phones .button:hover,
#contact .contactText .phones .button:focus-visible,
#work .button:hover,
#work .button:focus-visible {
    border-color: hsl(var(--primary));
    color: white;
}

#contact .contactText .phones .button span:first-child,
#contact .contactText .phones .button.mail span:first-child {
    padding-left: 0;
    padding-right: .5rem;
    border-left: none;
    border-right: .1rem solid white;
}

#contact .contactText .phones .button span.rtl:first-child,
#contact .contactText .phones .button.mail.rtl span:first-child {
    padding-right: 0;
    padding-left: .5rem;
    border-right: none;
    border-left: .1rem solid white;
}

#contact .contactText .phones .button span:nth-child(2) {
    letter-spacing: 1px;
}

.hero.rtl .hero-text .buttons .button i,
#contact.rtl .contactText .button i,
#work.rtl .button i {
    transform: scaleX(-1);
}

.hero .social-links{
    display: grid;
    place-items: center;
    gap: 1rem;
}

.hero .social-links a{
    font-size: 1.5rem;
    opacity: .75;
    transition: opacity .3s ease-in-out,
    border .3s ease-in-out;
    border-bottom: .1rem solid transparent;
}

.hero .social-links a svg{
    width: 1.5rem;
}

.hero .social-links a:hover,
.hero .social-links a:focus-visible{
    opacity: 1;
    border-bottom: .1rem solid black;
}

.scroll-down {
    position: fixed;
    bottom: 0;
    z-index: 2;
}

.scroll-down .box span {
    width: 20px;
    height: 20px;
    display: block;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.scroll-down .box span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-down .box span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) translate(10px, 10px);
    }
    100% {
        opacity: 0;
    }
}

[data-animate],
.word {
    transition: unset;
    transform: translateY(-2rem);
    opacity: 0;
}

[data-animate=text] {
    transform: translateY(0);
    opacity: 1;
}

.main-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: 100vh;
}

.main-content #about,
.main-content #contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    place-content: center;
    grid-gap: 5rem;
    width: 70%;
    padding: 6.5rem 2rem;
    margin-top: 5rem;
}

.main-content #about {
    grid-template-columns: 1fr;
}

.main-content #about .decorations {
    width: 100%;
    height: calc(100% - 4rem);
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    flex-direction: column;
    opacity: 0;
}

.main-content #about .decorations .plus {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
}

.main-content #about .decorations .plus::before,
.main-content #about .decorations .plus::after {
    --_b: 1px;
    --_color: white;
    content: "";
    width: 1.5rem;
    aspect-ratio: 1;
    border: none;
    background:
        conic-gradient(from 90deg at var(--_b) var(--_b),transparent 90deg, var(--_color) 0) 
        calc(100% + var(--_b)/2) calc(100% + var(--_b)/2)/
        calc(50%  + var(--_b))   calc(50%  + var(--_b));
    display: inline-block;
    animation: plus 4s steps(4, end) infinite;
}

@keyframes plus {
    100% {
        transform: rotate(.5turn);
    }
}

.main-content #contact {
    grid-gap: 5rem;
    padding-top: 5rem;
    margin-top: 0;
}

.main-content #about.rtl,
.main-content #contact.rtl {
    direction: rtl;
}

.main-content #about .aboutBg,
.main-content #about .aboutBgWhite {
    position: absolute;
    width: 200%;
    height: 100%;
    background-color: var(--optional);
    clip-path: inset(0 0 0 100%);
}

.main-content #about .aboutBgWhite {
    height: calc(100% + 4rem);
    background-color: #fff7;
    clip-path: unset;
    box-shadow: 0 0 1.5rem #0002;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.main-content #about .aboutText{
    color: white;
}

.main-content #about .aboutText h3,
.main-content #contact .contactText h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.main-content #about .aboutText h3 {
    font-size: 3rem;
}

.main-content #about .aboutUs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: start;
    grid-gap: 2.5rem;
    color: white;
}

.main-content #about .aboutUs .column {
    display: grid;
    grid-gap: 1rem;
    place-items: center;
}

.main-content #about .aboutUs .column i {
    font-size: 2rem;
}

.main-content #about .aboutUs .column h4 {
    text-align: center;
    font-size: 1.5rem;
}

.main-content #contact .contactText h3 {
    font-size: 2.5rem;
}

.main-content #about .aboutText p,
.main-content #about .aboutUs .column p,
.main-content #contact .contactText p {
    text-align: justify;
    font-size: 1.125rem;
    line-height: 1.75;
    letter-spacing: 0;
}

.main-content #about .aboutUs .column p {
    text-align: center;
}

.main-content #contact .contactText p {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
}

.main-content #contact .contactText p.rtl {
    font-weight: 500;
    text-align: right;
}

.main-content #contact .contactText p.location {
    font-size: 1rem;
    margin-top: 1.5rem;
}

.main-content #about .aboutImage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content #about .aboutImage img{
    width: 100%;
    border-radius: 1rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0 .5rem 1rem #0003;
}

#about p {
    font-size: 2.5rem;
    font-family: "montserrat-medium", sans-serif;
    text-align: justify;
    margin-bottom: 0;
}

.main-content #work {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    place-content: center;
    grid-gap: 3rem;
    width: 70%;
    padding: 0 2rem;
    padding-top: 5rem;
}

.main-content #work.rtl {
    direction: rtl;
}

.main-content #work .workText {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.main-content #work .workText h3 {
    font-size: 3rem;
}

.main-content #work .workText p {
    font-size: 2rem;
    margin-top: 0.5rem;
    font-weight: bold;
}

.main-content #work .workText p.rtl {
    font-weight: 500;
}

.main-content #work .workPosts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    place-items: center;
    place-content: center;
    grid-gap: 2rem;
}

.main-content #work .workPosts.empty {
    grid-template-columns: 1fr;
}

.noPosts {
    color: hsl(var(--primary));
    text-align: center;
    font-family: poppins;
}

.noPosts p {
    font-size: 1.5rem;
    margin: 0;
}

.main-content #work .workPosts.empty .noPosts.rtl {
    font-family: krd;
    direction: rtl;
}

.main-content #work .workPosts .post {
    width: 100%;
    display: none;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background: white;
    border: none;
    border-radius: .75rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 .5rem 1rem #0001;
    font-family: Marcellus;
    color: var(--text);
    font-size: 1rem;
}

.post {
    background-color: transparent;
    border: none;
}

.main-content #work .workPosts .post.rtl {
    font-family: krd;
}

.main-content #work .workPosts .post[data-animate] {
    display: flex;
}

.post > * {
    pointer-events: none;
}

.post > a {
    pointer-events: all;
}

.post img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
}

.post p {
    text-transform: capitalize;
    direction: rtl;
    font-family: krd;
}

.post p span {
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: start;
}

.noPosts {
    color: hsl(var(--primary));
}


.main-content #work .postsShowcaseButtons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content #work .postsShowcaseButtons .button > * {
    pointer-events: none;
}

.main-content #work .postsShowcaseButtons .button:first-child {
    margin-right: 1rem;
}

.main-content #work .postsShowcaseButtons .button.rtl:first-child {
    margin-right: 0;
    margin-left: 1rem;
}

.main-content #work .postsShowcaseButtons .button:last-child {
    transform: translateY(-2rem);
    opacity: 0;
    display: none
}

.main-content #contact .contactImage {
    width: 75%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: auto;
}

.main-content #contact .contactImage.rtl {
    margin-left: unset;
    margin-right: auto;
}

.main-content #contact .contactImage::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-color: hsl(var(--primary));
    --_clip-border: 3rem;
    clip-path: polygon(0% 0%, 0% 100%, var(--_clip-border) 100%, var(--_clip-border) var(--_clip-border), calc(100% - var(--_clip-border)) var(--_clip-border), calc(100% - var(--_clip-border)) calc(100% - var(--_clip-border)), var(--_clip-border) calc(100% - var(--_clip-border)), var(--_clip-border) 100%, 100% 100%, 100% 0%);
}

.main-content #contact .contactImage img {
    height: calc(100% - 5rem);
    object-fit: cover;
    right: 6rem;
    filter: drop-shadow(40px 40px 20px rgba(0, 0, 0, .1));
}

.main-content #contact .contactImage.rtl img {
    right: revert;
    left: 6rem;
}

.about-info {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: .5fr;
    grid-gap: 3rem;
    margin-inline: auto;
}

.header-carousel {
    overflow: hidden;
    margin-top: 1rem;
}

.header-carousel,
.header-carousel.rtl {
    direction: ltr;
}

.owl-stage-outer {
    max-height: 100%;
    border-radius: 2rem;
}

.postPreviewContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: opacity .5s ease-in-out;
}

.postPreviewContainer .tapClose {
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
}

.postPreviewContainer.off {
    opacity: 0;
    pointer-events: none;
}

.postPreviewContainer .postPreview {
    display: flex;
    justify-content: space-between;
    height: 50vh;
    border-radius: 1rem;
    overflow: hidden;
    margin: 0 2rem;
    box-shadow: 0 .5rem 1rem #0003;
    transition: transform .5s ease-in-out;
}

.postPreviewContainer.off .postPreview {
    transform: translateY(-2rem);
}

.postPreviewContainer .postPreview .closePostPreview {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 5;
    color: white;
    mix-blend-mode: difference;
    border: none;
    border-radius: 10rem;
    display: flex;
    justify-content: center ;
    align-items: center;
    background: none;
    font-size: 1.5rem;
    cursor: pointer; 
}

.postPreviewContainer .postPreview .postPreviewImage {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50vh;
    max-height: 50vh;
    aspect-ratio: 1;
    background: var(--text);
}

.postPreviewContainer .postPreview .postPreviewImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.postPreviewContainer .postPreview .postPreviewImage img.blured {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) brightness(.95);
    transform: scale(1.1);
    border-bottom: none;
}

.postPreviewContainer .postPreview .postInfo {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 50vh;
    padding: 1.5rem;
    background-color: white;
    aspect-ratio: 1;
}

.postPreviewContainer .postPreview .postInfo h3 {
    text-align: left;
}

.postPreviewContainer .postPreview .postInfo h3.rtl {
    text-align: right;
}

.postPreviewContainer .postPreview .postInfo h3::before {
    width: 100%;
    height: 2rem;
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    background-image: linear-gradient(to top, transparent, white);
    z-index: 2;
}

.postPreviewContainer .postPreview .postInfo p {
    position: relative;
    height: calc(50vh - 7.5rem);
    overflow-y: auto;
    text-align: justify;
    line-height: 1.75;
    margin-bottom: auto;
    scroll-behavior: smooth;
    scrollbar-color: transparent transparent;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-top: 1rem;
    padding-bottom: 1.25rem;
    font-family: krd;
    transition: scrollbar-color .3s ease-in-out;
    text-transform: capitalize;
}

.postPreviewContainer .postPreview .postInfo:hover p,
.postPreviewContainer .postPreview .postInfo:focus-visible p {
    scrollbar-color: hsl(var(--primary)) transparent;
    scrollbar-width: thin;
    padding-left: .5rem;
}

.postPreviewContainer .postPreview .postInfo .date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #565656;
}

.postPreviewContainer .postPreview .postInfo .date.rtl {
    direction: rtl;
}

.postPreviewContainer .postPreview .postInfo .date::before {
    width: 100%;
    height: 3rem;
    content: "";
    position: absolute;
    bottom: calc(100% + 1rem);
    background-image: linear-gradient(to bottom, transparent, white);
    z-index: 2;
    left: 0;
}

.postPreviewContainer .postPreview .postInfo:hover h3::before,
.postPreviewContainer .postPreview .postInfo:focus-visible h3::before,
.postPreviewContainer .postPreview .postInfo:hover .date::before,
.postPreviewContainer .postPreview .postInfo:focus-visible .date::before {
    width: calc(100% - 1vh);
    left: 1vh;
}

.list {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    place-items: center;
    grid-gap: 1rem;
}

.list button {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    place-items: center;
    place-content: center;
    grid-gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    font-family: krd;
    font-size: 1.2rem;
    cursor: pointer;
    background-color: white;
    border: .2rem solid transparent;
    box-shadow: 0px 3px 3px #0002, 0 0 0 1px #80808033;
    color: var(--secondlorional);
    transition: color .3s ease-in-out,
    border-color .3s ease-in-out;
}

.list button:hover,
.list button:focus-visible,
.list button.selected {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
}

.list button[aria-expanded=false] + ul {
    opacity: 0;
    transform: translateY(-1rem);
    pointer-events: none;
}

.list button i {
    transition: transform .3s ease-in-out;
} 

.list button[aria-expanded=true] i {
    transform: rotate(.5turn);
} 

.list ul {
    position: absolute;
    left: 0;
    top: calc(100% + 1rem);
    z-index: 2;
    width: 100%;
    max-height: 25vh;
    overflow-y: auto;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    background-color: #eee7;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1rem;
    grid-gap: 1rem;
    box-shadow: 0 .5rem .5rem #0001, 0 0 0 1px #80808033;
    transition: opacity .3s ease-in-out,
    transform .3s ease-in-out;
    scrollbar-color: hsl(var(--primary)) hsl(var(--primary), .25);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    direction: ltr;
}

.list ul li {
    width: 100%;
    display: grid;
    place-items: center;
}

.list ul li button {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    place-items: center;
    justify-content: center;
    grid-gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background-color: white;
    border: .2rem solid transparent;
    box-shadow: 0px 3px 3px #0002, 0 0 0 1px #80808033;
    font-size: 1rem;
    color: black;
    text-align: center;
}

.list button > * {
    pointer-events: none;
}

.sectionsContainer {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

ul.sections {
    width: 100%;
    overflow-x: auto;
    list-style: none;
    display: grid;
    grid-auto-flow: column;
    place-items: center;
    margin: auto;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    padding-inline: 0;
    grid-gap: 2rem;
    transition: opacity .3s ease-in-out,
    transform .3s ease-in-out;
    scrollbar-color: hsl(var(--primary)) hsl(var(--primary), .25);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    direction: ltr;
}

ul.sections.admin {
    margin: 0;
    padding: 1rem .5rem;
    grid-gap: 1rem;
}

ul.sections.rtl {
    direction: rtl;
}

ul.sections.off {
    display: none;
}

ul.sections li {
    width: 100%;
    display: grid;
    place-items: center;
    padding: 0;
}

ul.sections li button {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    place-items: center;
    justify-content: center;
    padding: 2rem;
    margin: 0;
    border: none;
    border-radius: 1.5rem;
    background-color: white;
    font-size: 2rem;
    color: black;
    text-align: center;
    height: revert;
    line-height: revert;
    transition: background-color .3s ease-in-out,
    color .3s ease-in-out;
}

ul.sections.admin li button {
    padding: 1rem;
    font-size: 1.25rem;
    border-radius: 1rem;
    border: .2rem solid transparent;
    box-shadow: 0px 3px 3px #0002, 0 0 0 1px #80808033;
    white-space: nowrap;
    cursor: pointer;
}

ul.sections button:hover,
ul.sections button:focus-visible,
ul.sections button.selected {
    background-color: hsl(var(--primary));
    color: white;
}

ul.sections button > * {
    pointer-events: none;
}

form .label {
    font-size: 1.5rem;
    margin: .5rem 0;
    margin-top: 1.25rem;
}

form .label.rtl {
    font-family: krd;
    font-weight: bold;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

form .label:nth-child(3){
    margin-top: .5rem;
}

form input,
form textarea,
section[data-post] textarea {
    position: relative;
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    border: .2rem solid transparent;
    font-family: poppins;
    font-weight: 600;
    font-size: 1rem;
    background: var(--txt-color);
    color: var(--optional);
    -webkit-appearance: none;
    -moz-appearance: textfield;
    resize: none;
    box-shadow: 
    0px 3px 3px #0002,
    0 0 0 1px #80808033;
    line-height: 1.75;
}

form input.rtl,
form textarea.rtl,
section[data-post] textarea.rtl {
    font-family: krd;
    font-weight: bold;
    direction: rtl;
}

form input.rtl[dir=auto],
form textarea.rtl[dir=auto],
section[data-post] textarea.rtl[dir=auto] {
    direction: revert;
}

form input[type=color] {
    height: 5rem;
}

form input:hover,
form input:focus-visible,
form textarea:hover,
form textarea:focus-visible,
section[data-post] textarea:hover,
section[data-post] textarea:focus-visible{
    border: .2rem solid hsl(var(--primary));
    color: hsl(var(--primary));
}

form .btn {
    display: grid;
    grid-template-columns: auto auto;
    place-items: center;
    place-content: center;
    grid-gap: .5rem;
    padding: 1rem 1.25rem;
    border: .2rem solid hsl(var(--primary));
    border-radius: 1rem;
    font-size: 1.25rem;
    color: white;
    background-color: hsl(var(--primary));
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
}

form .btn span {
    font-family: poppins;
}

form .btn span.rtl {
    font-family: krd;
}

.btn.form:hover,
.btn.form:focus-visible,
.btn.empty:hover,
.btn.empty:focus-visible {
    background-color: var(--secondary);
    border: .2rem solid hsl(var(--primary));
}

.wrapper{
    color: var(--optional);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem 0;
    width: 30%;
    z-index: 1;
}

.wrapper .loginTitle{
    font-size: 2rem;
    color: hsl(var(--primary));
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-family: poppins;
}

.wrapper .loginTitle.rtl{
    font-family: krd;
    direction: rtl;
}

.wrapper .container {
    position: relative;
    padding: 1.5rem 3rem;
    margin: 2rem 0;
    background: var(--txt-color);
    border-radius: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    box-shadow: 0px 3px 3px #0002;
    border: 1px solid #80808033;
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo object{
    width: 4rem;
}

form,
.edit {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    font-family: poppins;
}

form[data-change-password] .label.rtl:nth-child(6){
    letter-spacing: -.6px;
}

form[data-post-form],
section[data-post] {
    width: 100%;
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    grid-template-areas: "info img";
    padding: 2rem;
    margin: 2rem 0;
    background: white;
    border-radius: 1.5rem;
    grid-gap: 1.5rem;
    box-shadow: 0px 3px 3px #0002,
     0 0 0 1px #80808033;
}

form[data-post-form=change-password],
form[data-post-form=website-information] {
    grid-template-columns: 1fr;
    grid-template-areas: revert;
    max-width: 768px;
}

form[data-post-form].rtl,
section[data-post].rtl {
    direction: rtl;
}

form[data-post-form] .imageContainer,
section[data-post] .postImageContainer {
    width: 100%;
    margin: 0;
    grid-area: img;
}

.imageContainer label,
.postImageContainer label {
    margin-bottom: 1.5rem;
}

form[data-post-form] .postInfo,
section[data-post] .postInfo {
    width: 100%;
    height: 100%;
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: 
    auto
    5fr
    auto;
    place-items: center;
    place-content: center;
    grid-area: info;
}

form[data-post-form] .postInfo.extraRow,
section[data-post] .postInfo.extraRow {
    grid-template-rows: 
    auto
    auto
    5fr
    auto;
}

form[data-post-form] .postInfo .errorText {
    margin: 0;
}

form[data-post-form] label,
section[data-post] label {
    width: 100%;
    text-align: left;
    font-family: poppins;
    font-size: 1.5rem;
    font-weight: 500;
}

form[data-post-form] label.rtl,
section[data-post] label.rtl {
    text-align: right;
    font-family: krd;
}

form[data-post-form] textarea,
section[data-post] textarea {
    resize: none;
    font-size: 1rem;
    scroll-behavior: smooth;
    scrollbar-color: transparent transparent;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    font-family: krd;
    transition: scrollbar-color .3s ease-in-out,
    border .3s ease-in-out;
}

form[data-post-form] textarea:hover,
form[data-post-form] textarea:focus-visible,
section[data-post] textarea:hover,
section[data-post] textarea:focus-visible {
    scrollbar-color: hsl(var(--primary)) transparent;
}

form[data-post-form=website-information] input,
form[data-post-form=website-information] textarea {
    font-family: krd;
}

form[data-post-form] .formButtons,
section[data-post] .formButtons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
}

form[data-post-form] .formButtons.rtl,
section[data-post] .formButtons.rtl {
    direction: rtl;
}

form[data-post-form] .formButtons .submitButton,
section[data-post] .formButtons .submitButton {
    background-color: hsl(var(--primary));
    border: .2rem solid hsl(var(--primary));
    border-radius: 1rem;
    width: 100%;
    padding: 1rem;
    font-family: poppins;
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    display: grid;
    grid-template-columns: auto auto;
    place-items: center;
    place-content: center;
    grid-gap: .5rem;
    cursor: pointer;
    text-align: left;
    box-shadow: 0px 3px 3px #0002;
}

form[data-post-form] .formButtons .submitButton.return,
section[data-post] .formButtons .submitButton.return {
    background-color: #777;
    border: .2rem solid #777;
}

form[data-post-form] .formButtons .submitButton[disabled=disabled],
form[data-login] .submitButton[disabled=disabled] {
    cursor: progress;
}

form[data-post-form] .formButtons .submitButton .fa-spinner-third,
form[data-login] .submitButton .fa-spinner-third {

    --fa-primary-color: white;
    --fa-secondary-color: white;
    --fa-secondary-opacity: .25;

    position: absolute;
    opacity: 0;
    pointer-events: none;
    animation: progress 1s linear infinite forwards;

}

@keyframes progress {
    0% {
        transform: rotate(0turn);
    }
    100% {
        transform: rotate(1turn);
    } 
}

form[data-post-form] .formButtons .submitButton > * {
    pointer-events: none;
}

form[data-post-form] .formButtons .submitButton.rtl,
section[data-post] .formButtons .submitButton.rtl {
    font-family: krd;
    text-align: right;
    direction: rtl;
}

form[data-post-form] .formButtons .submitButton:hover,
form[data-post-form] .formButtons .submitButton:focus-visible,
section[data-post] .formButtons .submitButton:hover,
section[data-post] .formButtons .submitButton:focus-visible {
    background-color: var(--secondary);
}

form[data-post-form] .formButtons .submitButton.return:hover,
form[data-post-form] .formButtons .submitButton.return:focus-visible,
section[data-post] .formButtons .submitButton.return:hover,
section[data-post] .formButtons .submitButton.return:focus-visible {
    background-color: #555;
}

section[data-post] .formButtons .submitButton i.reverse {
    transform: scaleX(-1);
}

section[data-post] .postImageContainer {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

section[data-post] .postImageContainer .postImage {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    margin: 0 auto;
    background: var(--text);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0px 3px 3px #0002,
    0 0 0 1px #80808033;
}

section[data-post] .postImageContainer .postImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

section[data-post] .postImageContainer .postImage img.blured {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) brightness(.95);
    transform: scale(1.1);
}

.errorText,
form .errorText{

    --warning-color: var(--warning);

    width: 100%;
    text-align: center;
    line-height: 1.3;
    padding: 0.5rem;
    margin: .5rem 0;
    border-radius: .5rem;
    color: hsl(var(--warning-color));
    background: hsl(var(--warning-color), .1);
    box-shadow: 0px 3px 3px #0002;
    border: 1px solid #e0e0e0;
    transition-duration: 0s;
    font-family: poppins;

}

.errorText.rtl,
form .errorText.rtl{
    direction: rtl;
    font-family: krd;
    font-weight: bold
}

.errorText.success,
form .errorText.success{
    --warning-color: var(--success);
}

.errorText.warning,
form .errorText.warning{
    --warning-color: var(--yellow-warning);
}

form .btn.form,
.edit .btn.form {
    margin: 1.5rem 0;
    width: 100%;
    border: .2rem solid transparent;
}

form .btn.rtl,
.edit .btn.rtl {
    font-family: krd;
    direction: rtl;
}

.imageContainer {
    width: 60%;
    position: relative;
    display: grid;
    place-content: center;
    place-items: center;
    grid-template-columns: 1fr;
    margin: 0 auto;
}

.imageContainer .imageWrapper{
    position: relative;
    width: 100%;
    border-radius: 2rem;
    background: hsl(var(--primary));
    border: .2rem dashed white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 3px 3px #0002;
    aspect-ratio: 1/1;
}

.imageWrapper .active{
    border: none;
    background: none;
}

.imageWrapper .setImage{
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imageWrapper .percent {
    position: absolute;
    transform: translateY(-1.5rem);
    display: none;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 .5rem #0003);
}

form[data-post-form].posting .imageWrapper .percent {
    display: flex;
}

.imageWrapper .percent svg {
    position: relative;
    width: 10rem;
    height: 10rem;
    transform: rotate(-90deg);
}

.imageWrapper .percent svg circle {
    width: 100%;
    height: 100%;
    cx: 5rem;
    cy: 5rem;
    r: 4.5rem;
    fill: none;
    stroke: white;
    stroke-width: 10;
}

.imageWrapper .percent svg circle:last-of-type {
    stroke-dasharray: 625px;
    stroke-dashoffset: calc(625px - (625px * var(--percent)) / 138);
    stroke: hsl(var(--primary));
    transition: stroke-dashoffset .3s linear;
}

.imageWrapper .percent .number {
    position: absolute;
    display: grid;
    grid-template-columns: auto auto;
    place-items: center;
    place-content: center;
    grid-gap: .25rem;
    color: white;
    direction: ltr;
}

.imageWrapper .percent .number.rtl {
    direction: rtl;
}

.imageWrapper .percent .number h3 {
    font-size: 2.5rem;
    font-family: poppins;
}

.imageWrapper .percent .number.rtl h3 {
    font-family: krd;
}

.imageWrapper .percent .number span {
    font-size: 1.5rem;
}

.imageWrapper .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.imageWrapper.active .content {
    display: none;
}

.imageWrapper .setImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: url("assets/alpha.png");
    background-size: 200px;
}

form[data-post-form].posting .imageWrapper .setImage img {
    filter: brightness(.85) blur(.25rem);
}

.imageWrapper .setImage.error{
    background-image: url("imgs/default-post.png");
    background-position: center;
    background-size: contain;
}

.imageWrapper .setImage.error img{
    opacity: 0;
}

.imageWrapper .setIcon{
    text-align: center;
    display: flex;
    font-size: 6rem;
    color: white;
}

.imageWrapper .setText {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
}

.imageWrapper .setText.rtl{
    font-family: krd;
    font-weight: 400;
}

#cancel-btn,
#upload-btn{
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    place-content: center;
    background-color: hsl(6, 78%, 57%);
    border: .15rem solid hsl(6, 78%, 57%);
    border-radius: 10rem;
    cursor: pointer;
}

form[data-post-form].posting #cancel-btn,
form[data-post-form].posting #upload-btn{
    display: none;
}

form[data-post-form].posting .imageContainer{
    pointer-events: none;
}

.imageWrapper #upload-btn {
    background-color: hsl(150, 67%, 39%);
    border-color: hsl(150, 67%, 39%);
}

.imageWrapper #cancel-btn:hover,
.imageWrapper #cancel-btn:focus-visible {
    background-color: hsl(6, 78%, 42%);
}

.imageWrapper #upload-btn:hover,
.imageWrapper #upload-btn:focus-visible {
    background-color: hsl(150, 67%, 24%);
}

#cancel-btn > *,
#upload-btn > *{
    pointer-events: none;
}

#upload-btn{
    right: 4.25rem;
}

.imageWrapper #cancel-btn i,
.imageWrapper #upload-btn i {
    font-size: 1rem;
    color: white;
}

.imageWrapper #cancel-btn.off,
.imageWrapper #upload-btn.off {
    display: none;
}

.imageWrapper .file-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: .5rem 0;
    color: white;
    background: hsl(var(--primary), .75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0 0 1.3rem 1.3rem;
    pointer-events: none;
}

.imageWrapper .file-name span {
    width: 100%;
    padding: 0 10%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.postImages {
    display: grid;
    overflow-x: auto;
    grid-auto-flow: column;
    place-content: start;
    width: 100%;
    place-items: start;
    grid-gap: 1rem;
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0px 3px 3px #0002,
    0 0 0 1px #80808033;
    padding: 1rem;
    margin-top: 1.5rem;
}

.postImages.off {
    display: none;
}

.postImages .img {
    display: flex;
    border-radius: 1rem;
    box-shadow: 0px 3px 3px #0002,
    0 0 0 1px #80808033;
}

.postImages .img.off {
    display: none;
}

.postImages .img img {
    width: 5rem;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
}

.postImages .img button {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 1.5rem;
    height: 1.5rem;
    display: grid;
    place-content: center;
    place-items: center;
    border-radius: 5rem;
    background-color: hsl(6, 78%, 57%);
    border: .15rem solid hsl(6, 78%, 57%);
    cursor: pointer;
    color: white;
}

.postImages .img button:hover,
.postImages .img button:focus-visible {
    background-color: hsl(6, 78%, 42%);
}

.postImages .img button i {
    pointer-events: none;
    font-size: .85em;
}

.alert {

    --_alert-color: var(--warning);

    position: relative;
    color: hsl(var(--_alert-color));
    background: hsl(var(--_alert-color), .1);
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--_alert-color), .25);
    box-shadow: 0px 3px 3px hsl(var(--_alert-color), .1);
    font-family: poppins;
}

.alert.rtl{
    font-family: krd;
    font-weight: bold;
    direction: rtl;
}

.alert:empty{
    display: none;
}

.alert.off {
    display: none;
}

.alert.success{
    --_alert-color: var(--success);
}

.alert.warning{
    --_alert-color: var(--yellow-warning);
}

.deleteCon{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0005;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .3s ease-in-out;
    z-index: 12;
}

.deleteCon.off {
    transition: opacity .3s ease-in-out;
    display: flex !important;
    pointer-events: none;
    opacity: 0;
}

.deleteCon .deleteTheFile {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #4444;
    transition: transform .3s ease-in-out;
    transform: translateY(0%);
}

.deleteCon .closeDeleteForm {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.deleteCon.off .deleteTheFile {
    transition: transform .3s ease-in-out;
    transform: translateY(-25%);
}

.deleteCon .deleteTheFile .deleteTitle {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--optional);
}

.deleteCon .deleteTheFile .prompt {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    place-content: stretch;
    grid-gap: 1.5rem;
}

.deleteCon .deleteTheFile .prompt .btn.form {
    margin: 0;
    border: .2rem solid hsl(var(--primary));
}

.deleteCon .deleteTheFile .prompt .btn.form[data-noDelete] {
    background-color: #777;
    border: .2rem solid #777;
}

.deleteCon .deleteTheFile .prompt .btn.form:hover,
.deleteCon .deleteTheFile .prompt .btn.form:focus-visible {
    background-color: var(--secondary);
}

.deleteCon .deleteTheFile .prompt .btn.form[data-noDelete]:hover,
.deleteCon .deleteTheFile .prompt .btn.form[data-noDelete]:focus-visible {
    background-color: #555;
}

footer,
.copyrightJihadKurdo {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    place-content: center;
    place-items: center;
    grid-gap: .5rem;
    margin-bottom: 1.5rem;
    font-family: comfortaa;
}

.copyrightJihadKurdo {
    margin-bottom: 0;
    padding-bottom: 1.5rem;
}

footer.login,
footer.panel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    margin-top: 1.5rem;
}

footer.panel {
    margin-top: auto;
    margin-bottom: 0;
}

footer .socialLinks {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .socialLinks a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 .25rem;
    padding-bottom: .25rem;
    border-bottom: .1rem solid transparent;
}

footer .socialLinks a:hover,
footer .socialLinks a:focus-visible{
    border-bottom: .1rem solid hsl(var(--primary));
}

footer .socialLinks a object{
    width: 1.5rem;
    pointer-events: none;
}

footer .footerLinks {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .made,
.copyrightJihadKurdo .made {
    font-size: 1rem;
    text-align: center;
    color: var(--optional);
    margin-bottom: .25rem;
    margin-right: .5rem;
}

footer .made.white,
.copyrightJihadKurdo .made.white {
    color: white;
}

footer .jihadKurdo,
.copyrightJihadKurdo .jihadKurdo {
    font-size: 1rem;
    color: hsl(var(--primary));
    border-bottom: .1rem solid transparent;
}

footer .jihadKurdo:hover,
footer .jihadKurdo:focus-visible,
.copyrightJihadKurdo .jihadKurdo:hover,
.copyrightJihadKurdo .jihadKurdo:focus-visible {
    border-bottom: .1rem solid hsl(var(--primary));
}

.rotate{
    position: fixed;
    height: 100%;
    width: 100%;
    background: #f0f7ff;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.rotate svg {
    width: 50%;
    max-height: 25%;
    height: 50%;
    aspect-ratio: 1/1;
}

.rotate svg path {
    fill: hsl(var(--primary));
}

.passwordContainer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.passwordContainer.rtl{
    direction: rtl;
}

.passwordContainer i{
    position: absolute;
    top: 50%;
    right: 0.25rem;
    color: var(--optional);
    transform: translateY(-50%);
    padding: .5rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.passwordContainer.rtl i{
    position: absolute;
    top: 50%;
    right: auto;
    left: 0.25rem;
    color: var(--optional);
    transform: translateY(-50%);
    padding: .5rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.passwordContainer input[type=password]:hover ~ i,
.passwordContainer input[type=password]:focus-visible ~ i{
   color: hsl(var(--primary)); 
}

.post.wow:hover img,
.post.wow:focus-visible img {
    transform: scale(1.1);
}

.posts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    place-items: center;
    place-content: center;
    grid-gap: 2rem;
    margin: 2rem 0;
}

.posts[data-translate].empty,
.posts[data-translate].empty.rtl {
    grid-template-columns: 1fr;
}

.posts.rtl {
    direction: rtl;
}

.posts .post,
.posts .post .content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background: white;
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 3px 3px #0002,
    0 0 0 1px #80808033;
    font-family: Marcellus;
    color: var(--text);
    font-size: 1rem;
}

.posts .post.rtl {
    font-family: krd;
}

.posts .post.off {
    display: none;
}

.posts .post .content > * {
    pointer-events: none;
}

.posts .post .content img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
    background-color: hsl(0, 0%, 95%);
    font-family: krd;
    text-align: center;
    transition: filter .3s ease-in-out;
    border-radius: 1rem 1rem 0 0;
}

.posts .post .content img.loading {
    min-width: 15rem;
    background-color: gray;
}

.postImages .img img.loading {
    background-color: gray;
}

.posts .post:hover .content img,
.posts .post:focus-visible .content img {
    filter: brightness(1.25);
}

.posts .post .content p {
    width: 100%;
    padding: 0.75rem;
    color: inherit;
    font-family: krd;
    direction: rtl;
    text-transform: capitalize;
    border-top: 1px solid #ddd;
}

.posts .post .content p span {
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: start;
}

.posts .post .content .date {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem;
    padding-top: 0;
    color: #565656;
}

.posts .post .content .date span,
.posts .post .content .date i{
    width: max-content;
}

.posts .post .content .date span {
    font-family: poppins;
}

.posts .post .content .date span.rtl {
    font-family: krd;
}

.posts .post .actions {
    position: absolute;
    top: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: .5rem;
    padding: 1rem;
}

.posts .post .actions .action {

    --_button_bg: var(--warning);

    width: 2rem;
    height: 2rem;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    border: none;
    border-radius: 10rem;
    background: hsl(var(--_button_bg), .25);
    color: white;
    cursor: pointer;
    box-shadow: 0px 3px 3px hsl(var(--_button_bg), .125);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: all;
}

.posts .post:hover .actions .action,
.posts .post:focus-visible .actions .action {
    background: hsl(var(--_button_bg), .5);
}

.posts .post .actions .action[data-view] {
    --_button_bg: var(--success);
}

.posts .post .actions .action[data-edit] {
    --_button_bg: 193, 83%, 50%;
}

.posts .post .actions .action:hover,
.posts .post .actions .action:focus-visible {
    background: hsl(var(--_button_bg), 1);
}

.online,
.offline {

    --_alert-color: var(--success);

    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    width: max-content;
    max-width: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: hsl(var(--_alert-color));
    background: hsl(var(--_alert-color), .1);
    text-align: center;
    display: block;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--_alert-color), .25);
    box-shadow: 0px 3px 3px hsl(var(--_alert-color), .1);
    transition: transform .3s ease-in-out,
    opacity .3s ease-in-out;
    pointer-events: none;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

}

.offline {
    --_alert-color: var(--warning);
}

.online.rtl,
.offline.rtl {
    direction: rtl;
}

.online:empty,
.offline:empty {
    display: none;
}

.online.hidden,
.offline.hidden {
    transform: translateX(-50%) translateY(2rem);
    opacity: 0;
}

.online .txt,
.offline .txt {
    font-family: poppins;
}

.online .txt.rtl,
.offline .txt.rtl {
    font-family: krd;
    font-weight: bold;
    direction: rtl;
}

.online i,
.offline i {
    margin-left: .5rem;
}

.online.rtl i,
.offline.rtl i {
    margin-left: unset;
    margin-right: .5rem;
}

.forbidden {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.forbidden .fa-ban{
    color: hsl(var(--primary));
    font-size: 7.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7.5rem;
}

.forbidden .forbiddenMessage {
    color: hsl(var(--primary));
    margin: 5rem 0;
    font-size: 2rem;
    font-family: poppins;
}

.forbidden .forbiddenLink {
    display: grid;
    grid-template-columns: auto auto;
    place-content: center;
    grid-gap: .5rem;
    background: hsl(var(--primary));
    outline: none;
    padding: .75rem;
    border-radius: .75rem;
    color: white;
    border: .15rem solid hsl(var(--primary));
    cursor: pointer;
    font-family: poppins;
}

.forbidden .forbiddenMessage.rtl,
.forbidden .forbiddenLink.rtl {
    font-family: krd;
    direction: rtl;
}

.forbidden .forbiddenLink:hover,
.forbidden .forbiddenLink:focus-visible {
    background: var(--secondary);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.back-to-top.back-to-top i {
    margin: 0 !important;
}

section[id=work] {
    padding-top: 10rem;
}

section[id=about],
section[id=contact] {
    padding: 10rem 0;
}

section[id=work] .row.rtl {
    direction: rtl;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.text-primary {
    color: hsl(var(--primary)) !important;
}

.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    background-color: hsl(var(--primary));
    border-color: hsl(var(--primary));
    border-radius: .75rem;
    font-size: 1.125rem;
}

.btn.btn-primary i {
    margin-right: .5rem;
    margin-left: revert !important;
}

.btn.btn-primary.rtl i {
    transform: scaleX(-1);
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover,
.btn.btn-primary:focus-visible,
.btn.btn-secondary:focus-visible {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-primary:focus,
.btn.btn-secondary:focus {
    box-shadow: revert;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.nav-bar {
    width: calc(100% + 6rem);
    position: sticky;
    top: 0;
    left: 50%;
    transform: translateX(-3rem);
    padding: 0;
    transition: .5s;
    z-index: 4;
}

.nav-bar.sticky-top {
    width: 100%;
    top: 3rem;
    transform: translateX(0%);
    padding: 0 3rem;
}

.nav-bar nav {
    width: 100%;
    border-radius: 0 0 1rem 1rem;
}

.nav-bar.sticky-top nav {
    border-radius: 1rem;
}

.bg-dark {
    background-color: #171717 !important;
}

@media (max-width: 1500px) {

    .container-fluid.header {
        margin-top: 4.5rem;
    }

    .nav-bar {
        position: fixed;
        left: 0;
        width: 100%;
        transform: translateX(0%);
    }

    .nav-bar nav,
    .footer.footer {
        border-radius: 0;
    }

}

.navbar-toggler {
    border-radius: .5rem;
    transition: background-color .3s ease-in-out;
}

.navbar-toggler:hover,
.navbar-toggler:focus-visible {
    background-color: hsl(var(--primary));
}

.navbar-toggler:hover svg path,
.navbar-toggler:focus-visible  svg path {
    stroke: white;
}

.navbar-toggler:focus {
    box-shadow: revert;
}

.navbar {
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar.rtl {
    direction: rtl;
}

.navbar.rtl .navbar-nav.ms-auto {
    margin-left: 2rem !important;
    margin-right: auto;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    white-space: nowrap;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 1.125rem;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link.rtl {
    font-size: 1.25rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus-visible,
.navbar-light .navbar-nav .nav-link.active {
    color: hsl(var(--primary));
}

.footer .altun .d-grid.d-grid.rtl {
    direction: rtl;
}

.btn-check:focus + .btn, .btn:focus {
    box-shadow: none;
    outline: transparent;
}

.row .team h5 {
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991.98px) {

    .navbar {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-gap: 0 1rem;
    }

    .navbar-collapse {
        grid-column: span 2;
    }

    .navbar-light .navbar-brand {
        width: revert;
        display: grid !important;
        grid-template-columns: auto 1fr;
    }

    #home .flex-md-row.rtl.rtl {
        flex-direction: column-reverse !important;
    }

    #home .flex-md-row .col-md-6:first-child {
        text-align:center;
    }

    #home .row p {
        width: 100%;
    }

    .owl-stage-outer {
        mask-image: none;
        -webkit-mask-image: none;
    }

    section[id=work] {
        padding-top: 7rem;
    }

    section[id=about],
    section[id=contact] {
        padding: 7rem 0;
    }

    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav {
        display: grid;
        grid-gap: 1rem;
        margin-top: .5rem;
        margin-bottom: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #EEEEEE;
    }

    .navbar.rtl .navbar-nav.ms-auto { 
        margin-left: auto !important;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        place-items: center;
        grid-gap: 1rem;
    }

    .navbar-light .navbar-nav .nav-link::before,
    .navbar-light .navbar-nav .nav-link::after  {
        content: "";
        position: relative;
        height: 1px;
        width: 100%;
        background-color: currentColor;
    }

    .navbar-brand.navbar-brand h1 {
        font-size: 1.25rem !important;
    }

    #about#about [data-title],
    #about#about [data-title].rtl {
        place-content: center;
    }

    #about .row .aboutLinks.aboutLinks,
    #about .row.rtl .aboutLinks.aboutLinks {
        justify-content: center;
    }

    #about .row .about-img.about-img {
        padding: 2rem !important;
        padding-left: 0 !important;
        transform: scale(.75) translateX(0);
    }

    #about .row.rtl .about-img.about-img {
        padding-right: 0 !important;
        padding-left: 2rem !important;
        transform: scale(.75) translateX(0);
    }

    .row .team {
        width: 45%;
    }

    .row .team h5 {
        font-size: 1.125rem;
    }

    .row .team .img-fluid {
        max-width: revert;
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .footer .row {
        display: grid;
        grid-template-columns: 1fr;
        place-items: center;
    }

    .footer .col-lg-4,
    .footer .btn.btn-link.btn {
        text-align: center;
        width: revert;
    }

    .footer .d-flex {
        justify-content: center;
    }

    .footer .altun .d-grid.d-grid {
        place-content: center;
        grid-auto-flow: row;
    }

    .footer .altun.altun p {
        width: calc(100vw - 3.5rem);
    }

    .back-to-top {
        right: 1.5rem;
        bottom: 1.5rem;
    }

}

#home .flex-md-row.rtl {
    flex-direction: row-reverse !important;
}

#home .flex-md-row.rtl .col-md-6:first-child {
    direction: rtl;
}

#home p {
    width: 90%;
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-brand {
    width: 100%;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light .navbar-brand .logo {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
    border: .2rem solid hsl(var(--primary));
}

.navbar-light .navbar-brand.rtl .logo {
    margin-right: revert;
    margin-left: 1rem;
}

.navbar-collapse {
    width: 100%;
}

.navbar-brand h1 {
    font-size: 1.5rem !important;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: start;
}

.navbar-brand.rtl {
    direction: rtl;
    margin: 0;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.header-carousel .owl-stage-outer .owl-prev,
.header-carousel .owl-stage-outer .owl-next {
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 50%;
    left: 1.5rem;
    z-index: 1;
    transform: translateY(-50%);
    display: grid;
    place-content: center;
    place-items: center;
    background-color: #111;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #FFFFFF;
    transition: all .5s;
    cursor: pointer;
    border: none;
    padding: 0;
}

.header-carousel .owl-stage-outer .owl-next {
    left: revert;
    right: 1.5rem;
}

.header-carousel .owl-stage-outer .owl-prev:hover,
.header-carousel .owl-stage-outer .owl-next:hover,
.header-carousel .owl-stage-outer .owl-prev:focus-visible,
.header-carousel .owl-stage-outer .owl-next:focus-visible {
    background-color: hsl(var(--primary));
}

[data-title] {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: auto auto;
    grid-gap: 1rem;
    place-items: center;
    place-content: center;
    color: hsl(var(--primary));
}

#about [data-title] {
    place-content: start;
}

#about [data-title].rtl {
    place-content: end;
}

#about .row.rtl .aboutLinks {
    justify-content: end;
    transform: translateX(.5rem);
}

[data-title].rtl i {
    order: 1;
}

[data-title].rtl span {
    order: 2;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}

.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed hsl(var(--primary)) !important;
}

#about .aboutLinks {
    display: flex;  
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    transform: translateX(-.5rem);
}

#about .row .about-img {
    padding-left: 0 !important;
    padding-right: 3rem !important;
    transform: scale(.75) translateX(calc(25% - 3rem));
    border-radius: 4rem;
}

#about .row.rtl .about-img {
    padding-right: 0 !important;
    padding-left: 3rem !important;
    transform: scale(.75) translateX(calc(-25% + 3rem));
}

.about-img img {
    position: relative;
    z-index: 2;
    border-radius: 3rem;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    transform: skew(-20deg);
    background: hsl(var(--primary));
    z-index: 1;
}

#about .row.rtl .about-img::before {
    left: -50%;
    right: revert;
    transform: skew(20deg);
}

.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: hsl(var(--primary));
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}

.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border-radius: 1rem;
    border: 1px solid hsl(255, 0%, 0%, .125);
    cursor: pointer;
}

.property-item .postImage {
    position: relative;
    z-index: 1;
}

.property-item .postImage::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: hsl(255, 0%, 0%, .125);
    z-index: 2;
}

.property-item img {
    transition: .5s;
    border: none;
}

.property-item:hover img,
.property-item:focus-visible img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .postDate {
    border-radius: .5rem .5rem 0 0;
    grid-auto-flow: column;
    grid-gap: .5rem;
    left: 0;
    border: 1px solid hsl(255, 0%, 0%, .125);
    border-bottom: none;
    z-index: 2;
}

.property-item .postDate.rtl {
    left: revert;
    direction: rtl;
}

.team-item {
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: hsl(var(--primary));
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: hsl(var(--primary));
}

.team-item:hover {
    border-color: var(--optional) !important;
}

.team-item:hover .bg-primary {
    background: var(--optional) !important;
}

.team-item:hover .bg-primary i {
    color: var(--optional) !important;
}


.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer {
    border-radius: 1.5rem 1.5rem 0 0;
}

.footer .btn.btn-social {
    margin-inline-end: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2.25rem;
    transition: .3s;
}

.footer .btn.btn-social:last-child {
    margin-inline-end: 0;
}

.footer .btn.btn-social:hover,
.footer .btn.btn-social:focus-visible {
    color: hsl(var(--primary));
    border-color: var(--light);
    background-color: #EFFDF5;
}

.footer .btn.btn-link {
    display: block;
    width: max-content;
    margin-bottom: 5px;
    padding: 0;
    text-align: start;
    font-size: 15px;
    font-weight: normal;
    transition: .3s;
    color: rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    margin-inline-end: 1rem;
}

.footer .row.rtl .links .btn.btn-link::before {
    content: "\f053";
}

.footer .btn.btn-link.no-arrow::before {
    content: none;
}

.footer .btn.btn-link:hover,
.footer .btn.btn-link:focus-visible {
    color: hsl(var(--primary));
}

.footer .row .btn.btn-link i {
    margin-inline-end: 1rem;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .row {
    justify-content: space-evenly;
}

.footer .row.rtl {
    direction: rtl;
}

.footer .col-lg-4 {
    width: max-content;
}

.footer .altun .d-grid {
    grid-auto-flow: column;
    place-items: center;
    place-content: start;
    grid-gap: 1rem;
}

.footer .altun .d-grid img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: .15rem solid hsl(var(--primary));
}

.footer .altun .d-grid h5 {
    color: hsl(var(--primary));
    margin-bottom: 0;
}

.footer .altun p {
    width: 215px;
    font-size: 1.125rem;
    line-height: 1.5;
}

.teams.rtl {
    direction: rtl;
}

@media screen and (min-width: 550px) and (max-width: 950px) and (min-height: 320px) and (max-height: 450px){
    
    body{
        position: fixed;
        overflow: hidden;
    }

    .rotate{
        display: flex;
    }

}

@media (max-width: 1000px) {

    body.stretch main {
        padding: 2rem;
    }

    .posts[data-translate] {
        grid-template-columns: 1fr 1fr;
        grid-gap: 1.5rem;
    }

    .posts .post .actions {
        padding: .75rem;
    }

    .posts .post .actions .action {
        width: 1.5rem;
        height: 1.5rem;
        font-size: .75rem;
        background: hsl(var(--_button_bg), .5);
        box-shadow: 0px 3px 3px hsl(var(--_button_bg), .25);
    }

}

@media (max-width: 1300px) {

    .landingImages {
        position: absolute;
        z-index: -3;
        left: 30%;
    }

    .landingImage.one {
        transform: translate3d(20px, 16.5786px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    }

    .landingImage.two {
        transform: translate3d(60px, -150px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    }

    .landingImage.three {
        transform: translate3d(-80px, -30px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    }

    .landingImages.rtl {
        direction: ltr;
        transform: rotateY(180deg) translateX(100%);
        transform-style: preserve-3d;
    }

    .landing,
    nav,
    .main-content #about,
    .main-content #work {
        width: calc(100% - 5rem);
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .online,
    .offline {
        max-width: calc(100% - 5rem);
    }

    .main-content #about .aboutUs {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .main-content #about .aboutUs .column:first-child {
        grid-column: span 2;
    }

    .main-content #about {
        grid-template-columns: 1fr;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .main-content #work .workPosts,
    .posts {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .posts .post,
    .posts .post .content,
    .alert {
        border-radius: .75rem;
    }

    .postImages {
        border-radius: 1.25rem;
    }

    .alert {
        padding: .75rem;
    }

    .main-content #contact {
        width: calc(100% - 5rem);
        grid-template-columns: 2fr 1fr;
    }

    #contact .contactText .phones .button,
    #contact .contactText .phones .button.rtl {
        padding: .75rem 1rem;
        font-size: .9rem;
    }

    .main-content #contact .contactImage {
        width: 100%;
    }

    nav::before {
        border: 1px solid transparent;
        border-bottom: 1px solid transparent;
    }

    nav .burger {
        display: block;
    }

    nav h2,
    nav .burger {
        z-index: 4;
    }

    nav .menu {
        position: fixed;
        top: 0;
        left: 50%;
        width: 100%;
        height: 100vh;
        z-index: 3;
        background-color: hsl(hsl(var(--primary)), .125);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: translateX(-50%);
        grid-template-columns: 1fr;
        place-items: center;
        place-content: center;
        transition: top .3s ease-in-out;
    }

    nav .menu::before {
        opacity: .5;
    }

    nav .burger[aria-expanded="false"] ~ .menu {
        top: -105vh;
    }

    nav .menu a {
        font-size: 2rem;
    }

    nav .menu a i {
        font-size: 1.5rem;
    }

    .wrapper {
        width: 50%;
    }

    aside {
        min-width: 35%;
    }

    form[data-post-form],
    section[data-post] {
        grid-template-columns: 1fr;
        grid-template-areas: 
        "img"
        "info";
    }

    form[data-post-form=change-password],
    form[data-post-form=website-information] {
        grid-template-areas: revert;
    }

    form[data-post-form] .imageContainer {
        max-width: 20rem;
        margin: 0 auto;
    }

    .imageContainer label,
    .postImageContainer label {
        display: none;
    }

    form[data-post-form] .formButtons .submitButton,
    section[data-post] .formButtons .submitButton {
        font-size: 1rem;
    }

}

@media screen and (min-width: 550px) and (max-width: 950px) and (min-height: 320px) and (max-height: 450px){
    .rotate{
        display: flex;
    }
}

@media (max-width: 600px){

    body.static{
        padding-right: 0;
    }

    .nav-bar.sticky-top {
        top: 1rem;
        padding: 0 1rem;
    }

    .nav-bar nav {
        border-radius: 0;
    }

    .online,
    .offline {
        max-width: calc(100% - 3rem);
    }

    .main-content #about {
        grid-gap: 3rem;
    }

    #about p {
        text-align-last: center;
        font-size: 2rem;
    }

    .main-content #work .workPosts,
    .posts[data-translate] {
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem;
    }

    .main-content #contact {
        width: 100%;
        padding-left:1.5rem;
        padding-right:1.5rem;
        grid-template-columns: 1fr;
        grid-gap: 2rem;
    }

    .main-content #contact .contactText {
        width: 100%;
        order: 2;
        align-items: center;
    }

    .main-content #contact .contactText p,
    .main-content #contact .contactText p.rtl {
        text-align: center;
        font-size: 1.25rem;
    }

    .main-content #contact .contactText p.location {
        font-size: 1rem;
    }

    .main-content #contact .contactText .phones {
        justify-content: center;
        transform: translateX(0);
    }

    #contact .contactText .phones .button,
    #contact .contactText .phones .button.rtl {
        font-size: 1rem;
        padding: 1rem;
    }

    .main-content #contact .contactImage {
        width: 100%;
        height: revert;
        max-height: 250px;
        order: 1;
        margin-left: unset;
        margin-top: 1.5rem;
        margin-bottom: 5.5rem;
    }

    .main-content #contact .contactImage.rtl {
        margin-right: unset;
    }

    .main-content #contact .contactImage::before {
        --_clip-border: 2rem;
        top: calc(50% + 4rem);
        left: 50%;
        width: 100%;
        height: 100%;
    }

    .main-content #contact .contactImage img {
        width: calc(100% - 10rem);
        height: revert;
        border-radius: 2rem;
    }

    .main-content #contact .contactImage img,
    .main-content #contact .contactImage.rtl img {
        right: revert;
        left: revert;
    }

    nav {
        width: 100%;
        padding: 1.5rem;
    }

    nav::before {
        width: 100%;
        border: 1px solid transparent;
        border-bottom: 1px solid transparent;
    }

    nav.blur::before {
        border-bottom: 1px solid hsl(var(--primary), .25);
    }

    nav h2 {
        white-space: revert;
    }

    .changeLanguageContainer .changeLanguage {
        display: none;
    }

    .changeLanguageContainer .languages,
    .changeLanguageContainer .languages.hidden {
        position: relative;
        opacity: 1;
        pointer-events: revert;
        top: revert;
        box-shadow: revert;
        background-color: revert;
        grid-template-columns: auto auto;
        place-items: center;
        place-content: center;
        grid-gap: 1rem;
        margin-bottom: 1rem
    }

    .changeLanguageContainer .languages .language {
        margin-bottom: revert;
        font-size: 1rem;
    }

    .changeLanguageContainer .languages .language::after {
        content: none;
    }

    .hero {
        padding: 0 1rem;
        margin-bottom: 0;
    }

    .hero .blob-cont {
        position: fixed;
        right: 10%;
    }

    .hero .social-links {
        display: none;
    }

    .hero .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero .hero-text p {
        margin-top: 1.5rem;
        font-size: 1.25rem;
    }

    .main-content #work .workText p {
        font-size: 1.5rem;
    }

    .postPreviewContainer .postPreview {
        justify-content: center;
        height: unset;
        flex-direction: column;
    }

    .postPreviewContainer .postPreview .postPreviewImage {
        max-width: 100%;
        max-height: 50vh;
    }

    .postPreviewContainer .postPreview .postInfo {
        width: 100%;
        aspect-ratio: unset;
    }

    .postPreviewContainer .postPreview .postInfo h3::before,
    .postPreviewContainer .postPreview .postInfo .date::before {
        content: none;
    }

    .postPreviewContainer .postPreview .postInfo p {
        height: unset;
        max-height: 20vh;
        padding-left: 0;
        padding-left: 0;
    }

    .postPreviewContainer .postPreview .postInfo .date {
        margin-top: 1rem;
    }

    .postPreviewContainer .postPreview .postPreviewImage img {
        border-bottom: 1px solid #ddd;
    }

    form[data-post-form],
    section[data-post] {
        padding: 1.5rem;
        grid-gap: 1.25rem;
    }

    form[data-post-form] .postInfo,
    form[data-post-form] .formButtons.
    section[data-post] .postInfo,
    section[data-post] .formButtons {
        grid-gap: 1.25rem;
    }

    form[data-post-form] .formButtons .submitButton,
    section[data-post] .formButtons .submitButton {
        border-radius: .75rem;
    }

    form[data-post-form] .imageContainer {
        max-width: unset;
    }

    form[data-post-form] .imageContainer .imageWrapper {
        border-radius: 1.5rem;
    }

    .imageWrapper .setIcon {
        font-size: 5rem;
    }

    .imageWrapper .setText{
        font-size: 1.25rem;
    }

    .imageWrapper .file-name {
        font-size: 1rem;
    }

    .imageWrapper .setText.rtl {
        font-weight: 500;
    }

    form .label{
        font-size: 1rem;
        margin: .5rem 0;
        margin-top: 1rem;
    }

    form[data-post-form] input,
    form[data-post-form] textarea {
        padding: .75rem;
        border-radius: .75rem;
        font-size: .8rem;
    }

    form .btn.form,
    .btn.empty,
    .edit .btn.form {
        font-size: 1rem;
        border-radius: .75rem;
        margin: 1rem 0;
    }

    .wrapper{
        width: 100%;
        padding: 2rem
    }

    .wrapper .container {
        padding: 1rem 2rem;
        margin: 1rem 0;
    }
    
    .imageContainer {
        margin-top: 1.5rem;
    }

    aside {
        width: 75%;
        position: fixed;
        left: 0;
        z-index: 5;
        transition: left .3s ease-in-out,
        right .3s ease-in-out,
        opacity .3s ease-in-out;
    }

    aside.rtl {
        left: unset;
        right: 0;
    }

    aside.off {
        display: flex;
        pointer-events: none;
        left: -75%;
        opacity: 0;
    }

    aside.rtl.off {
        left: unset;
        right: -75%;
    }

    aside .menuClose {
        display: flex;
        position: fixed;
        right: 0;
        bottom: 0;
        width: 25%;
        height: calc(100% - 5.5rem);
    }

    aside.rtl .menuClose {
        right: unset;
        left: 0;
    }

    html.stretch,
    body.stretch,
    html.stretch.rtl,
    body.stretch.rtl {
        justify-content: flex-start;
        flex-direction: column;
    }

    html.stretch.center,
    body.stretch.center,
    html.stretch.center.rtl,
    body.stretch.center.rtl {
        justify-content: center;
    }

    .smallScreenHeader {
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 3;
        display: grid;
        grid-template-columns: 1fr auto;
        justify-content: space-between;
        align-items: center;
        isolation: isolate;
        padding: 1.5rem;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        background-color: #ffffff3d;
        border: 1px solid hsl(var(--primary), .25);
        border-top: 0px solid transparent;
        box-shadow: 0 .5rem 1rem #0002;
        border-radius: 0 0 1rem 1rem;
    }

    .smallScreenHeader.rtl {
        direction: rtl;
    }

    .smallScreenHeader h2 {
        font-size: 1.5rem;
        font-weight: 600;
        display: grid;
        grid-template-columns: auto 1fr;
        justify-content: center;
        align-items: center;
        margin-right: 2rem;
        transition: color 0s;
        filter: drop-shadow(0 0 .5rem #0005);
        white-space: nowrap;
    }

    .smallScreenHeader h2.rtl {
        margin-left: 2rem;
        margin-right: 0;
    }

    .smallScreenHeader h2 span {
        width: 100%;
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: start;
    }

    .smallScreenHeader h2 img {
        width: 2.5rem;
        height: 2.5rem;
        aspect-ratio: 1;
        object-fit: cover;
        margin-right: .75rem;
        border: .1rem solid;
        border-radius: 10rem;
        background-color: var(--text);
    }

    .smallScreenHeader h2.rtl img {
        margin-right: 0;
        margin-left: .75rem;
    }

    .smallScreenHeader .burger {
        display: flex;
    }

    body.stretch main {
        padding: 2rem 1.5rem;
    }

    body.stretch main .title {
        font-size: 1.75rem;
        font-weight: 500;
    }

    .deleteCon .deleteTheFile {
        width: calc(100% - 3rem);
        border-radius: 1rem;
        padding: 1.5rem;
    }

    .deleteCon .deleteTheFile .deleteTitle {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .deleteCon .deleteTheFile .prompt {
        grid-gap: 1rem;
    }

    .posts .post .content img {
        min-width: 10rem;
        border-radius: .75rem .75rem 0 0;
    }

    ul.sections li button {
        padding: 1rem;
        font-size: 1.5rem;
        border-radius: 1.25rem;
    }

    ul.sections  {
        grid-gap: 1.5rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    } 

}
