:root {
  --nav-color: #1f2e3d;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Avenir"
}

.br {
  height: 10px;
  width: 100px;
  background-color: #e9c927;
}

nav {
  position: fixed;
  width: 100vw;
  height: 150px;
  background-color: var(--nav-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

nav.big-screen-nav > div:nth-of-type(1) {
  background-color: #e9c927;
  width: 340px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "AvenirHeavy";
}

nav.big-screen-nav > div:nth-of-type(1) > div {
  width: 46px;
  height: 46px;
}

nav.big-screen-nav > div > p {
  color: white;
  font-size: 23px;
  width: 209px;
  line-height: 1em;
}

nav.big-screen-nav > div > ul {
  display: flex;
  gap: 100px;
  list-style-type: none;
  padding: 0 90px 0 0;
  font-family: "AvenirLight";
}

nav.mobile-screen-nav {
  visibility: hidden;
}

.visible-buttons {
  display: flex;
  width: 100dvw;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}

.visible-buttons > div:nth-of-type(1) {
  background-color: #e9c927;
  width: 340px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "AvenirHeavy";
}

.visible-buttons > div:nth-of-type(1) > div {
  width: 46px;
  height: 46px;
}

.visible-buttons > div:nth-of-type(1) > p {
  color: white;
  font-size: 23px;
  width: 209px;
  line-height: 1em;
}

.visible-buttons > div > button {
  border: none;
  background-color: none;
  color: none;
  background: none;
  padding-right: 50px;
}

.visible-buttons > div > button:hover {
  cursor: pointer;
}

.visible-buttons > div > button > img {
  transition: transform 150ms ease-in;
}

.rotated {
  transform: rotateX(180deg);
}

.navigation {
  width: 80dvw;
  position: absolute;
  height: 100dvh;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: rgb(30, 45, 59);
  -webkit-box-shadow: 0px 0px 53px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 53px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 53px 0px rgba(0,0,0,0.75);
  visibility: hidden;
  transform: visibility 150ms ease-in;
}

.visible {
  visibility: visible !important;
}

.navigation > ul {
  position: relative;
  padding-top: 250px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.navigation > ul > .nav-item {
  text-align: center;
}

.nav-item > a {
  text-decoration: none;
  color: white;
  transition: all 150ms ease-in;
}

.nav-item > a:hover {
  color: #e0c22c !important;
}

a.active {
  color: #e0c22c !important;
}

.header {
  background-color: #f3f3f3;
  height: 200px;
  padding-top: 160px;
  display: flex;
  justify-content: center;
}

.header > .content {
  width: 940px;
}

.header > .content > h1 {
  padding-top: 10px;
  font-size: 55px;
  width: 500px;
}

.container {
  display: flex;
  width: 100vw;
  justify-content: center;
  padding-top: 70px;
}

.container > .content {
  display: flex;
  width: 940px;
}

.container > .content > .col > img, .container > .content > .col {
  width: 100%;
}

.container > .content > .col:nth-of-type(1) {
  display: flex;
  flex-direction: column;
}

.container > .content > .col > p {
  font-family: "AvenirLight";
  font-size: 18.5px;
  line-height: 1.7em;
  width: 90%;
}

.container > .content > .col > p:nth-of-type(1) {
  padding-bottom: 30px;
}

.container > .content > .col > a {
  margin-top: 260px;
  text-decoration: none;
  background-color: rgb(59, 58, 58);
  color: rgb(237, 205, 31);
  transition: all 300ms ease;
  padding: 10px 20px;
  width: fit-content;
  font-family: "AvenirHeavy";
}

.container > .content > .col > a:hover {
  background-color: rgb(237, 205, 31);
  color: rgb(59, 58, 58);
}

.footer {
  height: 100px;
  display: flex;
  justify-content: center;
}

.footer > .container {
  display: flex;
  width: 940px;
  justify-content: space-between;
  align-items: center;
}

.footer > .container > p {
  font-family: "AvenirLight";
}

@media (max-width: 1280px) {
  .big-screen-nav {
    visibility: hidden;
  }

  .mobile-screen-nav {
    visibility: visible !important;
  }
}

@font-face {
  font-family: "Avenir";
  src: url(../fonts/Avenir-Medium.ttf) format("truetype");
}

@font-face {
  font-family: "AvenirBlack";
  src: url(../fonts/Avenir-Black.ttf) format("truetype");
}

@font-face {
  font-family: "AvenirHeavy";
  src: url(../fonts/Avenir-Heavy.ttf) format("truetype");
}

@font-face {
  font-family: "AvenirLight";
  src: url(../fonts/Avenir-Light.ttf) format("truetype");
}