/**************************************/
/*                                    */
/*                                    */
/*               Common               */
/*                                    */
/*                                    */
/**************************************/
body,html,p,ol,ul,li,p,h1,h2,h3,h4,h5,h6{
    margin: 0;
}
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family:roboto;
}
body{
    overflow-x: hidden;
}
:root{
    --blue-color:#24bdc9;
    --light-blue-color:#daf6f8;
}
.text-upper{
    text-transform: uppercase;
}
.text-capital{
    text-transform: capitalize;
}
.btn{
    border:none;
    padding: 15px 25px;
    font-weight: bold;
    letter-spacing:2px;
    cursor: pointer;
}
.text-grey{
    color:rgba(0,0,0,0.55) !important;
}
.no-shadow{
    text-shadow: none !important;
}
::selection{
    color:#822222;
    background-color: transparent;
}
.box-shadow{
    box-shadow:0 4px 10px 1px rgba(0,0,0,.3)
}
.bg-white{
    background-color: #fff;
}
.bg-gray{
    background-color: #f0f0f0;
}
/**************************************/
/*                                    */
/*                                    */
/*          Declare  Fonts            */
/*                                    */
/*                                    */
/**************************************/
@font-face {
    font-family:'roboto';
    font-weight: 100;
    src:url("../fonts/Roboto-Light.ttf")
}
@font-face {
    font-family:'roboto';
    font-weight: 400;
    src:url("../fonts/Roboto-Regular.ttf")
}
@font-face {
    font-family:'roboto';
    font-weight: 600;
    src:url("../fonts/Roboto-Bold.ttf")
}
@font-face {
    font-family:'roboto';
    font-weight: 900;
    src:url("../fonts/Roboto-Black.ttf")
}





/**************************************/
/*                                    */
/*                                    */
/*           Header  Start            */
/*                                    */
/*                                    */
/**************************************/
header{
    background-image: linear-gradient(135deg,#2ebdc4 0%,#68e5b2 100%);
    display: flex;
    flex-direction: column;
    padding-top: 150px;
}
nav{
    width: 100%;
    padding: 35px;
    box-shadow: 0 0 10px 0px rgba(0,0,0,0.3);
    background: rgba(0,0,0,.8);
    position: fixed;
    z-index: 1;
    top: 0;
}
a{
    text-decoration: none;
}
.menu-wrapper{
    padding: 0;
    margin: 0;
}
.menu-item {
    list-style-type: none;
    position: relative;
}
.menu-item span.fa{
    font-size:14px;
    vertical-align: middle;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}
.menu-item:hover .fa{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.link{
    text-decoration: none;
    color:white;
    font-weight:bold;
    font-weight:400;
    font-size:18px;
    position: relative;
    padding: 10px 15px;
}
.link .line,.menu-item .line{
    position: absolute;
    width: 0px;
    left: 50%;
    height: 3px;
    background-image: linear-gradient(to right,coral,orange);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}
.link:hover .line{
    width: 70%;
    left: 15%;
}
.menu-item:hover>.line{
    width: 100%;
    left: 0;
}

.logo img{
    filter:grayscale(100%);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    cursor: pointer;
}
.logo img:hover{
    filter:grayscale(0);
}
.intro{
    background: url(../img/hero-img.png);
    background-repeat:no-repeat;
    background-position:80% 100%;
    -webkit-background-size: 25% 80%;
    background-size: 28% 90%;
    width: 100%;
    height: 77vh;
}

.submenu{
    position: absolute;
    width: 140%;
    left: -20%;
    top: -180px;
    background-color: rgba(255,255,255,0.7);
    transition: 0.6s;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.menu-item:hover>.submenu{
    top: 190%;
    overflow: hidden;
}
.submenu .menu-item .line{
    background-color: #000 !important;
    background-image: none;
}
.submenu .menu-item .link{
    color:#51d5b9;
    text-shadow: 1px 0 1px #000, -1px 0 1px #000,0 1px 1px #000,0 -1px 1px #000;
    width: 100%;
    transition: all 0.3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.submenu .link:hover{
    background-color: rgba(255,255,255,0.5);
}
.submenu .menu-item:last-child .line{
    bottom: 0;
}
.menu-toggle{
    position: fixed;
    top: 25px;
    right: 25px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: rgba(0,0,0,0.7);
    color:white;
    font-size:24px;
    display: none;
    padding: 0;
}
.menu-toggle a{
    padding: 15px 25px;
    color:white;
    display: block;
    width: 100%;
    height: 100%;
}
/**************************************/
/*                                    */
/*                                    */
/*           Header   End             */
/*                                    */
/*                                    */
/**************************************/
/**************************************/
/*                                    */
/*                                    */
/*            Intro  Start            */
/*                                    */
/*                                    */
/**************************************/

.caption{

}
.caption-title{
    letter-spacing:3px;
    font-size:14px;
    color:rgba(255,255,255,0.8);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.caption-heading{
    font-size:52px;
    color:rgba(255,255,255,0.9);
    text-shadow: 1px 0 1px #000, -1px 0 1px #000,0 1px 1px #000,0 -1px 1px #000;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}
.caption-text{
    font-size:14px;
    color:rgba(255,255,255,0.8);
    font-weight:bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    line-height: 1.9;
}
.caption-btn{
    background: linear-gradient(to bottom left,#8490ff 0%,#62bdfc 100%);
    color:white;
    box-shadow: 0 3px 5px 1px rgba(0,0,0,0.3);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    opacity: .5;
    filter:grayscale(100%);
}
.caption-btn:hover{
    /*box-shadow: 0 10px 9px 0px rgba(0,0,0,0.3);*/
    /*-webkit-transform: translateY(-5px);*/
    /*-moz-transform: translateY(-5px);*/
    /*-ms-transform: translateY(-5px);*/
    /*-o-transform: translateY(-5px);*/
    /*transform: translateY(-5px);*/
    opacity: 1;
    filter:grayscale(0);
}


/**************************************/
/*                                    */
/*                                    */
/*             Intro   End            */
/*                                    */
/*                                    */
/**************************************/
/**************************************/
/*                                    */
/*                                    */
/*             About  Start           */
/*                                    */
/*                                    */
/**************************************/
.about{
    background-color: #fff;
}
.about .caption-heading{
    color:#999 !important;
    text-shadow: 1px 0 1px #000, -1px 0 1px #000,0 1px 1px #000,0 -1px 1px #000 !important;
}
.about-img-wrapper{
    padding: 17%;
    padding-top: 0;
    padding-right: 7%;
    padding-bottom: 7%;
}
.about-img{
    width: 100%;
    height:100%;
    transform: translateY(5px);
}
/**************************************/
/*                                    */
/*                                    */
/*              About   End           */
/*                                    */
/*                                    */
/**************************************/
/**************************************/
/*                                    */
/*                                    */
/*          Services  Start           */
/*                                    */
/*                                    */
/**************************************/
.services-wrapper{
    background-color: #efefef;
}

.service-heading h2{
    font-size:50px;
    text-align: center;
}
.service-heading{
    color:#999 !important;
    text-shadow: 1px 0 1px #000, -1px 0 1px #000,0 1px 1px #000,0 -1px 1px #000 !important;
}
.service-sub-heading{
    text-align: center;
    color:#666;
}
.service{
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.service-caption-wrapper{
    text-align: center;
}
.service-text{
    text-align: center;
    color:#a0a0a0;
    line-height: 1.6;
    font-weight:lighter;
}
.service-caption-wrapper span{
    font-size:36px;
}
.service-caption-wrapper:hover{
    color:#6470cf;
}
.service-caption-wrapper span,.service-caption-wrapper h2{
    color:inherit;
}
/**************************************/
/*                                    */
/*                                    */
/*          Services    End           */
/*                                    */
/*                                    */
/**************************************/
/**************************************/
/*                                    */
/*                                    */
/*           Plans  Start             */
/*                                    */
/*                                    */
/**************************************/
.plans-wrapper{
    background-color: #f8faff;
}
.plans-caption-title{
    display: block;
    text-align: center;
    font-size:12px;
    color:var(--blue-color);
}
.plans-caption{
    text-align: center;
    font-weight:600;
    font-size:32px;
}
.plan-wrapper{
    padding: 20px;
}
.plan{
    position: relative;
    background-color: #fff;
    box-shadow:0 0 8px 1px rgba(0,0,0,0.1);
}
.plan-badge{
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--blue-color);
    padding: 10px 20px;
    border-radius:  0 0 10px 10px;
    color:white;
    box-shadow:  0 3px 5px rgba(0,0,0,0.3);
}
.price{
    font-size:40px;
    font-weight:bold;
    text-align: center;
}
.dollar{
    font-size:20px;
    font-weight:100;
    display: inline-block;
    transform:translate(7px,-20px);
}
.slogan{
    color:#999;
    text-align: center;
}
.plan-btn-wrapper{
    text-align: center;
}
.plan-btn{
    display: inline-block;
    border:solid 2px var(--light-blue-color);
    background-color: var(--light-blue-color);
    color:var(--blue-color);
    border-radius: 30px;
    padding: 15px 30px;
    font-size:20px;
    cursor: pointer;
    transition:all 0.6s;
    position: relative;
}
.outline{
    position: absolute;
    border:solid 2px var(--blue-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius:30px;
    transition:all 0.6s;
}
.plan-btn:hover{
    background-color: #fff;
    color:var(--blue-color);
}
.plan-btn:hover .outline{
    transform:scale(1.3);
    opacity:0;
}
.features-slogan{
    color: #555555;
    text-align: center;
}
.feature{
    text-align: center;
}
.feature span{
    color:#999;
}
/**************************************/
/*                                    */
/*                                    */
/*            Plans   End             */
/*                                    */
/*                                    */
/**************************************/
/**************************************/
/*                                    */
/*                                    */
/*           Facts  Start             */
/*                                    */
/*                                    */
/**************************************/
.facts{
    position: relative;
    overflow: hidden;
}
.facts-wrapper{
    height: 420px;
    background: url(../img/bg.png) , linear-gradient(to bottom right,blue,aqua,aqua, darkblue) , linear-gradient(to bottom right,rgba(255,0,0,0.6),rgba(255,0,0,0.6));
    background-blend-mode: multiply;
    background-repeat:no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment:fixed;
    position: absolute;
    width: 110%;
    left: -5%;
    top: -10px;
    filter:blur(7px)
}
.facts-text-wrapper{
    height: 400px;
    position: relative;
}
.facts-text{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.fact-heading{
    color:goldenrod;
    text-shadow: 1px 0 1px #303,-1px 0px 1px #303,0 1px 1px #303,0 -1px 1px #303,2px 2px 3px rgba(255,255,255,0.6);
    text-align: center;
    font-size:56px;
    font-weight:600;
}
.fact-text{
    color:goldenrod;
    text-shadow: 1px 0 1px #303,-1px 0px 1px #303,0 1px 1px #303,0 -1px 1px #303,2px 2px 3px rgba(255,255,255,0.6);
    text-align: center;
}
/**************************************/
/*                                    */
/*                                    */
/*            Facts   End             */
/*                                    */
/*                                    */
/**************************************/
/**************************************/
/*                                    */
/*                                    */
/*         Partners  Start            */
/*                                    */
/*                                    */
/**************************************/
.partners{
    width: 100%;
    background: linear-gradient(0deg,#8490ff 0%,#62bdfc 100%);
}
.item{
    padding: 40px;
}
.owl-dots{
    display: none;
}
/**************************************/
/*                                    */
/*                                    */
/*          Partners   End            */
/*                                    */
/*                                    */
/**************************************/
/**************************************/
/*                                    */
/*                                    */
/*           Footer  Start            */
/*                                    */
/*                                    */
/**************************************/
footer{
    background: #04091e;
}
.about-heading{
    color:#f0f0f0;
    font-size:32px;
}
.about-text{
    color:gray;
}
.about-link{
    color:#8490ff;
}
.newsletter-heading{
    color:white;
    font-size:20px;
}
.newsletter-text{
    color:gray;
}
.newsletter-input-group{
    position: relative;
    width: 100%;
}
.newsletter-input-group input{
    width: 90%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 5px;
}
.newsletter-input-group button{
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    padding: 12px 7px;
    background-color: #8490ff;
    color:white;
    border:none;
    cursor: pointer;
}
.row{

}
footer .icon-wrapper{
    background-color: rgba(142,164,255,0.7);
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 60px;
    text-align: center;
}
footer .row span{
    color:#f0f0f0;
    font-size:26px;
}
.adjust-top-5{
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
}
.row-text{
    color:rgba(200,200,200,0.7);
    display: inline-block;
    width: 80%;
    padding-left: 20px;
}
.row>img{
    width: 10%;
    cursor: pointer;
}
/**************************************/
/*                                    */
/*                                    */
/*            Footer   End            */
/*                                    */
/*                                    */
/**************************************/
@media only screen and (max-width:1200px){
    .about-img-wrapper{
        padding: 10%;
        padding-right: 0;
        padding-top: 0;
    }
}
@media only screen and (max-width: 992px){
    nav{
        background-color: rgba(0,0,0,0.9);
    }
    .menu{
        width: 100%;
    }
    .logo img{
        filter:hue-rotate(0) invert(100%);
        transition: all 0.3s;
    }
    .logo:hover img{
        filter:hue-rotate(250deg) invert(100%);
    }
    .menu-wrapper {
        flex-direction:column;
        width: 100%;
        height: 0;
        overflow: hidden;
        -webkit-transition: all 0.6s ;
        -moz-transition: all 0.6s ;
        -ms-transition: all 0.6s ;
        -o-transition: all 0.6s ;
        transition: all 0.6s ;
    }
    .menu-item{
        width: 100%;
    }
    .submenu{
        position: relative;
        height: 0;
        overflow: hidden;
        top: 0;
    }
    .menu-item:hover>.submenu{
        height: 125px;
        top: 0;
    }
    .menu-toggle{
        display: inline-block;
    }
    .menu-wrapper:target{
        height: 336px;
    }
    .close{
        display: none !important;
    }
    .menu-wrapper:target + .menu-toggle .open{
        display: none !important;
    }
    .menu-wrapper:target + .menu-toggle .close{
        display: block !important;
    }
    .link:hover .line{
        width: 100%;
        left: 0;
    }
    .intro{
        -webkit-background-size: 34% 80%;
        background-size: 34% 80%;
    }
    .about-img-wrapper{
        padding: 10%;
    }
}
@media only screen and (max-width:768px){
    .intro{
        -webkit-background-size: 38% 75%;
        background-size: 38% 75%;
        background-position: 95% 100%;
    }
    .about-img-wrapper{
        padding: 15%;
    }
    .caption{
        text-align: center;
    }
}
@media only screen and (max-width:576px){
    .intro{
        background: none;
    }
    .caption{
        width: 100%;
        text-align: center;
    }
    .caption-heading{
        font-size:42px;
    }
}