/* Google Font - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
/* Universal Settings */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
section,footer{
    padding: 0 80px;
    width: 100%;
    height: max-content;
    padding-bottom: 40px;
}
.section-head{
    padding: 40px 0;
    font-size: 40px;
    text-align: center;
}
.section-sub-head{
    font-size: 18px;
    padding: 0px 0 25px 0;
    text-align: center;
}
a{
    outline: none;
}
.scroll-top{
    background-color: #C33764;
    padding: 18px;
    border-radius: 80px;
    position: fixed;
    transition: background-color .3s, opacity .5s, visibility .5s;
    bottom: 20px;
    right: 40px;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}
.scroll-top i{
    color: #fafdfe;
    font-size: 22px;
}
.visible{
    opacity: 1;
    visibility: visible;
}
video{
    width: 50vw;
    
}
/* Section 1 - Hero section */
.hero-section{
    background: linear-gradient(to right, #c33764, #1d2671);
    width: 100%;
    color: #fafdfe;
}
/* Navbar */
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

/* Center Navbar */
.nav-center{
    justify-content: flex-start;
}
.nav-links{
    list-style: none;
    display: flex;
    justify-content: flex-start;
    font-weight: 400;
    gap: 35px;
    font-size: 16px;
    width: auto;
}

.nav-links li a{
    text-decoration: none;
    color: inherit;
}
/* Right Navbar buttons */
.nav-right{
    display: flex;
    gap: 30px;
    padding-right: 20px;
}
.btn{
    width:100px;
    height: 50px;
    border-radius: 30px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
}
.sign-up{
    color: #16161d;
}
.sign-up:hover{
    color: #fafdfe;;
    background-color: #16161d;
    transition: 0.3s ease-in-out;
}
.login{
    color:  #fafdfe;
    background-color: #16161d;
}
.login:hover{
    color: #16161d;
    background-color:#d7f5ff;
    transition: 0.3s ease-in-out;
}
/* Hamburger Menu */
.ham-menu{
    top: 0;
    left: -70vw;
    width: 70vw;
    padding: 30px 40px 0px 0px;
    z-index: 2001;
    position: fixed;
    list-style: none;
    background-color: #16161d;
    height: 100%;
    transition: .3s ease-in-out;
}
.ham-menu li{
    margin: 15px 30px;
    padding-bottom: 20px;
    border-bottom: .5px solid #fafdfe60;
    color: #fafdfe;
}
.ham-menu li a{
    color: #fafdfe;
    text-decoration: none;
}
.ham-show{
    left: 0;
    transition: .3s ease-in-out;
}
.tooltip{
    background-color: #fafdfe;
    position: absolute;
    margin-left: 10px;
    width: 100px;
    border-radius: 8px;
    margin-top: 8px;
    list-style: none;
    color: #000000;
    visibility: hidden;;
}
.tooltip li{
    padding: 8px;
    border-bottom: 0.5px solid #16161d22;
    font-size: 14px;
}

/* Hero Container */
.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero-head{
    padding: 100px 0 25px 0;
    text-align: center;
    line-height: 1.3;
}
.hero-head h1{
    font-size: 45px;
    width: 795px;
}
.hero-sub-head p{
    font-size: 16px;
    text-align: center;
    width: 700px;
    line-height: 1.4;
    padding-bottom: 40px;
}
.hero-btn{
    padding-bottom: 40px;
}
.hero-image{
    padding: 40px 0;
}
.hero-image img{
    width: 80vw;
}
/* Video Section */
.video{
    display: grid;
    place-items: center;
}
/* Templates Section */
.template-card-container{
    width: 100%;
    margin: 20px 0 35px 0;
    /* background-color: #1d2671; */
    display: grid;
    grid-template-columns: repeat(auto-fill, 360px);
    grid-gap: 40px;
    justify-content: center;
}
.template-card{
    width: 360px;
    height: max-content;
    padding-bottom: 20px;
    border: 0.5px solid #16161d1e;
    background-color: #fafdfe;
}
.template-card:hover{
        box-shadow: 5px 0px 18px #16161d55;
    transition: 0.5s ease-in-out;
}
.template-image img{
    width: 360px;
    margin: 0;
}
.template-image video{
    width: 360px;
    margin: 0;
}
.template{
    padding: 15px ;
   
}
.template h2{
    font-size: 24px;
    padding-bottom: 25px ;
    text-align: center;
    padding-top: 15px;
}
.btn-container{
    width: 100%;
    display: flex;
    justify-content: space-around;
}
.act-btn{
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 5px;
    border: none;
    outline: none;
    color: #fafdfe;
    cursor: pointer;
}
.demo{
    background-color: #C33764;
}
.demo:hover{
    color: #C33764;
    background-color: #fafdfe;
    box-shadow: 5px 0px 18px #C3376455;
    transition: 0.3s ease-in-out;
}
.create{
    background-color: #27349a;
}
.create:hover{
    color: #27349a;
    background-color: #fafdfe;
    box-shadow: 5px 0px 18px #27349a55;
    transition: 0.3s ease-in-out;
}
/* Appbar */
.appbar{
    height: 56px;
    background-color: #16161d;
    z-index: 2000;
    width: 100%;
    display: none;
    align-items: center;
    position: fixed;
    bottom: 0;
    justify-content: space-around;
}
.appbar ion-icon{
    font-size: 25px;
    color: #fafdfe;
}
/* Footer */
footer{
    background-color: #16161d;
    padding: 50px 0;
}

.footer-image img{
    height: 60px;
    margin-left: 30px;
}
.footer-container{
    padding: 30px 80px;
    display: flex;
    gap: 150px;
}
.footer-head{
    color: #fafdfe;
    font-weight: 600;
    font-size: 20px;
    padding: 20px 0;
}
.footer-address-details{
    padding: 20px 0 0 0;
}
.footer-address-details li{
    display: flex;
    gap: 25px;
    color: #585874;
    padding-bottom: 15px;
    font-size: 15px
}
.footer-address-details li ion-icon{
    font-size: 22px ;
    z-index: 0;
}
.footer-address-details li a{
    text-decoration: none;
    color: #585874;
}
.footer-items li{
    font-size: 15px ;
    padding: 10px 0;
    list-style: none;
    color: #585874;
}
.footer-items li a{
    text-decoration: none;
    color: #585874;
}
.footer-items li a:hover{
    color: #8B8BA7;
    transition: .25s ease-in-out;
}
.footer-icons a{
    padding: 8px;
    font-size: 23px;
    color: #585874 ;
}
.footer-icons a:hover{
    color: #8B8BA7;
    transition: .25s ease-in-out;
}
.footer-icons{
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}
.copy p{
    display: flex;
    justify-content: center;
    font-size: 16px;
    border-top: 1px solid #585874;
    color: #585874 ;
    padding: 30px 0px 0px 0px;
}
/* Footer for mobile */
.footer-container-mobile{
    width: 100%;
    padding: 20px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: none;
}
.footer-head-mobile{
    color: #fafdfe;
    border-bottom: 1px solid #585874;
    width: 300px;
    font-weight: 600;
    font-size: 16px;
    padding: 12px;
}
.footer-head-mobile ion-icon{
    float: right;
    vertical-align: middle;
    color: #fafdfe;
    font-size: 20px;
}
.footer-items-mobile{
    display: none;
    padding: 5px 10px;
    padding-bottom: 20px;
    font-size: 10px;
}
.footer-items-mobile li{
    font-size: 15px ;
    padding: 10px 0;
    list-style: none;
    color: #585874;
    border-bottom: 1px solid  #58587438;
    
}
.footer-items-mobile li a{
    text-decoration: none;
    color: #585874;
}
.footer-items-mobile li a:hover{
    color: #8B8BA7;
    transition: .25s ease-in-out;
}
.show{
    display: block !important;
    transition: .3s ease-in-out;
}
/* ***************************************************************************************************************
                                        DEMO.html
*************************************************************************************************************** */
.icon-header{
    display: flex;
    justify-content: center;
    font-size: 35px;
    height: 3%;
    gap: 40px;
    box-shadow: -5px 0px 20px #16161d20;
    padding: 15px 0;
}        
.icon-header ion-icon{
    color: #16161d;
    font-size: 40px;
}
.icon-header i{
    font-size: 25px;
    color: #16161d;
}
.desktop-screen{
    height:88vh;
    width: 100%;
    
}
.tablet-screen{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 340px;
    width: 260px;
    position: absolute;
   display: none;
}
    .android-mobile-screen-1{
    height:405px;
   top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 225px;
    
    position: absolute;
    display: none;
}
.ios-mobile-screen{
    height:450px;
    width: 215px;
    border-radius: 25px;
    top: 50%;
    left: 50%;  
    transform: translate(-50%,-50%);
    position: absolute;
    display: none;
}
.android-mobile-screen-2{
    height:405px;
   top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 225px;
    
    position: absolute;
    display: none;
}
.android-mobile-screen-3{
    height: 330px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    width: 590px;
   
    display: none;
}
.select-icon{
    color:red !important;
}

.tablet-screen-bg,.mobile-screen-bg,.mobile-screen-bg-apple,.mobile-screen-bg-3{
    width: 100%;
    margin-top: 20px;
    height: max-content !important;
    display: none;
}
.tablet-screen-bg img,.mobile-screen-bg-2 img{
    height: 420px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.mobile-screen-bg-apple img{
    height: 500px   ;
    position: absolute;
    margin-top: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.mobile-screen-bg img{
    height: 510px;
    position: absolute;
    margin-top: 35px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.mobile-screen-bg-3 img{
   position: absolute;
   height: 420px;
    margin-top: 32px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
}
/* 
*********************************************************************************************************************
                                            REGISTER.html
********************************************************************************************************************* */
.form-container{
    background-color: #fafdfe;
    width: max-content;
    border-radius: 7px;
    padding: 40px 40px 10px 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.register-buttons{
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
}

.select{
    background-color: #1d2671;
    color: #fafdfe;
}
.register-buttons>*{
    border-radius: 8px;
    width: 100%;
    border-bottom: none;
    text-align: center;
    padding: 10px 0;
}
.login-form{
    width: 330px;
    /* border: 1px solid #16161d; */
    padding-top: 20px;
    /* display: none; */
}
.register-form{
    /* border: 1px solid #16161d; */
    width: 330px;
    padding-top: 20px;
    display: none;
}
.login-submit{
    display: flex;
    justify-content: center;
    margin: 30px;
}
input{
    width: 100%;
    height: 40px;
    position: relative;
    outline: none !important;
    padding-left: 40px;
    border: none;
    border-bottom: 0.3px solid #16161d;
    margin-bottom: 15px;
}
form i{
 position: absolute;
 z-index: 200;
padding: 10px;
 font-size: 18px;
vertical-align: middle;
}
.fa-eye{
    right: 40px;
    padding-top: 8px;
}
.submit{
    background-color: #16161d;
    color: #fafdfe;
    font-size: 16px;
    padding: 0;
    border-radius: 30px;
    width: 200px;
    height: 50px;
    text-align: center;
}
/* 
**********************************************************************************************************************
                                                     Templates.html
***********************************************************************************************************************/
.template-nav{
    padding: 25px 80px;
    box-shadow: 0px 8px 10px #16161d11;
    position: fixed;
    width: 100%;
    background-color: #fafdfe;
    z-index: 2;
}

.template-hero{
    display: flex;
    flex-direction: row;
    padding: 80px 0 0 0;

}
.template-hero-text{
    width: 70%;
    display: flex;
    flex-direction: column;
    padding: 150px 50px 0px 70px;
  
    /* background-color: #ef211d; */
}
.template-hero-text h1{
    font-size: 42px;
}
.template-hero-text p{
    font-size: 17.5px;
    padding: 20px 0px 0 0;
}
.template-hero-image img{
    width: 48vw;
}
/* 
**********************************************************************************************************************      
                                        Pricing.html
********************************************************************************************************************** */
.price-nav{
    padding: 25px 80px;
    box-shadow: 0px 8px 10px #16161d11;
}
.pricing-box{
    margin: 0;
    background: linear-gradient(to right, #c33764, #1d2671);
}
.price-box{
    z-index: 2;
    padding: 80px;
}
.price-container{
    padding: 0 50px;
    display: flex;
    justify-content: space-around;
    gap: 50px;
    flex-wrap: wrap;
}
.price-card{
    box-shadow: 0px 8px 10px #16161d11;
    background-color: #fafdfe;
    width: 350px;
    padding: 30px ;
    border-radius: 10px;
    display: grid;
    place-items: center;
    
}
.price-head{
    font-size: 40px;
    padding: 30px 0px;
}
.price{
    font-size: 35px;
    font-weight: 900;
    padding-bottom: 30px;
}
.price-btn{
    background-color: #1d2671;
    color: #fafdfe;
    width: 180px;
    font-size: 15px;
    margin: 40px 0 10px 0;
}
.price-btn:hover{
    background-color: #C33764;
    transition: .25s ease-in-out;
}
/* 
**********************************************************************************************************************      
                                        Contact.html
********************************************************************************************************************** */
.contact{
    background: linear-gradient(to right, #c33764, #1d2671);
    height: max-content;
}
.contact-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:100px;
    width: 100%;
    height:80vh;
}

.address-details li{
    display: flex;
    gap: 25px;
    color: #fafdfe;
    padding-bottom: 30px;
    font-size: 22px
}
.address-details li ion-icon{
    font-size: 30px ;
    z-index: 0;
}
.address-details li a{
    text-decoration: none;
    color: #fafdfe;
}
.contact-form{
    display: grid;
    grid-template-rows: repeat(5, 75px);
    grid-template-columns: repeat(2, 250px);
    grid-gap: 10px;
    position:relative;
    padding: 30px;
}
.contact-form>*{
    border: 1.5px solid #fafdfe;
}
.contact-form input,#contact-message{
    background-color: transparent;
    height: 60px;
    padding-left: 20px;
    font-size: 15px;
    border-radius: 7px;
    color: #fafdfe;
}
#contact-name{
 grid-column-start: 1;
 grid-column-end: 3;
}
.contact-form input::placeholder{
    color: #fafdfeaf;
    opacity: 1;
}
#contact-message::placeholder{
    color: #fafdfeaf;
    opacity: 1;
}
#contact-phone{
    width: 190px;
    
}
#contact-email{
    width: 310px;
    margin-left: -60px;
}
#contact-business{
    grid-column-start: 1;
    grid-column-end: 3;
}
#contact-message{
    grid-column-start: 1;
    grid-column-end: 3;
    outline: none;
    padding-top: 10px;
    height: 130px;  
}
#send-btn{
    margin-top: 65px; 
    width: 150px; 
    font-size: 18px; 
    padding: 0; 
    border: none; 
    background-color: #1d2671; 
    color: #fafdfe; 
    font-weight: 700;
    border-radius: 150px;
}
#send-btn:hover{
    background-color: #c33764; 
    transition: .25s ease-in-out;
}

/* 
**********************************************************************************************************************
                                            Form.html
***********************************************************************************************************************/
.main-form-container{
   display: flex;
    justify-content: center;
}
.main-form-wrapper{
    background-color: #fafdfe;
    border:1px solid #1d2671;
    width: 600px;
    padding: 0 20px ;
    padding-bottom: 0;
    border-radius: 20px;
    margin-bottom: 40px;
}
.progress-bar{
    display: flex;
    justify-content: center;
    gap: 15px;
    text-align: center;
    padding-top: 30px;
}
.form-content-grid{
    display: grid;
    grid-template-columns: 150px 350px;
    grid-template-rows: 70px 70px 70px;
}
.circle1,.circle2,.circle3,.circle4,.circle5,.circle6{
   
   width: 45px;
   height: 45px;
    border-radius: 200px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.circle1,.circle2,.circle3,.circle4,.circle5,.circle6 span ion-icon {
    color: #000000;
    font-size:26px;
    padding-top: 6.5px;
}
.progress-text1,.progress-text2,.progress-text3,.progress-text4,.progress-text5,.progress-text6{
    text-align: center;
    font-size: 10.5px;
    padding-top: 5px;
    
}
.form-sub-head{
    font-size: 13.5px;
    padding: 0px 0 25px 0;
    
}
.form-head{
    padding: 20px 0;
    font-size: 25px;
    padding-top: 0; 
    text-align:left;
    font-weight: 600;
}
.step-form{
    margin-top: 20px;
    background-color: #fafdfe;
    padding: 0 10px;
}
hr{
    margin-bottom: 25px;
}
.label{
    padding: 15px 0;
}

#textarea{
    width: 100%;
    resize: none;
    height: 80px;
    outline: none;
    padding: 10px;
    border: 0.5px solid #1d2671;
    border-radius: 7px;
}
#input,#upload{
    padding: 0;
    border:none;
    margin: 0;
}
#input,#coupon{
    padding-left: 10px;
    border: 0.5px solid #1d2671;
    border-radius: 7px;
}
#upload::file-selector-button{
    background-color: #c33764a1;
    padding: 10px 15px;
    border: none;
    outline: none;
    color: white;
    border-radius: 5px;
}
.navigation-btn{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}
.ctrl-btn{
    height: 40px;
    width: 100px;
    border-radius: 5px;
    border: none;
    font-size: 15px;
    background-color: #1d2671;
    color: #fafdfe;
    cursor: pointer;
}
.ctrl-btn:hover{
    background-color: #c33764;
    color: #fafdfe;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.policy-grid{
    display: flex;
    justify-content: space-between;
    padding-top: -20px;
}
.policy-grid>div{
    width: 100%;
}
#form-2,#form-3,#form-4,#form-5,#form-6{
    display: none;
}
.prev{
    visibility: hidden;;
}
.success{
    background-color: #00C4A9;
    transition: 0.3s ease-in-out;
}
.success-text{
    color: #00C4A9;
    transition: 0.3s ease-in-out;
}
.show-form{
    display: block !important;
    transition: 0.3s ease-in-out;
}
.color-flex-container{
    display: flex;
    justify-content: space-between;
}
.color-flex{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
   
}
.color{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background-color: #00C4A9;
}
.color-grid{
    display: grid;
    grid-template-columns: 45px 200px 45px 200px;
    grid-template-rows: repeat(4, 45px);
    gap: 5px;
    align-items: center;
}
.icon-white{
    color: #fafdfe;
}
.logo-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.color-titles-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    
}
#color-title{
    font-size: 16px;
    padding: 7px 30px;
    width: 100%;
}
#color-title1{
    text-align: right !important;
    font-size: 16px;
    padding: 7px 30px;
    width: 100%;
}

/* 
*********************************************************************************************************************
                                            Finance.html
***********************************************************************************************************************/
.form-content-grid-finance{
    display: grid;
    grid-template-columns: 150px 350px;
    grid-template-rows: repeat(8, 70px);
}
.finance-file-upload::file-selector-button{
    background-color: #00C4A9;
    padding: 10px 15px;
    border: none;
    outline: none;
    color: white;
    border-radius: 5px;
}
.submit-button{
    display: grid;
    place-items: center;
}