:root{
	--w: 95%;
	--w_l: 1300px;
	--f_pr: "Poppins-Regular";
	--f_pm: "Poppins-Medium";
	--light_blue: rgba(127,90,0,.2);
    --grey: #3c3c3b;
    --yellow: #7f5a00;
}
@font-face{
    font-family: "Poppins-Regular";
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
         url('../fonts/Poppins-Regular.ttf') format('truetype');
	font-display: swap;
}
@font-face{
    font-family: "Poppins-Medium";
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
         url('../fonts/Poppins-Medium.ttf') format('truetype');
	font-display: swap;
}
.up_zindex{
	z-index: 10;
	position: relative;
}
.w_def{
	width: var(--w);
	margin: auto;
}
.w_l{
	width: var(--w_l);
	max-width: var(--w);
	margin: auto;
}
h1,h2,h3,h4,h5,h6,b{
	font-weight: normal;
}
p, .txt_alpha{
	opacity: .9;
}
.txt_alpha7{
	opacity: .7;
}
h1,h2,h3,h4,h5,h6,b,.f_pm{
    font-weight: normal;
	font-family: var(--f_pm);
}
.fs_16{
	font-size: 16px;
}
.fs_185{
	font-size: 18.5px;
}
.op_1{
	opacity: 1 !important;
}
.title_upper{
	font-size: 15px;
	letter-spacing: 1.3px;
	opacity: 1 !important;
}
ul.align_txt{
	padding-left: 20px;
}
ul.align_txt h3, ul.align_txt p{
    display: inline;
}
body{
	font-family: var(--f_pr);
    overflow: overlay;
}
header{
	padding: 10px 0;
}
header #menu{
	list-style-type: none;
}
header #menu li{
	color: var(--yellow);
	font-family: var(--f_pm);
    letter-spacing: 1px;
}
header #menu li img{
	width: 20px;
}


.bck_skew{
	color: white;
	
}
.bck_skew p{
	opacity: 1 !important;
}

.btn{
	background-color: black;
	color: white;
	font-family: var(--f_pm);
	text-align: center;
	padding: 10px 30px;
	border-radius: 20px;
	display: inline-block;
	letter-spacing: 1px;
	transition: 400ms ease;
	border: 2px solid transparent;
	cursor: pointer;
	font-size: inherit;
}
.btn:hover{
	border: 2px solid black;
	background-color: white;
	color: black;
}
.space_btn > .btn:nth-child(1){
	margin-right: 20px;
}
.space_btn > .btn:nth-child(2){
	margin-left: 20px;
}

.line_h20{
	height: 20px;
}
.txt_blue{
	color: var(--grey);
}
.bck_blue{
	background-color: var(--yellow);
	color: white;
}
.bck_light_blue{
	background-color: var(--light_blue);
}
.line{
	width: 100%;
	height: 1px;
	background-color: var(--yellow);
}
.line.alpha{
	opacity: .5;
}
.line_lt{
	position: relative;
	padding-left: 30px;
}
.line_lt:before{
	content: '';
	position: absolute;
	background-color: var(--yellow);
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
}
.line_tp{
	position: relative;
	padding-top: 50px;
}
.line_tp:before{
	content: '';
	position: absolute;
	background-color: var(--yellow);
	left: 0;
	top: 0;
	width: 100%;
	height: 5px;
}
.gap_5{
	gap: 5px;
}
.gap_50{
	gap: 50px;
}
.grid.blue_border{
	background-color: var(--yellow);
}
.grid.blue_border .item{
	background-color: white;
}
.table_layout{
	gap: 1px;
	background-color: rgba(0,0,0,.2);
}
.table_layout > div{
	padding: 15px;
	background-color: white;
	/*border-bottom: 1px solid rgba(0,0,0,.2);*/
}
.link{
	position: relative;
	display: inline-block;
}
.link:before, .link:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	opacity: .6;
	z-index: 1;
}
.link:after{
	transition: 400ms ease;
	transform: scale(0);
	opacity: 1;
	transform-origin: left;
}
.link:hover:after{
	transform: scale(1);
}
.link.white:before, .link.white:after{
	background-color: white;
}
.link.black:before, .link.black:after{
	background-color: white;
}
.txt_ct{
	text-align: center;
}
.fixed_menu{
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 4;
}
.fixed_menu:after{
	content: '';
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background-image: linear-gradient(white,transparent);
}
.fixed_menu .item{
	color: rgba(127,90,0,.5);
	transition: 400ms ease;
	opacity: 1;
	font-family: var(--f_pm);
    letter-spacing: 1px;
}
.fixed_menu .item.selected, .fixed_menu .item:hover{
	color: rgba(127,90,0,1);
	cursor: pointer;
}
	
.list_text{
	padding-left: 20px;
}

.std_blue_border{
	border: 1px solid var(--light_blue);
}

/***** FOOTER ******/
footer{
	background-color: var(--light_blue);
	color: black;
}
footer .logo{
	width: 250px;
}
footer ul{
	list-style-type: none;
}
footer ul li{
	margin-bottom: 10px;
}
footer a, footer .underlined{
	border-bottom: 1px solid rgba(0,0,0,.5);
	transition: 400ms ease;
	display: inline;
}
footer a:hover, footer .underlined:hover{
	border-bottom: 1px solid rgba(0,0,0,1);
}
/***** END FOOTER ******/

/***** FAQ ********/
.question .title{
	display: grid;
	grid-template-columns: 1fr auto;
	cursor: pointer;
}
/***** END FAQ ********/

.ico_customer{
	width: 30px; 
	vertical-align: middle;
}
.marg_10{
	margin: 10px;
}
.product_box > .card{
    padding: 20px;
    text-align: center;
}
.product_box > .card:first-of-type{
    border: 20px solid #7f5a00;
    background-color: rgba(127,90,0,.2);
    color: #2c1f00;
}
.product_box > .card:last-of-type{
    border: 20px solid #7f5a00;
    background-color: rgba(0,75,104,.2);
    color: #002939;
}
.product_box > .card img{
    width: 400px;
    max-width: 100%;
}
.product_box .up{
    font-family: var(--f_pm);
}
.product_box .description{
    font-size: 15px;
}
form .privacy_grid a{
    text-decoration: underline;
}
::-webkit-scrollbar {
	width: 10px;
	position: relative;
	z-index: 90;
}
::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, .6);
	position: relative;
	z-index: 90;
}
::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, .9);
}
::-webkit-scrollbar-track {
	background: transparent;
}

