* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

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


.navbar {
    display: flex;
    align-items: center;
    background-color: #4e415d;
    max-height: 80px;
    border-radius: 30px;
}

.logo {
    margin-left: 50px;
}

nav {
    flex: 1;
    text-align: right;
}

nav ul {
    display: inline-block;
    list-style-type: none;
    margin-right: 25px;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;

}

nav ul li a {
    transition: all ease-out 0.3s;
    font-size: 18px;
}

nav ul li a:hover {
    color: #f68b3d;
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: #f4e7de;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.col-2 {
    flex-basis: 50%;
    min-width: 300px;
}

.col-2 img {
    max-width: 100%;
    padding: 50px 0;
}

.col-2 h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}

.btn {
    display: inline-block;
    background: #f68b3d;
    color: #f4e7de;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 10px;
    transition: background 0.5s ease-in-out;
}

.header {
    background: radial-gradient(#f9e7df, #e6cebf);
}

.header .row {
    margin-top: 70px;
}

.btn:hover {
    background: #525b9e;
}

.featured-categories {
    margin: 0px 0;
    background: #f9e7df;
    /* background: radial-gradient(#f9e7df, #e6cebf); */
    /* background: radial-gradient(#fbfbf9, #e4e0dd); */

}

.col-3 {
    padding: 40px 20px;
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
    transition: transform 0.5s;
    border-radius: 5px;
}

.col-3 img {
    width: 100%;
    border-radius: 2px;
}

.col-3:hover {
    background: #fbfbf9;
    transform: translateY(-5px);
}

.small-container {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.popular-courses {
    background: radial-gradient(#f9e7df, #e6cebf);
}

.col-4 {
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}

.col-4:hover {
    transform: translateY(-5px);
    background: #fbfbf9;
    border-radius: 5px;
}


.col-4 img {
    width: 100%;
    border-radius: 2px;
}

.title {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #4e415d;
}

.title::after {
    content: '';
    background: #f68b3d;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.col-4 p {
    font-size: 14px;
}

.rating .fa {
    color: #4e415d;
}


/*                                            TESTIMONIALS TESTIMONIALS TESTIMONIALS TESTIMONIALS                            */

.testimonials {
    padding-top: 100px;
    background: #f4e7de;
}

.testimonials .col-3 {
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px 0px rgba(78, 65, 93, 0.1);
    /* box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1); */
    transition: all 0.5s;
    background: #f9e7df;
    border-radius: 5px;
}

.testimonials .col-3 img {
    width: 50 px;
    margin-top: 20 px;
    border-radius: 50%;
}

.testimonials .col-3:hover {
    transform: translateY(-10px);
    background: #fbfbf9;
    box-shadow: 0 0 20px 0px rgba(78, 65, 93, 0.2);
}

.footer {
    display: flex;
    align-items: center;
    background-color: #4e415d;
    max-height: 80px;
}

.footer h3 {
    color: #f4e7de;
}

.footer-col-1 img {
    margin-left: 50px;
    margin-right: 50px;
    max-height: 50px;
}

.footer-col-2 {
    margin-right: 50px;
}

.footer ul {
    display: inline-block;
    list-style-type: none;
    margin-left: 100 px;
}

.footer ul li {
    display: inline-block;
    text-decoration: none;
}

.footer ul li a {
    transition: all ease-out 0.3s;
    font-size: 18px;
    color: #f4e7de;
}

.footer ul li a:hover {
    color: #f68b3d;
    text-decoration: underline;
}