@import url('https://fonts.googleapis.com/css2?family=Inria+Sans&family=Tajawal:wght@500&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inria Sans', sans-serif; } /*Scroll animation Codes*/ html{ scroll-behavior: smooth; } /*End*/ /*ScrollBar Codes*/ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-thumb { background: #65451F; } /*End*/ body { background: #765827; } /*NavBar Codes*/ .header { position: fixed; top: 0; left: 0; width: 100%; padding: 25px 8%; background: transparent; display: flex; justify-content: center; align-items: center; z-index: 100; background-color: #65451F; } .navbar a { display: inline-block; font-size: 18px; color: #EAC696; text-decoration: none; font-weight: 500; margin: 0px 20px; transition: .3s; } .navbar a:hover, .navbar .active { color: #FFFFFF; } /*End*/ /* HomePage Codes */ .home { position: relative; width: 100%; height: 100vh; display: flex; justify-content: center; align-items: center; padding: 50px 8% 0; overflow: hidden; background-image: url(img/background-new.png); background-repeat: no-repeat; background-position: center; background-size: cover; } .home-content { max-width: 630px; align-items: center; text-align: center; } .home-content h1 { font-size: 30px; line-height: 1.2; color: #EAC696; } .home-content p { font-size: 20px; color: #EAC696; animation-delay: 1.3s; } .btn { display: inline-block; padding: 10px 28px; background: #65451F; border: 5px solid #65451F; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, .1); font-size: 16px; color: #EAC696; letter-spacing: 1px; text-decoration: none; font-weight: 600; transition: .5s; margin-top: 30px; cursor: pointer; } .btn:hover { background: transparent; border: 5px solid #FFFFFF; color: #FFFFFF; } /*End*/ /*About Slide codes start*/ .about { position: relative; width: 100%; display: flex; flex-direction: column; /*justify-content: space-between;*/ align-items: center; padding: 50px 4% 0; overflow: hidden; height: 90vh; } .about h1 { font-size: 50px; color: #EAC696; margin-top: 50px; } .about .para1, .para2 { margin-top: 20px; font-size: 25px; color: #EAC696; max-width: 645px; } /*End*/ /*Products slides codes start*/ .products { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; padding: 50px 4% 0; overflow: hidden; height: 110vh; } .products .podTitle { color: #EAC696; font-size: 40px; margin-top: 50px; margin-bottom: 30px; } .products h2 { color: #EAC696; margin: 15px 0; } .products .card{ width: 300px; height: 200px; background-color: #65451F; border-radius: 25px; justify-content: right; display: flex; color: #EAC696; } .products .card-linear { width: 100%; height: 50px; background-color: #EAC696; color: #65451F; margin-top: 25px; padding: 0 0 0 10px; display: flex; align-items: center; } .products img { width: 120px; position: absolute; padding: 5px; max-height: 200px; } /*Slider*/ .swiper { max-width: 1000px; height: 250px; width: 100%; padding: 40px 0; } .slide-content { margin: 0 40px; overflow: hidden; border-radius: 25px; } .swiper .swiper-navBtn { color: #EAC696; top: 110px; transition: color 0.3 ease; } .swiper .swiper-navBtn:hover{ color: #FFFFFF; } .swiper .swiper-button-next { right: 0; } .swiper .swiper-button-prev { left: 0; } .swiper .swiper-navBtn::before, .swiper .swiper-navBtn::after{ font-size: 40px; } .swiper .swiper-pagination-bullet { background-color: #EAC696; opacity: 1; } .swiper .swiper-pagination-bullet-active { background-color: #FFFFFF; opacity: 1; } .address { position: relative; width: 100%; display: flex; justify-content: center; align-items: center; padding: 50px 8% 0; overflow: hidden; height: 90vh; } .texts-div { height: 100%; width: 500px; color: #EAC696; } .location, .email, .number { width: 30px; height: 30px; margin-right: 5px; } .address-txt { display: flex; margin: 10px 0; text-align: center; font-size: 20px; } .address-div h1, .texts-div h1 { font-size: 30px; margin: 10px 0; } .follow-div { display: flex; } .working-time-div h1{ margin: 10px 0; font-size: 30px; } .working-time-div p{ font-size: 20px; } .working-time-div { margin: 10px 0; } .social-circle { background-color: #65451F; border-radius: 100%; width: 50px; height: 50px; align-items: center; display: flex; justify-content: center; margin: 0 2px; cursor: pointer; transition: 0.5s; } .input-div { width: 500px; height: 100%; } .input-group { position: relative; margin: 20px 0; } .input-group input { width: 500px; height: 40px; font-size: 16px; color: #EAC696; background-color: transparent; border: solid 2px #EAC696; border-radius: 20px; outline: none; padding: 0 10px; letter-spacing: 0.05em; } .input-group span { position: absolute; color: #EAC696; left: 15px; top: 10px; font-size: 16px; padding: 0 10px; pointer-events: none; letter-spacing: 0.05em; transition: 0.2s; } .input-group .message-input { height: 100px; } .input-div .submit-btn { width: 200px; height: 50px; background-color: #EAC696; color: #65451F; border-radius: 20px; border: none; cursor: pointer; transition: 0.2s; } .input-div .submit-btn:hover { border: solid 2px #EAC696; color: #EAC696; background-color: transparent; } .input-group input:valid ~ span, .input-group input:focus ~ span { transform: translateY(-23px); background-color: #765827; } @media screen and (max-width: 977px) { .input-div { width: 350px; } .input-group input { width: 350px; } } @media screen and (max-width: 768px) { .navbar { display: flex; flex-direction: column; } .navbar a { margin: 5px 0; text-align: center; } .header{ height: 200px; padding: 0 15%; } .slide-content{ margin: 0 10px; } .swiper .swiper-navBtn{ display: none; overflow: hidden; } .about .para1, .about .para2 { font-size: 20px; } .about h1 { font-size: 40px; } .input-div { width: 250px; } .input-group input { width: 250px; } .address-txt { font-size: 17px; } .address-div h1, .texts-div h1 { font-size: 25px; } }