/*  FONTS  */
@font-face {
  font-family: "jersey";
  src: url(../assets/fonts/jersey.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "axiforma";
  src: url(../assets/fonts/axiforma.otf);
  font-weight: 400;
}
@font-face {
  font-family: "axiforma-semibold";
  src: url(../assets/fonts/axiforma-semibold.otf);
  font-weight: 600;
}
@font-face {
  font-family: "axiforma-bold";
  src: url(../assets/fonts/axiforma-bold.otf);
  font-weight: 700;
}
@font-face {
  font-family: "axiforma-black";
  src: url(../assets/fonts/axiforma-black.otf);
  font-weight: 900;
}
/*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,
input,
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;
  box-sizing: border-box;
}
:root {
  --white: #fff;
  --black: #000;
  --orange: #fe5000;
  --gray: rgba(177, 177, 177, 0.1);
  --jersey: "jersey";
  --axiforma: "axiforma";
  --axiforma-semibold: "axiforma-semibold";
  --axiforma-bold: "axiforma-bold";
  --axiforma-black: "axiforma-black";
}
html {
  font-family: var(--axiforma);
  font-style: normal;
  font-size: 20px;
  line-height: 1.6rem;
  color: var(--black);
}
@page {
  size: A4;
  margin: 0;
  padding: 4cm;
  width: 100%;
}
@media print {
  body, .container {
    max-width: 100%;
    width: 100%;
  }
  li {
    line-height: 1.5em;
  }
  h2.event-timing {
    text-align: center;
  }
  table.table.event-table td {
    line-height: 1.5em !important;
  }
  table.table.event-table td ul {
    line-height: 1.5em !important;
    padding: 10px 20px 10px 20px;
  }
}
@media (min-width: 1921px) {
  .container {
    max-width: 1700px !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1920px) {
  .container {
    max-width: 94%;
  }
}
.text-orange {
  color: var(--orange);
}

::selection {
  color: var(--white);
  background: var(--orange);
}

/* HEADER CSS */
header {
  padding: 20px 0 0;
}
.header-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header-logo img {
  height: 80px;
}
.go-mental-logo img {
  height: 150px;
}

/* FOOTER CSS */
footer {
  padding: 20px 0;
}
.footer-logo img {
  height: 80px;
}
.go-mental-logo img {
  height: 150px;
}

/* HERO SECTION CSS */
.hero {
  padding: 0 0 100px;
}
.hero-heading {
  font-size: 70px;
  font-family: var(--axiforma-black);
  text-transform: uppercase;
  color: var(--orange);
  line-height: 100px;
  display: inline-block;
}
.hero-heading-line {
  height: 12px;
  width: 20%;
  background: black;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 24%;
}
.hero-arrow-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -14px);
  }
  60% {
    transform: translate(-50%, -7px);
  }
}

/* EVENTS SECTION */
#schedules {
  padding: 50px 0;
}
.event-head {
  font-size: 40px;
  font-family: var(--axiforma-bold);
  margin-bottom: 40px;
}
.event-timing {
  font-size: 45px;
  font-family: var(--axiforma-bold);
  margin-bottom: 40px;
  color: #fe5000;
  text-align: left;
}
.event-table {
    border-radius: 10px;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: inset 0 0 6px #b1b1b1;
}
.event-table th {
  font-family: var(--axiforma-semibold);
  font-size: 32px;
  background: var(--gray);
  padding: 30px 20px 20px;
  border: 1px solid #dee2e6 !important;
}
.event-table thead {
  border-bottom: 5px solid var(--orange);
  text-align: center;
}
.event-table td {
  font-family: var(--axiforma);
  font-size: 28px;
  line-height: 40px;
  background: var(--gray);
  padding: 10px 20px;
  border: 1px solid #dee2e6 !important;
}
/*.event-table tr td:not(:first-child) {
    font-size: 24px;
}*/
.text-18 {
  font-size: 18px;
}
.event-table td .text-orange {
  font-family: var(--axiforma-semibold);
  font-size: 24px;
  margin-top: -3px;
  display: inline-block;
  white-space: nowrap;
}
.events-day-2,
.events-day-3 {
  margin-top: 100px;
}
.table.event-table td ul {
  padding: 10px 55px;
  line-height: 2.6rem;
}
table.table.event-table td {
  text-align: center;
  line-height: 2.2rem;
}
table.table.event-table td:last-child {
  text-align: left;
}
table.table.event-table th:first-child {
  width: 15%;
}
table.table.event-table th:nth-child(2) {
  width: 25%;
}
/* CONCLUSION CSS */
.conclusion {
  padding-bottom: 50px;
}
.conclusion h2 {
  font-size: 24px;
  font-family: var(--axiforma-semibold);
}
.conclusion p {
  font-size: 18px;
  font-style: italic;
  margin-top: 14px;
}
