*{
    margin: 0;
    padding: 0;
    box-sizing: content-box;
    font-family: 'Outfit', sans-serif;
}

/* --------------
NAV START'S
-------------- */

body {
    font-family: 'Outfit', sans-serif;
    --color1: #000;
    --color2: #ffffff;
    --color3: #333333;
}

.nav-bar {
    height: 80px;
    width: 100%;
    display: flex;
    margin-top: -150px;
    z-index: 99;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: fixed;
    background-color: var(--color2);
    padding: 12px 20px;
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
}

.logo img {
    height: 45px;
    width: 200px;
    margin: 15px 40px;
}

.menu {
    display: flex;
}

.menu li {
    padding-left: 70px;
    line-height: 4;
}

.menu li a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    color: var(--color3);
    font-size: 18px;
    font-weight: 600;
}

.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background-image: linear-gradient(90deg, #FFA4E2 0%, #A7A9FF 32.08%, #98FFA7 49.27%, #F3FF6F 76.87%, #FFABD8 100%);
    height:3px;
    /* background-color: var(--color1); */
    transition: 0.5s ease-in-out;
}

.menu li a:hover:after {
    width: 100%;
}

.open-menu,
.close-menu {
    position: absolute;
    color: var(--color3);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu {
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
}

.close-menu {
    top: 20px;
    right: 20px;
}

#check {
    display: none;
}

#nav-pricing a i {
    padding: 5px;
}

#nav-pricing {
    position: relative;
}

.menu button {
    border: 2px solid #5d67ce;
    height: 42px;
    background-color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    width: 110px;
    border-radius: 4px;
    margin: 15px 50px;
}

.menu button:hover {
    background-color: #5d66ce5f;
    cursor: pointer;
}

@media(max-width: 1100px) {
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: var(--color2);
        transition: all 0.2s ease-in-out;
    }

    .menu li {
        margin-top: 10px;
        transition: 0s backgroundColor;
    }

    .menu li a::after {
        height: 3;
    }
    
    .menu li a:hover:after {
        width: 2000%;
        margin-left: -800px;
    }

    .menu li a {
        padding: 10px;
    }

    .open-menu,
    .close-menu {
        display: block;
    }

    .menu a button{
        display: none;
    }

    #check:checked~.menu {
        right: 0;
    }
}

@media(max-width: 1235px) and (min-width: 1179px){
    .menu li{
        padding-left:60px;
    }
}

@media(max-width: 1180px) and (min-width: 1139px){
    .menu li{
        padding-left:50px;
    }
}

@media(max-width: 1139px) and (min-width: 1099px){
    .menu li{
        padding-left:35px;
    }
}

/* --------------
NAV END'S
-------------- */

/* --------------
BOX-1 START'S
-------------- */

#container{
    margin-top: 150px;
}

#container #box-1 h1{
    color: #333333;
    font-size: 38px;
    font-weight: 600;
    text-align: center;
}

#container #box-1 #p1{
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    opacity: .7;
    text-align: center;
    line-height: 25px;
    margin-top: 10px;
}

#container #box-1 #p2{
    color: #333333;
    font-size: 12px;
    font-weight: 600;
    opacity: .9;
    text-align: center;
    margin-top: 5px;
}

/* --------------
BOX-1 END'S
-------------- */

/* --------------
PRICE START'S
-------------- */

#price-packages{
    /* border: 1px solid red; */
    height: 1570px;
    width: 65%;
    margin: 80px auto 60px auto;
    display: flex;
    background-color: #fff;
}

.price-box {
    border:1px solid #d5dfff;
    width: 30%;
    margin: 0% 2.5%;
    height: 100%;
    border-radius: 4px;
    transition: 0s scale;
    scale: 1;
    background-color: #fff;
    position: relative;
}

.price-package-2{
    border: 2px solid #5d67ce;
}

.price-box:hover{
    transition: .7s;
    scale: 1.06;
    box-shadow: 8px 8px 10px #3333332c;
    cursor: pointer;
}

#popular-tag{
    /* border: 1px solid green; */
    height: 30px;
    text-align: center;
    color: #fff;
    background-color: #FE7198;
    font-size: 18px;
    font-weight: 500;
    width: 65%;
    border-radius:20px;
    position: absolute;
    top: -15px;
    left: 25px;
}

#popular-tag p{
    line-height: 30px;
}

.price-box #type{
    text-align: center;
    font-size: 25px;
    color: #2F1C6A;
    font-weight: 600;
    margin: 50px 0px 10px 0px;
}

.price-box #type-info{
    text-align: center;
    font-size: 15px;
    color: #2F1C6A;
    font-weight: 400;
    margin-bottom: 40px;
}

.price-box #saving-info{
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 14px;
}

#saving-info-free{
    text-align: center;
    font-size: 16px;
    color: #5025d1;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-box hr{
    width: 80%;
    margin: 20px 10%;
    border: 1px solid #33333336;
}

.price-box #heading{
    margin: 30px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #2a195c;
}

.li{
    margin: 20px 30px;
    font-size: 15px;
    list-style:none;
}

.li .bold{
    font-weight: bold;
    margin-right: 5px;
}

.yellow{
    color: #ffcd35;
}

.green{
    color: #00b090;
}

.red{
    color: #fc5185;
}

.li i{
    margin-right: 10px;
}

.security, .service{
    margin: 40px 30px 30px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #2a195c;
}

#original-price{
    text-decoration: line-through;
    font-size: 15px;
    color: #3333339d;
}

#saving button{
    height: 35px;
    width: 85px;
    margin-left: 10px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    color: #5025d1;
    background-color: #5025d133;
}

#saving-2 button{
    height: 35px;
    width: 85px;
    margin-left: 10px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    color: #f8346b;
    background-color: #fe71993d;
}

#price{
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    color: #2F1C6A;

}

#price span{
    font-size: 20px;
    color: #3333339d;
    margin: 0px 3px;
}
/* --------------
PRICE END'S
-------------- */


.container{
    position: relative;
    width: 100%;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #673de6;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    transition: 1s;
    /* padding: 20px; */
}

#popup{
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50%;
    padding: 50px;
    background-color: #ffffff;
    box-shadow: 100px 100px 100px 1000px rgba(0, 0, 0, 0.384);
    visibility: hidden;
    opacity: 0;
    transition: 0s;
}

#popup h1{
    text-align: center;
    color: #2a195c;
    font-size: 20px;
    font-weight: 600;
}

#popup p{
    text-align: center;
    color: #333333;
    font-size: 14px;
    margin-top: 10px;
}
#content a{
    text-decoration: none;
}

#popup a{
    position: absolute;
    top: 20px;
    right: 20px;
}

#popup.active{
    top: 50%;
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}

#popup.inactive{
    top: 50%;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.container #content{
    /* border: 1px solid red; */
    position: relative;
    max-width: 800px;
}


/* =================
hover-box Start
================ */

/* #hover-info{
    background: none repeat scroll 0 0 #F8F8F8;
    border: 5px solid #DFDFDF;
    color: #717171;
    font-size: 13px;
    height: 30px;
    letter-spacing: 1px;
    line-height: 30px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    top: -80px;
    left:-30px;
    display:none;
    padding:0 20px;

}
#hover-info:after{
    content:'';
    position:absolute;
    bottom:-10px;
    width:10px;
    height:10px;
    border-bottom:5px solid #dfdfdf;
    border-right:5px solid #dfdfdf;
    background:#f8f8f8;
    left:50%;
    margin-left:-5px;
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg);
}
p{
    margin:100px;
    float:left;
    position:relative;
    cursor:pointer;
}

p:hover #hover-info{
    display:block;
} */

/* =================
hover-box End
================ */


/* =============
CONTAINER-2 START
============= */

#container-2 {
    /* border: 1px solid red; */
    height: 1100px;
    width: 80%;
    margin: 30px auto;
}

#all-in-one-solution,#speed{
    /* border: 1px solid green; */
    width: 100%;
    height: 500px;
    display: flex;
    margin: 100px 0px 30px 0px;
}

#all-in-one-img{
    /* border: 1px solid green; */
    height: 450px;
    width: 450px;
    margin: 25px 215px;
}

#speed-img{
    /* border: 1px solid green; */
    height: 450px;
    width: 450px;
    margin: 25px 0px;
}

#all-in-one-img img, #speed-img img{
    height: 100%;
    width: 100%;
}

.speed-right{
    /* border: 1px solid yellow; */
    width: 40%;
    height: 100%;
    margin-left: 130px;
}

.speed-left{
    /* border: 1px solid yellow; */
    width: 50%;
    height: 100%;
}

.c-2 h1,.speed-right h1{
    font-size: 35px;
    color: #2a195c;
    font-weight: 600;
    width: 60%;
    margin: 80px 0px 0px 0px;
}

.c-2 p,.speed-right p{
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    margin: 5px 0px 20px 0px;
    width: 60%;
}

#c2-li{
    list-style: none;
}

#c2-li i{
    margin: 20px 10px 0px 0px;
    font-size: 15px;
}

#advanced{
    /* border: 1px solid green; */
    background-color: #5025d1;
    color: #ffffff;
    width: 100%;
    height: 600px;
    display: flex;
    margin: 0px 0px 30px 0px;
}

.advanced-left{
    /* border: 1px solid red; */
    width: 50%;
    height: 100%;
}

#advanced h1{
    color: #ffffff;
    width: 40%;
    font-size: 40px;
    margin: 130px 0px 30px 300px;
}

.white{
    color: #ffffff;
}

.advanced-li{
    font-size: 17px;
    width: 55%;
    list-style: none;
    margin: 20px 0px 30px 300px;
    word-spacing: 1px;
    font-weight: 300;
}

#advanced-r-img{
    /* border: 1px solid red; */
    height: 500px;
    width: 700px;
    margin: 50px 100px;
}

#advanced-r-img img{
    height: 100%;
    width: 100%;
}

/* =============
CONTAINER-2 END
=============== */

/* --------------
FOOTER START'S
--------------- */

#footer-up{
    /* border: 1px solid blue; */
    height: 250px;
    background-color: rgba(128, 128, 128, 0.041)
}

#footer-up h1{
    color: #333333;
    text-align: center;
    padding-top: 40px;
    font-size: 38px;
}

#footer-up p{
    color: #333333;
    text-align: center;
    margin-top: 25px;
}

#footer-up button{
    margin: 30px 0px 20px 860px;
    height: 40px;
    width: 180px;
    border-radius: 10px;
    border: none;
    background-color: #5D67CE;
    color: #ffffff;
    transition: 0s color;
    transition: 0s backgroudColor;
    font-size: 18px;
    font-weight: 400;
}

#footer-up button:hover{
    cursor: pointer;
    transition: .5s;
    background-color: #ffffff;
    border: 1px solid #5D67CE;
    color: #5D67CE;
}

footer{
    /* border: 1px solid red; */
    height: 330px;
    background-color: #ffffff;
    display: flex;
    padding-top: 50px;
}

#footer-left{
    /* border: 1px solid yellow; */
    width: 30%;
    height: 100%;
}

#footer-down{
    /* border: 1px solid green; */
    height: 60px;
    background-color: #ffffff;
}

#footer-left img{
    height: 45px;
    width: 225px;
    margin: 5px 40px;
}

#footer-left .p-1{
    margin: 0px 0px 2px 60px;
    width: 60%;
    font-size: 13px;
    color: #333333;
}

#footer-left .p-2{
    margin: 10px 0px 2px 60px;
    width: 60%;
    font-size: 14px;
    color: #333333;
    text-align: justify;
}

#footer-left h4{
    margin: 30px 0px 2px 60px;
    width: 70%;
    font-size: 20px;
}

#footer-right{
    display: flex;
}

#footer-right-1{
    /* border: 1px solid blue; */
    height: 100%;
    width: 250px;
    margin-left: 50px;
}

#footer-right-2{
    /* border: 1px solid blue; */
    height: 100%;
    width: 300px;
    margin-left: 80px;
}

#footer-right-2 h4{
    color: #333333;
    margin: 10px 0px;
}

#footer-right-2 p{
    text-align: justify;
    color: #333333;
    font-size: 13.5px;
    width: 98%;
}

#footer-right-3{
    /* border: 1px solid blue; */
    height: 100%;
    width: 300px;
    margin-left: 100px;
}

#footer-right-3 .f-r-3-h4{
    color: #333333;
    margin: 10px 0px;
}

#email{
    margin-bottom: 20px;
}

#email p,#phone p{
    font-size: 15px;
    color: #333333;
    margin: 3px 0px 0px 26px;
}

#email-moji,#phone-moji{
    display: flex;
}

#email-moji h4,#phone-moji h4{
    margin-left: 10px;
    font-size: 20px;
    font-weight: 600;
    background-image: linear-gradient(45deg, #8C69FA 40%, #FFBB47 35%, #78A1DC 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

#email-moji i,#phone-moji i{
    color: #8C69FA;
    margin-top: 4px;
}


.f-r-1{
    /* border: 1px solid green; */
    height: 50%;
    width: 100%;
}

.social-media{
    display: grid;
    grid-auto-flow: column;
}

.useful-links h4{
    text-align: justify;
    color: #333333;
    margin: 12px 0px;
}

.useful-links a{
    color: #3333339a;
    text-decoration: underline;
    font-size: 16px;
    line-height: 30px;
}

.useful-links a:hover{
    color: #333333;
    cursor: pointer;
}

.social-media i{
    font-size: 30px;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: #90CB4F;
    color: #000;
    scale: 1;
    display: grid;
    place-items: center;
    transform: 0s background-colour;
    transform: 0s scale;
}

.social-media i:hover{
    transition: .5s;
    scale: 1.1;
    box-shadow: 2px 2px 10px #33333394;
    cursor: pointer;
    background-image: linear-gradient(40deg,#FE7198 10%,#90CB4F 80%);
    color: #ffffff;
}

#footer-down p{
    font-size: 14px;
    margin-left: 60px;
    font-weight: 400;
}

/* --------------
FOOTER END'S
--------------- */



@media screen and (width: 1682px) and (height: 1080px) {
 
}