@import url('/assets/fonts/Satoshi_Complete/Fonts/WEB/css/satoshi.css');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Satoshi-Variable', sans-serif !important;
}

:root {
    --shade-of-white: #D9D9D9;
    --white-color: #FFF;
    --black-color: #000;
    --darkgary-color: rgba(40, 40, 40, 1);
    --lightbrown-color: #B0916E;
    --pink-color: #ED1A57;
    --yellow-color: #FED401;
    --mint-color: #2EB09F;
    --blue-color: #5F5CFF;
}

/* General Styles */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Satoshi-Variable', sans-serif !important;
    overflow-x: hidden;
    background-color: #000;
    color: var(--white-color);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
    background-color: #D3D3D3;
    border-radius: 5px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.container {
    padding: 0 40px;
}


.services-page {
    scrollbar-color: #B0916E #f1f1f1; /* thumb color and track color */
}

.home-page {
    scrollbar-color: #333 #f1f1f1;
}


/*
** HEADER
*/
header {
    width: 100%;
}
.header-actions {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 40px;
    z-index: 60;
    transition: top 0.5s ease-in-out, backdrop-filter 0.5s ease-in-out;
}
/* .header-actions.hidden {
    top: -130px;
}
.header-actions.visible {
    top: 0;
    backdrop-filter: blur(20px);
} */
.header-actions.menu-active {
    width: 50px;
}
.lines {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 45px;
    width: 45px;
    height: 30px;
    cursor: pointer;
    transition: 0.5s;
}
.line {
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
    transition: 0.5s;
}
.line:nth-of-type(1).active {
    transform: translateY(12px) rotate(-45deg);
}
.line:nth-of-type(2).active {
    transform: translateX(-20px);
    opacity: 0;
}
.line:nth-of-type(3).active {
    transform: translateY(-14px) rotate(45deg);
}
.search-btn {
    width: 300px;
    height: 100%;
    position: relative;
    margin-right: 50px;
    transition: 0.5s;
}
.search-btn.hidden {
    opacity: 0;
    pointer-events: none;
}
.top-menu {
    display: flex;
    align-items: center;
    padding: 5px 0 0 55px;
}
.menu-search {
    width: 100%;
    position: relative;
}
.search-btn label {
    position: absolute;
    top: 5px;
    left: 5px;
    cursor: pointer;
    z-index: 15;
}
.search-btn .search-input {
    width: 0;
    height: 100%;
    outline: none;
    border: 1px solid transparent;
    background-color: transparent;
    padding: 12px 0 12px 50px;
    transition: 0.5s;
    color: var(--white-color);
    z-index: 10;
}
.search-btn .search-input.focused {
    width: 100%;
    border: 1px solid var(--white-color);
}
.search-btn .search-input.active  {
    width: 100%;
    border: 1px solid var(--white-color);
}
.menu {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 1);
    height: 100%;
    padding: 25px 40px;
    transform: translate(-100%,0);
    transition: all .3s cubic-bezier(.29,.39,.68,.53);
}
.menuOpen .menu {
    width: 50%;
    opacity: 1;
    transform: translate(0,0);
    transition: all .3s cubic-bezier(.29,.39,.68,.53);
    -webkit-transition: all .3s cubic-bezier(.29,.39,.68,.53);
}
body.menuOpen {
    overflow: hidden;
}
.menu-lang {
    width: 15%;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}
.menu-lang a {
    font-size: 20px;
    color: var(--white-color);
}
.menu-lang a.active {
    border-bottom: 1px solid var(--white-color);
}
.menu-links li {
    padding-top: 30px;
    font-weight: 600;
}
.menu-links li:first-child {
    padding-top: 0;
}
.menu-links li a {
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 32px;
    transition: 0.5s;
}
.menu-links li a.active,
.menu-links li a:hover{
    color: var(--lightbrown-color);
}
.menu-links li a span {
    text-transform: lowercase;
}
.menu-contacts {
    transition: 0.3s;
    margin-bottom: 25px;
}
.menu-details {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 25px;
    font-size: 20px;
}
.menu-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white-color);
    transition: .5s;
}
.menu-detail:hover {
    color: var(--lightbrown-color);
}
.menu-socials a {
    position: relative;
    width: 36px;
}
.menu-socials a img{
    width: 36px;
    transition: 0.5s;
}
.social-color {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.menu-socials a:hover .social-color {
    opacity: 1;
}
.menu-socials a:hover .social-icon {
    opacity: 0;
}
.menu-detail svg path,
.menu-socials svg path,
.menu-fill svg rect {
    transition: .5s;
}
.menu-detail:hover svg path{
    fill: var(--lightbrown-color);
}
.menu-socials {
    display: flex;
    gap: 30px;
}
.menu_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}
.menuOpen .menu_overlay {
    display: block;
}

/*
** Banner
*/

.banner {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}
.banner-container {
    position: relative;
    height: 100vh;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 40px;
    z-index: 10;
}
.banner-lines {
   position: fixed;
   top: 0;
   right: 0;
   height: 100%;
   z-index: -1;
}
.banner-quote {
    position: fixed;
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
blockquote {
    border: none;
}
blockquote h3 {
    font-size: 48px;
    color: #B0916E;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.banner-quote p {
    font-size: 20px;
    color:#B0916E;
    align-self: end;
    padding-right: 100px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
blockquote h3:before,
blockquote h3:after {
    content: open-quote;
    font-weight: bold;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 48px;
    color: var(--lightbrown-color);
}
blockquote h3:after {
    content: close-quote;
}
.banner .logo {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 10;
}
.banner .logo img,
.project-logo svg,
.projects-logo svg,
.services-logo svg {
    width: 650px;
}
/*
** Contacts Page
*/
.contacts-page {
    width: 100%;
    height: 100%;
    position: relative;
}
.contacts {
    position: relative;
    z-index: 10;
    padding: 150px 40px 120px;
}
.contact-description {
    width: 50%;
    position: relative;
    padding: 175px 40px 50px 40px;
    z-index: 30;
    text-align: justify;
    font-size: 18px;
}
.contact-description span {
    font-weight: 600;
}
.contacts h1 {
    font-size: 48px;
    text-transform: uppercase;
    padding-bottom: 30px;
    font-weight: 600;
    color: var(--white-color);
}
.contacts-form {
    width: 100%;
}
.contacts-form .inputs-box {
    width: 100%;
    display: flex;
    gap: 60px;
}
.contacts-form input {
    width: 100%;
    padding: 30px 0;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--white-color);
    color: var(--white-color);
    font-size: 20px;
}
.contacts-form input::placeholder {
    color: var(--white-color);
}
.contacts-form button {
    margin-top: 30px;
    padding: 10px 60px;
    border: 1px solid var(--white-color);
    font-size: 24px;
    color: var(--white-color);
    background-color: transparent;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s;
}
.contacts-form button:hover {
    background-color: var(--white-color);
    color: var(--darkgary-color);
}
.contacts-page-details {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 80px;
}
.contacts-page-details span {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white-color);
}
.contacts-page-details p {
    font-size: 24px;
    padding-top: 15px;
    font-weight: 400;
    color: var(--white-color);
}
.contacts-page-details a {
    display: block;
    font-size: 24px;
    padding-top: 15px;
    font-weight: 400;
    color: var(--white-color);
    transition: 0.5s;
}
.contacts-page-details a:hover {
    color: var(--lightbrown-color);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
     -moz-appearance:textfield;
}
#map {
    width: 100%;
    height: 700px;
    background-color: var(--white-color);
    color: var(--darkgary-color);
}

/*
** Projects Page
*/

.projects-page {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.projects-page .container {
    position: relative;
    display: flex;
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 15;
}
.projects-lines {
   position: fixed;
   top: 0;
   right: 0;
   height: 100%;
   z-index: 1;
}
.projects-outer-box {
    position: relative;
    width: 350px;
}
.projects-menu {
    position: fixed;
}
.projects-menu .title a {
    display: block;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white-color);
    padding-bottom: 30px;
    transition: 0.5s;
}
.projects-menu ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.projects-menu li {
    width: 100%;
    text-transform: uppercase;
}
.projects-menu li a {
    font-size: 32px;
    color: var(--white-color);
    font-weight: 400;
    transition: 0.5s;
}
.projects-menu .title a:hover,
.projects-menu li a:hover,
.projects-menu li a.active{
    color: var(--lightbrown-color);
}
.projects-menu li .arhitectura:hover,
.projects-menu li .arhitectura.active {
    color: var(--pink-color);
}
.projects-menu li .urbanism:hover,
.projects-menu li .urbanism.active {
    color: var(--yellow-color);
}
.projects-menu li .design-interior:hover,
.projects-menu li .design-interior.active {
    color: var(--mint-color);
}
.projects-menu li .alte-proiecte:hover,
.projects-menu li .alte-proiecte.active {
    color: var(--blue-color);
}
.projects-grid{
    position: relative;
    z-index: 5;
    width: 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
/* .projects-grid .project-box:first-child {
    grid-column: span 2;
} */
/* .projects-grid .project-box:last-child {
    grid-column: span 2;
} */
.project-box {
    height: 250px;
}
.project-box,
.blog-img {
    position: relative;
    overflow: hidden;
}
.project-box::after,
.blog-img::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.5s;
}
.project-box img,
.blog-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
    transition: transform 0.3s ease-out;
}
.project-box:hover img,
.blog-box:hover img {
    transform: scale(1.1) translateY(0);
}
.project-title {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    opacity: 0;
    font-size: 32px;
    transition: 0.5s;
}
.project-box:hover .project-title,
.project-box:hover::after,
.blog-box:hover .blog-img::after {
    opacity: 1;
}
.projects-logo {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 20;
}
.arhitectura .cls-1{
    fill: var(--pink-color);
}
.urbanism .cls-1 {
    fill: var(--yellow-color);
}
.design-interior .cls-1 {
    fill: var(--mint-color);
}
.alte-proiecte .cls-1 {
    fill: var(--blue-color);
}
.bg-lines.arhitectura  svg path,
.title.arhitectura:hover svg path{
    stroke: var(--pink-color);
    fill: var(--pink-color);
}
.bg-lines.arhitectura svg line {
    stroke: var(--pink-color);
}
.bg-lines.urbanism  svg path,
.title.urbanism:hover svg path {
    stroke: var(--yellow-color);
    fill: var(--yellow-color);
}
.bg-lines.urbanism svg line {
    stroke: var(--yellow-color);
}
.bg-lines.design-interior  svg path,
.title.design-interior:hover svg path {
    stroke: var(--mint-color);
    fill: var(--mint-color);
}
.bg-lines.design-interior svg line {
    stroke: var(--mint-color);
}
.bg-lines.alte-proiecte  svg path,
.title.alte-proiecte:hover svg path {
    stroke: var(--blue-color);
    fill: var(--blue-color);
}
.bg-lines.alte-proiecte svg line {
    stroke: var(--blue-color);
}
/*
** PROJECT PAGE
*/

.project-detail {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.project-detail .container {
    padding: 100px 0 70px 40px;
    padding-right: 0;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
}
.project-detail .bg-lines {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
}
.project-logo svg  {
    padding-right: 40px;
}
.project-detail-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.project-detail-menu .title  {
    padding: 15px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    color: var(--white-color);
    transition: all 0.5s;
}
.project-detail-menu .title h3 {
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
}
.project-detail-menu .title path {
    transition: all 0.5s;
}
.project-detail-menu .title:hover {
    color: var(--lightbrown-color);
}
.project-detail-menu .title:hover path {
    fill: var(--lightbrown-color);
    stroke: var(--lightbrown-color);
}
.project-detail-content {
    padding-top: 60px;
    display: grid;
    /*grid-template-columns: repeat(3, 1fr);*/
    grid-template-columns: 0.8fr 1fr 0.8fr;
    grid-template-rows: 550px 1fr 550px;
    gap: 45px;
    grid-template-areas:
        '. aria1 aria1'
        '. aria2 .'
        'aria3 aria3 .';
}
.project-text {
    color: var(--white-color);
    grid-area: aria2;
}
.project-titles {
    display: flex;
    justify-content: space-between;
    gap: 45px;
}
.project-titles h1 {
    font-size: 112px;
    height: 90px;
    min-width: 345px;
    line-height: 89px;
}
.project-titles h6 {
    font-size: 20px;
    font-weight: 400;
}
.project-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 16px;
    padding-top: 25px;
}
.project-paragraphs a {
    color: #A9A9A9;
   transition: 0.5s;
}
.project-paragraphs a:hover {
    color: var(--lightbrown-color);
}
.projectsSwiper {
    position: relative;
    margin: 0;
}
.projectSwiper-1 {
    grid-area: aria1;
}
.projectSwiper-2 {
    grid-area: aria3;
}
.colored.arhitectura:hover,
.title.arhitectura:hover {
    color: var(--pink-color);
}
.colored.urbanism:hover,
.title.urbanism:hover  {
    color: var(--yellow-color);
}
.colored.design-interior:hover,
.title.design-interior:hover {
    color: var(--mint-color);
}
.colored.alte-proiecte:hover,
.title.alte-proiecte:hover {
    color: var(--blue-color);
}
.swiper-button-next,
.swiper-button-prev {
    font-size: 24px;
    transition: 0.5s;
    color: var(--black-color);
}
.projectsSwiper .swiper-slide .project-img {
    width: 100%;
    height: 100%;
}
.projectsSwiper .swiper-slide .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-directions {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-right: 40px;
}
.direction-box {
    display: flex;
    align-items: center;
    gap: 25px;
}
.direction-box.arhitectura:hover svg path {
   fill: var(--pink-color);
    stroke: var(--pink-color);
}.direction-box.urbanism:hover svg path {
   fill: var(--yellow-color);
    stroke: var(--yellow-color);
}.direction-box.design-interior:hover svg path {
   fill: var(--mint-color);
    stroke: var(--mint-color);
}.direction-box.alte-proiecte:hover svg path {
   fill: var(--blue-color);
    stroke: var(--blue-color);
}


/*
** BLOG SECTION & BLOG DETAIL
*/

.blog {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.blog .container {
    width: 100%;
    padding: 100px 40px 70px 0;
    position: relative;
    z-index: 5;
    display: flex;
    gap: 60px;
}
.blog-menu {
    width: 20%;
}
.blog-menu .title {
    padding: 15px 40px;
    width: 100%;
}
.blog-menu .title h3 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white-color);
}
.blog-container {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.blog-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}
.blog-box .blog-img {
    width: 50%;
    height: 360px;
}
.blog-text {
    width: 50%;
}
.blog-text h3 {
    padding: 30px 0 15px;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
}
.blog-text p {
    color: var(--white-color);
    margin: 0;
}

.blog-text h5 {
    font-size: 16px;
    font-weight: 900;
    color: var(--white-color);
    padding-top: 15px;
    text-align: right;
}
.blog-detail-mobile {
    display: none;
}
.blog-detail .container {
    flex-direction: column;
    padding: 100px 40px 70px;
}
.blog-detail .blog-content {
    max-width: calc(1200px - 40px);
    margin: 0 auto;
    color: var(--white-color);
}
.blog-detail .blog-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.blogSwiper {
    width: 100%;
}
.blogSwiper .swiper-button-next:hover,
.blogSwiper .swiper-button-prev:hover  {
    color: var(--lightbrown-color);
}
.blog-content h1 {
    padding: 60px 0 15px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.blog-content .blog-paragraphs {
    text-align: justify;
    font-weight: 500;
}
.blog-content .blog-paragraphs a {
    color: #A9A9A9;
   transition: 0.5s;
}
.blog-content .blog-paragraphs a:hover {
    color: var(--lightbrown-color);
}
.blog-paragraphs p {
    padding-bottom: 20px;
}
.blog-paragraphs p,
.blog-paragraphs h3 {
    color: var(--white-color);
}
.blog-paragraphs img {
    padding: 10px;
}
.direction-box path {
    transition: all 0.5s;
}
.direction-box:hover path {
    fill: var(--lightbrown-color);
    stroke: var(--lightbrown-color);
}

/*
** SERVICES PAGE
*/
.services-page .container {
    gap: 50px;
}
.service-description{
    position: relative;
    z-index: 5;
    width: 60%;
    gap: 15px;
}
.services-logo {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 60;
}
.services-logo img {
    width: 650px;
}
.service-description > img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.service-text h1 {
    font-size: 32px;
    text-transform: uppercase;
    color: var(--white-color);
    margin: 50px 0 15px;
}
.service-text h1 span {
    text-transform: lowercase;
}
.service-text div,
.service-text p {
    font-size: 24px;
    text-align: justify;
    color: var(--white-color);
}
.service-text p {
    padding-bottom: 30px;
}
.service-text a {
    color: #A9A9A9;
   transition: 0.5s;
}
.service-text a:hover {
    color: var(--lightbrown-color);
}
.service-text img {
    padding: 10px;
}
.team-page .team-boxes {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.team-box {
    width: 100%;
    color: var(--white-color);
    display: flex;
    gap: 40px;
}
.member-img {
    width: 50%;
    color: var(--white-color);
}
.member-text {
    width: 50%;
}
.member-text a {
    color: #A9A9A9;
   transition: 0.5s;
}
.member-text a:hover {
    color: var(--lightbrown-color);
}
.team-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.member-text h3 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 15px;
}
.member-text h4 {
    font-size: 14px;
    padding-bottom: 15px;
}
.member-text p {
    font-size: 16px;
    text-align: justify;
}
.about-menu li a.active {
    color: var(--lightbrown-color);
}


/*
** FOOTER
*/

footer {
    position: relative;
    background-color: var(--black-color);
    z-index: 20;
}
.footer-contacts {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-socials,
.footer-contact {
    display: flex;
    gap: 30px;
    align-items: center;
}
.footer-socials {
    gap: 15px;
}
.footer-socials a {
    position: relative;
    width: 36px;
}
.footer-socials a img {
    width: 36px;
    transition: 0.5s;
}
.footer-socials a:hover .social-icon {
    opacity: 0;
}
.footer-socials a:hover .social-color {
    opacity: 1;
}
.footer-detail svg path{
    transition: .5s;
}
.footer-detail {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--white-color);
    transition: .5s;
}
.footer-detail:hover {
    color: var(--lightbrown-color);
}
.footer-detail:hover svg path {
    fill: var(--lightbrown-color);
}
.footer-detail a {
    color: var(--white-color);
}
.footer-copyright {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(217, 217, 217, 0.2);
}
.footer-copyright span {
    color: rgba(217, 217, 217, 0.5);
}
.footer-copyright a {
    color: var(--white-color);
}
.footer-logo {
    width: 300px;
}
.footer-logo svg {
    width: 100%;
}
.footer-logo svg path,
.footer-logo .cls-1 {
    fill: #fff;
    transition: 0.5s;
}
.footer-logo:hover .cls-1 {
    fill: var(--lightbrown-color);
}

/*
** Auth page
*/
.auth-page {
    padding-top: 300px;
    padding-bottom: 100px;
    width: 100%;
    min-height: 100vh;
}
.auth-page .row {
    display: flex;
    justify-content: center;
}
.auth-form {
    width: 450px;
    background-color: #fff;
    padding: 30px 55px;
    border: 1px solid #ebebeb;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .375);
}
.auth-form .logo {
    margin-bottom: 25px;
}
.auth-form .logo img {
    width: 140px;
}
.auth-form h4 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #141414;
}
.auth-form .auth-field {
    width: 100%;
    position: relative;
    display: flex;
}
.auth-form .auth-field input {
    width: 100%;
    margin: 20px 0;
    height: 50px;
    border-radius: 35px;
    border: 1px solid #141414;
    padding-left: 65px;
}
.auth-form .auth-field span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}
.auth-form .auth-field span img {
    width: 25px;
}
.auth-form .auth-action button {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 20px;
    margin-top: 15px;
    background-color: var(--lightbrown-color);
    border-color: var(--lightbrown-color);
    border: 1px solid var(--lightbrown-color);
    color: #141414;
    transition: 0.5s;
}
.auth-form .auth-action button:hover {
    background-color: transparent;
    border: 1px solid var(--lightbrown-color);
}
.auth-form .auth-forgot a {
    color: #141414;
    text-decoration: none;
    border-bottom: 1px solid #141414;
    font-weight: 500;
}
.auth-page ul li {
    text-align: left;
}
.register-field {
    margin-top: 15px;
    display: flex;
    justify-content: end;
}
.register-field h6 {
    text-align: center;
    font-weight: 100;
}
.register-field h6 a {
    color: #141414;
    font-weight: 700;
}
.auth-check-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.auth-check-forgot .form-check {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.auth-field-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.auth-field-checkbox label {
    margin-top: 2px;
}
.auth-field-checkbox a {
    border-bottom: 1px solid #141414;
}
.auth-form .auth-field input[type="checkbox"] {
    margin: 0;
    height: 15px;
    width: 15px;
    border-radius: 5px;
    border: 1px solid #141414;
    padding-left: 0;
    margin-right: 10px;
}
.auth-form .auth-field input[type="checkbox"]:checked {
    background-color: var(--lightbrown-color) !important;
    border-color: var(--lightbrown-color) !important;
}
.auth-form .auth-field label {
    text-align: left;
    line-height: 1;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}
.swal2-actions button{
    box-shadow: 0 0 0 transparent!important;
}



/*
** Search
*/

.search-result {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.search-result.active {
    padding: 25px;
    background-color: var(--black-color);
    border: 1px solid var(--white-color);
}
.result-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.result-box img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.result-box p {
    color: var(--white-color);
    font-size: 16px;
    transition: 0.5s;
}
.result-box p:hover {
    color: var(--lightbrown-color);
}
.result-box p br {
    display: none;
}
