:root{
	--rgb-color-base:0,0,0;
	--rgb-color-primary:215,51,50;

	--transition:.2s ease;
}
html{line-height:1.6;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;box-sizing:border-box;font-size:16px;font-family:"Poppins", sans-serif;color:#040f42;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:grayscale;font-weight:400;-webkit-tap-highlight-color:transparent;scroll-behavior:smooth;scroll-padding-top:70px}
body,dd,dl,figure,form,h1,h2,h3,h4,h5,h6,input,menu,p{margin:0}
button,input,ol,textarea,ul{margin:0;padding:0}
:after,:before,a,abbr,address,article,aside,body,button,dd,details,div,dl,dt,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,img,input,label,li,main,menu,nav,ol,p,picture,section,select,span,strong,summary,table,td,textarea,th,tr,ul{box-sizing:border-box}
ol li,ul li{list-style:none}
picture{font-size:0;display:block}
a{background-color:transparent;text-decoration:none;-webkit-text-decoration-skip:objects;transition:all ease .15s;color:inherit}
a:hover{outline:0;text-decoration:none;color:rgb(var(--rgb-color-primary))}
a,button,input[type=button],input[type=reset],input[type=submit],summary{cursor:pointer}
audio,video{display:inline-block}
img{border-style:none;max-width:100%}
textarea{resize:vertical}
button,input,select,textarea{font-family:inherit;font-size:100%;line-height:1.15}
a,a:focus,button,button:focus,input,input:focus,optgroup,optgroup:focus,select,select:focus,summary,summary:focus,textarea,textarea:focus{outline:0}

/*return top*/
.return-top{width:70px;height:70px;background:rgba(0,0,0,.5);position:fixed;bottom:1%;right:10px;cursor:pointer;display:none;z-index:1;color:#fff;font-size:12px}
.return-top:hover{background:rgba(0,0,0,.86);color:#fff}
.return-top svg{margin-bottom:5px}
.return-top.actived{display:inline-flex;flex-direction:column;justify-content:center;align-items:center}

/*flex*/
.flex{display:flex}
.inline-flex{display:inline-flex}
.flex-direction-row{flex-direction:row}
.flex-direction-column{flex-direction:column}
.flex-wrap-nowrap{flex-wrap:nowrap}
.flex-wrap-wrap{flex-wrap:wrap}
.flex-wrap-reverse{flex-wrap:wrap-reverse}
.flex-justify-start{justify-content:flex-start}
.flex-justify-end{justify-content:flex-end}
.flex-justify-center{justify-content:center}
.flex-justify-around{justify-content:space-around}
.flex-justify-between{justify-content:space-between}
.flex-align-start{align-items:flex-start}
.flex-align-end{align-items:flex-end}
.flex-align-center{align-items:center}

.btn-group{display:flex;justify-content:start;align-items:center;gap:8px;flex-wrap:wrap}
.default-btn{position:relative;display:inline-flex;justify-content:center;align-items:center;gap:8px;padding:10px 24px;border-radius:20px;font-weight:500;font-size:1rem;line-height:1;text-decoration:none;white-space:nowrap;overflow:hidden;background:#fff;border:1px solid rgb(var(--rgb-color-primary));color:rgb(var(--rgb-color-primary))}
.default-btn:hover{-webkit-filter:brightness(1.05);filter:brightness(1.05)}
.default-btn.primary-btn{background:rgb(var(--rgb-color-primary));color:#fff}

.section{padding:6rem 0}
.section-header{text-align:center}
.section-title{font-size:3rem;font-weight:700;line-height:1.2}
.section-desc{font-size:1.125rem;margin:.25rem 0 0}
.section-desc:first-of-type{margin-top:1rem}
.section-body{margin-top:2.5rem}
@media (max-width:768px){
	.section{padding:4rem 0}
	.section-title{font-size:2.25rem}
	.section-desc{font-size:1rem}
}

.container{max-width:1230px;margin:0 auto;padding:0 15px;position:relative;z-index:0}