@font-face {
    font-family: 'font1';
    src: url('./font1.ttf');
}
@font-face {
    font-family: 'font2';
    src: url('./font2.ttf');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body{
    width: 100%;
    height: 100%;
}
#main{
    width: 100%;
    min-height: 100vh;
}
section {
    width: 100%;
    height: 100vh;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
}
nav #logo{
    margin-top: 1vw;
}
nav{
    width: 100%;
    /* height: 100px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    font-family: 'font2', sans-serif;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
}
nav ul li {
    font-size: 1.5vw;
    font-weight: 600;
    color: #000;
}
nav ul li a {
    text-decoration: none;
    color: #000;
}
nav ul li a:hover {
    color: #ff0000;
}
.hero{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3vw;
}
.hero-left{
    width: 600px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-left img{ 
    object-fit: cover;
    width: 65%;
    height: 80%;
    border-radius: 50%;
    background: linear-gradient(to right, #ececec, #acacac);
}
.hero-right{
    width: 600px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 7vw;
}
.hero-right h5{
    font-size: 1.2vw;
    font-family: 'font2', sans-serif;
    color: #000;
}
.hero-right h1{
    font-size: 2.5vw;
    font-family: 'font1', sans-serif;
    color: #000;
}
.hero-right h2{
    font-size: 1.4vw;
    font-family: 'font1', sans-serif;
    color: #676666;
}
.hero-right-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;  
}
.hero-right-buttons a{
    text-decoration: none;
    color: #000;
    font-size: .8vw;
    font-family: 'font2', sans-serif;
    padding: .7vw 1vw;
    border: 1px solid #000;
    border-radius: 3vw;
    background-color: #fafafa;
    margin-top: 1vw;
    &:hover{
        background-color: #4d4d4d;
        transition: all 0.5s ease;
        color: #fff;
    }
}
#contact-btn{
    background-color: #3c3c3c;
    color: #fff;
    &:hover{
        background-color: #262626;
        transition: all 0.5s ease;
        color: #fff;
    }
}

#about{
    width: 100%;
    height: 100vh;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}
.about-heading{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 5vw;
}
.about-heading h5{
    font-size: 1vw;
    font-family: 'font2', sans-serif;
    color: #000;
}
.about-heading h1{
    font-size: 3vw;
    font-family: 'font2', sans-serif;
    font-weight: 900;
    color: #000;
}
.about-hero-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about-hero-section-left{
    width: 500px;
    height: 400px;  
    border-radius: 2vw;
    background: linear-gradient(to bottom, #f3f3f3, #cecece);    
}
.about-hero-section-left img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 2vw;
}
.about-hero-section-right{
    width: 950px;
    height: 600px;
    /* border: 1px solid #000; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 3vw;
}
.about-hero-section-right p{
    margin-top: 2vw;
    padding: 2vw;
    font-family: 'font2', sans-serif;
}
.hero-section-right-content{
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.hero-section-right-content-left{
    width: 450px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    border-radius: 2vw;
}
.hero-section-right-content-left i{
    font-size: 1.5vw;
    color: #000;
}
.hero-section-right-content-left h3{
    font-size: 1.5vw;
    font-family: 'font1', sans-serif;
    color: #000;
}
.hero-section-right-content-left h5{
    font-size: 1vw;
    font-family: 'font2', sans-serif;
    color: #585858;
}
.hero-section-right-content-right{
    width: 450px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    border-radius: 2vw;
}
.hero-section-right-content-right i{
    font-size: 1.5vw;
    color: #000;
}
.hero-section-right-content-right h3{
    font-size: 1.5vw;
    font-family: 'font1', sans-serif;
    color: #000;
}
.hero-section-right-content-right h5{
    font-size: .8vw;
    font-family: 'font2', sans-serif;
    color: #585858;
}

#projects{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.projects-headings{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5vw;
}
.projects-headings h5{
    font-size: 1vw;
    font-family: 'font2', sans-serif;
    color: #000;
}
.projects-headings h1{
    font-size: 3vw;
    font-family: 'font1', sans-serif;
    color: #000;
}
.projects-container{
    display: flex;    
}
.projects-content{
    width: 900px;
    height: 600px;
    /* border: #000 1px solid; */
    display: flex;
    flex-direction: column;
    justify-content: center;    
    align-items: flex-start;  
}
.projects-content .projects-image{
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: #000 1px solid; */
    margin-top: 1vw;
    margin-left: 2.5vw;
    border-radius: 2vw;
    
}
.projects-content .projects-image img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 2vw;
    filter: blur(5px);
    &:hover{
        filter: blur(0px);
        transition: all 0.5s ease;
        cursor: pointer;
    }
}
.projects-image h1{
    font-size: 1.5vw;
    font-family: 'font1', sans-serif;
    color: #000;
    margin-top: 1vw;
}
.projects-btns{
    margin-top: 1.5vw;
    cursor: pointer;
}
.projects-btns a{
    text-decoration: none;
    color: #000;
    font-size: .8vw;
    font-family: 'font2', sans-serif;
    padding: .7vw 1.5vw;
    border: 1px solid #000000ac;
    border-radius: 1.4vw;
    background-color: #fafafa;
    margin-right: 1vw;
    &:hover{
        background-color: #333333;
        transition: all 0.5s ease;
        color: #fff;
    }
}

#contact{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}   
.contact-headings{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 12vw;
    margin-top: 7vw;
}
.contact-headings h5{
    font-size: 1vw;
    font-family: 'font2', sans-serif;
    color: #000;
}
.contact-headings h1{
    font-size: 3vw;
    font-family: 'font1', sans-serif;
    color: #000;
    margin-bottom: 3vw;
}
.contact-headings-part2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vw .5vw;
    border: 1px solid #000;
    border-radius: 2vw;
    font-family: 'font2', sans-serif;
    font-size: 1vw;
    margin-bottom: 2vw;
}
.contact-headings-part2 i{
    margin-right: .6vw;
    width: 30px;
    height: 30px;
    border: #000 1px solid;
    border-radius: 50%;
    display: flex;
    justify-content: center;        
    align-items: center; 
    background-color: #000; 
    color: #fff;  
}
.contact-headings-part2 h4{
    margin-right: 1vw;
}
.contact-card {
    width: 400px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: #000 1px solid;
    border-radius: 2vw;
    margin-top: 1.5vw;
    font-family: 'font2', sans-serif;
    cursor: pointer;
    &:hover{
        background-color: #252424;
        color: #cecece;
        transition: all 0.5s ease;
    }
    &:hover a {
        color: #cecece;
    };
}
.contact-card a{
    text-decoration: none;
    color: #000;
}
#footer{
    width: 100%;
    /* height: 100px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-color: #000; */
}
footer a {
    text-decoration: none;
    color: #000;
    font-size: 1.5vw;
    font-family: 'font2', sans-serif;
    margin-right: 1vw;
    cursor: pointer;
}
footer h6{
    font-size: 1vw;
    font-family: 'font2', sans-serif;
    color: #989898;
    margin-top: 1vw;    
}