@import url("https://fonts.googleapis.com/css2?family=Bentham&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://unpkg.com/boxicons@latest/css/boxicons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Macondo+Swash+Caps&family=Outfit:wght@100..900&family=Quintessential&display=swap');


:root {

    --calcWidth: 100vh;
    --calcHeight: 100vw;

    --calcWidth: calc(var(--vw, 1vw) * 100);
    --calcWidth: calc(var(--vh, 1vw) * 100);

}


*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
}

html {
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: -webkit-fill-available;
  color: #5e6282;
  background-color: #0b1d26;
}

body.overflow-hidden {
  overflow: hidden;
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bentham", serif;
}

.container {
  max-width: 1462px;
  height: auto;
  margin: 0 auto;
  padding: 0 24px;
  border: blueviolet solid 0px;
}

/* Header Navigation Start   */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}

.header-container {
  width: 100%;
  padding: 0 24px;
}

.header.on-scroll {
  background: rgba(11, 29, 38, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar {
  width: 100%;
  transition: all 0.4s ease-in-out;
  padding: 20px 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.navbar .header-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.brand svg{
  max-width: 65px;
 
}

.brand img {
   
   max-width: 225px;

}

.menu-close-button {
  width: clamp(32px, 40%, 100px);
  border: #fbd784 solid 0px;
  opacity: 0.4;
}

.menu-close-button:hover {
  opacity: 1.0;
}

.sidebrandlogo img {
   /* width: clamp(160px, 28vw, 1055px); */
   width: 90%;
   padding-right: 10%;
   border: red solid 0px;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(300px, 32vw, 1620px);
  height: 100vh;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  transform: translateX(-150%);
  z-index: 10;
  background-color: #0b1d26;
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-is-active .menu {
  transform: translateX(0%);
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  row-gap: 24px;
}

.menu-link {
  font-size: clamp(18px, 2vw, 26px);
  /* font-size: 30%; */
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}

.menu-block {
  display: flex;
  column-gap: 30px;
  margin-left: auto;
  align-items: center;
}

.menu-block-link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
}

.menu-block-link .bx {
  font-size: 20px;
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  padding: 5px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
  margin-right: 24px;
}

.burger-line-wrapper {
  height: 20px;
  width: 20px;
  position: relative;
}

.burger-line {
  position: absolute;
  display: block;
  left: 0px;
  width: 20px;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 20px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background-color: #ffffff;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.close-menu {
  order: 0;
  background-color: #0b1d26;
}

.header-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.menu-is-active .header-backdrop {
  visibility: visible;
  opacity: 0.5;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

/* Header Navigation End   */

/* Hero Section Start   */

.hero-section {
  position: relative;
  /* padding-bottom: 140px; */
  overflow: hidden;
  /* max-height: 100vh; */
  border: red solid 0px;
  
}

.hero-section::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  /* bottom: 0%; */
  width: 100%;
  /* height: 100%; */
  background: linear-gradient(
    -33.26deg,
    rgba(11, 29, 38, 0%) 0%,
    rgba(11, 29, 38, 0.6) 100%
  );
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  /* bottom: 0; */
  left: 0;
  width: 100%;
  /* height: 550px;  */
  
  z-index: 5;
   /* background-image: linear-gradient(
    180deg,
    rgba(11, 29, 38, 0),
    #0b1d26,
    #0b1d26
  );  */
}

.hero-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
}



.hero-image-wrapper img.street-sky {
  margin-top: 0%;
  position: relative;
  /* transform: translateY(-50%); */
  /* height: 100vh; */
  object-fit: cover;
}

.hero-image-wrapper img.street-mid {
  margin-top: -170%;
  z-index: 1;
  /* height: 100vh; */
  object-fit: cover;
}

.hero-image-wrapper img.street-front {
  margin-top: -150%;
  z-index: 4;
  /* height: 300px; */
  object-fit: cover;
}




.hero-content {
  position: absolute;
  top: 24%;
  left: 0;
  right: 0;
  z-index: 6;
  height: auto;
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 2vw;

  
}

.hero-subtitle {
  font-size: clamp(14px, 2.6vw, 24px);
  color: #fbd784;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  margin-top: 2vw;
  margin-bottom: 3vw;
  text-transform: uppercase;
  letter-spacing: clamp(6px, 1.3vw, 24px);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.8vw;
  text-shadow: 4px 4px 4px black;

  
}

.hero-subtitle::before {
  content: "";
  height: 0.24vw;
  width: 3vw;
  background-color: #fbd784;
  display: inline-block;
  text-shadow: 4px 4px 8px black;
}

.hero-title {
   font-family: "Quintessential", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp( 24px, 8vw, 120px);
  line-height: clamp(26px, 16vw, 130px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 6vw;
  text-shadow: 4px 4px 8px black;
  
}

.main-headline {
  font-size: 2vh;
}

.hero-title span {
  display: inline-block;
}

.hero-action {
  font-size: 18px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #fff;
}

.hero-action svg {
  animation: scroll-down-arrow 2.5s infinite;
}

@keyframes scroll-down-arrow {
  0%,
  20%,
  55%,
  80%,
  100% {
    transform: translate3d(-50%, 0, 0);
  }

  40% {
    transform: translate3d(-50%, -15px, 0);
  }

  70% {
    transform: translate3d(-50%, -10px, 0);
  }

  90% {
    transform: translate3d(-50%, -5px, 0);
  }
}

/* Hero Section End   */

.content-section {
  position: relative;
  z-index: 5;
  /* margin-top: -100%; */
  margin-right: 10px;
}

.content-row {
  display: flex;
  margin-top: 6vh;
  flex-direction: column;
  align-items: top;
  gap: 2vw;

  border: yellow solid 0px;
}


.content-wrapper:not(:last-child) {
  margin-bottom: 80px;
}

.content-wrapper .content-image {
  /* width: 50vw; */
  width: 50%;
}

.content-image img {
  /* height: 100%;
  width: 100%; */

  height: auto;
  width: 80%;
  margin: 0 auto;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  border: black solid 2px;
}

.content-image-right {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  
}

.content-image-left {
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
  
}

.content-content {
  flex: 1;
  padding-left: 0px;
  vertical-align: top;
  
}

.content-subtitle {
  font-size: 14px;
  color: #fbd784;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 27px;
}


.content-subtitle::before {
  content: "";
  height: 2px;
  width: 40px;
  background-color: #fbd784;
  display: inline-block;
}


.image_flag {
  width: 40%;
  -webkit-mask-image: radial-gradient(ellipse, black 10%, transparent 100%);
  mask-image: radial-gradient(ellipse, black 10%, transparent 100%);
  mask-repeat: no-repeat;
}

.image_preview {
  background-image: url("./images/flags/scotland-good-v.png");
}


.content-subtitle-flag,
.content-subtitle-flag-right {
  position: relative;
  text-align: center;
  color: white;
  margin-bottom: 12px;
}

/* .content-subtitle-flag-right {
  position: relative;
  text-align: center;
  color: white;
  margin-bottom: 12px;
} */


.containerTest {
  position: relative;
  text-align: center;
  color: white;
}

/* Centered text */
.content-subtitle-flag-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center; /* Centers items vertically */
  align-items: center; /* Centers items horizontally */
  
  font-family: "Roboto", sans-serif;
  font-size: 2vw;
  color: #fbd784;
  text-transform: uppercase;
  letter-spacing: 6px;
  text-shadow: 2px 2px 2px black; 

}



.content-subtitle-flag-text::before {
  content: "";
  height: 0.2vw;
  width: clamp(8px, calc(var(--vh, 1vw) * 3.5), 34px);
  background-color: #fbd784;
  box-shadow: 2px 2px 2px #0000008a;
  display: block;
  /* display: inline-block; */
}



.content-subtitle .counter {
  /* font-size: 140px;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.2); */
  position: relative;
  left: 0%;
  top: 0%;
  /* transform: translateY(-50%);
  transition: all 0.4s ease-in-out; */
  letter-spacing: 0;
  z-index: -4;


}

.content-subtitle .counter img {
  max-height: 20vw;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;

  border: greenyellow solid 0px;
}


.content-title {
  font-family: "Quintessential", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 4.5vw, 63px);
  line-height: 5.1vw;
  color: #ffffff;
  margin-top: 2.4vw;
  margin-bottom: 2.4vw;
}

.content-title2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 27px;
  font-weight: 500;


}

.content-title span {
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.content-copy {
  /* font-size: 2vw; */
  font-size: clamp(12px, 2vw, 28px);
  color: #ffffff;
  line-height: clamp(14px, 2.6vw, 32px);
  max-width: 90%;
  margin-bottom: 2dvw;
  transition: all 0.4s ease-in-out;
}

.content-action {
  font-size: clamp(12px, 2vw, 32px);
  color: #fbd784;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s ease-in-out;
}

.content-action:hover {
  gap: 20px;
}

.content-subtitle .countersaved {
  font-size: 140px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
  letter-spacing: 0;
}



.permanent-marker-regular {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}


/* Footer Section Start   */

footer {
  padding-top: 100px;
  padding-bottom: 50px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 50px;
}

.footer-column-logo {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;

  
}

.footer-copy-rights {
  color: #ffffff;
  font-size: 0.8em;
  font-weight: 300;
  margin-top: auto;
}

.footer-column-link {
  width: auto;
}

.footer-logo {
  /* border: red solid 2px; */
  border-bottom: 1px solid white; 
  margin-bottom: 1.2rem;
}


.footer-logo img{
  margin-bottom: 1rem;
  width: clamp(100px, calc(var(--vw, 1vw) * 30), 224px);
  height: auto;
  /* max-width: 16vw;
  min-width: 12vw; */
}

.footer-copy {
  font-family: "Quintessential", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  line-height: 1.5em;
  color: #ffffff;
  margin-bottom: 0.0em;
}


.footer-heading {
  font-family: "Quintessential", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  color: #fbd784;
  font-weight: bold;
  margin-bottom: 1.0em;
  /* font-family: "Roboto", sans-serif; */
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.footer-links-item a {
  color: #ffffff;
  font-size: 1.2em;
  line-height: 32px;
}

/* Footer Section End   */

.slider {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  z-index: 9;
}

.slider .container {
  padding: 0;
  display: flex;
  gap: 32px;
  justify-content: flex-end;
  max-width: 1500px;
}

.slider-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 15px 0;
}

.slider-list-item a {
  color: #fbd784ab;
  font-weight: bold;
  text-shadow: 4px 4px 4px black;
}


.slider-list-item a:hover {color: #ffffff}

.slider-list-item a:active {
  color: #ffffff;
  transform: translateY(4px);
}

.slider-progress {
  height: auto;
  width: 4px;
  background-color: rgba(255, 255, 255, 0.2);
}

.slider-progress-bar {
  width: 100%;
  height: 100%;
  background-color: #fff;
}


.footer-div {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 6%;
}
