body {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    color: #333333;
    letter-spacing: 0.002em;
}

.wrapper {
    max-width: 100%;
}

/* Navbar */
/* Icon 1 */

.animated-icon1, .animated-icon2, .animated-icon3 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    }
    
    .animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    }
    
    .animated-icon1 span {
    background: #362F74;;
    }
    
    .animated-icon2 span {
    background: #e3f2fd;
    }
    
    .animated-icon3 span {
    background: #f3e5f5;
    }
    
    .animated-icon1 span:nth-child(1) {
    top: 0px;
    }
    
    .animated-icon1 span:nth-child(2) {
    top: 10px;
    }
    
    .animated-icon1 span:nth-child(3) {
    top: 20px;
    }
    
    .animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    }
    
    .animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
    }
    
    .animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    }
    
    /* Icon 3*/
    
    .animated-icon2 span:nth-child(1) {
    top: 0px;
    }
    
    .animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
    top: 10px;
    }
    
    .animated-icon2 span:nth-child(4) {
    top: 20px;
    }
    
    .animated-icon2.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
    }
    
    .animated-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    }
    
    .animated-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    }
    
    .animated-icon2.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
    }
    
    /* Icon 4 */
    
    .animated-icon3 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    }
    
    .animated-icon3 span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    }
    
    .animated-icon3 span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    }
    
    .animated-icon3.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
    }
    
    .animated-icon3.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
    }
    
    .animated-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
    }

    header {
        box-shadow: 0px 0px 5px 0px #362F74;
    }

.navbar-dark .navbar-nav .nav-link {
    font-size: 18px;
    line-height: 23px;
    color: #000;
}
.navbar-dark .navbar-nav .nav-link:hover {
    font-weight: 900;
    color: #000;
}


button:focus {
    outline: none;
}

#sec-one h1{
    font-size: 40px;
    line-height: 50px;
}

.desktop-img {
    display: none;
}

/* Accordion */
.accordion .card-header {
    cursor: pointer;
}
.accordion .card-header:after {
    font-family: 'FontAwesome';  
    content: "\002D";
    font-weight: bolder;
    font-size: 26px;
    color: #362F74;
    float: right; 
}
.accordion .card-header.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\002B"; 
    font-weight: bolder;
    font-size: 26px;
    color: #362F74;
}

.accordion .card {
    border: none;
}

.card-title {
    color: #362F74 !important;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
}

.accordion .card-body {
    background: #FAFAFE;
    margin-bottom: 2rem;

}

.has-search .form-control {
    padding-left: 2rem;
    border-radius: 25px;
    max-width: 60%;
    background: #362F74;
}

.has-search .form-control-feedback {
    position: absolute;
    left: 47%;
    top: 55px;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #fff;
}

.search::placeholder {
    color: #fff;
}

.category h3, .tags h3 {
    font-weight: bold;
    font-size: 26px;
    line-height: 33px;
    color: #362F74;
}

.category li {
    font-size: 18px;
    line-height: 25px;
    color: #7C7C7C;
    list-style-type: none;
}

.tags a {
    color: #7C7C7C;
    background: #FAFAFE;
    border: 1px solid rgba(113, 100, 226, 0.15);
    box-shadow: 1px 2px 20px rgba(113, 100, 226, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 14px;
    margin: 1rem 1rem 0rem 0;
    display: inline-block;
    width: fit-content;
}

#sec-three h2 {
    font-size: 30px;
    line-height: 40px;
}

.form-group input, .form-group textarea {
    background: #F0F0F7;
    border: 1px solid rgba(54, 47, 116, 0.2);
    padding: 1.5rem 1rem;
}

form .btn, form .btn:hover {
    background: #362F74;
    color: #fff;
}

#footer {
    background: #F0F0F7;
    padding: 3rem 2rem!important;
}

#footer h4 {
    font-size: 20px;
    line-height: 30px;
}

#footer li {
    list-style: none;
    font-size: 16px;
    line-height: 23px;
}

.fas {
    color: #362F74;
}
.nav-item .btn {
    text-align: right;
    background: #362F74;
    color: white !important;
    width: fit-content;
    padding: .5rem 2rem;
    float: right;
}
