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

body {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}


* {
    scroll-behavior: smooth;
}

@keyframes ani01{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}



.header {
    min-height: 100vh;
    width: 100%;
    background: url(imgs/background-img.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.header-about  {
    min-height: 100vh;
    width: 100%;
    background: url(imgs/background-about.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.header2 {
    min-height: 1vh;
    width: 100%;
    background: #474747;
    background-size: cover;
    background-position: center;
    position: relative;
}

.logo {
    margin-left: 1em;
}

nav {
    display: flex;
    padding: 30px 60px;
    justify-content: space-between;
    align-items: center;
}



.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul {
    margin-top: -2.4em;
}

.nav-links ul li  {
    list-style: none;
    display: inline-block;
    padding: 2px 50px;
    position: relative;
}

.nav-links ul li a {
    color: rgb(252, 252, 252);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: #8B8B8B;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-area {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-area-about {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 81%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-area-about h1 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
}

.text-area-about h3 {
    font-size: 26px;
    letter-spacing: 4px;
    color: #8B8B8B;
}

.text-area-about p {
    font-size: 22px;
    color: #fff;
    padding-top: 20px;
    line-height: 34px;
}

@media(max-width: 1000px) {
    html {
        overflow-x: hidden;
    }
    .text-area-about {
        width: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
    }
    .text-area-about h1 {
        font-size: 35px;
        font-weight: 700;
        color: #fff;
    }
    .text-area-about h3 {
        font-size: 14px;
        letter-spacing: 4px;
        color: #8B8B8B;
    }
    .text-area-about p {
        font-size: 15px;
        color: #fff;
        padding-top: 20px;
        line-height: 28px;
    }
}

.text-area h3 {
    font-size: 22px;
    letter-spacing: 5px;
    color: #8B8B8B;
    opacity: .8;
}

.text-area h1 {
    color: #fff;
    font-size: 68px;
    font-weight: 700;
}

.arrow {
    width: 90%;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-2.5%,-20%);
}



section .shape-01 {
    position: absolute;
    height: 60px;
    width: 60px;
    border: 3px solid #949494;
    left: 19%;
    top: 32%;
    animation:ani01 4s linear infinite;
}

nav .fa {
    display: none;
}
nav .fa1 {
    display: none;
}
.fa2 {
    display: none;
}


@media(max-width: 1000px) {
    body {
        overflow-x: hidden;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: absolute;
        background: #F4F4F4;
        height: 100vh;
        width: 200px;
        right: -200px;
        top: 0;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    .nav-links ul {
        margin-top: .1em;
        line-height: 100px;
        padding: 5px;
    }
    .nav-links ul li a {
        color: #8d8d8d;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
    }
    nav .fa {
        display: block;
        color: #8d8d8d;
        margin: 10px;
        font-size: 12px;
        cursor: pointer;
    }
    nav .fa1 {
        display: block;
        justify-content: center;
        color: #3f3f3f;
        margin: -.6em -3em;
        float: right;
        font-size: 12px;
        cursor: pointer;
        height: px;
    }
    nav .fa2 {
        display: block;
        justify-content: center;
        color: #3f3f3f;
        margin: -2em -3em;
        float: right;
        font-size: 12px;
        cursor: pointer;
        height: px;
    }

    .text-area h3 {
        font-size: 14px;
    }
    section .shape-01 {
        height: 30px;
        width: 30px;
    }
    .text-area h1 {
        font-size: 30px;
    }
    .arrow {
        display: none;
    }
    .logo {
        height: 30px;
        width: 30px;
        position: absolute;
        left: 2%;
        top: 2%;
        margin-left: 1em;
    }
    .logo2 {
        height: 30px;
        width: 30px;
        position: absolute;
        left: 2%;
        top: 2%;
        margin: 0 1em;
    }

}





@keyframes scrollDown {
    0%,20%,50%,80%,100% {
        transform: translateY(0);
    }
    40%{
        transform: translateY(-30px);
    }
    60%{
        transform: translateY(-15px);
    }
}

#services {
    height: 100vh;
    background: #FDFDFD;
    background-size: cover;
    background-position: center;
    padding: 0 8em;
    flex: 1;
}

#services a {
    text-decoration: none;
}

@media(max-width: 1000px) {
    #services {
        padding: 0 0;
        overflow-x: hidden;
    }
}

.title{
    margin-left: 1em;
    margin-top: 1em;
}

.title img{
    padding: 30px 80px;
    height: 100px;
    margin: 0;
    padding-left: 0;
}

.item {
    transition: .5s ease-in-out;
}

.item:hover {
    filter: brightness(80%);
}

a .btn1 .btn2 {
    max-width: 20%;
}

.btn1 {
    padding: 12px 18px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .3em;
    text-decoration: none;
    cursor: default;
    list-style: none;
}

.btn1:hover {
    text-decoration: none;
}

.btn2 {
    padding: 12px 20px;
    border: 2px solid #8B8B8B;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    margin-bottom: 1em;
    font-weight: 700;
    list-style: none;
    color: #4b4b4b;
}

.btn2:hover {
    background: #8B8B8B;
    color: #fff;
    transition: .3s;
}

.buy-the-way {
    width: 100%;
    height: 50vh;
}

.buy-the-way2 {
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
}

.text-area-buy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    padding-top: 3em;
}

.text-area-buy p {
    font-size: 26px;
    padding-top: 1em;
}

@media(max-width: 1000px) {
    .text-area-buy img {
        height: 55px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .text-area-buy p {
        font-size: 18px;
        padding-top: 1.2em;
        line-height: 36px;
        font-weight: 500;
    }
}






