/*=============== GOOGLE FONTS ===============*/

@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400;500;600&display=swap');

/*=============== VARIABLES CSS ===============*/

:root {
    --header-height: 3.5rem;
    /*========== Colors ==========*/
    --first-color: rgb(51, 140, 153);
    --first-color-alt: rgb(51, 140, 145);
    --first-color-light: rgb(51, 120, 125);
    --first-color-lighten: hsl(228, 100%, 97%);
    --second-color: hsl(25, 83%, 53%);
    --title-color: hsl(0, 0%, 15%);
    --text-color: hsl(0, 0%, 35%);
    --text-color-light: hsl(0, 0%, 55%);
    --border-color: hsl(228, 99%, 98%);
    --body-color: hsl(0, 0%, 99%);
    --container-color: #fff;
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Lexend Deca', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}


/* Responsive typography */

@media screen and (min-width: 1024px) {
     :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}


/*=============== BASE ===============*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    transition: .3s;
    /* For animation dark mode */
}

h1,
h2,
h3 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--first-color);
}

img {
    max-width: 100%;
    height: auto;
}

input,
button {
    font-family: var(--body-font);
    outline: none;
    border: none;
}


/*=============== THEME ===============*/

.change-theme {
    font-size: 1.25rem;
    color: var(--first-color);
    cursor: pointer;
    transition: .3s;
}


/*========== Variables Dark theme ==========*/

body.dark-theme {
    --first-color: rgb(51, 140, 150);
    --second-color: hsl(25, 57%, 54%);
    --title-color: hsl(228, 8%, 95%);
    --text-color: hsl(228, 8%, 70%);
    --border-color: hsl(228, 16%, 14%);
    --body-color: hsl(228, 12%, 8%);
    --container-color: hsl(228, 16%, 12%);
}


/*========== 
    Color changes in some parts of 
    the website, in dark theme 
==========*/

.dark-theme .home__search,
.dark-theme .swiper-button-next,
.dark-theme .swiper-button-prev {
    border: 3px solid var(--border-color);
}

.dark-theme .nav__menu,
.dark-theme .home__img,
.dark-theme .services__card:hover,
.dark-theme .value__img,
.dark-theme .accordion-open,
.dark-theme .accordion-open .value__accordion-icon,
.dark-theme .accordion-open .value__accordion-arrow,
.dark-theme .contact__img,
.dark-theme .contact__card-box:hover,
.dark-theme .scrollup {
    box-shadow: none;
}

.dark-theme .value__orbe,
.dark-theme .value__accordion-icon,
.dark-theme .value__accordion-arrow,
.dark-theme .contact__orbe,
.dark-theme .contact__card i,
.dark-theme .contact .contact__card-button,
.dark-theme .start__container {
    background-color: var(--container-color);
}

.dark-theme .start__container {
    border: 6px solid var(--border-color);
}

.dark-theme.start__description {
    color: var(--text-color);
}

.dark-theme::-webkit-scrollbar {
    background-color: hsl(228, 4%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb {
    background-color: hsl(228, 4%, 25%);
}

.dark-theme::-webkit-scrollbar-thumb:hover {
    background-color: hsl(228, 4%, 35%);
}


/*=============== REUSABLE CSS CLASSES ===============*/

.container {
    max-width: 1024px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.grid {
    display: grid;
}

.section {
    padding: 4.5rem 0 2rem;
}

.section__title {
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
}

.section__title span {
    color: var(--second-color);
}

.section__subtitle {
    display: block;
    font-size: var(--small-font-size);
    color: var(--second-color);
}

.section__description {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    margin-bottom: 1rem;
}

.main {
    overflow: hidden;
    /* For the animations ScrollReveal*/
}


/*=============== HEADER & NAV ===============*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: var(--z-fixed);
    transition: .4s;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    color: var(--first-color);
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: var(--font-medium);
    transition: .3s;
}

.nav__logo i {
    font-size: 1rem;
}

@media screen and (max-width: 1023px) {
    .nav__menu {
        position: fixed;
        bottom: 2rem;
        background-color: var(--container-color);
        box-shadow: 0 8px 24px hsla(228, 66%, 45%, .15);
        width: 90%;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 1.30rem 3rem;
        border-radius: 1.25rem;
        transition: .4s;
    }
    .nav__list {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav__link {
        color: var(--text-color);
        display: flex;
        padding: .5rem;
        border-radius: 50%;
    }
    .nav__link i {
        font-size: 1.25rem;
    }
    .nav__link span {
        display: none;
    }
}


/* Change background header */

.scroll-header {
    background-color: var(--body-color);
    box-shadow: 0 1px 4px hsla(228, 4%, 15%, .1);
}

.scroll-header .nav__logo {
    color: var(--first-color);
}

.scroll-header .change-theme {
    color: var(--first-color);
}


/* Active link */

.active-link {
    background: linear-gradient(101deg, var(--first-color), var(--first-color-alt));
    color: #fff;
    box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
}


/*=============== HOME ===============*/

.home__container {
    position: relative;
    height: calc(100vh - var(--header-height));
    align-content: center;
    row-gap: 3rem;
}

.home__title {
    color: #fff;
    font-size: var(--biggest-font-size);
    line-height: 120%;
    margin-bottom: 1.25rem;
}

.home__description {
    font-weight: var(--font-semi-bold);
    color: #fff;
    margin-bottom: 2rem;
}

.home__value {
    display: flex;
    column-gap: 2.5rem;
}

.home__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: 65%;
}


/*=============== BUTTON ===============*/

.button {
    display: inline-block;
    background: linear-gradient(101deg, var(--first-color), var(--first-color-alt));
    color: #fff;
    padding: 14px 28px;
    border-radius: .5rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    box-shadow: 0 4x 8px hsla(228, 66%, 45%, .25);
    transition: .3s;
    cursor: pointer;
    width: 100%;
}

.start__action-button {
    display: inline-block;
    background: linear-gradient(101deg, var(--first-color), var(--first-color-alt));
    color: #fff;
    padding: 14px 28px;
    border-radius: .5rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    box-shadow: 0 4x 8px hsla(228, 66%, 45%, .25);
    transition: .3s;
    cursor: pointer;
}

.button:hover,
.start__action-button:hover {
    box-shadow: 0 4px 12px hsla(228, 66%, 45%, .25);
}

.button__outlined {
    background: none;
    border: 2px solid var(--first-color);
    color: var(--first-color);
}

.button__outlined:hover {
    background: linear-gradient(101deg, var(--first-color), var(--first-color-alt));
    color: #fff;
}

.nav__button {
    display: none;
}


/*===== FORM =====*/

.l-form,
.account__form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-form {
    height: 100vh;
}

.account__form {
    height: 75vh;
}

.form {
    width: 360px;
    padding: 4rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(92, 99, 105, .2);
}

.form__title,
.form__subtitle {
    text-align: center;
    margin-bottom: 1rem;
}

.form__title {
    font-weight: var(--font-semi-bold);
}

.form__subtitle {
    font-weight: var(--font-medium);
}

.form__div {
    position: relative;
    height: 48px;
    margin-top: 1.5rem;
}

.multistep__form-div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem .75rem;
}

.multistep__form-button {
    padding: 0;
}

.multistep__form-button-prev {
    padding: 0;
    background: none;
    border: 2px solid var(--first-color);
    color: var(--first-color);
}

.errorlist {
    color: red;
    font-size: var(--small-font-size);
    margin-bottom: 1rem;
}

.nonfield {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form__title-data,
.form__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.form__title-data {
    text-align: center;
}

.form__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: var(--normal-font-size);
    border: 1px solid var(--text-color);
    border-radius: .5rem;
    outline: none;
    padding: 1rem;
    background: none;
    z-index: 1;
    color: var(--text-color);
}

.form__label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 .25rem;
    background-color: var(--body-color);
    color: var(--input-color);
    font-size: var(--normal-font-size);
    transition: .3s;
}

.form__button {
    display: inline-block;
    background: linear-gradient(101deg, var(--first-color), var(--first-color-alt));
    color: #fff;
    padding: 14px 28px;
    border-radius: .5rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    box-shadow: 0 4x 8px hsla(228, 66%, 45%, .25);
    transition: .3s;
    cursor: pointer;
    width: 100%;
}

.form__button:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, .15);
}

.form__button a {
    color: #fff;
}

.danger {
    background: none;
    border: 2px solid #E12729;
    color: #E12729;
}

.danger:hover {
    background: linear-gradient(101deg, #E12729, #832b2c);
    color: #fff;
}


/*Input focus move up label*/

.form__input:focus+.form__label {
    top: -.5rem;
    left: .8rem;
    color: var(--first-color);
    font-size: var(--small-font-size);
    font-weight: 500;
    z-index: 10;
}


/*Input focus sticky top label*/

.form__input:not(:placeholder-shown).form__input:not(:focus)+.form__label {
    top: -.5rem;
    left: .8rem;
    font-size: var(--small-font-size);
    font-weight: 500;
    z-index: 10;
}


/*Input focus*/

.form__input:focus {
    border: 1.5px solid var(--first-color);
}

.forms__content {
    justify-content: center;
    /* width: fit-content; */
    gap: 1rem;
    margin-bottom: 1rem;
}

.forms__content__description {
    justify-content: space-between;
}

.forms__div {
    position: relative;
    height: 40px;
    width: -webkit-fill-available;
    margin-bottom: 2rem;
}

.forms__input {
    width: 100%;
    font-size: var(--normal-font-size);
    border: 1px solid var(--border-color-dark);
    border-radius: 0.25rem;
    outline: none;
    padding: 0.5rem;
    background: none;
    z-index: 1;
}

.forms__input {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    color: var(--text-color);
}


/*=============== LOGOS ===============*/

.logos__container {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    justify-items: center;
}

.logos__img img {
    height: 60px;
    opacity: .2;
    transition: .3s;
}

.logos__img img:hover {
    opacity: .6;
}


/*=============== SERVICES ===============*/

.services__container {
    padding: 1rem 0 5rem;
}

.services__card {
    width: 290px;
    height: 450px;
    background-color: var(--container-color);
    padding: .5rem .5rem 1.5rem;
    border-radius: 1rem;
    margin: 0 auto;
    transition: .4s;
}

.services__buttons-card {
    height: 550px;
    margin-bottom: 1.5rem;
}

.services__img {
    border-radius: 1rem;
    margin-bottom: 1rem;
    object-fit: cover;
    width: 290px;
    height: 280px;
}

.services__data {
    padding: 0 1rem 0 .5rem;
}

.services__price {
    font-size: var(--h2-font-size);
    color: var(--text-color);
    margin-bottom: .25rem;
}

.services__price span {
    color: var(--second-color);
}

.services__title {
    font-size: var(--h3-font-size);
    margin-bottom: .75rem;
}

.services__description {
    font-size: var(--small-font-size);
}

.services__card:hover {
    box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}


/* Swiper class */

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}

.swiper-button-next,
.swiper-button-prev {
    top: initial;
    bottom: 0;
    width: initial;
    height: initial;
    background-color: var(--container-color);
    border: 2px solid var(--text-color-light);
    padding: 6px;
    border-radius: .5rem;
    font-size: 1.5rem;
    color: var(--first-color);
}

.swiper-button-prev {
    left: calc(50% - 3rem);
}

.swiper-button-next {
    right: calc(50% - 3rem);
}


/*=============== STEPS OF PROCEDURE ===============*/

.c-stepper {
    display: flex;
    flex-wrap: wrap;
}

.c-stepper__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.c-stepper__item:before {
    --size: 3rem;
    content: "";
    position: relative;
    z-index: 1;
    display: block;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    margin: 1rem auto 0;
}

.multi-steps>li.is-active:before,
.multi-steps>li.is-active~li:before {
    content: counter(stepNum);
    font-family: inherit;
    font-weight: 700;
}

.multi-steps>li.is-active:after,
.multi-steps>li.is-active~li:after {
    background-color: rgb(51, 140, 153);
}

.multi-steps {
    /* display: table; */
    table-layout: fixed;
    width: 100%;
}

.multi-steps>li {
    counter-increment: stepNum;
    text-align: center;
    display: table-cell;
    position: relative;
    color: var(--text-color);
    ;
}

.multi-steps>li:before {
    content: '\f00c';
    content: '\2713;';
    content: '\10003';
    content: '\10004';
    content: '\2713';
    display: block;
    margin: 0 auto 4px;
    background-color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(51, 140, 153);
    ;
    border-radius: 50%;
}

.multi-steps>li:after {
    content: '';
    height: 2px;
    width: 100%;
    background-color: rgb(51, 140, 153);
    ;
    position: absolute;
    top: 28px;
    left: 50%;
    z-index: -1;
}

.multi-steps>li:last-child:after {
    display: none;
}

.multi-steps>li.is-active:before {
    background-color: #fff;
    border-color: rgb(51, 140, 153);
    ;
}



/*=============== REALISATION ===============*/

.realisation__container {
    row-gap: 3rem;
}

.realisation__images {
    position: relative;
    display: flex;
    justify-content: center;
}

.realisation__orbe {
    width: 300px;
    height: 203px;
    background-color: hsl(28, 24%, 97%);
    border-radius: 135px 135px 135px 135px;
}

.realisation__img {
    position: absolute;
    width: 290px;
    height: 193px;
    overflow: hidden;
    border-radius: 125px 125px 125px 125px;
    inset: 0;
    margin: auto;
    box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.realisation__description {
    font-size: var(--small-font-size);
    margin-bottom: 2rem;
}

.realisation__accordion {
    display: grid;
    row-gap: 1.5rem;
}

.realisation__accordion-item {
    background-color: var(--body-color);
    border: 2px solid var(--border-color);
    border-radius: .5rem;
    padding: 1rem .75rem;
}

.realisation__accordion-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.realisation__accordion-icon {
    background-color: var(--first-color-lighten);
    padding: 5px;
    border-radius: .25rem;
    font-size: 18px;
    color: var(--first-color);
    margin-right: .75rem;
    transition: .3s;
}

.realisation__accordion-title {
    font-size: var(--small-font-size);
}

.realisation__accordion-arrow {
    display: inline-flex;
    background-color: var(--first-color-lighten);
    padding: .25rem;
    color: var(--first-color);
    border-radius: 2px;
    font-size: 10px;
    margin-left: auto;
    transition: .3s;
}

.realisation__accordion-arrow i {
    transition: .4s;
}

.realisation__accordion-description {
    font-size: var(--smaller-font-size);
    padding: 1.25rem 2.5rem 0 2.75rem;
}

.realisation__accordion-content {
    overflow: hidden;
    height: 0;
    transition: all .25s ease;
}


/*Rotate icon and add shadows*/

.accordion-open {
    box-shadow: 0 12px 32px hsla(228, 66%, 45%, hsla(228, 4%, 15%, .1));
}

.accordion-open .realisation__accordion-icon {
    box-shadow: 0 4px 4px hsla(228, 66%, 45%, .1);
}

.accordion-open .realisation__accordion-arrow {
    box-shadow: 0 2px4px hsla(228, 66%, 45%, .1);
}

.accordion-open .realisation__accordion-arrow i {
    transform: rotate(-180deg);
}



/*=============== VALUE ===============*/

.value__container {
    row-gap: 3rem;
}

.value__images {
    position: relative;
    display: flex;
    justify-content: center;
}

.value__orbe {
    width: 300px;
    height: 203px;
    background-color: hsl(28, 24%, 97%);
    border-radius: 135px 135px 135px 135px;
}

.value__img {
    position: absolute;
    width: 290px;
    height: 193px;
    overflow: hidden;
    border-radius: 125px 125px 125px 125px;
    inset: 0;
    margin: auto;
    box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.value__description {
    font-size: var(--small-font-size);
    margin-bottom: 2rem;
}

.value__accordion {
    display: grid;
    row-gap: 1.5rem;
}

.value__accordion-item {
    background-color: var(--body-color);
    border: 2px solid var(--border-color);
    border-radius: .5rem;
    padding: 1rem .75rem;
}

.value__accordion-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.value__accordion-icon {
    background-color: var(--first-color-lighten);
    padding: 5px;
    border-radius: .25rem;
    font-size: 18px;
    color: var(--first-color);
    margin-right: .75rem;
    transition: .3s;
}

.value__accordion-title {
    font-size: var(--small-font-size);
}

.value__accordion-arrow {
    display: inline-flex;
    background-color: var(--first-color-lighten);
    padding: .25rem;
    color: var(--first-color);
    border-radius: 2px;
    font-size: 10px;
    margin-left: auto;
    transition: .3s;
}

.value__accordion-arrow i {
    transition: .4s;
}

.value__accordion-description {
    font-size: var(--smaller-font-size);
    padding: 1.25rem 2.5rem 0 2.75rem;
}

.value__accordion-content {
    overflow: hidden;
    height: 0;
    transition: all .25s ease;
}


/*Rotate icon and add shadows*/

.accordion-open {
    box-shadow: 0 12px 32px hsla(228, 66%, 45%, hsla(228, 4%, 15%, .1));
}

.accordion-open .value__accordion-icon {
    box-shadow: 0 4px 4px hsla(228, 66%, 45%, .1);
}

.accordion-open .value__accordion-arrow {
    box-shadow: 0 2px4px hsla(228, 66%, 45%, .1);
}

.accordion-open .value__accordion-arrow i {
    transform: rotate(-180deg);
}


/*=============== CONTACT ===============*/

.contact__container {
    row-gap: 2rem;
}

.contact__images {
    position: relative;
    display: flex;
    justify-content: center;
}

.contact__orbe {
    width: 300px;
    height: 203px;
    background-color: hsl(228, 24%, 97%);
    border-radius: 135px 135px 135px 135px;
}

.contact__img {
    position: absolute;
    width: 290px;
    height: 193px;
    overflow: hidden;
    border-radius: 125px 125px 125px 125px;
    inset: 0;
    margin: auto;
    box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.contact__description {
    font-size: var(--small-font-size);
    margin-bottom: 2.5rem;
}

.contact__card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem .75rem;
}

.contact__card-box {
    background-color: var(--body-color);
    border: 2px solid var(--border-color);
    padding: 1.25rem .75rem;
    border-radius: .5rem;
    transition: .3s;
}

.contact__card-info {
    display: flex;
    align-items: flex-start;
    column-gap: .75rem;
    margin-bottom: 1.25rem;
}

.contact__card i {
    padding: 6px;
    background-color: var(--first-color-lighten);
    border-radius: 6px;
    font-size: 1.25rem;
    color: var(--first-color);
}

.contact__card-title {
    font-size: var(--normal-font-size);
}

.contact__card-description {
    font-size: var(--smaller-font-size);
}

.contact__card-button {
    font-size: var(--small-font-size);
    padding: 14px 0;
    width: 100%;
    border-radius: .25rem;
    background: var(--first-color-lighten);
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    box-shadow: none;
}

.contact__card-button:hover {
    background-color: var(--first-color);
    color: #fff;
}

.contact__card-button:hover a {
    color: #fff;
}

.contact_card-box:hover {
    box-shadow: 0 8px 24px hsla(228, 66%, 45%, .1);
}


/*=============== START ===============*/

.start__container {
    background-color: var(--first-color);
    padding: 3rem 2rem;
    border-radius: 1.25rem;
    border: 6px solid var(--text-color-light);
    text-align: center;
}

.start__title {
    font-size: var(--h2-font-size);
    color: #fff;
    margin-bottom: 1rem;
}

.start__description {
    color: hsl(228, 90%, 92%);
    font-size: var(--small-font-size);
    margin-bottom: 2rem;
}

.start__button {
    border: 2px solid #fff;
    background: var(--first-color-light);
    font-size: var(--small-font-size);
}

.start__button:hover {
    background-color: var(--first-color);
}


/*=============== ACCOUNT ===============*/

.account__container {
    background-color: var(--container-color);
    padding: 1.5rem .5rem 2.5rem;
    border-radius: 1rem;
    margin-bottom: 2.5rem;
}

.account__container:hover {
    box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

.account__title {
    padding-bottom: 1.5rem;
}

.account__data {
    position: relative;
    height: 48px;
    margin-bottom: 1.5rem;
}

.account__data-value {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: var(--small-font-size);
    border: 1px solid var(--text-color);
    border-radius: .5rem;
    outline: none;
    padding: 1rem;
    background: none;
    z-index: 1;
    color: var(--text-color);
}

.account__data-subtitle {
    position: absolute;
    top: -.5rem;
    left: .8rem;
    background-color: var(--container-color);
    color: var(--text-color);
    font-size: var(--small-font-size);
    font-weight: 500;
    z-index: 10;
    transition: .3s;
}


/*=============== LOGIN ===============*/

.login__signup-section {
    margin-top: 1.5rem;
    text-align: center;
}

.login__buttons {
    margin-top: 1.5rem;
}

.login__forgot-password {
    margin-top: .5rem;
    text-align: right;
}


/*=============== PROJECT ===============*/

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

.project__add i {
    font-size: 8rem;
    color: var(--first-color);
}

.project__container {
    padding: 1rem 0 5rem;
}

.project__card {
    width: 290px;
    background-color: var(--container-color);
    padding: .5rem .5rem 1.5rem;
    border-radius: 1rem;
    margin: 1.5rem auto;
    transition: .4s;
}

.project__img {
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.project__data {
    padding: 0 1rem 0 .5rem;
}

.project__price {
    font-size: var(--h2-font-size);
    color: var(--text-color);
    margin-bottom: .25rem;
}

.project__price span {
    color: var(--second-color);
}

.project__title {
    font-size: var(--h2-font-size);
    margin-bottom: 2rem;
    text-align: center;
}

.project__description {
    font-size: var(--small-font-size);
    padding-bottom: 1.5rem;
}

.project__card:hover {
    box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

.project__data {
    position: relative;
    height: 48px;
    margin-bottom: 1.5rem;
}

.project__data-value {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: var(--small-font-size);
    border: 1px solid var(--text-color);
    border-radius: .5rem;
    outline: none;
    padding: 1rem;
    background: none;
    z-index: 1;
    color: var(--text-color);
}

.project__data-subtitle {
    position: absolute;
    top: -.5rem;
    left: .8rem;
    background-color: var(--container-color);
    color: var(--text-color);
    font-size: var(--small-font-size);
    font-weight: 500;
    z-index: 10;
    transition: .3s;
}


/*=============== FOOTER ===============*/

.footer__container {
    row-gap: 2.5rem;
}

.footer__logo {
    color: var(--first-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    display: inline;
    align-items: center;
    column-gap: .25rem;
    margin-bottom: .75rem;
}

.footer__logo i {
    font-size: 1.25rem;
}

.footer__description,
.footer__link {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

.footer__content,
.footer__links {
    display: grid;
}

.footer__content {
    grid-template-columns: repeat(2, max-content);
    gap: 2.5rem 4rem;
}

.footer__title {
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
}

.footer__links {
    row-gap: .5rem;
}

.footer__link {
    color: var(--text-color);
    transition: .3s;
}

.footer__link:hover {
    color: var(--title-color);
}

.footer__social {
    display: flex;
    column-gap: 1rem;
}

.footer__social-link {
    font-size: 1.25rem;
    color: var(--text-color);
    transition: .3s;
}

.footer__social-link:hover {
    color: var(--title-color);
}

.footer__info,
.footer__privacy {
    display: flex;
}

.footer__info {
    padding-bottom: 6rem;
    margin-top: 5.5rem;
    flex-direction: column;
    text-align: center;
    row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a {
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
}

.footer__privacy {
    justify-content: center;
    column-gap: 1.25rem;
}


/*=============== LOGIN ===============*/

.footer__info-signing {
    padding-bottom: 0;
}


/*=============== SCROLL BAR ===============*/

::-webkit-scrollbar {
    width: .6rem;
    border-radius: .5rem;
    background-color: hsl(228, 8%, 76%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(228, 8%, 64%);
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(228, 8%, 54%);
}


/*=============== SCROLL UP ===============*/

.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -30%;
    background-color: var(--container-color);
    box-shadow: 0 8px 12px hsla(228, 66%, 45%, .1);
    display: inline-flex;
    padding: .35rem;
    border-radius: .25rem;
    color: var(--title-color);
    font-size: 1.25rem;
    z-index: var(--z-tooltip);
    transition: .3s;
}

.scrollup:hover {
    transform: translateY(-.25rem);
    color: var(--first-color);
}


/* Show Scroll Up*/

.show-scroll {
    bottom: 8rem;
}


/*=============== BREAKPOINTS ===============*/


/* For small devices */

@media screen and (max-width: 350px) {
    .container {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .section {
        padding: 3.5rem 0 1rem;
    }
    .home {
        padding-bottom: 0;
    }
    .contact__card {
        grid-template-columns: repeat(1, 180px);
        justify-content: center;
    }
}

@media screen and (max-width:320px) {
    .nav__menu {
        padding: 1.3rem 1.5rem;
    }
    .home__value {
        column-gap: 1rem;
    }
    .home__img {
        width: 220px;
        height: 280px;
    }
    .home__orbe {
        width: 240px;
        height: 264px;
    }
    .logos__container {
        gap: 2rem 1rem;
    }
    .services__card {
        width: 230px;
        padding: .5rem .5rem .75rem;
    }
    .value__img,
    .contact__img {
        width: 220px;
        height: 260px;
    }
    .value__orbe,
    .contact__orbe {
        width: 236px;
        height: 280px;
    }
    .start__container {
        padding: 2rem 1rem;
    }
    .footer__content {
        gap: 2.5rem;
    }
}


/* For medium devices */

@media screen and (min-width: 576px) {
    .nav__menu {
        width: 342px;
    }
    .home__search {
        width: 412px;
    }
    .contact__card {
        grid-template-columns: repeat(2, 192px);
        justify-content: center;
    }
    .footer__content {
        grid-template-columns: repeat(3, max-content);
    }
    .account__content {
        display: grid;
        grid-template-columns: repeat(4, 2fr);
        column-gap: 3rem;
    }
    .project__content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
    }
    .account__content div {
        grid-column: span 2;
    }
    .account__content a {
        grid-column: 2 /4;
    }
    .project__content div:nth-child(1) {
        grid-column: 1 / 3;
    }
    .project__content div:nth-child(2) {
        grid-column: 1 / 3;
        grid-row: 2 / 4;
    }
    .project__content div:nth-last-child(1) {
        grid-column: 1 / 3;
    }
}

@media screen and (min-width:767px) {
    .home__container {
        height: 100vh;
        grid-template-rows: 1.8fr .5fr;
    }
    .home__data {
        align-self: flex-end;
    }
    .logos__container {
        grid-template-columns: repeat(4, max-content);
        justify-content: center;
    }
    .value__container,
    .contact__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    .contact__images {
        order: 1;
    }
    .contact__card {
        justify-content: initial;
    }
    .start__container {
        padding: 3rem 13rem;
    }
    .footer__container {
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
    }
    .project__list {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* For large devices */

@media screen and (min-width: 1023px) {
    .section {
        padding: 7.5rem 0 1rem;
    }
    .section__title {
        font-size: 2.25rem;
    }
    .section__subtitle {
        font-size: var(--normal-font-size);
    }
    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }
    .nav__menu {
        width: initial;
    }
    .nav__list {
        display: flex;
        column-gap: 3rem;
    }
    .nav__link {
        color: var(--text-color-light);
    }
    .nav__link i {
        display: none;
    }
    .nav__button {
        display: inline-block;
    }
    .active-link {
        background: none;
        box-shadow: none;
        color: var(--first-color);
        font-weight: var(--font-medium);
    }
    .change-theme {
        margin: 0 3rem;
        color: var(--text-color-light);
    }
    .scroll-header .nav__link,
    .scroll-header .change-theme {
        color: var(--text-color);
    }
    .scroll-header .active-link {
        color: var(--first-color);
    }
    .form {
        width: 460px;
    }
    .home {
        padding-bottom: 0;
    }
    .home__container {
        padding-top: 5rem;
        column-gap: 2rem;
        grid-template-rows: 2fr .5fr;
    }
    .home__data {
        padding-bottom: 4rem;
    }
    .home__title {
        margin-bottom: 2rem;
    }
    .home__description,
    .home__search {
        margin-bottom: 3rem;
    }
    .home__value {
        column-gap: 3.5rem;
    }
    .home__img {
        object-position: 5%;
    }
    .logos__img img {
        height: 100px;
    }
    .services__container {
        padding-top: 3rem;
    }
    .services__card {
        width: 320px;
        padding: .75rem .75rem 2rem;
    }
    .services__data {
        padding: 0 .25rem .75rem;
    }
    .value__orbe,
    .contact__orbe {
        width: 460px;
        height: 310px;
        border-radius: 258px 258px 258px 258px;
    }
    .value__img,
    .contact__img {
        width: 450px;
        height: 300px;
        border-radius: 238px 238px 238px 238px;
    }
    .value__description,
    .contact__description {
        font-size: var(--normal-font-size);
        margin-bottom: 2.5rem;
    }
    .value__accordion-title {
        font-size: var(--normal-font-size);
    }
    .value__accordion-item {
        padding: 1.25rem 1.25rem 1.25rem 1rem;
    }
    .value__accordion-description {
        padding-bottom: 1rem;
        font-size: var(--small-font-size);
    }
    .contact__card {
        grid-template-columns: repeat(2, 200px);
    }
    .contact__card-box {
        padding: 28px 1.5rem 1.5rem;
    }
    .start__container {
        padding: 4rem 10rem 4.5rem;
        border-radius: 2rem;
        border: 12px solid var(--first-color-light);
    }
    .start__title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    .start__description {
        font-size: var(--normal-font-size);
        padding: 0 8rem;
    }
    .start__button {
        font-size: var(--normal-font-size);
    }
    .footer__content {
        grid-template-columns: repeat(4, max-content);
    }
    .footer__title {
        margin-bottom: 1.5rem;
    }
    .footer__links {
        row-gap: 1rem;
    }
    .footer__info {
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 2rem;
    }
    .show-scroll {
        bottom: 3rem;
        right: 3rem;
    }
}

@media screen and (min-width: 1040px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    .home__container {
        column-gap: 4rem;
    }
}


/* For 2K & 4K resolutions */

@media screen and (min-width:2048px) {
    body {
        zoom: 1.5;
    }
}

@media screen and (min-width:3840px) {
    body {
        zoom: 2;
    }
}
