/* ##### ABSTRACTS ##### */
/* ==== Common colors ==== */
/* ==== Links colors ==== */
/* Easing/Timing */
/* =============== GOOGEL FONTS =============== */
/* =============== HTML =============== */
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* =============== BODY =============== */
/* =============== PAGE WRAPPER  =============== */
/* #### Adding Vendor Prefixes to the CSS #### */
/* ########## Fonts ######### */
/* ########### font weights ########## */
/* ########### Breakpoints ########## */
/* ########### Background ########## */
/* ########### Forms ########## */
/* ########### Animation ########## */
/* ########### Transition ########## */
/* ########### Box sizing ########## */
/* ########### Opacity ########## */
/* ###### Border and Border Radius ####### */
/* ########### Positioning ########## */
/* ########### Grid ########## */
@media (min-width: 768px) {
  .grid-row {
    display: -ms-grid;
    display: grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* ########### Flexbox ########## */
/* ########### Gradient ########## */
/* #### Truncate text on text overflow ### */
/* ########### Pseudo stylings ########## */
/* ########### Visibility & Display ########## */
/* ###########  padding & margins ########## */
/* ########### Misc ########## */
/* ########### list ########## */
/* ==========================================================================
  This mixin takes all the hassle out of creating that triangle you'll see coming out of most traditional tooltips, all without images, you just specify it's colour, how big you want it, the direction it's going to come out of your element and you're done!
  ========================================================================== */
@font-face {
  font-family: "TTNormsProThin";
  src: url("../fonts/TTNormsPro-Thin.eot");
  src: url("../fonts/TTNormsPro-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/TTNormsPro-Thin.woff") format("woff"), url("../fonts/TTNormsPro-Thin.ttf") format("truetype"), url("../fonts/TTNormsPro-Thin.svg#TTNormsProThin") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "TTNormsProRegular";
  src: url("../fonts/TTNormsPro-Regular.eot");
  src: url("../fonts/TTNormsPro-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/TTNormsPro-Regular.woff") format("woff"), url("../fonts/TTNormsPro-Regular.ttf") format("truetype"), url("../fonts/TTNormsPro-Regular.svg#TTNormsProRegular") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "TTNormsProMedium";
  src: url("../fonts/TTNormsPro-Medium.eot");
  src: url("../fonts/TTNormsPro-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/TTNormsPro-Medium.woff") format("woff"), url("../fonts/TTNormsPro-Medium.ttf") format("truetype"), url("../fonts/TTNormsPro-Medium.svg#TTNormsProMedium") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TTNormsProBold";
  src: url("../fonts/TTNormsPro-Bold.eot");
  src: url("../fonts/TTNormsPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/TTNormsPro-Bold.woff") format("woff"), url("../fonts/TTNormsPro-Bold.ttf") format("truetype"), url("../fonts/TTNormsPro-Bold.svg#TTNormsProBold") format("svg");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "TTNormsProExtraBold";
  src: url("../fonts/TTNormsPro-ExtraBold.eot");
  src: url("../fonts/TTNormsPro-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/TTNormsPro-ExtraBold.woff") format("woff"), url("../fonts/TTNormsPro-ExtraBold.ttf") format("truetype"), url("../fonts/TTNormsPro-ExtraBold.svg#TTNormsProExtraBold") format("svg");
  font-weight: 800;
  font-style: normal;
}
/* ##### BASE ##### */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

:not(.desc) > ul,
:not(.desc) > ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: unset;
  transition: all ease-in-out 300ms;
}
a:focus, a:hover {
  color: unset;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

img {
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}

textarea {
  resize: none;
}

img,
object,
embed,
video {
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button:focus {
  outline: 0;
  box-shadow: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 1.125rem;
}

body {
  min-height: 100vh;
  font-family: "TTNormsProRegular", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

p {
  font-family: "TTNormsProRegular", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  text-rendering: optimizeLegibility;
  font-family: "TTNormsProBold", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  margin-bottom: 0;
}

* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  margin-top: 0px;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 27px;
}

h3, .h3 {
  font-size: 21.06px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 14.94px;
}

h6, .h6 {
  font-size: 12.06px;
}

.event-details-list li span, .event-details-list li li, .event-details-list li, .event-title-sec, .event-title, .event-date, .btn, .desc.sec p, .desc p, .p-text-xxx-lg, .p-text-xx-lg, .p-text-x-lg, .p-text-lg, .p-text-md, .p-text-base, .p-text-sm, .p-text-x-sm, .p-text-xx-sm {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-family: "TTNormsProRegular", sans-serif;
}

.p-text-xx-sm {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .p-text-xx-sm {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .p-text-xx-sm {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.p-text-x-sm {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .p-text-x-sm {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .p-text-x-sm {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.p-text-sm {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .p-text-sm {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .p-text-sm {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.p-text-base {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .p-text-base {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .p-text-base {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.p-text-md {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .p-text-md {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .p-text-md {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.p-text-lg {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .p-text-lg {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .p-text-lg {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.p-text-x-lg {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .p-text-x-lg {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .p-text-x-lg {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.p-text-xx-lg {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .p-text-xx-lg {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .p-text-xx-lg {
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.p-text-xxx-lg {
  font-size: 27px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .p-text-xxx-lg {
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .p-text-xxx-lg {
    font-size: 35px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}

.text-white {
  color: #FFFFFF !important;
}

.text-black {
  color: #000000 !important;
}

.text-ecru {
  color: #D0B274 !important;
}

.text-onyx {
  color: #404045 !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-ecru {
  background-color: #D0B274 !important;
}

.bg-onyx {
  background-color: #404045 !important;
}

.fw-1 {
  font-weight: 100;
}

.fw-2 {
  font-weight: 200;
}

.fw-3 {
  font-weight: 300;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-6 {
  font-weight: 600;
}

.fw-7 {
  font-weight: 700;
}

.fw-8 {
  font-weight: 800;
}

.fw-9 {
  font-weight: 900;
}

.op-01 {
  opacity: 0.1;
}

.op-02 {
  opacity: 0.2;
}

.op-03 {
  opacity: 0.3;
}

.op-04 {
  opacity: 0.4;
}

.op-05 {
  opacity: 0.5;
}

.op-06 {
  opacity: 0.6;
}

.op-07 {
  opacity: 0.7;
}

.op-08 {
  opacity: 0.8;
}

.op-09 {
  opacity: 0.9;
}

.fs-4x-sm {
  font-size: 12px;
}

.fs-xxx-sm {
  font-size: 13px;
}

.fs-xx-sm {
  font-size: 14px;
}

.fs-x-sm {
  font-size: 15px;
}

.fs-sm {
  font-size: 16px;
}

.fs-base {
  font-size: 18px;
}

.fs-md {
  font-size: 18px;
}

.fs-lg {
  font-size: 20px;
}

.fs-x-lg {
  font-size: 24px;
}

.fs-xx-lg {
  font-size: 27px;
}

.fs-xxx-lg {
  font-size: 35px;
}

.lh-15 {
  line-height: 15px;
}

.lh-16 {
  line-height: 16px;
}

.lh-17 {
  line-height: 17px;
}

.lh-18 {
  line-height: 18px;
}

.lh-19 {
  line-height: 19px;
}

.lh-20 {
  line-height: 20px;
}

.lh-21 {
  line-height: 21px;
}

.lh-22 {
  line-height: 22px;
}

.lh-23 {
  line-height: 23px;
}

.lh-24 {
  line-height: 24px;
}

.lh-25 {
  line-height: 25px;
}

.lh-26 {
  line-height: 26px;
}

.lh-27 {
  line-height: 27px;
}

.lh-28 {
  line-height: 28px;
}

.lh-29 {
  line-height: 29px;
}

.lh-30 {
  line-height: 30px;
}

.lh-31 {
  line-height: 31px;
}

.lh-32 {
  line-height: 32px;
}

.lh-33 {
  line-height: 33px;
}

.lh-34 {
  line-height: 34px;
}

.lh-35 {
  line-height: 35px;
}

.lh-36 {
  line-height: 36px;
}

.lh-37 {
  line-height: 37px;
}

.lh-38 {
  line-height: 38px;
}

.lh-39 {
  line-height: 39px;
}

.lh-40 {
  line-height: 40px;
}

.lh-41 {
  line-height: 41px;
}

.lh-42 {
  line-height: 42px;
}

.lh-43 {
  line-height: 43px;
}

.lh-44 {
  line-height: 44px;
}

.lh-45 {
  line-height: 45px;
}

.lh-46 {
  line-height: 46px;
}

.lh-47 {
  line-height: 47px;
}

.lh-48 {
  line-height: 48px;
}

.lh-49 {
  line-height: 49px;
}

.lh-50 {
  line-height: 50px;
}

.font-TTBold {
  font-family: "TTNormsProBold", sans-serif !important;
}
.font-ExtraBold {
  font-family: "TTNormsProExtraBold", sans-serif !important;
}
.font-Medium {
  font-family: "TTNormsProMedium", sans-serif !important;
}
.font-Regular {
  font-family: "TTNormsProRegular", sans-serif !important;
}
.font-Thin {
  font-family: "TTNormsProThin", sans-serif !important;
}

.op-none {
  opacity: 1 !important;
}

.img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.no-wrap {
  white-space: nowrap;
}

.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}

.w-fit {
  width: fit-content;
}

.z-low {
  z-index: 10;
}
.z-mid {
  z-index: 100;
}
.z-high {
  z-index: 1000;
}

.bg-none {
  background: transparent !important;
}

.is-hidden {
  display: none;
  visibility: hidden;
}

.cf:after {
  content: "";
  display: table;
  clear: both;
}

.vh-100 {
  height: 100vh !important;
}

.min-width-auto {
  min-width: auto !important;
}

.bg-property {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.desc.sec p, .desc p {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: normal;
  margin: 0;
  margin-bottom: 18px;
}
@media (min-width: 576px) {
  .desc.sec p, .desc p {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .desc.sec p, .desc p {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}

.desc p {
  color: rgba(255, 255, 255, 0.5);
}
.desc.sec p {
  color: #000000;
}

/*====================================================================================*/
/* ##### COMPONENTS ##### */
.btn {
  display: inline-block;
  white-space: nowrap;
  font-family: "TTNormsProRegular", sans-serif;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  user-select: none;
  border: none !important;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: normal;
  margin: 0;
  padding-bottom: 0;
  padding-top: 0;
  transition: all ease-in-out 300ms;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 600;
}
@media (min-width: 576px) {
  .btn {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .btn {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}

.btn, .btn:link, .btn:visited {
  color: #FFFFFF;
}
.btn:hover, .btn:active, .btn:focus {
  background-color: #000000;
  color: #FFFFFF;
  transition: all ease-in-out 300ms;
}
.btn.disabled, .btn[disabled] {
  cursor: default;
  background-color: #000000;
  opacity: 0.7;
}
.btn-primary, .btn-primary:link, .btn-primary:visited {
  border-radius: 0 !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  -ms-border-radius: 8px !important;
  border-radius: 8px !important;
  background-color: #000000;
  transition: all ease-in-out 300ms;
}

.banner-title {
  font-family: "TTNormsProExtraBold", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.4;
  letter-spacing: normal;
  margin-bottom: 15px;
  text-align: center;
}
@media (min-width: 576px) {
  .banner-title {
    font-size: 46px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .banner-title {
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 1400px) {
  .banner-title {
    font-size: 56px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.banner-title span {
  color: #D0B274;
}

.banner-title {
  color: rgba(255, 255, 255, 0.7);
}

.sc-title {
  font-family: "TTNormsProBold", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.4;
  letter-spacing: normal;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .sc-title {
    font-size: 46px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .sc-title {
    font-size: 52px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 1400px) {
  .sc-title {
    font-size: 56px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}

.sc-title {
  color: rgba(255, 255, 255, 0.7);
}

.achievements-title {
  font-family: "TTNormsProBold", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: normal;
  margin-bottom: 15px;
  position: relative;
  z-index: initial;
  width: fit-content;
}
@media (min-width: 992px) {
  .achievements-title {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (min-width: 576px) {
  .achievements-title {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .achievements-title {
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 1400px) {
  .achievements-title {
    font-size: 42px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.achievements-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 20%;
  height: 4px;
  background-color: rgba(208, 178, 116, 0.9);
}

/* ##### LAYOUT ##### */
.header {
  position: absolute;
  z-index: initial;
  top: 5%;
  left: 0;
  width: 100%;
  z-index: 2;
}
.header .img-cover {
  width: 110px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .header .img-cover {
    width: 90px;
    height: 160px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-link {
    margin-right: 7px;
  }
}
@media (min-width: 1200px) {
  .navbar .nav-link {
    margin-right: 24px;
  }
}

/* ##### VENDORS ##### */
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

.slick-dots li button::before {
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.5 !important;
  transform: scale(2);
}
.slick-dots li.slick-active button::before {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1 !important;
  transform: scale(2.2);
}
.slick-arrow::before {
  font-family: "Font awesome 5 free";
  font-weight: 900;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  opacity: 1;
  font-size: 14px;
}
.slick-arrow.slick-disabled::before {
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.slick-prev {
  left: -15px !important;
  z-index: 1000;
}
.slick-prev::before {
  content: "\f104";
}
.slick-next {
  right: 0 !important;
  z-index: 1000;
}
.slick-next::before {
  content: "\f105";
}

/* ##### PAGES ##### */
body {
  background-color: #404045;
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.sc-banner {
  height: 100dvh;
  position: relative;
  z-index: initial;
}
.sc-banner .container {
  height: 100%;
}
.sc-banner .banner-image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: initial;
  left: 0;
  top: 0;
}
.sc-banner .banner-image::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(64, 64, 69, 0.8);
}
.sc-banner .banner-image img {
  width: 100%;
  height: 100%;
}
.sc-banner .banner-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: initial;
  z-index: 2;
}

@keyframes fade-out {
  to {
    opacity: 0;
  }
}
@keyframes banner-animation {
  25% {
    opacity: 1;
  }
  85%, 100% {
    opacity: 0;
    scale: 1.5;
  }
}
.socialmedia {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  margin-top: 10px !important;
  margin-bottom: 0;
  gap: 10px;
}
.socialmedia-link .img-cover {
  width: 45px;
  height: 45px;
}
.socialmedia-link .img-cover img {
  filter: brightness(80%);
  transition: all ease-in-out 300ms;
}
.socialmedia-link:hover .img-cover img {
  filter: brightness(100%);
  transition: all ease-in-out 300ms;
}

.sc-about .img-cover {
  width: 500px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .sc-about .img-cover {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 575.98px) {
  .sc-about .img-cover {
    width: 300px;
    height: 300px;
  }
}
.sc-about .sc-title {
  text-align: center;
}
.sc-about .desc {
  text-align: center;
}
@media (max-width: 991.98px) {
  .sc-about .sc-title {
    text-align: center;
  }
  .sc-about .desc {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .grid-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991.98px) {
  .grid-row {
    display: grid;
    gap: 50px;
  }
}

.record-row {
  margin-top: 40px;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: stretch;
}

.timeline-column {
  position: relative;
  z-index: initial;
}
.timeline-column::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
}

.event-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 10px;
}
.event-header .img-cover {
  width: 25px;
  height: 25px;
  display: none;
}
.event-detail {
  position: relative;
  z-index: initial;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #343438;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  z-index: initial;
  z-index: 1;
  margin-top: 20px;
  margin-bottom: 20px;
}
.event-detail::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #404045;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  right: 111%;
  transform: translateY(-50%);
  top: 30%;
  outline: 3px solid rgba(255, 255, 255, 0.5);
  transition: all ease-in-out 300ms;
}
.event-detail::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(111% - 517px);
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  right: 100%;
  transform: translateY(-50%);
  top: 30%;
  outline: 2px solid rgba(208, 178, 116, 0);
  transition: all ease-in-out 300ms;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .event-detail::before {
    width: calc(104% - 517px);
    height: 2px;
  }
}
.event-detail:hover::after {
  background-color: #a68238;
  transition: all ease-in-out 300ms;
}
.event-date {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .event-date {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .event-date {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.event-title {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: normal;
  color: #D0B274;
  font-family: "TTNormsProMedium", sans-serif;
  font-weight: 500;
  display: flex;
}
@media (min-width: 576px) {
  .event-title {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .event-title {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.event-title-sec {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: normal;
  font-family: "TTNormsProMedium", sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 576px) {
  .event-title-sec {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .event-title-sec {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.event-details-list {
  list-style-position: inside;
  list-style-type: circle !important;
  height: 0;
  overflow: hidden;
  transition: all ease-in-out 300ms;
}
.event-details-list.show {
  transition: all ease-in-out 300ms;
}
.event-details-list li {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 10px;
}
@media (min-width: 576px) {
  .event-details-list li {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .event-details-list li {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.event-details-list li ul {
  display: flex;
  flex-wrap: wrap;
}
.event-details-list li li {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .event-details-list li li {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .event-details-list li li {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
.event-details-list li span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: normal;
}
@media (min-width: 576px) {
  .event-details-list li span {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) {
  .event-details-list li span {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: normal;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=main.css.map */