@import url('https://fonts.googleapis.com/css2?family=Poppins: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: #FE7743;
    --secondary-color: #1e3e62;
}


*{
    margin: 0;
    padding: 0;
    font-family: Poppins, serif;
}
*::placeholder
{
    color: #1e3e6275;
    font-size: 14px;
}

@font-face{
    font-family: 'japan';
    src: url('fonts/KaoriGelBold.ttf');
}

@font-face{
    font-family: 'japan2';
    src: url('fonts/Sdasian-WyDon.ttf');
}


#c-cursor
{
    width: 30px;
    height: 30px;
    position: absolute;
    position: fixed;
    z-index: 100;
    pointer-events: none;
    object-position: top center;
    object-fit: cover;
}

body
{
    font-family: Poppins, serif;
    min-height: 100vh;
    overflow-x: hidden;
}


header
{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: start;
    gap: 113px;
    position: relative;
    height: 80px;
    box-shadow: 1px 5px 10px rgba(30, 62, 98, 0.123);
}

.nav-content
{
    width: 93%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-content ul
{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 81px;
    font-family: 15px;
}


.nav-content ul li a
{
    padding: 7px 0;
    text-decoration: none;
    position: relative;
    color: var(--secondary-color);

}

.nav-content ul li a:hover
{
    color: var(--accent-color);
    font-weight: 500;
}

.nav-content ul li a::before
{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
    bottom: 0;
    transition: width .3s ease-in-out;
}

.nav-content ul li a:hover::before
{
    width: 100%;
}

.side-bar
{
    height: calc(100vh - 80px);
}


.custom-container
{
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.checkbox-custom {
	appearance: none;
	position: relative;
	display: flex;
	align-items: center;
	transition: all ease .4s;
	justify-content: center;
	width: 50px;
	height: 30px;
}

.checkbox-custom::before
{
	content: '';
	position: absolute;
	width: 40px;
	height: 20px;
    z-index: -1;
	background-color: rgb(236, 233, 233);
	border-radius: 20px;
	transition: all ease .3s;
}

.checkbox-custom::after
{
	content: '';
	position: absolute;
    z-index: -1;
	width: 20px;
	height: 20px;
	background-color: white;
	box-shadow: 1px 5px 10px rgba(0, 0, 0, .1);
	left: 0;
	transition: all ease .3s;
	border-radius: 50%;
}

.checkbox-custom:checked::before
{
	background-color: var(--accent-color);
}

.checkbox-custom:checked::after
{
	transform: translateX(30px);
}


.modal
{
	display: none;
	transition-behavior: allow-discrete;
	transition-property: display opacity;
	transition-duration: .4s;
	background-color: #1e3e624b;
    z-index: 999;
	opacity: 0;
}

.modal.show
{
	display: flex;
    opacity: 1;
	/* @starting-style{
        transform:translateX(-100%) ;
	} */
}


.modal .form
{
	transition-behavior: allow-discrete;
	transition-property: display opacity;
	margin-top: 50px;
	transition-duration: .4s;
	transform: translateX(-20vw);
    opacity: 0;
}


/*
.modal .ajustContract
{
	margin-top: 10px;
} */


.modal.show .form
{
	transform: translateX(0);
    opacity: 1;
	@starting-style{
		transform: translateX(20vh);
        opacity: 0;
	}
}


input[type="search"]
{
    background: url('images/searchicon.svg') no-repeat;
    background-position-x: 95%;
    background-position-y: center;
    background-size: 20px;
}


.r-image
{
    background: url('images/logo.png') no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #1e3e62;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}


[x-cloak] { display: none !important; }


.spinning
{
    animation: spinner 1s linear  infinite;
}

@keyframes spinner {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }

}
