@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&display=swap');


:root{

  --hue: 120;
  
  --first-color: hsl(var(--hue), 80%, 49%);
  --first-color-alt: hsl(var(--hue), 76%, 45%);
  --white-color: #000;
  --black-color: hsl(0, 0%, 98%);
  --text-color: #090c13;
  --body-color1: hsl(var(--hue), 2%, 66%);
  --body-color: #f6f6f9;
  --container-color1: hsl(var(--hue), 2%, 5%);
  --container-color: #fff;
  --conic-gradient: conic-gradient(from 150deg at 50% 45%,
                  hsl(var(--hue), 80%, 20%) 0deg,
                  hsl(var(--hue), 95%, 48%) 140deg,
                  hsl(var(--hue), 80%, 20%) 360deg);
    --conic-gradient1: #eb00ff;
    --color-light: rgba(132, 139, 200, 0.18);
    --box-shadow: 0 2rem 3rem var(--color-light);

    /*font*/

            --body-font: "Montserrat Alternates", sans-serif;
        --second-font: "Grechen Fuemen", cursive;
        --biggest-font-size: 2.5rem;
        --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-regular: 400;
        --font-medium: 500;
        --font-semi-bold: 600;

        /*========== z index ==========*/
        --z-tooltip: 10;
        --z-fixed: 100;
            --white-color:#fff;

    /* background-color: black;
    --black-color:black;
    --first-color:red;
    --container-color:gray;
    --conic-gradient:red; */
}

@media screen and (min-width: 1168px) {
  :root {
    --biggest-font-size: 3.5rem;
    --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;
  }
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html{
    scroll-behavior: smooth;
}

body,
input,
textarea,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--white-color);
}

input,
button,
textarea {
  border: none;
  outline: none;
}

h1, h2, h3, h4 {
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}
ul{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    display: block;
    max-width: 100%;
    height: auto;
}

.inactive{
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.container{
    max-width: 1168px;
    margin-inline: 1.5rem;
}

.grid{
    display: grid;
    gap: 1.5rem;
}


.section {
    padding-block: 2rem 3rem;
}

.section__title{
    text-align: center;
    margin-bottom: 2rem;
}

.main{
    overflow: hidden;
}



.nav{
    position: fixed;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    background-color: #fff;
    width: 88%;
    margin-inline: auto;
    backdrop-filter: blur(16px);
    --webkit-backdrop-filter: blur(16px);
    padding: 1rem 2rem;
    border-radius: 4rem;
    z-index: var(--z-fixed);
    box-shadow: var(--box-shadow);

}

.nav__list{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__link{
    width:2.5rem;
    height: 2.5rem;
    background-color: transparent;
    color: var(--first-color);
    font-size: 1.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background-color .6s;
}

/* Active link */
.active-link{
    background-color: var(--first-color);
    color: #fff;
}


/* Home */

/*perfil*/

.perfil{
    position: relative;
    background: var(--conic-gradient);
    height: 415px;
    border-radius: 2rem;
    padding: 1.5rem;
    display: grid;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.perfil__img{

    width: 950px;
    position: absolute;
    justify-self: center;
    align-self: flex-start;

}

.perfil__data{
    align-self: flex-end;
    text-align: center;
    background-color: hsla(0, 0%, 1%, .1);
    backdrop-filter: blur(16px);
    --webkit-backdrop-filter:blur(16px);
    padding: 1rem 1rem;
    border-radius: 1.5rem;
    border: 2px solid hsla(0, 0%, 100%, .5);
}

.perfil__name{
    font: var(--font-regular) var(--biggest-font-size) var(--second-font);
    margin-bottom: 5px;
    color: #fff;
}

.profil__para{
    font-size: 20px;
    padding-bottom: 1rem;
    color: #fff;
    font-weight: bold;
}

.perfil__buttons{
    display: grid;
    column-gap: .5rem;
    grid-template-columns: repeat(2, 1fr);
}

.perfil__buttons .button{

    padding: .75rem 0;
}

/* info */

.info,
.about,
.skills{
    background-color: var(--container-color);
    padding: 2rem 1.5rem;
    border-radius: 2rem;
    box-shadow: var(--box-shadow);
}

.info__circle{
    width: 2rem;
    height: 2rem;
    background-color: var(--first-color);
    border-radius: 50%;
}

.info__name{
	color: var(--first-color);
    font: var(--font-regular) var(--h1-font-size) var(--second-font);
}

.info__data{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
}

.info__image{
    background: var(--conic-gradient);
    height: 180px;
    border-radius: 2rem;
    display: grid;
    margin-block: 1.5rem;
    overflow: hidden;

}

.info__img{
    width: 190px;
    justify-self: center;
    margin: auto;
}

.info__description{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: .75rem;
    color: #000;
    padding-left: 3px;
}

.info .button{
    width: 100%;
}

/* about */

.about__name{
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
    color: var(--first-color);
}
.about__description{
    font-size: 14px;
    color: #000;
}

.about__social{
    display: flex;
    justify-content: center;
    column-gap: 1.5rem;
    margin-block: 2rem;
}

.about__link {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--black-color);
    border: 2px solid var(--first-color);
    font-size: 1.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background-color .4s, color .4s;
}

/* Default icon color */
.about__link .tele {
    color: #3B82F6; /* Telegram blue */
    transition: color .4s;
}

.about__link .wa {
    color: var(--first-color); /* Telegram blue */
    transition: color .4s;
}

.about__link .mail {
    color: #eb00ff; /* Telegram blue */
    transition: color .4s;
}

/* Hover effect (FIXED) */
.about__link:hover {
    background-color: var(--first-color);
}

/* Change icon color when parent is hovered */
.about__link:hover .tele,
.about__link:hover .wa,
.about__link:hover .mail {
    color: var(--white-color);
}

.about__image{
    background: var(--conic-gradient);
    height: 180px;
    border-radius: 2rem;
    display: grid;
    overflow: hidden;
}

.about__img{
    width: 260px;
    justify-self: center;
    transform: translateY(0.5rem);
}

.about__note{
    font-size: 14px;
    font-weight: bold;
    margin-block: 1rem 2rem;
    color: #000;
}

.about .button{
    width: 100%;
}

/* skills */

.skills__title{
    font-size: var(--h2-font-size);
    color: var(--first-color);
}

.skills__item{
    width: 2rem;
    height: 2rem;
    background-color: var(--first-color);
    color: var(--white-color)
    font-size: 1.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform .4s;
}

.skills__item:hover{
    transform: translateY(-.25rem);
}

.skills__items{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-block: 1.5rem;
}

.skills__description{
    font-size: 14px;
    font-weight: bold;
    color: #000;
}



/* projects*/

.projects__card{
    background-color: var(--container-color);
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

.projects__image{
    display: block;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
}

.projects__img{
    transition: transform .4s;
}

.projects__name{
    text-align: center;
    font-size: var(--h3-font-size);
    margin-bottom: .5rem;
}

.projects__description{
    text-align: center;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.projects__data{
    text-align: center;
    margin: 1rem;
}

.projects__skill{
    width: 1rem;
    transition: transform .4s;
}

.projects__skill:hover{
    transform: translateY(-.25rem);
}

.projects__skills{
    width: max-content;
    height: 34px;
    background-color: var(--black-color);
    padding-inline: .75rem;
    display: flex;
    align-items: center;
    column-gap: .75rem;
    border-radius: 4rem;
    margin-bottom: 1.5rem;
}
.experience__button{
    display: inline-flex;
    margin-top: 10px; 
    background: var(--first-color); 
    padding: .75rem 0.75rem; 
    border-radius: 50px; 
    font-size: 13px; 
    color: var(--white-color);
    font-weight: bold;
    column-gap: .3rem;
    transition: background-color .4s;
}
.experience__button i{
    font-size: 14px; 
}
.experience__button span{
    font-weight: bold;
}
.experience__button:hover{
    background-color: var(--first-color-alt);
}

/*.projects__button{
    color: var(--first-color);
    font-weight: bold;
    display: inline-flex;..
    align-items: center;..
    column-gap: .3rem;
    transition: color .4s;

}

.projects__button i{
    font-size: 1.25rem;
}

.projects__button span{
    font-weight: var(--font-medium);
}

.projects__button:hover{
    color: #98fb98;
}*/

.projects__card:hover{
    box-shadow: none;
}
.projects__card:hover .projects__img{
    transform: scale(1.2);
}

/* 🔥 OUTER WRAPPER (spacing + fade container) */
.logo-wrapper {
    padding: 0 200px;
    background: var(--body-color);
    position: relative;
    overflow: hidden;
}

/* 🔥 FADE EFFECT (LEFT + RIGHT) */
.logo-wrapper::before,
.logo-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* LEFT FADE */
.logo-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--body-color), transparent);
}

/* RIGHT FADE */
.logo-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--body-color), transparent);
}

/* SLIDER */
.logo-slider {
    overflow: hidden;
}

/* TRACK */
.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
    gap: 80px;
    align-items: center;
}

/* LOGOS */
.logo-track img {
    width: 120px;
    opacity: 1;
    transition: 0.3s;
}

/* HOVER EFFECT */
.logo-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .logo-wrapper {
        padding: 0 20px;
    }

    .logo-track {
        gap: 40px;
        animation: scroll 15s linear infinite;
    }

    .logo-track img {
        width: 90px;
    }
}

/* price */

.card_content{
    position: relative;
    display: grid;
    background-color: var(--container-color);
    padding: 2rem 1.5rem 2.5rem;
    border-radius: 1.75rem;
    box-shadow: 0 12px 24px hsla(var(--hue), 61%, 16%, .1);
    transition: .4s;
}
.card_content:hover{
    box-shadow: 0 16px 24px hsla(var(--hue), 61%, 16%, .15);
    
}

.card_header-img{
    width: 42px;
    height: 42px;
    border-radius: 50%;
}
.card_header-circle{
    width: 50px;
    height: 50px;
    background-color: var(--first-color);
    border-radius: 50%;
    place-items: center;
}
.card_header-subtitle{
    padding-top: 5px;
    display: block;
    font-size: .960rem;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: .25rem;
    font-weight: bold;
}
.card_header-title{
    font-size: 2.0rem;;
    color: var(--first-color);
    margin-bottom: 1rem;
}
.card_pricing{
    position: absolute;
    background: linear-gradient(157deg, #004700 -12%, var(--first-color) 109%);
    width: 60px;
    height: 88px;
    right: 1.5rem;
    top: -1rem;
    padding-top: 1.25rem;
    text-align: center;
    border-bottom-left-radius: 45%;
    border-bottom-right-radius: 45%;
}
.card_pricing-number{
    font-size: 1.6rem;
    color: #fff;
    font-weight: bold;
}
.card_pricing-symbol{
    font-size: 1.035rem;
    color: #fff;
    font-weight: bold;
}
.card_pricing-month{
    display: block;
    font-size: 1.035rem;
    color: #fff;
    font-weight: bold;
}
.card_pricing::before{
    content: '';
    position: absolute;
}
.card_pricing::after{
    width: 100%;
    height: 14px;
    background-color: #fff;
    left: 0;
    bottom: 0;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.card_pricing::before{
    width: 14px;
    height: 16px;
    background-color: #c2dcff;
    top: 0;
    left: -14px;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.card_list{
    row-gap: .5rem;
    margin-bottom: 2rem;
}
.card_list-item{
    display: flex;
    align-items: center;
}
.card_list-icon{
    font-size: .75rem;
    color: var(--first-color);
    margin-right: 0.5rem;
}
.card_list-description{
    font-size: 13px;
    font-weight: bold;
    color: var(--text-color);
}
.card_button{
    padding: 1rem;
    border: none;
    font-size: 1rem;
    border-radius: .5rem;
    /*background: linear-gradient(157deg, var(--first-color-light) -12%, var(--title-color) 109%);
    */
    background: linear-gradient(157deg, #004700 -12%, var(--first-color) 109%);
    width: 100%;
    color: #fff;
    cursor: pointer;
    transition: .4s;
}
.card_button:hover{
    box-shadow: 0 12px 24px hsla(var(--hue), 97%, 54%, .2);
}
/*package*/
/*.card{
    padding: 3rem 0;
}
.card_container{
    gap: 2.5rem 3rem;
    margin-top: 30px;
    /*grid-template-columns: repeat(2, 1fr);*/
/*}
.card_content{
    position: relative;
    display: grid;
    background-color: var(--container-color);
    padding: 2rem 1.5rem 2.5rem;
    border-radius: 1.75rem;
    box-shadow: 0 12px 24px hsla(var(--hue), 61%, 16%, .1);
    transition: .4s;
}
.card_content:hover{
    box-shadow: 0 16px 24px hsla(var(--hue), 61%, 16%, .15);
    
}
.card_header-img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.card_header-circle{
    width: 40px;
    height: 40px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    margin-bottom: var(--mb-1-25);
    place-items: center;
}
.card_header-subtitle{
    padding-top: 5px;
    display: block;
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
    text-transform: uppercase;
    margin-bottom: var(--mb-0-25);
}
.card_header-title{
    font-size: var(--big-font-size1);
    color: var(--title-color);
    margin-bottom: var(--mb-1);
}
.card_pricing{
    position: absolute;
    background: linear-gradient(157deg, var(--title-color) -12%, var(--first-color) 109%);
    width: 60px;
    height: 88px;
    right: 1.5rem;
    top: -1rem;
    padding-top: 1.25rem;
    text-align: center;
    border-bottom-left-radius: 45%;
    border-bottom-right-radius: 45%;
}
.card_pricing-number{
    font-size: var(--h2-font-size);
    color: #fff;
    font-weight: bold;
}
.card_pricing-symbol{
    font-size: var(--small-font-size);
    color: #fff;
    font-weight: bold;
}
.card_pricing-month{
    display: block;
    font-size: var(--small-font-size);
    color: #fff;
    font-weight: bold;
}
.card_pricing::before{
    content: '';
    position: absolute;
}
.card_pricing::after{
    width: 100%;
    height: 14px;
    background-color: #fff;
    left: 0;
    bottom: 0;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.card_pricing::before{
    width: 14px;
    height: 16px;
    background-color: var(--first-color-alt);
    top: 0;
    left: -14px;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.card_list{
    row-gap: .5rem;
    margin-bottom: var(--mb-2);
}
.card_list-item{
    display: flex;
    align-items: center;
}
.card_list-icon{
    font-size: .75rem;
    color: var(--first-color);
    margin-right: var(--mb-0-5);
}
.card_list-description{
    font-size: .95rem;
    font-weight: var(--font-semi-bold);
}
.card_button{
    padding: 1rem;
    border: none;
    font-size: var(--normal-font-size);
    border-radius: .5rem;
    /*background: linear-gradient(157deg, var(--first-color-light) -12%, var(--title-color) 109%);
    */
    /*background: linear-gradient(157deg, var(--title-color) -12%, var(--first-color) 109%);
    width: 100%;
    color: #fff;
    cursor: pointer;
    transition: .4s;
}
.card_button:hover{
    box-shadow: 0 12px 24px hsla(var(--hue), 97%, 54%, .2);
}

/* services */

.services__card{
    background-color: var(--container-color);
    padding: 4rem 1.5rem 3.5rem 1.5rem;
    border-radius: 2rem;
}

.services__icon{
    display: inline-block;
    position: relative;
    margin-bottom: 2rem;
}

.services__icon i{
    font-size: 2.5rem;
    position: relative;
    z-index: var(--z-tooltip);
}

.services__circle{
    width: 3rem;
    height: 3rem;
    background-color: var(--first-color);
    border-radius: 50%;
    position: absolute;
    top: -1rem;
    right: -1rem;
    transition: transform .4s;
}

.service__name{
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
}

.services__description{
    color: var(--text-color);
}

.services__card:hover .services__circle{
    transform: translate(.25rem, -.25rem);
}

/* experience*/

.experience__container{
    row-gap: 2rem;
}

.experience__card{
    display: grid;
    row-gap: 1rem;

}
.experience__container1{
    row-gap: 2rem;
}

.experience__card1{
    display: grid;
    row-gap: 1rem;

}

.experience__company{
    font-size: var(--h2-font-size);
}

.experience__data{
    background-color: var(--container-color);
    padding: 1rem;
    border-radius: 1.5rem;
}

.experience__profession{
    font-size: var(--h2-font-size);
    margin-bottom: .5rem;
}

.experience__date{
    display: block;
    font-size: var(--smaller-font-size);
    margin-bottom: 1rem;
}

.experience__description{
    color: var(--text-color);
    font-size: 13px;
}

.business_img{
    border-radius: 20px;
    margin: auto;
}

/* Contact */

.contact__container{
    row-gap: 2rem;
    align-items: center;
}
.contact_img{
    width: 600px;
    justify-self: center;
}

.contact__group,
.contact__form{
    gap: 1rem;
}

.contact__form{
    position: relative;
}

.contact__input{
    background-color: var(--container-color);
    padding: 1.25rem;
    border-radius: 4rem;
    color: var(--white-color);
}

.contact__input::placeholder{
    color: var(--text-color);
}

.contact__input::autofill{
    transition: background-color 6000s, color 6000s;
}

.contact__area{
    height: 10rem;
    border-radius: 1.5rem;
    resize: none;
}

.contact__button{
    margin-top: 1.5rem;
    cursor: pointer;
}

.contact__message{
    position: absolute;
    left: 0;
    bottom: 4.5rem;
    font-size: var(--small-font-size);
}

/* footer */
.footer{
    padding-block: 2rem 8rem;
}

.footer__container{
    row-gap: 2.5rem;
}

.footer__logo{
    color: var(--first-color);
    font: var(--font-regular) var(--biggest-font-size) var(--second-font);
    justify-self: center;
}

.footer__links{
    display: flex;
    justify-content: center;
    column-gap: 2rem;
}

.footer__link{
    color: var(--first-color);
    transition: color .4s;
}

.footer__link:hover{
    color: var(--text-color);
}

.footer__social{
    display: flex;
    justify-content: center;
    column-gap: 1.5rem;
}

.footer__social-link{
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--first-color);
    color: var(--white-color);
    font-size: 1.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background-color .4s, color .4s;

}

.footer__social-link:hover{
    background-color: var(--white-color);
    color: var(--first-color);
}

.footer-img{
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.footer-img img{
    width: 120px;
}


.footer__copy{
    display: block;
    margin-top: 3.5rem;
    text-align: center;
    font-size: var(--small-font-size);
    color: var(--text-color);
}
.terms_link{
    color: var(--text-color);
    text-decoration: underline;
}
.terms_link:hover{
    text-decoration: none;
}

::-webkit-scrollbar{
    width: .6rem;
    background-color: hsl(0, 0%, 20%);
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb{
    background-color: hsl(0, 0%, 30%);
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover{
    background-color: hsl(0, 0%, 40%);
    
}

.scrollup{
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: #fff;
    color: var(--first-color);
    display: inline-flex;
    padding: 6px;
    columns: var(--white-color);
    font-size: 1.25rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: .5rem;
    z-index: var(--z-tooltip);
    transition: bottom .4s, transform .4s;
    box-shadow: var(--box-shadow);
}

.scrollup:hover{
    transform: translateY(-.5rem);
}

.show-scroll{
    bottom: 8rem;
}
.button{
    display: inline-flex;
    justify-content: center;
    background-color: var(--first-color);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    padding: 1rem 2.5rem;
    border-radius: 4rem;
    transition: background-color .4s;
}

.button__black{
    background-color: #000;
}

.button:hover{
    background-color: var(--first-color-alt);
}


/*Breakpoints*/

/*small devices*/
@media screen and (max-width: 320px) {
    .container{
        margin-inline: 1rem;
    }

    .nav{
        padding: 1rem;
    }


    
}


/*medium devices*/

@media screen and (min-width: 540px){
    .nav{
        width: max-content;
    }

    .nav__list{
        column-gap: 1.25rem;
    }

    .business_img{
        width: 950px;
    }

    .home__container,
    .projects__container,
    .services__container,
    .experience__container,
    .contact__container{
        grid-template-columns: 380px;
        justify-content: center;
    }
    .projects__container1{
        grid-template-columns: 320px;
        justify-content: center;
    }
    .experience__container1{
        justify-content: center;
    }

}

@media screen and (min-width: 768px){
    .home__container{
        grid-template-columns: repeat(2, 350px);
        align-items: flex-start;
    }

    .perfil{
        height: 100%;
    }

    .projects__container,
    .services__container{
        grid-template-columns: repeat(2, 350px);
    }

    .projects__container1{
        grid-template-columns: repeat(2, 320px);
        margin-left: 40%;
    }

    .experience__container{
        grid-template-columns: initial;
    }
    
    .experience__card{
        grid-template-columns: 320px 380px;
    }
    .experience__card1{
        grid-template-columns: 380px 380px;
    }

    .footer__container,
    .footer__content{
        grid-template-columns: repeat(2, max-content);
        align-items: center;
    }

    .footer__container{
        justify-content: space-between;
    }

    .footer__content{
        column-gap: 4.5rem;
    }


    .show-scroll{
        bottom: 3rem;
    }   
}

/*Large device*/
@media screen and (min-width: 1200px) {

    .container{
        margin-inline: auto;
    }

    .section{
        padding-block: 3rem 4rem;
    }

    .section__title{
        font-size: var(--h1-font-size);
        margin-bottom: 4rem;
    }

    .home__container{
        grid-template-columns: 280px 560px 280px;
        align-items: stretch;
    }

    .perfil{
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        padding: 2rem;
    }

    .perfil__img{
        width: 600px;
    }

    .info{
        grid-column: 1 / 2;
        grid-row: 1 /2;
    }

    .about{
        grid-column: 3 /4;
        grid-row: 1 / 3;
        align-content: center;
    }

    .about__image{
        gap: 210px;
    }

    .about__img{
        transform: translateY(1.2rem);
        width: 290px;
    }

    .skills{
        grid-column: 1 /2;
        grid-row: 2 / 3;
    }

    .skills__title{
        font-size: var(--h3-font-size);
    }

    .projects__container{
        grid-template-columns: repeat(3, 300px);
        gap: 2.5rem;
    }

    .projects__container1{
        grid-template-columns: repeat(3, 320px);
        gap: 2rem;
    }

    .projects__card{
        padding-bottom: 2rem;
    }

    .services__container{
        grid-template-columns: repeat(3, 368px);
        gap: 2rem;
    }

    .services__card{
        padding-block: 6rem 5rem;
    }

    .services__icon i{
        font-size: 3.5rem;
    }

    .services__circle{
        width: 4rem;
        height: 4rem;
        right: -1.5rem;
        top: -1.5rem;
    }

   .experience__container{
    row-gap: 4rem;

   } 
   .experience__container1{
    row-gap: 4rem;

   } 

   .experience__card{
    grid-template-columns: 300px 530px;
    column-gap: 6rem;
   }
   .experience__card1{
    grid-template-columns: 550px 510px;
    column-gap: 4rem;
   }

   .experience__company{
    font-size: var(--h1-font-size);
   }

   .experience__data{
    padding: 2rem;
    border-radius: 2rem;
   }

   .contact__container{
    grid-template-columns: 620px;
   }

   .contact__group{
    grid-template-columns: repeat(2 , 1fr);
   }

   .contact__area{
    height: 10rem;
   }

   .contact__button{
    width: max-content;
    justify-self: center;
   }

   .footer{
    padding-top: 3rem;
   }

   .footer__links{
    column-gap: 3rem;
   }

   .footer-img{
        justify-content: right;
    }
   .footer-img img{
        width: 150px;
   }

   .footer__copy{
    margin-top: 2rem;

   }
    
}

@media screen and (min-width: 1500px) {

    .nav{
        width: max-content;
        height: max-content;
        padding: 2rem 1rem;
        left: initial;
        right: 3rem;
        top: 0;
        bottom: 0;
        margin-block: auto;
    }

    .nav__list{
        flex-direction: column;
        row-gap: 1.25rem;
    }

    .footer{
        padding-block: 3rem;
    }

    .scrollup{
        right: 4rem;
    }
    
}
