:root {
    --blue: #16152e;
    --orange: #f33535;
    --gray: #D9D9D9;
    --beige: #eae6d9;
 }
 
 html, body {
     margin: 0;
     padding: 0;
     width: 100vw;    
     font-family: 'Montserrat', sans-serif;
     overflow-x: hidden;
 }
 
 ::-webkit-scrollbar {
     width: 10px;
     height: 8px;
 }
 ::-webkit-scrollbar-track {
     background: var(--blue); 
 }
 ::-webkit-scrollbar-thumb {
     background: #979797;
     border-radius: 10px;
     transition: background 0.3s;
 }
 
/* Neutralize Elementor containers */
.e-con,
.e-con-inner,
.elementor-section,
.elementor-container {
  max-width: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

 h1, h2, h3, h4 {
     margin: 0;
     line-height: 1.1;
     color: white;
 }

 h1 {
    font-size: 80px;
    font-weight: 600;
 }
 h2 {
    font-size: 50px;
 }
 h3 {
    font-size: 40px;
 }
 h4 {
    font-size: 30px;
    font-weight: 400;
 }
 
 p { 
    font-weight: 400;
     font-size: 20px;
 }
 
.nav-wrap {
    display: flex;
    justify-content: center;
}

.navbar {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    top: 0;
    width: 100%;
    height: auto;
    padding: 0.5rem 2rem;
    background-color: var(--blue);
    box-shadow: 0px 4px 6px #00000038;
    z-index: 10;
}

.main-logo {
    height: auto;
    width: 120px;
    padding-left: 2rem;
    z-index: auto;
}

.right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.logo-mobile {
    margin-bottom: 1rem;
    img {  
        width: 160px; 
        display: none;
    }
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    margin: 0;
    overflow: hidden;
    li {
        display: inherit;
        align-items: center;
        list-style: none;
        a {
            text-decoration: none;
            font-weight: 600;
            color: white;
            font-size: 18px;
            padding: 1rem;
            transition: all 0.2s ease-in-out;
        }
        :hover {
            color: var(--orange);
        }
    }
    details {
        display: none;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown:hover .sub-links {
    opacity: 1;
    transform: translate(-6%, 0);
    visibility: visible;
    pointer-events: auto;
}
  
.sub-links {
    display: flex;
    position: relative;
    flex-direction: column;
	text-align: center;
    align-items: center;
    position: absolute;
    background-color: var(--blue);
    min-width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    gap: 1rem;
    padding: 1rem;
    opacity: 0;
    transform: translateY(-6px);
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
    transform: translate(-6%, -50px);
    z-index: 5;
    a {
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        color: white;
        transition: all 0.2s ease-in-out;
    }
    :hover {
        color: var(--orange);
    }
}

.nav-links li a.active {
    color: var(--orange);
}


.lets-talk {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background-color: var(--orange);
    padding-left: 1rem;
    margin-right: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border-radius: 100px;
    z-index: 50;
    img {
        width: 35px;
        height: 35px;
        background-color: white;
        border-radius: 50%;
        padding:0.3rem;
        margin-left: 1rem;
    }
}
.lets-talk:hover {
    color: var(--orange);
    background-color: white;
}

.mobile-sub-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	text-align: center;
    margin-top: 1rem;
    gap: 1rem;
    a {
        font-size: 18px;
    }
}

.mobile-sub-links li a.active {
    color: var(--orange);
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-icon {
    width: 100%;
    height: 0.15rem;
    right: 0px;
    background-color: white;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-toggler .navbar-icon::before, .navbar-toggler .navbar-icon::after {
    right: 0px;
    content: '';
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: white;
    transition: all 0.3s ease;
}
.navbar-toggler .navbar-icon::after {top: 0.30rem;}
.navbar-toggler .navbar-icon::before {top: -0.30rem;}

.cookie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position:fixed;
    bottom:0;
    width:100%;
    background:#16152e;
    z-index:9999;
}

#cookie-banner {
    padding:1rem;
    color:#fff;
    text-align:center;
    a {
        color:#f3904b;
        font-weight:bold;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
    button {
        color:var(--blue);
        background-color:white;
        border:none;
        padding: 8px 2rem;
        margin: 5px 0 0;
        border-radius: 8px; 
        cursor:pointer;
    }
    button:hover {
        color: white;
        background-color: var(--orange);
    }
}

@media (max-width: 1160px) {
    .nav-links {
        & li {
            a {
                padding: 1rem 0.5rem;
            }
        }   
    }
    .main-logo {
        width: 100px;
    }
}

@media (max-width: 940px) {

    h1 {font-size: 60px;}
    h2 {font-size: 35px;}
    h3 {font-size: 25px;}
    h4 {font-size: 20px;}
    p {font-size: 18px;}
    
    .navbar {
        justify-content: space-between;
        height: 4rem;
        padding: 0 1rem;
        outline: none;
        /* background-color: transparent; */
        box-shadow: none;
        margin: 0;
        img { 
            padding-left: 1rem;
            width: 100px;
        }
    }

    .navbar-toggler {
        display: flex;
        margin-right: 1rem;
        color: white;
        background-color: var(--blue);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        z-index: 50;
        display: none;
        padding: 0;
        margin: 0;
        outline: none;
        li {
            a {
                font-size: 16px;
                font-weight: 400;
                padding: 0;
            }
        }
        details {
            display: block;
            color: white;
        }
        details[open] > summary:first-of-type {
            text-align: center;
        }
    }

    .logo-mobile {
        img { 
            display: block;
            padding-left: 0;
            width: 200px;
        }
    }

    .nav-links li {
        height: auto;
        margin: 0.5rem 0;
    }

    .nav-links.show {
        display: flex;
        align-items: center;
        background-color: var(--blue);
        padding: 1rem 0;
        width: 100%;
        gap: 0;
    }

    .mobile-sub-links {
        display: flex;
    }

    .lets-talk {display: none;}
}

@media (max-width: 546px) {
    h1, h2, h3, h4 {
        line-height: 1;
    }
    h1 {font-size: 45px;}
    h2 {font-size: 25px;}
    h3 {font-size: 20px;}
    h4 {font-size: 18px;}
    p {font-size: 16px;}

    .navbar { 
        height: 60px;
        img {
            width: 80px;
        }
    }
    .logo-mobile {
        img { 
            display: block;
            padding-left: 0;
            width: 150px;
        }
    }
}


/* FOOTER */

hr {
  border: 1px solid lightgray;
  width: 100%;
  margin: 0
}

.footer{
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: white;
  padding: 2rem;
  gap: 1rem;
  box-shadow: 0px 0px 20px #0000002e;
}

.top-sec {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.flex-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-width: 175px;
  flex: 1;
  p {
    font-size: 16px;
    margin: 0;
    font-weight: bold;
  }
  ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 0;
    margin: 1rem 0;
    gap: 1.5rem;
  }
  li {
    list-style: none;
  }
  a {
    font-size: 16px;
    color: black;
    text-underline-offset: 2px;
  }
  a:hover {
    font-weight: bold;
    color: var(--orange);
  }
}

.bottom-sec {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  gap: 0.5rem;
  
  p {
    font-size: 16px;
    font-weight: bold;
    margin: 0!important;             
  }
  img {
    width: clamp(90px, 80vh, 160px);
    height: auto;
  }
}

@media (max-width: 1002px) {
.footer{
  padding: 3rem 1rem;
}
.flex-item {
  ul {
    gap: 0.5rem;
  }
}
}

@media (max-width: 940px) {
  .flex-item {
    align-items: center;
    text-align: left;
    ul{
      align-items: center;
    }
  }

  .bottom-sec {
    p {
      font-size: 20px;
    }
  }
}

@media (max-width: 659px) {
.bottom-sec {
  justify-content: center;
  p {
    text-align: center;
  }
}
}

@media (max-width: 546px) {
  .bottom-sec {
    p {
      font-size: 18px;
    }
  }
}

/* End of FOOTER */

.horizontal-nav {
    display: flex;             /* Align items in a row */
    list-style-type: none;     /* Remove bullets */
    padding: 0;
    margin: 0;
    justify-content: center;   /* Center horizontally (optional) */
    gap: 20px;                 /* Space between items */
}

.horizontal-nav li a {
    text-decoration: none;     /* Remove underlines */
    display: block;            /* Makes whole area clickable */
    padding: 10px 15px;
}


/* INSIGHTS */
/* FIRST SECTION */
.insights-hero {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: auto;
    height: 100vh;
    position: relative;
    background-color: black;
}

.p-number {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    color: white;
    top: 6rem;
    right: 2rem;
    z-index: 5;
}

.p-number:hover {
    text-decoration: underline;
}

.insights-text {
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    padding: 8rem 2rem;
    filter: drop-shadow(0 0 4px black);
    gap: 2rem;
    z-index: 5;
    h1 {
        font-weight: 500;
    }
}

.insights-hero .hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0)); 
    z-index: 1;
    img{
        position: absolute;
        inset: 0;
        object-fit: cover;
        height: 100vh;
        width: 100vw;
        transition: opacity 1s ease-in-out;
        opacity: 0;
    }
}

.calendar-container {
    position: relative;
    padding-bottom: 75%;
    padding: 6rem 0 0;
    width: 100vw;
    height: 100vh;
}
.calendar-container iframe {
    width: 100%;
    height: 100%;
}

.policy-wrapper, .cookie-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.policy, .cookie {
    line-height: 1.6;
    max-width: 1000px;
    padding: 8rem 1.5rem 4rem;
    h1 {
        font-weight: bold;
        text-align: center;
        color: black;
        margin-bottom: 4rem;
    }
    ol {
        margin: 0
    }
    address {
        font-style: normal;
        margin-top: 10px;
    }
    span {
        font-size: 20px;
        font-weight: bold;
    }
    a {
        font-weight: bold;
        color: black;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
}

@media (max-width: 940px) {
    .p-number {
    	font-size: 18px;	
        top: 4.5rem;
        right: 1rem;
    }

    .calendar-container {
        padding: 4rem 0 0;
    }

    .policy, .cookie {
        padding: 2rem 1.5rem;
        h1 {
            margin-bottom: 2rem;
        }
        span {
            font-size: 18px;
        }
    }
}

@media (max-width: 546px) {
    .p-number {
    	font-size: 16px;	
    }
    .insights-hero {
        justify-content: center;
    }
    .policy, .cookie {
        padding: 2rem 1.5rem;
        span {
            font-size: 16px;
        }
    }
}