@font-face {
  font-family: "Myriad";
  src: url("/fonts/Myriad\ Pro\ Regular.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

:root {
  --primary-color: #ffffff;
  --secondary-color: #0059a5;
}

body,
html {
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Myriad";
}
h4 {
  color: #0059a5;
  padding-left: 48px;
  margin: 0;
  margin-bottom: 16px;
  font-size: 24px;
}

.section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section:nth-of-type(1),
.section:nth-of-type(4) {
  background-color: var(--primary-color);
}

.section:nth-of-type(3) {
  background-color: var(--secondary-color);
}

.logo-section img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.info-image {
  background: url("/assets/description-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.layer {
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.377);
}

.info-section h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 2;
}

.info-section h1 span {
  display: block;
}

.info-section h1,
.contact-section h1 {
  font-family: "Myriad";
  color: #ffffff;
  margin: 0;
  font-size: 48px;
  text-align: center;
}

.contact-section > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}

.contact-section > div > div {
  display: flex;
  gap: 32px;
}

.contact-section > div a {
  display: flex;
  padding: 8px 12px;
  background-color: white;
  border-radius: 8px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #c6c6c6;
  width: auto;
}

.contact-section > div a span {
  display: block;
  border-left: 1px solid #9c9c9c;
  padding-left: 8px;
  margin-left: 8px;
}

footer {
  height: 8vh;
  background-color: #4d4d4d;
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c6c6c6;
}

.details-section > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.details-section > div p {
  display: flex;
  align-items: center;
  gap: 24px;
}

.details-section > div a {
  text-decoration: none;
  color: #9c9c9c;
}

.details-section > div svg {
  width: 24px;
  height: 24px;
  display: inline-block;
}

@media only screen and (min-width: 991px) {
  body {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(2, 46vh);
  }

  .section {
    height: 100%;
    background-color: var(--primary-color);
    column-span: 1/3;
  }
}


