@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%;
    min-height: 100vh;
}

.textmain {
    width: 100%;
    height: 60vh;
    padding: 60px;
    margin-bottom: 50px;
}

.main h1 {
    width: 100%;
    font-size: 135px;
    font-weight: 600;
    line-height: 140px;
    letter-spacing: -5px;

}

.text1 {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text1 h3 {
    font-size: 28px;
    font-weight: 500;
    cursor: pointer;
}



.image {
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-image: url("https://assets-global.website-files.com/64589fb989b2b33c593db89d/6458a6db645ec6a527000cfa_home-hero-p-1600.webp");
}

.page1 {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    width: 100%;
    height: 85vh;
    border-bottom: 2px solid black;
}

.page1 .left {
    padding: 40px 60px;
    width: 60%;
}

.page1 .left h1 {
    font-size: 80px;
    line-height: 80px;
    font-weight: 500;
}

.page1 .right {
    width: 33%;
    border-left: 2px solid black;
    margin: 50px;
    padding: 0 65px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icons i {
    font-size: 50px;
    cursor: pointer;
}

.icons i:hover {
    animation: rotate .5s ease;
}

.page2 {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    padding-top: 70px;
    width: 100%;
    height: 85vh;
}

.page2 .p2left {
    width: 30%;
    display: flex;
}

.page2 .p2left h1 {
    font-size: 25px;
    letter-spacing: -1.5px;
    line-height: 50px;
}

.page2 .p2left i {
    font-size: 40px;
}

.page2 .p2right {
    width: 64%;
    display: flex;
    flex-direction: column;
    border-left: 2px solid black;
    padding-left: 50px;
    height: 85%;
}

.p2rtop {
    display: flex;
    /* margin: 50px 0; */
    /* width: 90%; */
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.p2rtop:nth-child(1) {
    border-bottom: 2px solid black;

}

.p2rtop .p2rtleft {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.p2rtop .p2rtleft h1 {
    font-size: 45px;
    letter-spacing: -1.5px;
    line-height: 50px;
    margin-bottom: 8px;
}

.p2rtop .p2rtleft p {
    line-height: 25px;
    width: 90%;
}

.p2rtop .p2rtright {
    display: flex;
    flex-direction: column;
    width: 60%;
    border-left: 2px solid black;
    padding-left: 35px;
    margin-left: 10px;
}

.p2rtop .p2rtright h1 {
    font-size: 45px;
    letter-spacing: -1.5px;
    line-height: 50px;
    margin-bottom: 8px;
}

.p2rtop .p2rtright p {
    line-height: 25px;
}

.menu {
    position: fixed;
    display: flex;
    top: 30px;
    right: 30px;
    gap: 10px;
}

.menu .zero {
    background-color: black;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.menu .zero:hover {
    animation: rotate .5s ease;
}

.menu .menutext {
    background-color: black;
    color: #fff;
    border-radius: 50px;
    padding: 14px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

