@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600&display=swap');
:root{
    --darkred:#521414ff;
    --lightred:#7a2323ff;
    --gradient:linear-gradient(90deg,#7a2323ff, #521414ff);
}

*{
    font-family: 'Comfortaa', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none; border:none;
    text-transform: capitalize;
}

*::selection{
    background:var(--darkred);
    color:#fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    background:#fff;
}

section{
    min-height: 100vh;
    padding:0 9%;
    padding-top: 7.5rem;
    padding-bottom: 2rem;
}

.button{
    justify-content: center;
    display: flex;
}
.home .btn {
    
    background-color:white;
    font-size: 1.7rem;
    color:black;
}
.btn{
    display: inline-block;
    margin-top: 1rem;
    padding:3rem 3rem;
    border-radius: 5rem;
    background-color: var(--lightred);
    font-size: 1.7rem;
    color:white;
    cursor: pointer;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    transition: all .3s linear;
}

.about .btn:hover{
    transform: scale(1.1);
}

.heading{
    text-align: center;
    background:var(--gradient);
    color:transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 4rem;
    text-transform: uppercase;
    padding:1rem;
}

header{
    position: fixed;
    top:0; left:0;
    width:100%;
    background:#fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    padding:2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo{
    font-size: 3rem;
    color:var(--darkred);
}

header .logo span{
    color:var(--pink);
}

header .navbar a{
    font-size: 1.7rem;
    margin-left: 2rem;
    color:var(--darkred);
}

header .navbar a:hover{
    color:var(--lightred);
}

header input{
    display: none;
}

header label{
    font-size: 3rem;
    color:var(--darkred);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}

.home{
    display: flex;
    justify-content: center;
    background-image: url(image/Realback.png);
    background-size: cover;
    background-position: center;
}

.home .image img{
    padding-top: 1vh;
    align-self: center;
    width:450px;
    animation: float 3s linear infinite;
}


@keyframes float{
    0%, 100%{
        transform: translateY(0rem);
    }
    50%{
        transform: translateY(-3.5rem);
    }
}
.home .content{
    width: 100%;
}

.home .content h3{
    font-size: 5.5rem;
    color:white;
    text-transform: uppercase;
    text-align: center;
    padding-top: 5vh;
}

.home .content h3 span{
    color:white;
    text-transform: uppercase;
}

.home .content p{
    font-size: 1.7rem;
    color:white;
    padding:1rem 0;
}
.features{
    background-color: #fff;
    background-size: cover;
    background-position: center;
    padding-bottom: 3rem;
    padding: 20px;
}
ul{
    padding-left: 15%;
    padding-top: 30px;
}
li{
    font-size: 3.1vh; 
    list-style-type: none;
    padding-left: 80px;
    background-repeat: no-repeat;
    margin-bottom: 10%;
    background-position: 0 -3px;
    background-size: 8vh;
    display: inline-block;
    max-width: 100%;
    padding-bottom: 1%;

}
.features .column{
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.features .column .image{
    flex:0.1 1 45rem;
    
}

.features .column .image img{
    width:100%;
}

.features .column .content{
    flex:1 1 40rem;
}

.features .column .content h3{
    font-size: 3rem;
    color: var(--lightred);
}

.features .column .content p{
    font-size: 1.5rem;
    color:#666;
    padding:1rem 0;
}

.cal{
    background-image: url(image/Calender.png);
}
.cal img{
    display: none;
}
.diam{
    background-image: url(image/Diamond.png);
}
.diam img{
    display: none;
}
.cbox{
    background-image: url(image/CheckBox.png);
}
.cbox img{
    display: none;
}
.inf{
    background-image: url(image/Infinity.png);
}
.inf img{
    display: none;
}

.reviews .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.stars{
    justify-content: center;
    align-items: center;
}
.stars h3{
    text-align: center;
    font-size: 3rem;
    
}
.starhead {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.starhead h3{
   padding-top: 1.5vh;
   padding-left: 20px;
}
.starhead img{
    background-color: #f5f1f1;
    border-radius: 50px;
}

.reviews .box-container .rbox{
    flex:1 1 30rem;
    background:#fff;
    border-radius: 1rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    margin:2rem;
    padding:3rem 3rem;
    border-radius: .5rem;
    text-align: center;
    transition: .2s linear;
}


.reviews .box-container .rbox img{
    height: 25rem;
}

.reviews .box-container .rbox h3{
    font-size: 2rem;
    color:#333;
    padding-top: 1rem;
}

.reviews .box-container .rbox p{
    font-size: 1.7rem;
    color:#333;
    padding: 1rem 0;
    text-align: left;
}
.about .row{
    display: flex;
    align-items: center;
    gap:2rem;
    flex-wrap: wrap;
    padding:2rem 0;
    padding-bottom: 3rem;
    flex-direction: row;
}

.about .row .image-container{
    flex:1 1 35rem;
}

.about .row .image-container img{
    width:100%;
    border:1.5rem solid #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    height: 100%;
    object-fit: cover;
}

.about .row .content{
    flex:1 1 40rem;
}

.about .row .content h3{
    font-size: 3rem;
    color:#333;
}

.about .row .content p{
    font-size: 1.5rem;
    color:#333;
    padding:.5rem 0;
    padding-top: 1rem;
    line-height: 1.5;
}

.footer{
    padding-top: 3rem;
    background:url(image/short.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer .box-container .box{
    flex:1 1 25rem;
    margin:2rem;
}

.footer .box-container .box h3{
    font-size: 2.5rem;
    padding:1rem 0;
    color:#fff;
    text-decoration: underline;
}

.footer .box-container .box p{
    font-size: 1.5rem;
    padding:.5rem 0;
    color:#eee;
}

.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    padding:.5rem 0;
    color:#eee;
}

.footer .box-container .box a:hover{
    text-decoration: underline;
}

.footer .box-container .box .info{
    display: flex;
    align-items: center;
}

.footer .box-container .box .info i{
    margin:.5rem 0;
    margin-right: 1rem;
    border-radius: 50%;
    background:#fff;
    color:var(--lightred);
    font-size: 1.5rem;
    height:4.5rem;
    width:4.5rem;
    line-height: 4.5rem;
    text-align: center;
}

.footer .credit{
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: .1rem;
    color:#fff;
    border-top: .1rem solid #fff5;
    padding:2.5rem 1rem;
    text-align: center;
}




/* media queries  */

@media (max-width:1200px){
    .home{
        background-image: url(image/Realback.png);  
    } 
    html{
        font-size: 55%;
    }
}

@media (max-width:1003px){
    
    section{
        padding:0 3%;
        padding-top: 7.5rem;
        padding-bottom: 2rem;
    }

}
@media (max-width:914px){
    .home{
        background-image: url(image/Realbackshort.png);  
    }
    .cal{
        margin-bottom: 8%;
        
    }
}

@media (max-width:846px){
    .home {
        background-image: url(image/backshort.png);
    }
    .features .column{
        flex-wrap: wrap;
        flex-direction: column;
    }
   .column{
       display: flex;
       align-items: center;
       justify-content: center;
       flex-direction: row;
   }
    ul{
        align-items: center;
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .column li{
        background-position:center ;
        text-align: center;
        padding-left: 0;
        padding-top: 10px;
        background-image: none;
        align-items: center;
    }

    .cal img{
        display: inline-block;
    }
    .diam{
       
    }
    .diam img{
        display: inline-block;
    }
    .inf{
        
    }
    .inf img{
        display: inline-block;
    }
    .cbox{
        
    }
    .cbox img{
        display: inline-block;
    }
}
@media (max-width:768px){

    header label{
        visibility: visible;
        opacity: 1;
    }

    
    .home {
            background-image: url(image/short.png);
    }

    header .navbar{
        position: absolute;
        top:100%; left: 0;
        width:100%;
        background:#fff;
        padding:1rem 2rem;
        border-top: .1rem solid rgba(0,0,0,.2);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: .2s linear;
    }

    header .navbar a{
        display: block;
        margin:2rem 0;
        font-size: 2rem;
    }

    header input:checked ~ .navbar{
        transform: scaleY(1);
        opacity: 1;
    }

    header input:checked ~ label::before{
        content:'\f00d';
    }

    .home{
        flex-flow: column-reverse;
        align-items: center;
    }

    .home .image img{
        width:450px;
        animation: float 0s linear infinite;
        position: relative;
        bottom: 60vh;
    }

    .home .content h3{
        font-size: 5rem;
    }

    .home .content p{
        font-size: 2rem;
    }
   
    .about .row .content h3{
        text-align: center;
    }
    
}
@media (max-width:707px){

}
@media (max-width:450px){
    
    html{
        font-size: 50%;
    }

    .about .column .content .buttons a{
        width:100%;
        text-align: center;
    }

    .about .column .content .buttons a:last-child{
        margin: 1rem 0;
    }

}