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

.inter-font{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:"slnt" 0;
}

body{
    font-family: "Inter", sans-serif;
}

.bg-1{
    background-color: var(--main-color);
}

.btn-custom-1, .btn-custom-1:active, .btn-custom-1:visited {
    background-color: var(--main-color);
    color: #fff;
}

.border-style-1{
    border-top: solid 10px var(--main-color);
}

.link-1{
    color: var(--main-color);
}

.title-1{
    color: var(--main-color);
}
.btn-custom-1:hover{
    background-color: #212529;
    color: #fff;
}

.lh-custom{
    line-height: 34px;
}


.text-ctm-1{
    color: rgb(55 65 81);
}
.text-ctm-1 strong,mark,h1,h2,h3,h4,h5,h6{
    color: #000;
}

mark{
    background-color: #FFF455;
}

.ol-custom li {
    margin: 18px 0;
}

.cc-td{
    text-align: center; 
    vertical-align: middle;  
}
.table td:not(:first-of-type) {
    text-align: center; 
    vertical-align: middle;  
 }
 .table td{
    padding: 15px;
 }

 .fs-big{
    font-size: 72px;
 }
 .pie {
    --w:150px;
    
    width: var(--w);
    aspect-ratio: 1;
    position: relative;
    display: inline-grid;
    place-content: center;
    margin: 5px;
    font-size: 25px;
    font-weight: bold;
    font-family: sans-serif;
  }
  .pie:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 0;
    background: conic-gradient(var(--c) calc(var(--p)*1%),#0000 0);
    -webkit-mask:radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
            mask:radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
  }


.ul-pros{
    list-style: none;
	padding-left: 0.6em;
    position: relative;
}

.ul-pros li{
    padding-left: 2.1em;
	margin-bottom: 0.5em;
}

.ul-pros li::before{
    position: absolute;
    content: '';
    left: 10px;
    background: url(images/safe.svg) no-repeat;
    background-size: 24px;
    background-position: 0px 4px;
    width: 24px;
	height: 30px;
}

.ul-cons{
    list-style: none;
	padding-left: 0.6em;
    position: relative;
}

.ul-cons li{
    padding-left: 2.1em;
	margin-bottom: 0.5em;
}

.ul-cons li::before{
    position: absolute;
    content: '';
    left: 10px;
    background: url(images/danger.svg) no-repeat;
    background-size: 24px;
    background-position: 0px 4px;
    width: 24px;
	height: 30px;
}


@media (max-width: 600px){
    .sticky-top-custom-mb {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}