:root {
    --white-color: #F2F2F2;
    --white-main: #ffff;
    --black-color: #000000;
    --grey-color: #606060;
    --green-color: #00FF52;
    --placeholder-color: #999999;
    --footer-color: #F2F2F2;




    --color-bg1: rgb(2, 200, 110);
    --color-bg2: rgb(0, 190, 240);
    --color1: 2, 255, 160;
    --color2: 0, 255, 220;
    --color3: 0, 255, 160;
    --color4: 0, 220, 140;
    --color5: 0, 255, 180;
    --color-interactive: 0, 240, 160;
    --circle-size: 80%;
    --blending: hard-light;
}


* {
    margin: 0;
    padding: 0;
}

body {
    padding: 0;
    margin: 0;
    background-color: var(--white-main);

}

html {
    scroll-behavior: smooth;
}


/* buble-animation */


@keyframes moveInCircle {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(180deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes moveVertical {
    0% {
      transform: translateY(-50%);
    }
    50% {
      transform: translateY(50%);
    }
    100% {
      transform: translateY(-50%);
    }
  }
  @keyframes moveHorizontal {
    0% {
      transform: translateX(-50%) translateY(-10%);
    }
    50% {
      transform: translateX(50%) translateY(10%);
    }
    100% {
      transform: translateX(-50%) translateY(-10%);
    }
  }


  .gradient-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
    top: 0;
    z-index: -1;
    left: 0;
  }
  .gradient-bg svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
  }
  .gradient-bg .gradients-container {
    filter: url(#goo) blur(40px);
    width: 100%;
    height: 100%;
  }
  .gradient-bg .g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: center center;
    animation: moveVertical 30s ease infinite;
    opacity: 1;
  }
  .gradient-bg .g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;
    opacity: 1;
  }
  .gradient-bg .g3 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);
    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;
    opacity: 1;
  }
  .gradient-bg .g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;
    opacity: 0.7;
  }
  .gradient-bg .g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));
    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;
    opacity: 1;
  }
  .gradient-bg .interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    opacity: 0.7;
  }



/* buble-animation */


button {
    border: 0
}

h1,
h2,
h3,
h4,
h5,
p,
li,
button {
    margin: 0;
    font-family: 'helvetica';
    padding: 0;
}

a {
    text-decoration: none;
    font-family: 'helvetica';
}


@font-face {
    font-family: 'helvetica';
    src: url('../fonts/helvetica_regular.otf');
    font-weight: 400;
}

@font-face {
    font-family: 'helvetica';
    src: url('../fonts/helvetica_bold.otf');
    font-weight: 600;
}

@font-face {
    font-family: 'helvetica';
    src: url('../fonts/helvetica_light.otf');
    font-weight: 300;
}

@font-face {
    font-family: 'footerText';
    src: url('../fonts/WorkSans-VariableFont_wght.ttf');
}

.top-header {
    min-height: 100dvh;
    position: relative;
    
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    /* background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%); */

    
}



.navbar {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
 

    box-sizing: border-box;
    width: 100%;
 
   

}



.burger {
    display: none;
    position: fixed;
    padding: 15px 20px;
    top: 0;
    right: 0;
    width: 25px;
    z-index: 30;
    height: 10px;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%); 
    border-radius: 100px;
}

.burger.activeBody {
    background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%);

}
.burger.activeBodyMain {
   background: transparent!important;
}

.burger::before,
.burger::after {
    content: "";
    width: 40%;
    height: 3px;
    position: absolute;
    background-color: var(--black-color);
    transition: all 0.3s ease 0s;
  
}


.burger::before {
    top: 15px;
}

.burger::after {
    bottom: 15px;
}

.burger.active .line {
    transform: scale(0);
}

.burger.active::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.burger.active::after {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}


.logoLink {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 45px;
}

.menuLink {
    color: var(--black-color);

font-size: 32px;
font-weight: 400;
line-height: 36.8px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;


}


.closeCont {
    display: none;
    position: relative;
    width: 100%;
    justify-content: space-between;
}

.closeBurger {
    display: none;
    width: 30px;
    z-index: 50;
    height: 18px;
    right: 0;
    cursor: pointer;
    top: 5px;
    position: absolute;

}

@media(max-width: 991px) {
    .burger {
        display: flex;
    }

    .menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        background-color: var(--white-main);
        top: 0;
        left: 0;
        height: 100%;
        z-index: 40;
        gap: 12px;
        left: -100%;
        width: 100%;
        align-items: flex-start;
        box-sizing: border-box;
        padding: 10px;
        transition: left 0.3s ease;
    }

    .menu.show {
        left: 0;


    }
    .navItemForClose {
        width: 100%;
    }

    .menuLink {
        background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%);
        width: 100%;
        display: flex;
        padding: 16px 12px;
        border-radius: 6px;
        box-sizing: border-box;

font-size: 18px;
font-weight: 400;
line-height: 25.2px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .closeCont {
        display: flex;
        margin-bottom: 32px;
        padding: 5px 0 10px 0;
    }

    .burgerBack.show {
        display: block;
    }

    .closeBurger {
        display: block;
    }

    body.no-scroll {
        overflow: hidden;
    }
}




.closeBurger::before {
    content: "";
    width: 80%;
    height: 2px;
    position: absolute;
    background-color: var(--black-color);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.closeBurger::after {
    content: "";
    width: 80%;
    height:2px;
    position: absolute;
    background-color: var(--black-color);
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.burgerBack {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 20;
}







.headerText {
    display: flex;
    align-items: center;
    justify-content: center;


}
.headerTitle {
    color: var(--black-color);
    font-size: 64px;
    font-weight: 700;
    line-height: 73.59px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.headerUtils {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 24px 12px;
    width: 100%;
  
    align-items: stretch;
    justify-content: center;
    box-sizing: border-box;
}
.utils-item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(20% - 24px);
    height: auto;
    width: 100%;
    object-fit: cover;
    flex: 1 1 calc(20% - 10px);
    box-sizing: border-box;

}
.utilsText {
color: var(--white-main);
font-size: 24px;
font-weight: 400;
line-height: 28px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;
text-wrap: nowrap;
background-color: var(--black-color);
padding: 20px 10px;
border-radius: 24px;
width: 100%;
box-sizing: border-box;


}

.utilsText.active {
    background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    text-fill-color: transparent;
    background-color: transparent;
  
}
.utils-item {
    background-color: var(--white-main);
    border-radius: 24px;
}

.utilsText:hover {
    color: var(--black-color);
    background-color: var(--white-main);
   
}


.body-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    position: relative;
    overflow: hidden;
    margin: 0 auto;
   
}


.aboutUsMainCont {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}


.aboutUsBlock {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    
    width: 100%;
  
    padding: 0 32px;
    box-sizing: border-box;
    
}
.aboutUsFirstCol {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
    width: 50%;
    padding:40px 32px 40px 0 ;

    box-sizing: border-box;
    
    
}


.aboutUsDiscl, .serviceItemDesc {
color: var(--black-color);
font-size: 32px;
font-weight: 400;
line-height: 36.8px;
text-align: left;
position: relative;
z-index: 2;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}
.bodyLogo {
    width: 100%;
}
.aboutUsSecCol {
    width: 50%;
    display: flex;
    flex-direction: column;
  
    flex-grow: 1;
    justify-content: center;
    box-sizing: border-box;
    

}
.aboutUsUtils {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
    align-items: flex-end;
    border-left: 1px solid #606060;
    border-bottom: 1px solid #606060;
    padding: 55px 40px;
    max-height: 101px;
    


   
    
}



.aboutUsNumber {

color: var(--black-color);

font-size: 140px;
font-weight: 700;
line-height: 1;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;



}
.aboutUsUtilsDesc {
color: var(--black-color);
font-size: 32px;
font-weight: 700;
line-height: 1;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}


.boldText {
    font-weight: 700;
}


.secviceMainCont {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.floatingImage {
    position: absolute;
    width: 50%; 
    height: 50%;
    z-index: 1;
    pointer-events: none; 
    display: none; 
    transform: translate(-50%, -50%); 
  
}






.serviceBlock {
    padding:0px 32px 0 32px;
    display: flex;
    width: 100%;

    flex-direction: row;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    
}
.bodyNav {
    position: relative;
    z-index: 2;
}


.blackMenuLink:hover {
    background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-color: transparent;
}

.menuLink.active {
    color: #606060;
}

.menuLink.blackWhite:hover {
    color: #606060!important;
}

.menuLink.blackWhite.active {
    color: #999999;
}


.serviceFirstCol {
    display: flex;
    flex-direction: column;
    width: 50%;
    box-sizing: border-box;
  

}
.serviceColItem {
    padding: 60px 24px 60px 0;
    display: flex;
    flex-direction: column;
    gap: 180px;
    position: relative;
    
    border-bottom: 1px solid #606060;
}

.serviceColItem.active {
    background: rgb(0,255,82);
background: linear-gradient(90deg, rgba(0,255,82,0) 0%, rgba(0,255,82,1) 23%, rgba(125,88,35,0) 100%);
}

.serviceItemTitle {
color: var(--black-color);
font-size: 128px;
font-weight: 700;
line-height: 115.2px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
position: relative;
z-index: 2;

}

.withLeftPlace {
    padding-left: 32px;
}

.whiteText {
    color: var(--white-color);
}

.serviceSecCol {
    padding-top: 122px;
    border-left: 1px solid #606060;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: flex-end;
    width: 50%;
}
.serviceButtonWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.serviceLink {
color: #000000;
font-size: 32px;
font-weight: 700;
line-height: 36.8px;
padding: 120px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.keyMarkersMainCont {
    background-color: var(--black-color);
    width: 100%;

}



.keyMarkersMainBlock {
    display: flex;
    flex-direction: column;
    padding:70px 32px;
    gap: 120px;
}


.keyMarkersTitle {
color: var(--white-color);
font-size: 128px;
font-weight: 700;
line-height: 115.2px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.keyMarkersRow {

    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 140px;
}
.keyMarkersCol {
   
   width: 100%;
  

}

.hiddenKey {
    display: none;
}

.keyMarkersDesc {

        color: var(--white-color);
        font-size: 28px;
        font-weight: 400;
        line-height: 32.2px;
        text-align: justify; 
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        
        display: block; 
        width: 100%; 
  
    

}

.keyMarkersSecDesc {
    color: var(--grey-color);
    font-family: Helvetica;
font-size: 28px;
font-weight: 400;
text-align: justify; 
display: block;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}


.mapMainCont {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding:0 20px;
    background-color: var(--black-color);
    position: relative;
        
  
}

.mapMainBlock {
    position: relative;
    
}
.mapMainTextCont {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%; 
    transform: translateY(-50%);
    left: 32px;
    z-index: 20;
    gap: 20px;
    list-style: none;
}

.mapTextItem {
 color: var(--white-color);
    font-size: 96px;
    font-weight: 700;
    line-height: 86.4px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    display: inline-block; 
    width: auto; 
    white-space: nowrap;
    cursor: pointer;
     
}

.mapTextItem.active {
    color: var(--green-color);
}





.mapImg {
    width: 100%;

}

.mapSvg {
    width: 100%;
    opacity: 0;        
    position: absolute;     
    top: 0;                   
    left: 0;
    transition: opacity 0.5s ease-in-out;  
    z-index: 0;        
}

.mapSvg.active {
    opacity: 1;       
    z-index: 1;        
}


.trustedMainCont {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding:0 0 80px ;
    box-sizing: border-box;

}
.trustedHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
}
.trustedTitle {
   color: var(--black-color);
font-size: 32px;
font-weight: 700;
line-height: 32px;
text-transform: uppercase;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}
.trusteBodyCont {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
    gap: 110px;
    padding: 30px 32px 100px 32px;
    box-sizing: border-box;
    background-color: var(--white-color);
}
.trustedBodyTitle {
color: var(--black-color);
font-size: 32px;
font-weight: 400;
line-height: 32px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
gap: 20px;

}

.trustedBodyWrapper {
    overflow: hidden; 
    white-space: nowrap; 
    position: relative;
    width: 100%;
}

.trustedBodyUtils {
    display: flex;
  
  
    align-items: center;
    width: max-content; 
    animation: marqueeAnimation 6s linear infinite; 
}


@keyframes marqueeAnimation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(var(--translateXEnd));
    }
}

   .trusteBodyIcon {
    padding:0 65px;

   }


.contactMainWrap {
    display: flex;
    flex-direction: row;
  
    gap: 32px;
    width: 100%;
    padding: 0px 32px;
    box-sizing: border-box;

 
}

.contactUsSecCol {
    border-left: 1px solid #969696; 
    display: flex;
    width: 50%;
    box-sizing: border-box;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 40px 80px;
}
.contactUsForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;

}
.contactFormTitle {
   color: var(--black-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 41.4px;
    text-align: center;
    text-transform: uppercase;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    
}


.inputFormManage, .textAreaFormMamage {
    font-family: 'helvetica';
    font-size: 24px;
font-weight: 400;
line-height: 27.6px;
    border: 0;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--white-color);
    border-radius: 6px;

}



.inputFormManage::placeholder, .textAreaFormMamage::placeholder {
    font-family: 'helvetica';
color: var(--placeholder-color);
font-size: 24px;
font-weight: 400;
line-height: 27.6px;
text-align: left;
border: 1px solid transparent;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.inputFormManage:focus, .textAreaFormMamage:focus {
 
        border: 1px solid #00DFCE;
        outline-style: none;
}


.inputFormManage.error, .textAreaFormMamage.error {
    border: 1px solid #FF0000;
}

.textAreaFormMamage {
    height: 190px;
}

.contactUsBtnWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    
}



.contactUsFormBtn {
    border: 0;
    color: var(--black-color);
   background-color: transparent;
font-size: 32px;
font-weight: 700;
line-height: 1;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
cursor: pointer;
padding: 20px 40px;
border-radius: 24px;
}


.contactUsFormBtn:hover {
    background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%);

}

.contactUsFormBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #ccc;
    animation: pulse 1.5s infinite;
}

/* Optional: Add loading animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.contactUsFormBtn.active {
    background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-color: transparent;
}

.contactUsBtnWrap.active {
    background-color: var(--white-main);

}

.conatctUsFormBorder.active {
    padding: 1px;
    border-radius: 25px;
    background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%);
}


.footerWrap {

    margin: 0 auto;
    border-top: 1px var(--grey-color) solid;
    width: 100%;
    padding: 32px 40px;
    box-sizing: border-box;
    background-color: var(--footer-color);
}

.footerRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footerRowList {
    display: flex;
    flex-direction: row;
    gap: 51px;
    list-style: none;
    justify-content: flex-end;
}
.footerList {
    list-style: none;
    display: flex;
    flex-direction: column;
    
}
.footerListTitle {
color: var(--placeholder-color);
font-size: 24px;
font-weight: 700;
line-height: 27.6px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
padding-bottom: 28px;

}

.footerListTitle.active {
    background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-color: transparent;
}

.footerListTitle:hover {
    color: var(--black-color);
}



.footerListTitleBottom {
    color: var(--placeholder-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 27.6px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding-top: 28px;
}


.footerBottomDesc:hover {
    color: var(--black-color);
}


.footerLink {
    font-family: 'footerText';
color: var(--placeholder-color);
font-size: 16px;
font-weight: 400;
line-height: 18.4px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.footerLink.active {
    background: linear-gradient(105.61deg, #04E693 0%, #00DFCE 50%, #00E796 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-color: transparent;
}

.footerLink:hover {
    color: var(--black-color);
}

.footerBottomTextBlock {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 50px;
    justify-content: space-between;
   
}
.footerBottomTitle {
color: var(--black-color);
font-size: 18px;
font-weight: 700;
line-height: 20.7px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}
.footerBottomDesc {
color: var(--placeholder-color);
font-size: 24px;
font-weight: 700;
line-height: 27.6px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.showServiceLink {
    display: none;
}

.hiddenBr {
    display: none;
}

/* flexible-text */

    .headerTitle {
        font-size: calc(24px + 40 * ((100vw / 1920)));
    }

    .utilsText {
        font-size: calc(5px + 19 * ((100vw / 1920)));
        line-height: 1;
    }

    .aboutUsNumber {
        font-size: calc(64px + 76 * ((100vw / 1920)));
        line-height: 1;
    }
   

    .aboutUsDiscl, .menuLink, .serviceItemDesc {
        font-size: calc(18px + 14 * ((100vw / 1920)));
        line-height: 1;
    }
    .aboutUsUtils {
        max-height: calc( 46px + 55 * ((100vw / 1920)));
    }
    .aboutUsUtilsDesc {
        font-size: calc(16px + 16 * ((100vw / 1920)));
        line-height: 1;
    }

    .keyMarkersDesc, .keyMarkersSecDesc {
        font-size: calc(18px + 10 * ((100vw / 1920)));
        line-height: 1;
    }
    

    .serviceItemTitle, .keyMarkersTitle{
        font-size: calc(40px + 88 * ((100vw / 1920)));
        line-height: 1;
    }



    .mapTextItem {
        font-size: calc(48px + 48 * ((100vw / 1920)));
        line-height: 1;
    }

    

    .serviceLink {
        font-size: calc(24px + 8 * ((100vw / 1920)));
    }
    .mapMainCont {
        width: 100%;
        position: relative;
        overflow: hidden;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    .mapMainBlock {
        width: 100%;
        position: relative;
       
        display: flex;
       
        box-sizing: border-box;
        transition: transform 0.5s ease-in-out;
        white-space: nowrap;
       
    }

    .contactFormTitle {
        font-size: calc(24px + 12 * ((100vw / 1920)));
    }

    .trustedTitle, .trustedBodyTitle {
        font-size: calc(18px + 14 * ((100vw / 1920)));
        line-height: 1;
    }

    .serviceColItem {
        gap:calc(28px + 112 * ((100vw / 1920))) ;
    }
    
    .contactUsFormBtn {
        font-size: calc(24px + 8*((100vw / 1920)));
        line-height: 1;
    }

    .footerBottomTitle {
  font-size: calc( 0px + 14 * ((100vw / 1920)));
        line-height: 1;
    }
    .footerListTitle {
        font-size: calc( 0px + 24 * ((100vw / 1920)));
        line-height: 1;
    }
    .footerLink {
        font-size: calc( 0px + 16 * ((100vw / 1920)));
        line-height: 1;
    }

    .inputFormManage, .textAreaFormMamage, .inputFormManage::placeholder, .textAreaFormMamage::placeholder {
        font-size: calc(18px + 10 * ((100vw / 1920)));
        line-height: 1;
    }


@media(max-width: 1920px){
    .mapImg, .mapSvg {
        width: calc(1204px + 716 * ((100vw / 1920)));
        
    }

    .footerBottomTitle {

        font-size: 18px;
   
    }
    .footerListTitle {
  
        font-size: 24px;
     
    }
    .footerLink {
   
        font-size: 16px;
     
    }
}

/* flexible-text */



@media(max-width: 1200px){
    .footerRowList {
        flex-direction: column;
    }

    .footerListTitle {
     
font-size: 24px;
font-weight: 700;
line-height: 27.6px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .footerLink {
        
font-size: 16px;
font-weight: 400;
line-height: 18.4px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }
    .footerBottomTitle {

font-size: 14px;
font-weight: 700;
line-height: 16.1px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .footerRow {
        flex-direction: column-reverse;
        gap: 48px;
    }

    .contactMainWrap {
        flex-direction: column;
        justify-content: space-between;
        padding: 20px 20px 32px 20px;
        height: auto;
    }

    .contactMainWrap .aboutUsFirstCol {
        flex-direction: column-reverse;
        gap: 20px;
        justify-content: flex-end;
      

    }

    .contactMainWrap .aboutUsFirstCol .contactDescWrap {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 350px;
    }

    .aboutUsDiscl {
      
font-size: 18px;
font-weight: 400;
line-height: 20.7px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

 
 

    .trusteBodyIcon {
        padding:0 24px;
    }


    .contactUsSecCol {
        gap: 32px;
        border: 0;
        padding: 0;
        width: 100%;
    }

    .contactUsFormBtn {
 padding: 20px 40px;
font-size: 24px;
font-weight: 700;
line-height: 27.6px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .contactFormTitle {
   
font-size: 24px;
font-weight: 700;
line-height: 27.6px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }
    .inputFormManage, .textAreaFormMamage {
        font-size: 18px;
font-weight: 400;
line-height: 20.7px;
    }

    .inputFormManage::placeholder, .textAreaFormMamage::placeholder {

font-size: 18px;
font-weight: 400;
line-height: 20.7px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }
    .inputFormManage, .textAreaFormMamage {
        padding: 18px;
    }
    .mapMainTextCont {
        gap: 12px;
        left: 20px;
        top: 40%;
     
    }
    .mapTextItem {
    
font-size: 48px;
font-weight: 700;
line-height: 43.2px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .keyMarkersRow {
        flex-direction: column;
    }
    .mapSvg,
    .mapImg {
       
        
    }
    .mapMainCont {
        position: relative;
        overflow: hidden;
        padding: 0;
    }
    .trustedTitle {
    
font-size: 20px;
font-weight: 700;
line-height: 20px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .trustedBodyTitle {

font-size: 18px;
font-weight: 400;
line-height: 18px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .trustedHeader {
        padding: 32px 20px;
    }

    .trusteBodyCont {
        padding: 32px 32px 48px 32px;
        gap: 32px;

    
    }

    #umi {
        width: 41px;
    }
    #dia {
        width: 49px;
    }
    #wog {
        width: 60px;
    }

    #globuno {
        width: 44px;
    }
    #bodo {
        width: 50px;
    }

    .keyMarkersDesc {

font-size: 18px;
font-weight: 400;
line-height: 20.7px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .keyMarkersSecDesc {

font-size: 18px;
font-weight: 400;
line-height: 20.7px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }


    .showKey {
        display: none;
    }

    .hiddenKey {
        display: flex;
        padding: 48px 20px;
        box-sizing: border-box;
    }

    .keyMarkersMainBlock {
        padding: 100px 20px 48px 20px;
    }

    .keyMarkersTitle {

font-size: 32px;
font-weight: 700;
line-height: 28.8px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .bodyNav {
        display: none;
    }

    .serviceButtonWrap.hiddenServiceLink {
        display: none;
    }

    .serviceItemTitle {

font-size: 40px;
font-weight: 700;
line-height: 36px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }
    .withLeftPlace {
        padding-left: 0;
        border: 0;
    }
    .serviceSecCol {
        border: 0;
        width: 100%;
    }

    .serviceColItem {
        border-bottom: 0;
        gap: 48px;
        padding: 32px 20px;
       
        background-color: var(--footer-color);
        
    }

    .serviceItemDesc {

font-size: 18px;
font-weight: 400;
line-height: 20.7px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }
    .serviceBlock {
        flex-direction: column;
        gap: 12px;
        padding: 0;
    }

    .serviceFirstCol {
        gap: 12px;
        width: 100%;
    }

    .serviceSecCol {
        padding-top: 0;
        gap: 12px;
    }

    .secviceMainCont {
        background-color: var(--white-main);
    }

    .aboutUsBlock {
        flex-direction: column;
        padding: 20px 0;
    }

    .aboutUsNumber {
 color: var(--white-color);
font-size: 64px;
font-weight: 700;
line-height: 1;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .aboutUsDescWrap {
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .aboutUsFirstCol {
        flex-direction: column-reverse;
        width: 100%;
    }

    .aboutUsUtilsDesc {
        color: #F2F2F2;
font-size: 16px;
font-weight: 700;
line-height: 1;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }


    .aboutUsSecCol {
        background-color: var(--black-color);
        width: 100%;
        padding: 0 ;
    }



    .aboutUsUtils {
        border-left: 0 20px;
        padding: 20px;
    
    }

    .aboutUsFirstCol {
        padding: 20px 20px 0 20px;
    }

    .showServiceLink {
        display: flex;
    }

    .serviceLink {
padding: 80px 0 100px;
font-size: 24px;
font-weight: 700;
line-height: 27.6px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }
    .headerTitle {
  
font-size: 24px;
font-weight: 700;
line-height: 27.6px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

    }

    .hiddenBr {
        display: block;
    }

    .logo-img {
        width: 92px;
    }

    .headerUtils {
        flex-wrap: wrap;
    }

    .headerUtils {
        padding: 20px;
        gap: 6px;
    }
    .utils-item {
        width: 50%;

        max-width: 50%;
    }

    .utilsText {
        padding: 10px 20px;
        width: 100%;
    

font-size: 12px;
font-weight: 400;
line-height: 13.8px;
text-align: center;

text-underline-position: from-font;
text-decoration-skip-ink: none;

    }
    .navbar {
        padding: 15px 20px;
    }

    .navItemLogoImg {
        width: 92px;
    }
}


@media(max-width: 470px){
    .utils-item {
        width: 50%;
        width: 100%;
        max-width: calc(50% - 6px);
    
    height: auto;
    box-sizing: border-box;
    object-fit: cover;
    flex: 1 1 calc(50% - 6px);
        max-width: 50%;
    }
    .utilsText {
        padding: 10px 5px;
        width: 100%;
font-size: 12px;
font-weight: 400;
line-height: 13.8px;
text-align: center;

text-underline-position: from-font;
text-decoration-skip-ink: none;

    }
}






.docHeader {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.docBodyCont {
    display: flex;
    flex-direction: column;


}



.withoutBorder {
    border: 0;
}





.docHeaderWrap {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
    width: 40%;
    padding: 50px 40px 50px 0px;
    box-sizing: border-box;
    flex-grow: 1;
    height: 100%;
}
.docHeader {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.aboutUsDiscl {
}
.boldText {
}

.docHeaderDesc, .docItemDesc, .docList {
    font-size: calc(18px + 10*((100vw / 1920)));
    line-height: 1;
    font-weight: 400;

    text-align: left;
    position: relative;
    z-index: 2;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--black-color);
}

@media(max-width: 2220px){
    .docHeaderDesc, .docItemDesc, .docList {
        font-size: calc(18px + 4*((100vw / 1920)));}
}

.docMainWrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 90vh;
    padding: 0 32px;
}

.docWrap {

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 50px;
    height: 100%;

    box-sizing: border-box;
    width: 70%;
    border-left: var(--footer-color) 2px solid;
  

}
.docList {
    margin-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.docBodyCont {
    position: relative;
    overflow-y: scroll;
    width: 100%;
    display: flex;
    padding-top: 50px;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
 
    scrollbar-width: none; 
}

.docBodyCont::-webkit-scrollbar {
    display: none; 
}
.docItem {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--black-color);
    border-bottom: var(--footer-color) 2px solid;
    padding: 0 20px 20px 20px;
    width: 100%;
    box-sizing: border-box;
}
.docItemTitle {
    font-size: calc(18px + 14 * ((100vw / 1920)));

font-weight: 900;

line-height: 1;


}




.docHeaderTitle {
    color: var(--black-color);
    font-size: calc(24px + 40 * ((100vw / 1920)));
    line-height: 1;
    font-weight: 700;
    text-wrap: wrap;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    display: inline-block;
    width: auto;

    cursor: pointer;
}




.docContactLink {
    color: #000000;
    font-size: calc(24px + 8*((100vw / 1920)));
    font-weight: 700;
    line-height: 1;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

@media(max-width: 1200px){
    .docMainWrap {
        flex-direction: column;
        height: auto;
        padding: 50px 32px;
        gap: 40px;
    }
    .docWrap {
        overflow: hidden;
        width: 100%;
        padding:0px;
    }
    .docBodyCont {
        overflow: hidden;
        width: 100%;
        padding:0px;
    }
    .docHeaderWrap {
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0;
        flex-direction: column-reverse;
    }

    .docHeaderTitle {

font-weight: 900;
font-size: 46px;
line-height: 66.7px;
letter-spacing: 0%;
text-align: center;

    }
    .docHeaderDesc {

font-weight: 400;
font-size: 16px;
line-height: 23.2px;
letter-spacing: 0%;
text-align: center;
max-width: 740px;
margin: 0 auto;
    }

    .docItemTitle {
  
font-weight: 900;
font-size: 35px;
line-height: 50.75px;
letter-spacing: 0%;

    }

    .docItemDesc, .docList {

        font-weight: 400;
        font-size: 16px;
        line-height: 23.2px;
        letter-spacing: 0%;
        

    }

    .docItem {
        padding: 0;
    }

 
}