@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0%;
    margin: 0%;
    text-transform: capitalize;
    transition: all 0.5s linear;
    font-family: "Noto Sans", sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


.navbar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 12vh;
    width: 100%;
    background-color: #fff;
    box-shadow: rgba(100,100,111,0.2) 0px 7px 29px 0px;
}
.logo{
    color: #9400D3;
    font-size: 30px;
}
.navbar li{
    display: inline-block;
    padding: 10px 8px;
}
.navbar li a{
    text-decoration: none;
    color: #777;
    font-size: 20px;
    padding: 4px;
}
.navbar ul li::after{
    content: '';
    height: 2px;
    width: 0;
    background: #9400D3;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.navbar ul li:hover::after{
    width: 100%;
}
.burger{
    display: none;
    position: absolute;
    z-index: 3;
    right: 5%;
    top: 13%;
    cursor: pointer;
    font-size: 33px;
    color: #d700d3;
}
.row{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border-bottom: 5px solid #9400D3;
}
.left{
    height: 88vh;
    width: 30%;
    background-color: #9400D3;
    position: relative;
    display: flex;
    align-items: center;
}
.left img{
    width: 70%;
    position: absolute;
    left: 60%;
    border-radius: 50%;
    border: 25px double #9400D3;
}
.right{
    width: 55%;
}
.heading{
   font-size: 4em;
}
.heading span{
    color: #b700d3;
}
.para{
    padding-right: 3em;
}
.btn{
    padding: 12px 13px;
    margin: 2% 0;
    background-color: #9400D3;
    color: #fff;
    cursor: pointer;
    border: 2px solid #9400D3;
    font-size: 20px;
}
.btn:hover{
    background-color: transparent;
    color: #9400D3;
}
@media only screen and (max-width:991px){
    .heading{
        font-size: 3em;
    }
    .right{
        width: 56%;
    }
    .left img {
        width: 95%;
        left: 50%;
    }
}
@media only screen and (max-width:777px){
.burger{
    display: block;
}
.navbar{
    height: 400px;
    justify-content: space-around;
    flex-direction: column;
    transition: all 0.9s ease-out;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding: 3% 0;
}
.navbar li{
    display: block;
}
.h-class{
    height: 78px;
}
.v-class{
    opacity: 0;
}
}
@media only screen and (max-width:650px){
.row{
    flex-direction: column;
    height: 88vh;
}
.left{
    width: 100%;
    height: 30vh;
    justify-content: center;
    align-items: baseline;
}
.left img{
    width: 300px;
    left: auto;
}
.right{
    width: 95%;
}
.heading{
    font-size: 2.5em;
}
.para{
  padding: 0%;
}
}
@media only screen and (max-width:470px){
.para{
    font-size: 15px;
}
.left img{
    width: 275px;
}
.heading{
    font-size: 2em;
}
}
/* __________past */
.sec{
    padding: 3% 0;
    text-align: center;
}
.para1{
    color: #777;
    font-style: italic;
    font-size: 20px;
    padding-bottom: 1%;
}
.heading1{
    font-size: 2em;
}
.row1{
    display: flex;
    width: 85%;
    margin: auto;
}
.box{
    margin: 2% 1%;
    border-left: 10px solid #9400D3;
    box-shadow: rgba(100,100,111,0.2) 0px 7px 29px 0px;
    padding: 2% 1%;
}
.box p{
    padding: 3% 0;
}
.image{
    overflow: hidden;
    position: relative;
}
.image img{
    max-width: 100%;
    width: 30vh;
    border-radius: 10px;
    transform: scale(1);
    transition: .3s ease-in-out;
}
.image img:hover{
    cursor: pointer;
    transform: scale(1.3);
}
@media only screen and (max-width:840px){
    .row1{
        flex-direction: column;
    }
    .box{
        padding: 2% 3%;
    }
}
/* _____________testimonial */
.row2{
    display: flex;
    width: 95%;
    margin: auto;
}
.testimonial{
    width: 40%;
    display: flex;
    flex-direction: column;
}
.testimonial h3{
    padding: 3% 0;
}
.testimonial img{
    width: 9%;
}
.testimonial .user{
    display: flex;
    align-items: center;
}
.user video{
    
    width: 30vh;
}
.user h4{
    padding-left: 12px;
}
.user h4 span{
    color: #9400D3;
    display: block;
}
@media only screen and (max-width:840px){
    .row2{
        flex-direction: column;
        align-items: center;
    }
    .testimonial{
        width: 90%;
    }
}












/* ___________projects */












/* ___________contact */
#contact{
    background-color: #efefef4d;
}
.form{
    width: 80%;
    margin: auto;
    padding-top: 2%;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.form input,.form button,.form textarea{
    display: block;
    width: 60%;
    border-radius: 10px;
    border: 2px solid #9400D3;
}
.form input,.form textarea{
    padding: 13px;
    margin: 12px 0;
    outline: none;
    background-color: #e1e1e1;
    border: none;
}
.form button:hover{
    background-color: #d3007b;
    color: #fff;
    border: 2px solid #d3007b;
}
@media only screen and (max-width:840px){
    .form input,.form button,.form textarea{
        width: 100%;
    } 
}
/* ______--footer */

.footer h1{
    font-size: 29px;
    margin-bottom: 3%;
}
.icon i{
    padding: 1%;
    margin: 0 2%;
    font-size: 30px;
    background-color: #d3007b;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}
.icon i:hover{
    background-color: #9400D3;
}
.f_para{
    text-align: center;
    color: #fff;
    padding: 8px 0;
    background-color: #777;
}
@media only screen and (max-width:840px){
    .icon i{
        font-size: 20px;
    }
}