* {
    font-family: 'PT Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(35, 35, 85);
}

/* span {
    font-size: .9rem;
    color: #757373;
} */

h6 {
    font-size: 1.1rem;
    color: rgb(24, 24, 49);
}

.container{
    width: 1600px;
    margin: auto;
}

.subcontainer{
    width: 85%;
    margin: auto;
    margin-top: 20px;

}

#cookies{
    width: 100%;
    position: fixed;
    bottom: 0;
    color:#F9F9FF;
    background-color: #FDC93B;
    z-index: 1;
    display: none;
}

.cookies{
    min-height: 70px;
    display: flex;
    justify-content: flex-end;
    align-items: e;
    flex-wrap: wrap;
    gap: 10px;
}

.cookies a{
    color: #101c32;
    font-weight: 500;
    text-decoration: none;

}

#cookies-btn{
    border-radius: 5px;
    padding: 8px 12px 8px 12px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 3px solid black;
    background-color: rgb(21, 21, 100);
    color: white;
    margin-bottom: 20px;


}
@media (max-width:1600px){
    .container{
        width: 100%;
    }
}

@media (max-width:1024px){
    .cookies{
        padding: 10px 0;
    }
}

nav {
    display: flex;
    width: 100%;
    background-color: #fff;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    position: fixed;
    z-index: 999;
}

nav img {
    width: 200px;
    cursor: pointer;
}

nav .navigation ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav .navigation {
    display: flex;
}

#menu-close {
    display: none;
}

#show-menu {
    display: none;
    color: rgb(21, 21, 100);
}

nav .navigation ul li {
    list-style: none;
    margin-left: 30px;
}

nav .navigation ul li a {
    text-decoration: none;
    color: rgb(21, 21, 100);
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s ease;
}

nav .navigation ul li a:hover,
nav .navigation ul li a.active {
    color: #FDC93B;
}

nav .navigation ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: rgb(21, 21, 100);
    display: block;
    margin: auto;
    transition: 0.5s;
}

nav .navigation ul li:hover::after {
    width: 100%;
}

#home {
    background-image: linear-gradient(rgba(9, 5, 52, 0.3), rgba(5, 4, 46, 0.7)), url("images/banner.jpg"); 
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

#home h2 {
    width: 100%;
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.fade-in-from-top {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInFromTop 1.5s ease forwards;
}

@keyframes fadeInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-from-left {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInFromLeft 2s ease forwards;
}

@keyframes fadeInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-from-right{
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInFromRight 2s ease forwards;
}

@keyframes fadeInFromRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#home p {
    width: 70%;
    color: #fff;
    font-size: 1.2rem;
    line-height: 25px;
}


.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    margin-top: 20px;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    color: rgb(21, 21, 100);
    font-weight: bold;
    background: #fff;
}



#features {
    padding: 5vw 8vw 0 8vw;
    text-align: center;
}
#features h1:first-of-type{
    line-height: 2rem;
    margin-bottom: 1rem;
}
#features p:first-of-type{
    text-align: left;
}

#features .fea-base {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
}

#features .fea-box {
    padding: 20px;
    background: #F9F9FF;
    text-align: start;
    border-radius: 20px;
}

#features .fea-box span {
    font-size: 2.3rem;
    color: rgb(44, 44, 80);
}

#features .fea-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    padding: 13px 0 7px 0;
}

#features .fea-box p {
    font-size: 1rem;
    font-weight: 400;
    color: #101c32;
}

#service {
    padding: 8vw 8vw 0 8vw;
    text-align: center;
    margin-bottom: 40px;
}

#service h1:first-of-type{
    line-height: 2.5rem;
    margin-bottom: 1rem;
}
#service p:first-of-type{
    text-align: left;
}

#service .service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
}

#service .services {
    border-radius: 20px;
    text-align: start;
    margin-bottom: 50px;
    height: 100%;
}

#service .services img {
    border-radius: 20px;
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
}

#service .services .details {
    padding: 10px 10px 0 10px;
}
#service .services .details a{
    color: blue;
    text-decoration: none;
}
#service .services h6 {
    padding-bottom: 15px;
}

.profile-table{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    
}
.profile-table td{
    padding: 10px 5px;
    border-bottom: 1px solid grey;
    text-align: left;
    background: #F9F9FF;
    
}
.e-trader{
    margin-bottom: 40px;
}
.e-trader h1{
    margin-bottom: 20px;
    color: #5838fc;
    font-size: 2.2rem;
}
.e-trader h3{
    text-align: left;
    margin-bottom: 10px;
    /* padding: 10px; */
}
.e-trader h4{
    text-align: left;
    margin-bottom: 10px;
    /* padding: 10px; */
}
.e-trader h5{
    text-align: left;
    margin-bottom: 10px;
    /* padding: 10px; */
}
.e-trader a{
    color: #5838fc;
}
.e-trader >div{
    padding: 20px;
    background: #FDC93B;
    border-radius: 20px;
}

.priem h1{
    color: #5838fc;
    margin-bottom: 20px;
    font-size: 2.2rem;
    line-height: 2.2rem;
    /* padding: 10px; */
    /* text-align: left; */
}
.priem h3{
    text-align: left;
    background: #F9F9FF;
    padding: 20px;
    border-radius: 20px;
}

footer{
    padding: 8vw;
    background-color: #101c32;
    
}

footer .footer-elements{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

footer .footer-col{
    padding-bottom: 40px;

}

footer h3{
    color: rgb(241, 240, 245);
    font-weight: 600;
    padding-bottom: 15px;
    
}

footer li {
    list-style: none;
    color: #7b838a;
    padding: 5px 0 ;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

footer li:hover{
    color: rgb(241, 240, 245);
}

footer .pro-link {
    margin-top: 2px;
}
footer .pro-link .fab.fa-facebook-f{
    color:#7b838a;;
    padding: 10px 13px;
    margin-right: 8px;
    border: 2px solid  #7b838a;
    cursor: pointer;
}

footer .pro-link .fab.fa-instagram{
    color:#7b838a;;
    padding: 10px 13px;
    margin-right: 8px;
    border: 2px solid  #7b838a;
    cursor: pointer;
}

footer .pro-link .fab.fa-linkedin-in{
    color:#7b838a;
    padding: 10px 13px;
    margin-right: 8px;
    border: 2px solid  #7b838a;
    cursor: pointer;
}

footer .pro-link i:hover{
    background-color: #F9F9FF;
    color: #2c2c2c;
    cursor: pointer;
    transition: 0.4s ease;
}

footer .copyright{
    justify-content: center;
    align-content: center;
    margin-top: 20px;
    display: flex;
    width: 100%;
    color: #fff;
    font-size: 18px;
}





/* ------------About----------------------- */

#about-home {
    background-image: linear-gradient(rgba(9, 5, 52, 0.3), rgba(5, 4, 46, 0.7)), url("images/about_us.jpg");
    width: 100%;
    height: 65vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

#about-home h2 {
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

#about-home p {
    width: 70%;
    color: #fff;
    font-size: 0.9rem;
    line-height: 25px;
}

#about-container {
    display: flex;
    align-items: center;
    padding: 8vw 8vw 2vw 8vw;
}

#about-container img {
    width: 70%;
    height: 80vh;
    border-radius:20px;
}

#about-container .about-img {
    width: 60%;
}

#about-container .about-text {
    
    width: 40%;
}

#about-container .about-text h2 {
    color: #FDC93B;
    padding-bottom: 15px;
    margin-top: 15px;
}

#about-container .about-text p {
    text-align: left;
    color: #686F7A;
    font-weight: 300;
}



#about-features {
    padding: 5vw 8vw 0 8vw;
    text-align: center;
    margin-bottom: 40px;
}
#about-features p:first-of-type{
    /* padding: 25px; */
    text-align: center;
}

#about-features .fea-base {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
    margin-bottom: 20px;
}

#about-features .fea-box {
    border-radius: 20px;
    background: #F9F9FF;
    text-align: center;
}

#about-features .fea-box h2 {
    font-size: 1.5rem;
    color: rgb(44, 44, 80);
    padding-top: 8px;
}

#about-features .fea-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(46, 46, 59);
    padding: 13px 0 7px 0;
}

#about-features .fea-box p {
    text-align: left;
    justify-content: center;
    display: flex;
    font-size: 1rem;
    font-weight: 400;
    color: rgb(70, 70, 87);
    padding-bottom: 8px;
}

#about-features .fea-box div {
    text-align: center;
}

#about-features .fea-box span {
    margin-right: 5px;
    font-size: 1.5rem;
    color: rgb(44, 44, 80);
}

.public_links a:hover{
    color: #FDC93B;
}


/* --------Services----------------- */
#services-home {
    background-image: linear-gradient(rgba(9, 5, 52, 0.3), rgba(5, 4, 46, 0.7)), url("images/about_us.jpg");
    width: 100%;
    height: 65vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

#services-home h2 {
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 1px;
}


#services-features {
    padding: 5vw 8vw 0 8vw;
    text-align: center;
}

#services-features h1 {
    font-size: 25px;
}

#services-features p {
    text-align: left;
    padding-top: 5px;
    color: darkslateblue;

}

/* ---------LINKS--------- */
#links-features {
    padding: 5vw 8vw 0 8vw;
    text-align: center;
    margin-bottom: 40px;

}

#links-features .fea-base {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
    
}

#links-features .fea-box {
    background: #F9F9FF;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
}
#links-features .fea-box a:hover {
    color: #FDC93B;
}





#links-features .fea-box h2 {
    
    font-size: 1.5rem;
    color: rgb(44, 44, 80);
    padding-top: 8px;
}

#links-features .fea-box p {
    /* padding: 0px 20px; */
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
}

#links-features .fea-box a {
    text-decoration: none;
    color: rgb(70, 70, 87);
}


/* ---------------CONTACT--------------- */

#contact-home {
    background-image: linear-gradient(rgba(9, 5, 52, 0.3), rgba(5, 4, 46, 0.7)), url("images/about_us.jpg");
    width: 100%;
    height: 65vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

#contact {
    padding: 8vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#contact .getin{
    width: 350px;
}

#contact .getin h2{
    color: rgb(21, 21, 100);
    font-size: 30px;
    font-weight: 800;
    line-height: .8;
    margin-bottom: 16px;
}

#contact .getin p{
    color: #686875;
    line-height: 24px;
    margin-bottom: 33px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgb(70, 70, 87);
}

#contact .getin h3{
    color: rgb(24, 24, 49);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 15px;
}
.pro-links{
    margin-top: 15px;
}

#contact .getin .getin-details div{
    display: flex;
}

#contact .getin .getin-details div .get{
    font-size: 30px;
    line-height: 22px;
    color: #5838fc;
    margin-right: 10px;
}

#contact .getin .getin-details div p{
    font-size: 15px;
    border-bottom: none;
    line-height: 22px;
    color: rgba(5, 4, 46, 0.7);
    margin-bottom: 15px;
}




.pro-links i{
    padding: 10px 13px;
    margin-right: 8px;
    border: 2px solid rgb(21, 21, 100);
    cursor: pointer;
}

.pro-links i:hover{
    background-color: rgb(21, 21, 100);
    color: #F9F9FF;
    cursor: pointer;
    transition: 0.4s ease;
}

#contact .form h4{
    font-size: 24px;
    color: #2c234d;
    line-height: 30px;
    margin-bottom: 8px;
}

#contact .form{
    width: 60%;
    background-color: #f7f6fa;
    padding: 40px;
    border-radius: 10px;
}

#contact .form p{
    color: #686875;
    line-height: 24px;
    padding-bottom: 25px;
}

#contact .form .form-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#contact .form .form-row input {
    width: 48%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border-radius:20px;
    border: none;
    background: #fff;
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
}

#contact .form .form-col input,
#contact .form .form-col textarea {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border-radius: 20px;
    border: none;
    background: #fff;
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
}
#contact .form .form-col button {
    font-size: .9rem;
    padding: 13px 25px;
    background: rgb(21, 21, 100);
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #FFF;
}


/* ------------------MAP------------------- */

#map {
    width: 100%;
    height: 70vh;
    margin-bottom: bvw;
}

#map iframe{
    width: 100%;
    height: 100%;
}

@media (max-width: 769px) {
    
    nav {
        padding: 15px 20px;
    }

    #menu-close {
        display: initial;
        font-size: 1.6rem;
        padding: 30px 0 20px 20px;
    }

    #show-menu {
        display: block;
    }

    nav .navigation ul {
        position: absolute;
        top: 0;
        right: -220px;
        width: 220px;
        height: 100vh;
        background-color: #F9F9FF;
        backdrop-filter: blur(4.5px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 0.5s;
    }

    nav .navigation ul.active {
        right: 0;
    }

    nav .navigation ul li {
        padding: 20px 0 20px 40px;
        margin-left: 0;
    }

    #home h2 {
        width: 90%;
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    #features {
        padding: 8vw 4vw 0 4vw;
        
    }
    
    #features .fea-base {
        grid-gap: 4.2rem;

    }

    #service {
        padding: 8vw 4vw 0 4vw;
        text-align: center;
    }

    #about-container .about-img {
        display: none;
    }

    #about-container img {
        display: none;
    }

    #about-container .about-text {
        width: 100%;
    }

    #contact {
        padding: 8vw 4vw;
    }
    #contact .getin {
        width: 250px;
    }
}


@media (max-width:426px) {

    #home h2 {
        color: #fff;
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    #about-home {

        width: 100%;
        height: 80vh;

    }

    #about-features {
        margin-top: 1rem;
        padding: 0;
        text-align: center;
    }

    #about-container .about-text {
        text-align: center;
    }
    #services-features h1 {
        text-align: left;
    }
    #services-features p {
        text-align: left;
    }
    #contact {
        padding: 8vw 4vw;
        flex-direction: column;
        align-content: flex-start;
        justify-content: flex-start;
    }

    #contact .getin {
        width: 100%;
        margin-bottom: 30px;
    }

    #contact .form {
        width: 100%;
        padding: 40px 30px;
    }

    #contact .form .form-row {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
    }

    #contact .form .form-row input {

        width: 100%;
    }


    #links-features {
        padding: 0;
    
    }
    #about-features p:first-of-type{
        padding: 20px;
        text-align: left;
    }

    #about-features .fea-box p {
        text-align: left;
        font-weight: 300;

    }
}