

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
}

* section{
    width: 100%;
    height: auto;
    padding: 5rem;
    
}

:root {
    --primary-color: #2992D2;
    --text-color:#0D121C;
    --background-color:#202939;
}

html {
    scroll-behavior: smooth;
}


/* Navigation_bar_styles */
nav{
    width: 100%;
    padding: 1rem 4rem;
    background-color: var(--background-color);
    border-bottom: 1px solid #e2e6e926;
    position: fixed;
    z-index: 1000;
}

nav .nav-list{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 0.9rem;
}

.logo p{
    font-weight: 800;
    color: white;
}

.nav-list ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    column-gap: 1rem;
    cursor: pointer;
}

ul li a{
    text-decoration: none;
    font-size: 0.9rem;
    color: whitesmoke;
}

button{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 8px;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    background-color: var(--primary-color);
    color: white;
    outline: none;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

/* Hero_section */

.hero-section{
    background-image: url(backgroundimage.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    height: 100vh; 
    padding-top: 80px;
    
}

.hero-section-container{
    background-color: #202939f5;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 4rem;
}

.header-description{
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 2.5rem;
    width: 60%;
}

.header-content{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.header-content h1{
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: bolder;
    max-width: 80%;
    color: white;
}

.paragraph{
    font-size: 1rem;
    line-height: 1.7rem;
    max-width: 80%;
    color: #adb5bc;
}

.header-button{
    display: flex;
    flex-direction: row;
    column-gap: 1.5rem;
}

.header-image{
    width: 100%;
    display: flex;
    align-items: end;
    flex-direction: column;
    flex: 1;
}

.telegramChannel{
    background-color: white;
    color: #2992D2;
    border: 1px solid var(--primary-color);
}

.mobile-menu{
    color: white;
    display: none;
}

/* Service_section */
.service-section{
    background-color: white;
    padding-top: 4rem;
}

.mainContainer{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3rem;
}

.service-header{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
}

.service-header h2{
    font-size: 2.5rem;
    font-weight: 700;
}
.service-header p{
    font-size: 1rem;
    line-height: 1.5rem;
    max-width: 40%;
    color: #5D6B78;
    text-align: center;
}

.service-description{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.services{
    background-color: #CCF4FE;
    padding: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 32px;
}

.crypto{
    background-color: #FFE6DF;
}

.service-content{
    display: flex;
    flex-direction: column; 
    row-gap: 2.5rem;
    width: 100%;
    flex: 1;
}

.service-content  button{
    width: fit-content;
}

.about-service{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.title{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.title h2{
    font-size: 2rem;
}

.title p{
    font-size: 1rem;
    line-height: 1.5rem;
    max-width: 100%;
    color: #202939;
    text-align: start;
}

.service-process{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}


.service-process ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.list{
    display: flex;
    flex-direction: row;
    column-gap: 0.8rem;
    align-items: start;
    /* color: #364152; */
}

.list i{
    padding: 0.5rem;
    color: #121926;
    border-radius: 100px;
    font-size: 1rem;
}

.list-title{
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}

.list-title h4{
    font-size: 1.2rem;
}

.list-title p{
    font-size: 1rem;
    line-height: 1.5rem;
    max-width: 100%;
    color: #364152;
    text-align: start;
}

.service-image-card{
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.service-image-card img{
    width: 100%;
    height: auto;
}

/* WhyUS_container */

.whyUs-section{
    background-color: #F8F8F8;
}

.whyUs-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.reason{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
    height: 300px;
    padding: 1.5rem;
    border-radius: 32px;
    border: 1px solid #E3E8EF;
}

.reason img{
    width: 48px;
    height: 48px;
}

.reason-title{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
}

.reason-title h4{
    font-size: 1.2rem;
    line-height: 1.6rem;
}

.reason-title p{
    font-size: 1rem;
    line-height: 1.5rem;
    max-width: 100%;
    color: #364152;
    text-align: center;
}

/* Call_to_action */
.call-to-action{
    background-color: #121926;
}

.action h2{
    color: white;
}

.contact-info{
    width: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-info img{
    width: 80px;
    height: 80px;
}

/* About_Us_section */

.about-container{
    flex-direction: row;
    align-items: center;
}

.about{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    flex: 1;
}

.about-container button{
    width: fit-content;
    background-color: white;
    color: var(--primary-color);
}
.aboutUsContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.tags{
    width: fit-content;
    display: flex;
    flex-direction: row;
    padding: 0.5rem;
    border-radius: 100px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.5rem;
   
}

.header{
    font-size: 1rem;
    line-height: 1.6rem;
    font-style: italic;
    color: var(--primary-color);
}
.aboutUstitle{
    justify-content: start;
    align-items: start;
}

.aboutUstitle h2{
    max-width: 80%;
}

.aboutUstitle p{
    text-align: start;
    max-width: 80%;
}

.customer-say{
    width: 100%;
    display: flex;
    flex-direction: column; 
    row-gap: 1.5rem; 
}

.content-say{
    display: flex;
    flex-direction: row;
    column-gap: 1.5rem;
    align-items: center;
}

.titlereason{
    width: 70%;
    align-items: start;
    row-gap: 0.4rem;
}

.titlereason p{
    text-align: start;
    line-height: 1.5rem;
}

.about-us-image{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.about-us-image img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50px; 
}

.callToaction{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 3rem;
}

.callTo{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.callTo h2{
    color: white;
}

.callTo p{
    color: rgba(245, 245, 245, 0.721);
}
.callToaction{
    background-color: var(--primary-color);
}

/* Footer_section */

footer{
    background-color: #121926;
}
.footer-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    padding: 3rem;
}

.footer-logo{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.footerLogo p{
    color: white;
}

.footer-logo p{
    color: #E2E6E9;
    max-width: 70%;
    line-height: 1.5rem;
}

.footer-container ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
}

.footer-container ul h4{
    font-size: 0.9rem;
    color: white;
}

.footer-container ul li{
    font-size: 0.9rem;
    color: #cdd5dfd2;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    column-gap: 0.7rem;
    align-items: center;
}

.footer-container ul li a{
    color: #cdd5dfd2;
    text-decoration: none;
}

.telegram{
    background-color: #121926;
    border: none;
}

/* Testimonials */

.testimonials {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: white;
}

.testimonials-container {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLoop 40s linear infinite;
}


.testimonial-content{
    flex: 0 0 300px;
    width: 100%;
    background-color: #f8f8f8;
    padding: 1.5rem;
    border: 1px solid #f7f7f7;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
}

@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1920px); } 

}

.testimonial-content:click {
    animation-play-state: paused;
}

.testimonial-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.testimonial-header h4{
    font-size: 1.1rem;
    line-height: 1.6rem;
    font-weight: 600;
}

.testimonial-header p{
    font-size: 1rem;
    color: #202939;
}

/* Mobile_Menu */

/* Nav-bar_menu */
