@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
.container{
    max-width: 1440px;
    margin: 0 auto;
}

html{
    scroll-behavior: smooth;
}

section{
    padding: 20px 40px;
}
.mininav .flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 40px;
    background: rgba(242, 242, 242, 1);
}
.mininav .flex .opening{
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.mininav .flex .social{
    display: flex;
    align-items: center;
    gap: 20px;
}
.mininav .flex .social a{
    font-size: 22px;
    color: rgba(28, 39, 82, 1);
}

.navbar{
    padding: 20px 40px;
}
.navbar .flexNav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .flexNav .logo img{
   width: 120px;
   height: 120px;
   object-fit: cover;
   border-radius: 50%;

}
.navbar .flexNav .contact{
    display: flex;
    align-items: center;
    gap: 30px;
}
.navbar .flexNav .contact .box{
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar .flexNav .contact .box .text h2{
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.navbar .flexNav .contact .box .text p{
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
}

.navbar .navBody{
    background: rgba(255, 179, 66, 1);
    padding: 20px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.navbar .navBody .links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.navbar .navBody .links .active{
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.36px;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}
.navbar .navBody .links a{
    font-weight: 400;
    font-size: 19px;
    line-height: 30px;
    letter-spacing: 0.36px;
    text-decoration: none;
    color: rgba(34, 34, 34, 1);
    transition: all .3s;
}
.navbar .navBody .links a:hover{
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.36px;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}
.navbar .navBody .btn{
    padding: 10px 25px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.36px;
    color: rgba(244, 244, 244, 1);
    background: rgba(28, 39, 82, 1);
    text-decoration: none;
}

.home{
    background: url(./img/hero.png);
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.home .text{
    padding: 100px 40px;
}
.home .text p{
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    width: 50%;
    align-items: center;
    padding: 4px;
    font-weight: 300;
    color: rgba(244, 244, 244, 1);
}
.home .text h1{
    font-size: 75px;
    font-weight: 300;
    color: rgba(244, 244, 244, 1);
    padding: 30px 0;
}
.home .text .btn{
    background: rgba(255, 179, 66, 1);
    color: rgba(28, 39, 82, 1);
    padding: 20px;
    text-decoration: none;
    font-weight: 500;
}

.about-section{
    padding: 100px 40px;
}
.about-section .flex{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;    
}
.about-section .flex .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section .flex .text .gayka{
    display: flex;
    align-items: center;
    background: rgba(244, 244, 244, 1);
    width: 40%;
    padding: 10px;
    justify-content: center;
}
.about-section .flex .text .gayka p{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.about-section .flex .text h2{
    font-weight: 400;
    font-size: 45px;
    line-height: 58.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    padding: 10px 0;
}
.about-section .flex .text p{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
    padding: 8px 0;
}
.about-section .flex .text .flextexts{
    display: flex;
    align-items: center;    
    gap: 30px;
}
.about-section .flex .text .flextexts .box{
    text-align: center;
    background: rgba(244, 244, 244, 1);
    padding: 30px 50px;
}
.about-section .flex .text .flextexts .box h2{
    font-weight: 400;
    font-size: 80px;
    line-height: 88px;
    letter-spacing: 0.36px;
    color: rgba(255, 179, 66, 1);
}
.about-section .flex .text .flextexts .box p{
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}

.offer{
    background: rgba(255, 179, 66, 1);
    padding: 60px 0;
}
.offer .main-text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.offer .main-text .gayka{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 244, 244, 1);
    padding: 10px;
    gap: 10px;
}
.offer .main-text h1{
    font-weight: 400;
    font-size: 45px;
    line-height: 58.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.offer .main-text p{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    text-align: center;
    padding: 10px 0;
}
.offer .main-text .flexSystem{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 60px;
}
.offer .main-text .flexSystem .active{
    background: rgba(242, 242, 242, 1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}
.offer .main-text .flexSystem h2{
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(28, 39, 82, 1);
    transition: all .3s;
}
.offer .main-text .flexSystem h2:hover{
    background: rgba(242, 242, 242, 1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}
.offer .content-box{
    background: rgba(255, 255, 255, 1);
    margin: 30px auto;
    width: 90%;
}
.offer .content-box .flex{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
}
.offer .content-box .flex .text span{
    display: flex;
    align-items: center;
    padding: 5px;
    background: rgba(244, 244, 244, 1);
    gap: 10px;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    width: 50%;
}
.offer .content-box .flex .text h2{
    font-weight: 400;
    font-size: 45px;
    line-height: 58.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    padding-top: 10px;
}
.offer .content-box .flex .text p{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
    padding: 15px 0;
}
.offer .content-box .flex .text .btn{
    padding: 10px;
    background: rgba(255, 179, 66, 1);
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.offer .content-box .flex .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services{
    background: rgba(244, 244, 244, 1);
}
.services .main-text{
    text-align: center;
    margin-top: 100px;
}
.services .main-text h2{
    font-weight: 400;
    font-size: 45px;
    line-height: 58.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.services .main-text p{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
}

.services .services-flex{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.services .services-flex .services-box{
    background: rgba(28, 39, 82, 1);
    padding: 40px;
    height: 378px;
}
.services .services-flex .services-box h2{
    font-weight: 400;
    font-size: 25px;
    line-height: 37.5px;
    letter-spacing: 0.36px;
    color: rgba(255, 179, 66, 1);
    padding: 10px 0;
}
.services .services-flex .services-box p{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(210, 210, 210, 1);
    padding: 10px 0;
}
.services .services-flex .services-box a{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.choose {
    margin-top: 100px;
}
.choose .flex{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
}
.choose .flex .img {
    position: relative;
}
.choose .flex .img .mens{
    width: 100%;
    object-fit: cover;
}
.choose .flex .img .img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(28, 39, 82, 0.86);
    width: 100%;
    height: 568px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.choose .flex .img .img-text .flexs{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    padding: 10px;
}
.choose .flex .img .img-text .flexs .number{
    width: 30%;
    background: rgba(255, 179, 66, 1);
    padding: 10px;
    font-weight: 400;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.choose .flex .img .img-text .flexs .text{
    width: 70%;
    border: 1px solid white;
    padding: 9px;
    font-weight: 400;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, 1);
}
.choose .flex .main-text{
    margin-top: 10px;
}
.choose .flex .main-text .main{
    font-weight: 400;
    font-size: 45px;
    line-height: 58.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    padding: 20px 0;
}
.choose .flex .main-text p{
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
}
.choose .flex .main-text .main-boxes{
    margin-top: 30px;
}
.choose .flex .main-text .main-boxes .box{
    display: flex;
    align-items:start;
    justify-content: center;
    gap: 30px;
}
.choose .flex .main-text .main-boxes .box h2{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    padding: 0 0 10px 0;
}

.gallery{
    margin-top: 100px;
    background: rgba(28, 39, 82, 1);
}

.gallery .main-text{
    text-align: center;
    padding: 10px;
}
.gallery .main-text h1{
    font-weight: 400;
    font-size: 45px;
    line-height: 58.5px;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, 1);
}

.gallery .flexBoxes{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.gallery .flexBoxes .box{
    padding: 10px;
    background: #fff;
}
.gallery .flexBoxes .box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery .flexBoxes .box h2{
    font-weight: 400;
    font-size: 25px;
    line-height: 37.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    text-align: center;
}
.gallery .flexBoxes .box p{
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
    text-align: center;
}

.testandmeetus{
    margin-top: 100px;
}
.testandmeetus .flexBoxes{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
}
.testandmeetus .flexBoxes .testimonial .test-top h2{
    font-weight: 400;
    font-size: 45px;
    line-height: 58.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}

.testandmeetus .flexBoxes .testimonial .review{
    margin-top: 40px;
    border: 1px solid rgba(126, 126, 126, 1);
    padding: 20px;
}
.testandmeetus .flexBoxes .testimonial .review .review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testandmeetus .flexBoxes .testimonial .review .review-top .left{
    display: flex;
    align-items: center;
    gap: 10px;
}
.testandmeetus .flexBoxes .testimonial .review .review-top .left .fullname{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
}
.testandmeetus .flexBoxes .testimonial .review-center {
    margin: 20px 0;
}
.testandmeetus .flexBoxes .testimonial .review-center p{
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
}
.testandmeetus .flexBoxes .testimonial .review-bottom{
    display: flex;
    align-items: center;
    gap: 30px;
}
.testandmeetus .flexBoxes .testimonial .review-bottom img{
    cursor: pointer;
}
.testandmeetus .flexBoxes .customer{
    margin-top: 40px;
}
.testandmeetus .flexBoxes .customer{
    background: rgba(255, 179, 66, 1);
    padding: 40px;
}
.testandmeetus .flexBoxes .customer h3{
    font-weight: 400;
    font-size: 25px;
    line-height: 32.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    padding: 10px 0;
}
.testandmeetus .flexBoxes .customer p{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    padding: 10px 0;
}
.testandmeetus .flexBoxes .customer .phones{
    display: flex;
    align-items: center;
    gap: 10px;
}
.testandmeetus .flexBoxes .customer .phones h2{
    font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, 1);
}
.testandmeetus .flexBoxes .meetus .meettop h2{
    font-weight: 400;
    font-size: 45px;
    line-height: 58.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.testandmeetus .flexBoxes .meetus .meetcontact{
    margin-top: 40px;
    background: rgba(244, 244, 244, 1);
    padding: 30px;
}
.testandmeetus .flexBoxes .meetus .meetcontact form input{
    display: block;
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    outline: none;
}
.testandmeetus .flexBoxes .meetus .meetcontact form textarea{
    display: block;
    width: 100%;
    padding: 10px;
    margin: 0 0 20px 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    outline: none;
    resize: none;
    height: 100px;
}
.testandmeetus .flexBoxes .meetus .meetcontact form button{
    display: block;
    width: 100%;
    padding: 10px;
    font-weight: 700;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    cursor: pointer;
    background: rgba(255, 179, 66, 1);
    border: none;
    outline: none;
}
.clients {
    margin-top: 100px;
}
.clients .main-text{
    text-align: center;
}
.clients .main-text h1{
    font-weight: 400;
    font-size: 45px;
    line-height: 58.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    padding: 10px 0;
}
.clients .clients-flex{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
}
.clients .clients-flex .client img{
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.pricePlan{
    margin-top: 100px;
    background: rgba(244, 244, 244, 1);
}
.pricePlan .main-texts{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: space-between;
}
.pricePlan .main-texts .left h1{
    font-weight: 400;
    font-size: 45px;
    line-height: 58.5px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.pricePlan .main-texts .right p{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
}
.pricePlan .price-plan{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.pricePlan .price-plan .plan{
    background: rgba(255, 255, 255, 1);
    padding: 30px;
}
.pricePlan .price-plan .plan .plan-top{
    display: flex;
    align-items: end;
    gap: 10px;
}
.pricePlan .price-plan .plan .plan-top .left h2{
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.4px;
    color: rgba(28, 39, 82, 1);
}
.pricePlan .price-plan .plan .plan-top .left h1{
    font-weight: 400;
    font-size: 32px;
    line-height: 35.2px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    padding: 10px 0;
}
.pricePlan .price-plan .plan .plan-top .right p{
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: rgba(126, 126, 126, 1);
    padding: 10px 0;
}

.pricePlan .price-plan .plan .plan-center ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    margin: 10px 0;
}
.pricePlan .price-plan .plan .plan-center ul li p{
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
}
.pricePlan .price-plan .plan .plan-bottom .btn{
    display: block;
    background: rgba(255, 179, 66, 1);
    max-width: 300px;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.pricePlan .end-texts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 30px 0;
}
.pricePlan .end-texts .box{
    display: flex;
    align-items: start;
    gap: 20px;
}
.pricePlan .end-texts .box .text h2{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.pricePlan .end-texts .box .text p{
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
}

.latestNews {
    margin-top: 100px;
}

.latestNews .main-text {
    text-align: center;
}

.latestNews .main-text h1 {
    font-weight: 400;
    font-size: 45px;
    line-height: 1.3;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    padding: 20px 0;
}

.latestNews .blogs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.latestNews .blogs .blog {
    position: relative;
    overflow: hidden;
}

.latestNews .blogs .blog .blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.latestNews .blogs .blog .author {
    position: absolute;
    top: 230px;
    left: 50%;
    transform: translateX(-50%);
}

.latestNews .blogs .blog .author .flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.latestNews .blogs .blog .author .flex .who,
.latestNews .blogs .blog .author .flex .date {
    background: rgba(255, 195, 104, 1);
    padding: 10px;
    display: flex;
    align-items: center;
}

.latestNews .blogs .blog .author .flex .date {
    background: rgba(255, 179, 66, 1);
}

.latestNews .blogs .blog .author .flex .who span,
.latestNews .blogs .blog .author .flex .date span {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: rgba(28, 39, 82, 1);
}

.latestNews .blogs .blog h1 {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
    padding: 20px 0;
}

.latestNews .blogs .blog p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.36px;
    color: rgba(126, 126, 126, 1);
    padding-bottom: 10px;
}
.latestNews .blogs .blog a{
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.4px;
    color: rgba(28, 39, 82, 1);
    text-decoration: none;
}

/* Responsivlik uchun */
@media (max-width: 768px) {
    .latestNews .main-text h1 {
        font-size: 32px;
    }

    .latestNews .blogs .blog h1 {
        font-size: 24px;
    }

    .latestNews .blogs .blog p {
        font-size: 15px;
    }
}


.newseller{
    background: rgba(255, 179, 66, 1);
    padding: 60px;
}
.newseller .flex{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.newseller .flex .left h2{
    font-weight: 400;
    font-size: 32px;
    line-height: 44.8px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.newseller .flex .left p{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(28, 39, 82, 1);
}
.newseller .flex .right form{
    display: flex;
    align-items: center;
}
.newseller .flex .right form input{
    max-width: 300px;
    width: 100%;
    padding: 15px;
    border: 2px solid #fff;
    background: none;
    outline: none;
}
.newseller .flex .right form input::placeholder{
    color: #fff;
}
.newseller .flex .right form button{
    max-width: 100px;
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    cursor: pointer;
}

footer{
    background: rgba(28, 39, 82, 1);
    padding: 100px;
}
footer .footer-top .flex .logo img{
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}
footer .footer-top .flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .footer-top .flex .flex-contact{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
footer .footer-top .flex .flex-contact .box{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 10px;
}
footer .footer-top .flex .flex-contact .box .text h2{
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, 1);
}
footer .footer-top .flex .flex-contact .box .text span{
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, 1);
}
footer .footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
footer .footer-bottom .social p {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, 1);
}
footer .footer-bottom .social .flex-social{
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
footer .footer-bottom .links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
footer .footer-bottom .links ul h2{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.36px;
    color: rgba(255, 179, 66, 1);
}
footer .footer-bottom .links ul li {
    list-style: none;
    padding: 10px 0;
}
footer .footer-bottom .links ul li a{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}


@media (max-width: 1024px) {
    .mininav .flex, .navbar, .navbar .flexNav, .navbar .navBody, 
    .about-section, .about-section .flex, .home .text {
        padding: 20px;
    }

    .home .text h1 {
        font-size: 55px;
    }

    .about-section .flex {
        flex-direction: column;
        text-align: center;
    }

    .about-section .flex .text .flextexts {
        flex-direction: column;
    }

    .navbar .flexNav .contact {
        flex-direction: column;
        gap: 15px;
    }
}

 @media (max-width: 768px) {
    .mininav .flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .navbar .flexNav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .navbar .navBody {
        flex-direction: column;
        gap: 15px;
    }

    .navbar .navBody .links {
        flex-direction: column;
    }

    .home .text {
        padding: 60px 20px;
    }

    .home .text h1 {
        font-size: 45px;
    }

    .home .text p {
        width: 100%;
    }

    .about-section .flex .text h2 {
        font-size: 35px;
    }

    .about-section .flex .text .flextexts .box {
        padding: 20px 30px;
    }

    .about-section .flex .text .flextexts .box h2 {
        font-size: 60px;
    }
}

@media (max-width: 1250px){
    .about-section .flex{
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
    .about-section .flex .img img{  
        width: 70%;
        height: 70%;
        object-fit: cover;
        display: none;
    }
    .about-section .flex .text{
        margin: 0;
        padding: 0;
        text-align: center;
    }
    .about-section .flex .text .gayka{
        text-align: center;
        margin: 0 auto;
    }
    .about-section .flex .text .flextexts{
        width: 100%;
        margin: 0 auto;
    }

    .offer .main-text .flexSystem{
        flex-wrap: wrap;
    }
    .offer .main-text h1{
        text-align: left;
        margin: 0 10px;
    }
    .offer .main-text p{
        text-align: left;
        margin: 0 10px;
    }
    .offer .main-text .flexSystem h2{
        font-size: 16px;
    }
    .offer .content-box .flex{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .services .services-flex{
        grid-template-columns: repeat(2, 1fr);
    }

    .choose .flex{
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .choose .flex .main-text {
        text-align:left;
    }
    .choose .flex .main-text .main-boxes .box{
        gap: 10px;
        text-align: left;
        justify-content: start;
    }

    .gallery .flexBoxes{
        grid-template-columns: repeat(3, 1fr);
    }

    .testandmeetus .flexBoxes{
        grid-template-columns: repeat(1, 1fr);
    }
    .clients .clients-flex{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .pricePlan .main-texts {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        text-align: center;
    }
    .pricePlan .price-plan{
        grid-template-columns: repeat(2, 1fr);
    }
    .pricePlan .end-texts{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .latestNews .blogs{
        grid-template-columns: repeat(1, 1fr);
    }

    .newseller .flex {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    footer .flex{
        flex-wrap: wrap;
        gap: 20px;
    }
    footer .flex .flex-contact{
        align-items: center;
        gap: 30px;
    }
}
@media (max-width: 745px){
    .services .services-flex{
        grid-template-columns: repeat(1, 1fr);
    }
    .gallery .flexBoxes{
        grid-template-columns: repeat(2, 1fr);
    }
    .pricePlan .price-plan {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 625px){
    .gallery .flexBoxes{
        grid-template-columns: repeat(1, 1fr);
    }
    .latestNews .blogs .blog .author{
        display: none;
    }
}

@media (max-width: 375px){
    .pricePlan .price-plan .plan .plan-top .left h2{
        font-size: 10px;
    }
    .services .services-flex .services-box{
        height: 450px;
    }
    .choose .flex .img .img-text{
        height: 350px;
    }
    .choose .flex .img .img-text .flexs .text{
        font-size: 20px;
    }
}