@import url('https://fonts.googleapis.com/css2?family=League+Spartan&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Square&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: white;
}

#navbar {
    width: 100vw;
    height: 8vh;
    background-color: rgb(255, 166, 0);
    display: flex;
    align-items: center;
    padding: 2px 10px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 5;
}

.nav-options {
    font-size: 18px;
    font-family: sans-serif;
    border-bottom: 2px solid transparent;
    cursor: pointer;

}

#search {
    width: 250px;
    height: 36px;
    border-radius: 15px;
    border: none;
    outline: none;
    padding: 5px 10px;
}

.search-btn {
    height: fit-content;
    width: fit-content;
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 10px 10px;
    font-size: 16px;
    font-family: sans-serif;
    color: white;
    background-color: rgb(0, 85, 255);
}

.nav-options:hover {
    color: red;
    border-color: red;
}

#first-ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

#second-ul {
    display: flex;
    list-style-type: none;
    width: 70vw;
    justify-content: space-evenly;
    align-items: center;
}

.extra {
    display: flex;
    align-items: center;
    gap: 15px;
}

#post-img-holder {
    height: 6.5vh;
    width: 6.5vh;
    border-radius: 50%;
    background-color: transparent;
}

#post-img-holder img {
    height: 100%;
}

#logo {
    margin-left: 15px;
    color: white;
    font-size: 2.5vw;
    font-family: 'Nova Square', sans-serif;
}

#first-sec {
    height: 92vh;
    width: 100%;
    background-image: url('./first-bg.cms');
    background-size: cover;
    margin-top: 8vh;

}

#layer1 {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.549);
    padding: 0px 0px 50px 0px;

}

.heading01 {
    font-weight: bold;
    font-family: 'League Spartan', sans-serif;
    color: white;
    font-size: 56px;
    text-align: center;
    /* margin-top: 35px; */
}

#scroll-holder {
    display: flex;
    height: fit-content;
    width: 40%;
    overflow: scroll;
    align-items: center;
    /* padding: 0px 30px; */
    /* animation: scroll 2s ease-in-out; */
}

#scroll-holder::-webkit-scrollbar {
    height: 0px;
    width: 0px;
}

.sliding-img-holder {
    height: fit-content;
    width: 100%;
    flex-shrink: 0;
}

.sliding-img {
    /* height: 100%; */
    width: 100%;
    flex-shrink: 0;
}

#more {
    color: aquamarine;
    font-family: sans-serif;
    font-size: 14px;
    border-bottom: 1px solid transparent;
}

#more:hover {
    border-color: #FFD700;
    color: #FFD700;
}

#part-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    gap: 25px;
}

#text-cont {
    width: 40%;
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
    color: white;
}

#capital {
    font-size: 32px;
    color: white;
    font-weight: bold;
}

#second-sec {
    width: 100%;
    height: 92vh;
    background-color: #000000;
}

#all-holder {
    height: 69vh;
    width: 69vh;
    display: flex;
    flex-direction: column;
    animation: rotate-img-holder 30s ease-in-out infinite;
}

.ih {
    height: 20%;
    width: 100%;
    display: flex;
    justify-content: space-around;


}

.ih img {
    height: 100%;
}

.pro-img {
    animation: rotate-img 30s ease-in-out infinite;

}

#second-arrow {
    transform: rotate(45deg);
}

#third-arrow {
    transform: rotate(180deg);
}

#fourth-arrow {
    transform: rotate(225deg);
}

@keyframes rotate-img-holder {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-img {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(-360deg);
    }
}

#second-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    /* padding-top: 50px; */

}

#main-cont-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 70px;
}

#text-cont01 ul li {
    color: white;
    margin-bottom: 20px;
    line-height: 25px;
    font-size: 26px;
}

#text-cont01 {
    width: 40%;
}

#third-sec {
    width: 100%;
    height: 100%;
    background-color: aqua;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding-bottom: 50px;
    /* padding: 60px 0px; */
}

#grid-cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.85fr 0.85fr 0.85fr;
    height: 95%;
    width: 90%;
    align-items: center;
    row-gap: 5px;
}

.cap-img {
    width: 40%;
    height: 100%;

}

.cap-img img {
    height: 100%;
    width: 100%;
    box-shadow: 10px 10px 20px 2px #000000;
    transition: all 0.5s ease-in-out;
}

.grid-items {
    display: flex;
    align-items: center;
    gap: 25px;
}

.all-text-holder {
    width: 60%;
}

.heading-txt-holder {
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.main-text-body {
    color: white;
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
}

.main-text-body:hover {
    background-color: #00000030;
    border-radius: 15px;
    padding: 10px 20px;
}

.cap-img img:hover {
    box-shadow: 15px 15px 20px 2px #000000;
    transform: translateY(-10px);
}

#fourth-sec {
    height: 100%;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 65px;
}

#items-container {
    display: grid;
    align-items: center;
    height: 80%;
    width: 75%;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 75px;
    margin-top: 36px;
}

.main-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: transparent; */
}

.item-image-holder {
    width: 100%;
    height: 50%;
}

.item-image-holder img {
    height: 100%;
    width: 100%;
}

.item-name {
    color: black;
    font-family: 'League Spartan', sans-serif;
    font-size: 28px;
    margin-top: 25px;
}

.links-to-buy {
    text-decoration: none;
    color: cyan;
    font-family: sans-serif;
    font-size: 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    text-align: center;
}

.links-to-buy:hover {
    color: #FFD700;
    border-color: #FFD700;
}

.link-holder {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

#fifth-sec {
    background-color: #c68642;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 45px;
}

#calculate-savings {
    display: grid;
    width: 75%;
    height: fit-content;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 75px);
    column-gap: 25px;
    row-gap: 25px;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}


#check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input {
    height: 50%;
    border-radius: 15px;
    outline: none;
    border: none;
    padding: 5px 12px;

}

.input:focus {
    box-shadow: 0 0 15px rgb(0, 132, 255);
}

.btn1 {
    width: fit-content;
    height: fit-content;
    padding: 5px 10px;
    background-color: #FFD700;
    color: white;
    font-size: 18px;
    font-family: serif;
    border: none;
    border-radius: 10px;
}

#calculate:hover {
    background-color: green;
}

#clear:hover {
    background-color: red;
}

.values {
    background-color: rgb(222, 49, 222);
    border-radius: 10px;
    padding: 5px 10px;
    width: fit-content;
    height: fit-content;
    display: inline;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #588486;
    
}
#first-sec-footer{
    display: flex;
    color: white;
    align-items: center;
    width: 80%;
    gap: 25px;
    justify-content: center;
    padding: 30px 10px;
    font-size: 18px;
}
#second-sec-footer{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    background-color: #6993AD;
    padding: 20px 0px;
    
}
.nt{
    color: white;
}
.mini-holders img{
    height: 60px;
}
.mini-holders{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
#third-sec-footer{
    display: flex;
    width: 100%;
    /* justify-content: space-evenly; */
    margin-top: 25px;
    justify-content: center;
    gap: 50px;
    align-items: center;
}
#profiles{
    display: flex;
    width: fit-content;
    gap: 160px;
}
.account-holders{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    margin-top: 10px;
}
.profile-img{
    height: 150px;
    border-radius: 15px;
}
.profile-holder{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.name{
    color: white;
    margin-top: 20px;
}
#styler{
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 36px;
    text-align: center;
}
#desc{
    font-family: sans-serif;
    font-size: 22px;
}
#end-sec-footer{
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 37px;
}
.horiline{
    height: 1px;
    width: 550px;
    background-color: #e5e5e5;
}