*{
    margin:0;
    padding:0;
    box-sizing: border-box;

}

:root{
    --neon-color: #0CFFE6;
    --background-color: #011325;
    --background-gradient: #08121C;
    --hightlight-text: #22C8D1;
    --dropshadow-text: #1DD2EE;
    --button-color: #011525;
    --area-color: #0CFFFF;
}

.highlight-text{
    color:var( --hightlight-text );
    text-shadow: 0px 0px 7.7px var(--dropshadow-text);
}

.area-color{
    color:var(--area-color);
}

p{
    color:white;
}

.dropshadow-text{
    text-shadow: 0px 0px 7.7px var(--dropshadow-text);
}

html{
	overflow-x:hidden;
}

body{
    background: linear-gradient(
        to right,
        #072634 0%,
        #06101c 50%,
        #030a13 60%,
        #06101c 80%,
        #072634 100%
      );
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
    z-index: -1;
  }

#noiseCanvas{
    position: fixed;
    width:100%;
    height:100vh;
    pointer-events: none;
    top:0;
    left:0;

}

#bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.button-linear a{
    background: linear-gradient(to top, #00F0FF 0%, #006B8E 100%);
    position: relative;
    padding: 1rem;
    border-radius: 12px;
}
  
.button-linear a::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: inherit;
    background: linear-gradient(to right, #D0FFFD 0%, #09CAC6 100%);
    z-index: -1;
  }

.button-linear{
    transition: transform 0.2s ease-in-out;
}

.button-linear:hover{
    transform: scale(0.9);
}

.bg-polygon img{
    min-width:600px;
}

.button-linear a span{
    color:var(--button-color);
}

.mb{
    display: none;
}


#header{
    padding:10px 20px;
    max-width:1180px;
    width:100%;
    margin:auto;
    height:85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header h1{
    margin:0;
}

#header h1 > a{
    display: flex;
    align-items: center;;
}

#header .primary-nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:50px;
}

#header .primary-nav ul li{
    list-style: none;
}

#header .primary-nav ul li a{
    color:white;
    font-family: "Montserrat";
    font-size:16px;
    font-weight: 600;
}

#header .primary-nav ul li a:hover{
    color:var(--neon-color);
}


#header .primary-nav ul .current_page_item a{
    color:var(--neon-color);
}

/* Footer */


#footer {
    background: linear-gradient(180deg,hsla(210, 95%, 7%, 0.1) 10%, #0BB0A6 100%);
    padding:50px 0;
}

#footer .wrapper{
    max-width:1080px;
    width:100%;
    padding:0 20px;
    margin:auto;
    gap:26px;
    display: flex;
    flex-direction: column;

}

#footer li{
    list-style: none;
}

#footer .col-1{
    display: flex;
    justify-content: space-between;
    align-items: center;

}

#footer .col-1 .location{
    display: flex;
    gap:40px;
}

#footer a, 
#footer p, 
#footer li{
    font-family: "Roboto";
    font-size: 14px;;
    color:white;
    margin:0;
}

#footer .col-1 a{
    display: flex;
}

#footer .col-1 a img{
    width:100%;
}

#footer .col-1 .location p{
    font-size:16px;
    color:var(--neon-color);
    font-weight: 700;
}

#footer .col-1 .location > li{
    display: flex;
    flex-direction: column;
    gap:16px;
}

#footer .col-1 .content li{
    display: flex;
    gap:5px;
}

#footer .col-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer .col-2 ul{
    display: flex;
    gap:32px;
}

#footer .col-2 p{
    color:#BEBEBE;
    width:250px;
    font-size:12px;
}

#footer .col-3{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:32px;
    border-top:1px solid #B7B7B7;
}

#footer .col-3 ul{
    display: flex;
    gap:24px;
    display: flex;
    align-items: center;
}


#area-parent .area-container{
    position: relative;
    z-index: 1;
    overflow: visible;
  }
  
#area-parent .area-container::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    border-radius: inherit;
  
    /* Animated gradient background */
    background: linear-gradient(270deg, #D0FFFD, #09CAC6, #D0FFFD);
    background-size: 400% 400%;
    animation: border-glow 4s linear infinite;
  
    /* Create a glow effect using blur */
    filter: blur(6px);
    opacity: 0.8;
  
    /* Mask the inner part so only border + glow is visible */
    padding: 3px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
  
    pointer-events: none;
  }

  #area-parent .area-container::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(270deg, #D0FFFD, #09CAC6, #D0FFFD);
    background-size: 400% 400%;
    animation: border-glow 1.5s ease-in-out infinite;
    padding: 3px;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;

    pointer-events: none;
  }

  #why-section .highlight-text .elementor-counter{
    display: flex;
    align-items: center;
    text-align: center;
  }
  
  @keyframes border-glow {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .area-line-container .elementor-widget-container{
    display: flex;
    flex-direction: column;
    gap:30px;
  }

  .line-container{
    position: relative;
  }

  .area-line-container.left .line-container.line-1,
  .area-line-container.right .line-container.line-3{
    width:60px;
  }

  .area-line-container .line-container.line-2{
    width:40px;
  }

  .area-line-container .line-container.line-3{
    width:80px;
  }

  .area-line-container.right .line-container.line-2{
    margin-bottom:100px;
  }

  .area-line-container.right .line-container.line-1{
    width:80px;
    margin-bottom:20px;
  }

  #contact .area-line-container .line-container.line-1{
    width:100px;
    margin-top:20px;
  }

  #contact .area-line-container .line-container.line-2{
    width:60px;
    margin-bottom:50px;
  }

  #contact .area-line-container .line-container.line-3{
    width:250px;
  }

  #newsletter .area-line-container{
    bottom:30%;
    left:0;
    position: absolute;
    z-index:-2;
  }

  #newsletter .area-line-container.right{
    right:0;
    left:auto;
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }

  #newsletter .area-line-container .line-container.line-1{
    width:250px;
    margin-bottom:30px;
  }

  #newsletter .area-line-container .line-container.line-2{
    width:100px;
    margin-bottom:50px;
  }

  #newsletter .area-line-container.right .line-container.line-1{
    width:150px;
    margin-bottom:30px;
  }

  #newsletter .area-line-container.right .line-container.line-3{
    width:250px;
    margin-bottom:30px;
  }


  .animate.line-container.elbow-line {
    position: relative;
    width: 60px;
    height:100px;
  }


  .animate.line-container.elbow-line .line-elbow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to left, #09CAC6 0%, #D0FFFD 100%);
    box-shadow:
    0 0 10px #09CAC6,
    0 0 20px #09CAC6,
    0 0 30px #D0FFFD;
    animation: drawSegment1 1s ease-in-out forwards;
    opacity: 0;
  }

  .animate.line-container.elbow-line .line-elbow::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 88%;
    width: 0;
    height: 2px;
    background: linear-gradient(to left, #09CAC6 0%, #D0FFFD 100%);
    box-shadow:
    0 0 10px #09CAC6,
    0 0 20px #09CAC6,
    0 0 30px #D0FFFD;
    animation: drawSegment2 1s ease-in-out 1s forwards;
    opacity: 0;
  }
  
  /* The diagonal connector (true elbow) */
  .animate.line-container.elbow-line .line-elbow .elbow-connector {
    position: absolute;
    top: 40px;
    left: 60%;
    width: 30px;
    height: 2px;
    background: linear-gradient(to left, #09CAC6 0%, #D0FFFD 100%);
    box-shadow:
    0 0 10px #09CAC6,
    0 0 20px #09CAC6,
    0 0 30px #D0FFFD;
    transform: rotate(-55deg);
    transform-origin: left center;
    opacity: 0;
    animation: drawSegment3 1s ease-in-out 1s forwards;
  }
  

  @keyframes drawSegment1 {
    to {
      width: 60%;
      opacity: 1;
    }
  }
  @keyframes drawSegment3 {
    to {
      opacity: 1;
    }
  }
  @keyframes drawSegment2 {
    to {
      width: 40%;
      opacity: 1;
    }
  }

  .animate .line {
    position: relative;
    height: 2px;
    background: linear-gradient(to left, #09CAC6 0%, #D0FFFD 100%);
    width: 0;
    box-shadow:
    0 0 10px #09CAC6,
    0 0 20px #09CAC6,
    0 0 30px #D0FFFD;
    animation: drawLine 1s ease-in-out forwards,
      shimmer 2s ease-in-out infinite;
  }


  .animate.line-container.elbow-line .circle {
    position: absolute;
    left: 110%;
    top:15px;
  }
  .animate .circle {
    position: absolute;
    right:-5px;;
    width: 12px;
    height: 12px;
    transform: translateY(-5px);
    background-color: #08C9C6;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 15px #08C9C6;
    animation: fadeIn 2s linear 1s forwards,
      shimmer 2s ease-in-out infinite;
  }


  .swiper-slide{
    max-width:480px;
    width:100%;
    
  }

 

  .swiper-slide .swiper-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 33px;
    gap: 18px;
    border-radius: 12px;
    
    background: linear-gradient(to top, rgba(0, 238, 255, 0.3) 0%, rgba(0, 107, 142, 0.50) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    position: relative;
    z-index: 1;
    
    border: 2px solid #D0FFFD;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
  }
  
  /* Pseudo-element for glow */
  .swiper-slide .swiper-container::before {
    content: '';
    position: absolute;
    top: -6px; left: -6px;
    right: -6px; bottom: -6px;
    border-radius: 12px;
    box-shadow: 0 0 10px #D0FFFD, 0 0 20px #09CAC6;
    z-index: -1; /* Make sure it's behind the content */
  }

  .swiper-slide .swiper-container{
    transform: scale(0.7);
  }

  .swiper-slide.swiper-slide-active{
    z-index: 2;
  }

  .swiper-slide.swiper-slide-active .swiper-container{
    transform: scale(1);
  }

  .swiper-slide p{
    margin:0;
  }

  .swiper-slide .info-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:5px;
  }

  .swiper-slide .swiper-container .client{
    display: flex;
    align-items: center;
    gap:10px;
  }

  .swiper-slide .swiper-container .client p:last-of-type{
    font-size: 12px;
  }

  .swiper-slide .rating{
    background: linear-gradient(to top, #00F0FF 0%, #006B8E 100%);
    width:120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding:2px 5px;
    gap:2px;
  }

  #bg-banner-container{
    height:100%;
  }
  

   /* Animations */
   @keyframes drawLine {
    to {
      width: 100%;
    }
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  @keyframes shimmer {
    0%, 100% {
      box-shadow: 0 0 8px cyan, 0 0 12px cyan;
    }
    50% {
      box-shadow: 0 0 16px cyan, 0 0 30px cyan;
    }
  }

  #why-img {
    transform-style: preserve-3d;
    animation: hologramRotate 6s linear infinite;
    display: inline-block;
    backface-visibility: hidden;
    perspective: 800px;
  }
  
  @keyframes hologramRotate {
    0% {
      transform: perspective(800px) rotateY(0deg) rotateX(0deg);
    }
    25% {
      transform: perspective(800px) rotateY(15deg) rotateX(5deg);
    }
    50% {
      transform: perspective(800px) rotateY(0deg) rotateX(10deg);
    }
    75% {
      transform: perspective(800px) rotateY(-15deg) rotateX(5deg);
    }
    100% {
      transform: perspective(800px) rotateY(0deg) rotateX(0deg);
    }
  }


  #founder.leader-container{
    position: relative;
    margin-left: auto;
  }

  #founder.leader-container::before{
    content: '';
    position: absolute;
    left:0;
    bottom:0;
    height: 100%;
    width:70%;
    background: linear-gradient(230deg, #00eeff00 20%, #00F0FF 100%);
    z-index:-2;
  }

  #co-founder.leader-container{
    position: relative;
    margin-right: auto;
  }

  #co-founder.leader-container > .e-con-inner{
    flex-direction: row-reverse;
  }

  #co-founder.leader-container::before{
    content: '';
    position: absolute;
    left:auto;
    right: 0;
    bottom:0;
    height: 100%;
    width:70%;
    background: linear-gradient(120deg, #00eeff00 20%, #00F0FF 100%);
    z-index:-2;
  }

  #partner.leader-container{
    position: relative;
    margin-left: auto;
  }

  #partner.leader-container::before{
    content: '';
    position: absolute;
    left:0;
    bottom:0;
    height: 100%;
    width:70%;
    background: linear-gradient(230deg, #00eeff00 20%, #00F0FF 100%);
    z-index:-2;
  }

  #partner.area-line-container.right .line-container.line-2{
    margin-bottom:30px;
  }

  .leader-img{
    max-width:380px !important;
  }

  .leader-img-2 img{
    max-width:450px !important;
  }


  .leader-img-3{
    max-width:533px !important;
  }

  .bg-consultation{
    height: 90% !important;;
  }


  #privacy-services .service-item {
    position: relative;
    border-radius: 12px;
  }

  #privacy-services .service-item::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(45deg, #D0FFFD, #09CAC6, #D0FFFD);
    border-radius: 14px;
    z-index: -1; /* Send it behind the actual card content */
    animation: glowBorder 4s linear infinite;
    background-size: 300% 300%;
    filter: blur(5px); 
  }

  #policy li{
    list-style-position: inside;
  }

  #policy ul{
    margin:20px 0;
  }

  #consult .abs-img{
    pointer-events: none;
  }

#consult .left-img,
#consult .right-img{
	height:100%;
}

#contact-form-container{
	    box-shadow: inset 0px 0px 38px 23px #000000, 0px 0px 32px 3px #12E7FF;
}

  #form-container{
    padding: 40px 20px;
    background-color: #FFFFFF;
    filter: drop-shadow(0 0 20px #0CFFE638);
    border-radius: 20px;
  }

  #form-container label{
    color:#011A2E;
    font-weight: 600;
    font-family: "Montserrat";
    font-size:20px;
    margin-bottom:10px;
  }

  #form-container input,
  #form-container textarea{
    border-radius: 10px;
    outline: none;
    border: 1px solid #898989;
  }

  #form-container textarea{
    max-height:150px;
  }

  #form-container .form-flex p{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:5px;
  }

  #form-container .form-flex p br{
    display: none;
  }

  #form-container span{
    color:#656565;
    font-weight: 300;
    font-size: 13px;;
  }

  #form-container .submit-btn{
    background: linear-gradient(to top, #00F0FF 0%, #006B8E 100%);
    position: relative;
    padding: 5px 10px;
    border-radius: 12px;
    color:#011A2E;
    transition: transform 0.2s ease-in-out;
    border: none;
    font-weight: 500;
    font-size: 16px;
  }
  #form-container .submit-btn::before{
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: inherit;
    background: linear-gradient(to right, #D0FFFD 0%, #09CAC6 100%);
    z-index: -1;
  }

  #form-container .submit-btn:hover{
    transform: scale(0.9);
  }

  form .wpcf7-response-output{
    color:white !important;
  }

  #news ul{
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    justify-content: space-around;
  }

  #news .news-item{
    max-width:400px;
    width:30%;
    min-height:274px;
    background-position: center center;
    background-size: cover;
    display: flex;
    transition: transform 0.3s ease-in-out;
    border-radius: 20px;
    position: relative;

  }

  #news .news-item::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(to bottom, #D0FFFD 0%, #09CAC6 100%);
    border-radius: 24px; /* match border-radius + padding */
    z-index: -2;
}

  #news .news-item a{
    width:100%;
    height: 100%;;
    padding:20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:5px;
    cursor: pointer;

  }

  #news .news-item a > p{
    font-size: 24px;
    font-weight: bold;
    font-family: "Montserrat";
    text-shadow: 0px 2px 6.2px #011A2E;
    margin-bottom: 0;
  }

  #news .news-item .author{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:10px;
  }

  #news .news-item .author img{
    border-radius: 100%;
    width:43px;
    height: 43px;
  }

  #news .news-item .author p{
    margin-bottom:0;
    font-size:16px;
  }

  .single-banner{
    min-height:450px;
    width:100%;
    padding:100px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .single-banner .single-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height:100%;
    max-width:1080px;
    width:100%;
    gap:25px;
  }
  
  .single-banner p{
    margin-bottom:0;
    font-weight:300;
    font-size:20px;
	  text-align: center;
    margin: 20px;
  }
  
  .single-banner h2{
    font-family: "Montserrat";
    font-weight: 800;
    font-size:48px;
    color:white;
    text-align: center;
  }

  .single-banner > img{
    position: absolute;
    left:0;
    top:0;
    z-index:-1;
  }
  
  .featured-img-container {
    background: linear-gradient(to bottom, #D0FFFD 0%, #09CAC6 100%);
    padding: 2px; 
    display: inline-block;
    border: 1px solid #09CAC6; 
    border-radius: 20px; 
    width:100%;
    height: 350px;
    overflow: hidden;
  
  }
  
  .featured-img-container img {
    display: block;
    width: 100%; 
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  #content{
    width:100%;
    max-width:1080px;
    padding: 100px 20px 50px;
    margin:auto;
  }

  #content h2,#content h3, #content h4,
  #news.latest-articles h2{
    text-shadow: 0px 0px 7.7px var(--dropshadow-text);
    color:#FFFFFF;
    font-weight: 800;
    font-size:40px;
    font-family: "Montserrat";
  }

	#content a,
	#content a:hover,
	#content a:active,
	#content a:focus,
	#content li{
		color:white;
	}

#content ul{
	margin-bottom:10px;
	list-style-position: inside;
}

  .conclusion{
    width:100%;
    padding: 20px 20px;
    position: relative;
    margin: auto;
  }

  .conclusion .conclusion-wrapper{
    max-width:1080px;
    width:100%;
    margin: auto;
  }


  .conclusion::before{
    content: '';
    position: absolute;
    left:0;
    bottom:0;
    height: 100%;
    width:40%;
    background: linear-gradient(230deg, #00eeff00 20%, #00F0FF 100%);
    z-index:-2;
  }

  .conclusion h2{
    font-family: "Montserrat";
    font-weight: 700;
    font-size:40px;
    color:white;
  }

  #newsletter{
    padding:50px 20px;
    position: relative;
    display: flex;

    /* overflow: hidden; */
  }

  #newsletter > img{
    position: absolute;
    top:0;
    left:0;
    z-index:-1;
 
  }

  #newsletter .newsletter-wrapper{
    width:100%;
    max-width:1080px;
    margin:auto;
    background-position: center center;
    background-size:cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:20px;
    border-radius: 20px;
    z-index:2;
    padding:20px;
    box-shadow: 0 0 20px #12E7FF;
    background-color: #011A2E;
  }

  #newsletter .newsletter-wrapper img{
    width:350px;
  }

  #newsletter h2{
    font-family: "Montserrat";
    font-size:48px;
    font-weight: 800;
    text-align: center;
    color:white;
  }

  #newsletter .form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  #newsletter .form-container{
    padding:10px 40px;
    background-color:white;
    border-radius: 20px;
    width:100%;
    max-width:395px;
  }

  #newsletter label{
    color:#011A2E;
    font-family: "Montserrat";
    font-weight: 600;
    font-size:20px;
  }

  #newsletter input{
    outline:none;
    border: 1px solid #898989;
    border-radius: 10px;;
    background-color: white;;
  }

  #newsletter .tnp-field-button{
    text-align: right !important;
    margin-bottom: 0 !important;
  }

  #newsletter .tnp-submit{
    background: linear-gradient(to top, #00F0FF 0%, #006B8E 100%);
    position: relative;
    padding: 1rem;
    border-radius: 12px;
    color:#011A2E;
    transition: transform 0.2s ease-in-out;
    border: none;
    font-weight: 500;
    font-size: 16px;
  }

  #newsletter .tnp-submit::before{
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: inherit;
    background: linear-gradient(to right, #D0FFFD 0%, #09CAC6 100%);
    z-index: -1;
  }

  #news.latest-articles{
    max-width:1080px;
    width:100%;
    padding:50px 20px;
    margin:auto;
    
  }

  #news.latest-articles li{
    cursor: pointer;
  }




@keyframes glowBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

  


@media( max-width:1024px ){

    .pc{
        display: none !important;
    }

    .mb{
        display: block;
    }

    .hamburger{
        display: flex;
        flex-direction: column;
        gap:5px;
        padding:5px;
        border:none;
    }

    .hamburger:hover,
    .hamburger:active,
    .hamburger:focus
    {
        background-color: transparent;
        border:none;
    }

    .hamburger::before,
    .hamburger::after{
        content:'';
    }

    .hamburger span,
    .hamburger:before,
    .hamburger::after{
        background-color:white;
        height:2px;
        border-radius: 20px;
        width:21px;
        transition: width 0.2s ease-in-out;
    }

    .hamburger::before{
        width:16px;
    }

    .hamburger::after{
        width:10px;
    }

    .hamburger:hover span,
    .hamburger:hover::after,
    .hamburger:hover::before{
        width:21px;
    }

    #header .primary-nav.mb{
        position: fixed;
        top:0;
        right:0;
        height:100vh;
        width:40%;
        transform: translateX(110%);
        background-color: var(--background-color);
        padding:50px 40px;
        box-shadow: -5px 10px 10px #b1b1b180;
        transition: transform 0.5s ease-in-out;
        z-index:999;
    }

    #header .primary-nav.mb.open{
        transform: translateX(0);
    }

    #header .primary-nav.mb ul{
        gap:10px;
        flex-direction: column;
        align-items: flex-start;
        
    }

    #header .primary-nav.mb .close-btn{
        border:none;
        font-size:32px;
        color:white;
        position: absolute;
        top:0;
        right:0;
        transition: color 0.3s ease-in-out;
    }

    #header .primary-nav.mb .close-btn:hover,
    #header .primary-nav.mb .close-btn:focus,
    #header .primary-nav.mb .close-btn:active{
        background-color:transparent;
        color:var(--neon-color);
    }

    #footer .col-1{
        flex-direction: column;
        align-items: flex-start;
        gap:20px;
    }

    #form-container{
      padding:10px;
    }

 
}

@media( max-width:768px ){
    h1{
        width:100%;
        max-width:153px;
    }


    #header .primary-nav.mb{

        width:60%;

    }


    #footer .col-1 a{
        align-self: center;
        width:100%;
        max-width:190px;
    }

        #footer .col-1 .location{
        flex-direction: column;
        gap:24px;
    }

    #footer .col-2{
        flex-direction: column;
        align-items: flex-start;
        gap:40px;
    }

    .bg-polygon img{
        min-width:550px;
    }

    #founder.leader-container::before{
        width:100%;
        height: 340px;

      }

    #founder .area-line-container.right .line-container.line-2{
      margin-bottom:30px;
    }


    #co-founder.leader-container::before{
        width:100%;
        height: 340px;
    }


    #partner.leader-container::before{
      width:100%;
      height: 340px;

    }

    #contact .area-line-container{
        z-index:1;
    }

    #contact .area-line-container .line-container.line-1{
        width:50px;
        margin-top:20px;
      }
    
      #contact .area-line-container .line-container.line-2{
        width:30px;
        margin-bottom:50px;
      }
    
      #contact .area-line-container .line-container.line-3{
        width:80px;
      }

      #form-container .form-flex p{
        flex-direction: column;
        align-items: flex-start;
      }

      .single-banner p{
        margin-bottom:0;
        font-weight:300;
        font-size:18px;
      }
      
      .single-banner h2{

        font-size:32px;

      }

      .single-banner{
        padding:20px 20px 0;
      }
	
	.featured-img-container {

		height: 250px;

  
  }

      #newsletter{
        padding-top:100px;
      }

  #newsletter .newsletter-wrapper{

    flex-direction: column;
    height: auto;
    padding:40px 20px;

  }

  #newsletter .form-container{
    max-width:100%;
    width:100%;
  }

  #news .news-item{
    width:45%;
  }




}

@media( max-width:480px ){

    #header .primary-nav.mb{
        width:100%;
    }

    #footer .col-2 ul{
        gap:15px;
    }


    #founder.leader-container::before,
    #partner.leader-container::before
    {

        height: 200px;

      }

      #co-founder.leader-container::before{

        height: 200px;

      }

      #newsletter{
        
      }
      
      #newsletter img{
        transform: translate(-100px, -100px);
      }

      #newsletter .form{
        transform:translateY(-100px)
      }

      #news .news-item{
        width:100%;
      }



}

@media( max-width:360px ){
    #footer .col-3{
        flex-direction: column-reverse;
        align-items: flex-start;
        gap:10px;
    }
    
    #footer .col-2 a{
        font-size:12px;
    }

    #footer .col-2 p{
        width:100%;
    }
}











