@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
:root {
    --main-color: #7354D4;
    --pane-padding: 5px 42px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
h1,h2,h3,p {
    margin: 0;
}

body {
    font-family: 'Ubuntu', sans-serif;
}

@media(min-width:1280px) {
    .container {
        max-width: 1110px;
        padding: 0;
    }
}


/* Start Nav */

nav .navbar-brand {
    padding: 15px 0 17px 0;
}

nav .nav-item .nav-link {
    padding: 0 !important;
    margin-right: 40px !important;
}

nav .nav-item .nav-link:last-child {
    margin-right: 0;
}

nav .nav-item a {
    color: var(--main-color) !important;
    font-weight: 500;
    opacity: 80%;
}

.nav-item .nav-link.active {
    position: relative;
    opacity: 100%;
}

nav .nav-item .active::after {
    position: absolute;
    content: '';
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 50px;
}

nav .navbar-nav .nav-btn,
.landing-content .landing-btn {
    background-color: var(--main-color);
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
}


/* End Nav */


/* Start Landing */

.landing {
    padding-top: 100px;
}

.row {
    --bs-gutter-x: 0;
}
@media (min-width: 992px){
    .landing .col-lg-4{
        width: 29%;
    }
}
.landing-content h1 {
    font-weight: 500;
    font-size: 48px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.landing-content h1 span {
    color: var(--main-color);
}
.landing-content p {
    font-size: 18px;
    line-height: 27px;
}
.landing-content .landing-btn{
    display: inline-block;
    margin-top: 20px;
}
/* End Landing */
/* Footer */
.footer {
    margin-top: 136px;
    background-color: var(--main-color);
    padding-top: 50px;
}
.footer .social-links {
    padding-top: 30px;
}
.footer a {
    display: block;
    color: white;
    text-decoration: none;
}
.footer-direc a, 
.footer-direc-2 a {
    padding-bottom: 25px;
}
.footer-direc a:last-child, 
.footer-direc-2 a:last-child{
    padding-bottom: 0;
}
.footer .social-links a {
    display: inline-block;
    margin-right:15px ;
}
.footer .social-links a:nth-of-type(3){
    margin-right: 0;
}
.footer .footer-contact .d-flex {
    border-radius: 50px;
}
.footer .footer-contact h2{
    font-size: 20px;
    font-weight: 700;
    color: white;
    padding-bottom: 18px;
}
.footer .footer-contact .email-form {
    background: white;
    border-radius: 50px;
    margin-bottom: 19px;
}
.footer .footer-contact input[type=email]{
    width: 68%;
    padding: 14px 20px;
    font-size: 12px;
    background: transparent;
    border: none;
    outline: none;
}
.footer .footer-contact button {
    width: 32%;
    background-color: var(--main-color);
    font-size: 12px;
    border: none;
    color: white;
    border-radius: 50px;
    margin: 2px;
}
.footer .footer-contact .num-contact {
    margin-bottom: 40px;
}
.footer .footer-contact .num-contact img{
    padding-right: 11px;
}
.footer .footer-contact .num-contact p {
    color: white;
}
/* End Footer */