@font-face {
    font-family: 'myFont';
    src: url('/aspekta-main/fonts/ttf/Aspekta-400.ttf') format('truetype'); 
}
:root{
    --main-color: #00161A;
    --sec-color: #EBF1F2;
    --bighead: #BCF5FF;
    --smallhead:#006C80;
    --bigtext:#00161A;
    --smalltext:#515151;
}
*{
     font-family: 'myFont', sans-serif;
     margin: 0; padding: 0;
     box-sizing: border-box;
     outline: none; border: none;
     text-decoration: none;
     transition: .2s linear;
 }
 body{
    background-color: var(--sec-color);
    -webkit-font-smoothing: antialiased; 
    font-feature-settings:'ss02'; 
    overflow-x: hidden;
    padding-top: 2.5rem;
    
}
header{
    position: fixed;
    width: 100%;
    z-index: 999;
}
#navbar{
   
    background-color: #fff;
    border-radius: 1rem;
    align-items: center;
    padding-inline: 1rem 0.75rem;
    padding-top: 0.75rem;
    padding-bottom:0.75rem ;
    margin-inline: auto;
    box-shadow: 
    0px 2px 4px 0px rgba(0, 22, 26, 0.04),
    0px 20px 32px -12px rgba(0, 92, 109, 0.1),
    0px 0px 1px 1px rgba(0, 71, 84, 0.06);
    backdrop-filter: blur(10px);  
   -webkit-backdrop-filter: blur(10px);

}
#navbar, .navbar__properties {
   display: flex;   
   justify-content: space-between;
}
.navbar__properties{
    gap: 2rem;
}
.navbar__list{
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
    font-weight: 550;
}
a{
    color: #131313;
    text-decoration: none;
    text-decoration-color: white;
}
a:hover{
    color: #006C80;
}
.button{
    display: flex;
    gap: 0.375rem;
}
.button--first{
    width: 4.51rem;
    height: 2.25rem;
    background-color: rgba(19, 19, 19, 1);
    color: #fff;
    padding:0.125rem;
    border-radius: 0.562rem;
    font-size: 1rem;
    font-weight: 550;
    text-align: center;
    line-height: 125%;
    letter-spacing: 0.075em;
    cursor: pointer;

}
.button--second{
    display: flex;
    align-items: center;
    width: 6.66875rem;
    height: 2.25rem;
    background-color: rgba(19, 19, 19, 1);
    color: #fff;
    padding:0.6875rem;
    border-radius: 0.562rem;
    font-size: 1rem;
    font-weight: 550;
    text-align: center;
    line-height: 125%;
    cursor: pointer;

}
.button--second img{
    padding-right: 0.6rem;

}
.icon{
    font-size: 1.2rem;
    padding-right: 0.5rem;
}
.logo{
    padding-top: 0.6rem;
}
.logo img{
    width: 6.5rem;
}
#navbar{
    display: none;
}
#hamburger-nav{
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: 3.75rem;
    align-items: center;
    background-color: #fff;
    padding-inline: 1rem;
    margin-inline:auto ;
    border-radius: 1rem;
    box-shadow: 
    0px 2px 4px 0px rgba(0, 22, 26, 0.04),
    0px 20px 32px -12px rgba(0, 92, 109, 0.1),
    0px 0px 1px 1px rgba(0, 71, 84, 0.06);
    backdrop-filter: blur(10px);  
   -webkit-backdrop-filter: blur(10px);

}
.hamburger-menu{
    position: relative;
    display: inline-block;
}
.hamburger-icon{
    padding-top: 0.5rem;
    cursor: pointer;
 
}/*
.hamburger-icon span{
    width: 100%;
    height: 0.125rem;
    background-color: black;
    transition: all 0.3 ease-in-out;
} */
#swap-icon{  
    display: none;
 }
.menu-links{
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
}
.menu-links a{
    display: block;
    padding: 0.625rem;
    text-align: center;
    font-size: 1.5rem;
    color:black ;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
}
.menu-links li{
    list-style: none;
}
.menu-links.open{
    max-height: 18.75rem;
}
/*.hamburger-icon.open span:first-child{
    transform: rotate(45deg) translate(10px, 5px);
}
.hamburger-icon.open span:nth-child(2){
    opacity: 0;
}
.hamburger-icon.open span:last-child{
    transform: rotate(-45deg) translate(10px, -5px);
}
.hamburger-icon span:first-child{
    transform: none;
}
.hamburger-icon span:first-child{
    opacity: 1;
}
.hamburger-icon span:first-child{
    transform: none;
} */
.button--third{
    width: 4.51rem;
    height: 2.25rem;
    background-color: rgba(19, 19, 19, 1);
    color: #fff;
    padding:0.125rem;
    border-radius: 0.562rem;
    font-size: 1rem;
    font-weight: 550;
    text-align: center;
    line-height: 125%;
    letter-spacing: 0.075em;
    cursor: pointer;

}
.button--fourth{
    display: flex;
    align-items: center;
    width: 6.66875rem;
    height: 2.25rem;
    background-color: rgba(19, 19, 19, 1);
    color: #fff;
    padding:0.6875rem;
    border-radius: 0.562rem;
    font-size: 1rem;
    font-weight: 550;
    text-align: center;
    line-height: 125%;
    cursor: pointer;

}
.button--fourth img{
    padding-right: 0.6rem;

}
.icon{
    font-size: 1.2rem;
    padding-right: 0.5rem;
}
#hero{
    margin-top: 7rem;
    padding-bottom: 5rem;
}

.hero__heading{
    display: flex;
    flex-direction: column;
    gap:1.5rem ;
    justify-content: center;
    margin: auto;
    width:90% ;

}
.hero__heading h1{
    font-size:2.5rem ;
    font-weight: 600;
    line-height: 114.99999999999999%;
    text-align: center;
}
.hero__heading p{
    font-size:0.875rem ;
    font-weight: 400;
    color: #232323;
    text-align: center;
    line-height: 125%;
    letter-spacing: -0.0125em;
}
.grid__wrapper{
    height: 193.75rem;
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.25rem;
    justify-content: center;
}
.card{
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    width: 90%;
    height: 31.25rem;
    background-color: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 
    0px 2px 3px 0px rgba(0, 22, 26, 0.04),  
    0px 24px 68px 0px rgba(46, 46, 46, 0.05), 
    0px 4px 6px 0px rgba(0, 92, 109, 0.04),  
    0px 1px 1px 0px rgba(0, 22, 26, 0.05); 

}
.card--tu{ 
    gap: 5rem;
}

.card--note{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.card--note h3{
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 114.99999999999999%;
    letter-spacing: -0.02em;

}
.card--note p{
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: -0.0125em;

}
.card img{
    width: 100%;
    object-fit: contain;
}








.image--dtt{
    display: none;
}

.features__account__wrapper{
    width: 95%;
    border-radius:1.25rem;
    margin-top: 7.5rem;
    margin-inline:auto ;
    padding: 1.5rem;
    background-color: var(--main-color);
}
.features--account{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

}
.features--account--card{
    display: flex;
    flex-direction: column;
    gap: 0.625rem;

}
.features--account--card h2{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bighead);
    line-height: 114.99999999999999%;
    letter-spacing:-0.02em;

}
.features--account--card p{
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 125%;
    color: #cdcdcd;
    mix-blend-mode: luminosity;

}
.button{
    display: flex;
    gap: 0.375rem;
}
.button--first{
    width: 4.51rem;
    height: 2.25rem;
    background-color: #fff;
    color: #000;
    padding:0.125rem;
    border-radius: 0.562rem;
    font-size: 1rem;
    font-weight: 550;
    text-align: center;
    line-height: 125%;
    letter-spacing: .75%;
    cursor: pointer;

}
.button--second{
    display: flex;
    align-items: center;
    width: 6.66875rem;
    height: 2.25rem;
    background-color: #fff;
    color: #000;
    padding:0.6875rem;
    border-radius: 0.562rem;
    font-size: 1rem;
    font-weight: 550;
    text-align: center;
    line-height: 125%;
    letter-spacing: .75%;
    cursor: pointer;
}
.button--second img{
    padding-right: 0.6rem;

}
#contacts{
    padding-inline: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--main-color);
}
.contacts__wrapper{
    display: flex;
    flex-direction: column;
    gap: 2rem;

}
.contacts__wrapper--card{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contacts--card{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacts__wrapper--card h3{
    font-size: 0.875rem;
    font-weight: 500;
    color:#cdcdcd;
    mix-blend-mode: luminosity;

}
.logo1{
    width:20%;
}
.contacts__wrapper--box{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.wrap--box{
    display: flex;
    justify-content: space-between;
  
}
.bux a{
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #AFAFAF;
    mix-blend-mode: luminosity;
}
.bux p{
    font-size: 0.875rem;
    font-weight: 500;
    color: #AFAFAF;
    mix-blend-mode: luminosity;

}
.contacts__wrapper--about{
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.contacts__wrapper--about p{
    font-size: 0.875rem;
    font-weight: 500;
    color: #cdcdcd;
    mix-blend-mode: luminosity;
    line-height: 125%;
    letter-spacing: 0.0125em;
}
.contacts__wrapper--push{
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
}

.contacts__wrapper--push p{
    font-size: 0.875rem;
    font-weight: 550;
    color: #CDCDCD;
    mix-blend-mode: luminosity;
}
.push i{
    color: #fff;

}
