:root {
  font-size: 16px;
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Manrope", "Roboto", sans-serif;
  font-weight: 400;
  background-image: url("../img/footer-vector-img-2.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}

#app {
  width: 100vw;
  height: 100vh;
}

.header {
  height: 100px;
  width: 100%;
  background-color: #FFE500;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
}

.logo {
  max-height: 33px;
}

.no-margin-bottom {
  margin-bottom: 0;
}

input {
  border: none;
  outline: none;
  padding: 0 1rem;
}

button {
  border: none;
  outline: none;
}

button:focus {
  border: none;
  outline: none;
}

select {
  appearance: none;
  border: 0;
  outline: 0;
  font: inherit;
  width: 20rem;
  padding: 1rem 4rem 1rem 1rem;
  background: var(--arrow-icon) no-repeat right 0.8em center / 1.4em,
    linear-gradient(to left, var(--arrow-bg) 3em, var(--select-bg) 3em);
  color: white;
  border-radius: 0.25em;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  &::-ms-expand {
    display: none;
  }
  &:focus {
    outline: none;
  }
  option {
    color: inherit;
    background-color: var(--option-bg);
  }
}

/* sections */
#hero-section {
  background: linear-gradient(
    270deg,
    #0e0b0000 0%,
    #01010000 6%,
    #0808080d 30%,
    #101010d9 45%,
    #101010e5 47%,
    #101010 50%,
    #101010 62%,
    #101010 100%
  );
  margin-top: 80px;
  padding: 94px 0;
  position: relative;

  @media (max-width: 1000px) {
    background: #101010;
  }
}

#hero-section .section-content {
  width: 50%;

  @media (max-width: 1000px) {
    width: 100%;
  }
}

#exposure-section {
  padding: 40px 15px;

  @media screen and (min-width: 992px) {
    padding-top: 139px;
    padding-bottom: 120px;
  }
}

#exposure-section .cards {
  @media (max-width: 1000px) {
    flex-direction: column;
  }
}

#exposure-section .card {
  display: flex;
  flex-direction: column;
  border: none;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  flex: 1;

  @media (max-width: 1000px) {
    min-width: 100%;
    margin-left: 0;
  }
}

#exposure-section .card:not(:first-child) {
  margin-left: 24px;

  @media (max-width: 1000px) {
    margin-left: 0;
    margin-top: 24px;
  }
}

.section {
  padding: 40px 0;
  background: #fcfcfb;
  border-radius: 20px;
  overflow: hidden;

  @media screen and (min-width: 1200px) {
    padding: 144px 0;
  }
}

.service-section {
  flex-direction: column;
  padding-left: 15px;

  @media screen and (min-width: 1200px) {
    flex-direction: row;
    padding-left: 63px;
  }
}

.light-spot {
  position: absolute;
  background: linear-gradient(180deg, #ffe03e 0%, #ffe24a 98%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  opacity: 0.1;
  max-width: 200px;
  width: 100%;
  aspect-ratio: 433 / 459;
  position: absolute;
  transform: rotate(45deg);

  @media screen and (min-width: 992px) {
    max-width: 433px;
  }
}

.service-image {
  aspect-ratio: 520 / 384;
  max-width: 502px;
  width: 100%;
  z-index: 2;
}

#footer {
  align-items: start;
  display: flex;

  @media (max-width: 1000px) {
    flex-direction: column;
    align-items: center;
  }
}

#footer .left-section, #footer .left-section div {
  @media (max-width: 1000px) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

#footer .right-section {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  min-width: 40%;

  @media (max-width: 1000px) {
    margin-left: 0;
    min-width: none;
    width: 90%;
    margin-top: 3rem;
  }
}

/* Custom select */

details {
	position: relative;
	width: 300px;
	margin-right: 1rem;
}

details[open] {
	z-index: 1;
}

summary {
	padding: 0.7rem 1rem;
	cursor: pointer;
	background-color: #EDEDED;
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

details[open] summary:before {
	content: '';
	display: block;
	width: 100vw;
	height: 100vh;
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
}

summary:after {
	content: '';
	display: inline-block;
	width: .5rem;
	height: .5rem;
	border-bottom: 1px solid currentColor;
	border-left: 1px solid currentColor;
	border-bottom-left-radius: 2px;
	transform: rotate(-45deg) translate(50%, 0%);
	transform-origin: center center;
	transition: transform ease-in-out 100ms
}

summary:focus {
	outline: none;
}

details[open] summary:after {
	transform: rotate(135deg) translate(0%, 0%);
}

.list {
	width: 100%;
	background: #ddd;
	position: absolute;
	top: calc(100% + .5rem);
	left: 0;
	padding: 1rem;
	margin: 0;
	box-sizing: border-box;
	border-radius: 5px;
	max-height: 200px;
	overflow-y: auto;
}

.list__item {
	margin: 0;
	padding: 1rem 0;
	border-bottom: 1px solid #ccc;
}

.list__item:first-child {
	padding-top: 0;
}

.list__item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

/* FAKE SELECT */

summary.radios {
	counter-reset: radios;
}

summary.radios:before {
	content: var(--selection);
}

input[type=radio] {
	counter-increment: radios;
	appearance: none;
	display: none;
  width: calc(100% - 12px);
}

input[type=radio]:checked {
	display: inline;
	--display: block;
}

input[type=radio]:after {
	content: attr(title);
	display: inline;
	font-size: 1rem;
}

ul.list {
	counter-reset: labels;
}

label {
	width: 100%;
	display: flex;
	cursor: pointer;
	justify-content: space-between;
}

label span {
	--display: none;
	display: var(--display);
	width: 1rem;
	height: 1rem;
	border: 1px solid #727272;
	border-radius: 3px;
}

.logo {
  height: 16px;
  width: 128px;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .logo {
    width: 256px;
    height: 32px;
  }
}

.title {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans';
  font-size: 32px;
  font-weight: 800;
  line-height: 1.21;
  text-transform: uppercase;
  text-align: center;

  @media screen and (min-width: 992px) {
    font-size: 40px;
    text-align: left;
  }
}

.description {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;

  @media screen and (min-width: 992px) {
    font-size: 20px;
    text-align: left;
  }
}
.section-title-primary {
  font-family: 'Plus Jakarta Sans';
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.32px;
  line-height: 1.5;
  text-align: center;

  @media screen and (min-width: 992px) {
    font-size: 48px;
  }
}

.section-description-primary {
  color: #1a202c;
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  text-align: center;

  @media screen and (min-width: 992px) {
    font-size: 18px;
  }
}

.section-title-secondary {
  font-family: 'Plus Jakarta Sans';
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
}

.section-description-secondary {
  color: #64607d;
  font-family: 'Manrope';
  font-weight: 500;
  letter-spacing: -0.32px;
  line-height: 1.875;
  text-align: center;
  margin-top: 24px;
}

.service-title {
  font-family: 'Plus Jakarta Sans';
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-left: 1px;

  @media screen and (min-width: 992px) {
    font-size: 32px;
  }
}

.contact-title {
  font-family: 'Plus Jakarta Sans';
  font-size: 30px;
  font-weight: 800;
  line-height: 1.21;
  margin-left: 2px;
  text-transform: uppercase;
  text-align: center;

  @media screen and (min-width: 992px) {
    font-size: 36px;
    text-align: left;
  }
}

.contact-description {
  color: #1e1e1e;
  font-family: Plus Jakarta Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 32px;
  text-align: center;

  @media screen and (min-width: 992px) {
    font-size: 20px;
    text-align: left;
  }
}

.contact-container {
  padding: 60px 15px;

  @media screen and (min-width: 992px) {
    padding: 120px 15px;
  }
}

.nav-menus-wrapper .nav-menu {
  padding-right: 30px;
}

@media (min-width: 1200px) {
  .nav-menus-wrapper .nav-menu {
    padding-right: 55px;
  }
}

.container--header {
  max-width: 1160px;
}
