@font-face {
    font-family: bob;
    src: url(./Fonts/Roboto-Regular.ttf);
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  :root{
    --primary-color: #5570ff;
    --primary-color-2: #5671FF;
    --text-color: #2c346D;
    --light-color: #F5F7FF;
    --seconndary-color: #B36AFF;
    --light-green: #9AFB02;
  }
  /* reset */
  body, p, a, ul, li{
    margin: 0;
    padding: 0;
    text-decoration: none;
}
li{
    list-style-type: none;
}
body{
    overflow-x: hidden;
    font-family: bob, sans-serif;
    color: var(--text-color);
}
a{
    font-family: bob, sans-serif;
}

/* Header styling starts here */
header{
    background: linear-gradient(90deg, #f2f7ff, #e6f0ff);
    position: relative;
}
nav{
    height: 100px;
    display: flex;
    align-items: center;
    animation: slideInFromTop 1s ease-in;
}
.nav-logo img{
    width: 200px;
    height: 65px;
}
nav ul{
    margin-left: auto;
    display: flex;
    width: 25% ;
    justify-content: space-between;
}
nav ul div{
    display: none;
}
nav ul a{
    color: #000;
    font-size: 0.85em;
    font-weight: bolder;
}
/* Hamburger page */
.hamburger-page {
    width: 100%;
    transition: 1s all ease-in;
    position: absolute;
    top: 0;
    height: 500px;
    background-color: var(--light-color);
    transform: translateX(400px);
    z-index: 1000; 
    display: none;
}

.hamburger-page.show {
    display: block;
    transform: translate(0);
    transition: 1s all ease-in;
    
}

.hamburger-nav {
    background-color: var(--text-color);
    display: flex;
    align-items: center;
}

.close-btn {
    width: 30%;
    cursor: pointer;
}

.ham-list ul {
    width: 100%;
    text-align: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.ham-list li {
    padding: 10px 0;
    transition: 0.3s ease-in;
}

.ham-list li:hover {
    font-size: smaller;
    font-weight: bolder;
}


/* Hero section begins here */
.hero{
    height: 600px;
}
.hero-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 70%;
    height: 80%;
    animation: slideInFromLeft 1s ease-in;
}

.wallet-logo{
    width: 120px;
    height: 19px;
}
.wallet-logo img{
    width: 120px;
    height: 19px;
}
.hero-content h1{
    font-size: 4em;
}
.hero-content span{
    font-size: .8em;
    width: 60%;
    color: var(--text-color);
    font-weight: 100;
    line-height: 2em;
}
.get-started{
    background-color: var(--primary-color);
    
}

.get-started a {
    color: #fff;
}
.hero-image{
    display: flex;
    justify-content: flex-end;
    width: 30%;
    height: 100%;
    animation: slideInFromRight 1s ease-in;
}
.hero-image img{
    width: 450px;
    height: 460px;
}

/* Elementor section */
.elementor{
    height: 350px;
    width: 100%;
}
.elementor div{
    text-align: center;
    width: 25%;
}
.elementor img{
    width: 180px;
    height: 50px;
}

/* Toolkit section */

.toolkit{
    background: linear-gradient(90deg, #f2f7ff, #e6f0ff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 500px;
    border-radius: 20px;
}
.toolkit-write-up{
    padding-left: 40px;
}
.toolkit-write-up h2{
    font-size: 2.1em;
    font-weight: 700;
    
}
.toolkit-write-up p{
    margin-top: 20px;
}
.toolkit-image{
    width: 50%;
}
.toolkit img{
    width: 100%;
    height: 350px;
}

/* Function styling here */

/* .function{
    margin: 100px 0;
    background: linear-gradient(90deg, #f2f7ff, #e6f0ff);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 1fr 1fr;
}
.function-1{
    grid-column: 1/3;
}
.function-2{
    grid-column: 3/5;
}
.function-3{
    grid-column: 5/7;
}
.function-4{
    grid-column: 1/3;
}
.function-5{
    grid-column: 3/5;
}
.function-6{
    grid-column: 5/7;
} */

.function-container{
    margin: 100px 0;
    background: linear-gradient(90deg, #f2f7ff, #e6f0ff);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: 1fr 1fr; 
    grid-gap: 40px;
    padding: 50px 20px;
}

.function-1{
    grid-row: 1;
    grid-column: span 3;
    padding: 30px ;
    
}

.function-2{
    grid-row: 2;
    grid-column: span 3; 
    padding: 30px;
    
}
.function-container > div:hover i{
    transform: translateY(20px);
    transition: .5s ease-in;
}
.function-container > 

.function .leading{
    font-size: 1.5em;
    font-weight: bold;
}
.function i{
    
    padding-bottom: 40px;
}
.function p{
    line-height: 2em;
}
.function a{
    font-size: 1.3em;
}

/* Essentials styling */
.essentials{
    background-color: #1B1F44;
    height: 500px;
    display: flex;
    align-items: center;
}
.essentials-container{
    background: url(./images/IT-Business-Services-BG.webp);
    background-repeat: no-repeat;
    height: 80%;
    margin: 50px 20px;
    color: var(--light-color);
    border-radius: 20px;
    gap: 200px;
}
.essentials-write-up{
    width: 50%;
    padding: 30px;
    
}
.essentials .leading{
    font-size: 2em;
    font-weight: bolder;
}
.essentials p{
    line-height: 2.5em;
}
.essentials-image{
    width: 50%;
}
.essentials-image img{
    width: 450px;
    height: 400px;
}
/* Build styling starts here */

.build{
    margin: 100px 0;
    background-color: var(--primary-color-2);
    height: 350px;
    color: var(--light-color);
}
.build-container{
    height: inherit;
}
.build-write-up{
    width: 50%;
}
.build .leading{
    font-size: 2.5em;
    font-weight: bolder;
    letter-spacing: .1em;
}
.build-center{
    background-color: var(--light-green);
    margin: 30px 0;
}
.build-center a, .build-center i{
    color: var(--text-color);
}
.build-image{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
.build img{
    width: 300px;
    height: 200px;
}
.footer-container{
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    height: 400px;
    border-bottom: 1px solid #e5e2e2;
}
.footer-image, .footer-products, .footer-resources, .footer-company, .footer-connect{
    grid-column: span 2;
}
.footer-container span{
    display: block;
    padding: 10px 0;
}
.footer-container span a{
    color: var(--text-color);
}
.footer-copyright{
    height: 150px;
    display: flex;
    align-items: center;
}
/* Animations */
@keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
    }
  
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes slideInFromRight {
    from {
      transform: translateX(100%);
    }
  
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes slideInFromTop {
    0% {
      transform: translateY(-100%);
    }
  
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes slideInFromBottom {
    0% {
      transform: translateY(100%);
    }
  
    100% {
      transform: translateX(0);
    }
}

/* Tablets */
@media only screen and (min-width: 768px) and (max-width: 1280px) {
    nav ul  {
        width: 30%;
    }
    nav ul div{
        display: none;
    }
    .hero {
        height: 500px;
    }
    .hero-content {
        width: 80%;
    }
    .hero-content h1 {
        font-size: 3em;
    }
    .hero-content span {
        width: 70%;
    }
    .hero-image{
        justify-content: center;
    }
    .hero-image img {
        width: 350px;
        height: 350px;
    }
    /* elementor */
    .elementor{
        height: 100px;
    }
    .elementor div{
        width: 25%;
    }
    .elementor img{
        width: 80px;
        height: 20px;
    }
    /* toolkit */
    .toolkit {
        height: 400px;
    }
    .toolkit-write-up{
        padding: 10px;
    }
    .toolkit-write-up h2{
        font-size: 1.2em;
    }
    .toolkit-write-up p{
        margin-top: px;
        font-size: .8em;
    }
    .toolkit-image img{
        width: 70%;
        height: 70%;
    }
    /* essentials */
    .essentials{
        height: 400px;
    }
    .essentials-container{
        margin: 0;
        gap: 0;
        height: 90%;

    }
    .essentials-write-up{
        width: 100%;
        padding: 10px;
        
    }
    .essentials .leading{
        font-size: 1.5em;
        font-weight: bolder;
    }
    .essentials p{
        line-height: 1.8em;
    }
    .essentials-image{
        width: 50%;
    }
    .essentials-image img{
        width: 300px;
        height: 250px;
    }
    /* Build */
    .build{
        margin: 100px 0;
    }
    /* footer */
    .footer-image img{
        width: 100px;
    }
    .footer-container{
        height: 300px;
        font-size: 12px;
    }
    .footer-copyright{
        height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .nav-logo{
        margin-left: 20px;
    }
    nav ul{
        width: 15%;
    }
    nav ul div{
        display: block;
        
    }
    nav ul li{
        display: none;
    }
   
    .hero{
        flex-direction: column;
        margin-top: 50px;
    }
    .hero-content{
        justify-content: center;
        width: 90%;
    }
    .hero-content h1{
        font-size: 2em;
        
    }
    .hero-content span{
        width: 80%;
    }
    .hero-image{
        justify-content: center;
    }
    .hero-image img{
        width: 350px;
        height: 350px;
    }
    /* .container{
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    } */
    
    /* Function */
    .function-container{
        margin: 50px 0;
    }
     /* elementor */
    .elementor{
        height: 100px;
    }
    .elementor div{
        width: 25%;
    }
    .elementor img{
        width: 80px;
        height: 20px;
    }
    /* toolkit */
    .toolkit{
        flex-direction: column;
        height: 370px;
    }
    .toolkit-write-up{
        padding: 10px;
    }
    .toolkit-write-up h2{
        font-size: 1.2em;
    }
    .toolkit-write-up p{
        margin-top: px;
        font-size: .8em;
    }
    .toolkit-image{
        width: 50%;
    }
    .toolkit img{
        width: 100%;
        height: 150px;
    }
    /* function */
    .function-container{
        display: block;
        margin: 50px 0;
    }
    .function .leading{
        font-weight: bolder;
    }
    .function p{
        line-height: 1.5em;
    }
    /* Essentials */
    .essentials{
        height: 400px;
    }
    .essentials-container{
        flex-direction: column;
        height: auto;
    }
    .essentials-write-up{
        width: 100%;

    }
    .essentials-image{
        display: none;
    }
    /* Build */
    .build{
        margin: 30px 0;
        height: 200px;
    }
    .build-write-up{
        width: 90%;
    }
    .build .leading{
        font-size: 1.5em;
    }
    .build-image{
        display: none;
    }
    /* footer */
    .footer-container{
        grid-template-columns: repeat(8, 1fr);
        font-size: 12px;
        height: 300px;
    }
    .footer-image{
        display: none;
    }
    .footer-copyright{
        height: 100px;

    }


}


    