:root {
    --color-base: #636466;
    --color-light-grey: #939598;
    --color-white: #ffffff;
    --color-purple: #85568c;
    --color-grey-bg: #c7c8ca;
    --color-black-bg: #000000;
    --color-antracite-bg: #1d1d1b;
    --color-border-dark: #c7c8ca;
    --base-spacing: 44px;
    --base-spacing-mobile: 20px;
    --size-base: 1rem;
    --size-base-mobile: 0.88rem;
    --line-space-base: 1.875rem;
    --weight-base: 400;
    --page-max-width: 1600px;
    --page-max-width-padding: 1688px;
    --section-spacig-lg: 160px;
    --section-spacig-sm: 120px;
    --section-spacig-xs: 80px;
}

*{
	margin: 0;
	padding: 0;
	font-family: 'Outfit', sans-serif;
	text-decoration: none;
    decoration: none;
  color: inherit;
	scrollbar-color: #ff9800 var(--color-antracite-bg);
	scrollbar-width: thin;
    transition: all .65s ease;


}


@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


/*scrollbar*/

::-webkit-scrollbar{

	background-color: var(--color-antracite-bg);
	width: 6px;
	height: 6px;
	border-radius: 5px;
}

::-webkit-scrollbar-thumb{

	background-color: #ff9800;
	border-radius: 5px;
}





 ::selection {
            background-color: #ffcc00;
            color: #333; 
        }




body{

    min-height: 100vh;
    position: relative;
    background-color: var(--color-white);
}

img{
            height: 100%;
            width: 100%;
            object-fit: cover;
            scroll-margin: l;

}

section{

    max-width: var(--page-max-width);
    margin: 0 auto;
    align-content: center;
    align-items: center;
    justify-content: center;
        margin-top: 100px;


}

.main_content{


    opacity: 1;
    max-width: var(--page-max-width);
    min-height: 100vh;
    margin: 0 auto;
    margin-top: 200px;

}

.text-h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


@media (min-width: 640px) {
    .text-h3 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}


@media screen and (max-width: 1280px){

    .wrapper_menu ul{
        transition: 2s ease;
        display: none;
    }
}


