* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

#main {
    height: 100%;
    width: 100%;
    background-color: white;
}

#nav {
    height: 6vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px;
}

#nav-part-1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#nav-part-1 > i{
    background-color: #e86a3f;
}

#nav h3 {
    font-size: 1.2vw;
    font-weight: 600;
    border: 1.7px solid black;
    padding: 5px 10px;
    border-radius: 50px;
}

#nav i {
    font-size: 1.2vw;
    font-weight: 600;
    border: 1.7px solid black;
    padding: 5px 10px;
    border-radius: 50px;
}

#nav h1 {
    font-weight: 700;
    font-size: 3vw;
    text-transform: uppercase;
}

#nav button {
    padding: 7px 10px;
    border-radius: 50px;
    border: 1.5px solid black;
    font-size: 1vw;
    font-weight: 600;
}

#btn1{
    background-color: white;
}
#btn2 {
    color: white;
    background-color: #e86a3f;
    border: none;
}


#main>h1 {
    font-size: 12vw;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-weight: 400;
}

img {
    height: auto;
    width: 20vw;
    border-radius: 20px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#img1 {
    transform: translate(-50%, -50%) rotate(-24deg);
}

#img2 {
    transform: translate(-50%, -50%) rotate(-16deg);
}

#img3 {
    transform: translate(-50%, -50%) rotate(-8deg);
}

#bottom-left{
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 20px;
}

#bottom-middle{
    font-size: 5vw;
    color: rgb(99, 99, 99);
    text-align: center;
    position: absolute;
    top: 93.5%;
    left: 50%;
    transform: translate(-50%, -50%)
}

#bottom-right{
    position: absolute;
    bottom: 5%;
    right: 5%;
    font-size: 15px;
}

#bottom-right-icons{
    display: flex;
    padding-bottom: 10px;
    justify-content: space-around;
}

#bottom-right-icons>i{
    font-size: 30px;
    font-weight: 550;
    color: rgb(170, 170, 42);
    transition: transform 0.3s;
}

#bottom-right-icons>i:hover{
    color: #e86a3f;
    transform: scale(1.2) 
}

#advanced-technology{
    display: flex;
    height: 40px;
    width: 240px;
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: transform 0.3s ease;
}

#advanced-technology:hover{
    transform: translate(-50%,-50%) scale(1.1);
}

#first-circle-advanced-technology{
    height: 40px;
    width: 40px;
    background-color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#second-circe-advanced-technology{
    height: 40px;
    width: 200px;
    background-color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#first-circle-advanced-technology>i{
    font-size: 30px;
    font-weight: 300;
    color: rgb(143, 143, 143);
}