@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --accent-color:#282828;
    --bg-dark:#D9D9D9;
    --accent-color-dark:#212121;
    --secondary-color:#dd3107;
}

body{
    font-family:'Inter';
    font-size: 1.5rem;
    color:var(--sccent-color);
    margin: 0px;
    padding: 0px;
    height: 100%;
    overflow-x: hidden;
    z-index: 1;

}



.font-light{
    font-weight: 300;
}



.text-bold{
    font-weight: 600;
}

.navbar-brand img{
    width: 5rem;
    height: 5rem;
}

.navbar-toggler{
    border: none;
    outline: 0 !important;   
}

.navbar-toggler:focus{
    box-shadow: none;
}
.nav-link:hover{
    color: var(--accent-color);
}

.navbar{
    z-index: 100;
}

.footer{
    margin-top: 1rem;
    padding-block: 1rem;
}

.footer .fa-brands{
    color:var(--accent-color);
    margin-right: .5rem;
}

.footer li{
    list-style: none;
    cursor: pointer;
    color: var(--accent-color);
    font-size:large;
    align-self: center;
}

.footer li:hover{
    color: var(--accent-color-dark);
}

.footer ul{
    padding-left: 0px;
    margin-bottom: 0px;
}


.copyright{
    font-size: medium;
}

.copyright p{
    margin-bottom: 0px;
    align-self: center;
}

.fa-copyright{
    align-self: center;
}

.navbar-inside{
    position: fixed;
    background-color: white;
    top: 0;
    right:0px;
    width: 25vw;
    height: 100vh;
}

@media (max-width:325px) {
    .navbar-inside{
        width: 70vw;
        height: 110vh;
    }
}

@media (max-width:600px) {
    .navbar-inside{
        width: 50vw;
        height: 110vh;
    }
}

.navbar-nav{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}



.navbar-inside:not(.show){
    opacity: 0;
    display:block;
    right: -100%;
    transition: right 200ms;
}

.navbar-inside.show{
    transition: right 200ms;
    right: 0px; 
    /* animation : navbar-anim 200ms linear; */
}


.blur{
    display: none;
    filter: blur(10px);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 50;
    background-color: rgb(191, 190, 190);
    opacity: .5;
}

.blur.active{
    display: block;
}

a{
    text-decoration: none;
    color: var(--accent-color);
}

a:hover{
    color: var(--accent-color-dark);
}

p{
    font-size: 1.10rem;
}


@media (min-width:768px) {
    .header-inner{
        padding-bottom: 5rem;
    }
}

.header-inner{
    height: 50vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}



.header-image{
    background-image: url(./Assets/pexels-photo-5990678.webp);
    width: 100%;
    height: 100%;
    background-position: bottom;
    position: relative;
    height: 70vh;
}

.header-image .button-wrapper{
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    top: -1rem;
}

.heading-wrapper{
    background:var(--secondary-color);
    color: White;
    position: absolute;
    bottom: -1rem;
    padding: 1rem;
    text-transform: uppercase;
    padding-right: 2rem;
    font-stretch: 1rem;
}

.heading-wrapper>h5{
    margin-bottom: 0rem;
}

.heading{
    /* text-transform: uppercase; */
}

.spacer{
    margin: 5rem;
}

button{
    border: none;
    /* background-color: var(--secondary-color); */
    color: white;
    padding-inline: 1rem;
    padding-block: .5rem;
}

.comment-header{
    background-image: url(./Assets/pexels-photo-6171394.webp);
    width: 100%;
    height: 70vh;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.goals .col-lg-6.image{
    background-image: url(./Assets/pexels-photo-6165877.webp);
    height: 70vh;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    position: relative;
}

.goals .heading-wrapper{
    left: -10%;
    bottom: auto;
    top: 0;
    padding-inline:2rem ;
}

.d-list-item{
    display: list-item ;
}

.u-svg-content{
    width: 100px;
    height: 100px;
    fill: white;
    position:relative;
}

.icon-holder{
    position: relative;
    width: max-content;
}

.u-icon::before{
    content: "";
    width: 50px;
    height: 50px;
    position:absolute;
    top: 50%;
    left: 50%;
    background-color: black;
    transform: translate(-50% , -50%);
    z-index: 0;
}


.quote{
    background-color: var(--secondary-color);
    padding: 1rem;
    color: white;
}

.bg-transparent{
    background-color: transparent;
    color: black;
}

.close{
    font-size: 2rem;
    height: 4rem;
}

.close-wrapper{
    flex-grow: 1;
    align-items: end;
}

.navbar-nav{
    flex-grow: 2;
    justify-content: start;
    margin-top: 5rem;
}

.header.container img{
    width: 100%;
}

.work-item{
    max-width: 20rem;
    border: none;
    break-inside: avoid;
}

/* .work-item .card-img-top{
    aspect-ratio: 4/5;
    object-fit: cover;
} */


.work-item .card-body{
    padding-inline: 0px;
}


.work.header{
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-items-inner{
    columns:3;
    padding-block: 5rem;
}

@media (max-width:775px) {
    .work-items-inner{
        columns:2;
    }
}


@media (max-width:425px) {
    .work-items-inner{
        columns:1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.animate__animated.animate__fadeInDown{
    animation: fadeInDown;
}

.hidden:not(.show){
    animation: none;
}

.hidden.show{
    animation-duration: 1s;
    animation-fill-mode: forwards;
}


.scroll-down{
    animation-duration: 10s !important;
}

.contact-info p{
    font-size: 1rem;
}

.contact-info .container , .contact-form .container{
    max-width: 768px;
}

input , textarea{
    padding: .5rem;
    margin: 1rem;
    margin-left: 0px;
    font-size: 1rem;
}


input{
    border: none;
    border-bottom: 1px gray solid;

}

textarea{
    border: 1px gray solid;
}

a.submit{
    font-size: 1rem;
}

input:focus-visible , textarea:focus-visible{
    outline: none;
}

button.submit{
    border: none;
    color: black;
    background-color: white;
    text-align: start;
    font-size: 1rem;
    padding-left:0px;
    width: max-content;
}

.card{
    border-radius: 0px;
}

.card h6{
    font-size: 1.10rem;
}

.card p{
    font-size: 1rem;
}
button{
    border-radius: 0px;
    box-shadow: none !important;
}

button:focus{
    box-shadow: none !important;
}

nav .dropdown{
    display: flex;
}

.language-switch{
    font-size: 1rem;
    align-self: center;
}