:root {  --color-primary: #7a3491;  --color-secondary: #011a3e;  --color-success: #27c24c;  --color-info: #23b7e5;  --color-warning: #ff902b;  --color-danger: #f05050;  --color-inverse: #131e26;  --color-green: #37bc9b;  --color-pink: #f532e5;  --color-purple: #7266ba;  --color-dark: #3a3f51;  --color-yellow: #fad732;  --color-gray-darker: #232735;  --color-gray-dark: #3a3f51;  --color-gray: #dde6e9;  --color-gray-light: #f8f7fa;  --color-gray-lighter: #edf1f2;  --breakpoint-lg: 1200;  --breakpoint-md: 992;  --breakpoint-sm: 768;  --breakpoint-xs: 480; } * {  margin: 0;  padding: 0;  outline: 0; } html {  font-size: 100%; } a {  text-decoration: none; } a:hover, a:focus {  text-decoration: none;  outline: none; } h1, h2, h3, h4, h5, h6 {  margin: 0;  padding: 0;  font-family: "Montserrat", sans-serif;  color: var(--color-secondary); } p {  margin: 0;  padding: 0; } ul {  margin: 0;  padding: 0; } ul li {  list-style: none; } input, select, textarea {  display: inherit;  border: none;  outline: none; } button {  border: none;  cursor: pointer; } button {  outline: none; } button:hover, button:focus {  outline: none; } body {  font-family: "Poppins", sans-serif;  font-size: 1rem;  line-height: 24px;  color: #7a808d;  font-weight: normal;  overflow-x: hidden; } .preloader {  background: #fff;  height: 100%;  overflow: hidden;  position: fixed;  text-align: center;  width: 100%;  z-index: 11000; } .preloader .lds-ripple {  position: absolute;  top: 50%;  left: 50%;  -webkit-transform: translate(-50%, -50%);  -moz-transform: translate(-50%, -50%);  -ms-transform: translate(-50%, -50%);  -o-transform: translate(-50%, -50%);  transform: translate(-50%, -50%);  display: inline-block;  width: 80px;  height: 80px; } .preloader .lds-ripple div {  position: absolute;  border: 4px solid var(--color-primary);  opacity: 1;  border-radius: 50%;  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite; } .preloader .lds-ripple div:nth-child(2) { animation-delay: -0.5s; } .focused .input-group-text, .focused .form-control, .preloader .lds-ripple div {  border-color: var(--color-primary) !important; } @keyframes lds-ripple {  0% { top: 36px; left: 36px; width: 0; height: 0; opacity: 1; }  100% { top: 0px; left: 0px; width: 72px; height: 72px; opacity: 0; } } .btn-primary { background-color: var(--color-primary); border-color: var(--color-primary); transition:.5s; } .btn-primary:hover, .btn-primary:focus { color: #fff; border-color: var(--color-primary); background-color: rgb(67, 22, 82); } .btn-primary.disabled, .btn-primary:disabled { background-color: var(--color-primary); } .cookies-alert {  position: fixed;  background: white none repeat scroll 0% 0%;  z-index: 1000;  bottom: 0px;  width: 95%;  margin: 2.5%;  padding: 24px;  box-shadow: rgba(76, 76, 76, 0.2) 0px 8px 16px 8px; }