@font-face {
	font-family: "Segoe UI";
	src: url("../fonts/Segoe UI Light 300.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
  }

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/Segoe UI 400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/Segoe UI Semibold 600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/Segoe UI Gras 700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/Segoe UI Black 900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/Segoe UI Italique 400.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/Segoe UI Semibold Italic 600.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/Segoe UI Gras Italique 700.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/Segoe UI Black Italic 900.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

:root {
  --pcolor: #072C51;
  --scolor: #80BB0E;
  --slight: #99CC33;
  --textcolor: #242424;
  --border: #dbdbdb;
  --cream: #F8F8F8;
  --gray: #c9c9c9;
  --box-shadow: 0px 0px 4px 0px #00000040;
  --headingfont: 38px;
  --subheadingfont: 24px;
  --bigpara: 22px;
  --primaryfont: 16px;
  --smallfont: 12px;
  --sectionpadding: 55px;
}

/* GLOBAL RESETS
**********************************************************/
body {
  counter-reset: my-sec-counter;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
  resize: none;
}

body {
  line-height: 1;
}
button {
  line-height: 1;
}
a,
a:hover {
  text-decoration: none !important;
  outline: none;
}
a:active,
a:focus {
  outline: 0;
}
img {
  border: none;
  vertical-align: top;
}
textarea {
  resize: none;
}
input {
  visibility: visible;
  outline: 0px !important;
}
/* INDIVIDUAL RESET */
.reset {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strong {
  font-weight: bold;
}
/*HTML5 Reset*/
header,
footer,
aside,
article,
nav,
hgroup,
section {
  display: block;
}
a:hover {
  text-decoration: none !important;
}
.resetbtn {
  outline: 0px !important;
  box-shadow: none !important;
  border: 0px;
  background-color: #fff0;
}
.width100 {
  width: 100%;
}
h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}
h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}
h3 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 15px;
}
h4 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 15px;
}
h5 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}
h6 {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

p,
span,
li {
  font-size: var(--primaryfont);
  line-height: 1.3;
}

.richtext ul li {
  position: relative;
  list-style-type: none;
  padding-left: 15px;
}
.richtext ul li:before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  left: 0px;
  border-radius: 50%;
  border: 2px solid var(--pcolor);
  top: 7px;
}
.richtext ol li {
  list-style-position: inside;
}

.richtext,
.richtext p,
.richtext span {
  font-size: var(--primaryfont);
  line-height: 1.5;
}

/*//Loader code css*/
div#loader-wrapper {
  position: fixed;
  background: #000000;
  height: 100vh;
  width: 100%;
  z-index: 9999999999;
  text-align: center;
  top: 0;
  left: 0;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff00;
  border-right: 2px solid #ffffff;
  animation: loaderanimate 1s linear infinite;
}

@keyframes loaderanimate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.loader img {
  max-width: 250px;
  margin: auto;
  animation: anti-loaderanimate 1s linear infinite;
}

@keyframes anti-loaderanimate {
  0% {
    transform: rotate(360deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/*//Loader code css*/
