@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');
*{
    margin: 0;
    padding:0;
    font-family: "poppins";
    text-decoration: none;
    box-sizing: border-box;
}
body {
    background-color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
}
/* For WebKit (Chrome, Safari, Opera) */
::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
    /* Set the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: #00172d;
    width: 8px;
    /* Set the color of the thumb */
    border-radius: 3px;
    /* Optional: Add rounded corners to the thumb */
}

::-webkit-scrollbar-track {
    background-color: transparent;
}
header{
    background:#001d35;
    /* background-color: white; */
    width: 100%;
    height:7vh;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.content{
    width: 80%;
    /* border: 1px solid red; */
    height: 7vh;
    display: flex;
}
.content .logo{
    width: 25%;
    height:7vh;
    /* border: 1px solid green; */
}
.content .logo img{
    height: 100%;
}
nav{
    width: 45%;
    padding: 10px;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid green; */
}
nav a{
    /* border: 1px solid orange; */
    padding: 8px 10px;
    border-radius: 5px;
    transition: color 0.3s ease-in-out;
    position: relative;
    color: #ddd;
}

nav a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff9900;
    /* Change to your preferred underline color */
    transform: scaleX(0);
    /* Initially, set the width to 0 */
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

nav a:hover {
    color: #ff9900;
    /* Change to your preferred hover color */
}

a:hover::before {
    transform: scaleX(1);
    /* Expand the underline to full width on hover */
    transform-origin: bottom left;
}
.buttons{
    width: 30%;
    height: 7vh;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.button_div{
    border: 1px solid red;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button_div img{
    width: 20px;
    margin-right: 3px;
    filter: brightness(0) saturate(100%) invert(46%) sepia(97%) saturate(6693%) hue-rotate(29deg) brightness(114%) contrast(94%);
}
.button_div p{
    color: #fff;
    font-size: 12px;
}
.order_btn{
    margin-right: 20px;
    background-color: rgb(0, 0, 0);
    border: none;
    border-radius: 10px;
    padding: 9px 25px;
}
.account_btn {
    margin-right: 20px;
    /* background-color: green; */
    border: 2px solid #ff9900;
    /* border: none; */
    border-radius: 10px;
}
.menubtn{
    display: none;
}
.hero {
    /* margin-top: 10px; */
    width: 80%;
    margin-left: 10%;
    /* border: 1px solid red; */
    height: 80vh;
    display: flex;
    /* background-color: lavender; */
}

.infromation {
    width: 60%;
    height: 80vh;
    /* padding: 10px; */
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}

.infromation span {
    width: 90%;
    font-size: 12px;
    color: black;
    height: 20px;
    /* margin-left: 10%; */
}

.infromation h1 {
    width: 90%;
    font-size: 55px;
    font-weight: 600;
    height: auto;
    color: #444;
    /* margin-left: 10%; */
}
.classic_separator{
    width: 80%;
    background-color: #ddd;
    border-radius: 10px;
    border: none;
    height: 5px;
    margin-top: 20px;
}
.infromation form {
    width: 60%;
    /* margin-left: 10%; */
    height: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.infromation form input[type="email"] {
    width: 70%;
    height: 40px;
    background-color: #fff;
    border: 1px solid #ccc;
    border: none;
    padding-left: 10px;
}

.infromation form input[type="email"]:focus {
    outline: none;
}

.infromation form input[type="submit"] {
    width: 30%;
    height: 40px;
    background-color:red;
    color: white;
    border: none;
    cursor: pointer;
    /* border: 1px solid #ccc; */

}

.infromation P {
    width: 90%;
    font-size: 16px;
    height: auto;
    color: #333;
    /* margin-left: 10%; */
    margin-top: 20px;
}
.brag{
    width: 70%;
    height: 90px;
    margin-top: 10px;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brag .tabs{
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 30%;
    height: 80px;
    border-radius:10px;
    background-color: #f1f1f1;

}
.brag .tabs span{
    color: #333;
    font-size: 35px;
    font-weight: 900;
    margin: 0;
}
.brag .tabs p{
    color: #666;
    font-size: 12px;
    margin-top: 30px;
}




/* ---------------------------------------Price estimation form ------------------------------------------ */
.hero .price_form{
    width:40%;
    height:80vh;
    /* Adjust the size of the pattern */
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero .price_form form{
    position: relative;
    background-color: #f8f4e8;
    /* Light cream color */
    background-image:
        linear-gradient(45deg,
            transparent 25%,
            rgba(0, 0, 0, 0.05) 25%,
            rgba(0, 0, 0, 0.05) 50%,
            transparent 50%,
            transparent 75%,
            rgba(0, 0, 0, 0.05) 75%,
            rgba(0, 0, 0, 0.05) 100%);
    background-size: 4px 4px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); */
    border-radius:10px;
    padding:20px;
    height: 75vh;
    margin-top: 20px;
}

.hero .price_form form .classic_separator{
    width: 100%;
    margin-top: 10px;
}
.hero .price_form form label{
    font-size:12px;
    margin-top:10px;
    width:100%;
    display:flex;
}
.hero .price_form form select{
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    border: none;

}
.hero .price_form form input {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    border: none;

}

.writer_image{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
}
.pricing_div{
    display: flex;
    margin-top: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pricing_div button,.place_an_order{
    padding: 10px 40px;
    border: none;
    border-radius: 5px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    color: white;
    background-color: #001d35;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.place_an_order{
    width: 40%;
    height: 40px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #fff;
    color: black;
    border-bottom: 3px solid #ff9900;
    border-right: 1px solid #ff9900;
}
.pricing_div button img{
    width: 25px;
    filter: brightness(0) invert(1);
    margin-right: 10px;
}

#estimatedPrice{
    color: #666;
    font-size: 30px;
    font-weight: bolder;
}
.center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.para_title{
    font-size: 30px;
    text-transform: uppercase;

    color: #ff9900;
    font-weight: 700;
}
.normal_text{
    font-size: 13px;
    color: #ddd;
}
.normal_body_text{
    color: black;
    font-size: 13px;
    margin-top: 10px;
}
/* --------------------------------OUR GUarantee section-------------------------------- */
.guarantees{
    width: 80%;
    height: 50vh;
    margin-left: 10%;
    /* border: 1px solid red; */
}
.section_title{
    width:100%;
    height:auto;
    display:flex;
    align-items:center;
    font-size: 30px;
    color: #666;
    text-transform: uppercase;
    font-weight: bolder;
     
}
.section_hr{
    border: none;
    background-color: #ddd;
    width: 50%;
    height: 5px;
    border-radius: 10px;
}
.flex_div{
    /* border: 1px solid red; */
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.guaratee{
    width: 24%;
    height: 40vh;
}
.guaratee img{
    height: 20vh;
}
.guaratee img {
    height: 20vh;
}
.guaratee p{
    font-size: 12px;
}
.guaratee p.tite{
    color: #ff9900;
    font-size: 20px;
    font-weight: bolder;
    margin-top: 10px;
    margin-bottom: 5px;
}
/* --------------------------------How it works section-------------------------------- */
/* ----------------------TIMELINES------------------------ */

.timeline {
    position: relative;
    max-width: 100%;
    /* border: 1px solid red; */
    /* margin-left: 5%; */
    margin-top: 20px;
}

.container {
    padding: 10px 30px ;
    position: relative;
    width: 50%;
    /* background: #fff; */
}

.text_box {
    position: relative;
    padding: 10px;
    /* padding-left: 100px; */
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* margin: 20px 0; */
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.container img {
    position: absolute;
    width: 40px;
    border-radius: 50%;
    right: -20px;
    top: 30px;
    z-index: 10;
    border: 5px solid #fff;
}

.right img {
    left: -20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1px;
}

.left_container_arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 25px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
    right: -14px;
}

.right_container_arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 25px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    left: -14px;
}

.event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    background-color: #3498db;
    border-radius: 50%;
    border: 3px solid #fff;
}

.text_box h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ff9900;
}

.text_box hr {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 5px;
    width: 100%;
    border-radius: 10px;
    border: none;
    background-color: #eee;

}

.text_box p {
    font-size: 12px;
    color: #666;
    margin: 0;
}
/* ------------------------------------------end of timeline --------------------------- */
.Howitworks {
    width: 100%;
    background-color: #eee;
    position: relative;
    height: auto;
    border: 1px solid transparent;
}
.custom-shape-divider-top-1705364680 {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1705364680 svg {
    position: relative;
    display: block;
    width: calc(189% + 1.3px);
    height: 138px;
}

.custom-shape-divider-top-1705364680 .shape-fill {
    fill: #FFFFFF;
}
.Howitworks .content {
    width: 80%;
    margin-top: 20vh;
    margin-left: 10%;
    height: auto;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
}
.steps{
    margin-top: 10px;
    min-height: 10vh;
    max-height: 40vh;
    /* height: auto; */
    display: flex;
    align-items: center;

    width: 100%;
    /* border: 1px solid red; */
    border-radius: 10px;
    background-color: white;
}
.steps.reverse{
    display: flex;
    flex-direction: row-reverse;
}
.steps img{
    width: 20%;
    margin: 10px;
    border-radius: 1px;
    border: none;
    /* margin-top: 5%; */

}
.steps .details {
    width: 80%;
    /* border: 1px solid red; */
    height: 100% ;
    padding: 5px;
}
.steps .details .step_para{
    display: flex;
    font-size: 10px;
    color: #666;
    /* font-weight: bolder; */
    /* border-bottom: 2px solid orange; */
}
.steps .details .tite{
    color: #ff9900;
}
.detail_para{
    margin-top: 5px;
    display: flex;
    color: #ff9900;
    flex-direction: column;
}
.detail_para span{
    margin-top: 10px;
    font-size: 10px;
    font-weight: 900;
    color: #666;
    font-style: italic;
}

/* --------------------------------Why us section-------------------------------- */
.why_us {
    width: 100%;
    background-color: #eee;
    position: relative;
    height: auto;
    /* border: 1px solid red; */
}
.why_us .content {
    width: 80%;
    /* margin-top: 20vh; */
    margin-left: 10%;
    height: auto;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
}
.title{
    /* border: 1px solid red; */
    width: 100%;
    height: 10vh;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}
.title p{
    /* color: #ff9900; */
    font-size: 40px;
}
.why_divs{
    width: 100%;
    height: 90vh;
    padding: 10px;
    /* background-color: white; */
    display: flex;
}
.main{
    width: 70%;
    height: 115vh;
    /* border: 1px solid red; */
}
.why_tab{
    padding: 10px;
    display: flex;
    background-color: white;
    width: 100%;
    min-height: 20vh;
    margin-top: 10px;
    border-left: 5px solid orange;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}
.why_tab .number{
    width: 10%;
    text-align: center;
    /* border: 1px solid red; */
}
.why_tab .number .number_para{
    font-size: 50px;
    color: #666;
    font-weight: 600;
}
.why_tab .why_details {
    width: 90%;
    /* border: 1px solid red; */
}
.why_tab .why_details p{
    font-size: 12px;
    color: #666;
}
.why_tab .why_details p.tite {
    text-transform: capitalize;
    font-size: 18px;
    color: #ff9900;
}
.minor {
    width: 28%;
    margin-left: 2%;
    height: 90vh;
    /* border: 1px solid red; */
}
.minor_title_para{
    font-size: 25px;
    color: #666;
    font-weight: 900;
}
.minor_why{
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    background-color: #fff;
    border-radius: 10px;
    margin-top: 10px;
    padding: 10px;
}
.minor_why p{
    font-size: 10px;
    color: #666;
}
.minor_why p.tite {
    text-transform: capitalize;
    font-size: 16px;
    color: #ff9900;
}


/* ------------------------------testimonials------------------------- */
.testimonials{
    width: 100%;
    background-color: #fff;
    position: relative;
    height:100vh;
    border: 1px solid transparent;
}
.testi {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.testi svg {
    position: relative;
    display: block;
    width: calc(189% + 1.3px);
    height: 138px;
}

.testi .shape-fill {
    fill: #f1f1f1;
}
.testimonials .content {
    width: 80%;
    margin-top: 20vh;
    margin-left: 10%;
    height: 80vh;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
}
.testifies{
    width: 100%;
    height: 70vh;
    margin-top: 20px;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonial_tab{
    width: 32%;
    border-radius: 10px;
    min-height:10vh;
    display: flex;
    align-items: center;
    border: 1px solid red;
    /* justify-content: center; */
    flex-direction: column;
    border: 1px solid #dddddd60;
    background-color: #f9f9f9;
}
.testimonial_tab .image{
    height: 100px;
    width: 100%;
    position: relative;
    /* border: 1px solid red; */
}
.testimonial_tab .image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    /* border-bottom: 1px solid #ff9900; */
    position: absolute;
    top: -75px;
    left: 30%;
}
.client{
    color: #ff9900;
    font-size: 28px;

}
.testimonial_tab q{
    border-top: 2px solid #3498db50;
    padding: 10px 20px;
    width: 80%;
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-size: 12px;
}
.date{
    margin-top: 10px;
    /* display: flex; */
    /* text-align: end; */
    /* width: 80%; */
    font-size: 12px;
    padding: 10px 20px;
    border-top: 2px solid #3498db50;
    color: #3498db;
    
}


 
/* ------------------------------testimonials------------------------- */
.follow {
    width: 100%;
    background-color: #fff;
    position: relative;
    height: 50vh;
    border: 1px solid transparent;
}
.follow .content {
    width: 80%;
    /* margin-top: 20vh; */
    margin-left: 10%;
    height: 48vh;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}
.social_flex{
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: space-between;
    /* border: 1px solid red; */
}
.social_card {
    width: 30%;
    position: relative;
    padding: 20px;
    border-radius: 5px;
    margin: 10px;
    height: auto;
    border: 1px solid #ddd;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
}
.social_card .start{
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid red; */
}
.social_card .start img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* border: 1px solid red; */

}
.Title_social{
    width: 80%;
    height: 10vh;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9900;
    font-weight: bolder;
    font-size: 18px;
}
.social_separator{
    width: 100%;
    height: 2px;
    border: none;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 10px;
    background-color: #dddddd60;
}
.details{
    /* border: 1px solid red; */
    height: 100px;
}
.details a{
    padding: 15px 30px;
    border: 2px solid #ddd;
    margin-top: 20px;
    border-radius: 5px;
    /* background-color: #ff990090; */
    color: #ff9900;
    font-weight: 600;
    font-size: 12px;
    transition: .2s ease-in-out;
}
.details a:hover{
    letter-spacing: 1px;
    background-color: orange;
    color: white;
}
.encouragement-text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}
footer{
    width: 100%;
    height: 3vh;
    background-color: #00172d;
    display: flex;
    /* border: 1px solid red; */
    align-items: center;
    justify-content: center;
}
footer p{
    font-size: 13px;
    color: #ddd;
}
.sidenav {
    display: none;
}

@media only screen and (max-width:912px) {
    body{
        overflow-x: hidden;
    }
    header {
        background: #001d35;
        /* background-color: white; */
        width: 100%;
        height: 7vh;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        display: none;
        position:fixed;
        top:0;
        left:0;
        z-index:1000;
    }

    .content {
        width: 100%;
        /* border: 1px solid red; */
        height: 7vh;
        /* display: none; */
    }

    .content .logo {
        width: 25%;
        height: 7vh;
        /* border: 1px solid green; */
    }

    .content .logo img {
        width: 100%;
        height: 100%;
    }

    nav {
        display: none;
    }

    .buttons {
        width: 75%;
        height: 7vh;
        /* border: 1px solid red; */
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .button_div {
        /* border: 1px solid red; */
        padding: 8px 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .button_div img {
        width: 15px;
        margin-right: 3px;
        filter: brightness(0) saturate(100%) invert(46%) sepia(97%) saturate(6693%) hue-rotate(29deg) brightness(114%) contrast(94%);
    }

    .button_div p {
        color: #fff;
        font-size: 10px;
    }

    .order_btn {
        margin-right: 10px;
        background-color: rgb(0, 0, 0);
        border: none;
        border-radius: 5px;
        padding: 9px 10px;
    }

    .account_btn {
        margin-right: 10px;
        /* background-color: green; */
        border: 2px solid #ff9900;
        /* border: none; */
        border-radius: 10px;
    }
    .menubtn {
        background-color: transparent;
        border: none;
        margin: 10px;
        display: block;
        
    }
    .menubtn img{
        width: 30px;
        filter: brightness(0) invert(1);
    }
    /* ---------------------------hero-------------------------- */
    .hero {
        /* margin-top: 10px; */
        width: 98%;
        margin-left: 1%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .infromation {
        width: 100%;
        height: 55vh;
        /* padding: 10px; */
        /* border: 1px solid red; */
        display: flex;
        flex-direction: column;
         align-items: center; 
        justify-content: center;
    }

    .infromation span {
        font-size: 10px;
        height: 16px;
    }

    .infromation h1 {
        width: 100%;
        display:flex;
        justify-content:center;
        font-size: 30px;
        text-align:center;
        /* margin-left: 10%; */
    }

    .classic_separator {
        width: 90%;
        margin-top: 10px;
    }

    .infromation form {
        width: 90%;
    }

    .infromation P {
        width: 98%;
        font-size: 13px;
    }
    .brag {
        width: 89%;
    }
    .brag .tabs {
        width: 31%;
        height: 88px;
    }

    .brag .tabs span {
        font-size: 30px;
    }

    .brag .tabs p {
        color: #666;
        font-size: 10px;
        margin-top: 30px;
    }
    /* ---------------------------------------Price estimation form ------------------------------------------ */
    .hero .price_form {
        width: 98%;
        height: auto;
    }
    .hero .price_form form{
        height:auto;
    }
    .hero .price_form form select {
        padding: 10px;
    }
    .hero .price_form form input {
        padding: 10px;
    }
    .writer_image {
        width: 40%;
    }
    .pricing_div button,
    .place_an_order {
        padding: 10px 20px;
    }
    .place_an_order{
        display:none;
    }
    .center {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .para_title {
        font-size: 30px;
        text-transform: uppercase;
        color: #ff9900;
        font-weight: 700;
    }

    .normal_text {
        font-size: 13px;
        color: #ddd;
    }

    .normal_body_text {
        color: black;
        font-size: 12px;
        margin-top: 10px;
    }

    /* --------------------------------OUR GUarantee section-------------------------------- */
    .guarantees {
        width: 96%;
        height: auto;
        margin-left: 2%;
        margin-top:20px;
        /* border: 1px solid red; */
    }

    .section_title {
        font-size: 25px;
        color: #666;
        text-transform: uppercase;
        font-weight: bolder;
        text-align:center;
    }

    .section_hr {
        border: none;
        background-color: #ddd;
        width: 80%;
        height: 5px;
        border-radius: 10px;
    }

    .flex_div {
        /* border: 1px solid red; */
        height: auto;
        flex-direction: column;
    }

    .guaratee {
        width: 94%;
        height: auto;
        padding: 10px; 
        padding-bottom: 20px;
        border-bottom: 2px solid #ff9900;
        margin-top: 10px;
        border-radius: 10px;
        display:flex;
    }

    .guaratee img {
        width:28%;
        margin-right:2%;
        height: 10vh;
        /*display:none;*/
    }
    .guaratee .details{
        width:70%;
        height: auto;
        padding:5px;
    }
    .guaratee .details p{
        font-size:10px;
    }

    .tite {
        color: #ff9900;
        font-size: 13px;
        font-weight: bolder;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    /* ------------------------------------------end of timeline --------------------------- */
    .Howitworks {
        width: 100%;
        background-color: #eee;
        position: relative;
        height: auto;
        border: 1px solid transparent;
    }

    .custom-shape-divider-top-1705364680 {
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .custom-shape-divider-top-1705364680 svg {
        position: relative;
        display: block;
        width: calc(189% + 1.3px);
        height: 138px;
    }

    .custom-shape-divider-top-1705364680 .shape-fill {
        fill: #FFFFFF;
    }

    .Howitworks .content {
        width: 98%;
        margin-top: 20vh;
        margin-left: 1%;
        height: auto;
        /* border: 1px solid red; */
        display: flex;
        flex-direction: column;
    }

    .steps {
        margin-top: 10px;
        min-height: 10vh;
        max-height: 40vh;
        /* height: auto; */
        display: flex;
        align-items: center;

        width: 100%;
        /* border: 1px solid red; */
        border-radius: 10px;
        background-color: white;
    }

    .steps.reverse {
        display: flex;
        flex-direction: row-reverse;
    }

    .steps img {
        width: 20%;
        margin: 10px;
        border-radius: 1px;
        border: none;
        /* margin-top: 5%; */

    }

    .steps .details {
        width: 80%;
        /* border: 1px solid red; */
        height: 100%;
        padding: 5px;
    }

    .steps .details .step_para {
        display: flex;
        font-size: 10px;
        color: #666;
        /* font-weight: bolder; */
        /* border-bottom: 2px solid orange; */
    }

    .steps .details .tite {
        color: #ff9900;
    }

    .detail_para {
        margin-top: 5px;
        display: flex;
        color: #ff9900;
        flex-direction: column;
    }

    .detail_para span {
        margin-top: 10px;
        font-size: 10px;
        font-weight: 900;
        color: #666;
        font-style: italic;
    }
    /* ----------------------TIMELINES------------------------ */

    .timeline {
        position: relative;
        max-width: 100%;
        /* border: 1px solid red; */
        /* margin-left: 5%; */
        margin-top: 20px;
    }

    .container {
        padding: 10px 5px;
        position: relative;
        width: 95%;
        /* background: #fff; */
    }

    .text_box {
        position: relative;
        padding: 10px;
        /* padding-left: 100px; */
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        /* margin: 20px 0; */
    }

    .left {
        left: 0;
    }

    .right {
        left: 00%;
    }

    .container img {
        position: absolute;
        width: 40px;
        border-radius: 50%;
        right: -20px;
        top: 30px;
        z-index: 10;
        border: 5px solid #fff;
    }

    .right img {
        left: 93%;
        /* border: 1px solid red; */
    }

    .timeline::after {
        content: '';
        position: absolute;
        width: 5px;
        height: 100%;
        background-color: #fff;
        top: 0;
        left: 100%;
        margin-left: -3px;
        z-index: -1px;
    }

    .left_container_arrow {
        height: 0;
        width: 0;
        position: absolute;
        top: 25px;
        z-index: 1;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 15px solid #fff;
        right: -14px;
    }

    .right_container_arrow {
        height: 0;
        width: 0;
        position: absolute;
        top: 25px;
        z-index: 1;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-right: 15px solid #fff;
        left: 110%;
    }

    .event::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 20px;
        height: 20px;
        margin-left: -10px;
        background-color: #3498db;
        border-radius: 50%;
        border: 3px solid #fff;
    }

    .text_box h2 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #ff9900;
    }

    .text_box hr {
        margin-top: 10px;
        margin-bottom: 10px;
        height: 5px;
        width: 100%;
        border-radius: 10px;
        border: none;
        background-color: #eee;

    }

    .text_box p {
        font-size: 12px;
        color: #666;
        margin: 0;
    }

    /* --------------------------------Why us section-------------------------------- */
    .why_us {
        width: 100%;
        background-color: #f1f1f1;
        position: relative;
        height: auto;
        /* border: 1px solid red; */
    }

    .why_us .content {
        width: 98%;
        /* margin-top: 20vh; */
        margin-left: 1%;
        height: auto;
        /* border: 1px solid red; */
        display: flex;
        flex-direction: column;
    }

    .title p {
        /* color: #ff9900; */
        font-size: 40px;
    }

    .why_divs {
        width: 100%;
        height: auto;
        padding: 10px;
        /* background-color: white; */
        display: flex;
        flex-direction: column;
    }

    .main {
        width: 96%;
        margin-left: 2%;
        height: auto;
        /* border: 1px solid red; */
    }

    .why_tab .number {
        width: 10%;
        text-align: center;
        /* border: 1px solid red; */
    }

    .why_tab .number .number_para {
        font-size: 30px;
    }

    .why_tab .why_details {
        width: 90%;
        /* border: 1px solid red; */
    }

    .why_tab .why_details p {
        font-size: 12px;
    }

    .why_tab .why_details p.tite {
        text-transform: capitalize;
        font-size: 18px;
        color: #ff9900;
    }

    .minor {
        width: 98%;
        margin-left: 2%;
        height: auto;
        /* border: 1px solid red; */
    }

    .minor_title_para {
        font-size: 25px;
        margin-top: 20px;
        color: #666;
        font-weight: 900;
    }

    .minor_why {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background-color: white;
        border-radius: 10px;
        margin-top: 10px;
        padding: 10px;
    }

    .minor_why p {
        font-size: 13px;
        color: #666;
    }

    .minor_why p.tite {
        text-transform: capitalize;
        font-size: 16px;
        color: #ff9900;
    }


    /* ------------------------------testimonials------------------------- */
    .testimonials {
        width: 100%;
        background-color: #fff;
        position: relative;
        height: auto;
        border: 1px solid transparent;
    }

    .testi {
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .testi svg {
        position: relative;
        display: block;
        width: calc(189% + 1.3px);
        height: 138px;
    }

    .testi .shape-fill {
        fill: #f1f1f1;
    }

    .testimonials .content {
        width: 100%;
        margin-top: 20vh;
        margin-left: 1%;
        height: 150dvh;
        /* border: 1px solid red; */
        display: flex;
        flex-direction: column;
    }

    .testifies {
        width: 100%;
        height: auto;
        margin-top: 20px;
        /* border: 1px solid red; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .testimonial_tab {
        width: 100%;
        border-radius: 10px;
        min-height: 10vh;
        height: auto;
        margin-top: 70px;
        display: flex;
        align-items: center;
        border: 1px solid red;
        /* justify-content: center; */
        flex-direction: column;
        border: 1px solid #dddddd60;
        background-color: #f9f9f9;
    }

    .testimonial_tab .image {
        height: 70px;
        width: 100%;
        position: relative;
        /* border: 1px solid red; */
    }

    .testimonial_tab .image img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 5px solid #fff;
        /* border-bottom: 1px solid #ff9900; */
        position: absolute;
        top: -45px;
        left: 38%;
    }

    .client {
        color: #ff9900;
        font-size: 28px;

    }

    .testimonial_tab q {
        border-top: 2px solid #3498db50;
        padding: 10px 20px;
        width: 80%;
        margin-top: 20px;
        text-align: center;
        color: #666;
        font-size: 12px;
    }

    .date {
        margin-top: 10px;
        /* display: flex; */
        /* text-align: end; */
        /* width: 80%; */
        font-size: 12px;
        padding: 10px 20px;
        border-top: 2px solid #3498db50;
        color: #3498db;

    }

    /* ------------------------------testimonials------------------------- */
    .follow {
        width: 100%;
        background-color: #fff;
        position: relative;
        height: auto;
        /* border: 1px solid red; */
    }

    .follow .content {
        width: 96%;
        /* margin-top: 20vh; */
        margin-left: 2%;
        height: auto;
        border: 1px solid green;
        display: flex;
        flex-direction: column;
        border: 1px solid transparent;
    }

    .social_flex {
        flex-direction: column;
        width: 96%;
    }

    .social_card {
        width: 96%;
        position: relative;
        padding: 10px;
        border-radius: 5px;
        margin: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .social_card .start {
        width: 100%;
        height: 8vh;
    }

    .social_card .start img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        /* border: 1px solid red; */

    }

    .Title_social {
        height: 8vh;
        font-size: 20px;
    }

    .social_separator {
        width: 100%;
        height: 5px;
        border: none;
        margin-top: 10px;
        margin-bottom: 10px;
        border-radius: 10px;
        background-color: #ddd;
    }

    .details {
        /* border: 1px solid red; */
        height: 80px;
    }

    .details a {
        padding: 10px 30px;
        border: 2px solid #ddd;
        margin-top: 20px;
        border-radius: 5px;
        /* background-color: #ff990090; */
        color: #ff9900;
        font-weight: 600;
        font-size: 12px;
        transition: .2s ease-in-out;
    }

    .details a:hover {
        letter-spacing: 1px;
        background-color: orange;
        color: white;
    }
    .encouragement-text{
        font-size: 10px;
        color: #666;
        font-weight: 400;
    }
    footer {
        width: 100%;
        height: 3vh;
        background-color: #00172d;
        display: flex;
        /* border: 1px solid red; */
        align-items: center;
        justify-content: center;
    }

    footer p {
        font-size: 13px;
        color: #ddd;
    }
    .sidenav {
        display: block;
        height: 100%;
        /* 100% Full-height */
        width: 0;
        /* 0 width - change this with JavaScript */
        position: fixed;
        /* Stay in place */
        z-index: 1000;
        /* Stay on top */
        top: 0;
        /* Stay at the top */
        left: 0;
        background-image: linear-gradient(45deg,
                transparent 25%,
                rgba(255, 255, 255, 0.05) 5%,
                rgba(255, 255, 255, 0.05) 80%,
                transparent 10%,
                transparent 10%,
                rgba(0, 0, 0, 0.05) 75%,
                rgba(0, 0, 0, 0.05) 100%);
        background-size: 10px 10px;
        background-color: #00172d;
        /* Black*/
        overflow-x: hidden;
        /* Disable horizontal scroll */
        padding-top: 60px;
        /* Place content 60px from the top */
        transition: 0.5s;
        /* 0.5 second transition effect to slide in the sidenav */
    }

    /* The navigation menu links */
    .sidenav a {
        width: 90%;
        margin-left: 5%;
        margin-top: 10px;
        height: 50px;
        padding-left: 20px ;
        display: flex;
        align-items: center;
        border: 2px solid #ff9900;
        text-decoration: none;
        font-size: 16px;
        color: #818181;
        /* display: block; */
        transition: 0.3s;
    }
    /* Position and style the close button (top right corner) */
    .sidenav .closebtn {
        padding: 0px 10px;
        position: absolute;
        top: 10px;
        background-color: #00172d;
        border-radius: 50%;
        color: white;
        right: 10px;
        font-size: 35px;
        margin-left: 0px;
    }

}