

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
:root {
  --hoverColor: rgb(91, 172, 223);

  --navheight: 11vh;
  --mobileNavHeight: 50vh;
  --pageWidth: 1440px;
  --footerHeight: 10rem;
  --headingColor: #0462A6;
  /* --buttonBackGround: #9EBDFF;
  --buttonHover: #ffe09e; */

  --headingSize: clamp(18px, 2vw, 24px);
  --headingFamily: 'Raleway', sans-serif;
  --headingWeight: 600;

  --heading2Size: clamp(16px, 2vw, 22px);
  --heading2Family: 'Raleway', sans-serif;
  /* --heading2Color: #0462A6; */
  --heading2Weight: 500;

  --heading3Size: clamp(14px, 2vw, 20px);
  --heading3Family: 'Raleway', sans-serif;
  /* --heading3Color: #0462A6; */
  --heading3Weight: 600;

  --textSize: clamp(12px, 2vw, 18px);
  --textFamily: Georgia, 'Times New Roman', Times, serif;
  /* --textColor: #000000; */
  --textWeight: 300;
}

.light {
  --backgroundColor: #f1f8fc;
  --textColor: #2a4657;
  --background: #2a4657;
  --text: #f1f8fc;
  --backgroundwithopacity: rgb(42, 70, 87, 0.5);
  --boxshadowwithopacity: 0px 0px 15px 2px rgb(42, 70, 87, 0.5);
}

.dark {
  --backgroundColor: #2a4657;
  --headingColor: #f1f8fc;  
  --textColor: #f1f8fc;
  --background: #f1f8fc;  
  --text: rgb(42, 70, 87);
  --backgroundwithopacity: rgb(241, 248, 252, 0.6);
  --boxshadowwithopacity: 0px 0px 15px 2px rgb(241, 248, 252, 0.6);
}

h1, h2, h3, p {
  margin: 0.5em 0;
}

h1 {
  color: var(--headingColor);
  font-family: var(--headingFamily);
  font-size: var(--headingSize);
  font-weight: var(--headingWeight);
}

h2 {
  color: var(--headingColor);
  font-family: var(--heading2Family);
  font-size: var(--heading2Size);
  font-weight: var(--heading2Weight);
}

h3 {
  color: var(--headingColor);
  font-family: var(--heading3Family);
  font-size: var(--heading3Size);
  font-weight: var(--heading3Weight);
}

p {
  /* font: 400 clamp(14px, 3vw, 28px) "Roboto";   */
  color: var(--textColor);
  font-family: var(--textFamily);
  font-size: var(--textSize);
  font-weight: var(--textWeight);  
}
/* 
* {
  outline: 1px solid red;
} */


body, html {
  overflow-x: hidden;
  letter-spacing: 2px;
  word-spacing: 2px;
  line-height: 1.8;
}

ul {
  list-style-type: none;
  list-style: none;
  margin: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: var(--textColor);
}

/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"); */

* {
  -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
}

.hidden {
  opacity: 1;
  transition: all 3s;
}

.show {
  opacity: 1;
   transform: translateY(0);
}

.main-wrapper {
  background-color: var(--backgroundColor);
}

.Container {
  padding-top: 2rem;
}

.overlay {
  display: none;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }

  100% {
    clip-path: circle(150% at 0 0);
  }
}


/* Button styles */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 9999;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--background);
  color: var(--text);
  text-align: center;
  line-height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  outline: none;
}

.back-to-top.visible {
  display: block;
}

.back-to-top:hover {
  opacity: 0.8;
}

/* cookie consent */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2c3e50;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 1000;
  display: none;
}

.cookie-consent-content {
  display: inline-block;
  max-width: 80%;
  margin-right: 10px;
}

.cookie-consent-content p {
  font-size: 12px;
}

.cookie-consent-accept {
  background-color: #3498db;
  border: none;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
}

.cookie-consent-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 480px) {

  .Container {
    padding-top: 3rem;
  }

  .cookie-consent-content {
    display: block;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .cookie-consent-close {
    top: 5px;
    right: 5px;
  }

}
