@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;700&display=swap');
/* base styling with universal selector and body*/

*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-size: 62.5%;
}

body{
    font-family: "Roboto Mono", sans-serif;
}

a{
    text-decoration: none;
    font-weight: 400;
    /* 1.6*10 = 16px */
    font-size: 2.0rem;
    color: black;
}

/*this selector , selects the 3 things all together at once*/
h1,h2,p{
    /* the 1.6rem is for margin top and bottom and the 0 is for right and left*/
    margin:1.6rem 0 ;
}

h1{
    font-weight: 700;
    /* 3.6*10 = 36px */
    font-size: 3.6rem;
}

h2{
    font-weight: 700;
    /* 2.4*10 = 24px */
    font-size: 2.4rem;
}

p{
    font-weight: bold;
    /* 1.8*10 = 18px */
    font-size: 1.8rem;
}

/* this is just targeting the images just to make them responsive */
img{
    width: 100%;
    height: auto;
}
/* this class will be used to layout content in a horizontal way.
   you can change the direction buy flex-direction: column; .we are 
   going to use this property to make the websit responsive, when 
   website is in a normal the content will bw horizontal, and then when 
   its in tablet or mobile it will change to flex-direction: column  */
.row{
    display: flex;
    justify-content: space-between;
    width: 80%;
    align-items: center;
    margin: auto;
}

section{
    /* the 100px is for margin top and bottom and the 0 is for right and left*/
    padding: 100px 0;
}

/*Hero Section*/
.hero{
    background-image: url(images/header.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.logo-text {
    font-family: sans-serif;
    font-size: 40px;
    font-weight: 700px;
}
.logo{
    display: flex;
    padding: 10px;
}
nav{
   padding-top: 30px;
    display: flex;
    justify-content: space-around;
}
nav ul{
    list-style-type: none;
    display: flex;
    gap: 20px;
    align-items: center;
}
.resize{
    height: 60px;
    width: 100px;
}
.title{
    text-align: center;
    margin-top: 100px;
}

.title-sub{
    text-align: center;
    font-weight: 700px;
}
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.search-bar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    border-radius: 120px;
    align-items: center;
    width: 600px;
    height: 100px;
    background-color: white;
    border: 1px black solid;
}

.search-bar input {
    width: 85%;
    height: 100%;
    font-size: 24px;
    padding: 0 10px;
    text-align: center;
}

.search-bar .search-button {
    width: 15%;
    height: 100%;
    border: none;
    background: none;
}

.search-bar .search-button img {
    width: 100%;
    height: auto;
}

.text{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    text-align: center;
}
.project{
    background-color: #D9D9D9;
    padding: 50px;
}
.project img {
    width: 330px;
    height: 440px;
}
.project .images{
    gap: 30px;
    padding-top: 40px;
    display: flex;
    justify-content: space-around;
}
.project-top{
    gap: 50px;
    display: flex;
    justify-content: center;
}
.title-sub2{
    font-size: 20px;
    width: 50%;
}
.under{
    font-size: 15px;
}
.enhance{
    display: flex;
    justify-content: center;
    padding: 50px;
    gap: 100px;
}
.enhance img{
    height: auto;
    width: 600px;
}
.tex{
    font-size: 20px;
}
.right{
    padding-top: 100px;
}
.vid{
    padding: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
}
.vid img{
    height: auto;
    width: 1200px;
}

.offer{
    font-size: 30px;
    text-align: center;
    padding-bottom: 30px;
}
.offer img{
    width: 1000px;
    height: auto;
}
.testimonial{
    background-color: #D9D9D9;
    text-align: center;
}
.tit2{
    font-size: 20px;
}
.row1{
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
}
.row1 img{
    height: 200px;
    width: 200px;
    border-radius: 50%;
}
.footer{
    background-color: black;
    color: white;
}
.ftop{
    padding-bottom: 50px;
    padding-top: 50px;
    margin-left: 50px;
}
.fbottom{
    display: flex;
    padding: 30px;
    justify-content: space-around;
}
.par{
    display: flex;
    font-size: 30px;
    gap: 30px;
}