#section0,
#section1,
#section2,
#section3,
#section4,
html {
  scroll-behavior: smooth !important;
}
::selection {
  color: white;
  background-color: black;
}
::-moz-selection {
  /* Code for Firefox */
  color: white;
  background: black;
}
.textlink {
  color: inherit;
  text-decoration: none;
}
.textlink:hover {
  text-decoration: underline;
  color: inherit;
}
/* SCROLLBAR */

/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
  border-left: solid 2px black;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: black;
  border-left: solid 2px black;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: black;
}

body {
  margin: 0;
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  cursor: crosshair;
}
header {
  display: flex;
  width: 100vw;
  padding: 0px;
  position: fixed;
  z-index: 10;
}
.goldsmith {
  margin-top: 20px;
}
.footerlogo {
  max-width: 200px;
}
.footersection {
  height: 40vh;
}
/* COLUMN SYSTEM */
.equaldiv {
  flex: 1; /* Allows the box to take equal width */
  height: 100px; /* Sets a fixed height */
  display: flex;
}
.centeralign {
  align-items: center;
  justify-content: center;
}
.pointone {
  flex: 1;
}
.pointtwo {
  flex: 2;
}
.pointtwofive {
  flex: 2.5;
}
.pointfive {
  flex: 5;
}
.pointsix {
  flex: 6;
}
.pointtsevenfive {
  flex: 7.5;
}
.columnspacer {
  width: 15px;
}

/* NAVIGATION */
.navpoint {
  background-color: black;
  padding: 10px 20px 10px 20px;
  color: white;
  margin: 5px;
  text-align: center;

  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  text-transform: uppercase;
}

.row {
  display: flex;
  width: 100%;
  background-color: none;
}
.margtop {
  margin-top: 15px;
  transition: ease 0.3s;
}
.margbot {
  margin-bottom: 15px;
  transition: ease 0.3s;
}

.margtop:hover {
  margin-top: -5px;
  transition: ease 0.3s;
}
.margbot:hover {
  margin-bottom: -5px;
  transition: ease 0.3s;
}

section {
  display: flex;
}

.fullheight {
  height: 100vh;
}

.halfheight {
  height: 50vh;
}
footer {
  background-color: black;
  color: white;
  text-align: left;
  padding-top: 30px;
}

.blackbg {
  background-color: black;
  color: white;
  padding: 30px;
}

h1 {
  padding: 0;
  margin: 0;
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-size: 65px;
  font-weight: 700;
}

h2 {
  padding: 0;
  margin: 0;
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-size: 40px;
  font-weight: 700;
}

h3 {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 500;
}

.p1 {
  padding: 0;
  margin: 0;
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 500;
}

.p2 {
  font-size: 20px;
}

.p3 {
  font-size: 16px;
  line-height: 1.1em;
  font-weight: 500;
}
.p4 {
  font-size: 12px;
  line-height: 1.2em;
  font-weight: 500;
}
.t4 {
  font-size: 18px;
  font-weight: 700;
}

.whitebg {
  background-color: white;
  color: black;
  padding: 30px;
  display: flex;
  align-items: center;
}

.box {
  background-color: none;
  padding: 30px;
  width: calc(100% - 60px);
}

.textbox {
  background: white;
  border: dashed 2px black;
  padding: 30px;
  border-radius: 0px;
}

.yellowbg {
  background-color: #faf87a;
  color: black;
  padding: 30px;
}

.divider {
  background-color: none;
  background-image: url(dashed.png);
  background-repeat: repeat;
  z-index: 5;
  margin-bottom: -2px;
  position: relative;
  height: 2px;
  width: 100%;
}
.paddingfull {
  padding: 30px;
}

.under {
  margin-bottom: 0px;
  margin-top: -2px;
}
.specialbg {
  background-image: url(bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.specialdark {
  background-color: black;
  background-image: url(bg-dark.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.noflex {
  display: unset;
}
.bottompadding {
  padding-bottom: 100px;
}
.img {
  width: 100%;
  height: auto;
  user-select: none;
}
.imagerow {
  margin-top: 60px;
  margin-bottom: 30px;
  padding: 30px;
}

.button {
  padding: 5px 20px 5px 20px;
  background-color: black;
  color: white;
  margin-left: 7px;
  width: fit-content;
  margin-bottom: 5px;
  font-size: 20px;
  user-select: none;
}
.spacer {
  height: 15px;
}

/* SLIDER */
* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  max-width: 1920px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}
.paddingtopbot {
  padding-top: 150px;
  padding-bottom: 100px;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  padding-top: 22px;
  padding-left: 2px;
  color: white;
  border-radius: 60px;
  user-select: none;
  background-color: white;
  margin-left: 30px;
  text-align: center;
  align-items: center;
  box-shadow: -1px 11px 29px 0px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: -1px 11px 29px 0px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: -1px 11px 29px 0px rgba(0, 0, 0, 0.04);
  transition: ease 0.3 !important;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  margin-left: 0px;
  margin-right: 30px;
  padding-left: 0px;
  padding-right: 2px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgb(250, 250, 255);
  transition: ease 0.3 !important;
}

.sliderimg {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  user-select: none;
}

/* Caption text */
.text {
  color: black;
  font-size: 20px;
  padding: 10px 20px;
  position: absolute;
  bottom: 8px;
  width: fit-content;
  max-width: 40%;
  text-align: left;
  background-color: white;
  margin-left: 30px;
  margin-bottom: 24px;
}

/* Number text (1/3 etc) */
.numbertext {
  color: white;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: black;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
}

.active,
.dot:hover {
  background-color: yellow;
}
.centertext {
  text-align: center;
}
.titlerow {
  width: 100%;
  text-align: center;
  padding: 50px 30px;
  background-color: black;
  color: white;
}
.invert {
  background-color: white;
  color: black;
}
a {
  text-decoration: none;
}

.transp {
  background-color: transparent;
  color: black;
}
.darkbox {
  border: none;
  background-color: black;
  color: white;
}

.darkselect ::selection {
  color: black;
  background-color: white;
}
.darkselect ::-moz-selection {
  /* Code for Firefox */
  color: black;
  background: white;
}
.buttonlink {
  transition: ease 0.3s;
}
.buttonlink:hover {
  transform: translateX(10px);
  transition: ease 0.3s;
}
.responsivewrapper {
  padding: 0;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}
.responsivewrapperfull {
  padding: 0;
  width: 100%;
  max-width: 1920px;
  margin: auto;
}
.nomarg {
  margin: 0;
  padding-bottom: 10px;
}
.logo {
  width: 150px;
  height: 88px;
  text-align: left;
}
.leftalign {
  text-align: left !important;
}
.logopadding {
  padding: 30px;
}
.leftpadding {
  padding-left: 30px;
}
.intro {
  background-image: url(bg-intro.jpg);
  background-size: cover;
  background-position: center;
  height: 60vh;
}
.flex {
  display: flex;
}
.nodesktop {
  display: none;
}

/* RESPONSIVE */
@media only screen and (max-width: 900px) {
  .row {
    display: block;
  }

  .pointone {
    flex: 1;
  }
  .pointtwo {
    flex: 1;
  }
  .pointtwofive {
    flex: 1;
    padding: 0;
    margin: 0;
  }
  .pointfive {
    flex: 1;
  }
  .pointsix {
    flex: 1;
  }
  .pointtsevenfive {
    flex: 1;
  }
  .columnspacer {
    width: 0;
    display: none;
  }
  .box {
    width: 100%;
  }
  .flex {
    display: block;
  }

  .p1 {
    font-size: 12px;
  }

  .p2 {
    font-size: 12px;
  }

  .p3 {
    font-size: 12px;
  }
  .p4 {
    font-size: 12px;
  }
  .navpoint {
    font-size: 12px;
    padding: 5px 10px 5px 10px;
    width: fit-content;
  }
  .nomobile {
    display: none;
  }
  .logo {
    width: 90px;
    height: auto;
  }
  .mobilewidth {
    flex: 0.1;
  }
  .centeralign {
    padding: 15px;
  }
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }
  .blackbg {
    padding: 15px;
  }
  .whitebg {
    padding: 15px;
  }
  .yellowbg {
    padding: 15px;
  }
  .box {
    padding: 15px;
  }
  .textbox {
    padding: 15px;
  }
  .imagerow {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 15px;
  }

  .specialbg {
    background-image: url(bg.jpg);
    background-size: contain;
    background-repeat: repeat;
  }

  .specialdark {
    background-color: black;
    background-image: url(bg-dark.jpg);
    background-size: contain;
    background-repeat: repeat;
  }
  .columnspacer {
    display: none;
  }
  .button {
    font-size: 12px;
    margin-left: 0;
  }
  .bottompadding {
    padding-bottom: 0px;
  }
  .titlerow {
    padding: 15px;
  }
  .text {
    font-size: 12px;
    padding: 5px 10px;
    margin-left: 15px;
    margin-bottom: 9px;
    max-width: 70%;
  }
  .prev,
  .next {
    width: 40px;
    height: 40px;
    margin-top: -30px;
    padding-top: 12px;
    padding-left: 2px;
  }
  .arrow {
    width: 24px;
  }
  .paddingfull {
    padding: 15px;
  }
  li {
    font-size: 12px;
    line-height: 1.1em;
  }
  .mobilecenter {
    text-align: center;
  }
  .mobilebottompad {
    padding-bottom: 15px;
  }
  .paddingtopbot {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .mobilemaxwidth {
    max-width: 300px;
    margin: auto;
    margin-bottom: 15px;
  }
  .numbertext {
    font-size: 12px;
    padding: 8px 12px;
  }
  .maxwidth {
    max-width: 245px;
  }
  .mobilebottommarg {
    margin-bottom: 15px;
  }
  .mobileautomarg {
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 5px 10px 5px 10px;
  }
  .mobileflexwrap {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
  }
  .mobileflex {
    display: flex;
  }
  .footersection {
    height: 50px;
  }
  .footerlogo {
    max-width: 100px;
  }
  .navigat {
    display: block;
  }
  .margbot {
    margin: 0;
    margin-bottom: 5px;
  }
  .margtop {
    margin: 0;
    margin-bottom: 5px;
  }
  .nodesktop {
    display: block;
  }
  .intro {
    height: calc(100vw / 1920 * 1080);
  }
  .margtop:hover {
    margin: 0;
    margin-bottom: 5px;
  }
  .margbot:hover {
    margin: 0;
    margin-bottom: 5px;
  }
  .goldsmith {
    margin-top: 10px;
  }
  .logopadding {
    padding: 40px;
  }
}
