*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Gilroy';
}

html,body{
    height: 100%;
    width: 100%;
}

.main{
    height: 100%;
    width: 100%;
    position: relative;
    
}

.nav{
    height: 100px;
    width: 100%  ;    
    background-color: blueviolet;
    border-bottom: 2px solid #dadada;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
}

.nav-part2{
   display: flex;
   align-items: center;
   gap: 4vw;

}

.nav h2{
    font-size: 1.8vw;
    font-weight: 700;
}

.nav h4{
    font-size: 1.2vw;
}

.nav i{
    font-weight: 800;
    display: none;
}

.nav button{
    font-size: 1vw;
    padding: 0.7vw 1.4vw;
    background-color: rgb(77, 183, 232);
    color:#fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
}

.content{
    height: calc(100% - 100px);
    width: 100%;
   /* background-color: burlywood;*/ 
    display: flex;
    position: relative;
}

.left{
    height: 100%;
    width: 55%;
    /*background-color: crimson;*/
    padding: 5vw 4vw ;   
}

.left h1{
     font-size: 4vw;
     line-height: 4.2vw;
}

.left h1 span{
    color: rgb(77, 183, 232);
}

.left h2{
    font-size: 2.0vw;
    line-height: 1.5vw;
}

.left h2 span{
    color: rgb(77, 183, 232); }

.left p{
    font-size: 1.2vw;
    font-weight: 600;
    color: #666;
    width: 80%;
    margin-top: 1.5vw;
    margin-bottom: 3vw;
}

.right{
    height: 100%;
    width: 45%;
   /* background-color: yellow;*/
}

.right img{
    height: 100%;
    width: 100%;
}
.content button{
    font-size: 1.2vw;
    padding: 1.2vw 2.0vw;
    background-color: rgb(77, 183, 232);
    color:#fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
}

@media (max-width:600px){
    .nav{
        background-color: lightseagreen;
        color: black;
        padding: 0 5vw;
        height: 60px;
    }
    .nav h2{
        font-size: 5.1vw;
    }

    .nav h4{
        font-size: 4vw;
        display: none;
    }

    .nav button{
        display: nones;
    }
    .nav i{
        display: block;
        font-size: 4.5vw;
    }

    .content{
        height: calc(100% - 60px);
        flex-direction: column;
    }
    .left{
      width: 100%;
      height: 50%;
      padding: 4vw 6vw;
    }

    .right{
        width: 100%;
        height: 50%;
    }

    .left h1{
        font-size: 10vw;
        line-height: 11vw;
    }

    .left p{
        font-size: 3vw;
        width: 90%;
        margin-top: 5vw;
        margin-bottom: 6vw;
    }
    .content button {
        padding: 3vw 6vw ;
        border-radius: 3px;
        font-weight: 600;
        font-size: 2.5vw;
    }
}