: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;
  --acumin_exbold: Acumin_exBold;

  --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_exBold";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/AcuminPro-Black.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: 5px;
}

::-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: 72px;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #231f20;
  text-transform: capitalize;
}

section {
  position: relative;
}

input:-internal-autofill-selected {
  appearance: menulist-button;
  background-color: transparent !important;
  background-image: none !important;
  color: #000000 !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: #000000 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #000000 !important;
  -moz-text-fill-color: #000000 !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;
}

.sec-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.custom-container {
  padding-left: 120px;
  padding-right: 120px;
}

.cu-float-left {
  float: left;
  width: 100%;
}

@media screen and (max-width: 1600px) {
  .sec-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 1500px) {
  .custom-container {
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media screen and (max-width: 1200px) {
  .custom-container {
    padding-left: 45px;
    padding-right: 45px;
  }
}


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

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

  .custom-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .sec-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}