@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins";
}

html,
body {
    width: 100%;
    height: 100%;
}

.main {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: relative;
}

.main .nav {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
}

.main .lnav h3 {
    font-weight: 500;
    font-size: 14px;
    border: 1px solid black;
    border-radius: 40px;
    padding: 1.5px 10px;
    cursor: pointer;
}

.main .lnav i {
    border: 1px solid black;
    border-radius: 20px;
    padding: 2.5px 3.5px;
    cursor: pointer;
}

.lnav {
    display: flex;
    align-items: center;
}

.cnav h3 {
    font-size: 15px;
    font-weight: 500;
}

.rnav #btn1 {
    border: none;
    border-radius: 20px;
    border: 1px solid black;
    padding: 3px 10px;
    cursor: pointer;
}

.rnav #btn2 {
    border: none;
    border-radius: 20px;
    padding: 4px 10px;
    background-color: orangered;
    color: white;
    cursor: pointer;
}

.main1 h1 {
    font-size: 140px;
    font-weight: 300;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.image .img:nth-child(1) {
    background-image: url("https://images.unsplash.com/photo-1621784563330-caee0b138a00?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTF8fG1vZGVsfGVufDB8fDB8fHww");
    width: 300px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    background-size: cover;
    border-radius: 10px;
}

.image .img:nth-child(2) {
    background-image: url("https://images.unsplash.com/photo-1604681630513-69474a4e253f?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjN8fG1vZGVsfGVufDB8fDB8fHww");
    width: 300px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    background-size: cover;
    border-radius: 10px;
}

.image .img:nth-child(3) {
    background-image: url("https://images.unsplash.com/photo-1521577352947-9bb58764b69a?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mjh8fG1vZGVsfGVufDB8fDB8fHww");
    width: 300px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    background-size: cover;
    border-radius: 10px;
}

.image .img:nth-child(4) {
    background-image: url("https://images.unsplash.com/photo-1564485377539-4af72d1f6a2f?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTV8fG1vZGVsfGVufDB8fDB8fHww");
    width: 300px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: cover;
    border-radius: 10px;
}

.mainbtm {
    width: 100%;
    padding: 10px 60px;
    position: absolute;
    bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.lmainbtm .toplmainbtm {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: orangered;
}

.lmainbtm .btmlmainbtm h4 {
    font-size: 1vw;
    font-weight: 500;
}

.rmainbtm .toprmainbtm {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.rmainbtm .toprmainbtm i {
    font-size: 20px;
    margin-right: 20px;
    cursor: pointer;
}

.rmainbtm .btmrmainbtm h4 {
    font-size: 1vw;
    font-weight: 500;
}

.mainbtm1 {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mainbtm1 i {
    font-size: 30px;
    position: absolute;
    bottom: 1px;
    color: rgb(95, 95, 95);
    cursor: pointer;
}