.gradient {
    background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
}
.gradient_text{
    display: inline-block;
    background: linear-gradient(to right, #f32170, #2196f3, #ff00eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
:root{
    --main-color:#e8786e;
    --black:#555;
    --light-color:#777;
    --bg:#fceae9;
    --border:.1rem solid rgba(0,0,0,.1);
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
}

*{
    font-family: sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .3s ease-out;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
    overflow-x: hidden;
}

section{
    padding:2rem 9%;
}

.heading{
    text-align: center;
    padding-bottom: 3rem;
    font-size: 4rem;
    color:var(--black);
}
.heading .btn{
    font-size: 3.5rem;
}

.heading span{
    color:var(--main-color);
    border-radius: .5rem;
    background: var(--bg);
    padding:0 1.5rem;
}
.head2{
    text-align: center;
    padding-bottom: 3rem;
    font-size: 2rem;
    color:var(--black);
}

.head2 span{
    color:var(--main-color);
    border-radius: .5rem;
    background: var(--bg);
    padding:0 1.5rem;
}

.imgsize
{
    width: 480px;
    height: 640px;
}

.paging{
    text-align: center;
    padding-bottom: 1.5rem;
    font-size: 2rem;
    color:var(--black);
}

.paging span{
    color:var(--main-color);
    border-radius: .5rem;
    background: var(--bg);
    padding:0 1.5rem;
}

.btn{
    margin: 1rem 0;
    /* display: inline-block; */
    padding:.8rem 3rem;
    font-size: 1.7rem;
    cursor: pointer;
    color:#fff;
    /* background:var(--main-color); */
    border-radius: .5rem;
    /* box-shadow: var(--box-shadow);    */
    position: relative;
    z-index: 0;
    overflow:hidden;
}

.btn::before{
    content: '';
    position: absolute;
    top:0; right:0;
    height: 100%;
    width:0%;
    /* background:var(--black); */
    z-index: -1;
    transition: .2s ease-out;
}

.btn:hover::before{
    left:0;
    width:100%;
}

.header{
    position: fixed;
    top:0; left:0; right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:2rem 9%;
}

.header .logo{
    font-size: 2.5rem;
    color:var(--black);
    font-weight: bolder;
}

.header .navbar a{
    font-size: 1.7rem;
    color: var(--light-color);
    margin-left: 1rem;
}

.header .navbar a i{
    padding-right: 1rem;
}

.header .navbar a:hover{
    color:var(--bg);
}

#menu-btn{
    cursor: pointer;
    font-size: 2.5rem;
    padding:1rem 1.3rem;
    border-radius: .5rem;
    color: var(--main-color);
    background: var(--bg);
    display: none;
}

#menu-btn:hover{
    color: #fff;
    background: var(--main-color);
}

.home{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:1.5rem;
    padding-top: 10rem;
    background:var(--bg);
    position: relative;
}

.home .content{
    flex:1 1 45rem;
}

.home .image{
    flex:1 1 45rem;
}

.home .image img{
    width: 100%;
}

.home .content h3{
    font-size: 3.5rem;
    color:var(--black);
    line-height: 1.8;
}

.home .content p{
    font-size: 1.7rem;
    color:var(--light-color);
    line-height: 1.8;
    padding:1rem 0;
}

.home .cloud{
    position: absolute;
    bottom: 0; right: 0; left: 0;
    height: 18rem;
    background-size: 250rem 18rem;
    background:url(../images/cloud.png) repeat-x;
    animation: cloud 10s linear infinite;
}

@keyframes cloud{
    0%{
        background-position-x: 0rem;
    }
    100%{
        background-position-x: -250rem;
    }
}

.home .cloud-1{
    opacity: .5;
    height:20rem;
    background-size: 250rem 20rem;
    animation-direction: reverse;
    animation-duration: 15s;
}

.pricing .box-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.pricing .box-container .box{
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
    border:var(--border);
    box-shadow: var(--box-shadow);
}

.pricing .box-container .box h3{
    color:var(--black);
    font-size: 2.5rem;
}

.pricing .box-container .box img{
    margin:2.5rem 0;
    height: 15rem;
}

.pricing .box-container .box .price{
    font-size: 4rem;
    font-weight: bolder;
    color: var(--main-color);
}

.pricing .box-container .box .price span{
    font-size: 2rem;
    font-weight: lighter;
}

.pricing .box-container .box ul{
    padding: 1rem 0;
    list-style: none;
}

.pricing .box-container .box ul li{
    padding: 1rem 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--light-color);
}

.pricing .box-container .box ul li select{
    padding: .5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
    border-radius: 1rem;
    border: .5rem red dashed;
}

.pricing .box-container .box ul li i{
    padding: .5rem;
    font-size: 3rem;
    font-weight: bold;
    color: var(--main-color);
}

.review .box-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.review .box-container .box{
    padding: 2rem;
    border-radius: .5rem;
    border:var(--border);
    box-shadow: var(--box-shadow);
}

.review .box-container .box .user{
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
}

.review .box-container .box .user img{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.review .box-container .box .user h3{
    font-size: 2.2rem;
    color: var(--black);
    padding-bottom: .5rem;
}

.review .box-container .box .user .stars i{
    font-size: 1.5rem;
    color: var(--main-color);
}

.review .box-container .box .fa-quote-right{
    margin-left: auto;
    font-size: 5rem;
    color:var(--bg);
}

.review .box-container .box p{
    padding-top: 1rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--light-color);
    font-style: italic;
}

/*idc start*/
.idc{
    padding-top: 10rem;
}

.idc .box-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.idc .box-container .box{
    padding: .5rem;
    border-radius: .5rem;
    border:var(--border);
    box-shadow: var(--box-shadow);
}

.node, .detail{
    display: flex;
    align-items: center;
    /* padding-bottom: 1rem; */
}

.node img{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.node h3, .detail span{
    font-size: 3rem;
    color: var(--black);
    padding-bottom: .5rem;
}

.detail{
    /*border: 1px yellow solid;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail .line{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* border-bottom: .2rem red dashed; */
}
.detail .line:nth-child(1){
    border-bottom-style: none
}

.detail .line > i{
    font-size: 6rem;
}

.detail .line .left{
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
}

.detail .line .right{
    flex-grow: 2;
    display: flex;
    justify-content: flex-end;
}

.detail .line .left i,.detail .line .right i{
    text-transform: lowercase;
}

.detail .line .left i::before,.detail .line .right i::before{
    padding: 1rem;
}

.detail .line form{
    width: 100%;
}

.detail .line form button{
    font-size: 3.5rem;
    font-weight: bold;
    color: red;
    /* border: .3rem blue dashed; */
    margin: 1rem;
    padding: .5rem 2rem;
    border-radius: .5rem;
    width: 100%;
    text-align: center;
}

.detail .line form button i{
    font-size: 5rem;
    padding: .5rem;
}

.detail i{
    font-size: 2.5rem;
    color: var(--main-color);
}

.node .stars i{
    font-size: 2rem;
    color: var(--main-color);
}

.idc .box-container .box .fa-quote-right{
    margin-left: auto;
    font-size: 5rem;
    color:var(--bg);
}

.idc .box-container .box p{
    padding-top: 1rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--light-color);
    font-style: italic;
}
.info {
    padding-left: 2rem;
}
.major_radio {
    /* font-size: 1rem; */
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    position: relative;
}
.major_radio:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #7d7d7d;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
}
.major_radio:checked:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid red;
    background: red;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
}
.major_radio:checked:after {
    content: '';
    width: 10px;
    height: 5px;
    border: 3px solid white;
    border-top: transparent;
    border-right: transparent;
    text-align: center;
    display: block;
    position: absolute;
    top: 6px;
    left: 5px;
    transform: rotate(-45deg);
    vertical-align: middle;
}
.major_radio:checked+label{
    font-size: 3rem;
    font-weight: blod;
    color: red;
    vertical-align: middle;
}
/*idc end*/

/* login start */
.login{
    gap:1.5rem;
    padding-top: 10rem;
}

.login .row{
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.login .row form{
    /*flex:1 1 45rem;*/
    padding:2rem;
    border:var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
}


.login .row form .box{
    margin:.7rem 0;
    padding: 1rem;
    font-size: 1.6rem;
    color:var(--black);
    border-radius: .5rem;
    border:var(--border);
    background: #f7f7f7;
    text-transform: none;
    width: 100%;
}


.login .row form .box:focus{
    background:var(--bg);
}

.hosttypes ul{
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    font-size: 2rem;
}

.hosttypes ul li{
    /* margin: 0 1rem; */
    padding: 0 1rem;
    /* background: var(--main-color); */
}

.login .row form .hosttypes{
    margin:.7rem 0;
    padding: 1rem;
    /* color:var(--black); */
    border-radius: .5rem;
    border:var(--border);
    background: #f7f7f7;
    /* width: 100%; */
}

.login .row form .hosttypes ul li:hover{
    background: var(--main-color);
    border-radius: .5rem;
    text-transform: none;
}


.login .row form .btn:hover{
    background: var(--black);
}

.login .row form .btn{
    border: 1px blue dashed;
    /*flex-grow: 1;*/

}

#verify{
    border: 2px dashed red;
    padding: 1rem;
    width: 100%;
}

.loginBtn, .errors{
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}
.loginBtn a{
    font-size: 1.5rem;
}

.errors span{
    color: red;
    font-size: 1.6rem;
    /*color:var(--main-color);*/
    border-radius: .6rem;
    background: var(--bg);
    padding: .5rem 1rem;
}

/* login end */

/* register start */
.register{
    gap:1.5rem;
    padding-top: 10rem;
}

.register .row{
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.register .row form{
    /* flex:1 1 45rem; */
    padding:2rem;
    border:var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
}

.register .row form .box{
    margin:.7rem 0;
    padding: 1rem;
    font-size: 1.6rem;
    color:var(--black);
    border-radius: .5rem;
    border:var(--border);
    background: #f7f7f7;
    text-transform: none;
    width: 100%;
}

.register .row form .box:focus{
    background:var(--bg);
}

.register .row form .btn:hover{
    background: var(--black);
}

.register .row form .btn{
    border: 1px blue dashed;
    /*flex-grow: 1;*/
}

.registerBtn, .errors{
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

.nologin{
    display: flex;
    justify-content: center;
}

.nologin span{
    color: red;
    font-size: 2rem;
    color:var(--main-color);
    border-radius: .6rem;
    background: var(--bg);
    padding: .5rem .8rem;
}

.error{
    display: flex;
    justify-content: flex-end;
}

.error span{
    color: red;
    font-size: 1rem;
    color:var(--main-color);
    border-radius: .6rem;
    background: var(--bg);
    padding: .5rem .8rem;
}

/* register end */

.footer{
    margin-top: 1rem;
    background: var(--bg);
    padding-bottom: 9rem;
}

.footer .credit{
    color: var(--black);
    text-align: center;
    padding:1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    font-size: 2rem;
}

.footer .credit span{
    color:var(--main-color);
}













/* media queries  */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding:2rem;
    }

    section{
        padding:2rem;
    }

}

@media (max-width:768px){

    #menu-btn{
        display: initial;
    }

    .header .navbar{
        position: absolute;
        top:115%; right: 2rem;
        background:#fff;
        box-shadow: var(--box-shadow);
        border:var(--border);
        border-radius: .5rem;
        width: 15rem;
        transform: scale(0);
        transform-origin: top right;
        opacity: 0;
    }

    .header .navbar.active{        
        transform: scale(1);
        opacity: 1;
    }
    .header .navbar.active{        
        /* transform: scale(1); */
        opacity: 1;
        display: flex;
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
    }
    .header .navbar.active a{
        /* display:inline-flex; */
        border: 1px red dashed;
    }

    .header .navbar a{
        font-size: 2rem;
        display: block;
        padding:1rem;
        margin: 1rem;
        border-radius: .5rem;
    }

    .header .navbar a:hover{
        background: var(--bg);
    }

    .home .content{
        text-align: center;
    }

}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

}

/* input range slide start */
.slideContainer{
    display: flex;
    justify-content: center;
    width: 100%;
}
.slide{
    -webkit-appearance: none;
    width: 100%;
    height: 1.5rem;
    background: linear-gradient(90deg, rgb(107, 111, 237) 10%, rgb(214, 214, 214) 10%);
    outline: none;
    opacity: .7;
    -webkit-transition: .2s;
    transition: opactiy .2s;
    border-radius: 1rem;
    box-shadow: 0px 1px 10px 1px black;
}
.slide::before{
    content: '0M';
    color: var(--main-color);
    font-weight: bolder;
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: 2rem;
}
.slide::after{
    content: '1G';
    color: var(--main-color);
    font-weight: bolder;
    font-size: 2rem;
    position: absolute;
    right: 0;
    top: 2rem;
}
.slide:hover{
    opacity: 1;
}
.slide::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--main-color);;
    border-radius: 50%;
    cursor: pointer;
}
.slide::-moz-range-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--main-color);;
    border-radius: 50%;
    cursor: pointer;
}
/* input range slide end */

/* select text space align start */
.select_spacing{
    letter-spacing: 2rem;
    text-align: center;
    font-size: 3rem;
    width: 100%;
    color: red;
    font-weight: 300;
}
/* select text space align end */