:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #486898;
  --brand_red: #ed1c24;

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

  --roboto_light: roboto_light;
  --roboto_reg: roboto_reg;
  --roboto_bold: roboto_Bold;
  --roboto_med: Roboto-Medium;
}

* {
  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_bold";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Roboto-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Acumin_exBold";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/AcuminPro-Black.otf) format("opentype");
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Roboto-Medium.ttf) format("truetype");
}

/* END OF MAIN FONT USED BY BODY */

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

body {
  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);
}

section {
  position: relative;
  overflow: hidden;
}
