@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

p, h1,h2,h3,h4,h5 {
	color: #E3E3E4;
}

::-webkit-scrollbar {
  width: 10px;        
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #E3E3E4;  
}

::-webkit-scrollbar-thumb {
  background-color: #EA601D;  
  border-radius: 10px;        
  border: 2px solid transparent;  
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #002B65;
}

.content-wrapper {
	background-color: #2c5c9c !important;
}

.img-div {
	margin: 6px 0px 6px 0px;
}

.logo-img {
	height: auto;    
	max-width: 150px;
}

.headings h3 {
	font-family: 'roboto';
	font-weight: 700;
	font-size: 23px;
	position: relative;
	top: 20px;
}

.headings h1 {
	font-family: 'roboto';
	font-weight: 700;
	font-size: 30px;
	position: relative;
	top: 30px;
}

.card {
	background-color: #002B65 !important;
	border-radius: 15px;
}

.card-header {
	border-bottom: unset;
}

.card-header p {
	font-size: 16px;
	font-weight: 500;
}

.text-blue {
	color: #2C5C9C !important;
}

.btn-orange {
	font-weight: 500;
	color: #ffffff;
	background-color: #EA601D;
}

.bottom-content h2 {
	font-size: 30px;
}

.bottom-content p {
	font-size: 14px;
	line-height: 17px;
}

.custom-ol {
    counter-reset: list-counter; 
    padding-left: 0; 
    list-style: none; 
}

.custom-ol li {
    position: relative; 
    padding-left: 40px; 
    margin-bottom: 10px; 
    margin-top: 10px;
    color: #E3E3E4;
}

.custom-ol li::before {
    content: counter(list-counter); 
    counter-increment: list-counter; 
    position: absolute; 
    left: 0; 
    top: 0; 
    width: 25px; 
    height: 25px; 
    background-color: #ffffff;
    color: #2C5C9C;
    border-radius: 50%;
    display: flex;
    align-items: center; 
    justify-content: center; 
}


