:root {
    --ct_navbg: #292f3a;
    --ct_sectionbg: #232935;
    --ct_bodybg: #1d212a;
    --ct_darkerbg: #171a20;
    --ct_fadedcolour: #888b8f;
    --ct_firered: #C32F27;
    --ct_iceblue: #9CFFFA;
    --ct_darkpink: #EA9AB2;
    --ct_lightpink: #EFCFE3;
    --ct_lightgreen: #9CFC97;
    --ct_coolgrey: #9097C0;
    --ct_powderblue: #A7BBEC;
    --ct_sunglow: #FFD23F;
    --ct_hoverBlue: #2a3178;
    --ct_darkblue: #1C2260;
    --ct_fadedBlue: #21296e;
    --darktext: rgba(17, 43, 74, 0.75);
    --basefont: 'Outfit', sans-serif;
    --titlefont: 'Spectral SC', serif;
    --navwidth: 260px;
    --topbarheight: 70px;
    --mobileHeading: 17px;
    --mobilePara: 15px;
    --sectionPadding: 3%;
    --titleborder: rgba(255, 255, 255, 0.1);
}

* {
	font-family: var(--basefont);
}

.hidden-scrollbar {
  overflow: auto; /* or scroll */
  scrollbar-width: none; /* Firefox */
}

.hidden-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.nounderline {
    text-decoration: none !important;
}

table {
    width: 100%;
}

h1, h2, h3, h4, h5, h6, p, ul {
	margin-bottom: 0px !important;
}

input:focus {
    outline: none !important;
}

select:focus {
    outline: none !important;
}

textarea {
    resize: none !important;
}

textarea:focus {
    outline: none !important;
}

h3.title {
    color: white;
    font-weight: 400;
    font-size: 18px;
}

h3.title a {
    color: var(--ct_coolgrey);
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
}

h3.title.big {
    font-size: 24px;
    font-weight: 400;
}

h3.title.big a {
    color: var(--ct_coolgrey);
    font-weight: 400;
    font-size: 24px;
    text-decoration: none;
}

p.subtitle {
    color: var(--ct_fadedcolour);
    font-weight: 300;
    font-size: 13px;
}

p.subtitle a {
    color: var(--ct_coolgrey);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
}

p.subtitle.big {
    color: var(--ct_fadedcolour);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
}

p.subtitle.big a {
    color: var(--ct_coolgrey);
    text-decoration: none;
    font-size: 16px;
}

#pageWrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.container {
    padding-left: 0px !important;
    padding-right: 0px !important;
    max-width: 1400px !important;
    padding-bottom: 3vh;
}

.ctBox {
    padding-left: 0px !important;
    padding-right: 0px !important;
    max-width: 1400px !important;
    height: 100%;
    width: 100%;
}

.flex {
    display: flex;
}

.flex.center {
    justify-content: center;
    align-items: center;
}

.flex.ver {
    flex-direction: column;
}

.flex.hor {
    flex-direction: row;
}

body {
    background-color: var(--ct_bodybg) !important;
    overflow-x: hidden;
}

.hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
}

.homeFaded {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.05;
}

.fadeOut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(29, 33, 42, 0) 0%,
    rgba(29, 33, 42, 0.7) 70%,
    var(--ct_bodybg) 100%
  );
}

img.background {
    width: 100%;
    opacity: 0.2;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

/** Home Banner **/

#homeBanner {
    overflow: hidden;
    height: 100vh;
    position: relative;
}

#homeBanner img.background {
    opacity: 0.1 !important;
}

#homeBanner h1 {
    color: wheat;
    font-size: 36px;
    font-weight: 600;
    font-family: var(--titlefont);
    margin-top: 20px;
}

#homeBanner h3 {
    color: var(--ct_fadedcolour);
    font-size: 18px;
    font-weight: 400;
}

#homeBanner h4 {
    color: white;
    font-size: 18px;
    font-weight: 400;
}

#homeBanner p {
    color: var(--ct_fadedcolour);
    font-size: 15px;
    font-weight: 400;
}

#homeBanner img {
    width: 180px;
    border-radius: 100px;
    border: 5px solid white;
}

#homeBanner ul {
    list-style: none;
    padding-left: 0px;
    margin-top: 20px;
}

#homeBanner ul li {
    display: inline;
    padding: 15px;
}

#homeBanner ul li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

#homeBanner ul.privacyLinks {
    list-style: none;
    margin-top: 20px;
}

#homeBanner ul.privacyLinks li {
    padding: 15px;
    color: white;
    display: block;
}

#homeBanner ul.privacyLinks li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

/** Home Sections **/

.homeSection {
    height: 40vh;
    position: relative;
    border-bottom: 1px solid var(--ct_fadedcolour);
}

.slideshow {
    width: 100%;
}

/** Global Stuff **/

.gridView {
    display: grid;
    gap: 15px;
}

.gridView.cols2 {
    grid-template-columns: repeat(2, 1fr);
}

.gridView.cols3 {
    grid-template-columns: repeat(3, 1fr);
}

.gridView.cols4 {
    grid-template-columns: repeat(4, 1fr);
}

.gridView.cols5 {
    grid-template-columns: repeat(5, 1fr);
}

.gridView.cols6 {
    grid-template-columns: repeat(6, 1fr);
}

.gridView.cols7 {
    grid-template-columns: repeat(7, 1fr);
}

.gridView.cols8 {
    grid-template-columns: repeat(8, 1fr);
}

.gridView.cols9 {
    grid-template-columns: repeat(9, 1fr);
}

.gridView.cols10 {
    grid-template-columns: repeat(10, 1fr);
}

.gridView.cols11 {
    grid-template-columns: repeat(11, 1fr);
}

.gridView.cols12 {
    grid-template-columns: repeat(12, 1fr);
}