:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #486898;
  --brand_red: #ed1c24;
  --dark-grey: #231f20;

  --acumin_light: Acumin_Light;
  --acumin_exlight: Acumin_exLight;
  --acumin_regular: acumin_regular;
  --acumin_medium: Acumin_Medium;
  --acumin_semibold: Acumin_Semibold;
  --acumin_bold: Acumin_Bold;

  --roboto_light: roboto_light;
  --roboto_reg: roboto_reg;
  --roboto_med: roboto_med;
  --roboto_bold: roboto_bold;
}

* {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  color: initial;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* MAIN FONT USED BY BODY */

@font-face {
  font-family: "Acumin_Light";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/AcuminPro-Light.ttf) format("truetype");
}

@font-face {
  font-family: "Acumin_exLight";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/AcuminPro-ExtraLight.ttf) format("truetype");
}

@font-face {
  font-family: "Acumin_Regular";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Acumin-RPro.woff) format("woff");
}

@font-face {
  font-family: "Acumin_Medium";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/AcuminPro-Medium.otf) format("opentype");
}

@font-face {
  font-family: "Acumin_Semibold";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/AcuminPro-Semibold.otf) format("opentype");
}

@font-face {
  font-family: "Acumin_Bold";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Acumin-BdPro.woff) format("woff");
}

@font-face {
  font-family: "roboto_light";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Roboto-Light.ttf) format("truetype");
}

@font-face {
  font-family: "roboto_reg";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Roboto-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "roboto_med";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Roboto-Medium.ttf) format("truetype");
}

@font-face {
  font-family: "roboto_bold";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Roboto-Bold.ttf) format("truetype");
}

/* END OF MAIN FONT USED BY BODY */

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  color: var(--dark-grey);
  font-family: var(--acumin_regular);
  font-size: 15px;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

.object-fit {
  object-fit: cover;
  object-position: center;

  object-position: center;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--black);
}

::selection {
  color: var(--white);
  background: var(--primary);
}

h3 {
  font-family: var(--acumin_bold);
  font-size: 80px;
  letter-spacing: -4.8px;
  line-height: 1.1em;
  margin-bottom: 10px;
}

section {
  position: relative;
}

input:-internal-autofill-selected {
  appearance: menulist-button;
  background-color: transparent !important;
  background-image: none !important;
  color: #fff !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:active,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:active,
select:-webkit-autofill:focus {
  background-color: transparent !important;
  color: #000 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #000 !important;
  -moz-text-fill-color: #000 !important;
  -webkit-box-shadow: 0 0 0 30px #F5F5F5 inset !important;
}

*:-webkit-autofill,
*:-webkit-autofill:hover,
*:-webkit-autofill:focus,
*:-webkit-autofill:active {
  /* use animation hack, if you have hard styled input */
  transition: all 5000s ease-in-out 0s;
  transition-property: background-color, color;
  /* if input has one color, and didn't have bg-image use shadow */
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  /* text color */
  -webkit-text-fill-color: #000;
  /* font weigth */
  font-weight: 500 !important;
}

.alert-success-wrap {
  display: flex;
  justify-content: center;
}

.alert-success {
  z-index: 11;
  max-width: 45%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 16px;
  position: absolute;
  top: 8%;
  animation: fadeIn 0.8s ease-in both;
  padding: 15px;
  background: rgba(229, 237, 228, 1);
  border-radius: 0;
  border: 0;
  color: #1F2127;
  font-size: 16px;
  font-family: var(--acumin_medium);
  line-height: 1;
}

.alert-success-img img {
  height: 45px;
  width: 45px;
}

.alert-dismissible .btn-close {
  position: absolute;
  font-size: 10px;
  top: 6px;
  right: 6px;
  z-index: 2;
  padding: 0;
}

.common-alert-success-wrap {
  display: flex;
  justify-content: center;
}

.common-alert-success {
  z-index: 11;
  max-width: 25%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 16px;
  position: absolute;
  top: 25%;
  animation: fadeIn 0.8s ease-in both;
  padding: 15px;
  background: rgba(229, 237, 228, 1);
  border-radius: 0;
  border: 0;
  color: #1F2127;
  font-size: 16px;
  font-family: var(--acumin_medium);
  line-height: 1;
}

.common-alert-success-img img {
  height: 45px;
  width: 45px;
}

.alert-dismissible .btn-close {
  position: absolute;
  font-size: 10px;
  top: 6px;
  right: 6px;
  z-index: 2;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {

  .hidden-xs,
  .hidden-sm {
    display: none !important;
  }
}