@font-face {
    font-family: 'Sophistica';
    src: url('../fonts/Sophistica\ 1.ttf') format('opentype');
    /* Additional font properties can be specified here */
}
@font-face {
    font-family: 'Mounchera';
    src: url('../fonts/Mounchera.ttf') format('opentype');
    /* Additional font properties can be specified here */
}
:root{
    --pri : #ffffff;
    --sec : #000;
    --tert: rgb(255, 182, 255);
    --tert_bold: magenta;
    --madoido : 'Sophistica';
    --madoido2: 'Trebuchet MS';
}
*{
    padding: 0;
    margin: 0;
    transition: all 1s;
    scroll-behavior: smooth;
    font-family: 'Trebuchet MS';
    background-color: var(--pri);
    color: var(--sec);
}

li{
    list-style: none;
    cursor: pointer;
}
a{
    text-decoration: none;
    color: var(--sec);
    cursor: pointer;
}
body{
    padding-top: 50px;
}
#darkModeToggle{
    position: fixed;
    top: 15px;
    right: 20px;
    cursor: pointer;
    z-index: 999999;
    
}
#darkModeToggle img{
    width: 30px;
    height: 30px;
}

/* Home Page */

    .nav{
        display: flex;
        justify-content: space-evenly;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100vw;
        /* margin-left: 10vw; */
        /* border-bottom: 1px solid var(--sec); */
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: var(--pri);

    }
    #links{
        display: flex;
        justify-content: space-between;
        width: 70%;
        

    }
    #links li a{
        font-family: var(--madoido) !important;
        font-size: 2rem;
    }
    #links li a:hover{
        color: var(--tert_bold);
    }
    .nav_highlighted{
        border: none;
        border-right: 2px solid var(--sec);
        border-left: 2px solid var(--sec);
        border-radius: 15px;
        padding: 7px 10px 7px 10px;
        transition: all ease-in-out 0.5s;
        color: var(--sec) !important;
    }
    .nav_highlighted:hover{
        background-color: var(--sec);
        color: var(--pri) !important;
        border: none;
        /* font-weight: 600; */
        
    }
    #name,#name2{
        text-align: center;
        padding-top: 30px;
        padding-bottom: 20px;
        z-index: 998;
        background-color: var(--pri);
        font-weight: 100;
    }
    #name h1{
        font-family: var(--madoido);
        font-size: 5rem;
        font-weight: 100;
    }
    #landing_img{
        max-width: 100%;
        /* position: absolute; */
        /* top: 0; */
    }
    #landing_img img{
        width: 100%;
    }
    .scroll_spacer{
        padding-top: 40px !important;
        width: 1px !important;
        height: 10px !important;
    }
    #about{
        width: 40%;
        margin-left: 30%;
        text-align: start;
        /* border: 1px solid red; */
        padding: 20px;
    }
    #about h2{
        text-align: center;
        font-family: var(--madoido);
        font-size: 3rem;
    }
    #about p{
        padding: 10px;
    }
    #wink{
        text-align: center;
        font-family: var(--madoido);
        font-size: 4rem;
    }
    #about_me_2{
        width: 70%;
        margin-left: 15%;
        display: flex;
    }
    #about_me_2_img_cont{
        /* width: 50%;
        border: solid 1px var(--sec);
        background-color: var(--pri); 
        background-image: none; */
        display: none;
    }
    #about_me_2_img_cont img{
        width: 100%;
        visibility: hidden;
    }
    #about_me_2_txt_cont{
        /* margin-left: 30px; */
        margin: auto;
    }
    #about_me_2_txt_cont h2{
        font-family: var(--madoido);
        font-size: 4rem;
    }
    #about_me_2_txt_cont p{
        padding-top: 15px;
    }
    #about_me_2_txt_cont p em strong{
        font-family: var(--madoido);
        font-size: 2.5rem;
        margin-right: 10px;
    }

    .hidden{
        opacity: 0;
        filter: blur(5px);
        transform: translateX(-3%);
        transition: all 1s;
    }

    .show{
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
/* Home Page */


/* Dates Page */
    .hidden_img{
        opacity: 0;
        filter: blur(5px);
        transform: translateX(25%);
        transition: all 1s;
    }

    .show_img{
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }

    .madoido{
        font-family: var(--madoido);
        font-size: 2rem;
    }

    #first_row,#second_row,#third_row{
        display: flex;
        justify-content: space-around;
        margin-top: 50px;
        margin-bottom: 100px;
    }
    .img img{
        width:25vw;
        max-height: 300px;
        object-fit: cover;
    }
    .list{
        font-size: 1rem;
    }
    .box{
        text-align: center;
    }
    #third_row .box .img img{
        width:20vw;
    }
/* Dates Page */


/* Consideration Page */
    #about_me_3{
        width: 70%;
        margin-left: 15%;
        display: flex;
    }
    #about_me_3_img_cont{
        width: 50%;

    }
    #about_me_3_img_cont img{
        width: 100%;
    }
    #about_me_3_txt_cont{
        margin-left: 30px;
    }
    #about_me_3_txt_cont h2{
        font-family: var(--madoido);
        font-size: 4rem;
    }
    #about_me_3_txt_cont p{
        padding-top: 10px;
    }
    
    .p_cont{
        /* border-top: 1px solid var(--sec); */
        border-top: none;
    }
    #about_me_3_txt_cont p em strong{
        font-family: var(--madoido);
        font-weight: 700;
        font-size: 1.8rem;
        margin-right: 10px;
    }
    #about_me_3_txt_cont p em span{
        color: var(--tert_bold);
    }

    .period{
        display: flex;
        font-size: 1rem;

    }
    .time{
        margin-right: 20px;
    }
    .amount{
        font-weight: 700;
    }
    #consideration_more_info{
        display: flex;
        width: 100%;
        justify-content: space-evenly;
        margin-top: 30px;
        text-align: center;
    }
    #consideration_more_info p{
        padding-top: 15px;
    }
/* Consideration Page */

/* FAQ Page */
    .faq_row{
        display: flex;
        width: 100%;
        justify-content: space-evenly;
        margin-top: 30px;
        text-align: center;
        padding-bottom: 20px;
        font-size: 1.2rem;
    }
    .faq_row p{
        padding-top: 15px;
        width: 60%;
        text-align: center;
        margin-left: 20%;
        
    }
    .faq_row p a{
        /* color: var(--tert); */
        color: var(--tert_bold);
        font-size: 1.3rem;
    }
/* FAQ Page */


/* Appointment Page */
.quote{
    padding-top: 70px;
    font-size: 3.5rem;
    font-weight: 100;
    font-family: var(--madoido) !important;
    /* font-weight: 700; */
}
.quote_div{
    padding-bottom: 90px !important;
}

#about_me_4{
    width: 70%;
    margin-left: 15%;
    display: flex;
}
#about_me_4_img_cont{
    width: 45%;

}
#about_me_4_img_cont img{
    width: 100%;
}
#about_me_4_txt_cont{
    margin-right: 30px;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    
}
#about_me_4_txt_cont h2{
    font-family: var(--madoido);
    font-size: 4rem;
}
#about_me_4_txt_cont p{
    padding-top: 10px;
    font-family: var(--madoido2) !important;
}

.side_p{
    font-size: 1.2rem;
}
.side_p_small{
    font-size: 1rem;
    text-align: center;
}
.exempted{
    font-size: 1.5rem;
}
.p_a{
    /* color: var(--tert); */
    color: var(--tert_bold);
    font-family: var(--madoido2) !important;
    font-weight: 700;


}
#form{
    width: 70%;
    margin-left: 15%;
}
.ipt{
    width: 100%;
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}
.ipt label{
    font-weight: 600;
}
.ipt input, .ipt textarea{
    border: none;
    border: 1px solid transparent; 
    transition: border-color 0.5s ease; 
    border: 1px double var(--sec);
    border-top: none;
    border-left: none;
    font-size: 1.5rem;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 5px;
    padding-left: 5px;
    outline: none; 

}
.ipt input:hover, .ipt input:focus{
    transition: border-color 0.5s ease; 
    border: 2px solid var(--tert_bold);
}
#form_spacer{
    width: 100%;
    height: 50px;
}
.btn_ipt{
    display: flex;
    width: 100%;
    justify-content: center;
    
}
.submit_btn{
    font-size: 1.5rem;
    border-radius: 20px;
    padding: 10px 25px 10px 25px;
    cursor: pointer;
}
#uk_law{
    margin-top: 70px;
    margin-bottom: 50px;
    width: 40%;
    margin-left: 30%;
    text-align: center;
    font-size: 0.8rem;
}
/* Appointment Page */





/* Invest Page */

#about_me_5{
    width: 70%;
    margin-left: 15%;
    display: flex;
}
#about_me_5_img_cont{
    width: 45%;

}
#about_me_5_img_cont img{
    width: 100%;
}
#about_me_5_txt_cont{
    margin-right: 30px;
    width: 55%;

    
}
#about_me_5_txt_cont h2{
    font-family: var(--madoido);
    font-size: 4rem;
}
#about_me_5_txt_cont p{
    padding-top: 10px;
    font-family: var(--madoido2);
    font-weight: 700;
}
.spoil_p{
    font-family: var(--madoido) !important;
    margin-bottom: 50px;
    font-size: 2.5rem;
    
}
.p_spoil{
    font-family: 'Trebuchet MS' !important;
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.p_spoil strong{
    font-family: var(--madoido);
    font-size: 2.2rem;
}
/* Invest Page */


/* Footer Section */
    .custom-shape-divider-top-1709374584 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .custom-shape-divider-top-1709374584 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 98px;
        background-color: var(--tert);

    }

    .custom-shape-divider-top-1709374584 .shape-fill {
        fill: var(--pri);
    }
    .footer_spacer{
        width: 100%;
        height: 100px;
        background-color: var(--tert);
    }
    #footer{
        margin-top: 50px;
        width: 100%;
        min-height: 200px;
        background-color: var(--tert);
        position: relative;
        overflow: hidden;
    }
    .banners{
        width: 60%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        background: var(--tert);
        /* border: 1px solid red; */
        padding-bottom: 20px;
        /* overflow-x: scroll; */

    }
    .banner{
        width: 50%; 
        background: var(--tert);
        margin: auto;
        margin-left: 5%;
    }
    .banner a{
        background: var(--tert);
        /* border: 4px solid black; */
    }
    .banner a img{
        max-width: 300px;
        max-height:50px;
        background-color: var(--tert);
        margin: auto;
    }
    .banner a svg{
        background-color: black;
    }
    .socials
    {
        width: 30%;
        margin: 10px auto 10px auto;
        background-color: var(--tert);
        display: flex;
        justify-content: space-around;
        
    }
    .socials a{
        text-decoration: none;
        background-color: var(--tert);
    }
    .socials a img{
        width: 40px;
        background-color: var(--tert);
        

    }

/* Footer Section */