:root {
    --max-width: 1320px;
    --color-primary: #5956e9;
    --color-text-body: #525260;
    --color-secondary: #fff;
    --color-banner: #2522ba;
    --color-text-btn: #0d6efd;
    --color-bg-btn: #ffdc60;
    --color-subtitle: #c75c6f;
    --color-title: #292930;
    --color-bg-services: #f8f8f8;
    --color-bg-projects: #ecf2f6;
    --color-bg-dark: #27272e;
    --color-text-description: #99a1aa;
    --color-borders: #e3e6e9;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;

    font-size: 1.6rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-body);
}

a {
    color: var(--color-bg-dark);
}

.layout {
    width: 100%;
    min-width: 1200px;
    height: 100%;
}

.layout__menu {
    width: 100%;
    padding: 5rem 1rem;
}

.menu__navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.menu__navbar--fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
    background-color: var(--color-secondary);
    box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 10%);
    padding: 1.5rem 8rem;
}

.navbar__logo {
    width: 187px;
}

.nav__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.nav__item {
    position: relative;
    margin: 0 2.4rem;
}

.nav__title {
    position: relative;
    display: inline-block;
    line-height: 6rem;
    font-weight: 500;
    color: var(--color-text-body);
    transition: all 300ms ease-in-out;
}

.nav__icon {
    font-size: 1rem;
    font-weight: bold;
    padding-left: .2rem;
    vertical-align: middle;
}

.nav__title:hover {
    color: var(--color-primary);
}

.nav__title::before {
    content: "";
    height: .2rem;
    width: 0;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 1.2rem;
    left: 0;
    opacity: 0;
    transition: 500ms;
}

.nav__title:hover::before {
    width: 100%;
    opacity: 1;
}

.nav__submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 2rem;
    min-width: 19rem;
    padding: 1.5rem 1rem;
    border-radius: 4px;
    background-color: var(--color-secondary);
    box-shadow: 0px 13px 48px 0 rgba(0, 0, 0, 15%);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}

.submenu__item {
    opacity: 0;
    transform: translateX(2rem);
    transition: all 100ms ease-in-out;
}

.submenu__item:nth-child(1) {
    transition-delay: 100ms;
}

.submenu__item:nth-child(2) {
    transition-delay: 200ms;
}

.submenu__item:nth-child(3) {
    transition-delay: 300ms;
}

.submenu__item:nth-child(4) {
    transition-delay: 400ms;
}

.submenu__item:nth-child(5) {
    transition-delay: 500ms;
}

.submenu__title {
    display: block;
    position: relative;
    font-size: 1.5rem;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 500;
    color: var(--color-text-body);
    padding: .7rem 1.5rem;
    transition: all 300ms ease-in-out;
}

.nav__item:hover>.nav__submenu {
    opacity: 1;
    visibility: visible;
    z-index: 999;
    left: 0;
}

.nav__item:hover .submenu__item {
    opacity: 1;
    transform: translateX(0);
}

.submenu__title:hover {
    color: var(--color-primary);
}

.submenu__title::after {
    content: "";
    height: .1rem;
    width: 0;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: var(--color-primary);
    transition: all 300ms ease-in-out;
}

.submenu__title:hover::after {
    width: 100%;
}

.layout__banner {
    position: relative;
    min-height: 30rem;
    margin: 0 3rem;
    padding-right: 0;
    padding-left: 10rem;
    padding-top: 15rem;
    padding-bottom: 20rem;
    border-radius: 60px;
    overflow: hidden;
    background-color: var(--color-banner);
    z-index: 1;
}

.banner__content {
    position: relative;
    display: inline-block;
    width: 50%;
    padding: 0 1.5rem;
    z-index: 3;
}

.banner__title {
    font-size: 8.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: 3rem;
}

.banner__btn {
    display: inline-block;
    padding: 2.8rem 4.5rem;
    border-radius: 20px;
    background-color: var(--color-secondary);
    color: var(--color-text-btn);
    font-size: 1.7rem;
    text-transform: capitalize;
    font-weight: bold;
    text-align: center;
    box-shadow: 0px 45px 80px -25px var(--color-primary);
    transition: all 300ms ease-in-out;
}

.banner__btn:hover {
    background-color: var(--color-bg-btn);
    color: var(--color-text-body);
}

.shapes__item {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.shapes__item--shape1 {
    top: 0;
    right: 0;
    text-align: right;

    animation-name: showRight;
    animation-duration: 1s;
}

@keyframes showRight {
    0% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.shapes__item--shape2 {
    bottom: 0;
    left: 0;

    animation-name: showLeft;
    animation-duration: 1s;
}

@keyframes showLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.shapes__item--shape3 {
    top: 34%;
    left: 50%;
    animation: moveShape3 20s infinite;
}

@keyframes moveShape3 {
    0% {
        transform: translateX(0) translateY(0);
    }

    40% {
        transform: translateX(50px) translateY(-200px);
    }

    75% {
        transform: translateX(800px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.shapes__item--shape4 {
    bottom: 24rem;
    left: 45%;
    animation: moveShape4 30s infinite;
}

@keyframes moveShape4 {
    0% {
        transform: translateX(0) translateY(0);
    }

    40% {
        transform: translateX(-50px) translateY(200px);
    }

    75% {
        transform: translateX(-500px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.shapes__item--shape4 shapes__img {
    opacity: .5;
    width: 6.5rem;
}

.shapes__item--shape5 {
    bottom: 12rem;
    left: 53%;
    opacity: .7;
    animation: moveShape5 45s infinite;
}

@keyframes moveShape5 {
    0% {
        transform: translateX(0) translateY(0);
    }

    40% {
        transform: translateX(-600px) translateY(-500px);
    }

    75% {
        transform: translateX(30px) translateY(-800px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.shapes__item--shape6 {
    bottom: 10rem;
    left: 40%;
    animation: moveShape3 35s infinite;
}

.shapes__item--shape7 {
    top: 0;
    right: 10rem;
    z-index: 1;

    animation-name: showTop;
    animation-duration: 1s;
}

@keyframes showTop {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0%);
    }
}

.layout__services {
    position: relative;
    margin: 14rem 10rem;
    margin-bottom: 8rem;
    z-index: 1;
}

.services__grid {
    max-width: var(--max-width);
    margin: 0 auto;
}

.services__header {
    margin-bottom: 2rem;
    text-align: left;
}

.services__subtitle,
.projects__subtitle,
.reviews__subtitle,
.clients__subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-subtitle);
    margin-bottom: 1.5rem;
}

.services__title,
.projects__title,
.reviews__title {
    font-size: 6.7rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-title);
}

.services__list {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.services__service {
    width: 33%;
    height: 100%;
    padding: 5rem 4rem;
    margin-bottom: 4rem;
    border-radius: 3rem;
    background: linear-gradient(180deg, var(--color-bg-services), rgba(255, 255, 255, 0));
    background-color: var(--color-secondary);
    border: 1px solid;
    border-image-source: linear-gradient(90deg, var(--color-bg-services), rgba(225, 225, 255, 0));
    transition: all 300ms ease-in-out;

    display: flex;
    flex-direction: row;
}

.services__service:hover {
    background-color: var(--color-bg-services);
}

.service__container-img {
    margin-right: 2.5rem;
    max-width: 8.5rem;
}

.service_content {
    flex: 1;
}

.service__title {
    color: var(--color-title);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3rem;
    transition: all 300ms ease-in-out;
}

.service__description {
    font-size: 1.7rem;
    overflow: hidden;
    margin-bottom: 4rem;
}

.service__more {
    font-size: 1.7rem;
    position: relative;
    display: inline-block;
    font-weight: 500;
    padding-left: 5rem;
    transition: all 300ms ease-in-out;
}

.service__more::before {
    content: "";
    width: 3.4rem;
    height: 1.5px;
    background-color: var(--color-text-body);
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 300ms ease-in-out;
}

.service__more:hover,
.service__title:hover {
    color: var(--color-primary);
}

.service__more:hover::before {
    background-color: var(--color-primary);
}

.services__service--bottom {
    margin-top: 20rem;
}

.services__service--middle {
    margin-top: 10rem;
}

.services__service--top {
    margin-top: 0rem;
}

.service-shapes__item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.service-shapes--shape1 {
    top: -7%;
    right: 7%;
}

.service-shapes--shape2 {
    top: 10%;
    left: 52%;
}

.service-shapes--shape3 {
    top: 34%;
    left: 5%;
}

.layout__projects {
    position: relative;
    background-color: var(--color-bg-projects);
    padding: 14rem 6rem;
    z-index: 1;
}

.project__grid {
    max-width: var(--max-width);
    margin: 0 auto;
}

projects__header {
    margin-bottom: 4rem;
}

.projects__subtitle {
    text-transform: capitalize;
}

.projects__categories {
    display: flex;
    flex-direction: row;
    gap: 7rem;
    margin-bottom: 5.5rem;
}

.categories__item {
    position: relative;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    padding: .8rem 0;
    transition: all 150ms ease-in-out;
}

.categories__item--active,
.categories__item:hover {
    border-bottom: 3px solid var(--color-primary);
}

.projects__all {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem 7rem;
}

.projects__project {
    width: calc(50% - 3.5rem);
}

.project__container-img {
    width: 100%;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.project__img {
    width: 100%;
    transition: all 800ms ease-in-out;
}

.projects__project:hover .project__img {
    transform: scale(1.2);
}

.project__content {
    padding: 4rem 5rem;
    background-color: var(--color-secondary);
    border-radius: 0 0 30px 30px;
}

.project__title {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-title);
    margin-bottom: 1rem;
    transition: all 300ms ease-in-out;
}

.project__title:hover {
    color: var(--color-banner);
}

.project__tags {
    font-size: 1.7rem;
}

.project-shapes__item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.project-shapes--shape1 {
    top: 4%;
    right: 11%;
}

.project-shapes--shape2 {
    top: 8%;
    right: 35%;
}

.project-shapes--shape3 {
    top: 38%;
    left: 5%;
}

.layout__reviews {
    position: relative;
    z-index: 1;
    padding-top: 14rem;
    padding-bottom: 11rem;
}

.reviews__grid {
    max-width: var(--max-width);
    margin: 0 auto;
}

.reviews__header {
    text-align: left;
    margin-bottom: 6rem
}

.reviews__description {
    margin: 3rem 0;
    width: 50%;
    font-size: 2rem;
}

.reviews__container {
    display: flex;
    gap: 3rem;
}

.reviews__review {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.review__company {
    display: inline-block;
    margin-bottom: 3rem;
}

.review__description {
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--color-bg-dark);
    margin-bottom: 4rem;
}

.review__author {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
}

.author__container-img {
    border-radius: 3.5rem;
    overflow: hidden;
}

.author__content {
    flex: 1;
}

.author__name {
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--color-text-body);
    margin-bottom: .3rem;
}

.author__description {
    display: block;
    font-size: 1.4rem;
    color: var(--color-text-description);
    opacity: .7;
}

.review-shapes__item {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 16%;
    right: 26%;
}

.layout__clients {
    background-color: var(--color-bg-dark);
    padding: 12rem 10rem;
    position: relative;
    z-index: 1;
}

.clients__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.clients__title {
    font-size: 6.4rem;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    width: 50%;
    line-height: 1.2;
    font-weight: 500;
}

.clients__description {
    font-size: 2rem;
    margin: 0;
    color: var(--color-text-description);
    width: 40%;
    text-align: left;
    margin-bottom: 6rem;
}

.clients__header {
    text-align: left;
}

.clients__logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
}

.clients__item {
    width: calc(25% - 3rem);
}

.clients__img {
    filter: grayscale(100%);
    opacity: .3;
    transition: all 300ms ease-in-out;
}

.clients__item:hover > .clients__img {
    filter: grayscale(0);
    opacity: 1;
    cursor: pointer;
}

.client-shapes__item {
    position: absolute;
    z-index: -1;
    top: 10rem;
    right: 0;
}

.layout__contact {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0;
    padding-top: 14rem;
    padding-bottom: 10rem;
}

.layout__contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 65rem;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    z-index: -1;
}

.contact__container {
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
}

.contact__header {
    margin-bottom: 6.5rem;
    text-align: center;
}

.contact__subtitle {
    display: inline-block;
    color: var(--color-bg-btn);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.contact__title {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 5.5rem;
    font-size: 6.4rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-secondary);
}

.contact__btn {
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 2.3rem 5.5rem;
    background-color: var(--color-secondary);
    border-radius: 20px;
    font-weight: 500;
    text-align: center;
    transition: all 300ms ease-in-out;
}

.contact__btn:hover {
    background-color: var(--color-bg-btn);
}

.contact__images {
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--color-borders);
}

.contact__thumb {
    display: inline-block;
    position: relative;
}

.contact__thumb--chat {
    margin-right: -18rem;
    margin-bottom: -.8rem;
}

.contact__thumb--laptop {
    position: absolute;
    bottom: 0;
    left: 16rem;
}

.contact__thumb--mobile {
    position: absolute;
    bottom: 0;
    right: 8rem;
}

.backshapes__item {
    position: absolute;
    z-index: -1;
}

.backshapes--shape1 {
    top: 0;
    left: 32%;
}

.backshapes--shape2 {
    top: 18rem;
    left: 18%;
    opacity: .5;
    animation: moveShape3 20s infinite;
}

.backshapes--shape3 {
    top: 31%;
    left: 20%;
    animation: moveShape4 25s infinite;
}

.backshapes--shape4 {
    top: 44%;
    left: 28%;
    animation: moveShape3 25s infinite;
}

.backshapes--shape5 {
    top: 50%;
    right: 17%;
    animation: moveShape4 30s infinite;
}

.backshapes--shape6 {
    top: 26%;
    right: 21%;
    animation: moveShape5 30s infinite;
}

.backshapes--shape7 {
    top: 30%;
    right: 15%;
    animation: moveShape3 30s infinite;
}

.layout__footer {
    padding-top: 1rem;
}

.footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer__top {
    padding-bottom: 7rem;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.social__img {
    display: inline-block;
    color: var(--color-text-description);
    font-size: 3rem;
    padding: .5rem;
    transition: all 300ms ease-in-out;
}

.social__link:hover > .social__img {
    color: var(--color-text-body);
}

.footer__main {
    display: flex;
    flex-direction: row;
}

.footer__fleft {
    flex-basis: 50%;
}

.fleft__container {
    border-right: 1px solid var(--color-borders);
    padding-right: 8rem;
    margin-right: 4rem;
    margin-bottom: 8rem;
}

.fleft__title {
    display: inline-block;
    font-size: 6.4rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-title);
    margin-bottom: 2rem;
}

.fleft__subtitle {
    font-size: 1.7rem;
    margin-bottom: 4rem;
}

.fleft__group {
    position: relative;
    width: 100%;
    background-color: var(--color-secondary);
    border-radius: 20px;
    height: 7.2rem;
    padding: 1rem;
    box-shadow: 0 24px 48px -15px #ddd;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleft__mail-icon {
    display: inline-block;
    margin-left: 2rem;
}

.fleft__form-control {
    position: relative;
    display: block;
    padding: .5rem 1.5rem;
    height: auto;
    border: none;
    outline: none;
    color: var(--color-title);
    margin-left: 1rem;
    flex: 1;
}

.fleft__btn {
    height: 5.2rem;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 16px;
    padding: 1.4rem 3rem;
    transition: all 300ms ease-in-out;
}

.fleft__btn:hover {
    background-color: var(--color-banner);

}

.footer__firght {
    display: flex;
    flex-direction: row;
    flex-basis: 50%;
}

.footer__widget {
    margin-bottom: 8rem;
}

.footer__widget--50 {
    flex-basis: 50%;
}

.footer__widget--25 {
    flex-basis: 25%;
}

.widget__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-title);
    margin-bottom: 3rem;
}

.widget__link {
    color: var(--color-text-description);
    font-size: 1.8rem;
    padding: .8rem 0;
    display: inline-block;
    transition: all 300ms linear;
}

.widget__link:hover {
    color: var(--color-banner);
}

.footer__bottom {
    font-size: 1.8rem;
    border-top: 1px solid var(--color-borders);
    padding: 2.5rem 0;
    display: flex;
}

.footer__copyright {
    flex-basis: 50%;
}

.copyright__text {
    display: inline-block;
    color: var(--color-text-description);
}

.copyright__text > a {
    display: inline;
}

.footer__links {
    flex-basis: 50%;
}

.footer__flinks {
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 3.5rem;
    color: var(--color-text-description);
}

.flinks__title {
    transition: all 300ms ease-in-out;
}

.flinks__title:hover {
    color: var(--color-banner);
}

.flinks__item {
    display: inline-block;
    position: relative;
}

.flinks__item--separator::after {
    content: '';
    height: 4px;
    width: 4px;
    background-color: var(--color-text-description);
    border-radius: 50%;
    position: absolute;
    top: 46%;
    right: -12%;
}

.mobile-btn__wrap {
    height: 5rem;
    width: 5rem;
    background-color: var(--color-text-body);
    border: none;
    border-radius: 3.2rem;
    transition: all 300ms ease-in-out;
    cursor: pointer;    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.navbar__mobile-btn {
    display: none;
}

.mobile-btn__line {
    width: 2rem;
    height: .2rem;
    background-color: var(--color-secondary);
    margin-bottom: .4rem;
    border-radius: 1rem;
    transition: all 300ms ease-in-out;
}

.mobile-btn__line:last-child {
    width: 1rem;
    margin-bottom: 0;
    margin-right: -1rem;
}

.menu-mobile {
    visibility: hidden;
    opacity: 0;

    position: fixed;
    top: 0;
    left: -300px;
    z-index: 10;
    width: 30rem;
    height: 100%;
    background-color: var(--color-secondary);
    padding: 5rem 1rem;
    padding-top: 0;
    box-shadow: 0px 0px 85px -35px rgba(0, 0, 0, .5);
    overflow-y: auto;
    transition: all 500ms cubic-bezier(.77, .2, .05, 1);
}

.menu-mobile--show {
    visibility: visible;
    opacity: 1;
    left: 0;
}

.menu-mobile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0rem 1rem;
    padding: 2rem 0rem;
    border-color: 1px solid var(--color-text-body);
}

.menu-mobile__container-logo {
    width: 15rem;
}

.menu-mobile__btn-close {
    background-color: transparent;
    height: 3rem;
    width: 3rem;
    border: 2px solid var(--color-text-description);
    border-radius: 1rem;
    color: var(--color-text-body);
    font-size: 1.6rem;
    cursor: pointer;
}

.menu-mobile__list {
    display: block;
    height: 100%;
    overflow: auto;
}

.menu-mobile__item {
    position: relative;
    border-bottom: 1px solid var(--color-borders);
    margin: 0 1rem;
}

.menu-mobile__link {
    position: relative;
    height: 5rem;
    line-height: 5rem;
    color: var(--color-text-body);
    font-weight: 500;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-mobile__icon {
    font-size: 1.4rem;
}

.menu-mobile__submenu-mobile {
    display: none;
    visibility: visible;
    opacity: 1;

    min-width: 100%;
    padding: 0;
    padding-bottom: 1rem;
}

.submenu-mobile__link {
    display: block;
    text-decoration: none;
    position: relative;
    padding: .7rem 1rem;
    font-size: 1.5rem;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--color-text-body);
}


.switcher {
    position: fixed;
    top: 20rem;
    left: 0;
    background-color: var(--color-primary);
    border-radius: 0 3rem 3rem 0;
    padding: 1rem;
    z-index: 5;
}

.switcher__btn {
    cursor: pointer;
    background-color: transparent;
    border: none;
    display: flex;
}

.switcher__icon-light,
.switcher__icon-dark {
    color: var(--color-secondary);
    font-size: 1.8rem;
    height: 4rem;
    width: 4rem;
    line-height: 3.6rem;
}

.switcher__icon-dark {
    display: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
}

/* PAGINA Desarrollo y diseno web */
.contenedor {
    padding-top: 1rem;
    width:100%;
    max-width: 1600px;
    margin: auto;
}

.contenedor-bg {
    background-image: url(../img/ondas.png), linear-gradient(237deg, var(--color-banner) 0%, var(--color-primary) 100%);
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 850px;
}

.contenedor-inicio {
    display: flex;
    justify-content: center;
    margin: 9vh 0;
}

.titular,
.imagen {
    width: 40%;
}

.contenedor h1 {
    font-size: 52px;
    color: #fff;
    text-shadow: 1px 2px 50px #000;
}

.contenedor p {
    color: #fff;
    line-height: 30px;
}

.contenedor img {
    width: 100%;
}

.boton {
    background: var(--color-bg-dark);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0px 20px 30px 0 rgba(0, 0, 0, .2);
    margin-top: 20px;
    display: inline-block;
}

#services {
    padding-top: 80px;
    padding-bottom: 80px;
}

#services .contenedor {
    display: flex;
    justify-content: space-around;
}

#services .titular {
    width: 49%;
}

#services .service {
    width: 25%;
    background-color: #fff;
    box-shadow: 0px 90px 160px 0px rgba(0, 0, 0, .1);
    border-radius: 24px 24px 24px 24px;
    padding: 20px 30px;
}

#services h2, #pricing h2 {
    font-weight: 500;
    font-size: 14px;
    color: #ff8f00;
    letter-spacing: 1px;
}

#services h3, #pricing h3 {
    font-weight: 500;
    font-size: 38px;
}

#services .boton {
    background: var(--color-primary);
    padding: 15px 38px;
    letter-spacing: 1px;
} 

.service h4 {
    font-size: 23px;
    font-weight: normal;
}

.service p {
    color: #787878;
    font-size: 15px;
    line-height: 32px;
}

.service a {
    color: #2970fa;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 13px;
}

.contenedor-services-2 {
    margin-top: 60px;
}

.contenedor-services-2 #dos {
    position: relative;
    top: -200px;
}

#services #uno {
    margin-left: 152px;
}

.service img {
    width: 20%;
}

#pricing {
    padding-top: 90px;
    padding-bottom: 126px;
}

#pricing h2, #pricing h3 {
    text-align: center;
    margin: 0;
}

#pricing h3 {
    font-weight: bold;
}

.contenedor-precios {
    display: flex;
    justify-content: space-around;
    padding-inline: 5rem;
}

#pricing .tabla {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0px 90px 160px 0px rgb(0, 0, 0, .1);
    padding: 20px 59px;
}

#pricing ul {
    padding: 0;
}

#pricing .tabla li:nth-child(1) {
    color: #ff8f00;
    list-style: none;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    margin-left: -21px;
}

#pricing .tabla .dolar {
    position: absolute;
    color: #999;
    font-size: 18px;
}

#pricing .tabla .numero {
    font-weight: bold;
    font-size: 50px;
    margin-left: 14px;
}

#pricing .mes {
    color: #999;
}

#pricing .tabla li:nth-child(2) {
    list-style: none;
    margin-bottom: 18px;
    margin-left: -21px;
}

#pricing #one a {
     color: #ff8f00;
     background: rgba(255, 143, 0, .1);
}

#pricing #two li:nth-child(1) {
    color: #296ffa;
}

#pricing #three li:nth-child(1) {
    color: #2acf8d;
}

#pricing #three a {
    color: #29cf8d;
    background: rgba(41, 207, 141, .1);
}

#pricing #two a {
    color: #fff;
    background: #296ffa;
}

#pricing hr {
    left: 0;
    width: 100%;
    border-color: #2423230d;
}

#treinta {
    background-image: url(../img/30.png), linear-gradient(237deg, var(--color-banner) 0%, var(--color-primary) 100%);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 310px 0 155px 0;
    text-align: center;
}

#treinta h2 {
    font-size: 52px;
    color: #fff;
    text-shadow: 1px 2px 13px #61605d;
    width: 50%;
    margin: auto;
}

#treinta p {
    width: 58%;
    margin: auto;
    margin-top: 30px;
    line-height: 30px;
}

#treinta .boton {
    padding: 15px 50px;
    letter-spacing: 1px;
}

#expert {
    padding: 178px 0;
    background-image: url(../img/expert4.png), linear-gradient(150deg, var(--color-banner) 0%, var(--color-primary) 100%);
    background-size: 1601px 975px;
    background-position: 50% 50%;
    text-align: center;
}

#expert h2 {
    font-size: 52px;
    color: #fff;
    text-shadow: 1px 2px 13px #61605d;
    width: 50%;
    margin: auto;
}

#expert p {
    width: 50%;
    margin: auto;
    color: #fff;
    margin-top: 30px;
}

.popup {
    z-index: 50;
    position: fixed;
    top: 20%;
    left: 36%;
    width: 500px;
    height: 180px;
    background: #fff;
    box-shadow: 1px 1px 7px #000;
}

.popup p {
    margin-top: 25px;
    text-align: center;
    color: #000;
    font-weight: bold;
    font-size: 20px;
}

.popup a {
    display: block;
    width: 166px;
    margin: auto;
    margin-top: 30px;
    background: var(--color-primary);
    padding: 15px;
    font-size: 15px;
}

.popup .cerrar {
    position: absolute;
    top: -26px;
    right: 0;
    color: #fff;
    background: var(--color-banner);
    width: 30px;
    cursor: pointer;
}

@media screen and (max-width: 770px) {
    .popup {
        top: 30%;
        left: 25%;
        width: 400px;
    }
}



@media screen and (max-width: 480px) {
    .contenedor-inicio {
        margin-left: 20px;
        flex-direction: column;
        margin: 14vh 2;
    }

    .titular, .imagen {
        width: 100%;
    }

    .contenedor-inicio h1 {
        font-size: 38px;
    }

    #services .contenedor  {
        flex-direction: column;
    }

    #services .titular {
        width: 100%;
        padding-left: 10px;
    }

    #services h3, #pricing h3 {
        font-weight: 500;
        font-size: 24px;
    }

    #uno {
        margin-left: 0 !important;
        margin-top: 40px;
    }

    #services .service {
        width: 81%;
    }

    .contenedor-services-2 #dos {
        position: relative;
        top: 57px;
    }

    #service-cuatro {
        margin-top: 104px;
    }

    .contenedor-precios {
        flex-direction: column;
    }

    #pricing .tabla {
        width: 80%;
        margin-bottom: 50px;
        padding-left: 25px;
    }

    #expert {
        padding: 146px 0;
        background-size: 600px 1085px;
    }

    #expert h2 {
        font-size: 30px;
        width: 100%;
    }

    #expert p {
        width: 100%;
    }

    #treinta h2 {
        font-size: 28px;
        width: 100%;
    }

    #treinta p {
        width: 100%;
    }

    #treinta {
        padding: 110px 0 55px 0;
    }

    .popup {
        top: 20%;
        left: 12%;
        width: 300px;
    }
}

.portfolio {
    padding: 4rem;
    background-color: var(--color-secondary);
}

.portfolio-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
}

.portfolio-item {
    width: calc(90%/2);
    background-color: var(--color-bg-projects);
    border-radius: 1rem;
    border: .1rem solid transparent;
    padding: 2rem;
    box-shadow: 0 0 .5rem var(--color-primary);
    transition: all .5s ease;
}

.portfolio-item:hover {
    outline: .1rem solid var(--color-primary);
    cursor: pointer;
    transform: translateY(-.5rem) scale(1.02);
}

.portfolio-item img {
    display: inline-block;
    height: auto;
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.portfolio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem;
}

.portfolio-header h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.portfolio-header a {
    display: inline-flex;
    font-size: 2.5rem;
    border-radius: 50%;
    padding: .5rem;
    color: var(--color-bg-projects);
    background-color: var(--color-primary);
    transition: .3s ease;
}

.portfolio-header a:hover {
    color: var(--color-primary);
    background-color: var(--color-bg-projects);
}

.portfolio-item p {
    margin-bottom: 2rem;
}