@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*font-family: "Poppins", sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
/*font-family: "Nunito", sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');
/*font-family: "PT Sans Narrow", sans-serif;*/
/* ========== Reset CSS ========== */
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, 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,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a,
a:hover,
a:focus,
a:visited,
a:active {
	outline: none;
	text-decoration: none;
}
/* ========== End Reset CSS ==========*/

/* ========== Custom Colors ========== */
:root {
  --cont-xs: 600px;
  --cont-sm: 800px;
  --cont-md: 1200px;
  --cont-lg: 1440px;
  --cont-xl: 1920px;

  /* Font-size - Here you can change the font size according to the design from Figma. */
  --font-xs:   clamp(12px, calc(10px + 0.5vw), 14px);
  --font-sm:   clamp(14px, calc(12px + 0.5vw), 16px);
  --font-base: clamp(16px, calc(14px + 0.6vw), 18px);
  --font-md:   clamp(20px, calc(18px + 0.7vw), 24px);
  --font-lg:   clamp(24px, calc(20px + 1vw), 28px);
  --font-xl:   clamp(32px, calc(26px + 1.2vw), 36px);
  --font-xxl:  clamp(40px, calc(32px + 1.5vw), 48px);
  --font-xxxl: clamp(48px, calc(38px + 2vw), 64px);

  --font-base: clamp(16px, calc(14px + 0.6vw), 18px);

	/* Background - Here you can change the background according to the design from Figma. */
	--Primary-bg: #000;
	--Secondary-bg: #ccc;
	--Brand-bg: #e9ecef;
	--Primaty-bg: #000;

	/* Colors - Here you can change the colors according to the design from Figma. */
	--Dark-Black-color: #000;
	--White-color: #fff;
	--Red-color: #f54242;
	--Green-color: #009614;
	--Blue-color: #071bf7;

	/*Buttons*/
  --Primary-btn: #0A0203;
  --Secondary-btn: #5E5E5E;
  --Brand-btn: transparent;
  --Link-btn: transparent;
  --Fill-WP-btn: #000;
  --Outline-WP-btn: #fff;

  /*Font-family for Heading (h1-h6)*/
  --font-family-headline: "PT Sans Narrow", sans-serif;
  /*Font-family for other text*/
  --font-family-body-copy: "Nunito", sans-serif;
}

/* ========== Containers ========== */
.cont-xs { max-width: var(--cont-xs); }
.cont-sm { max-width: var(--cont-sm); }
.cont-md { max-width: var(--cont-md); }
.cont-lg { max-width: var(--cont-lg); }
.cont-xl { max-width: var(--cont-xl); }
.cont-full-width {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

[class*="cont-"] {
  position: relative;
  margin: 0 auto;
}

/* ========== Rows & gutters ========== */
.row {
  --gutter-x: 24px;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-.5 * var(--gutter-x));
  margin-left:  calc(-.5 * var(--gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * .5);
  padding-left:  calc(var(--gutter-x) * .5);
  margin-top: var(--gutter-y);
}

[class^="col-"] {
  padding: 15px;
  margin: 24px 0;
}

/* ========== Columns ========== */
.col { flex: 1 0 0%; }
.col-auto { flex: 0 0 auto; width: auto; }

.col-1  { flex: 0 0 auto; width: 8.333333%; }
.col-2  { width: 16.666667%; }
.col-3  { width: 25%; }
.col-4  { width: 33.333333%; }
.col-5  { width: 41.666667%; }
.col-6  { width: 50%; }
.col-7  { width: 58.333333%; }
.col-8  { width: 66.666667%; }
.col-9  { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666667%; }
.col-12 { width: 100%; }

/* ========== Flex/Grid Utilities ========== */
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }

/* ========== Text Utilities ========== */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-capitalize { text-transform: capitalize !important; }

/* ========== Body & paragraphs ========== */
p {
  font-size: var(--font-base);
  font-family: var(--font-family-text);
  line-height: 1.6;
  margin-bottom: 1em;
}

/* ========== Inline text ========== */
small   { font-size: var(--font-sm);   line-height: 1.5; }
.tiny   { font-size: var(--font-xs);   line-height: 1.5; }
strong  { font-weight: 700; }
em      { font-style: italic; }

/* ========== Lists ========== */
ul, ol {
  font-size: var(--font-base);
  line-height: 1.6;
  margin: 1em 0 1em 1.25em;
  padding: 0;
}
ul { list-style-type: disc; }
ol { list-style-type: decimal; }

/* ========== Blockquote ========== */
blockquote {
  font-size: var(--font-md);
  line-height: 1.6;
  margin: 1.5em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
  font-style: italic;
  color: #555;
}

/* ========== Code & pre ========== */
code, pre {
  font-family: monospace;
  font-size: var(--font-sm);
  background: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 4px;
}
pre {
  display: block;
  padding: 1em;
  overflow-x: auto;
}

/* ========== Custom Heading ========== */
h1,
.h1 {
    color: var(--Dark-Grey);
    font-family: var(--font-family-headline);
    font-size: var(--font-xxxl);
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
}

h2,
.h2 {
    color: var(--Dark-Grey);
    font-family: var(--font-family-headlines);
    font-size: var(--font-xxl);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

h3,
.h3 {
    color: var(--Dark-Grey);
    font-family: var(--font-family-headline);
    font-size: var(--font-xl);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

h4,
.h4 {
    color: var(--Dark-Grey);
    font-family: var(--font-family-headlines);
    font-size: var(--font-lg);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

h5,
.h5 {
    color: var(--Dark-Grey);
    font-family: var(--font-family-headline);
    font-size: var(--font-md);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 4.8px;
    text-transform: uppercase;
}

h6,
.h6 {
    color: var(--Dark-Grey);
    font-family: var(--font-family-headlines);
    font-size: var(--font-base);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}



img {
  display: block;
  width: 100%;
  height: 100%;
}

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 32px !important; }
.mt-4 { margin-top: 64px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 32px !important; }
.mb-4 { margin-bottom: 64px !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 8px !important; }
.p-2 { padding: 16px !important; }
.p-3 { padding: 32px !important; }
.p-4 { padding: 64px !important; }

/* ========== Breakpoints (sm, md, lg, xl, xxl) ========== */
@media (min-width: 576px) {
  .col-sm   { flex: 1 0 0%; }
  .col-sm-auto { flex: 0 0 auto; width: auto; }
  .col-sm-1  { width: 8.333333%; } .col-sm-2  { width: 16.666667%; }
  .col-sm-3  { width: 25%; }       .col-sm-4  { width: 33.333333%; }
  .col-sm-5  { width: 41.666667%; }.col-sm-6  { width: 50%; }
  .col-sm-7  { width: 58.333333%; }.col-sm-8  { width: 66.666667%; }
  .col-sm-9  { width: 75%; }       .col-sm-10 { width: 83.333333%; }
  .col-sm-11 { width: 91.666667%; }.col-sm-12 { width: 100%; }
  .offset-sm-1  { margin-left: 8.333333%; }  .offset-sm-2  { margin-left: 16.666667%; }
  .offset-sm-3  { margin-left: 25%; }        .offset-sm-4  { margin-left: 33.333333%; }
  .offset-sm-5  { margin-left: 41.666667%; } .offset-sm-6  { margin-left: 50%; }
  .offset-sm-7  { margin-left: 58.333333%; } .offset-sm-8  { margin-left: 66.666667%; }
  .offset-sm-9  { margin-left: 75%; }        .offset-sm-10 { margin-left: 83.333333%; }
  .offset-sm-11 { margin-left: 91.666667%; }
}
@media (min-width: 768px) {
  .col-md   { flex: 1 0 0%; }
  .col-md-auto { flex: 0 0 auto; width: auto; }
  .col-md-1  { width: 8.333333%; } .col-md-2  { width: 16.666667%; }
  .col-md-3  { width: 25%; }       .col-md-4  { width: 33.333333%; }
  .col-md-5  { width: 41.666667%; }.col-md-6  { width: 50%; }
  .col-md-7  { width: 58.333333%; }.col-md-8  { width: 66.666667%; }
  .col-md-9  { width: 75%; }       .col-md-10 { width: 83.333333%; }

  .col-md-11 { width: 91.666667%; }.col-md-12 { width: 100%; }
  .offset-md-1  { margin-left: 8.333333%; }  .offset-md-2  { margin-left: 16.666667%; }
  .offset-md-3  { margin-left: 25%; }        .offset-md-4  { margin-left: 33.333333%; }
  .offset-md-5  { margin-left: 41.666667%; } .offset-md-6  { margin-left: 50%; }
  .offset-md-7  { margin-left: 58.333333%; } .offset-md-8  { margin-left: 66.666667%; }
  .offset-md-9  { margin-left: 75%; }        .offset-md-10 { margin-left: 83.333333%; }
  .offset-md-11 { margin-left: 91.666667%; }
}
@media (min-width: 992px) {
  .col-lg, .col-lg-auto { }
  .col-lg   { flex: 1 0 0%; }
  .col-lg-auto { flex: 0 0 auto; width: auto; }
  .col-lg-1  { width: 8.333333%; } .col-lg-2  { width: 16.666667%; }
  .col-lg-3  { width: 25%; }       .col-lg-4  { width: 33.333333%; }
  .col-lg-5  { width: 41.666667%; }.col-lg-6  { width: 50%; }
  .col-lg-7  { width: 58.333333%; }.col-lg-8  { width: 66.666667%; }
  .col-lg-9  { width: 75%; }       .col-lg-10 { width: 83.333333%; }
  .col-lg-11 { width: 91.666667%; }.col-lg-12 { width: 100%; }
  .offset-lg-1  { margin-left: 8.333333%; }  .offset-lg-2  { margin-left: 16.666667%; }
  .offset-lg-3  { margin-left: 25%; }        .offset-lg-4  { margin-left: 33.333333%; }
  .offset-lg-5  { margin-left: 41.666667%; } .offset-lg-6  { margin-left: 50%; }
  .offset-lg-7  { margin-left: 58.333333%; } .offset-lg-8  { margin-left: 66.666667%; }
  .offset-lg-9  { margin-left: 75%; }        .offset-lg-10 { margin-left: 83.333333%; }
  .offset-lg-11 { margin-left: 91.666667%; }
}
@media (min-width: 1200px) {
  .col-xl   { flex: 1 0 0%; }
  .col-xl-auto { flex: 0 0 auto; width: auto; }
  .col-xl-1  { width: 8.333333%; } .col-xl-2  { width: 16.666667%; }
  .col-xl-3  { width: 25%; }       .col-xl-4  { width: 33.333333%; }
  .col-xl-5  { width: 41.666667%; }.col-xl-6  { width: 50%; }
  .col-xl-7  { width: 58.333333%; }.col-xl-8  { width: 66.666667%; }
  .col-xl-9  { width: 75%; }       .col-xl-10 { width: 83.333333%; }
  .col-xl-11 { width: 91.666667%; }.col-xl-12 { width: 100%; }
  .offset-xl-1  { margin-left: 8.333333%; }  .offset-xl-2  { margin-left: 16.666667%; }
  .offset-xl-3  { margin-left: 25%; }        .offset-xl-4  { margin-left: 33.333333%; }
  .offset-xl-5  { margin-left: 41.666667%; } .offset-xl-6  { margin-left: 50%; }
  .offset-xl-7  { margin-left: 58.333333%; } .offset-xl-8  { margin-left: 66.666667%; }
  .offset-xl-9  { margin-left: 75%; }        .offset-xl-10 { margin-left: 83.333333%; }
  .offset-xl-11 { margin-left: 91.666667%; }
}
@media (min-width: 1400px) {
  .col-xxl   { flex: 1 0 0%; }
  .col-xxl-auto { flex: 0 0 auto; width: auto; }
  .col-xxl-1  { width: 8.333333%; } .col-xxl-2  { width: 16.666667%; }
  .col-xxl-3  { width: 25%; }       .col-xxl-4  { width: 33.333333%; }
  .col-xxl-5  { width: 41.666667%; }.col-xxl-6  { width: 50%; }
  .col-xxl-7  { width: 58.333333%; }.col-xxl-8  { width: 66.666667%; }
  .col-xxl-9  { width: 75%; }       .col-xxl-10 { width: 83.333333%; }
  .col-xxl-11 { width: 91.666667%; }.col-xxl-12 { width: 100%; }
  .offset-xxl-1  { margin-left: 8.333333%; }  .offset-xxl-2  { margin-left: 16.666667%; }
  .offset-xxl-3  { margin-left: 25%; }        .offset-xxl-4  { margin-left: 33.333333%; }
  .offset-xxl-5  { margin-left: 41.666667%; } .offset-xxl-6  { margin-left: 50%; }
  .offset-xxl-7  { margin-left: 58.333333%; } .offset-xxl-8  { margin-left: 66.666667%; }
  .offset-xxl-9  { margin-left: 75%; }        .offset-xxl-10 { margin-left: 83.333333%; }
  .offset-xxl-11 { margin-left: 91.666667%; }
}

/* ========== Display helpers (optional) ========== */
.d-flex {
	display: flex !important;
}
.d-none {
	display: none !important;
}
/* ========== Loader ========== */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 999;
    display: none;
}
.loader.is_loading {
    display: block;
}

/* ========== Skip to main content ========== */
a.skip-main{left:-999px;position:absolute;top:auto;width:1px;height:1px;overflow:hidden;z-index:-999}a.skip-main:focus,a.skip-main:active{color:#fff;background-color:#000;left:auto;top:auto;width:30%;height:auto;overflow:auto;margin:10px 35%;padding:5px;border-radius:15px;border:4px solid yellow;text-align:center;font-size:1.2em;z-index:999}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

@media (min-width: 768px) {
	.d-md-block {
		display: block !important;
	}
}

