/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*End of reset*/

body{
    font-family: "Inter", sans-serif;
    background-color: var(--background);
}
.container {
    max-width: 1420px;
    padding: 0 1.25rem;
}
.container-fluid {
    max-width: 1420px;
    padding: 0 20px;
}

/*Colors*/
:root {
    --text: #3F485F;
    --primary: #1B8ECE;
    --background: #F5F9FF;
    --white: #FFFFFF;
    --text-primary: #B7C1D9;
    --primary-gray: #757F99;
    --text-dark: #353D51;
    --stroke1: #DADADA;

    --gradient-one: linear-gradient(to top right, #329DD7 30%, #D1EAF8 100%);
    --gradient-two: radial-gradient(circle, #C6E9FC 0%, #F5F9FF 91%);
}

/*Nav*/
header{ 
    height: 63.8px;
}

header .navbar { 
    border-bottom: 1px solid var(--stroke1);
    padding: 20px 0;
}

header .navbar-brand{
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 700;
}

header .navbar-toggler{
    padding: 0;
    border: 0;
    width: 2.06rem;
}

header .navbar-toggler .bi-list {
    width: 2.06rem;
    display: block;
}

header .nav-item {
    display: flex;
}

header .navbar-toggler .bi-list::before {
    transform: scale(2.3, 1.55);

    background-color: var(--primary);

    background-image: var(--gradient-one);
    
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

#offcanvasNavbar h5{
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-dark);
}

#offcanvasNavbar .btn-nav{
    border: none;
    padding: 0;
    background-color: unset;
}

.bg-body-tertiary{
    background-color: var(--background) !important;
}

#offcanvasNavbar > div.offcanvas-body > ul > li:nth-child(5){
    padding: 20px 0;
}



/*Home*/
.home-img-container {
    display: flex;
    justify-content: center;
}

#home img {
    margin-top: 5rem;
    width: 100%;
}

#home .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#home {
    position: relative; /* Ensure positioning context for the pseudo-element */
    padding-bottom: 5.625rem;
    padding-top: 4.5rem;
    overflow: hidden;
}

#home::after {
    content: ''; /* Required for the pseudo-element */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at center bottom, #C6E9FC 0%, #F5F9FF 91%); /* Semi-transparent white background */
    z-index: -2; /* Ensure pseudo-element is above the background image */
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.025;
    transform: scale(1.2);
    background-image: url('../assets/imgs/5.png');
    background-size: cover;
    background-position: center;
    z-index: -1; /* Ensure background image is behind the pseudo-element */
}

#home .title{
    width: 100%;
}

#home .title h1 {
    color: var(--text);
    font-weight: 400;

    font-size: 11.4vw;
    letter-spacing: 0;
}
#home .title h1 span {
    /* Fallback: Set a background color. */
    background-color: var(--primary);
    
    /* Create the gradient. */
    background-image: var(--gradient-one);
    
    /* Set the background size and repeat properties. */
    background-size: 100%;
    background-repeat: repeat;

    /* Use the text as a mask for the background. */
    /* This will show the gradient as a text color rather than element bg. */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    font-weight: 600;
}

#home .title > p {
    font-size: 7vw;
    font-weight: 200;
    color: var(--text);
    margin-top: 13px;
}

#home .title hr{
    display: block;
    width: 1px;
    height: 109px;
    border-left: 2.5px var(--primary) solid;
    border-top: var(--primary);
    background-color: var(--primary);

    background-image: var(--gradient-one);
    
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    margin-top: 30px;
}

#home .read-more.desktop {
    display: none;
}

#home .read-more {
    color: var(--primary);
    display: flex;
    gap: 15px;
    margin-top: 5rem;
    width: 100%;
}

#home .read-more a {
    font-size: 1.375rem;
    font-weight: 200;
    text-decoration: none;
    color: var(--primary);
}

#home .read-more i{
    display: flex;
    align-items: center;
}
#home .read-more i::before{
    transform: scale(1.4);
}



#home .social-media {
    display: flex;
    gap: 15px;
    margin-top: 55px;
}

#home .social-media i{
    font-size: 1.625rem;
    color: var(--primary);

    background-color: var(--primary);

    background-image: var(--gradient-one);
    
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}


/*Portfolio*/
#portfolio {
    padding: 120px 0 75px;
    display: flex;
    flex-direction: column;
}

#portfolio .works {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.section-title {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 4.7rem;
}

.section-title h2 {
    font-size: 2.81rem;
    color: var(--text-dark);
    font-weight: 500;
}

.section-title p {
    font-size: 1.56rem;
    color: var(--text-dark);
    font-weight: 300;
}

#portfolio .image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

#portfolio .works .work:nth-child(1) .image-container::before{
    content: '';
    position: absolute;
    width: 87%;
    height: 87%;
    border-radius: 100%;
    background-color: #bbd3ff;
    
    z-index: -1; /* Ensure background image is behind the pseudo-element */
}

#portfolio .works .work:nth-child(2) .image-container::before{
    content: '';
    position: absolute;
    width: 87%;
    height: 87%;
    border-radius: 100%;
    background-color: #dbdbdb;
    
    z-index: -1; /* Ensure background image is behind the pseudo-element */
}

#portfolio .works .work:nth-child(3) .image-container::before{
    content: '';
    position: absolute;
    width: 87%;
    height: 82%;
    border-radius: 100%;
    background-color: #87888d;
    
    z-index: -1; /* Ensure background image is behind the pseudo-element */
}

#portfolio .works .work:nth-child(4) .image-container::before{
    content: '';
    position: absolute;
    width: 87%;
    height: 87%;
    border-radius: 100%;
    background-color: #ffa1a1;
    
    z-index: -1; /* Ensure background image is behind the pseudo-element */
}

#portfolio .works .work:nth-child(5) .image-container::before{
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 100%;
    background-color: #BBDBFF;
    z-index: -1; /* Ensure background image is behind the pseudo-element */
}

#portfolio .works .work:nth-child(6) .image-container::before{
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 100%;
    background-color: #BFECCB;
    z-index: -1; /* Ensure background image is behind the pseudo-element */
}

#portfolio img {
    width: 100%;
}

#portfolio .work-desc {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#portfolio .work-desc .work-type{
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1rem;
}

#portfolio .work-desc h3 {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.2;
}
#portfolio .work-desc h3 span{
    font-size: 1.25rem;
    font-weight: 400;
}

p {
    line-height: normal;
}

#portfolio .work-desc-text{
    color: var(--text-dark);
    font-weight: 300;
    font-size: 1.225rem;
    
}

#portfolio .roles{
    flex-wrap: wrap;
    display: flex;
    gap: 13px;
}

#portfolio .roles .role{
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid var(--text-dark);
    padding: 8px 15px;
    border-radius: 18px;
    font-size: 14px;
}

#portfolio .role.blue{
    background: linear-gradient(to top right, #329DD7 42%, #D1EAF8 100%);
    color: var(--white);
    border: unset;
    font-weight: 300;
}


.buttons {
    margin-top: 2.188rem;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.btn-one {
    background: linear-gradient(to top right, #329DD7 42%, #D1EAF8 100%);
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 1.125rem;
    color: var(--white);
    border: unset;
    width: fit-content;
    font-weight: 300;
    text-decoration: none;
    display: flex;
    justify-content: center;
    gap: 10px;

}
.btn-one:hover, .btn-two:hover {
    opacity: 0.9;
}


.btn-two {
    background: unset;
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 1.125rem;
    color: var(--primary);
    border: 1px var(--primary) solid;
    width: fit-content;
    font-weight: 300;
    text-decoration: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/*Skills*/

#skills {
    padding: 75px 0;
}

#skills .skill-card{
    padding: 1.875rem;
    border: 1px var(--text-primary) solid;
    border-radius: 14px;
    width: 300px;
    min-height: 405px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

#skills .skill-card .icon-container {
    position: relative;
    background-color: #E0F4FF;
    width: 75px;
    height: 75px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

#skills .skill-card i {
    font-size: 2.8rem;
    color: var(--primary);
}

#skills .skill-card .bi-brush-fill {
    font-size: 1.2rem;
    position: absolute;
    top: 20px;
    margin-left: 28px;
    transform: rotate(10deg);
}

#skills .skill-card .bi-easel2{
    font-size: 2.5rem;
}

#skills .skill-desc h2 {
    font-size: 1.875rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 13px;
}

#skills .skill-desc p {
    font-size: 1.063rem;
    color: var(--text-dark);
    font-weight: 300;
}

#skills .tech-icons {
    display: flex;
    gap: 15px;
    margin-top: 45px;
}

#skills .tech-icons img {
    width: 35px;
    height: 35px;
}

#skills .cards {
    display: flex;
    gap: 30px;
    width: fit-content;
    padding-right: 1.25rem;
}

#skills .cards-scroll-container{
    margin-top: 4.06rem;
    overflow: scroll;
}

#skills .container {
    padding: 0 0 0 1.25rem;
}

/*Services*/

#services {
    padding: 75px 0;
}

#services .accordion {
    display: flex;
    flex-direction: column;
    gap: 65px;
}

#services .accordion-item{
    background: none;
    border: unset;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 25px;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

#services .accordion-header {
    border: none;
    background: none;
}

#services .accordion-button span{
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1.875rem;
    outline: none;
    border: none;
    box-shadow: none;
    padding: 3px 10px 3px 0;
}


#services .accordion-button:not(.collapsed) span{
    background: none;
    box-shadow: none;
    color: var(--primary);

    background-color: var(--primary);

    background-image: var(--gradient-one);
    
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

#services .accordion-button {
    background: none;
    padding: 0;
    box-shadow: none;
}

#services .accordion-body {
    padding: 0;
}

#services .accordion-item p{
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-dark);
}

#services .accordion-button::after {
    background-image: url("/assets/other-icons/plus.svg");
    transform: scale(2.4);
}
#services .accordion-button:not(.collapsed)::after{
    background-image: url("/assets/other-icons/dash.svg");
}

#services .acc-image-container{
    height: 152px;
    

    border-radius: 18px;
}

#services .acc-image-container.one{
    background: url("/assets/imgs/webdesign.jpg");
    background-position: center;
    background-size: cover;
}
#services .acc-image-container.two{
    background: url("/assets/imgs/h&b-image.jpg");
    background-position: center;
    background-size: cover;
}
#services .acc-image-container.three{
    background: url("/assets/imgs/uiux.jpg");
    background-position: center;
    background-size: cover;
}

/*ed-exp*/

#ed-exp {
    padding: 75px 0;
}

#ed-exp .wrapper{
    display: flex;
    flex-direction: column;
    gap: 75px;
}

#ed-exp .wrapper > div {
    display: flex;
    flex-direction: column;
    gap: 45px;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 23px;
}

#ed-exp .wrapper > div > div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#ed-exp .wrapper h2{
    color: var(--text-dark);
    font-weight: 500;
    font-size: 2.813rem;
}

#ed-exp .wrapper h3{
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-dark);
}
#ed-exp .wrapper h3 span{
    font-size: 1.125rem;
}

#ed-exp .wrapper > div > div > div{
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary-gray);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#ed-exp .wrapper > div > div > div span{
    display: flex;
    gap: 2px;
    align-items: center;
}
#ed-exp .wrapper > div > div > div span i{
    font-size: 2rem;
}

/*Thanks*/

#thankyou {
    padding: 90px 0;
}

#thankyou .thankyou-pic-container {
    background: url("/assets/imgs/iago.jpg");
    width: 123px;
    height: 123px;
    border-radius: 100%;
    background-position: center;
    background-size: cover;
}

#thankyou .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

#thankyou > div > div:nth-child(2) h2{
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 500;
}

#thankyou .container > div:nth-child(2){
    display: flex;
    flex-direction: column;
    gap: 23px;
    align-items: center;
}

#thankyou > .container > div:nth-child(2) > p:nth-child(2){
    color: var(--text-dark);
    font-weight: 300;
    font-size: 1.375rem;
    max-width: 500px;
}

#thankyou > div > div:nth-child(2) > p:nth-child(3){
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1.3rem;
    text-decoration: underline;
}



footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 0;
}

footer p {
    width: fit-content;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
}

@media only screen and (min-width: 500px) {
    #home img{
        width: 80%;
    }
    
    #portfolio .works .work:nth-child(1) .image-container::before{
        width: 72%;
        height: 85%;
        margin-right: 30px;
    }
    #portfolio .works .work:nth-child(2) .image-container::before{
        width: 72%;
        height: 85%;
        margin-right: 30px;
    }
    #portfolio .works .work:nth-child(3) .image-container::before{
        width: 70%;
        height: 83%;
        margin-left: 30px;
        margin-top: -50px;
    }
    #portfolio .works .work:nth-child(4) .image-container::before{
        width: 70%;
        height: 83%;
        margin-right: 30px;
    }
    #portfolio .works .work:nth-child(5) .image-container::before{
        width: 70%;
        height: 83%;
    }
    #portfolio .works .work:nth-child(6) .image-container::before{
        width: 70%;
        height: 83%;
    }
    #portfolio img {
        width: 80%;
    }


}

@media only screen and (max-width: 350px) {
    #home .read-more {
        gap: 10px;
    }
    #home .read-more i {
        font-size: 5vw;
    }
    #home .read-more a {
        font-size: 5.5vw;
    }
    #home .title h1 {
        font-size: 11vw;
    }
    .section-title p {
        font-size: 6vw;
    }  
    .section-title h2 {
        font-size: 12vw;
    } 
    #portfolio .work-desc .work-type{
        font-size: 4.5vw;
    }
    #portfolio .work-desc h3{
        font-size: 8vw;
    }
    #portfolio .work-desc h3 span{
        font-size: 5.5vw;
    }
    #portfolio .work-desc-text{
        font-size: 5vw;
    }
    #portfolio .roles .role{
        width: fit-content;
        font-size: 3.5vw;
    }
    .btn-one, .btn-two{
        font-size: 5vw;
    }

    #skills .skill-desc h2{
        font-size: 9vw;
    }
    #skills .skill-desc p{
        font-size: 5.2vw;
    }
    #skills .skill-card .icon-container{
        height: 60px;
        width: 60px;
    }
    #skills .skill-card i{
        font-size: 2.4rem;
    }
    #skills .tech-icons img{
        width: 12vw;
        height: 12vw;
    }
    #skills .skill-card .bi-brush-fill{
        font-size: 7vw;
        top: 13px;
        margin-left: 25px;
    }
    #skills .tech-icons{
        margin-top: 30px;
    }
    #services .accordion-button{
        font-size: 8vw;
    }
    #services .accordion-item p{
        font-size: 5vw;
    }
    #ed-exp .wrapper h2{
        font-size: 12vw;
    }
    #ed-exp .wrapper h3{
        font-size: 6.5vw;
    }
    #ed-exp .wrapper h3 span{
        font-size: 4.8vw;
    }
    #thankyou .thankyou-pic-container{
        width: 50vw;
        height: 50vw;
    }
    #thankyou > div > div:nth-child(2) h2{
        font-size: 10vw;
    }
    #ed-exp .wrapper > div > div > div{
        font-size: 5vw;
    }
    #thankyou > .container > div:nth-child(2) > p:nth-child(2){
        font-size: 6vw;
    }
    #thankyou > div > div:nth-child(2) > p:nth-child(3){
        font-size: 7vw;
    }
    #thankyou .social-media i{
        font-size: 9vw;
    }
    footer p{
        font-size: 5vw;
    }
}

@media (min-width: 500px) and (max-width: 991px) {
    #home .title{
        text-align: center;
    }
    #home .title h1{
        font-size: 3.75rem;

    }
    #home .title p{
        font-size: 2rem;

    }
    #home .read-more {
        justify-content: center;
    }

    #skills .container {
        padding: 0 0 0 1.95rem;
    }
    .container-fluid {
        padding: 0 1.95rem;
    }
    .container {
        padding: 0 1.95rem;
    }
    
    #home .social-media {
       justify-content: center;

    }

}

@media (min-width: 700px) and (max-width: 991px) {
    #home .container {
        width:80%;
    }

  }
  
@media (min-width: 992px){

    #skills .container {
        padding: 0 3.25rem 0 3.25rem;
    }
    .container-fluid {
        padding: 0 3.25rem;
    }
    .container {
        padding: 0 3.25rem;
    }

    #home {
        padding: 6.625rem 0;
    }

    #home .read-more.desktop {
        margin-top: 161px;
    }
    #home .title h1{
        font-size: 3.75rem;
    }
    #home .title > p{
        font-size: 2rem;
    }
    #home .container{
        flex-direction: row;
        
    }
    #home img {
        margin-top: 0;
        width: 400px;
        height: 400px;
    }

    .navbar-nav{
        gap: 20px;
    }
    #offcanvasNavbar > div.offcanvas-body > ul > li:nth-child(5){
        padding: 0;
    }
    header .navbar{
        padding: 20px 0px;
    }

    .home-img-container{
        display: flex;
        justify-content: flex-end;
    }

    .offcanvas-body .navbar-nav {
        padding-right: 0 !important;
    }

    #home .read-more {
        display: none;
    }

    #home .read-more.desktop {
        display: flex;
    }
    

    #home::after {
        content: ''; /* Required for the pseudo-element */
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: radial-gradient(circle at 63% 100%, #C6E9FC 0%, #F5F9FF 76%); /* Semi-transparent white background */
        z-index: -2; /* Ensure pseudo-element is above the background image */
    }
    
    #home::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 300px;
        opacity: 0.022;
        transform: scale(1.2);
        background-image: url('../assets/imgs/5.png');
        background-size: cover;
        background-position: center;
        z-index: -1; /* Ensure background image is behind the pseudo-element */
    }



    #portfolio .work {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
    }
    #portfolio .work-info{
        width: 60%;
    }
    #portfolio .image-container{
        width: 40%;
        justify-content: flex-end;
        margin-bottom: 0;
    }
    #portfolio .work-desc {
        justify-content: flex-end;
    }
    #portfolio .work-desc-text{
        padding-right: 30px;
    }
    #portfolio .buttons{
        flex-direction: row;
    }
    #portfolio .buttons a{
        height: 40px;
    }

    #portfolio > .container > .works > .work:nth-child(2){
        flex-direction: row;
    }
    #portfolio > .container > .works > .work:nth-child(2) .image-container {
        justify-content: flex-start;
    }

    #portfolio > .container > .works > .work:nth-child(4){
        flex-direction: row;
    }
    #portfolio > .container > .works > .work:nth-child(4) .image-container {
        justify-content: flex-start;
    }
    #portfolio > .container > .works > .work:nth-child(6){
        flex-direction: row;
    }
    #portfolio > .container > .works > .work:nth-child(6) .image-container {
        justify-content: flex-start;
    }


    #skills .skill-card {
        width: 100%;
    }

    #skills .cards {
        gap: 50px;
        width: 100%;
        padding-right: 0;
    }

    #skills .cards-scroll-container{
        overflow: hidden;
    }

    #services .accordion-button{
        height: fit-content;
    }

    .paragraph-wrapper {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }



    #services .accordion-button span{
        min-width: 260px;
    }

    .accordion-button:not(.collapsed){
        box-shadow: none;
    }


    
    #ed-exp .wrapper {
        flex-direction: row;
    }

    #ed-exp div {
        width: 100%;
    }

    #thankyou {
        padding: 120px 0;
    }


}

@media (min-width: 991px) and (max-width: 1049px){
    #services .accordion-button p{
        margin-right: 130px;
        margin-left: auto;
        width: 400px;
    }
    .acc-image-container {
        margin-right: 150px;
        margin-left: auto;
        width: 400px;
    }
}

@media (min-width: 1050px){

    #portfolio .work-info{
        width: 55%;
    }
    #portfolio .image-container{
        width: 45%;
    }

    #services .accordion-button p{
        margin-right: 180px;
        margin-left: auto;
        width: 400px;
    }
    .acc-image-container {
        margin-right: 200px;
        margin-left: auto;
        width: 400px;
    }

}

@media (min-width: 1200px){
    #home::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 500px;
        opacity: 0.022;
        transform: scale(1.2);
        background-image: url('../assets/imgs/5.png');
        background-size: cover;
        background-position: center;
        z-index: -1; /* Ensure background image is behind the pseudo-element */
    }

    #home .title h1 {
        font-size: 3.95rem;
    }
    #home .title > p {
        font-size: 2.3rem;
    }
}

@media (min-width: 1400px){
    #home::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 700px;
        opacity: 0.022;
        transform: scale(1.2);
        background-image: url('../assets/imgs/5.png');
        background-size: cover;
        background-position: center;
        z-index: -1; /* Ensure background image is behind the pseudo-element */
    }
}