:root {
  --colours-brand-dark-purple: #0E0D34;
  --white: #ffffff;
  --colours-brand-light-blue: #29B9D7;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: var(--colours-brand-dark-purple);
  background: linear-gradient(120deg, #2181A3 16.4%, var(--colours-brand-dark-purple, rgba(14, 13, 52, 0.68)) 63.25%, rgba(14, 13, 52, 0.68) 95.11%);
  background-blend-mode: lighten;
  color: var(--white);
}

.header {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 0 2rem;
  z-index: 1;
}

main {  
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  z-index: 1;
}

aside {
  display: flex; 
  column-gap: 1rem; 
} 
address{ font-style: normal; }
address:last-child { margin-left:2rem; }
.icon { 
  width: 50px; 
  height: 30px; 
  display: block; 
  margin-bottom:1rem;
  border-radius: 5px;
} 
.icon.ae { background: url('ae-flag.svg'); }
.icon.en { background: url('uk-flag.svg');}

.logo {
  width:200px;
}

h1 { 
  color:var(--white);
  text-shadow: 1px 4px 10.9px rgba(0, 0, 0, 0.11);
  font-family: Inter;
  font-size: 48px;
  line-height: 51px;
  font-style: normal;
  font-weight: 800;
  max-width: 1300px;
  margin-bottom: 1rem;
}

h2 { 
  color:var(--colours-brand-light-blue);
  margin: 1rem 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.27px;
} 

.hero {
  position: absolute;
  z-index: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
a { 
  color: var(--white); 
  font-size: 18px;
  text-decoration: none;
  margin-bottom:2rem;
}
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.dots {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, var(--colours-brand-dark-purple) 100%);
}

.hero-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  z-index: 1;
}
strong { font-size:22px; }

@media (min-width: 768px) {
  .header {
    padding: 5rem 5rem 0 5rem;
  }
  
  main {  
    padding: 5rem;
  }
  
  .logo {
   width:288px;
  }
  h1 {
    font-size: 96px;
    line-height: 103px;
    margin-bottom:1rem;
  }
  h2 { 
    font-size: 18px;
    margin: 2rem 0;
 }
  .icon { 
    width: 112px; 
    height: 67px; 
    display: block; 
    margin-bottom:1rem;
  } 
  a { 
    font-size:18px; 
    font-style: normal;
    font-weight: 300;
    letter-spacing: -0.27px;
    margin-bottom:3rem;
  }
  .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}