@font-face {
  font-family: 'Montserrat';
  src: url('/_common/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


html, body{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    height: 100%;
}

@keyframes fadeInSmooth {
  from {
    opacity: 0;
    filter: blur(1px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

h1, h2, h3, p, .footer, .hero-btn-container a, 
.scale-container a , .messangers-container img, 
li, span, .list-container img, svg {
  opacity: 0;
  animation: fadeInSmooth 1.2s ease-out forwards;
  animation-delay: 0.1s; 
}

.fade-restart {
  animation: fadeInSmooth 0.8s ease-out forwards;
  will-change: opacity, transform;
}

b, strong {
    font-weight: 600; 
    color: #000;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 100;
}

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

body{
    position: relative;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
}

p{
    margin: 0;
}

.hero-container {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    transform: translateZ(0);
    will-change: transform;
    background-color: #0e368d;
}

.hero-spacer {
    height: var(--hero-height, 100vh);
}

.hero-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: -1;
    background-color: black;
}

.bg-image{
    position: absolute;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    transform: scale(1.15);
    filter: blur(7px);
    /* animation: zoomIn 10s ease-in-out infinite alternate; */
    /* animation: fadein 1s ease-out; */
    /* transition: transform 0.1s ease-out; */
}

.hero-text-container {
    position: relative;
    text-align: center;
    color: white;
    transform-origin: center center;
    will-change: transform, opacity;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.wrapper-container{
    margin: 0 20px;
    padding: 100px 0;
    padding-bottom: calc(100px  + 24px);
    display: flex;
    align-items: center;
    
    justify-content: center;
    text-align: center;
}

h1{
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffffda;
    margin-bottom: 60px;
    text-shadow:
    0 0 5px rgba(255,255,255,0.4),
    0 0 5px rgba(255,255,255,0.2);
    letter-spacing: 3px;
    /* font-size: clamp(16px, 10vw, 82px) ;  */
    font-size: 82px;
}

.hero-container a{
    text-decoration: none;
    cursor: pointer !important;
    color: white;
    padding: 20px 40px;
    background-color: rgba(18, 66, 162, 0.8);
    border: #ffffff3a solid 1px;
    border-radius: 10px;
    /* font-size: 24px; */
    font-size: clamp(10px, 6vw, 24px) !important;
    transition: 0.5s;
    display: inline-block;
    margin-top: 160px;
    backdrop-filter: blur(10px) saturate(180%); 
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 0 20px rgba(12, 47, 118, 1);
    overflow: hidden;
    white-space: nowrap;
    min-height: 40px;
}

.hero-container a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shimmer 15s infinite ease-in-out;
  will-change: transform;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-container a::before {
    animation: none !important;
  }
}

@keyframes shimmer {
  0%   { left: -75%; opacity: 0; }
  5%   { opacity: 1; }
  10%  { left: 125%; opacity: 1; }
  11%  { opacity: 0; }
  100% { left: 125%; opacity: 0; }
}
    
    
    .wrapper-container p{
        font-size: 24px;
        color: #ffffffb7;
        letter-spacing: 1px;
    }
    
    .moto{
        color: #edededf5 !important;
        letter-spacing: 1px;
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.4), 0 0 5px rgba(255, 255, 255, 0.2);
    }
    
    .hero-container a:hover{
        background-color: #0e368d;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgb(2, 20, 57);
    }
    
    .language-container{
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
    }
    
    .language-container p{
        margin: 0;
        overflow: hidden;
        line-height: 30px; 
        margin-right: 20px;
        margin-top: 20px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
        cursor: pointer;
        transition: 0.5s;
        letter-spacing: 2px;
    }
    
    .language-container p:hover{
        transform: scale(1.4);
        color: #ffffff;
    }
    
    .services-container{
        position: relative;
        padding: 0 20px;
        font-size: 24px;
        background-color: #ffffff;
        border-radius: 18px 18px 0 0;
        /* margin-top: -120px; */
        transform: translateY(-24px);
        box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
        z-index: 3;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.8); 
        
    }
    
    
    h2{
        font-size: 36px;
        font-weight: 600;
        padding: 50px 0;
        margin: 0;
        padding-bottom: 50px;
    }
    
    .list-container{
        display: flex;
        flex-wrap: wrap;
    }
    
    .service-container{
        display: flex;
        align-items: center;
        width: 50%;
        margin-bottom: 50px;
    }
    
    .service-container img{
        height: 48px;
        width: 48px;
    }
    
    .service-container p{
        margin: 0;
        line-height: 1.2;
        padding: 0 20px;
        padding-right: 60px;
        font-weight: 400;
   
    }

    .accordion-btn {
        background-color: #ffffff;
        border: none;
        outline: none;
        width: 100%;
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 2s ease;
        font-size: 0.95em;
        color: #555;
        line-height: 1.5;
    }

    .accordion-content.open {
        max-height: 1200px;
    }

    .seo-text{
        font-weight: 400;
        color: #000000;
    }
    .seo-text a{
        text-decoration: none;
        color: #0e368d;
        font-weight: 500;
    }

    .service-container h3{
        margin: 0;
        line-height: 1.2;
        padding: 0 20px;
        padding-right: 60px;
        font-weight: 400;
        font-size: 24px;
    }

    .contact-container{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .contact-container{
        display: flex;
        align-items: center;
        flex-direction: column;
        position: relative;
        z-index: 3;
        background: #fff;
        margin-top: -25px;
    }
    
    .divider{
        height: 3px;
        width: calc(100% - 40px);
        background-color: rgba(0, 0, 0, 0.25);
        margin-top: 50px;
    }
    
    .contact-icons-container{
        border-radius: 10px;
        /* background-color: rgba(255, 255, 0, 0.30); */
        margin: 30px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .footer{
        margin-bottom: 10px;
        
        font-weight: 600;
    }
    
    .footer a{
        text-decoration: none;
        color: rgb(60, 60, 60);
    }
    
    .phone-container svg{
        height: 30px;
        margin-right: 5px;
        width: auto;
    }
    
    .phone-container a{
        font-size: 40px;
        text-decoration: none;
        font-weight: 400;
        color: #1241A3;
    }
    
    .phone-container {
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulse-phone var(--cycle) ease-in-out infinite;
        animation-delay: 0s;
        transform-origin: center;
    }
    
    .phone-container > * {
        transition: transform 0.3s ease-out;
        will-change: transform;
        transform-origin: center;
    }
    
    .scale-container:hover{
        transform: scale(1.08);
    }
    
    .messangers-container {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .messangers-container a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        animation: pulse-icon 12s ease-in-out infinite;
        transform-origin: center;
    }
    
    .messangers-container a img {
        height: 54px;
        width: 54px;
        display: block;
        cursor: pointer;
        transition: transform 0.3s ease-out;
        will-change: transform;
        transform-origin: center;
    }
    
    .messangers-container a:hover img {
        transform: scale(1.15);
    }
    
    :root {
        --cycle: 12s;
        --active-part: 0.5s;
        --step: calc(var(--active-part) / 4);
    }
    
    .phone-container {
        animation: pulse-phone var(--cycle) ease-in-out infinite;
        animation-delay: 0s;
    }
    
    .messangers-container a:nth-child(1) {
        animation: pulse-icon var(--cycle) ease-in-out infinite;
        animation-delay: var(--step);
    }
    .messangers-container a:nth-child(2) {
        animation: pulse-icon var(--cycle) ease-in-out infinite;
        animation-delay: calc(var(--step) * 2);
    }
    .messangers-container a:nth-child(3) {
        animation: pulse-icon var(--cycle) ease-in-out infinite;
        animation-delay: calc(var(--step) * 3);
    }
    
    @keyframes pulse-phone {
        0%, 10%, 100% { transform: scale(1); }
        5% { transform: scale(1.03); }
    }
    
    @keyframes pulse-icon {
        0%, 10%, 100% { transform: scale(1); }
        5% { transform: scale(1.15); }
    }
    
    .contact-icons-container {
        position: relative;
        border-radius: 30px;
        z-index: 0;
        overflow: visible;
        transform-origin: center;
    }
    
    .contact-icons-container > * {
        position: relative;
        z-index: 1;
    }
    
    .contact-icons-container::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(circle at center,
        rgba(0, 60, 255, 0.30) 20%,
        rgba(0,157,255,0) 100%);
        filter: blur(10px);
        opacity: 0;
        z-index: 0;
        pointer-events: none;
        animation: none;
    }
    
    .contact-icons-container.active-glow::before {
        animation: glow-only 12000ms ease-in-out forwards;
    }
    
    @media (prefers-reduced-motion: reduce) {
        .contact-icons-container.active-glow::before {
            animation-duration: 1200ms;
        }
    }
    
    @media (max-width: 768px) {
        .contact-icons-container.active-glow::before {
            animation-duration: 12.3s;
        }
    }
    
    @keyframes glow-only {
        0%, 100% { opacity: 0; filter: blur(45px) brightness(1); }
        10%      { opacity: 0.4; filter: blur(10px) brightness(2); }
        20%      { opacity: 0;   filter: blur(45px) brightness(1); }
    }
    
    
    
    
    
    
    
    @media (max-width: 670px) {h1{font-size: 72px;}}
    @media (max-width: 600px) {h1{font-size: 62px;}}
    @media (max-width: 500px) {h1{font-size: 52px;}}
    @media (max-width: 400px) {h1{font-size: 42px;}}
    @media (max-width: 340px) {h1{font-size: 32px;}}
    @media (max-width: 260px) {h1{font-size: 22px;}}
    @media (max-width: 190px) {h1{font-size: 16px;}}

    @media (max-width: 920px) {
        .service-container{
            width: 100%;
        }
        
        .service-container h3{
            padding-right: 0;
            padding-left: 20px;
        }

        /* .h1{
            font-size: 6;
        } */
        
        
        .wrapper-container p{
            width: 100%;
            
        }
        
        
    }
    
    @media (max-width: 512px) {
        
        .wrapper-container p{
            font-size: 20px;
        }

         .service-container h3{
            font-size: 20px;
        }

        
        .service-container img{
            height: 48px;
            width: 48px;
        }
        
        .hero-container a{
            margin-top: 200px;
            padding: 20px 20px;
        }
        
        .services-container{
            font-size: 20px;
        }
        
        h2{
            padding-top: 50px;
        }
        
        .contact-icons-container { 
            margin: 30px 0;
        }
        
        .divider{
            margin-top: 50px;
        }
        
        .phone-container a { 
            font-size: 40px;
        }
        
        .phone-container svg {
            height: 30px;
        }
        
        .messangers-container img {
            height: 56px;
            width: 56px;
        }
        
        @keyframes pulse-icon {
        0%, 10%, 100% { transform: scale(1); }
        5% { transform: scale(1.08); }
    }
        
    }
    
    
    @media (max-width: 380px) {
        
        .hero-container a{
            padding: 20px 20px;
        }

        
        .messangers-container {
              margin-top: 5px;
        }
        .wrapper-container {
            padding: 100px 0;
            padding-bottom: calc(100px + 24px);
        }
        
        .wrapper-container p{
            font-size: 20px;
        }

        .service-container h3{
            font-size: 18px;
        }
        
        .service-container img {
            height: 36px;
            width: 36px;
        }
        
        .services-container {
            font-size: 18px;
        }
        
        .phone-container a { 
            font-size: 30px;
        }
        
        .phone-container svg {
            height: 24px;
        }
        
        .messangers-container img {
            height: 48px;
            width: 48px;
        }
        
        .messangers-container a img {
            height: 48px;
            width: 48px;
        }
        
        .service-container {
            margin-bottom: 25px;
        }
        
        h2{
            padding: 25px 0;
            font-size: 30px;
        }
        
        .divider{
            margin-top: 25px;
        }
        .contact-icons-container {
            margin: 5px 0;
        }
        
        .footer{
            font-size: 12px;
        }

        .hero-container a{
            font-size: clamp(1px, 5vw, 24px) !important;

        }
    }
    
    @media (max-width: 356px) {
        .hero-container a{
            margin-top: 50px;
            padding: 16px 16px;
        }
        
        .service-container img {
            height: 30px;
            width: 30px;
        }
        
        .services-container {
            font-size: 16px;
        }

        .h3{
            font-size: 16px;
        }
        
        h2{
            font-size: 26px;
        }
    }
    
    @media (max-width: 340px) {
        .hero-container a{
            margin-top: 50px;
            padding: 16px 16px;
        }
    }
    
    @media (max-width: 320px) {
        .service-container img {
            height: 26px;
            width: 26px;
        }
        
        .services-container {
            font-size: 14px;
        }
    }
    
    @media (max-width: 286px) {
        
        .services-container {
            font-size: 12px;
        }

        
        
        .hero-container a{
            font-size: clamp(10px, 5vw, 24px) !important;
            margin-top: 100px;
            padding: 20px 20px;
        }
        
        .wrapper-container p {
            font-size: 16px;
            margin-right: 20px;
        }

        .service-container h3{
            font-size: 12px;
        }
    }
    /* ,,,, */